@charset "UTF-8";
/*
Theme Name: theme name
Description: description
Author:yashibous
Author URI: https://yashibous.com
*/
/* 
 * Mixin
 * --------------------------
 */
/*
 * responsive.scss
 */
/*
 * text-setting.scss
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Montserrat:wght@100..900&display=swap");
/* 
 * Base
 * --------------------------
 */
/*
 * variables.scss
 */
:root {
  /*
   * ブレイクポイント
   */
  --breakpoint-sp-pc: 1280px;
  /*
   * デザイン幅
   */
  --max-width: 1440px;
  --max-content-width: 1300px;
  /*
   * コンテンツ幅
   */
  --content-padding-block: 30px;
  --content-padding-inline: 70px;
  --header-height: 135px;
  /*
   * カラーパレット
   */
  /* 基本カラー */
  --color-black: #030000;
  --color-black-core: #000000;
  --color-white: #ffffff;
  --color-gray1: #4d4d4d;
  --color-green: #218386;
  --color-pink: #dc797e;
  --color-orange: #ff8400;
  --color-yellow: #ffff80;
  /* アクセントカラー */
  --color-accent-main: #ee8b74;
  --color-accent-sub: #feac9a;
  --color-accent-tri: #f5d2cd;
  --color-accent-4: #faecea;
  --color-accent-shadow: #944f15;
  /* テキスト */
  --color-title: var(--color-black);
  --color-text: var(--color-black);
  --color-text-shadow: #dfd2c5;
  --color-hover: var(--color-accent-main);
  /* 背景 */
  --color-bg-main: var(--color-white);
  --color-bg-sub: #ffffe6;
  --color-bg-header: #dddddd;
  --color-bg-footer: #dddddd;
  --color-bg-fixed: #dddddd88;
  --color-bg-cta: var(--color-white);
  --color-bg-pink: #eaa9a7;
  --color-bg-yellow: #ffffd9;
  /* マーカー */
  --color-marker: #ffc002aa;
  --color-marker2: #ffc002aa;
}

@media screen and (max-width: 1079px) {
  :root {
    --max-width: 100%;
    --max-content-width: 375px;
    --content-padding-block: 30px;
    --content-padding-inline: 15px;
    --header-height: 66px;
  }
}
/*
 * base.scss
 */
body {
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 16px;
}

img {
  display: block;
  object-fit: contain;
  object-position: top left;
  height: auto;
}

.image img {
  width: 100%;
  height: auto;
}

a {
  --a-hover-color: var(--color-hover);
}
a:hover, a:focus, a.active {
  opacity: 0.6;
  transition: color 0.2s ease-in-out;
}

*[data-visible=false] {
  display: none !important;
}

/*
 * function.scss
 */
/* 
 * Module
 * --------------------------
 */
/*
 * layout.scss
 */
.layout03__item, .layout03__list, .layout02__text, .layout02__img, .layout01__block {
  border: 1px solid red;
  background-color: rgba(221, 221, 255, 0.5333333333);
  width: 100%;
  padding: 2rem;
}

.layout01 {
  height: 100%;
}
.layout01 .layout01__wrapper--horizontal, .layout01 .layout01__wrapper--vertical {
  display: flex;
  flex-wrap: nowrap;
  gap: 3%;
  height: 100%;
}
.layout01__wrapper--vertical {
  flex-direction: column;
}
.layout01__wrapper--horizontal {
  flex-direction: row;
}
.layout02__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.layout02 .layout02__item--reverse, .layout02 .layout02__item {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}
.layout02__item {
  flex-direction: row;
}
.layout02__item--reverse {
  flex-direction: row-reverse;
}
.layout02__img {
  margin-left: auto;
  margin-right: auto;
  width: 32%;
}
.layout02__text {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  width: 65%;
}

.layout03__list {
  display: flex;
  justify-content: space-between;
}
.layout03__item {
  width: 30%;
  height: 50%;
}
.layout03__item:nth-child(1) {
  margin-top: 0;
}
.layout03__item:nth-child(2) {
  margin-top: 20px;
}
.layout03__item:nth-child(3) {
  margin-top: 40px;
}

.layout04__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.layout04__item {
  width: 100%;
  height: 200px;
  background-color: rgba(221, 221, 255, 0.5333333333);
}
@media screen and (min-width: 640px) {
  .layout04__item {
    width: 48%;
  }
}
@media screen and (min-width: 1080px) {
  .layout04__item {
    width: 30%;
  }
}

.layout05__mainvisual {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.layout05__contents {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.layout06 {
  position: relative;
  height: 500px;
}
.layout06 .bg {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(111, 0, 0, 0.5), rgba(111, 111, 111, 0.5));
}
@media screen and (min-width: 1080px) {
  .layout06 .bg {
    display: block;
  }
}
.layout06 .bg__contents {
  position: absolute;
}
.layout06 .bg__contents {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: fit-content;
  right: 40px;
  top: 100px;
}
.layout06 .contents {
  max-width: 100%;
  width: 100%;
  height: 100%;
  overflow: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  background-color: #fff;
  left: 0;
}
@media screen and (min-width: 1080px) {
  .layout06 .contents {
    position: relative;
  }
}
@media screen and (min-width: 1080px) {
  .layout06 .contents {
    max-width: 300px;
    left: -10%;
  }
}

/*
 * parts.scss
 */
.clipped-shadow {
  /* クリップ対象エリアのサイズ指定 */
  width: 100%;
  height: 100%;
  /* シャドウの指定。 */
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.5));
}

.clipped-shadow > * {
  /* クリップするpathを指定する */
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  /* サイズは100%固定(親要素で指定する) */
  width: 100%;
  height: 100%;
}

.grid-area {
  display: grid;
  grid-template-areas: "main aside" "sub aside";
  grid-template-columns: 1fr 30%;
}
.grid-area__main {
  grid-area: main;
}
.grid-area__sub {
  grid-area: sub;
}
.grid-area__aside {
  grid-area: aside;
}

.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-menu__item:not(:last-child) {
  border-right: 1px solid #333;
}
.footer-menu__link {
  display: block;
  padding: 4px 10px;
}
.footer-menu__link:hover, .footer-menu__link:active {
  color: #00a;
}

/*
* accordion
*/
.accordion {
  list-style: none;
}
.accordion__parts {
  margin-top: 10px;
  padding: 5px 10px;
}
.accordion__title {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.accordion__title::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  background-image: url(../image/accordion-icon-close.svg);
  background-size: 100% 100%;
}
.accordion__title.open::after {
  background-image: url(../image/accordion-icon-open.svg);
}
@media screen and (min-width: 1080px) {
  .accordion__title::after {
    right: 32px;
  }
}
.accordion__box {
  display: none;
}

.parts-next {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-accent-main);
  text-align: center;
  padding: 40px 20px;
  max-width: var(--max-content-width);
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .parts-next {
    font-size: 34px;
    padding: 87px 20px 110px;
  }
}

.parts-next__text {
  background-image: url(../image/parts-next-arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-block-end: 40px;
}
@media screen and (min-width: 1080px) {
  .parts-next__text {
    background-image: url(../image/parts-next-arrow-pc.svg);
    background-size: 770px;
    padding-block-end: 90px;
  }
}

.to-top {
  --to-top-size: 90px;
  --to-top-position-right: 10px;
  --to-top-position-bottom: 20px;
  --to-top-bg-color: var(--color-accent-tri);
  width: fit-content;
  max-width: var(--max-width);
  margin-inline: auto var(--to-top-position-right);
  position: sticky;
  bottom: var(--to-top-position-bottom);
  transition: all 0.2s;
  z-index: 8000;
}
.to-top__link {
  width: var(--to-top-size);
  height: var(--to-top-size);
  display: block;
  background-color: var(--to-top-bg-color);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-content: center;
  opacity: 0.6;
}
.to-top__link img {
  width: 100%;
  height: 100%;
  rotate: -90deg;
}
.to-top__link:hover {
  opacity: 1;
}
@media screen and (max-width: 1079px) {
  .to-top {
    --to-top-size: 50px;
    --to-top-position-bottom: 80px;
  }
}

/*
 * section.scss
 */
.section {
  --section-title-font-size: 20px;
  --section-title-padding-block: 20px;
  --section-title-sub-font-size: 18px;
  --section-text-font-size: 14px;
  --section-text-color: var(--color-text);
  --section-contents-width: 800px;
  max-width: var(--max-width);
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .section {
    max-width: 1920px;
  }
}
.section__inner {
  max-width: var(--max-content-width);
  margin-inline: auto;
  padding-inline: var(--content-padding-inline);
}
@media screen and (min-width: 1080px) {
  .section__inner {
    max-width: var(--max-width);
  }
}
.section__contents {
  padding-block: var(--content-padding-block);
  width: 100%;
  margin-inline: auto;
}
.section__contents[data-type=auto] {
  width: fit-content;
}
.section__title {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--section-title-font-size);
  line-height: 2;
  color: var(--color-title);
  letter-spacing: 0.05em;
  text-align: center;
  padding-block: var(--section-title-padding-block);
  width: fit-content;
  margin-inline: auto;
  padding-block-end: 0em;
  margin-block-end: 1.2em;
  position: relative;
}
.section__title::before {
  content: attr(data-en);
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--color-accent-main);
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.section__title::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-main);
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .section__title {
    font-size: 40px;
    letter-spacing: 0.1em;
    margin-block-end: 72px;
  }
  .section__title::before {
    font-size: 24px;
  }
  .section__title::after {
    height: 4px;
  }
}
.section__title-sub {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--section-title-sub-font-size);
  line-height: 1.6;
  color: var(--color-title);
  letter-spacing: 0.1em;
  text-align: center;
  padding-block: 0 6px;
  margin-block-end: 0.8em;
  position: relative;
}
.section__title-sub::after {
  content: "";
  width: 2em;
  height: 3px;
  background-color: var(--color-accent-main);
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .section__title-sub {
    font-size: 30px;
    margin-block-end: 1.33em;
  }
  .section__title-sub::after {
    width: 1.1em;
    height: 4px;
  }
}
.section__image {
  width: fit-content;
  margin-inline: auto;
}
.section__text {
  font-weight: 700;
  font-size: var(--section-text-font-size);
  line-height: 2.1;
  color: var(--section-text-color);
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 1080px) {
  .section__text {
    font-size: 16px;
  }
}

