@charset "UTF-8";
/*note: INDEXの表示は、コメントの「 index: 」でハイライト表示してください。*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-style: normal;
  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 {
  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 {
  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: 840px;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.sec_title {
  max-width: 840px;
  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%;
  transform: rotate(-15deg);
  background: var(--base);
}
.sec .title span:after {
  position: absolute;
  content: "";
  top: 0;
  right: -0.5em;
  width: 2px;
  height: 90%;
  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 {
  background-image: url(../images/kv_back.jpg);
  background-size: cover;
  background-position: top center;
}
@media only screen and (max-width: 768px) {
  .main_visual {
    background-image: none;
  }
}
.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;
  }
}

.zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: cp */
.sec_cp {
  background-color: #ffaad2;
  padding-bottom: 2%;
}
.sec_cp .heading {
  position: relative;
}
.sec_cp .heading::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background-image: url(../images/pattern.png);
  background-size: cover;
}
.sec_cp .heading h3 {
  max-width: 500px;
  width: 48%;
  margin: auto;
}
.sec_cp .heading h3 img {
  top: 50%;
  transform: translateY(-50%);
}
.sec_cp .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}
.sec_cp .flex div {
  font-size: clamp(32px, 2.9166666667vw, 42px);
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  line-height: 1em;
}
@media only screen and (max-width: 768px) {
  .sec_cp .flex div {
    flex-direction: column;
    font-size: clamp(22px, 6.6666666667vw, 25px);
  }
}
.sec_cp .flex div p {
  flex-grow: 1;
}
.sec_cp .flex div .time {
  font-size: 70%;
  color: #ffaad2;
  text-align: center;
  border-radius: 100vw;
  background-color: #fffcdb;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  padding: 0 0.75em;
}
@media only screen and (max-width: 768px) {
  .sec_cp .flex div .time {
    margin-top: 5px;
    padding: 0;
    justify-content: center;
    width: 100%;
  }
}
.sec_cp .flex .year {
  font-size: calc(0.7 * clamp(32px, 2.9166666667vw, 42px));
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  .sec_cp .flex .year {
    font-size: calc(0.7 * clamp(22px, 6.6666666667vw, 25px));
  }
}
.sec_cp .note {
  color: #fff;
  font-size: clamp(0.688rem, 0.464rem + 1.12vw, 1rem);
  text-align: center;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sample */
@keyframes fuwafuwa {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-9deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(9deg);
  }
  100% {
    transform: rotate(0);
  }
}
.sec_sample {
  background-color: #fdf2f5;
  background-image: radial-gradient(circle, #ffffff 5px, transparent 5px), radial-gradient(circle, #ffffff 5px, transparent 5px);
  background-position: 0 0, 30px 30px;
  background-size: 60px 60px;
  padding: 30px 0 0;
  position: relative;
  overflow: hidden;
}
.sec_sample::before {
  position: absolute;
  content: "";
  width: 35%;
  height: 20%;
  background-image: url(../images/cp_icon01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 18%;
  animation: fuwafuwa 3s linear 0.5s infinite normal;
}
@media only screen and (max-width: 768px) {
  .sec_sample::before {
    top: -4%;
    right: 0;
  }
}
.sec_sample::after {
  position: absolute;
  content: "";
  width: 32%;
  height: 15%;
  background-image: url(../images/cp_icon02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 16%;
  left: 20%;
  animation: fuwafuwa 3s linear 0.5s infinite normal;
}
@media only screen and (max-width: 768px) {
  .sec_sample::after {
    bottom: 7%;
    left: 16%;
  }
}
.sec_sample .img {
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .sec_sample .img {
    width: 110%;
    margin: auto -5% 15%;
  }
}
.sec_sample .icon01 {
  position: absolute;
  width: 6%;
  top: 30%;
  left: 10%;
}
.sec_sample .icon02 {
  position: absolute;
  width: 12%;
  top: 33%;
  right: 7%;
}
.sec_sample .icon03 {
  position: absolute;
  width: 13%;
  bottom: 23%;
  left: 14%;
}
.sec_sample .deco img {
  width: 100%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: event */
@keyframes kirakira {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pikapika {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mofumofu {
  0% {
    transform: scale(0.7, 0.7);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0.7, 0.7);
  }
}
.sec_event {
  overflow: hidden;
  margin-bottom: 80px;
}
.sec_event .container {
  max-width: 630px;
}
.sec_event .icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 80%;
  margin: auto;
}
.sec_event .icon.icon-center {
  margin: 10% auto 2%;
}
.sec_event .icon .icon01 {
  width: 21%;
}
.sec_event .icon .icon01 img {
  animation: kirakira 6s linear 0.5s infinite normal;
}
.sec_event .icon .icon02 {
  width: 6%;
  margin-left: 3%;
}
.sec_event .icon .icon02 img {
  animation: pikapika 4s linear 0.5s infinite normal;
}
.sec_event .icon .icon03 {
  width: 30%;
  margin-left: auto;
}
.sec_event .icon .icon04 {
  width: 33%;
  margin-top: 5%;
}
.sec_event .icon .icon05 {
  width: 21%;
  margin: 0 5% auto auto;
}
.sec_event .icon .icon05 img {
  animation: fuwafuwa 3s linear 0.5s infinite normal;
}
.sec_event .icon .icon06 {
  width: 22%;
  margin-top: 10%;
}
.sec_event .icon .icon06 img {
  animation: mofumofu 4s linear 0.5s infinite normal;
}
.sec_event .icon .icon07 {
  width: 35%;
  transform: rotate(135deg);
  margin-right: -10%;
  margin-left: auto;
}
.sec_event .text {
  margin: auto auto 15px;
  text-align: center;
  width: 65%;
}
.sec_event .img {
  border-radius: 15px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 15px 15px 0 rgba(255, 194, 224, 0.2);
  width: 90%;
  margin: auto;
}
.sec_event .img-wrapper {
  position: relative;
}
.sec_event .img-wrapper::before {
  content: "";
  position: absolute;
  background-image: url(../images/event-back.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  left: -40%;
  bottom: -20%;
  z-index: -1;
}
.sec_event .img-wrapper::after {
  content: "";
  position: absolute;
  background-image: url(../images/event-back.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  top: -15%;
  right: -85%;
  z-index: -1;
}
.sec_event .img img {
  width: 100%;
}
.sec_event .note {
  margin: 30px auto auto;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.527rem + 1.12vw, 1.063rem);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: step */
.sec_step {
  padding: 200px 0 140px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec_step {
    padding: 100px 0 50px;
  }
}
.sec_step::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/back02.jpg);
  background-size: 20px 20px;
  background-repeat: repeat;
  top: 0;
  opacity: 0.5;
}
.sec_step::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 120px;
  background-image: url(../images/step_top.png);
  background-size: 165px 95px;
  background-repeat: repeat-x;
}
@media only screen and (max-width: 768px) {
  .sec_step::after {
    height: 45px;
    background-size: contain;
  }
}
.sec_step .container {
  background-color: #fff;
  border-radius: 50px;
}
@media only screen and (max-width: 768px) {
  .sec_step .container {
    border-radius: 20px;
  }
}
.sec_step .inner {
  max-width: 525px;
  width: 90%;
  margin: auto;
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .sec_step .inner {
    padding-bottom: 50px;
  }
}
.sec_step .inner .heading {
  border-radius: 80px;
  background: linear-gradient(90deg, #7dbff8, #e5c2ea);
  color: #fff;
  text-align: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  padding: 5%;
}
.sec_step .inner .heading p {
  letter-spacing: normal;
  line-height: 1.5;
}
.sec_step .inner .heading p span {
  display: block;
  font-size: clamp(22px, 2.2222222222vw, 32px);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .heading p {
    font-size: clamp(12px, 3.2vw, 12px);
  }
  .sec_step .inner .heading + .num {
    margin-top: 0;
  }
}
.sec_step .inner .num {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .num {
    margin-top: 30px;
  }
}
.sec_step .inner .text {
  color: #a096dc;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin: 1rem auto 2rem;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .text {
    font-size: clamp(15px, 4vw, 16px);
    letter-spacing: normal;
  }
}
.sec_step .inner .check {
  background: url(../images/step_check.png) no-repeat center bottom/cover;
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  aspect-ratio: 80/45;
  width: 80px;
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .check {
    bottom: 3px;
    width: 10.6666666667vw;
  }
}
.sec_step .inner .mark {
  background: linear-gradient(transparent 60%, rgba(255, 194, 225, 0.5) 60%);
}
.sec_step .inner .note {
  font-size: 14px;
  letter-spacing: normal;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .note {
    font-size: clamp(12px, 3.2vw, 12px);
  }
}
.sec_step .inner .flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .flex {
    gap: 1rem;
    margin: 0 auto 1rem;
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .img01 {
    width: 90%;
    margin: auto;
  }
}
.sec_step .inner .img02 {
  margin-bottom: 2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .img02 {
    margin: 0 auto 1rem;
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  .sec_step .inner .img03 {
    margin: 0 -8%;
    width: 116%;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: post */
.sec_post {
  background: url(../images/post_back.png) no-repeat center/cover;
  background-color: #ffebf0;
  padding: 140px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec_post {
    padding: 80px 0 50px;
  }
}
.sec_post .container {
  background-color: #fffcdb;
}
.sec_post .container::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 15px 15px 0 rgba(160, 135, 230, 0.5);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .sec_post .container::after {
    box-shadow: 7px 7px 0 rgba(160, 135, 230, 0.5);
  }
}
.sec_post .inner {
  max-width: 525px;
  width: 90%;
  margin: auto;
  position: relative;
  padding-top: 100px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .sec_post .inner {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.sec_post .inner .heading {
  border-radius: 80px;
  background: linear-gradient(90deg, #7dbff8, #e5c2ea);
  color: #fff;
  text-align: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  padding: 1rem;
}
.sec_post .inner .heading p {
  letter-spacing: normal;
  line-height: 1.5;
  font-size: clamp(22px, 2.2222222222vw, 32px);
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .sec_post .inner .heading {
    padding: 5%;
  }
  .sec_post .inner .heading p {
    font-size: clamp(18px, 4.8vw, 18px);
  }
}
.sec_post .inner .text {
  color: #a096dc;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin: 1rem auto 2rem;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .sec_post .inner .text {
    font-size: clamp(15px, 4vw, 16px);
    letter-spacing: normal;
  }
}
.sec_post .inner .img {
  margin: 5% -8% 0;
  width: 116%;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*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: linear-gradient(90deg, #7dbff8, #e5c2ea);
  color: #fff;
  font-size: clamp(22px, 2.2222222222vw, 32px);
  text-align: center;
  margin-bottom: 3rem;
  padding: 0.5rem;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 97% 50%, 100% 100%, 0 100%, 3% 50%);
}
@media only screen and (max-width: 768px) {
  .sec_terms .sec_title {
    margin-bottom: 2rem;
  }
}
.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 {
    padding: 0 5%;
  }
  .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: #e5c2ea;
  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: #e5c2ea;
  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: announce */
.sec_announce {
  background-color: #d9f2d0;
  padding: 120px clamp(5%, 8.3333333333%, 120px) 70px;
}
@media only screen and (max-width: 768px) {
  .sec_announce {
    padding: calc(30px + 15%) 5% 40px;
  }
}
.sec_announce .container {
  background: #fff;
  border-radius: 30px;
  padding: 60px clamp(5%, 4.1666666667%, 60px) 70px;
}
@media only screen and (max-width: 768px) {
  .sec_announce .container {
    border-radius: 15px;
    padding: 30px 5% 40px;
    width: 100%;
  }
}
.sec_announce .sec_title {
  margin-top: -150px;
  margin-bottom: -80px;
  position: relative;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .sec_announce .sec_title {
    margin-top: -25%;
    margin-bottom: -5%;
    width: 85%;
  }
}
.sec_announce figure {
  border-top: 1px solid #000;
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  .sec_announce figure {
    padding: 8% 0 10%;
  }
}
.sec_announce .story h3 {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.sec_announce .story h3 img {
  max-width: fit-content;
  width: 725px;
}
.sec_announce .story p {
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .sec_announce .story p {
    margin-top: 5px;
  }
}
.sec_announce .link {
  margin-top: 40px;
}
.sec_announce .link p {
  font-weight: bold;
}
.sec_announce .link a {
  color: #006cb8;
  text-decoration: underline;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*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: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  .sec_service .service_list {
    gap: 40px;
  }
}
.sec_service .service_bnr {
  display: flex;
  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: "";
  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: 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;
  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;
  text-decoration-skip-ink: auto;
  margin-right: 1rem;
}
footer .link span {
  color: white;
}
footer .banner {
  position: relative;
  display: flex;
  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: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .link {
    margin: 0 auto;
  }
  footer .banner {
    order: 1;
    margin-top: 8px;
  }
}/*# sourceMappingURL=style.css.map */