@charset "UTF-8";
@import url("import/attachment.css");


/***********************************************
  01.common
***********************************************/

*::selection {
  background-color: rgba(255, 255, 112, 1);
  color: #053BAB;
}

*::-moz-selection {
  background-color: rgba(255, 255, 112, 1);
  color: #053BAB;
}

* {
  margin: 0px;
  padding: 0px;
}

a,
img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

img {
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
}

html {
  height: auto;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  height: auto;
  margin: 0px;
  padding: 0px;
  color: #333333;
  -webkit-print-color-adjust: exact !important;
  -moz-print-color-adjust: exact !important;
}

.mincho1 {
  font-family: "ten-mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.gothic1 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.notosansM {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.notosansB {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.0em;
} */

/* reset */
button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}



/* セクションタイトル */
.section_title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.section_title span {
  color: #053BAB;
}

.section_title::after {
  content: url(./../images/img_ashirai_01.png);
  display: block;
  margin-top: -20px;
}

.section_text {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}



/***********************************************
  02.layout
***********************************************/
.wrap {
  width: 1080px;
  margin: 0 auto;
}

#pageTop {
  width: 100%;
  max-width: 100px;
  position: fixed;
  right: 1.5%;
  bottom: 15%;
  z-index: 777;
}

.pageTop_pc {
  max-width: 100px;
  position: relative;
}

.pageTop_pc img {
  width: 100%;
  display: block;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pageTop_pc img:nth-of-type(1) {
  opacity: 1;
}

.pageTop_pc img:nth-of-type(2) {
  opacity: 0;
}

.pageTop_pc:hover img:nth-of-type(1) {
  opacity: 0;
}

.pageTop_pc:hover img:nth-of-type(2) {
  opacity: 1;
}

#pageTop a:hover {
  background: inherit;
}

#pageTop .nav-open {
  visibility: hidden;
}

.pageTop_sp {
  display: none;
}

@media screen and (max-width: 930px) {
  .wrap {
    width: 90%;
  }

  .pageTop_pc {
    display: none;
  }

  #pageTop {
    position: static;
    background-color: #247BD1;
    width: 100%;
    max-width: 80px;
    min-width: 80px;
  }

  .pageTop_sp {
    display: block;
    width: 100%;
    max-width: 20px;
    margin: 15px auto 0;
  }
}

@media screen and (max-width: 480px) {
  #pageTop {
    max-width: 50px;
    min-width: 50px;
  }

  .pageTop_sp {
    display: block;
    width: 100%;
    max-width: 15px;
    margin: 15px auto 0;
  }
}




/***********************************************
  03.header
***********************************************/

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .16);
  z-index: 990;
  padding: 10px 0;
}

.header_inner {
  position: relative;
  width: 96%;
  max-width: 1080px;
  margin: 0 auto;
}

.global-nav {
  position: fixed;
  right: -320px;
  /* これで隠れる */
  top: 0;
  width: 300px;
  /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: #fff;
  transition: all 0.6s;
  z-index: 777;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
  visibility: hidden;
}

.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  /* クリックしやすいようにちゃんと幅を指定する */
  height: 40px;
  /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 888;
}

.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav__item {
  font-size: 18px;
  text-align: center;
  padding: 0 14px;
}

.global-nav__item a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
}

.global-nav__item a:hover {
  background-color: #FFFFCC;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 25px;
  height: 1px;
  background-color: #111111;
  transition: all .6s;
}

.hamburger__line--1 {
  top: 14px;
}

.hamburger__line--2 {
  top: 20px;
}

.hamburger__line--3 {
  top: 26px;
}

.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 666;
  background-color: #000;
  background: rgb(36, 123, 209, 0.8);

  opacity: 0.8;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
  visibility: visible;
}

.nav-open .black-bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger__line--1 {
  transform: rotate(405deg);
  top: 20px;
}

.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.nav-open .hamburger__line--3 {
  transform: rotate(-405deg);
  top: 20px;
}