/*
 * sec.scss
 */
.sec01 {
  background-color: #f7f7f7;
  padding-block: 40px;
}
@media screen and (min-width: 1080px) {
  .sec01 {
    padding-block: 88px;
  }
}

.sec01__box1 {
  background-image: url(../image/sec01-bg.webp);
  background-size: 360px;
  background-position: top right;
  background-repeat: no-repeat;
  padding-block-start: 260px;
  max-width: var(--max-content-width);
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .sec01__box1 {
    background-image: url(../image/sec01-bg-pc.webp);
    background-size: 840px;
    padding-block: 93px 50px;
    max-width: 100%;
  }
}

.sec01__list {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
@media screen and (min-width: 1080px) {
  .sec01__list {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding-block: 48px;
    padding-inline: 72px;
    width: fit-content;
    gap: 1.4em;
  }
}

.sec01__item {
  position: relative;
  padding-inline-start: 1.5em;
  line-height: 1.6;
}
.sec01__item::before {
  content: "";
  background-image: url(../image/cta-icon-check.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media screen and (min-width: 1080px) {
  .sec01__item {
    font-size: 22px;
  }
  .sec01__item::before {
    width: 24px;
    height: 24px;
  }
}

.sec02 {
  background-color: #fdf8f8;
  padding-block: 40px;
}
@media screen and (min-width: 1080px) {
  .sec02 {
    padding-block: 110px 20px;
  }
}

@media screen and (min-width: 1080px) {
  .sec02__title {
    margin-block-end: 80px;
  }
}

.sec02__box1 {
  background-image: url(../image/sec02-bg.webp);
  background-size: 360px;
  background-position: top left;
  background-repeat: no-repeat;
  padding-block-start: 260px;
  max-width: var(--max-content-width);
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .sec02__box1 {
    background-image: url(../image/sec02-bg-pc.webp);
    background-size: 824px;
    padding-block: 170px 100px;
    max-width: 100%;
  }
}
.sec02__box1 .section__inner {
  width: 570px;
  max-width: 100%;
  margin-inline-start: auto;
  margin-inline-end: max(30px, 30px + 100vw - 1560px);
  padding-inline: 0;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px 40px 0;
  border-radius: 16px;
}
@media screen and (min-width: 1080px) {
  .sec02__box1 .section__inner {
    padding: 40px;
  }
}

.sec02__text1 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-accent-main);
  letter-spacing: 0.1em;
  margin-block-end: 1.1em;
}
@media screen and (min-width: 1080px) {
  .sec02__text1 {
    font-size: 30px;
  }
}

.sec03 {
  background-color: #f7f7f7;
  padding-block: 40px 56px;
}
@media screen and (min-width: 1080px) {
  .sec03 {
    padding-block: 88px 120px;
  }
}

.sec03__title {
  margin-block-end: 56px;
}
@media screen and (min-width: 1080px) {
  .sec03__title {
    margin-block-end: 97px;
  }
}

.sec03__list1 {
  display: flex;
  flex-direction: column;
  gap: 56px;
  counter-reset: sec03-list;
  margin-block-end: 40px;
}
@media screen and (min-width: 1080px) {
  .sec03__list1 {
    gap: 97px;
    margin-block-end: 97px;
  }
}

.sec03__item1 {
  background-color: var(--color-white);
  border-radius: 16px;
  padding-block: 40px;
  padding-inline: 20px;
  position: relative;
  counter-increment: sec03-list;
}
.sec03__item1::before {
  content: "0" counter(sec03-list);
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--color-accent-main);
  letter-spacing: 0.05em;
  position: absolute;
  top: -18px;
  left: 0;
}
@media screen and (min-width: 1080px) {
  .sec03__item1 {
    padding-block: 72px;
  }
  .sec03__item1::before {
    font-size: 64px;
    top: -32px;
  }
}

.sec03__item1-box1 {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
@media screen and (min-width: 1080px) {
  .sec03__item1-box1[data-dir=row] {
    flex-direction: row-reverse;
    align-items: center;
    gap: 64px;
  }
}
@media screen and (min-width: 1080px) {
  .sec03__item1-box1 {
    max-width: 1000px;
    margin-inline: auto;
    gap: 40px;
  }
}

.sec03__item1-img1 {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  margin-inline: auto;
  border-radius: 16px;
}
@media screen and (min-width: 1080px) {
  .sec03__item1-img1 {
    width: 600px;
    max-width: 100%;
    height: auto;
  }
}

.sec03__list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 16px;
  max-width: 100%;
}
@media screen and (min-width: 1080px) {
  .sec03__list2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    width: 790px;
    margin-inline: auto;
    padding-block-start: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .sec03__item2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 210px;
  }
}

.sec03__item2-img1 {
  width: 140px;
  max-width: 100%;
  margin-block-end: 6px;
}
@media screen and (min-width: 1080px) {
  .sec03__item2-img1 {
    width: 210px;
  }
}

.sec03__item2-text1 {
  text-align: center;
  line-height: 2;
}

.sec03__list3 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1080px) {
  .sec03__list3 {
    flex-direction: row;
    gap: 40px;
  }
}

.sec03__item3:nth-child(1) {
  --sec03__item3-bg: var(--color-accent-sub);
}
.sec03__item3:nth-child(2) {
  --sec03__item3-bg: var(--color-accent-main);
}

.sec03__item3-text1 {
  width: 70px;
  height: 70px;
  background-color: var(--sec03__item3-bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0;
  padding-block: 1.2em;
  position: relative;
  margin-block-end: -3em;
}
.sec03__item3-text1::before {
  content: attr(data-en);
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 8px;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: 0;
  opacity: 0.6;
}
.sec03__item3-text1::after {
  content: "";
  width: 98%;
  height: 98%;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.14;
}
@media screen and (min-width: 1080px) {
  .sec03__item3-text1 {
    width: 120px;
    height: 120px;
    margin-block-end: -60px;
    font-size: 16px;
    padding-block: 2.1em;
  }
  .sec03__item3-text1::before {
    font-size: 12px;
  }
  .sec03__item3-text1::after {
    width: 96%;
    height: 96%;
  }
}

.sec03__item3-img1 {
  width: 260px;
  margin-inline: auto 0;
  border-radius: 16px;
}
@media screen and (min-width: 1080px) {
  .sec03__item3-img1 {
    width: 400px;
    max-width: 80%;
    margin-inline-start: 60px;
  }
}

.sec03__item1-img2 {
  width: 296px;
  max-width: 100%;
  object-fit: cover;
  margin-inline: auto;
  border-radius: 16px;
}
@media screen and (min-width: 1080px) {
  .sec03__item1-img2 {
    width: 533px;
    flex-shrink: 0;
  }
}

.sec03__box1 {
  background-color: var(--color-white);
  border: 3px solid var(--color-accent-tri);
  border-radius: 16px;
  padding-block: 32px;
}
@media screen and (min-width: 1080px) {
  .sec03__box1 {
    padding-block: 64px 80px;
    padding-inline: 10px;
  }
}

.sec03__text1 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-accent-main);
  letter-spacing: 0.1em;
  text-align: center;
  margin-block-end: 2em;
  width: fit-content;
  margin-inline: auto;
}
.sec03__text1::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-accent-main);
  border-radius: 30px;
  margin-block-start: 0.3em;
}
@media screen and (min-width: 1080px) {
  .sec03__text1 {
    font-size: 34px;
  }
}

.sec03__list4 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  counter-reset: sec03-list4;
  padding-inline: 32px;
}
@media screen and (min-width: 1080px) {
  .sec03__list4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 64px 56px;
    width: 1120px;
    max-width: 100%;
    margin-inline: auto;
  }
}

.sec03__item4 {
  counter-increment: sec03-list4;
  height: 100%;
}

.sec03__item4-title {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  margin-block-end: 12px;
  text-align: center;
}
.sec03__item4-title::before {
  content: "0" counter(sec03-list4);
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--color-accent-main);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-right: 12px;
  vertical-align: sub;
}

.sec03__item4-box1 {
  border-radius: 16px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);
  background-color: #fdf8f8;
}
@media screen and (min-width: 1080px) {
  .sec03__item4-box1 {
    min-height: 438px;
  }
}

