@charset "UTF-8";
/* freepage.css */
@charset "UTF-8";
/* フリーページ デフォルト */

main {
  background: #fff;
  padding-top: 24px;
}

.indent li {
  padding-left: 1em;
  text-indent: -1em;
}

span.indent {

  padding-left: 1em;
  text-indent: -1em;
}

/* common */
@media screen and (max-width: 767px) {

  section * {
    font-size: 1.4rem;
    line-height: 1.72;
  }

  section:not(:first-child) {
    margin-bottom: 10%;
  }

  section+section {}

  section div:not(.head_wrap) h2,
  section div:not(.head_wrap) h3 {
    font-weight: bold;
  }

  section div:not(.head_wrap) h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  section div:not(.head_wrap) h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    margin-top: 30px;
  }

}


@media screen and (min-width: 768px) {

  section * {
    font-size: 16px;
    line-height: 1.72;
  }

  section:not(:first-child) {
    margin-bottom: 64px;
  }

  section+section {}

  section div:not(.head_wrap) h2,
  section div:not(.head_wrap) h3 {
    font-weight: bold;
  }

  section div:not(.head_wrap) h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  section div:not(.head_wrap) h3 {
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 30px;
  }

}


/* MV */
.mv_slider .slick-initialized .slick-slide {}
.mv_slider .slick-slide figure {
  margin: 0 !important;
}
.mv_slider .slick-prev,
.mv_slider .slick-next {
  background: rgba(211,238,247, 0.9);
  top: 50%;
  z-index: 9;
}
.mv_slider .slick-prev:before,
.mv_slider .slick-next:before {
  color: #000;
}
.slick-slide {
  margin: 0 10px;
}
.slider {
  overflow: hidden;
}

@media screen and (min-width: 1120px) {

  .mv_slider .slick-prev {
    left: 50% !important;
    transform: translate(-570px, -50%);
    -webkit-transform: translate(-570px, -50%);
    -ms-transform: translate(-570px, -50%);
  }
  .mv_slider .slick-next {
    right: 50% !important;
    transform: translate(570px, -50%);
    -webkit-transform: translate(570px, -50%);
    -ms-transform: translate(570px, -50%);
  }

}

@media screen and (min-width: 768px) {

  .mv_slider .slick-prev,
  .mv_slider .slick-next {
    height: 190px;
    width: 50px;
  }
  .mv_slider .slick-prev {
    left: 5%;
  }

  .mv_slider .slick-next {
    right: 5%;
  }

}

@media screen and (max-width: 767px) {

  .mv_slider .slick-prev,
  .mv_slider .slick-next {
    height: 100px;
    width: 25px;
  }
  .mv_slider .slick-prev {
    left: 2%;
  }
  .mv_slider .slick-next {
    right: 2%;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 2.8rem;
  }
  .mv_slider .slick-slide figure img {
    /* max-width: 100%; */
    height: 200px;
  }

}






/* table */
section table {
  border-collapse:collapse; 
}
section table tr:not(:last-child) > * {
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
section table th {
  background: #D3EEF7;
  color: #0099CC;
  text-align: left;
  vertical-align: top;
}
section table td {
  background: #FAFAFA;
}

@media screen and (min-width: 768px) {

  section table {}
  section table tr>* {
    padding: 19px 1.4em 17px;
  }
  section table tr:not(:last-child)>* {}
  section table th {
    width: 27.34%;
    border-right: 1px solid #fff;
  }
  section table td {}

}

@media screen and (max-width: 767px) {

  section table tr>* {
  }
  section table tr>* {
    display: block;
    width: 100%;
  }
  section table th {
    padding: .6em 1.4em;
  }
  section table td {
    padding: .7em 1.4em;
  }

}




/* list */
section ul.disc li:before {
  content: "●";
  color: #0099CC;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  padding-right: .8em;
}
section ol {
  counter-reset: my-counter;
  list-style: none;
  padding-left: 0;
}
section ol li .text span:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  color: #0099CC;
  padding-right: .9em;
  text-indent: 0.3em;
  display: inline-block;
  font-weight: bold;
}