.logo {
  font-size: 24px;
  color: #000000;
  padding: 5px 0;
}

.logo span {
  color: #247BD1;
}

.logo a:hover {
  background-color: inherit;
  color: inherit;
  opacity: 0.8;
}

@media screen and (max-width: 480px) {
  .hamburger {
    right: 0;
  }
}

/***********************************************
  04.gNavi
***********************************************/







/***********************************************
  05.sNavi
***********************************************/
#sideNav {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translate(0, -45%);
  z-index: 888;
}

.sideNav {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 85px;
}

.sideNav_item {
  width: 100%;
  margin-bottom: 5px;
  text-align: center;
}

.sideNav_item-contact a {
  display: inline-block;
  width: 100%;
  height: 300px;
  background: #E5F3FE;
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
  font-size: 20px;
  font-weight: 700;
}

.sideNav_item-contact span {
  display: inline-block;
  margin-right: 27px;
}

.sideNav_item-contact img {
  display: inline-block;
  width: 100%;
  max-width: 20px;
  margin-bottom: 10px;
}

.sideNav_item-contact a:hover {
  background: #FFFF00;
}

@-moz-document url-prefix() {

  .sideNav_item-contact img {
    margin-right: 27px;
  }

}


@media screen and (max-width: 930px) {
  #sideNav {
    display: none !important;
  }

  .footerFloat {
    width: 100%;
    height: 50px;
    display: flex !important;
    position: fixed;
    bottom: 0;
  }

  .footerFloat_inner {
    display: flex !important;
    width: 100%;
  }

  .sideNav_item {
    display: flex;
    width: 100%;
    margin-bottom: 0;
    border-right: 1px solid #FFFFFF;
    text-align: center;
  }

  .sideNav_item:nth-of-type(2) {
    margin-right: 0;
  }

  .sideNav_item-consul a,
  .sideNav_item-contact a {
    height: 50px;
    border-radius: 0;
    writing-mode: horizontal-tb;
    font-size: 16px;
  }

  .sideNav_item-consul span,
  .sideNav_item-contact span {
    margin-right: 0;
    margin-top: 15px;
  }


  .sideNav_item-consul img,
  .sideNav_item-contact img {
    max-width: 18px;
    vertical-align: middle;
    margin-bottom: 5px;
    margin-right: 5px;
  }

}


.sideNav_item-consul {
  display: none;
}

/***********************************************
  06.main
***********************************************/

#main {
  padding: 60px 0 0;
}

#pc_containe {
  height: 800px;
}

/* メインヴィジュアル */
.mv_wrap {
  position: relative;
}

.mv_img {
  display: block;
  width: 100%;
  min-width: 1600px;
  margin: 0 auto;
}