.sec03__item4-img1 {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 1080px) {
  .sec03__item4-img1 {
    height: 184px;
    object-fit: cover;
  }
}

.sec03__item4-text {
  padding: 20px 12px;
  font-weight: 500;
}
@media screen and (min-width: 1080px) {
  .sec03__item4-text {
    padding: 20px 16px 32px;
  }
}

.sec04 {
  padding-block: 40px 56px;
}
@media screen and (min-width: 1080px) {
  .sec04 {
    padding-block: 104px 110px;
  }
}

.sec04__title {
  margin-block-end: 32px;
}
@media screen and (min-width: 1080px) {
  .sec04__title {
    margin-block-end: 64px;
  }
}

.sec04__item {
  padding-inline: 15px;
  padding-block-start: 12px;
  width: max(375px, 70vw);
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .sec04__item {
    width: min(1440px, 100%);
    padding-inline: 50px;
    padding-block-start: 24px;
  }
}

.sec04__item-bg {
  background-color: #f7f7f7;
  border-radius: 16px;
  padding-inline: 25px;
  padding-block: 20px 44px;
}
@media screen and (min-width: 1080px) {
  .sec04__item-bg {
    padding-block-end: 83px;
  }
}

.sec04__item-content {
  max-width: 295px;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .sec04__item-content {
    max-width: 1040px;
  }
}

.sec04__item-title {
  width: fit-content;
  padding: 0.5em 1.2em;
  background-color: var(--color-accent-main);
  border-radius: 6px;
  margin-inline: auto;
  translate: 0 -12px;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.1em;
  text-align: center;
}
.sec04__item-title::after {
  content: "0" attr(data-cnt);
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (min-width: 1080px) {
  .sec04__item-title {
    font-size: 24px;
    translate: 0 -44px;
  }
}

.sec04__item-box1 {
  margin-block-end: 40px;
}
@media screen and (min-width: 1080px) {
  .sec04__item-box1 {
    margin-block-end: 60px;
  }
}

.sec04__list3 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1080px) {
  .sec04__list3 {
    flex-direction: row;
    gap: 78px;
  }
}

.sec04__item3 {
  position: relative;
}
.sec04__item3:not(:last-child)::after {
  content: "";
  background-image: url(../image/sec04__item3-arrow.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 25px;
  height: 18px;
  position: absolute;
  left: 40px;
  right: 0px;
  bottom: -40px;
  margin: auto;
}
@media screen and (min-width: 1080px) {
  .sec04__item3:not(:last-child)::after {
    top: 70px;
    bottom: 0;
    left: unset;
    right: -80px;
    rotate: -90deg;
  }
}

.sec04__item3-text1 {
  width: 70px;
  height: 70px;
  background-color: var(--color-accent-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0;
  padding-block: 1.6em;
  position: relative;
  margin-block-end: -3em;
}
.sec04__item3-text1::before {
  content: attr(data-en);
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 8px;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: 0;
  opacity: 0.6;
}
.sec04__item3-text1::after {
  content: "";
  width: 96%;
  height: 96%;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.14;
}
.sec04__item3-text1[data-en=Before] {
  background-color: var(--color-white);
  color: var(--color-text);
}
.sec04__item3-text1[data-en=Before]::before {
  color: var(--color-text);
}
.sec04__item3-text1[data-en=Before]::after {
  border: 1px solid var(--color-text);
  opacity: 0.04;
}
@media screen and (min-width: 1080px) {
  .sec04__item3-text1 {
    width: 120px;
    height: 120px;
    margin-block-end: -60px;
    font-size: 16px;
    padding-block: 2.1em;
  }
  .sec04__item3-text1::before {
    font-size: 12px;
  }
}

.sec04__item3-img1 {
  width: 260px;
  margin-inline: auto 0;
  border-radius: 16px;
}
@media screen and (min-width: 1080px) {
  .sec04__item3-img1 {
    width: 400px;
    margin-inline-start: 60px;
  }
}

.sec04__list2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 1080px) {
  .sec04__list2 {
    gap: 0;
  }
}

.sec04__item2 {
  background-color: var(--color-white);
  border-radius: 8px;
}
@media screen and (min-width: 1080px) {
  .sec04__item2 {
    display: grid;
    grid-template-columns: 202px 1fr;
  }
  .sec04__item2:not(:last-child) .sec04__item2-text1 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  }
  .sec04__item2:not(:last-child) .sec04__item2-text2 {
    border-bottom: 2px solid rgba(238, 139, 116, 0.39);
  }
  .sec04__item2:first-child .sec04__item2-text1 {
    border-radius: 8px 0 0 0;
  }
  .sec04__item2:first-child .sec04__item2-text2 {
    border-radius: 0 8px 0 0;
  }
  .sec04__item2:last-child .sec04__item2-text1 {
    border-radius: 0 0 0 8px;
  }
  .sec04__item2:last-child .sec04__item2-text2 {
    border-radius: 0 0 8px 0;
  }
}

.sec04__item2-text1 {
  background-color: var(--color-accent-tri);
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
  color: #29093b;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 1080px) {
  .sec04__item2-text1 {
    font-size: 16px;
    border-radius: 0;
    text-align: left;
    padding-inline: 30px;
    padding-block: 12px;
    background-color: rgba(245, 210, 205, 0.6);
  }
}

.sec04__item2-text2 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
  color: #29093b;
  text-align: left;
  padding: 10px 16px;
}
@media screen and (min-width: 1080px) {
  .sec04__item2-text2 {
    font-size: 16px;
    padding: 12px 40px;
  }
}

.sec05 {
  background-color: #fdf8f8;
  padding-block: 40px 56px;
  padding-inline-start: 15px;
}
@media screen and (min-width: 1080px) {
  .sec05 {
    padding-block: 88px 104px;
  }
}

.sec05__title {
  margin-block-end: 32px;
}
@media screen and (min-width: 1080px) {
  .sec05__title {
    margin-block-end: 80px;
  }
}

.sec05__table {
  background-color: var(--color-white);
  overflow-x: auto;
  margin-inline-end: 15px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 1080px) {
  .sec05__table {
    max-width: 1040px;
    margin-inline: auto;
  }
}

.sec06 {
  padding-block: 40px 56px;
}
@media screen and (min-width: 1080px) {
  .sec06 {
    padding-block: 104px;
  }
}

.sec06__title {
  margin-block-end: 36px;
}
@media screen and (min-width: 1080px) {
  .sec06__title {
    margin-block-end: 80px;
  }
}

.sec06__list {
  display: flex;
  flex-direction: column;
  gap: 74px;
  padding-inline: 12px;
  counter-reset: sec06-list;
  margin-block-end: 40px;
}
@media screen and (min-width: 1080px) {
  .sec06__list {
    padding-inline: 64px;
    margin-block-end: 88px;
  }
}

.sec06__item {
  background-color: #fdf8f8;
  border-radius: 16px;
  counter-increment: sec06-list;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
}
.sec06__item:not(:last-child)::after {
  content: "";
  background-image: url(../image/sec04__item3-arrow.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 25px;
  height: 18px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -45px;
  margin: auto;
}
@media screen and (min-width: 1080px) {
  .sec06__item {
    padding-inline-end: 370px;
    min-height: 210px;
  }
  .sec06__item:not(:last-child)::after {
    width: 30px;
    height: 22px;
    bottom: -48px;
  }
}

.sec06__item-img1 {
  width: 100%;
  aspect-ratio: 373/210;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 1080px) {
  .sec06__item-img1 {
    border-radius: 16px;
    width: 350px;
    height: 210px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.sec06__item-title {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  text-align: left;
  padding: 18px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec06__item-title::before {
  content: "0" counter(sec06-list);
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--color-accent-main);
  letter-spacing: 0.05em;
  margin-right: 12px;
}
@media screen and (min-width: 1080px) {
  .sec06__item-title {
    text-align: left;
    font-size: 24px;
    justify-content: flex-start;
    padding-inline-start: 30px;
  }
  .sec06__item-title::before {
    font-size: 42px;
  }
  .sec06__item-title .sub1 {
    display: inline-block;
    margin-inline: 10px;
    font-weight: 400;
  }
}

.sec06__item-text {
  padding: 0 16px 28px;
}
@media screen and (min-width: 1080px) {
  .sec06__item-text {
    padding-inline: 30px 10px;
  }
}

.sec06__box1 {
  background-color: #f7f7f7;
  border-radius: 16px;
  padding: 28px 15px;
}
@media screen and (min-width: 1080px) {
  .sec06__box1 {
    width: 862px;
    max-width: 100%;
    margin-inline: auto;
    padding-block: 40px 56px;
  }
}

.sec06__text1 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-accent-main);
  letter-spacing: 0.05em;
  text-align: center;
  margin-block-end: 1em;
}
@media screen and (min-width: 1080px) {
  .sec06__text1 {
    font-size: 26px;
  }
}

.sec06__list2 {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
@media screen and (min-width: 1080px) {
  .sec06__list2 {
    width: fit-content;
    margin-inline: auto;
  }
}

.sec06__item2 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  letter-spacing: 0.05em;
  position: relative;
  padding-inline-start: 1em;
}
.sec06__item2::before {
  content: "・";
  color: var(--color-accent-main);
  position: absolute;
  top: 0;
  left: 0;
}
.sec06__item2:nth-child(n+4) {
  display: none;
}
@media screen and (min-width: 1080px) {
  .sec06__item2 {
    font-size: 16px;
  }
  .sec06__item2:nth-child(n+4) {
    display: block;
  }
}

.sec07 {
  background-color: #f7f7f7;
  padding-block: 40px 56px;
}
@media screen and (min-width: 1080px) {
  .sec07 {
    padding-block: 104px 120px;
  }
}

.sec07__inner {
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1080px) {
  .sec07__inner {
    gap: 80px;
    padding-inline: 50px;
  }
}

.sec07__title {
  margin-block-end: 33px;
}
@media screen and (min-width: 1080px) {
  .sec07__title {
    margin-block-end: 64px;
  }
}

@media screen and (min-width: 1080px) {
  .sec07__box1 {
    width: 625px;
    margin-inline: auto;
  }
}

.sec07__list1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-block-end: 20px;
}
@media screen and (min-width: 1080px) {
  .sec07__list1 {
    gap: 0;
    border-radius: 8px;
  }
}

