@charset "UTF-8";

body {
  position: relative;
}

main {
  position: relative;
}

.fw-B {
  font-weight: bold;
}

.txt-c {
  text-align: center !important;
}

.txt_indent{
  text-indent: -1.0em;
  padding-left: 1.0em;
}

.txtLink {
  text-decoration: underline;
}
.txtLink.blank {
  padding-right: 1.0em;
  position: relative;
}
.txtLink.blank::after {
  content: "";
  position: absolute;
  background-image: url(../img/icon01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 0.75em;
  height: 0.75em;
  margin: auto;
  top: 50%;
  bottom: 50%;
  right: 0;
}

.accordion_wrap {
  margin: 0 4.875% 4.875%;
}

.accordion_btn {
  display: flex;
  align-items: center;
  background-color: #E4E4E4;
  color: #000000 !important;
  border: 1px solid #000;
  padding: 0.75em;
  text-align: left;
  width: 100%;
  font-size: 28px;
  border-radius: 12px;
}
.accordion_btn02 {
  justify-content: flex-end;
}
.is-open .accordion_btn {
  border-radius: 12px 12px 0 0;
}
.faq .accordion_btn {
  font-size: 22px;
}
.faq .accordion_btn::before {
  display: flex;
  content: "Q";
  font-size: 32px;
  margin-right: 0.25em;
  font-weight: bold;
}

.faq_txt p {
  font-size: 16px;
}

.accordion_btn::after {
  content: "開く＋";
  margin-left: auto;
  font-size: 0.75em;
  width: 25%;
  text-align: right;
}
.accordion_btn02::after {
  margin-left: 0;
  font-size: 0.75em;
  width: 20%;
  text-align: right;
}
.is-open .accordion_btn::after {
  content: "閉じる－";
}

.accordion_body {
  border: 1px solid #000;
  border-top: none;
  background-color: #fff;
}
.accordion_body ul {
  padding: 1.25%;
  font-size: 22px;
}
.accordion_body div {
  padding: 3.25%;
  font-size: 26px;
}

@media screen and (min-width: 768px) {
  body {
    background-image: url(../img/bg_pc.png);
    background-size: 1920px;
    background-position: center 80px;
    background-attachment: fixed;
  }
}

@media screen and (max-width: 767px) {
  .accordion_btn {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .faq .accordion_btn {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .faq .accordion_btn::before {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .accordion_body ul {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .faq_txt p {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
}

/* ヘッダ */
  body.open {
  overflow: hidden;
}

.l-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: 0 !important;
  padding-block: 0 !important;
  padding-inline: 0 !important;
}
.header_wrap {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  z-index: 9999;
}
.header_inner {
  width: 100%;
  height: calc(var(--fixed-header-height) * 1px);
  max-width: 940px;
  margin-inline: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-block: 16px;
  padding-inline: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  z-index: 99999;
}
.l-header__logo img {
    display: block;
    width: 160px;
}
.l-header__logo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .header_inner {
        height: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
        padding-block: calc(29 / var(--design-width) * 100vw);
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
    }
    .l-header__logo {
        width: calc(160 / var(--design-width) * 100vw);
    }
}

.header_hmb {
  width: 30px;
  height: 30px;
  position: relative;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: none;
}
.header_hmb span,
.header_hmb span::after,
.header_hmb span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #cc0033;
  transition: all 0.5s;
}
.header_hmb span::before {
  top: -10px;
}
.header_hmb span::after {
  bottom: -10px;
}

.header_hmb.open span {
  background-color: transparent;
}
.header_hmb.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.header_hmb.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.nav_bg {
  /* position: absolute; */
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 80px;
  z-index: 9998;
  transition: all 0.5s;
}
.nav_bg.open {
  opacity: 0.5;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .header_hmb {
    width: calc(30 / var(--design-width) * 100vw);
    height: calc(30 / var(--design-width) * 100vw);
    position: relative;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
  .header_hmb span,
  .header_hmb span::after,
  .header_hmb span::before {
    height: calc(2 / var(--design-width) * 100vw);
  }
  .header_hmb span::before {
    top: calc(-10 / var(--design-width) * 100vw);
  }
  .header_hmb span::after {
    bottom: calc(-10 / var(--design-width) * 100vw);
  }
  .nav_bg {
    top: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    position: absolute;
  }
}
@media screen and (max-width: 1450px) {
    .nav_bg {
        position: absolute;
    }
}

.nav_btn_ttl {
/* 	display: flex;
	align-items: center;
  font-size: 22px; */
  text-align: center;
  margin: 40px 50px 0px;
}
.nav_btn_ttl:before,
.nav_btn_ttl:after {
/*   content: "";
  flex-grow: 1;
  height: 1px;
  background: #fff;
  margin:0 1em; */
}
.nav_btn_subttl {
  font-size: 22px;
  text-align: center;
  padding-block: 0 26px;
  display: block;
  font-weight: bold;
  line-height: 1.5555555556;
  background: url(../img/img_intro_border.png) center bottom no-repeat;
  background-size: 100% 20px;
  text-align: center;
  margin-inline: auto;
  margin-inline-start: auto;
  margin-inline-end: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.header_nav .c-btn-1--white {
  font-size: 18px;
  padding: 18px 60px;
  background-color: #fff;
  color: #000000;
}
.header_nav .c-btn-1--white::after {
  background: url(../img/icon_outlink-2-bk.png) center center no-repeat;
  background-size: contain;
}
.header_nav .c-btn-1--white02 {
  background-color: #fff;
  color: #000000;
  padding: 6px 60px;
  line-height: 1.55;
}
.header_nav .c-btn-1--white02::after {
  background: url(../img/icon_outlink-2-bk.png) center center no-repeat;
  background-size: contain;
}

.nav_btn {
  padding: 20px 50px;
  max-width: 374px;
  margin: 0 auto;
}
.nav_btn .c-btn-1--pink{
    padding: 15px 60px;
}
.nav_btn .c-btn-1--pink02{
    padding: 2px 62px;
}
.pdb0{
    padding-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  .nav_btn_flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav_btn_flex .nav_btn {
    padding: 20px 10px;
    margin: 0;
    
  }
  .nav_btn_flex .nav_btn a {
    font-size: 16px;
  }
  .nav_btn_flex .nav_btn a::after {
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .nav_btn_ttl {
    /* display: flex; */
    align-items: center;
    font-size: calc(22 / var(--design-width) * 100vw);
  }
  .nav_btn_subttl {
    font-size: calc(22 / var(--design-width) * 100vw);
    padding-block: 0 calc(26 / var(--design-width) * 100vw);
    background: url(../img/img_intro_border.png) 1vw bottom no-repeat;
    background-size: 93% calc(20 / var(--design-width) * 100vw);
    text-align: center
  }
  .nav_btn {
    max-width: 540px;
    padding: calc(20 / var(--design-width) * 100vw) calc(50 / var(--design-width) * 100vw);
    text-align: center;
  }
  .header_nav .c-btn-1--white {
    font-size: calc(26 / var(--design-width) * 100vw);
    padding-block: calc(21 / var(--design-width) * 100vw);
  }
  .header_nav .c-btn-1--white02 {
    padding: calc(3 / var(--design-width) * 100vw) calc(60 / var(--design-width) * 100vw) calc(3 / var(--design-width) * 100vw) calc(50 / var(--design-width) * 100vw);
    font-size: calc(26 / var(--design-width) * 100vw);
  }
}

a.txtLink.txtLinkIcon{
    display: inline-block;
}
a.txtLink.txtLinkIcon::after{
    content: "";
    position: absolute;
    top: 53%;
    right: 37%;
    display: block;
    width: 13px;
    aspect-ratio: 18 / 12;
    -webkit-mask: url(../img/icon_outlink-3.svg) center center no-repeat;
    mask: url(../img/icon_outlink-3.svg) center center no-repeat;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    background-color: var(--color-red-1);
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    a.txtLink.txtLinkIcon::after{
        right: 25%;
        width: 6%;
    }
}

.header_nav_subttl {
    font-size: 32px;
    margin: calc(20 / var(--design-width) * 100vw) calc(30 / var(--design-width) * 100vw);
    padding-left: 1.0em;
    border-left: 2px solid #CC0033;
}
.header_nav_anchor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.header_nav_anchor li {
    margin: 1.125% calc(20 / var(--design-width) * 100vw);
    border-bottom: 2px dashed var(--color-base-1);
    width: 94%;
}
.header_nav_anchor li a {
    position: relative;
    display: flex;
    color: var(--color-base-1);
    padding: 0.3em 0;
    font-size: 28px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.header_nav_anchor a span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 0.75em;
    height: 0.75em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    margin-left: 1.0em;
    transform: translateY(0) rotate(135deg);
}

@media screen and (max-width: 767px) {
    .nav_bg {
        position: absolute;
        background-color: #000000;
        opacity: 0;
        pointer-events: none;
        width: 100%;
        height: 100%;
        top: 80px;
        z-index: 9998;
        transition: all 0.5s;
    }
    .header_hmb {
        display: block;
      width: calc(30 / var(--design-width) * 100vw);
      height: calc(30 / var(--design-width) * 100vw);
        position: relative;
        appearance: none;
        border: 0;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }
    .header_hmb span,
    .header_hmb span::after,
    .header_hmb span::before {
        height: calc(2 / var(--design-width) * 100vw);
    }
    .header_hmb span::before {
        top: calc(-10 / var(--design-width) * 100vw);
    }
    .header_hmb span::after {
        bottom: calc(-10 / var(--design-width) * 100vw);
    }
    .nav_bg {
        top: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    }
    .header_nav_anchor li {
        border-bottom: calc(2 / var(--design-width) * 100vw) dashed var(--color-base-1);
    }
    .header_nav_anchor li a {
        font-size: calc(28 / var(--design-width) * 100vw);
    }
    .header_nav_subttl {
        font-size: calc(32 / var(--design-width) * 100vw);
    }
}

@media screen and (max-width: 1450px) {
    .header_hmb {
        display: block;
    }
}
.header_nav {
    position: fixed;
    width: 82%;
    height: calc(100vh - 80px);
    overflow-y: scroll;
    top: 80px;
    left: auto;
    right: 0;
    background-color: #ffffff;
    color: #000000;
    transition: all 0.5s;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    margin: 0 auto;
}
.header_nav_list {
    display: flex;
    flex-wrap: wrap;
}
.header_nav_item {
    width: 50%;
}
.header_nav_item a {
    display: flex;
    justify-content: space-between;
    font-size: 28px;
    text-decoration: none;
    padding: 20px 50px;
}
.header_nav.open {
    pointer-events: all;
    opacity: 1;
    transition: all 0.5s;
}
.header_nav_item a span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 0.75em;
    height: 0.75em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    margin-left: 1.0em;
    transform: translateY(0.375em) rotate(45deg);
}
@media screen and (max-width: 767px) {
    .header_nav {
        height: calc(100vh - (var(--fixed-header-height) / var(--design-width) * 100vw));
        top: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
    }
    .header_nav_list {
        display: block;
    }
    .header_nav_item {
        width: 100%;
    }
    .header_nav_item a {
        font-size: calc(28 / var(--design-width) * 100vw);
        padding: calc(20 / var(--design-width) * 100vw) calc(50 / var(--design-width) * 100vw);
    }

}

.nav_btn_ttl {
	display: flex;
	align-items: center;
    font-size: 22px;
    margin: 20px 50px;
}
.nav_btn_ttl:before,
.nav_btn_ttl:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #000;
    margin:0 1em;
}
.header_nav .c-btn-1--white::after {
    background: url(../img/icon_outlink-2.png) center center no-repeat;
    background-size: contain;
}
.header_nav .c-btn-1--white02 {
    background-color: #CC0033;
    border-color: var(--color-base-1);
    color: #ffffff;
    padding: 6px 60px;
    line-height: 1.55;
}
.header_nav .c-btn-1--white02::after {
    background: url(../img/icon_outlink-2.png) center center no-repeat;
    background-size: contain;
}
.nav_btn {
    padding: 20px 50px;
    max-width: 374px;
    margin: 0 auto;
}

.nav_btn_txt01 {
    font-size: 16px;
    padding: 10px;
    text-align: center;
}
.nav_btn_txt02 {
    font-size: 16px;
    padding: 10px;
    text-align: center;
}
.nav_btn_txt02::before {
    content: "＼";
    padding-right: 1em;
}
.nav_btn_txt02::after {
    content: "／";
    padding-left: 1em;
}

@media screen and (min-width: 768px) {
    .nav_btn_flex {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav_btn_flex .nav_btn {
        padding: 20px 10px;
        margin: 0;
    }
    .nav_btn_flex .nav_btn a {
        font-size: 18px;
    }
    .nav_btn_flex .nav_btn a::after {
        right: 24px;
    }
    .header_nav .c-btn-1--white {
        font-size: 18px;
        padding: 18px 60px;
    }
}
@media screen and (max-width: 767px) {
    .nav_btn_ttl {
        display: flex;
        align-items: center;
        font-size: calc(22 / var(--design-width) * 100vw);
    }
    .nav_btn {
        max-width: 540px;
        padding: calc(5 / var(--design-width) * 100vw) calc(15 / var(--design-width) * 100vw);
    }
    .header_nav .c-btn-1--white {
      font-size: calc(26 / var(--design-width) * 100vw);
      padding-block: calc(21 / var(--design-width) * 100vw);
    }
    .header_nav .c-btn-1--white02 {
      padding: calc(3 / var(--design-width) * 100vw) calc(60 / var(--design-width) * 100vw) calc(3 / var(--design-width) * 100vw) calc(50 / var(--design-width) * 100vw);
      font-size: calc(26 / var(--design-width) * 100vw);
    }
    .nav_btn_txt01 {
        font-size: calc(16 / var(--design-width) * 100vw);
        padding: calc(10 / var(--design-width) * 100vw);
    }
    .nav_btn_txt02 {
        font-size: calc(16 / var(--design-width) * 100vw);
        padding: calc(10 / var(--design-width) * 100vw);
    }
}

@media screen and (max-width: 1450px) {
    .l-footer__copyright {
        padding-bottom: 180px;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__copyright {
        padding-bottom: 0;
    }
}


.l-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: calc(var(--fixed-header-height) / var(--design-width) * 100vw);
  }
}

.conts01 {
  background-image: url(../img/bg01.png);
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 5%;
  padding-bottom: 15%;
}

.conts01_ttl {
  color: #cc0033;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding: 6.125% 0 3.125%;
}
.conts01_ttl span {
  font-size: 42px;
}

.conts01_txt01 {
  font-size: 26px;
  text-align: center;
  padding-top: 3%;
  transform: translateY(10%);
}

.conts01_img01 {
  margin: 0 4.875%;
}

.conts01_wrap01 {
  margin: 0 4.875% 6.875%;
  background-color: #ffffff;
  border: 3px solid #84AEE6;
  border-radius: 16px;
}

.conts01_img02 {
  padding: 5% 2.46%;
}

.conts01_txt02 {
  font-size: 24px;
  text-align: right;
  padding: 0 5% 3.25%;
}

.conts01_img03 {
  margin: 0 4.875%;
}

.conts01_wrap02 {
  margin: 0 4.875% 6.875%;
  background-color: #ffffff;
  border: 3px solid #84AEE6;
  border-radius: 16px;
}

.conts01_img04 {
  padding: 5% 2.46%;
}

.conts01_txt03 {
  font-size: 22px;
  padding: 0 5% 3.25%;
}

.conts01_txt03 li {
  text-indent: -1.0em;
  padding-left: 1.0em;
}

.conts01_txt04 {
  font-size: 22px;
  padding: 0 5% 3.25%;
  text-align: right;
}

.conts01_img05 {
  margin: 0 8.875%;
}
.conts01_img06 {
  margin: 0 4.875% 0;
}
.conts01_img07 {
  padding: 5% 2.46%;
}

.conts01_btn01 {
  margin: 0 4.875% 4.875%;
}
.conts01_txt05 {
  font-size: 22px;
  padding: 0 5% 3.25%;
  text-align: center;
}

.conts01_img08 {
  padding: 0 4.46% 5%;
}

.conts01_img09 {
  padding: 5% 2.46%;
}


@media screen and (max-width: 767px) {
  .conts01_ttl {
    font-size: calc(48 / var(--design-width) * 100vw);
  }
  .conts01_ttl span {
    font-size: calc(60 / var(--design-width) * 100vw);
  }
  .conts01_txt01 {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .conts01_txt02 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts01_txt03 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts01_txt04 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts01_txt05 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
}



.conts02 {
  background-image: url(../img/bg02.png);
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 5%;
  position: relative;
}

.conts02_ttl {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding: 7.125% 0 0;
  position: absolute;
  margin: 0 auto;
  width: 100%;
}
.conts02_ttl span {
  font-size: 42px;
  color: #cc0033;
}

.conts02_img01 {
  margin: 0 4.875% 4.875%;
}
.conts02_img02 {
  margin: 0 0 4.875%;
}
.conts02_img03 {
  margin: 0 4.875% 4.875%;
}

.conts02_txt01 {
  text-align: left;
  margin: 0 4.875% 7.875%;
  font-size: 22px;
}

.conts02_txt01 li {
  text-indent: -1.0em;
  padding-left: 1.0em;
}

.conts02_img04 {
  margin: 0 19.275% 4.875%;
}
.conts02_txt02 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding: 5.125% 0;
  margin: 0 auto;
  width: 100%;
}

.conts02_tab01 {
  margin: 0 4.875% 7.875%;
}

.conts02_tab01_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.conts02_tab01_head li {
  border: 2px solid #0D468F;
  border-bottom: none;
  background-color: #ffffff;
  width: 48%;
  height: 100%;
  border-radius: 24px 24px 0 0;
}
.conts02_tab01_head li button {
  color: #000000;
  width: 100%;
  padding: 3.125% 0;
  font-size: 34px;
  font-weight: bold;
}
.conts02_tab01_head li button span {
  display: block;
  padding: 8.825% 0;
}
.conts02_tab01_head li.active {
  background-color: #0D468F;
}
.conts02_tab01_head li.active button {
  color: #ffffff;
  padding: 8.125% 0;
}

.conts02_tab01_body {
  border: 2px solid #0D468F;
  background-color: #ffffff;
  border-radius: 0 0 24px 24px;
}

.conts02_tab01_body li {
  display: none;
  padding: 4.875%;
}
.conts02_tab01_body li.active {
  display: block;
}

.conts02_tab01_img {
  padding-bottom: 5.125%;
}

.conts02_tab01_caution {
  font-size: 22px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}

.conts02_txt03 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 0.125%;
  margin: 0 auto;
  width: 100%;
}

.conts02_btn01 {
  margin: 0 4.875%;
  padding-bottom: 5.125%;
}

.conts02_txt04 {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 5% 0 8.125%;
  margin: 0 auto;
  width: 100%;
  color: #cc0033;
}
.conts02_txt05 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding: 5.125% 0 5.125%;
  margin: 0 auto;
  width: 100%;
}

.border01 {
  width: 50%;
  margin: 0 auto;
  border: 1px solid #C1C0C0;
}

.conts02_txt06 {
  font-size: 26px;
  text-align: center;
  padding: 5.125% 0 5.125%;
  margin: 0 auto;
  width: 100%;
}

.conts02_img05 {
  margin: 0 4.875% 7.875%;
}


.conts02_tab02 {
  margin: 0 4.875% 7.875%;
}

.conts02_tab02_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.conts02_tab02_head li {
  border-bottom: none;
  background-color: #E6F7FF;
  width: 50%;
  height: 100%;
  border-radius: 24px 24px 0 0;
}
.conts02_tab02_head li button {
  color: #000000;
  width: 100%;
  padding: 3.125% 0;
  font-size: 30px;
  font-weight: bold;
}
.conts02_tab02_head li button span {
  display: block;
  padding: 8.825% 0;
}
.conts02_tab02_head li.active {
  background-color: #CBEEFF;
}
.conts02_tab02_head li.active button {
  padding: 8.125% 0;
}

.conts02_tab02_body {
  background: #CBEEFF;
  background: linear-gradient(180deg,rgba(203, 238, 255, 1) 86%, rgba(255, 255, 255, 1) 100%);
  border-radius: 0 0 24px 24px;
}

.conts02_tab02_body li {
  display: none;
  padding: 4.875%;
}
.conts02_tab02_body li.active {
  display: block;
}

.conts02_tab02_txt01 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}

.conts02_tab02_img01 {
  margin: 7% 29%;
}

.conts02_tab02_txt02 {
  font-size: 26px;
  margin-bottom: 5.125%;
}

.conts02_tab02_btn01 {
  margin-bottom: 5.125%;
}

.conts02_tab02_txt03 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5.125%;
}