section ol li:nth-child(n + 10):before {
  padding-right: .3em;
}

@media screen and (max-width: 767px) {

  section ul.disc li,
  section ol li {
    text-indent: -1.3em;
    padding-left: 1.3em;
    line-height: 1.62;
    margin-bottom: 1.2em;
  }
  section ul.disc li:before,
  section ol li:before {
    padding-right: .3em;
  }

}





/* FAQ */
section .accordion_wrap ul li {
  border-bottom: 1px solid #E6E6E6;
}
section .accordion_wrap li>strong {
  position: relative;
}
section .accordion_wrap li > strong.open:after {
  transform: rotate(-45deg) translate(50%, 30%);
  -webkit-transform: rotate(-45deg) translate(50%, 30%);
  -ms-transform: rotate(-45deg) translate(50%, 30%);
}
section .accordion_wrap li > strong:after {
  content: '';
  position: absolute;
  right: 1.4em;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg) translate(-90%,0%);
  -webkit-transform: rotate(135deg) translate(-90%,0%);
  -ms-transform: rotate(135deg) translate(-90%,0%);
}
section .accordion_wrap strong i {
  display: inline-block;
  text-align: center;
  font-style: normal;
}
section .accordion_wrap strong > * {
  margin-left: 0;
}
section .accordion_wrap ul li > strong {
  font-weight: bold;
}
section .accordion_wrap strong i {
  background: #D3EEF7;
  color: #0099CC;
  font-weight: bold;
}
section .accordion_wrap div strong i {
  background: #0099CC;
  color: #FFED00;
}
section .accordion_wrap div strong p {
  font-weight: normal;
}

@media screen and (max-width: 767px) {

  section .accordion_wrap li {
    position: relative;
    padding: 19px 0;
    margin: 0;
  }
  section .accordion_wrap strong i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.8rem;
  }
  section .accordion_wrap strong {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  section .accordion_wrap li > strong p {
    /* font-size: 16px; */
    padding-right: 2em;
  }
  section .accordion_wrap strong > *:not(i) {
    padding-left: 1.4em;
    max-width: calc(100% - 50px);
  }
  section .accordion_wrap div {
    margin-top: 16px;
    /* display: none; */
  }
}