.sec07__item1 {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 1080px) {
  .sec07__item1 {
    display: grid;
    grid-template-columns: 450px 1fr;
    border-radius: 0;
  }
  .sec07__item1:not(:first-child) .sec07__item1-text1 {
    border-top: 2px solid rgba(255, 255, 255, 0.75);
  }
  .sec07__item1:not(:first-child) .sec07__item1-text2 {
    border-top: 2px solid rgba(238, 139, 116, 0.39);
  }
  .sec07__item1[data-visible=false]:first-child + .sec07__item1 .sec07__item1-text1 {
    border-top: none;
  }
  .sec07__item1[data-visible=false]:first-child + .sec07__item1 .sec07__item1-text2 {
    border-top: none;
  }
}

.sec07__item1-text1 {
  background-color: var(--color-accent-tri);
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
  color: #29093b;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 10px 4px;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 1080px) {
  .sec07__item1-text1 {
    background-color: var(--color-accent-4);
    border-radius: 0;
    font-size: 16px;
    text-align: left;
    padding-inline-start: 40px;
    padding-block: 20px;
  }
}

.sec07__item1-text2 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
  color: #29093b;
  text-align: center;
  padding: 10px 16px;
}
@media screen and (min-width: 1080px) {
  .sec07__item1-text2 {
    font-size: 18px;
    text-align: left;
    padding-inline-start: 40px;
    padding-block: 20px;
  }
}

.sec07__text1 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-align: left;
  margin-block-end: 0.3em;
}
@media screen and (min-width: 1080px) {
  .sec07__text1 {
    font-size: 14px;
  }
}

.sec07__box2 {
  background-color: var(--color-white);
  border-radius: 16px;
  padding-block: 24px 40px;
  padding-inline: 20px;
}
@media screen and (min-width: 1080px) {
  .sec07__box2 {
    padding-block: 56px 72px;
    padding-inline: 72px;
  }
}

.sec07__title-sub {
  margin-inline: -20px;
  letter-spacing: 0.05em;
}

.sec07__text2 {
  margin-block-end: 20px;
}
.sec07__text2 .sub1 {
  color: var(--color-accent-main);
  text-decoration: underline;
}
@media screen and (min-width: 1080px) {
  .sec07__text2 {
    text-align: center;
    margin-block-end: 40px;
  }
  .sec07__text2[data-align=left] {
    text-align: left;
    padding-inline-start: 74px;
    margin-block-end: 50px;
  }
}

.sec07__list2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1080px) {
  .sec07__list2 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
}

.sec07__item2 {
  background-color: #fdf8f8;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding-block: 20px;
  padding-inline: 10px;
}
.sec07__item2:last-child {
  background-color: #faecea;
  padding-block: 32px;
}
@media screen and (min-width: 1080px) {
  .sec07__item2 {
    width: 350px;
    max-width: 30%;
    padding-block: 32px;
  }
  .sec07__item2:last-child {
    width: 100%;
    max-width: 100%;
    padding-block: 34px;
  }
}

.sec07__item2-img1 {
  margin-block-end: 15px;
}
@media screen and (min-width: 1080px) {
  .sec07__item2-img1 {
    width: 105px;
  }
}

.sec07__item2-text1 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  color: #29093b;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
  .sec07__item2-text1 {
    font-size: 20px;
  }
}

.sec07__item2-text2 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 2;
  color: #29093b;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
  .sec07__item2-text2 {
    font-size: 16px;
  }
}

.sec07__item2-text3 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin-block-end: 20px;
}
@media screen and (min-width: 1080px) {
  .sec07__item2-text3 {
    font-size: 26px;
    margin-block-end: 40px;
  }
}

.sec07__item2-link {
  background-color: var(--color-accent-main);
  border-radius: 12px;
  padding: 12px 16px;
  display: block;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 1080px) {
  .sec07__item2-link {
    width: 545px;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 32px;
    padding-block: 20px;
  }
}

.sec07__item2-text4 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  letter-spacing: 0;
  text-align: center;
  position: relative;
}
.sec07__item2-text4::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background-image: url(../image/sec07__item2-text4.svg);
  background-size: 100%;
  width: 9px;
  height: 12px;
  margin-left: 8px;
}
@media screen and (min-width: 1080px) {
  .sec07__item2-text4 {
    font-size: 20px;
  }
  .sec07__item2-text4::after {
    width: 12px;
    height: 16px;
    right: 0;
  }
}

.sec07__box3 {
  background-color: var(--color-accent-4);
  border-radius: 12px;
  padding: 20px 16px;
  margin-block-end: 24px;
}
@media screen and (min-width: 1080px) {
  .sec07__box3 {
    padding-inline: 32px;
    padding-block: 35px 47px;
    margin-block-end: 40px;
  }
}

.sec07__text3 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.1em;
  text-align: center;
  margin-block-end: 1em;
}
.sec07__text3 .sub1 {
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.5;
  color: var(--color-accent-main);
  letter-spacing: 0.1em;
}
.sec07__text3 .sub2 {
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  .sec07__text3 {
    font-size: 26px;
    margin-block-end: 0.9em;
  }
  .sec07__text3 .sub1 {
    font-size: 69px;
  }
  .sec07__text3 .sub2 {
    font-size: 26px;
  }
}

.sec07__text4 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 1080px) {
  .sec07__text4 {
    font-size: 16px;
    text-align: center;
  }
}

.sec07__box4 {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 20px 15px 24px;
}
@media screen and (min-width: 1080px) {
  .sec07__box4 {
    padding-inline: 72px;
    padding-block: 35px 47px;
  }
}

.sec07__text5 {
  margin-block-end: 15px;
}
@media screen and (min-width: 1080px) {
  .sec07__text5 {
    margin-block-end: 40px;
  }
}

.sec08 {
  background-color: #fdf8f8;
  padding-block: 40px 56px;
}
@media screen and (min-width: 1080px) {
  .sec08 {
    padding-block: 76px 102px;
  }
}

@media screen and (min-width: 1080px) {
  .sec08__box1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1173px;
    max-width: 100%;
    padding-inline: 40px;
    margin-inline: auto;
    gap: 40px;
    margin-block-end: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .sec08__box1 {
    flex-direction: row;
    padding-inline: 0;
  }
}

@media screen and (min-width: 1280px) {
  .sec08__box:nth-child(2) {
    padding-block-start: 36px;
  }
}
@media screen and (min-width: 1080px) {
  .sec08__box:nth-child(2) {
    padding-block-start: 0;
  }
}

.sec08__img1 {
  border-radius: 16px;
  width: 320px;
  height: 320px;
  margin-inline: auto;
  margin-block-end: 10px;
  object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .sec08__img1 {
    width: 407px;
    height: 371px;
    margin-block-end: 20px;
  }
}

.sec08__title-sub {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-align: center;
  margin-block-end: 20px;
}
@media screen and (min-width: 1080px) {
  .sec08__title-sub {
    font-size: 18px;
  }
}

.sec08__text1 {
  margin-block-end: 16px;
}

.sec08__box2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 10px;
}
@media screen and (min-width: 1080px) {
  .sec08__box2 {
    flex-direction: row;
    gap: 42px;
    justify-content: center;
  }
}

.sec08__box3 {
  background-color: var(--color-white);
  border-radius: 16px;
  padding-block: 24px;
  padding-inline: 32px 24px;
  border: 1px solid #707070;
}
@media screen and (min-width: 1080px) {
  .sec08__box3 {
    flex-basis: 50%;
    padding-inline: 64px 50px;
    padding-block: 22px 47px;
    max-width: 600px;
  }
}

.sec08__text2 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-align: center;
  margin-block-end: 1em;
}
@media screen and (min-width: 1080px) {
  .sec08__text2 {
    font-size: 20px;
    margin-block-end: 1.5em;
  }
}