/* アドリストとは */
.adlyst {
  background: url(./../images/bg_index_02.jpg) no-repeat;
  background-position: top center;
  height: 1865px;
  padding: 50px 0 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 1600px) {
  .adlyst {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .adlyst {
    background-size: cover;
  }
}

.adlyst_threeCircle {
  display: flex;
  justify-content: center;
}

.catchCopy {
  width: 800px;
  font-size: 42px;
  font-weight: 700;
  padding: 10px;
}

.adlyst_catchCopy {
  background: #247BD1;
  color: #FFFFFF;
  margin: 0 auto;
}

.adlyst_catchCopy span {
  color: #FFFF00;
}

.img_logo {
  display: block;
  margin: 0 auto;
}

.adlyst_title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.adlyst_text {
  font-size: 20px;
  line-height: 1.8;
}

.adlyst_block {
  display: flex;
}

.adlyst_block-gyosei,
.adlyst_block-bunseki {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.adlyst_block-dantigai {
  background: url(./../images/bg_index_03.jpg) no-repeat;
  background-position: top center;
  height: 757px;
}

@media screen and (max-width: 1600px) {
  .adlyst_block-dantigai {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .adlyst_block-dantigai {
    background-size: cover;
  }
}

.adlyst_block-dantigai p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 630px;
}



/* こんなお悩み一発解決 */

.worries_inner {
  background: url(./../images/bg_index_04.jpg) no-repeat;
  background-position: top center;
  height: 800px;
}

@media screen and (max-width: 1600px) {
  .worries_inner {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .worries_inner {
    background-size: cover;
  }
}

.worries_list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 10px;
}



/* 最適申請プラン提案 */
.plan_inner {
  background: url(./../images/bg_index_05.jpg) no-repeat;
  background-position: top center;
  height: 859px;
}

@media screen and (max-width: 1600px) {
  .plan_inner {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .plan_inner {
    background-size: cover;
  }
}


.plan_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  top: -50px;
}

.plan_text {
  text-align: center;
  position: relative;
  margin-top: -40px;
}

.plan_text::after {
  content: url(./../images/img_plan_06.png);
  position: absolute;
  right: -100px;
  top: -100px;
}

.plan_block {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}



/* 他社との違い */
.difference {
  background-color: #F5F5F0;
  padding: 65px 0;
}

@media screen and (max-width: 1600px) {
  .difference {
    width: 100%;
    min-width: 1600px;
  }
}

.difference_block {
  display: flex;
  justify-content: center;
}

.difference_block img {
  display: block;
}

.difference_group {
  background: url(./../images/bg_index_06.jpg) no-repeat;
  background-position: top center;
  width: 100%;
  height: 347px;

}

.difference_group-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 50px;
}

.difference_group-text {
  font-size: 18px;
  font-weight: 700;
  width: 650px;
  margin-top: 35px;
}



/* 選ばれる理由 */
.reason {
  background: url(./../images/bg_index_07.jpg) no-repeat;
  background-position: top center;
  height: 962px;
  padding: 80px 0 0;
}

@media screen and (max-width: 1600px) {
  .reason {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .reason {
    background-size: cover;
  }
}

.reason_cards {
  display: flex;
  justify-content: space-between;
}

.reason_card {
  background: url(./../images/bg_rezon.png) no-repeat;
  height: 270px;
  width: 100%;
  padding: 30px 15px;
  position: relative;
}

.reason_card img {
  position: absolute;
  top: -40px;
  left: -5px;
}

.reason_card_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reason_card_title {
  background-color: #2378CF;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  width: 100%;
  max-width: 440px;
  padding: 5px 0;
  order: 2;
  margin-bottom: 20px;
}

.reason_card_copy {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  order: 1;
  margin-bottom: 10px;
}

.reason_card_text {
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  max-width: 440px;
  order: 3;
}


/* 魅力のサービス */
.service {
  background-color: #2378CF;
  width: 100%;
  padding: 60px 0 100px;
}

@media screen and (max-width: 1600px) {
  .service {
    width: 100%;
    min-width: 1600px;
  }
}

.service_title,
.service_text,
.service_title span {
  color: #FFFFFF;
}

.service_title::before {
  content: attr(date-service);
  display: block;
  font-size: 24px;
  margin-bottom: -15px;
}

.service_title::after {
  content: url(./../images/img_ashirai_02.png);
  display: block;
  margin-top: -20px;
}

.service_title span {
  font-size: 24px;
}

.service_card {
  width: 100%;
  height: 430px;
}

.service_card_inner {
  padding-left: 380px;
  padding-top: 60px;
}

.service_card_title {
  display: block;
}

.service_card_text {
  width: 615px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
}

.service01 {
  background: url(./../images/bg_service_01.png) no-repeat;
}

.service02 {
  background: url(./../images/bg_service_02.png) no-repeat;
}

.service03 {
  background: url(./../images/bg_service_03.png) no-repeat;
}

.service04 {
  background: url(./../images/bg_service_04.png) no-repeat;
}

.service05 {
  background: url(./../images/bg_service_05.png) no-repeat;
}


/* 完全無料保証 */
.guarantee {
  background: url(./../images/bg_index_08.jpg) no-repeat;
  background-position: top center;
  height: 557px;
  padding: 50px 0 0;
}

@media screen and (max-width: 1600px) {
  .guarantee {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .guarantee {
    background-size: cover;
  }
}

.guarantee_inner {
  display: flex;
  align-items: baseline;
}

.guarantee_text {
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 40px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}


/* 承認までの流れ */
.flow {
  background: url(./../images/bg_index_09.jpg) no-repeat;
  background-position: top center;
  height: 1000px;
  padding: 50px 0 30px;
}

@media screen and (max-width: 1600px) {
  .flow {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .flow {
    background-size: cover;
  }
}

.flow_list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_list_text {
  font-size: 18px;
  color: #000000;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 713px;
  height: 130px;
}

.flow01 {
  background: url(./../images/bg_flow_01.png) no-repeat;
}

.flow02 {
  background: url(./../images/bg_flow_02.png) no-repeat;
}

.flow03 {
  background: url(./../images/bg_flow_03.png) no-repeat;
}

.flow04 {
  background: url(./../images/bg_flow_04.png) no-repeat;
}

.flow05 {
  background: url(./../images/bg_flow_05.png) no-repeat;
}

.flow06 {
  background: url(./../images/bg_flow_06.png) no-repeat;
  color: #FFFFFF;
}


/* お客様の声 */
.voice {
  background: url(./../images/bg_index_10.jpg) no-repeat;
  background-position: top center;
  height: 1131px;
  padding: 50px 0 0;
}

@media screen and (max-width: 1600px) {
  .voice {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .voice {
    background-size: cover;
  }
}

.voice_card {
  width: 100%;
  height: 350px;
  text-align: center;
  padding-top: 90px;
}

.voice_card_title {
  font-size: 32px;
  font-weight: 700;
  color: #247BD1;
}

.voice_card_customer {
  width: 100%;
  max-width: 1010px;
  background-color: #F0F4F7;
  font-size: 18px;
  font-weight: 700;
  padding: 5px;
  margin: 20px auto 30px;
}

.voice_card_text {
  font-size: 18px;
  text-align: left;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.voice01 {
  background: url(./../images/bg_voice_01.png) no-repeat;
}

.voice02 {
  background: url(./../images/bg_voice_02.png) no-repeat;
}



/* よくあるご質問 */
.faq {
  background: url(./../images/bg_index_11.jpg) no-repeat;
  background-position: top center;
  height: 1270px;
  padding: 50px 0 0;
}

@media screen and (max-width: 1600px) {
  .faq {
    width: 100%;
    min-width: 1600px;
  }
}

@media screen and (min-width: 1601px) {
  .faq {
    background-size: cover;
  }
}

.faq_q {
  font-size: 28px;
  font-weight: 700;
}

.faq_q::before {
  content: url(./../images/ic_question.png);
  vertical-align: middle;
}

.faq_a {
  font-size: 18px;
  background: url(./../images/bg_qa.png) no-repeat;
  width: 100%;
  display: flex;
  padding: 40px 50px;
  margin: 10px 0 20px;
}

.faq_a_S {
  height: 50px;
}

.faq_a p {
  width: 965px;
  text-indent: -1.7em;
  padding-left: 1.7em
}

.faq_a p::before {
  content: url(./../images/ic_answer.png);
  vertical-align: middle;
}


/***********************************************
  07.footer
***********************************************/
.footer_inner {
  width: 96%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 0;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
}

.footer-nav__list:nth-of-type(3) {
  margin-right: 50px;
}

.footer-nav__item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.footer-nav__item::before {
  content: "";
  background: url(../images/ic_arrow.png) no-repeat;
  background-size: contain;
  width: 17px;
  height: 13px;
  position: absolute;
  top: 5px;
  left: 0;
}

.footer-nav__logo a:hover {
  background-color: inherit;
}

.copy {
  background-color: #F0F5F5;
  padding: 20px 0;
}

.copyright {
  display: block;
  color: #666666;
  text-align: center;
}

.copyright a:hover {
  color: #666666;
  background-color: inherit;
  opacity: 0.8;
}

@media screen and (max-width: 930px) {
  .footer_inner {
    padding: 30px 0;
  }

  .footer-nav__list {
    display: none !important;
  }

  .footer-nav__logo {
    margin: 0 auto;
  }

  .footer-nav__logo img {
    width: 100%;
    max-width: 260px;
  }

  .copy {
    padding: 15px 0 65px;
    margin-bottom: 50px;
  }

  .thanks_copy {
    margin-bottom: 0;
  }

}

/***********************************************
  08.img
***********************************************/

img {
  border: 0px;
}

/***********************************************
  9.text
***********************************************/


/***********************************************
  10.table
***********************************************/
table {
  border-collapse: collapse;
}

/* レスポンシブtable */
table.baseTab {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
  box-sizing: border-box;
}

table.baseTab th,
table.baseTab td {
  padding: 10px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  box-sizing: border-box;
}

table.baseTab th {
  background-color: #eee;
  text-align: center;
  width: 30%;
}

@media screen and (max-width: 480px) {
  table.baseTab {
    border-top: 1px solid #999;
  }

  table.baseTab td {
    display: block;
    text-align: center;
  }

  table.baseTab th {
    display: block;
    border-top: none;
    border-bottom: 1px solid #999;
    width: 100%;
  }
}

.requisite {
  background: url(../images/ic_requisite.gif) no-repeat 90% 50% red !important;
}


/***********************************************
  11.font
***********************************************/

/* background */
.whiteBg {
  background: #fff !important;
}

.greenBg {
  background: #119493 !important;
}

.blueBg {
  background: #1e91b9 !important;
}

/* color */
.green {
  color: #73bb19 !important;
}

.red {
  color: #CC0000 !important;
}

.blue {
  color: #447fd1 !important;
}

.black {
  color: #333333 !important;
}







/***********************************************
  12.link
***********************************************/

/* default */
a:link,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #247BD1;
  background: #FFFFCC;
}

/* default */

/* imgLink */
a img:hover {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -moz-opacity: 0.80;
  -ms-filter: "alpha(opacity=80)";
}

a.noAlpha img:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -ms-filter: "alpha(opacity=100)";
}

/* imgLink */

/* blackLink */
a.blackLink:link,
a.blackLink:visited,
a.blackLink:hover {
  color: #333;
  text-decoration: none;
}

a.blackLink:hover {
  text-decoration: underline;
}

/* blackLink */

/* url */
a.url:link,
a.url:visited,
a.url:hover {
  color: #333;
  text-decoration: none;
}

a.url:hover {
  text-decoration: underline;
}

/* url */

/* underline */
a.underline:link,
a.underline:visited,
a.underline:hover {
  text-decoration: underline !important;
}

a.underline:hover {
  text-decoration: none !important;
}

/* underline */

/* breadcrumbsList */
#breadcrumbsList a:link,
#breadcrumbsList a:visited,
#breadcrumbsList a:hover {
  color: #564842;
  text-decoration: none;
}

#breadcrumbsList a:hover {
  text-decoration: underline;
}

/* breadcrumbsList */

/* topPathList */
#topPathList a:link,
#topPathList a:visited,
#topPathList a:hover {
  color: #564842;
  text-decoration: none;
}

#topPathList a:hover {
  text-decoration: underline;
}