.conts02_tab02_img02 {
  margin-bottom: 5.125%;
}

.conts02_tab02_caution {
  font-size: 22px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}

@media screen and (max-width: 767px) {
  .conts02_ttl {
    font-size: calc(38 / var(--design-width) * 100vw);
  }
  .conts02_ttl span {
    font-size: calc(56 / var(--design-width) * 100vw);
  }
  .conts02_tab01_head li button {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .conts02_tab01_caution {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts02_txt01 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts02_txt03 {
    font-size: calc(42 / var(--design-width) * 100vw);
  }
  .conts02_txt04 {
    font-size: calc(48 / var(--design-width) * 100vw);
  }
  .conts02_txt05 {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .conts02_txt06 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts02_tab02_head li button {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .conts02_tab02_caution {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts02_tab02_txt01 {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .conts02_tab02_txt02 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts02_tab02_txt03 {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
}

.conts03 {
  background-image: url(../img/bg03.png);
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 17% 0 0;
}

.conts03_inner {
  background: #F2FFE8;
  background: linear-gradient(180deg,rgba(242, 255, 232, 1) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 5% 0 0;
}

.conts03_img01 {
  margin: 0 9.875% 1.875%;
}

.conts03_ttl {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 3.125%;
}

.conts03_wrap01 {
  background-color: #A4E0C5;
  border: 2px solid #A4E0C5;
  margin: 0 4.875% 7.875%;
  padding: 5.125% 0;
  border-radius: 12px;
}
.conts03_wrap01_inner {
  background-color: #ffffff;
}

.conts03_img02 {
  padding: 3.125%;
}

.conts03_txt01 {
  text-align: right;
  font-size: 26px;
  padding: 0 3.125% 3.125%;
}

.conts03_img03 {
  padding: 0 3.125% 3.125%;
}
.conts03_img03 a {
  display: block;
  border: 2px solid #aaaaaa;
}

.conts03_txt02 {
  font-size:28px;
  font-weight: bold;
  text-align: center;
}

.conts03_txt03 {
  font-size: 22px;
  padding: 3.125% 3.125%;
}
.conts03_txt04 {
  font-size:36px;
  padding: 3.125% 3.125%;
  text-align: center;
}
.conts03_txt05 {
  font-size:28px;
  padding: 3.125% 3.125%;
  text-align: center;
}
.conts03_txt05 span {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .conts03_ttl {
    font-size: calc(48 / var(--design-width) * 100vw);
  }
  .conts03_txt01 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts03_txt02 {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .conts03_txt03 {
    font-size: calc(24 / var(--design-width) * 100vw);
  }
  .conts03_txt04 {
    font-size: calc(48 / var(--design-width) * 100vw);
  }
  .conts03_txt05 {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
}

.conts04 {
  background-image: url(../img/bg04.png);
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 17% 0 3%;
}

.conts04_inner {
  background: #D3E5FF;
  background: linear-gradient(180deg,rgba(211, 229, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
  padding: 5% 0 0;
}

.conts04_img01 {
  margin: 0 20.875% 1.875%;
}

.conts04_ttl {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 5.125%;
}

.conts04_wrap {
  position: relative;
  margin: 0 5.875% 5.875%;
}
.conts04_wrap .txt{
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  right: 2%;
  width: 68%;
  height: 100%;
  margin-left: auto;
  align-items: center;
  font-size: 28px;
}

.conts04_wrap02 {
  background-color: #ffffff;
  padding: 4.125%;
  border-radius: 12px;
  margin: 0 3.125% 5.125%;
}

.conts04_wrap02 .ttl {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 3.125%;
}
.conts04_wrap02 .ttl .tag01 {
  color: #cc0033;
  border: 2px solid #cc0033;
  border-radius: 8px;
  padding: 0 0.25em;
  margin-right: 0.25em;
}
.conts04_wrap02 .ttl .tag02 {
  color: #ffffff;
  border: 2px solid #cc0033;
  background-color: #cc0033;
  border-radius: 8px;
  padding: 0 0.25em;
  margin-right: 0.25em;
}


.conts04_wrap02 .txt {
  font-size: 28px;
  margin-bottom: 0.25em;
}
.conts04_wrap02 .link {
  font-size: 28px;
  text-align: right;
}

.conts04_img03 {
  margin: 10.125% 3.125% 0.125%;
}
.conts04_btn01 {
  margin: 0 3.125% 5.125%;
}

@media screen and (max-width: 767px) {
  .conts04_ttl {
    font-size: calc(48 / var(--design-width) * 100vw);
  }
  .conts04_wrap .txt{
    font-size: calc(33 / var(--design-width) * 100vw);
  }
  .conts04_wrap02 .ttl {
    font-size: calc(32 / var(--design-width) * 100vw);
  }

  .conts04_wrap02 .txt {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .conts04_wrap02 .link {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
}

.conts05 {
  background-image: url(../img/bg05.png);
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 12% 0 5%;
}

.conts05_ttl {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 5.125%;
}

.conts06_ttl {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 5.125% 0 8.125%;
}

.conts06_wrap {
  border: 4px solid #cc0033;
  background-color: #cc0033;
  border-radius: 12px;
  margin: 0 3.125% 8.125%;
}

.conts06_wrap_ttl {
  color: #ffffff;
  text-align: center;
  font-size: 30px;
  padding: 5.125%;
}

.conts06_wrap_inner {
  background-color: #ffffff;
  padding: 8.125% 0;
  border-radius: 0 0 12px 12px;
}

.conts06_img01 {
  margin: 0 4.875% 6.875%;
}

.conts06_img02 {
  margin: 0 4.875% 8.875%;
}

.conts06_bnr_ttl {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.conts06_bnr {
  margin: 0 4.875% 6.875%;
}

@media screen and (max-width: 767px) {
  .conts05_ttl {
    font-size: calc(48 / var(--design-width) * 100vw);
  }
  .conts06_ttl {
    font-size: calc(48 / var(--design-width) * 100vw);
  }
  .conts06_bnr_ttl {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
  .conts06_wrap_ttl {
    font-size: calc(42 / var(--design-width) * 100vw);
  }
}


.pc_left {
  padding-top: 80px;
  position: fixed;
  width: calc((100% - 640px)/2);
}

.anchor_list {
  width: 280px;
  padding-top: 100px;
  margin-left: auto;
}
.anchor_list li {
  position: relative;
  font-size: 20px;
  margin-bottom: 1.0em;
}
.anchor_list li.anchor-select::before {
  position: absolute;
  content: "";
  background-color: #cc0033;
  width: 50px;
  height: 6px;
  top: 50%;
  bottom: 50%;
  left: -65px;
  margin: auto 0;
  border-radius: 24px;
}


.pc_right {
  padding-top: 150px;
  position: fixed;
  width: calc((100% - 640px)/2);
  right: 0;
}

.pc_right_wrap01 {
  width: 358px;
  margin-left: 86px;
  margin-bottom: 20px;
  background: #CC0033;
  background: linear-gradient(180deg,rgba(204, 0, 51, 1) 0%, rgba(180, 2, 46, 1) 100%);
  border-radius: 24px;
  box-shadow: 0px 12px 24px -12px;
}
.pc_right_wrap01_img01 {
  padding: 4% 11% 4%;
}
.pc_right_wrap01_btn01 {
  padding: 0% 4% 4%;
}
.pc_right_wrap01_btn01 .mymodal_btn {
  font-size: 24px;
}
.pc_right_wrap01_txt {
  text-align: center;
}
.pc_right_wrap01_txt a {
  font-size: 16px;
}
.pc_right_wrap01_btn02 {
  padding: 0% 4% 4%;
}
.pc_right_wrap01_btn02 .mymodal_btn {
  font-size: 24px;
}
.pc_right_wrap02 {
  width: 358px;
  margin-left: 86px;
}
.pc_right_wrap02 .conts02_txt03 {
  font-size: 24px;
  padding: 0 0 0.125%;
}


.js-pagetop {
  position: absolute;
  width: 45px;
  bottom: 45px;
  right: calc((100% - 640px)/2 + 15px );
}

.float_area {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.float_bnr {
  display: none;
  max-width: 640px;
  margin: 0 auto;
  justify-content: center;
}
.float_bnr li {
  width: 45%;
  padding: 2.125%;
}

.modal_area {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}



@media screen and (max-width: 1450px) {
  .pc_left,.pc_right {
    display: none;
  }
  .float_bnr {
    display: flex;
  }
  .js-pagetop {
    bottom: 165px;
  }
}


@media screen and (max-width: 767px) {
  .js-pagetop {
    bottom: 105%;
    right: 15px;
  }
}


.mymodal{
    position:fixed;
    left:0;
    top:calc(45 / 16 * 1em);
    width:100%;
    height:calc(100dvh - calc(45 / 16 * 1em));
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999;opacity:0;
    transition:.5s;
    pointer-events:none
}
.mymodal.is-open{opacity: 1;pointer-events:all;}
.mymodal .mymodal-bg{position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,0.8)}
.mymodal .mymodal-inner{
    position:relative;
    background: #DC849A;
    background: linear-gradient(180deg,rgba(220, 132, 154, 1) 0%, rgba(212, 72, 107, 1) 100%);
    border-radius: 16px;
    padding: 0 3.125%;
    
}
.mymodal-inner li {
    text-align: center;
    margin-bottom: 5%;
}
.mymodal_img {
    width: 96%;
    margin: 0 auto;
    transform: translateY(10%);
    z-index: 2;
    position: relative;
}
.mymodal_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 632px;
    padding: 20px 40px;
    margin: 0 auto;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    border: 2px solid #cc0033;
    height: 100%;
    background-color: #ffffff;
    color: #cc0033;
}
.mymodal_btn:after {
    content: "";
    display: block;
    position: absolute;
    right: .75em;
    top: calc(50% - .25em);
    width: .5em;
    height: .5em;
    border-style: solid;
    border-width: 1px 1px 0 0;
    border-color: #cc0033;
    transform: rotate(45deg);
    transition: .3s;
}
.mymodal .mymodal-close-btn{
    display: block;
    position: absolute;
    right: 0;
    top: -2.5em;
    width: 2.5em;
    height: 2.5em;
}
.mymodal .mymodal-close-btn:before,.mymodal .mymodal-close-btn:after{content:"";display:block;position:absolute;left:25%;top:50%;width:50%;border-top:calc(3 / 16 * 1em) solid #fff}
.mymodal .mymodal-close-btn:before{transform:rotate(45deg)}
.mymodal .mymodal-close-btn:after{transform:rotate(-45deg)}
.mymodal.is-show{opacity:1;pointer-events:auto}
@media screen and (max-width: 767px){
    .mymodal .mymodal-inner{
        width:calc(540 / 750 * 100%);
    }
    .mymodal_btn {
        padding: 5% 3.125%;
        font-size: calc(26 / var(--design-width) * 100vw);;
        border-radius: 2vw;
        border: 2px solid #cc0033;
    }
}
@media screen and (max-width: 960px){
    .mymodal{
        top:calc(45 / 16 * 1em);
    }
}


.modal_btn_balloon{
    display: block;
    position: absolute;
    top: -45%;
    left: 15%;
    width: 70%;
} 
.modal_btn_balloon img{
    width: 100%;
}
.modal_btn_balloon_260611 {
    width: 88%;
    margin: 0 auto;
}
.modal_btn_balloon_260611 p {
    color: #fff !important;
    font-size: 28px;
}
.modal_txt_link{
    position: relative;
    text-decoration: underline;
    padding-right: 32px;
    font-size: 20px;
    color: #ffffff;
}
.modal_txt_link::after {
    background-image: url(../img/icon02.png) !important;
}


@media screen and (max-width: 1450px) {
    .mymodal-inner .nav_btn_subttl {
        width: 80%;
        color: var(--color-white-1);
        font-size: calc(40 / var(--design-width) * 100vw);
    }
    .modal_txt {
        font-size: calc(30 / var(--design-width) * 100vw);
        color: var(--color-white-1);
    }
    .mymodal-inner li {
        margin-bottom: 10%;
    }
}
@media screen and (max-width: 1100spx) {
    .mymodal-inner .nav_btn_subttl {
        width: 80%;
        color: var(--color-white-1);
        font-size: calc(36 / var(--design-width) * 100vw);
    }
    .modal_txt {
        font-size: calc(26 / var(--design-width) * 100vw);
        color: var(--color-white-1);
    }
    .mymodal-inner li {
        margin-bottom: 10%;
    }
}

@media screen and (max-width: 820px) {
    .mymodal-inner .nav_btn_subttl {
        width: 80%;
        color: var(--color-white-1);
        font-size: calc(44 / var(--design-width) * 100vw);
    }
    .modal_txt {
        font-size: calc(36 / var(--design-width) * 100vw);
        color: var(--color-white-1);
    }
    .mymodal-inner li {
        margin-bottom: 10%;
    }
}
@media screen and (max-width:767px) {
      
  .modal_btn_balloon_260611 p {
      font-size: calc(36 / var(--design-width) * 100vw);
  }
}
@media screen and (max-width:700px) {
    .mymodal-inner .nav_btn_subttl {
        width: 80%;
        color: var(--color-white-1);
        font-size: calc(30 / var(--design-width) * 100vw);
    }
    .modal_txt {
        font-size: calc(20 / var(--design-width) * 100vw);
        color: var(--color-white-1);
    }
    .mymodal-inner li {
        margin-bottom: 10%;
    }
}

@media screen and (max-height:560px) {
    .mymodal .mymodal-inner {
      padding: 3.125%;
    }
    .mymodal .mymodal-close-btn{
        right: -3.5em;
        top: -3em;
        width: 2.5em;
        height: 2.5em;
    }
    .mymodal-inner li:first-child {
        position: absolute;
        right: 2.5em;
    }
    .mymodal-inner .nav_btn_subttl {
        width: 80%;
        color: var(--color-white-1);
        font-size: calc(24 / var(--design-width) * 100vw);
    }
    .modal_txt {
        font-size: calc(16 / var(--design-width) * 100vw);
        color: var(--color-white-1);
    }
    .mymodal-inner li {
        margin-bottom: 4%;
        width: calc(540 / 750 * 100%);
        margin: 0 auto 4%;
    }
    .mymodal_btn {
        padding: 4% 3.125%;
        font-size: calc(16 / var(--design-width) * 100vw);
        border-radius: 2vw;
        border: 2px solid #cc0033;
    }
}


/* Nest Hub (第2世代) 向けの設定 */
@media screen and (min-width: 1024px) and (max-height: 600px) {
    .mymodal-inner li {
        margin-bottom: 5%;
    }
    .mymodal_btn{
        padding: 16px 40px;
        font-size: 32x;
    }
}
/* Nest Hub Max 用 */
@media screen and (min-width: 1280px) and (max-height: 800px) {
    .mymodal-inner li {
        margin-bottom: 5%;
    }
    .mymodal_btn{
        padding: 16px 40px;
        font-size: 32px;
    }
}
@media screen and (min-width: 1280px) {
    .mymodal-inner li {
        margin-bottom: 10%;
    }
    .modal_btn_balloon{
        top: -70%;
        left: 18%;
        width: 61%;
    }
} 



/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    /* padding-block: 0 112px; */
    max-width: 640px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .l-footer {
        max-width: 100%;
        padding-block: 0 calc(220 / var(--design-width) * 100vw);
    }
}
.l-footer__nav {
    padding-block: 30px 30px;
    background-color: #E5E5E5;
}
@media screen and (max-width: 767px) {
    .l-footer__nav {
        padding-block: calc(43 / var(--design-width) * 100vw) calc(50 / var(--design-width) * 100vw);
    }
}
.l-footer__copyright {
    padding-block: 60px;
    color: var(--color-base-1);
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    background-color: var(--color-white-1);
}
@media screen and (max-width: 1450px) {
    .l-footer__copyright {
        padding-bottom: 220px;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__copyright {
        padding-block: calc(60 / var(--design-width) * 100vw);
        font-size: calc(26 / var(--design-width) * 100vw);
        padding-bottom: 0;
    }
}
/*  l-footer-nav
--------------------------------------------- */
.l-footer-nav__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 3.1rem;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__list {
        display: block;
        padding-inline: calc(18 / var(--design-width) * 100vw);
    }
}
.l-footer-nav__list + .l-footer-nav__list {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__list + .l-footer-nav__list {
        margin-top: 0.5rem;
    }
}
@media screen and (max-width: 767px) {
    .l-footer-nav__item + .l-footer-nav__item {
        margin-top: 0.5rem;
    }
}
.l-footer-nav__link {
    position: relative;
    color: var(--color-base-1);
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    padding-right: 24px;
    white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav__link:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    .l-footer-nav__link {
        padding-right: calc(43 / var(--design-width) * 100vw);
        font-size: calc(26 / var(--design-width) * 100vw);
    }
}
.l-footer-nav__link::before {
    content: "";
    position: absolute;
    top: 55%;
    right: 0;
    display: block;
    width: 18px;
    aspect-ratio: 19/13;
    background: url(../img/icon01.png) center center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .l-footer-nav__link::before {
        width: calc(25 / var(--design-width) * 100vw);
    }
}


/* ---------------------------------------------
*   l-container
--------------------------------------------- */
.l-container {
    max-width: calc(var(--contents-width) * 1px);
    margin-inline: auto;
    padding-inline: calc(var(--contents-side-padding) * 1px);
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .l-container {
        max-width: none;
        padding-inline: calc(var(--contents-side-padding) / var(--design-width) * 100vw);
    }
  .conts06_bnr_ttl {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
}

.l-youtube_ttl {
  display: flex;
  width: 80%;
  margin: 0 auto 1.125%;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  justify-content: space-between;
}

.l-youtube__movie {
    width: 80%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    font-size: 0;
    line-height: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.l-youtube__movie iframe {
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 0;
}
@media screen and (max-width: 767px) {
  .l-youtube_ttl {
    font-size: calc(32 / var(--design-width) * 100vw);
  }
}