.sec08__list {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.sec08__item {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
}
.sec08__item::before {
  content: "・";
  display: inline-block;
  vertical-align: middle;
  margin-inline-end: 0em;
  position: absolute;
  left: -1em;
}
.sec08__item:empty::before {
  content: "";
}
@media screen and (min-width: 1080px) {
  .sec08__item {
    font-size: 16px;
  }
}

.sec09 {
  padding-block: 40px 56px;
}
@media screen and (min-width: 1080px) {
  .sec09 {
    padding-block: 104px 107px;
  }
}

@media screen and (min-width: 1080px) {
  .sec09__box1 {
    width: fit-content;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .sec09__box1 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1147px;
    margin-inline: auto;
    gap: 43px;
    margin-block-end: 32px;
  }
}

.sec09__img1 {
  width: 100%;
  border-radius: 16px;
  margin-block-end: 20px;
  object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .sec09__img1 {
    width: 474px;
    height: 473px;
  }
}

.sec09__box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}
@media screen and (min-width: 1280px) {
  .sec09__box2 {
    align-items: flex-start;
  }
}

.sec09__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 68px;
  border-radius: 8px;
  background-color: var(--color-accent-main);
  letter-spacing: 0.05em;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 1080px) {
  .sec09__link {
    font-size: 20px;
    width: 370px;
  }
}

.sec09__text1 {
  padding-inline-start: 1em;
  line-height: 1.5;
}
.sec09__link-tel {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #f0f0f0;
  letter-spacing: 0.05em;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  --cta__button-color: #fff;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 27px;
  color: var(--color-black);
  --cta__button-icon: url(../image/gnav__link-tel.svg);
  --cta__button-icon-margin: 0.5em;
  --cta__button-border-color: rgb(0 0 0 / 12%);
  z-index: 1;
}
.sec09__link-tel:hover {
  --a-hover-color: inherit;
}
.sec09__link-tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: var(--cta__button-icon);
  background-size: 100%;
  width: var(--cta__button-icon-width, 30px);
  height: var(--cta__button-icon-height, 30px);
  margin-inline-end: var(--cta__button-icon-margin, 1.8em);
}
@media screen and (min-width: 1080px) {
  .sec09__link-tel {
    font-size: 31px;
    width: 367px;
  }
  .sec09__link-tel::before {
    width: 38px;
    height: 38px;
    margin-inline-end: 28px;
  }
}

@media screen and (min-width: 1080px) {
  .sec09__office-hours {
    width: 100%;
    max-width: 633px;
  }
}

.sec09__table {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  color: #29093b;
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  margin-block-end: 1em;
}
@media screen and (min-width: 1080px) {
  .sec09__table {
    font-size: 14px;
    margin-block-end: 20px;
    width: 633px;
    max-width: 100%;
  }
}

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

.sec09__table-head-item {
  text-align: center;
  background-color: rgba(245, 210, 205, 0.4);
  width: 30px;
  padding-block: 0.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5333333333);
}
.sec09__table-head-item:nth-child(1) {
  width: 97px;
}
.sec09__table-head-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5333333333);
}
@media screen and (min-width: 1080px) {
  .sec09__table-head-item {
    width: 60px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5333333333);
  }
  .sec09__table-head-item:nth-child(1) {
    width: 139px;
  }
  .sec09__table-head-item:not(:last-child) {
    border-right: 2px solid rgba(255, 255, 255, 0.5333333333);
  }
}

.sec09__table-body-item {
  text-align: center;
  width: 30px;
  padding-block: 0.6em;
  place-content: center;
  display: grid;
}
.sec09__table-body-item:nth-child(1) {
  width: 97px;
  background-color: rgba(245, 210, 205, 0.4);
}
@media screen and (min-width: 1080px) {
  .sec09__table-body-item {
    width: 60px;
  }
  .sec09__table-body-item:nth-child(1) {
    width: 139px;
  }
}

tbody .sec09__table-row:not(:last-child) {
  border-bottom: 1px solid rgba(238, 139, 116, 0.5019607843);
}

tbody .sec09__table-row:not(:last-child) th:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5333333333);
}

tbody td:not(:last-child) {
  border-right: 1px solid rgba(238, 139, 116, 0.5019607843);
}

@media screen and (min-width: 1080px) {
  tbody .sec09__table-row:not(:last-child) {
    border-bottom: 2px solid rgba(238, 139, 116, 0.5019607843);
  }
  tbody .sec09__table-row:not(:last-child) th:first-child {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5333333333);
  }
  tbody td:not(:last-child) {
    border-right: 2px solid rgba(238, 139, 116, 0.5019607843);
  }
}
.sec09__text2 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 1080px) {
  .sec09__text2 {
    font-size: 16px;
  }
}

.sec09__box3 {
  padding-block: 28px 90px;
}
@media screen and (min-width: 1080px) {
  .sec09__box3 {
    padding-block: 28px 0;
  }
}

.sec09__map {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .sec09__map {
    display: block;
    width: 1147px;
    max-width: 100%;
    height: 483px;
    border-radius: 16px;
    margin-inline: auto;
  }
}

/*
 * header.scss
 */
.header {
  --header-padding-block: 0;
  --header-padding-inline: var(--content-padding-inline);
  height: var(--header-height);
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 750px;
}
@media screen and (min-width: 1080px) {
  .header {
    max-width: 1920px;
  }
}
.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--header-padding-block);
  padding-inline: var(--header-padding-inline) 0;
  margin-inline: auto;
}
.header__buttonlist {
  display: none;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1080px) {
  .header__buttonlist {
    display: flex;
    margin-inline-end: 130px;
  }
}
.header__linkarea {
  height: 100%;
}
@media screen and (min-width: 1080px) {
  .header__linkarea {
    display: flex;
  }
}
.header[data-type*=fixed] {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
}
/*
 * logo.scss
 */
.logo {
  --logo-height: 42px; /* 高さでサイズを決める */
  width: auto;
  height: var(--logo-height);
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .logo {
    --logo-height: 80px;
  }
}
.logo__image {
  display: block;
  position: relative;
  height: 100%;
  width: auto;
}
.logo[data-type*=header] {
  height: 100%;
}
.logo[data-type*=sec09] {
  --logo-height: 60px;
}
.logo[data-type=shadow] {
  filter: drop-shadow(1px 1px 4px rgba(255, 255, 255, 0.5));
}
@media screen and (max-width: 1079px) {
  .logo {
    --logo-height: 40px;
  }
}

/*
 * hamburger.scss
 */
.hamburger {
  --hamburger-width: 64px;
  --hamburger-padding-block: 0;
  --hamberger-padding-inline: 0;
  --hamberger-line-width: 1px;
  --hamburger-line-color: #fff;
  width: var(--hamburger-width);
  height: 100%;
  padding-block: var(--hamburger-padding-block);
  padding-inline: var(--hamberger-padding-inline);
  translate: var(--hamberger-padding-inline) 0;
  background-color: #29093b;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1001;
}
@media screen and (min-width: 1080px) {
  .hamburger {
    --hamburger-width: 130px;
    --hamberger-line-width: 2px;
  }
}
.hamburger:hover {
  opacity: 1;
}
.hamburger__inner {
  position: relative;
  display: grid;
  place-items: center;
}
.hamburger__line {
  display: block;
  width: 24px;
  height: var(--hamberger-line-width);
  background-color: var(--hamburger-line-color);
  border-radius: var(--hamberger-line-width);
}
.hamburger__line:nth-child(2) {
  margin-block: 6px;
}
@media screen and (min-width: 1080px) {
  .hamburger__line {
    width: 36px;
  }
  .hamburger__line:nth-child(2) {
    margin-block: 12px;
  }
}
.hamburger__text {
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-block-start: 6px;
}
@media screen and (min-width: 1080px) {
  .hamburger__text {
    font-size: 16px;
    margin-block-start: 20px;
  }
}
.hamburger.active {
  background-color: #29093b;
  position: fixed;
  top: 0;
  right: 0;
  height: var(--header-height);
}
.hamburger.active .hamburger__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: rotate(45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: rotate(-45deg);
}
.hamburger.active .hamburger__text {
  display: none;
}
@media screen and (max-width: 1079px) {
  .hamburger {
    display: block;
  }
}

/*
 * gnav.scss
 */