/* topPathList */

/* footer */
#footer a:link,
#footer a:visited,
#footer a:hover {
  color: #245ddb;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

/* footer */

/* copy */
#copy a:link,
#copy a:visited,
#copy a:hover {
  color: #245ddb;
  text-decoration: none;
}

#copy a:hover {
  text-decoration: underline;
}

/* copy */

/* pageTop */
#pageTop a:link,
#pageTop a:visited,
#pageTop a:hover {
  color: #447fd1;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#pageTop a:hover {
  text-decoration: underline;
}

/* pageTop */

/* link1 */
a.link1:link,
a.link1:visited,
a.link1:hover {
  color: #999999;
  text-decoration: none;
}

a.link1:hover {
  text-decoration: underline;
}

/* link1 */

/* dependLink */
a.dependLink:link,
a.dependLink:visited,
a.dependLink:hover {
  color: #999999;
  text-decoration: none;
}

a.dependLink:hover {
  text-decoration: underline;
}




/* dependLink */
/* .btnLink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.50, ㊦), color-stop(0.50, ㊤));
  background: -webkit-linear-gradient(top, ㊤ 50%, ㊦ 50%);
  background: -moz-linear-gradient(top, ㊤ 50%, ㊦ 50%);
  background: -o-linear-gradient(top, ㊤ 50%, ㊦ 50%);
  background: -ms-linear-gradient(top, ㊤ 50%, ㊦ 50%);
  background: linear-gradient(to bottom, ㊤ 50%, ㊦ 50%);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-box-shadow: 1px 1px 1px rgba(000, 000, 000, 0.3);
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFF;
  border-radius: 4px;
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin: 20px 0 0;
  padding: 13px 0;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  text-decoration: none !important;
  color: #FFF !important;
  position: relative;
  bottom: 2px;
  right: 2px;
}

.btnLink:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.50, ㊤), color-stop(0.50, ㊦));
  background: -webkit-linear-gradient(top, ㊦ 50%, ㊤ 50%);
  background: -moz-linear-gradient(top, ㊦ 50%, ㊤ 50%);
  background: -o-linear-gradient(top, ㊦ 50%, ㊤ 50%);
  background: -ms-linear-gradient(top, ㊦ 50%, ㊤ 50%);
  background: linear-gradient(to bottom, ㊦ 50%, ㊤ 50%);
} */

