@charset "UTF-8";
/*note: INDEXの表示は、コメントの「 index: 」でハイライト表示してください。*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-style: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: クリアフィックス*/
/* Class と ステークホルダー の名称設定 */
/* 処理 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: スクリーンリーダー*/
/* スクリーンリーダーテキスト の名称設定 */
/* 処理 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

:root {
  --base: #009261;
  --main: #1446b4;
  --white: #fff;
  --black: #000;
  --width: 1440;
}
@media only screen and (max-width: 768px) {
  :root {
    --width: 375;
  }
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

.green_txt,
.green_ttl {
  color: var(--base);
}

.maison_ttl {
  color: #d8959e;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
  }
}

picture {
  display: block;
  width: 100%;
}
picture img {
  width: 100%;
}

.trigger {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.slideTrain,
.slideUpTrain {
  opacity: 0;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: overlay */
#overlay {
  display: none;
}
@media only screen and (max-width: 768px) {
  #overlay.active {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: main */
.main {
  margin-top: 80px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .main {
    margin-top: 48px;
  }
}

section {
  position: relative;
}

.container {
  margin: auto;
  max-width: 900px;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.sec_title {
  max-width: 900px;
  margin: auto;
  width: 90%;
}
.sec_title img {
  width: 100%;
}

.sec .title {
  border: 1px dashed var(--base);
  border-width: 2px 0;
  color: var(--base);
  font-size: clamp(21px, 30 / var(--width) * 100vw, 30px);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  padding: 20px 0;
}
.sec .title span {
  display: inline-block;
  font-size: clamp(24px, 35 / var(--width) * 100vw, 35px);
  padding-bottom: 0.3em;
  position: relative;
}
.sec .title span:before {
  position: absolute;
  content: "";
  top: 0;
  left: -0.5em;
  width: 2px;
  height: 90%;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  background: var(--base);
}
.sec .title span:after {
  position: absolute;
  content: "";
  top: 0;
  right: -0.5em;
  width: 2px;
  height: 90%;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  background: var(--base);
}
@media only screen and (max-width: 768px) {
  .sec .title {
    font-size: clamp(14px, 4vw, 21px);
  }
  .sec .title span {
    font-size: clamp(18px, 5.6vw, 21px);
  }
}
.sec .img {
  display: block;
}
.sec .note {
  font-size: clamp(12px, 1.25vw, 18px);
  text-align: center;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .sec .note {
    text-align: left;
  }
}
.sec .cs_copy {
  color: #7c7c7c;
  font-size: clamp(21px, 2.9166666667vw, 42px);
  font-weight: bold;
  text-align: center;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: main_visual */
.main_visual .sec_title {
  margin-bottom: -5%;
  max-width: 100%;
  width: 100%;
}
.main_visual .main_visual__lead {
  color: #000;
  font-size: clamp(21px, 1.6666666667vw, 24px);
  line-height: 2;
  text-align: center;
  margin: 60px auto;
  display: block;
}
@media only screen and (max-width: 768px) {
  .main_visual .main_visual__lead {
    margin: 30px auto;
    font-size: clamp(14px, 3.7333333333vw, 20px);
  }
}
.main_visual .main_visual__lead a {
  text-decoration: underline;
}
.main_visual .main_visual__lead .bg-yellow {
  background: #ffff00;
  color: #9ad1c0;
  padding: 0 0.5em;
}
@media only screen and (max-width: 768px) {
  .main_visual .main_visual__lead .bg-yellow {
    padding: 0.2em 0.5em;
  }
}
.main_visual .main_visual__lead .period {
  background: #9ad1c0;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  margin-top: 0.5em;
  padding: 0 1em;
}
@media only screen and (max-width: 768px) {
  .main_visual .main_visual__lead .period {
    line-height: 1.5;
    padding: 0.25em 1.5em;
  }
}
.main_visual .container {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .main_visual .container {
    position: relative;
    z-index: 1;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: about */
.note {
  color: var(--main);
  text-align: center;
  padding-left: 1em;
  text-indent: -1em;
  font-size: clamp(0.7rem, 14 / var(--width) * 100vw, 1.4rem);
}
@media only screen and (max-width: 768px) {
  .note {
    font-size: calc(12 / var(--width) * 100vw);
  }
}

.line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff458));
  background: -webkit-linear-gradient(transparent 50%, #fff458 50%);
  background: linear-gradient(transparent 50%, #fff458 50%);
}

.sec_about {
  padding: 6rem 0 8rem;
  background-image: url(../images/about_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
}
@media only screen and (max-width: 768px) {
  .sec_about {
    background-image: url(../images/about_bg_sp.png);
  }
}
.sec_about .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}
.sec_about .text {
  color: var(--main);
  font-size: clamp(26px, 28 / var(--width) * 100vw, 28px);
  text-align: center;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .sec_about .text {
    font-size: 3.7333333333vw;
  }
}
.sec_about .period {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
.sec_about .period .bg {
  background-image: url(../images/period_bg.png);
  background-size: 100% 100%;
  padding: 2.5rem 1rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
}
.sec_about .period .title {
  background-image: url(../images/ttl_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-size: clamp(26px, 28 / var(--width) * 100vw, 28px);
  text-align: center;
  padding: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .sec_about .period .title {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec_about .period .period_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: clamp(26px, 28 / var(--width) * 100vw, 28px);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec_about .period .period_list {
    font-size: clamp(15px, 15 / var(--width) * 100vw, 17px);
  }
}
.sec_about .period .vol {
  background: var(--main);
  border-radius: 3px;
  color: #fff;
  padding: 0.3rem 10px;
  line-height: 1;
}
.sec_about .period .vol b {
  font-size: 1.2em;
}
.sec_about .period .date {
  color: var(--main);
}
.sec_about .nav {
  padding-top: 2rem;
}
.sec_about .nav .nav_title {
  padding-bottom: 2rem;
  text-align: center;
}
.sec_about .nav .nav_title img {
  width: 100%;
  max-width: 500px;
}
.sec_about .nav .nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .sec_about .nav .nav_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}
.sec_about .nav .link {
  display: grid;
  grid-template-columns: 1fr 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  text-align: center;
  background-size: 100% 100%;
  border-radius: 6px;
  min-height: 4.5em;
  padding: 5px;
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .sec_about .nav .link {
    width: 100%;
  }
}
.sec_about .nav .link:after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../images/arrows.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.sec_about .nav .bg1 {
  background-image: url(../images/nav01.png);
}
.sec_about .nav .bg2 {
  background-image: url(../images/nav02.png);
}
.sec_about .nav .label {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  line-height: 1.2;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .sec_about .nav .label {
    font-size: clamp(16px, 16 / var(--width) * 100vw, 18px);
  }
}
.sec_about .nav .small {
  font-size: 0.75em;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .sec_about .nav .small {
    font-size: 0.625em;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sec1 */
.sec1 {
  background-image: url(../images/vol01_bg1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 2rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .sec1 {
    background-image: url(../images/vol01_bg1_sp.png);
  }
}
.sec1 .sec_title {
  position: relative;
  padding: 6rem 0 0;
}
@media only screen and (max-width: 768px) {
  .sec1 .sec_title {
    padding: 3rem 0 0;
  }
}
.sec1 .sec_title .num {
  max-width: 160px;
  width: 100%;
  aspect-ratio: 1/1;
  margin: auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .sec1 .sec_title .num {
    width: calc(80 / var(--width) * 100vw);
  }
}
.sec1 .sec_title .subText {
  max-width: 500px;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .sec1 .sec_title .subText {
    width: calc(280 / var(--width) * 100vw);
  }
}
.sec1 .period {
  padding-top: 1rem;
}
.sec1 .period dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.sec1 .period dl dt {
  background-color: var(--white);
  border-radius: 5px;
  font-weight: bold;
  font-size: clamp(21px, 24 / var(--width) * 100vw, 24px);
  padding: 0 5px;
}
@media only screen and (max-width: 768px) {
  .sec1 .period dl dt {
    font-size: clamp(0.7em, 14 / var(--width) * 100vw, 1.8em);
  }
}
.sec1 .period dl dd {
  color: #fff;
  font-weight: bold;
  font-size: clamp(21px, 24 / var(--width) * 100vw, 24px);
}
@media only screen and (max-width: 768px) {
  .sec1 .period dl dd {
    font-size: clamp(0.7em, 14 / var(--width) * 100vw, 1.8em);
  }
}
.sec1 .img {
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 600px;
}
.sec1 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec1 .img.--01 {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .sec1 .img.--01 {
    width: calc(238 / var(--width) * 100vw);
  }
}
.sec1 .copy {
  text-align: center;
  color: var(--white);
  margin: 2rem 0;
  font-size: clamp(0.8rem, 16 / var(--width) * 100vw, 1.6rem);
}
@media only screen and (max-width: 768px) {
  .sec1 .copy {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec1 .button {
  max-width: 400px;
  display: block;
  margin: 4rem auto 0;
}
@media only screen and (max-width: 768px) {
  .sec1 .button {
    width: calc(200 / var(--width) * 100vw);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sec2 */
.sec2 {
  padding: 6rem 0 8rem;
  background-image: url(../images/vol01_bg2.png);
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec2 {
    padding: 4rem 0 6rem;
  }
}
.sec2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 50px;
  background-image: url(../images/bg_vol01_top.svg);
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
.sec2 .sec_title {
  padding-bottom: 3rem;
  max-width: 600px;
}
.sec2 .item_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .sec2 .item_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.sec2 .item {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 1.5rem);
}
@media only screen and (max-width: 768px) {
  .sec2 .item {
    width: 100%;
  }
}
.sec2 .item .img {
  display: block;
  margin: 0 auto;
  border: 10px solid var(--white);
  border-radius: 10px;
  overflow: hidden;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .sec2 .item .img {
    width: 80%;
    border-radius: 8px;
    border: 5px solid var(--white);
  }
}
.sec2 .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec2 .item:last-child {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .sec2 .item:last-child {
    width: 100%;
  }
}
.sec2 .item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec2 .item_content .label {
  background: #31b1d3;
  border-radius: 99px;
  color: var(--white);
  padding: 0 1em;
  font-size: clamp(0.8rem, 16 / var(--width) * 100vw, 1.6rem);
}
@media only screen and (max-width: 768px) {
  .sec2 .item_content .label {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec2 .item_content .title {
  color: #31b1d3;
  font-size: clamp(0.9rem, 18 / var(--width) * 100vw, 1.6rem);
  line-height: 1.4;
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .sec2 .item_content .title {
    font-size: calc(18 / var(--width) * 100vw);
  }
}
.sec2 .item_content .num {
  color: #31b1d3;
  font-size: calc(24 / var(--width) * 100vw);
}
.sec2 .secret {
  background-color: #31b1d3;
  border-radius: 10px;
  padding: 1em 0;
  color: var(--white);
  margin-bottom: 1em;
}
.sec2 .secret .label {
  background-color: var(--white);
  color: #31b1d3;
}
.sec2 .secret .title {
  color: var(--white);
}
.sec2 .secret .num {
  color: var(--white);
}
.sec2 .copy {
  font-size: clamp(0.8rem, 16 / var(--width) * 100vw, 1.6rem);
}
@media only screen and (max-width: 768px) {
  .sec2 .copy {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec2 .note {
  color: #333;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sec3 */
.sec3 {
  background-image: url(../images/vol02_bg1.png);
  background-size: 50%;
  position: relative;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .sec3 {
    background-size: 100%;
  }
}
.sec3 .head {
  background-color: #eb6d6c;
  padding: 0 0 2rem;
}
.sec3 .sec_title {
  position: relative;
  padding: 5rem 0 0;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .sec3 .sec_title {
    padding: 3rem 0 0;
  }
}
.sec3 .sec_title .num {
  max-width: 160px;
  width: 100%;
  aspect-ratio: 1/1;
  margin: auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .sec3 .sec_title .num {
    width: calc(80 / var(--width) * 100vw);
  }
}
.sec3 .sec_title .subText {
  display: block;
  margin: 0 auto;
  max-width: 500px;
}
@media only screen and (max-width: 768px) {
  .sec3 .sec_title .subText {
    width: calc(280 / var(--width) * 100vw);
  }
}
.sec3 .period {
  padding-top: 1rem;
}
.sec3 .period dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.sec3 .period dl dt {
  background-color: var(--white);
  color: #eb6d6c;
  border-radius: 5px;
  font-weight: bold;
  font-size: clamp(21px, 24 / var(--width) * 100vw, 24px);
  padding: 0 5px;
}
@media only screen and (max-width: 768px) {
  .sec3 .period dl dt {
    font-size: clamp(0.7em, 14 / var(--width) * 100vw, 1.8em);
  }
}
.sec3 .period dl dd {
  color: #fff;
  font-weight: bold;
  font-size: clamp(21px, 24 / var(--width) * 100vw, 24px);
}
@media only screen and (max-width: 768px) {
  .sec3 .period dl dd {
    font-size: clamp(0.7em, 14 / var(--width) * 100vw, 1.8em);
  }
}
.sec3 .period .note {
  color: var(--white);
}
.sec3 .img {
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 600px;
}
.sec3 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec3 .img.--01 {
  width: calc(238 / var(--width) * 100vw);
}
.sec3 .copy {
  text-align: center;
  color: #eb6d6c;
  margin: 2rem 0 0;
  font-size: clamp(0.8rem, 16 / var(--width) * 100vw, 1.6rem);
}
@media only screen and (max-width: 768px) {
  .sec3 .copy {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec3 .hr {
  text-align: center;
}
.sec3 .button {
  max-width: 400px;
  display: block;
  margin: 4rem auto 0;
}
@media only screen and (max-width: 768px) {
  .sec3 .button {
    width: calc(200 / var(--width) * 100vw);
  }
}
.sec3 .button img {
  width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sec4 */
.sec4 {
  padding: 4rem 0 6rem;
  background-image: url(../images/vol02_bg2.png);
  background-size: cover;
  position: relative;
}
.sec4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 50px;
  background-image: url(../images/bg_vol02_top.svg);
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
.sec4 .sec_title {
  padding-bottom: 3rem;
  max-width: 600px;
}
.sec4 .item_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .sec4 .item_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.sec4 .item {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 1.5rem);
}
@media only screen and (max-width: 768px) {
  .sec4 .item {
    width: 100%;
  }
}
.sec4 .item:last-child {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .sec4 .item:last-child {
    width: 100%;
  }
}
.sec4 .item .img {
  display: block;
  margin: 0 auto;
  border: 10px solid var(--white);
  border-radius: 10px;
  overflow: hidden;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .sec4 .item .img {
    width: 80%;
    border-radius: 8px;
    border: 5px solid var(--white);
  }
}
.sec4 .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec4 .item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec4 .item_content .label {
  background: #eb6d6c;
  border-radius: 99px;
  color: var(--white);
  padding: 0 1em;
  font-size: clamp(0.8rem, 16 / var(--width) * 100vw, 20px);
}
@media only screen and (max-width: 768px) {
  .sec4 .item_content .label {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec4 .item_content .title {
  color: #eb6d6c;
  line-height: 1.4;
  margin-top: 1em;
  font-size: clamp(0.9rem, 18 / var(--width) * 100vw, 1.8rem);
}
@media only screen and (max-width: 768px) {
  .sec4 .item_content .title {
    font-size: calc(18 / var(--width) * 100vw);
  }
}
.sec4 .item_content .num {
  color: #eb6d6c;
  font-size: calc(24 / var(--width) * 100vw);
}
.sec4 .secret {
  background-color: #eb6d6c;
  border-radius: 10px;
  padding: 1em 0;
  color: var(--white);
  margin-bottom: 1em;
}
.sec4 .secret .label {
  background-color: var(--white);
  color: #eb6d6c;
}
.sec4 .secret .title {
  color: var(--white);
}
.sec4 .secret .num {
  color: var(--white);
}
.sec4 .copy {
  font-size: clamp(0.8rem, 16 / var(--width) * 100vw, 1.6rem);
}
@media only screen and (max-width: 768px) {
  .sec4 .copy {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec4 .note {
  color: #333;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sec5 */
.sec5 {
  background-color: rgba(143, 211, 255, 0.1882352941);
  padding: 6rem 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec5 {
    padding: 4rem 0;
  }
}
.sec5::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url(../images/vol02_bg3.png);
  background-size: 100%;
  pointer-events: none;
}
.sec5::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #fff;
  width: 90%;
  height: calc(100% - 12rem);
  margin: auto;
  max-width: 840px;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .sec5::after {
    height: calc(100% - 6rem);
  }
}
.sec5 .container {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
  max-width: 840px;
  padding: 3rem 2rem;
}
@media only screen and (max-width: 768px) {
  .sec5 .container {
    padding: 2rem 1rem;
  }
}
.sec5 .sec_title {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.sec5 .label {
  position: relative;
  z-index: 2;
  background-color: #1446b4;
  text-align: center;
  color: var(--white);
  margin: 1rem 0;
}
.sec5 .copy {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 1rem 0;
  color: #1446b4;
  line-height: 1.8;
  font-size: clamp(0.8rem, 16 / var(--width) * 100vw, 1.6rem);
}
@media only screen and (max-width: 768px) {
  .sec5 .copy {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec5 .img {
  position: relative;
  z-index: 2;
  margin: 2rem auto;
  text-align: center;
  max-width: 400px;
}
@media only screen and (max-width: 768px) {
  .sec5 .img {
    width: calc(300 / var(--width) * 100vw);
  }
}
@media only screen and (max-width: 768px) {
  .sec5 .img.--01 {
    width: calc(300 / var(--width) * 100vw);
  }
}
@media only screen and (max-width: 768px) {
  .sec5 .img.--02 {
    width: calc(267 / var(--width) * 100vw);
  }
}
@media only screen and (max-width: 768px) {
  .sec5 .img.--03 {
    width: calc(236 / var(--width) * 100vw);
  }
}
.sec5 .arrow {
  position: relative;
  z-index: 2;
  margin: 2rem 0;
  text-align: center;
}
.sec5 .line {
  font-size: 1.2em;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sec6 */
.sec6 {
  padding: 6rem 0;
  background-image: url(../images/vol02_bg4.png);
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec6 {
    padding: 4rem 0;
  }
}
.sec6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 50px;
  background-image: url(../images/vol02_bg4_top.svg);
  background-size: contain;
  pointer-events: none;
}
.sec6 .sec_title {
  max-width: 600px;
}
.sec6 .img {
  margin: 1rem auto;
  text-align: center;
  border: 5px solid var(--white);
  border-radius: 1rem;
  overflow: hidden;
  max-width: 400px;
}
@media only screen and (max-width: 768px) {
  .sec6 .img {
    width: calc(300 / var(--width) * 100vw);
  }
}
.sec6 .img img {
  width: 100%;
  height: 100%;
}
.sec6 .note {
  color: #333;
  text-align: center;
}
.sec6 .button {
  margin: 2rem auto 0;
  display: block;
  width: 100%;
  max-width: 400px;
}
@media only screen and (max-width: 768px) {
  .sec6 .button {
    width: calc(200 / var(--width) * 100vw);
  }
}
.sec6 .button img {
  width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sec7 */
.sec7 {
  padding: 6rem 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec7 {
    padding: 3rem 0 0;
  }
}
.sec7 .container {
  text-align: center;
}
.sec7 .container::after, .sec7 .container::before {
  content: "";
  display: block;
  height: 20px;
  background-image: url(../images/hr2.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.sec7 .sec_title {
  font-size: calc(20 / var(--width) * 100vw);
  font-weight: 500;
  line-height: 1.4;
  margin: 1rem auto;
}
.sec7 .sns_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 1em auto;
}
.sec7 .sns_item {
  display: block;
  width: calc(45 / var(--width) * 100vw);
  aspect-ratio: 1/1;
}
.sec7 .sns_item img {
  width: 100%;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: terms */
.sec_terms {
  padding: 6rem 0;
}
@media only screen and (max-width: 768px) {
  .sec_terms {
    padding: 3rem 0;
  }
}
.sec_terms .container {
  max-width: 840px;
  margin: auto;
}
.sec_terms .sec_title {
  background-image: url(../images/ttl_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-size: clamp(26px, 28 / var(--width) * 100vw, 28px);
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .sec_terms .sec_title {
    font-size: calc(16 / var(--width) * 100vw);
  }
}
.sec_terms .con.button-flex {
  border: 5px solid var(--main);
  display: grid;
  gap: 3em;
  margin-bottom: 10em;
  padding: 5em 8em;
}
@media only screen and (max-width: 768px) {
  .sec_terms .con {
    border-radius: 30px;
    margin-top: 20px;
    padding: 20px;
  }
  .sec_terms .con.button-flex {
    border: 3px solid var(--main);
    gap: 1.5em;
    margin-bottom: 3.5em;
    padding: 2em;
  }
}
.sec_terms dl:last-child dd {
  margin-bottom: 0;
}
.sec_terms dl dt {
  font-size: clamp(21px, 1.6666666667vw, 24px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.sec_terms dl dt span {
  display: table-cell;
}
.sec_terms dl dt span:first-child {
  color: var(--main);
  font-size: 70%;
  padding-right: 0.5em;
}
@media only screen and (max-width: 768px) {
  .sec_terms dl dt {
    font-size: clamp(18px, 5.3333333333vw, 18px);
  }
}
.sec_terms dl dd {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 2em;
}
.sec_terms dl dd li span {
  display: table-cell;
}
.sec_terms dl dd .notes {
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
.sec_terms dl dd .mt {
  margin-top: 1em;
}
.sec_terms dl dd .head {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: clamp(18px, 1.3888888889vw, 20px);
  font-weight: 600;
  padding: 0.25em 0;
  text-align: center;
}
.sec_terms dl dd .t-center {
  font-size: clamp(18px, 1.3888888889vw, 20px);
  line-height: 1.5;
  margin: 0.5em auto;
  text-align: center;
}
.sec_terms dl dd a {
  color: #0166b4;
  text-decoration: underline;
  word-break: break-all;
}
@media only screen and (max-width: 768px) {
  .sec_terms dl dd {
    font-size: clamp(14px, 3.7333333333vw, 16px);
  }
  .sec_terms dl dd .notes {
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .sec_terms dl dd .head {
    font-size: clamp(14px, 3.7333333333vw, 16px);
  }
  .sec_terms dl dd .t-center {
    font-size: clamp(14px, 3.7333333333vw, 16px);
    margin: 0.75em auto 0.5em;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: service */
.sec_service {
  background: #ffea52;
  padding: 60px clamp(5%, 8.3333333333%, 120px) 70px;
}
@media only screen and (max-width: 768px) {
  .sec_service {
    padding: 30px 5% 40px;
  }
}
.sec_service .container {
  background: #fff;
  border-radius: 30px;
  padding: 60px clamp(5%, 8.3333333333%, 120px) 70px;
}
@media only screen and (max-width: 768px) {
  .sec_service .container {
    border-radius: 15px;
    padding: 30px 5% 40px;
    width: 100%;
  }
}
.sec_service .service_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  .sec_service .service_list {
    gap: 40px;
  }
}
.sec_service .service_bnr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .sec_service .service_bnr {
    gap: 20px;
  }
}
.sec_service .button {
  display: block;
  max-width: 300px;
  margin: 30px auto;
}
@media only screen and (max-width: 768px) {
  .sec_service .button {
    margin: 15px auto;
    width: 90%;
  }
}
.sec_service .disney {
  max-width: 900px;
  margin: 2em auto 0;
  width: 90%;
}
.sec_service .disney a {
  color: var(--base);
  position: relative;
  text-decoration: underline;
}
.sec_service .disney a:after {
  content: "";
  -webkit-filter: invert(42%) sepia(9%) saturate(5656%) hue-rotate(118deg) brightness(70%) contrast(101%);
          filter: invert(42%) sepia(9%) saturate(5656%) hue-rotate(118deg) brightness(70%) contrast(101%);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  background: url(../images/arrow.svg) no-repeat center/cover;
}
@media only screen and (max-width: 768px) {
  .sec_service .disney {
    margin-top: 1em;
    width: 100%;
  }
  .sec_service .disney a {
    font-size: clamp(12px, 3.7333333333vw, 16px);
  }
  .sec_service .disney a:after {
    width: 12px;
    height: 12px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: step */
.sec_step {
  padding: 60px clamp(5%, 8.3333333333%, 120px) 70px;
}
@media only screen and (max-width: 768px) {
  .sec_step {
    padding: 30px 0;
  }
}
.sec_step .container {
  position: relative;
  z-index: 1;
}
.sec_step .container .sec_title {
  max-width: 680px;
}
@media only screen and (max-width: 768px) {
  .sec_step .container .sec_title {
    width: 100%;
  }
}
.sec_step .step_flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .sec_step .step_flow {
    gap: 30px;
    margin-top: 20px;
  }
}
.sec_step .step_flow .step {
  border: 5px solid #50352d;
  background: #fff;
  border-radius: 30px;
  margin: auto;
  max-width: 840px;
  padding: 0 30px;
  position: relative;
  width: 100%;
}
.sec_step .step_flow .step picture {
  display: block;
  margin: auto;
  width: 75%;
}
.sec_step .step_flow .step:first-of-type picture {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .sec_step .step_flow .step {
    border-width: 3px;
    border-radius: 15px;
    padding: 0 5%;
  }
  .sec_step .step_flow .step picture {
    width: 100%;
  }
  .sec_step .step_flow .step:first-of-type picture {
    width: 100%;
  }
}
.sec_step .step_flow dl {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.sec_step .step_flow dl dt {
  width: 133px;
}
.sec_step .step_flow dl dd {
  color: #50352d;
  font-size: clamp(28px, 2.4305555556vw, 35px);
  font-weight: 600;
  width: calc(100% - 150px);
}
.sec_step .step_flow dl p {
  font-size: clamp(24px, 2.0833333333vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  margin: 1em auto 0;
  width: 95%;
}
@media only screen and (max-width: 768px) {
  .sec_step .step_flow dl {
    margin-top: 5%;
  }
  .sec_step .step_flow dl dt {
    width: 70px;
  }
  .sec_step .step_flow dl dd {
    font-size: clamp(22px, 5.8666666667vw, 28px);
    line-height: 1.3;
    width: calc(100% - 90px);
  }
  .sec_step .step_flow dl p {
    font-size: clamp(18px, 4.8vw, 25px);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: pagetop_btn */
.sec_company {
  background-color: #e0e0e0;
  padding: 30px 0;
  position: relative;
  text-align: center;
  z-index: 2;
}
.sec_company .company {
  font-size: clamp(15px, 1.0416666667vw, 15px);
  font-weight: bold;
}
.sec_company .address {
  font-size: clamp(13px, 0.9027777778vw, 13px);
  font-weight: bold;
  margin: 5px 0;
}
.sec_company ul {
  margin: auto;
  max-width: 250px;
  text-align: left;
}
.sec_company ul li {
  color: #000;
  font-size: clamp(11px, 0.7638888889vw, 11px);
  font-weight: bold;
}
.sec_company ul li img {
  width: 15px;
}
@media only screen and (max-width: 768px) {
  .sec_company {
    padding: 20px 0;
  }
  .sec_company .company {
    font-size: clamp(13px, 3.4666666667vw, 13px);
  }
  .sec_company .address {
    font-size: clamp(11px, 2.9333333333vw, 11px);
    margin: 0 0 5px;
  }
  .sec_company ul {
    max-width: 230px;
  }
  .sec_company ul li {
    font-size: clamp(10px, 2.6666666667vw, 10px);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: pagetop_btn */
.pagetop_btn {
  position: relative;
}
.pagetop_btn .pagetop {
  display: block;
  padding: 20px;
  color: white;
  background: var(--base);
  border: 3px solid var(--base);
  bottom: 24px;
  right: 24px;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.pagetop_btn .pagetop:hover {
  color: var(--base);
  background: white;
  border: 3px solid var(--base);
}
.pagetop_btn .pagetop.active {
  opacity: 1;
  visibility: visible;
}
.pagetop_btn .pagetop.absolute {
  position: absolute;
  top: -100px;
  bottom: auto;
}
.pagetop_btn .pagetop svg {
  fill: currentcolor;
}

@media only screen and (max-width: 768px) {
  .pagetop_btn .pagetop {
    right: 4%;
    padding: 0.8rem;
  }
  .pagetop_btn .pagetop.absolute {
    top: -90px;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
footer {
  padding: 8px 20px 10px;
  background-color: var(--base);
  color: #fff;
  font-weight: 500;
  position: relative;
}
footer .container {
  display: grid;
  grid-template: auto auto/auto 264px;
}
footer .link {
  padding-top: 0.3rem;
  font-size: 12px;
  line-height: 1.4;
  margin-right: 1rem;
}
footer .link a {
  color: white;
  text-decoration: inherit;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  margin-right: 1rem;
}
footer .link span {
  color: white;
}
footer .banner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 264px;
  height: 54px;
  color: #666;
  grid-area: 1/2/3/3;
}
footer .banner img {
  position: absolute;
}
footer .banner span.t {
  position: relative;
  padding: 0.4em 1em 0;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0;
}
footer .copyright {
  font-size: 10px;
  margin-top: 1rem;
  line-height: 1.4;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-bottom: 20px;
    text-align: center;
  }
  footer .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .link {
    margin: 0 auto;
  }
  footer .banner {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 8px;
  }
}/*# sourceMappingURL=style.css.map */