.gnav {
  --gnav-color: var(--color-text);
  --gnav-font-size: 14px;
  --gnav-element-gap: 40px;
  display: block;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: top 0.4s ease-in-out 0.6s, opacity 0.3s;
  width: 100vw;
  height: 100dvh;
  z-index: 1000;
  background-color: var(--color-accent-4);
  padding-block: 80px;
  padding-inline: 1.5em;
}
@media screen and (min-width: 1080px) {
  .gnav {
    --gnav-font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .gnav {
    padding-block: 120px 0;
  }
}
.gnav.panelactive {
  top: 0;
  opacity: 1;
  transition: top 0.1s ease-in-out, opacity 0.6s 0.1s;
  overflow-y: auto;
}
.gnav > * {
  max-width: var(--max-width);
  margin-inline: auto;
}
.gnav__pages {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-block-end: 2em;
}
.gnav__menu {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--gnav-font-size);
  color: var(--gnav-color);
  text-align: left;
  transition: color 0.1s;
  width: 100%;
}
.gnav__menu a {
  display: block;
  width: auto;
  padding: 0.2em 0;
  border-bottom: 1px solid var(--color-accent-main);
  margin-block: 0.4em 0.8em;
}
@media screen and (min-width: 1080px) {
  .gnav__menu a {
    padding-block: 0.4em;
  }
}
.gnav__linkarea a {
  border-radius: 4px;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-align: center;
}
.gnav__linkarea a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1080px) {
  .gnav__linkarea {
    display: flex;
    justify-content: center;
  }
}
.gnav__link-tel {
  display: block;
  width: 100%;
  background-color: var(--color-white);
  padding-block: 14px;
  padding-inline: 24px;
  margin-bottom: 5px;
  opacity: 0.9;
}
.gnav__link-tel .sub1 {
  display: block;
  width: 100%;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gnav-color);
  text-align: center;
  padding-block-end: 14px;
  border-bottom: 1px solid var(--color-text);
}
.gnav__link-tel .sub2 {
  display: block;
  width: 100%;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--gnav-color);
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
}
.gnav__link-tel .sub2::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background-image: url(../image/gnav__link-tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-inline-end: 0.4em;
  vertical-align: baseline;
}
.gnav__link-tel .sub3 {
  display: block;
  width: 100%;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--gnav-color);
  text-align: center;
  letter-spacing: 0.05em;
}
.gnav__link-tel:hover {
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  .gnav__link-tel {
    width: 280px;
    flex-shrink: 0;
    margin-block-end: 0;
  }
  .gnav__link-tel .sub2 {
    margin-block: 4px;
  }
}
.gnav__link-contact, .gnav__link-line {
  padding-block: 32px 20px;
  display: inline-block;
  height: 135px;
  width: 49%;
  opacity: 0.9;
}
.gnav__link-contact::before, .gnav__link-line::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-inline: auto;
  margin-block-end: 16px;
}
.gnav__link-contact:hover, .gnav__link-line:hover {
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  .gnav__link-contact, .gnav__link-line {
    width: 130px;
    flex-shrink: 0;
    margin-block-end: 0;
    font-style: normal;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: var(--color-white);
    text-align: center;
  }
  .gnav__link-contact .sub2, .gnav__link-line .sub2 {
    font-style: normal;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: var(--color-white);
    letter-spacing: 0.05em;
  }
  .gnav__link-contact::before, .gnav__link-line::before {
    width: 36px;
    height: 36px;
  }
}
.gnav__link-contact {
  background-color: #ffa692;
}
.gnav__link-contact::before {
  background-image: url(../image/gnav__link-contact.svg);
}
.gnav__link-line {
  background-color: #d26b52;
}
.gnav__link-line::before {
  background-image: url(../image/gnav__link-line.svg);
}
.gnav__contents {
  max-width: var(--max-content-width);
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .gnav__contents {
    max-width: 540px;
  }
}
@media screen and (max-width: 1079px) {
  .gnav {
    --gnav-font-size: 18px;
    --gnav-element-gap: 50px;
  }
}

/*
 * mainvisual.scss
 */
.mainvisual {
  --mainvisual-height: auto;
  width: 100%;
  max-width: 750px;
  height: var(--mainvisual-height);
  margin-inline: auto;
  position: relative;
  padding-block-end: 30px;
}
@media screen and (min-width: 1080px) {
  .mainvisual {
    max-width: 1920px;
    padding-block-end: 0;
  }
}
.mainvisual[data-type*=fullscreen] {
  --mainvisual-height: calc(100vh - var(--header-height));
}
.mainvisual__inner.section__inner {
  max-width: 750px;
}
@media screen and (min-width: 1080px) {
  .mainvisual__inner.section__inner {
    position: relative;
    max-width: var(--max-content-width);
    padding-inline: 0;
  }
}

.mainvisual__box {
  position: relative;
}
@media screen and (min-width: 1080px) {
  .mainvisual__box {
    height: 778px;
  }
}

.mainvisual__image {
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
.mainvisual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 1080px) {
  .mainvisual__image {
    position: absolute;
    height: 778px;
  }
}

.mainvisual__copy {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 21px + 21 * (100vw - 375px) / 375, 42px);
  color: var(--color-black);
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1080px) {
  .mainvisual__copy {
    text-align: left;
    font-size: 42px;
    color: var(--color-white);
    position: absolute;
    top: 236px;
    left: 70px;
    z-index: 2;
    line-height: 1.6;
  }
}

.mainvisual__img1 {
  position: absolute;
  bottom: min(17vw, 127px);
  left: 2vw;
  width: 45%;
  height: auto;
}
@media screen and (min-width: 1080px) {
  .mainvisual__img1 {
    width: 466px;
    height: 199px;
    top: 402px;
    left: 190px;
    z-index: 2;
  }
}

.mainvisual__copy-sub {
  position: absolute;
  bottom: min(18vw, 135px);
  right: 2vw;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(37px, 37px + 37 * (100vw - 375px) / 375, 74px);
  line-height: 1;
  color: var(--color-white);
  opacity: 0.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1080px) {
  .mainvisual__copy-sub {
    top: 510px;
    right: unset;
    left: 80px;
    font-size: 127px;
    z-index: 1;
  }
}

.mainvisual__list {
  display: flex;
  justify-content: center;
  gap: 4px;
  translate: 0 calc(clamp(44px, 44px + 36 * (100vw - 375px) / 375, 80px) * -1);
  margin-block-end: -30px;
}
@media screen and (min-width: 1080px) {
  .mainvisual__list {
    padding-inline: 70px;
    justify-content: flex-start;
    translate: 0 -125px;
    gap: 28px;
  }
}

.mainvisual__item {
  width: clamp(110px, 110px + 100 * (100vw - 375px) / 375, 210px);
  height: clamp(110px, 110px + 100 * (100vw - 375px) / 375, 210px);
  border-radius: 50%;
  background-image: linear-gradient(135deg, #eba999 55%, #ec9c8a 55%);
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 14px + 12 * (100vw - 375px) / 375, 26px);
  color: var(--color-white);
  text-align: center;
  letter-spacing: -0.05em;
  display: grid;
  place-items: center;
  padding-block: 2.3em;
  position: relative;
}
.mainvisual__item::after {
  content: "";
  width: 98%;
  height: 98%;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--color-white);
  opacity: 0.16;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1080px) {
  .mainvisual__item {
    font-style: normal;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    color: var(--color-white);
    letter-spacing: 0;
    width: 240px;
    height: 240px;
    background-image: linear-gradient(135deg, #eba999 53%, #ec9c8a 53%);
  }
  .mainvisual__item::before {
    width: 100%;
    font-size: 16px;
  }
  .mainvisual__item::after {
    content: "";
    width: 98%;
    height: 98%;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--color-white);
    opacity: 0.16;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}

/*
 * footer.scss
 */
.footer {
  --footer-padding-block: 30px;
  --footer-padding-inline: var(--content-padding-inline);
  --footer-copyright-font-size: 16px;
  width: 100%;
  background-color: var(--color-bg-footer);
}
.footer__inner {
  display: grid;
  place-items: center;
  gap: 30px;
  width: fit-content;
  margin-inline: auto;
  padding-block: var(--footer-padding-block);
}
.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__copyright {
  font-weight: 400;
  font-size: var(--footer-copyright-font-size);
  color: var(--color-text);
}
@media screen and (max-width: 1079px) {
  .footer {
    --footer-padding-block: 40px;
    --footer-copyright-font-size: 14px;
  }
}

/*
 * faq.scss
 */
.faq {
  --faq-q-icon: "Q";
  --faq-a-icon: "A";
  --faq-q-icon-color: rgba(255, 255, 255, 0.65);
  --faq-a-icon-color: rgba(238, 139, 116, 0.65);
  --faq-q-font-size: 16px;
  --faq-a-font-size: 14px;
  --faq-q-color: var(--color-white);
  --faq-a-color: var(--color-text);
  --faq-q-bg-color: var(--color-accent-main);
  --faq-a-bg-color: #f7f7f7;
  --faq-list-gap: 32px;
  --faq-item-padding-unit: 13px;
  height: auto;
  padding-block: 40px 56px;
}
@media screen and (min-width: 1080px) {
  .faq {
    --faq-list-gap: 56px;
    --faq-q-font-size: 18px;
    --faq-a-font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .faq {
    padding-block: 104px 120px;
  }
}
.faq__contents {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .faq__contents {
    width: 992px;
    max-width: 100%;
    margin-inline: auto;
  }
}
.faq__title {
  margin-block-end: 32px;
}
@media screen and (min-width: 1080px) {
  .faq__title {
    margin-block-end: 72px;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--faq-list-gap);
}
.faq__item {
  border-radius: 12px;
}
.faq__element {
  background-color: var(--faq-bg-color);
  padding-block: var(--faq-item-padding-unit);
  padding-inline: 45px;
  position: relative;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--faq-font-size);
  line-height: 30px;
  color: var(--faq-color);
}
.faq__element::before {
  content: var(--faq-icon);
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--faq-icon-color);
  position: absolute;
  top: 12px;
  left: 16px;
}
.faq__element[data-type=q] {
  --faq-font-size: var(--faq-q-font-size);
  --faq-color: var(--faq-q-color);
  --faq-bg-color: var(--faq-q-bg-color);
  --faq-icon: var(--faq-q-icon);
  --faq-icon-color: var(--faq-q-icon-color);
  border-radius: 12px;
  transition: border-radius 0.3s ease-out;
}
.faq__element[data-type=q].open {
  border-radius: 12px 12px 0 0;
}
.faq__element[data-type=a] {
  --faq-font-size: var(--faq-a-font-size);
  --faq-color: var(--faq-a-color);
  --faq-bg-color: var(--faq-a-bg-color);
  --faq-icon: var(--faq-a-icon);
  --faq-icon-color: var(--faq-a-icon-color);
  font-weight: 500;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 1080px) {
  .faq__element {
    padding-block: 24px 28px;
    padding-inline: 61px 45px;
  }
  .faq__element::before {
    font-size: 30px;
    top: 22px;
    left: 22px;
  }
}