/* dependLink nameraka */
/* .btnLink2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.80, ㊦), color-stop(0.0, ㊤));
  background: -webkit-linear-gradient(top, ㊤ 0%, ㊦ 88%);
  background: -moz-linear-gradient(top, ㊤ 0%, ㊦ 88%);
  background: -o-linear-gradient(top, ㊤ 0%, ㊦ 88%);
  background: -ms-linear-gradient(top, ㊤ 0%, ㊦ 88%);
  background: linear-gradient(to bottom, ㊤ 0%, ㊦ 88%);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-box-shadow: 1px 1px 1px rgba(000, 000, 000, 0.3);
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFF;
  border-radius: 4px;
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin: 20px 0 0;
  padding: 13px 0;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  text-decoration: none !important;
  color: #FFF !important;
  position: relative;
  bottom: 2px;
  right: 2px;
}

.btnLink2:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.80, ㊤), color-stop(0.0, ㊦));
  background: -webkit-linear-gradient(top, ㊦ 0%, ㊤ 88%);
  background: -moz-linear-gradient(top, ㊦ 0%, ㊤ 88%);
  background: -o-linear-gradient(top, ㊦ 0%, ㊤ 88%);
  background: -ms-linear-gradient(top, ㊦ 0%, ㊤ 88%);
  background: linear-gradient(to bottom, ㊦ 0%, ㊤ 88%);
} */