@media screen and (min-width: 768px) {

  section .accordion_wrap li {
    position: relative;
    padding: 19px 0;
    margin: 0;
  }
  section .accordion_wrap strong i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
  section .accordion_wrap strong {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  section .accordion_wrap li > strong p {
    font-size: 16px;
  }
  section .accordion_wrap strong > *:not(i) {
    padding-left: 1.4em;
    max-width: calc(100% - 50px);
  }
  section .accordion_wrap div {
    margin-top: 16px;
    /* display: none; */
  }

}







/* button_wrap */
.button_wrap {}
.button_wrap a {
  border: 3px solid #0099CC;
  border-radius: 10px;
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
}
.button_wrap a:after {
  content: '';
  position: absolute;
  right: 1.4em;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #0099CC;
  border-right: 2px solid #0099CC;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.button_wrap a span {
  display: block;
  font-weight: bold;
}

@media screen and (max-width: 767px) {

  .button_wrap ul li {
    min-height: 80px;
  }
  .button_wrap a {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    padding: 0 2em;
    box-sizing: border-box;
  }

}

@media screen and (min-width: 768px) {

  .button_wrap ul li {
    min-height: 80px;
  }
  .button_wrap a {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    padding: 0 2em;
    box-sizing: border-box;
  }

}



/* col_wrap・column */
.col_1,.col_2,.col_3,.col_4 {}

@media screen and (max-width: 767px) {

  .col_wrap.col_4 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  .button_wrap ul.col_4 li {
    min-height: none;
  }
  .button_wrap .col_4 a {
    min-height: 100%;
    padding: 0 1em;
  }
  .button_wrap .col_4 a span {
    padding: .6em 0;
  }

  .col_wrap+.col_wrap {
    margin-top: 2%;
  }
  .col_wrap span {
    line-height: 1.4;
  }
  .col_4>* {
    width: 48%;
  }
  .col_4>*:not(:nth-child(even)) {
    margin-right: 4%;
  }
  .col_4>*:nth-child(n+3) {
    margin-top: 2.4%;
  }
  .button_wrap .col_4 a:after {
    content: none;
  }
  .button_wrap .col_4 a span:after {
    content: "";
    display: block;
    width: 1.4em;
    height: 1.4em;
    margin: 0 auto -.6em;
    background: url(../img/common/icon_arrow.svg) 50% 50% / 140% no-repeat;

  }
  
  .button_wrap .col_2>* {
    width: 48%;
  }
  .button_wrap .col_2>*:not(:nth-child(even)) {
    margin-right: 4%;
  }
  .button_wrap .col_2>*:nth-child(n+3) {
    margin-top: 4%;
  }


  .col_wrap:not(.col_4) > *:nth-child(n+2) {
    margin-top: 2.4%;

  }
  /* .col_3>*+*:not(:first-child) {
    margin-top: 2.4%;
  } */


  .col_1>* {
    width: 100%;
  }
  .col_1>*:nth-child(n+2) {
    margin-top: 4%;
  }

}


@media screen and (min-width: 768px) {

  .col_wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .col_wrap+.col_wrap {
    margin-top: 2%;
  }
  .col_4 > * {
    width: 23.2%;
  }
  .col_4 > *:not(:nth-child(4n)) {
    margin-right: 2.4%;
  }
  .col_4 > *:nth-child(n+5) {
    margin-top: 2.4%;
  }
  .col_3 > * {
    width: 32.2%;
  }
  .col_3>*:not(:nth-child(3n)) {
    margin-right: 1.7%;
  }
  .col_3>*:nth-child(n+4) {
    margin-top: 1.7%;
  }
  .col_2>* {
    width: 48%;
  }
  .col_2>*:not(:nth-child(even)) {
    margin-right: 4%;
  }
  .col_2>*:nth-child(n+3) {
    margin-top: 4%;
  }
  .col_1>* {
    width: 100%;
  }
  .col_1>*:nth-child(n+2) {
    margin-top: 4%;
  }

}



/* 枠付き */
section .bg_wrap {
  background: #D3EEF7;
}
  .bg_wrap span {
    position: relative;
    font-weight: bold;
    letter-spacing: 0;
    display: inline-block;
    position: relative;
    padding-right: 1.2em;
  }
  .bg_wrap span.arrow:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 2px solid #0099CC;
    border-right: 2px solid #0099CC;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }
@media screen and (max-width: 767px) {

  section .bg_wrap {
    padding: 7% 6%;
  }

  .bg_wrap p {
    margin: 0 auto 36px;
  }
  .bg_wrap .col_wrap.col_4 > * {
    margin-bottom: 4%;
  }
  .bg_wrap span {
    font-size: 1.6rem;
    margin-top: 7.2%;
    padding-right: 1.2em;
  }

}

@media screen and (min-width: 768px) {

  section .bg_wrap {
    padding: 4% 3.9%;
  }
  .bg_wrap p {
    margin: 0 auto 36px;
  }
  .bg_wrap span {
    font-size: 18px;
    margin-top: 3.2%;
    line-height: 1.2;
    padding-right: 1.2em;
  }

}







/* アイコン */
.fs-c-productMarks {
  color: #fff;
}
.fs-c-productMark__mark {
  margin-bottom: 2px;
}
.tag_new {
  color: #000;
}
@media screen and (max-width: 767px) {
  
  .fs-c-productMarks {
    margin-top: 25px;
  }
  .fs-c-productMark__mark {
    height: 20px;
    line-height: 20px;
    padding: 0 12px;
    margin-right: 3px;
  }
  .fs-c-productMark__label {
    font-size: 10px;
  }

}

@media screen and (min-width: 768px) {
  


  .fs-c-productMark__mark {
    height: 36px;
    line-height: 36px;
    padding: 0 23px;
    font-size: 16px;
    font-weight: bold;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .fs-c-productMark__label {
    font-size: 12px;
  }

}





/* テキストリンク */
.text_link_list > * {
  margin-bottom: .5em;
}
main a.arrow {
  background: url(../img/common/icon_arrow.svg) no-repeat right center;
  display: inline-block;
  padding-right: 1.4em;
}
main a[target="_blank"] {
  background: url(../img/common/icon_blank.svg) no-repeat right center;
  display: inline-block;
  padding-right: 1.4em;
}
main a[href$=".pdf"] {
  background: url(../img/common/icon_pdf.svg) no-repeat right center;
  display: inline-block;
  padding-right: 1.4em;
}
main a.none_arrow {
  text-decoration: underline;
  background: none;
  display: inline;
  padding-right: 0;
}
main a.none_arrow:hover {
  text-decoration: none;
}























/* add common 追従 トップへ戻る */
@media screen and (max-width: 767px) {

  .to_top a {
    z-index: 8;
  }
  .to_top a {
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    font-size: 12px;
    padding-top: .8em;
    line-height: 1.4;
  }
  .to_top a::after {
    width: 6px;
    height: 6px;
    bottom: .8em;
  }

}

/* パンくず */
.breadcrumb {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .breadcrumb .fs-pt-list__item,
  .breadcrumb .fs-pt-list__link {
      font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .breadcrumb .fs-pt-list__item,
  .breadcrumb .fs-pt-list__link {
      font-size: 12px;
  }
}

















/* guide.css */
span.red {
    color: red;
}
span.blue {
    color: rgb(0, 132, 255);
}

section .accordion_wrap h2 + div {
  display: none;
}

section .accordion_wrap div ol li p {
    padding-left: 1.8em;
}

section .accordion_wrap div section div {
    display: block;
}
section .accordion_wrap table td span.indent_text {
    padding-left: 1em;
    display: block;
}

section .accordion_wrap div li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

section .accordion_wrap h2 {
    margin-bottom: 0!important;
}

section .accordion_wrap ol > li {
  display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

section .accordion_wrap ol > li .icon {
  width: 11.3%;
  margin-top: 0;
}

section .accordion_wrap ol > li .icon img {
  width: 100%;
  height: auto;
}

section .accordion_wrap ol > li .text {
  width: 86.4%;
  margin-top: 0;
}

section .accordion_wrap ol > li .text span {
  font-size: 20px;
}

section .accordion_wrap ol > li .text p {
  padding-left: 2.4em;
}

@media screen and (max-width: 767px) {
    section .accordion_wrap div ol li {
        text-indent: initial;
    }
    section .accordion_wrap div ol li p {
        padding-left: 1.3em;
    }

    section .accordion_wrap ol > li .icon {
      width: 23%;
    }
    
    section .accordion_wrap ol > li .text {
      width: 72.7%;
    }

    section .accordion_wrap ol > li .text span {
      font-size: 18px;
      text-indent: -1.8em;
      padding-left: 1.8em;
      display: block;
    }
}

  section .accordion_wrap li>h2 {
    position: relative;
    padding-right: 2em;
  }
  section .accordion_wrap li > h2.open:after {
    transform: rotate(-45deg) translate(50%, 30%);
    -webkit-transform: rotate(-45deg) translate(50%, 30%);
    -ms-transform: rotate(-45deg) translate(50%, 30%);
  }
  section .accordion_wrap li > h2:after {
    content: '';
    position: absolute;
    right: 1.4em;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg) translate(-90%,0%);
    -webkit-transform: rotate(135deg) translate(-90%,0%);
    -ms-transform: rotate(135deg) translate(-90%,0%);
  }
  
  section .accordion_wrap ul li > h2 {
    font-weight: bold;
  }

  table td li {
    border-bottom: none!important;
    text-indent: -1em;
    padding: 0 0 0 1em!important; 
  }
  
  @media screen and (max-width: 767px) {
    section .accordion_wrap h2 {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
  }
  
  @media screen and (min-width: 768px) {
    section .accordion_wrap h2 {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
  }