/*==================================================
スライダーのためのcss
https://kenwheeler.github.io/slick/
===================================*/
.slider {
  width: 100%;
  margin: 0 auto;
}

.slider img {
  height: auto;
}

.slider .slick-slide.slick-center {
  transform: scale(1);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-arrow {
  width: 20px;
  height: 32px;
  position: absolute;
  top: 22%;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 1080px) {
  .slick-arrow {
    width: 30px;
    height: 48px;
    top: 47%;
  }
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 8px;
  scale: -1 1;
}
@media screen and (min-width: 1080px) {
  .slick-prev {
    left: 32px;
  }
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 8px;
}
@media screen and (min-width: 1080px) {
  .slick-next {
    right: 32px;
  }
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
@media screen and (min-width: 1080px) {
  .slick-dots {
    margin-top: 40px;
  }
}

.slick-dots li {
  display: inline-block;
  margin: 0 24px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 18px;
  /*ドットボタンのサイズ*/
  height: 18px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #f7f7f7;
  border: 2px solid var(--color-accent-main);
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: var(--color-accent-main);
  /*ドットボタンの現在地表示の色*/
}

/*
 * cta.scss
 */
.cta {
  background-color: var(--color-bg-cta);
  padding-block: 1.5em;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}
@media screen and (min-width: 1080px) {
  .cta {
    font-size: 32px;
    padding-block-end: 138px;
  }
}

.cta__inner {
  background-color: var(--color-accent-4);
  border-radius: 0.5em;
  padding-block: 2.2em;
  padding-inline: 1.1em;
}
@media screen and (min-width: 1080px) {
  .cta__inner {
    padding-block: 64px;
    padding-inline: 20px;
  }
}

.cta__title {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  text-align: center;
  padding-block-end: 0.3em;
  width: fit-content;
  margin-inline: auto;
  margin-block-end: 1.3em;
  position: relative;
}
.cta__title::before {
  content: attr(data-en);
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-accent-main);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: absolute;
  top: -2.2em;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.cta__title::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 8px;
  background-color: var(--color-accent-main);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1080px) {
  .cta__title {
    font-size: 36px;
  }
  .cta__title::before {
    top: -2.6em;
    font-size: 34px;
  }
  .cta__title::after {
    height: 4px;
  }
}

@media screen and (min-width: 1080px) {
  .cta__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
  }
}

.cta__box1 {
  border-radius: 0.75em;
  background-color: #f7f7f7;
  padding-block-start: 1.2em;
  margin-block-end: 1.25em;
  box-shadow: 0 0.2em 6px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 1080px) {
  .cta__box1 {
    padding-block-start: 1.4em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.cta__text1 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-black);
  letter-spacing: 0.1em;
  width: fit-content;
  margin-inline: auto;
  margin-block-end: 0.6em;
  text-align: center;
  position: relative;
}
.cta__text1::before, .cta__text1::after {
  content: "";
  position: absolute;
  width: 1.4em;
  height: 2px;
  background-color: var(--color-accent-main);
  top: 50%;
  transform: translateY(-50%) rotate(-130deg);
}
.cta__text1::before {
  left: -1.75em;
}
.cta__text1::after {
  right: -1.75em;
  transform: translateY(-50%) rotate(130deg);
}
.cta__text1 .sub1 {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.cta__text1 .sub2 {
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 30px;
  color: var(--color-accent-main);
  display: inline-block;
  margin-inline: 0.1em;
}
.cta__text1 .tab {
  display: none;
}
@media screen and (min-width: 1080px) {
  .cta__text1 {
    font-size: 26px;
    margin-block-end: 0.8em;
  }
  .cta__text1::before, .cta__text1::after {
    content: "";
    position: absolute;
    width: 1.7em;
    height: 3px;
    background-color: var(--color-accent-main);
    opacity: 0.5;
    top: 50%;
    border-radius: 4px;
  }
  .cta__text1 .sub1 {
    font-size: 20px;
  }
  .cta__text1 .sub2 {
    font-size: 42px;
  }
  .cta__text1 .tab {
    display: initial;
  }
}
@media (min-width: 1280px) {
  .cta__text1 .tab {
    display: none;
  }
}

.cta__text2 {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  text-align: center;
  margin-block-end: 1em;
}
@media screen and (min-width: 1080px) {
  .cta__text2 {
    font-size: 18px;
    margin-block-end: 1.5em;
  }
}

.cta__box1-1 {
  background-color: var(--color-accent-main);
  border-radius: 0 0 0.75em 0.75em;
  padding-block: 0.75em;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .cta__box1-1 {
    padding-block: 1.9em;
  }
}

.cta__text3 {
  margin-block-end: 0.5em;
  position: relative;
}
.cta__text3::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../image/cta-icon-clock.svg);
  background-size: 100%;
  width: 1em;
  height: 1em;
  margin-inline-end: 0.5em;
  translate: 0 -0.2em;
}
@media screen and (min-width: 1080px) {
  .cta__text3 {
    font-size: 24px;
    margin-block-end: 0.6em;
  }
  .cta__text3::before {
    width: 28px;
    height: 28px;
  }
}

.cta__text4 {
  font-size: 0.875em;
}
@media screen and (min-width: 1080px) {
  .cta__text4 {
    font-size: 18px;
  }
}

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

.cta__list-item {
  margin-bottom: -10px;
}

.cta__box2 {
  border-radius: 0.75em;
  background-color: #fefbfb;
  border: 3px solid var(--color-accent-main);
  padding-block: 1.5em;
  padding-inline: 0.25em 0.05em;
  box-shadow: 0 0.2em 6px rgba(0, 0, 0, 0.04);
  margin-block-end: 1.25em;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1080px) {
  .cta__box2 {
    padding-block: 1.5em;
  }
}

.cta__list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1080px) {
  .cta__list {
    gap: 0.65em;
  }
}

.cta__item {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  position: relative;
}
.cta__item::before {
  content: "";
  display: inline-block;
  vertical-align: baseline;
  background-image: url(../image/cta-icon-check.svg);
  background-size: 100%;
  width: 1.15em;
  height: 1.15em;
  margin-inline-end: 0.2em;
  translate: 0 0.2em;
}
@media screen and (min-width: 1080px) {
  .cta__item {
    font-size: 22px;
  }
}