/* クリックしたときの青い枠線を無効化 */
*:focus {
  outline: none;
}





/***********************************************
  13.form
***********************************************/
/* iOSでのデフォルトスタイルをリセット */
input {
  font-size: 16px;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 7px 30px 7px 10px;
  font-size: 93%;
  line-height: 1.1em;
  border-radius: 5px;
  border: none;
  background-image: url(../images/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 12px 10px;
  background-position: right 10px center;
  background-color: #fff;
  border: 1px solid #cdcdcd;
  display: block;
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 10px;
}

input[type=radio] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  accent-color: #FFFF00;
  margin-bottom: 3px;
  margin-right: 10px;
}

@media screen and (max-width: 480px) {
  input[type=radio] {
    width: 15px;
    height: 15px;
  }
}

input[type=checkbox] {
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  accent-color: #FFFF00;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea:focus,
input:focus {
  background-color: #FFEEEE;
  outline: 0;
}

/***********************************************
  14.modal
***********************************************/

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #fff;
  left: 50%;
  padding: 20px;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 80%;
}

@media screen and (max-width: 812px) {
  .modal__content {
    padding: 15px 15px 25px;
    width: 80%;
  }
}

.js-modal-close {
  background: rgb(36, 123, 209, 0.8);
}

.btnClose {
  color: #fff !important;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.5s;
}