.cta__buttonarea {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
@media screen and (min-width: 1080px) {
  .cta__buttonarea {
    flex-direction: row;
    gap: 1.5em;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
  }
}

.cta__button {
  width: 100%;
  height: 88px;
  border-radius: 0.75em;
  background-color: var(--cta__button-color);
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.05em;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.cta__button .sub2 {
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
.cta__button:nth-child(1) {
  --cta__button-color: #fff;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 27px;
  color: var(--color-black);
  --cta__button-icon: url(../image/gnav__link-tel.svg);
  --cta__button-icon-margin: 0.5em;
  --cta__button-border-color: rgb(0 0 0 / 12%);
}
.cta__button:nth-child(2) {
  --cta__button-color: var(--color-accent-sub);
  --cta__button-icon: url(../image/gnav__link-contact.svg);
  --cta__button-icon-width: 35px;
}
.cta__button:nth-child(3) {
  --cta__button-color: #d57d67;
  --cta__button-icon: url(../image/gnav__link-line.svg);
}
@media screen and (min-width: 1080px) {
  .cta__button {
    font-size: 26px;
    height: 124px;
  }
  .cta__button .sub2 {
    font-size: 26px;
  }
  .cta__button:nth-child(1) {
    --cta__button-color: #fff;
    --cta__button-icon-margin: 0.5em;
    --cta__button-border-color: rgb(0 0 0 / 12%);
    --cta__button-icon-width: 38px;
    --cta__button-icon-height: 38px;
  }
  .cta__button:nth-child(2) {
    --cta__button-color: var(--color-accent-sub);
    --cta__button-icon-width: 45px;
    --cta__button-icon-height: 38px;
  }
  .cta__button:nth-child(3) {
    --cta__button-icon-width: 38px;
    --cta__button-icon-height: 38px;
  }
}

.cta__button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta__button-link:hover {
  --a-hover-color: inherit;
}
.cta__button-link::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: var(--cta__button-icon);
  background-size: 100%;
  width: var(--cta__button-icon-width, 30px);
  height: var(--cta__button-icon-height, 30px);
  margin-inline-end: var(--cta__button-icon-margin, 1.8em);
}
.cta__button-link::after {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid var(--cta__button-border-color, #fff);
  border-radius: calc(0.75em - 4px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

/*
 * table.scss
 */
.table {
  --table-head-font-size: 14px;
  --table-head-color: var(--color-text);
  --table-head-bg-color: rgba(245, 210, 205, 0.5);
  --table-data-font-size: 14px;
  --table-data-color: var(--color-text);
  --table-data-bg-color: var(--color-white);
  --table-border-color: rgba(238, 139, 116, 0.4);
  width: 100%;
  border-radius: 8px;
}
@media screen and (min-width: 1080px) {
  .table {
    --table-head-font-size: 16px;
    --table-data-font-size: 16px;
  }
}
.table__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.table__data {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: var(--table-data-font-size);
  color: var(--table-data-color);
  text-align: center;
  background-color: var(--table-data-bg-color);
  padding: 1em 1.5em;
  min-width: 170px;
  min-height: 70px;
  display: grid;
  place-items: center;
  padding-block: 1em;
}
.table__data:nth-child(1) {
  color: #29093b;
  background-color: var(--table-head-bg-color);
  --table-border-color: var(--color-white);
  border-right: none;
}
.table__data:nth-child(2) {
  background-color: var(--color-accent-main);
  color: var(--color-white);
  --table-border-color: var(--color-white);
  border-right: none;
}
@media screen and (min-width: 1080px) {
  .table__data {
    min-height: 72px;
  }
}
.table__head .table__data {
  background-color: var(--table-head-bg-color);
}
.table__head .table__data:nth-child(2) {
  background-color: var(--color-accent-main);
  color: var(--color-white);
  --table-border-color: var(--color-white);
}
.table__img {
  width: 100%;
  aspect-ratio: 6/4;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.table[data-type=border] .table__data {
  border-bottom: 2px solid var(--table-border-color);
  border-right: 2px solid var(--table-border-color);
}
.table[data-type=border] .table__body .table__row:last-child .table__data {
  border-bottom: none;
}
.table[data-type=border] .table__data:last-child,
.table[data-type=border] .table__data:first-child,
.table[data-type=border] .table__data:nth-child(2) {
  border-right: none;
}
.table[data-type=border] .table__head .table__data:nth-child(n+3) {
  --table-border-color: var(--color-white);
}
.table[data-type=border] .table__head .table__data:first-child {
  border-top-left-radius: 8px;
}
.table[data-type=border] .table__head .table__data:last-child {
  border-top-right-radius: 8px;
}
.table[data-type=border] .table__body .table__row:last-child .table__data:first-child {
  border-bottom-left-radius: 8px;
}
.table[data-type=border] .table__body .table__row:last-child .table__data:last-child {
  border-bottom-right-radius: 8px;
}

/* 
 * Utility
 * --------------------------
 */
/*
 * util.scss
 */
@media screen and (min-width: 1080px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1080px) {
  .pc {
    display: inherit;
  }
}

.box-shadow {
  box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.2);
  width: fit-content;
}

.box-bg-grad {
  background-image: linear-gradient(30deg, var(--color-accent-main), var(--color-white) 30%, var(--color-white) 70%, var(--color-accent-main));
}

.text-capitalize {
  text-transform: capitalize;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-accent {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-accent-main);
}

.text-color--black {
  color: var(--color-black);
}
.text-color--green {
  color: var(--color-green);
}
.text-color--pink {
  color: var(--color-pink);
}
.text-color--orange {
  color: var(--color-orange);
}
.text-color--yellow {
  color: var(--color-yellow);
}

.text-deco-marker {
  background: linear-gradient(transparent 85%, var(--color-marker) 85%, var(--color-marker) 100%, transparent 100%);
}

.text-deco-marker2 {
  background: linear-gradient(transparent 85%, var(--color-marker) 2 85%, var(--color-marker) 2 100%, transparent 100%);
}

.text-deco-dash--accent, .text-deco-dash {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.text-deco-dash--accent {
  text-decoration-color: var(--color-accent-main);
}

.text-deco-regular {
  font-weight: 400;
}

.text-deco-medium {
  font-weight: 500;
}

.text-deco-bold {
  font-weight: 700;
}

.text-deco-black {
  font-weight: 900;
}

.text-deco-underline--accent, .text-deco-underline {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.text-deco-underline--accent {
  text-decoration-color: var(--color-accent-main);
}

.text-deco-overdot--small, .text-deco-overdot--accent, .text-deco-overdot {
  position: relative;
}
.text-deco-overdot--small::after, .text-deco-overdot--accent::after, .text-deco-overdot::after {
  position: absolute;
  content: "・";
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: var(--color-text);
  font-feature-settings: "palt";
  top: -0.5em;
  left: 0.25em;
}

.text-deco-overdot--accent::after {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent-main);
  font-feature-settings: "palt";
}
.text-deco-overdot--small::after {
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.5em;
  line-height: 1;
  font-feature-settings: "palt";
  top: -0.3em;
  left: 0.8em;
}

.text-deco-wave {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #A27E8A;
}

.text-deco-wave2 {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #ff0000;
}

.text-shadow {
  text-shadow: 3px 3px 0px var(--color-accent-main);
}
.text-shadow--blur {
  text-shadow: 5px 5px 8px var(--color-accent-main), 5px -5px 8px var(--color-accent-main), -5px 5px 8px var(--color-accent-main), -5px -5px 8px var(--color-accent-main);
}
.text-shadow--box {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 8px;
  box-shadow: inset 3px 3px 20px var(--color-white), inset -3px -3px 20px var(--color-white);
}

.text-num {
  font-style: normal;
  font-weight: 700;
  font-size: 1.4em;
  font-feature-settings: "palt";
}

.text-fz60 {
  font-size: 0.6em;
}

.text-fz70 {
  font-size: 0.7em;
}

.text-fz80 {
  font-size: 0.8em;
}

.text-fz90 {
  font-size: 0.9em;
}

.text-fz110 {
  font-size: 1.1em;
}

.text-fz120 {
  font-size: 1.2em;
}

.text-fz130 {
  font-size: 1.3em;
}

.text-fz140 {
  font-size: 1.4em;
}

.text-fz150 {
  font-size: 1.5em;
}

.text-fz200 {
  font-size: 2em;
  line-height: 1.3;
}

.text-fz250 {
  font-size: 2.5em;
}

.mb_vw0 {
  margin-bottom: unset;
}

.mb_vw10 {
  margin-bottom: 10px;
}

.mb_vw20 {
  margin-bottom: 20px;
}

.mb_vw30 {
  margin-bottom: 30px;
}

.mb_vw40 {
  margin-bottom: 40px;
}

.mb_vw50 {
  margin-bottom: 50px;
}

.mb_vw60 {
  margin-bottom: 60px;
}

.mb_vw70 {
  margin-bottom: 70px;
}

.mb_vw80 {
  margin-bottom: 80px;
}

.mb_vw90 {
  margin-bottom: 90px;
}

.mb_vw100 {
  margin-bottom: 100px;
}

.plr_vw10 {
  padding-left: 10px;
  padding-right: 10px;
}

.plr_vw20 {
  padding-left: 20px;
  padding-right: 20px;
}

.plr_vw30 {
  padding-left: 30px;
  padding-right: 30px;
}

.plr_vw40 {
  padding-left: 40px;
  padding-right: 40px;
}

.plr_vw60 {
  padding-left: 60px;
  padding-right: 60px;
}

.nanameline--accent, .nanameline {
  position: relative;
}
.nanameline--accent::before, .nanameline::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  background-color: var(--color-black);
  left: -20px;
  bottom: -0.1em;
  transform: rotate(-40deg);
}
.nanameline--accent::after, .nanameline::after {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  background-color: var(--color-black);
  right: -20px;
  bottom: -0.1em;
  transform: rotate(40deg);
}

.nanameline--accent::before, .nanameline--accent::after {
  background-color: var(--color-accent-main);
  width: 2px;
}
.nanameline--accent::before {
  left: -0.6em;
}
.nanameline--accent::after {
  right: -0.6em;
}

.dummy {
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
  padding: 10px;
}

.dummy100 {
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
  padding: 10px;
}

.dummy200 {
  width: 100%;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
}

.dummy300 {
  width: 100%;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
}

.dummy500 {
  width: 100%;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
}

.dummy1000 {
  width: 100%;
  height: 1000px;
  background-color: rgba(0, 0, 0, 0.2);
  outline: 1px solid rgba(0, 0, 17, 0.2);
}

.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis--oneline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis--line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
}

/*
 * animation.scss
 */
/* modaal */
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/* 下からふわっと */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/* キラッと */
.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -180px;
  background: rgba(255, 255, 255, 0.5333333333);
  width: 30px;
  height: 100%;
  animation: shineanime 3s ease-in-out infinite;
  z-index: 30;
}

@keyframes shineanime {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  31% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: scale(80) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(80) rotate(45deg);
    opacity: 0;
  }
}
/* 1. フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim-fade-in {
  animation: fadeIn 1s ease-in forwards;
  opacity: 0;
}

.anim-fade-in--trigger {
  opacity: 0;
}

/* 下からスライドイン（動き幅を40pxに調整） */
@keyframes slideInBottom {
  0% {
    transform: translateY(40px); /* 下方向に40pxの移動 */
    opacity: 0;
  }
  100% {
    transform: translateY(0); /* 最終位置 */
    opacity: 1;
  }
}
.anim-slide-in-bottom {
  opacity: 0; /* 初期状態: 非表示 */
  transform: translateY(40px); /* 開始位置 */
  animation: slideInBottom 1s ease-in-out forwards; /* 2秒で柔らかく動作 */
}

.anim-slide-in-bottom--trigger {
  opacity: 0;
}/*# sourceMappingURL=style.css.map */