.btnClose:hover {
  background: #000;
  color: #fff !important;
}

.modal__content {
  text-align: center;
}

.modal__content ul {
  overflow: hidden;
  margin: 15px 0;
}


.modal__content ul li {
  width: 50%;
  float: left;
}

@media screen and (max-width: 812px) {
  .modal__content ul li {
    width: 100%;
    float: none;
  }
}

.modal__content ul li a {
  display: block;
  font-weight: bold;
  background: #5095da;
  color: #fff !important;
  box-shadow: 0 3px #2f69a3;
  border-radius: 5px;
  border: none;
  padding: 20px;
  width: 85%;
  margin: 0 auto 15px;
  text-align: center;
}

.modal__content ul li a:hover,
.modal__content ul li.line a:hover,
.modal__content ul li.fb a:hover,
.modal__content ul li.tel a:hover {
  -ms-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  box-shadow: none;
}

.modal__content ul li.line a {
  background: #06c152;
  box-shadow: 0 3px #008536;
}

.modal__content ul li.fb a {
  background: #4867aa;
  box-shadow: 0 3px #263b66;
}

.modal__content ul li.tw a {
  background: #1eaaff;
  box-shadow: 0 3px #0384d3;
}

.modal__content ul li.tel a {
  background: #CC3366;
  box-shadow: 0 3px #C30243;
}



/***********************************************
  99.other
***********************************************/
/* プライバシーポリシー */
.privacy-policy {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 45px;
  height: 340px;
  overflow: scroll;
  padding: 30px 35px;
  border: 1px solid #247BD1;
  background-color: #FFFFFF;
}

.privacy-policy ol {
  margin-left: 25px;
  padding-bottom: 15px;
}

.privacy-policy__title {
  font-size: 24px;
  font-weight: 700;
  color: #247BD1;
}

.privacy-policy__desc {
  font-size: 16px;
}

.privacy-policy__item__title {
  background-color: #E5F3FE;
  font-size: 20px;
  padding: 8px 0 9px 20px;
  margin-bottom: 25px;
}

.privacy-policy__item__desc {
  font-family: "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

._descTitle {
  color: #247BD1;
  font-weight: 700;
}


.privacy-policy__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #FFFFFF;
  font-size: 18px;
}


@media screen and (max-width: 480px) {
  .privacy-policy {
    width: 85%;
    max-width: 360px;
    margin: 30px auto 48px;
    height: 340px;
    overflow: scroll;
    padding: 25px 20px;
    border: 1px solid #247BD1;
    background-color: #FFFFFF;
  }

  .privacy-policy__title {
    font-size: 24px;
  }

  .privacy-policy__item__title {
    font-size: 18px;
  }

  .privacy-policy__check {
    font-size: 16px;
  }

  ._checkPc {
    display: none;
  }
}

/* Thanksページ */
.thanks_inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #FFFFFF;
  font-size: 16px;
  margin: 200px auto;
}

@media screen and (max-width: 480px) {
  .thanks_inner {
    margin: 100px auto;
  }
}

.complete {
  font-size: 20px;
  font-weight: 700;
}

.thanksFixed {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thanksFixed_main {
  flex: 1;
  background-color: #247BD1;
}


/* #pc_container img, */
.sp_container img {
  width: 100%;
  display: block;
}