@charset "UTF-8";
/* Colors */
/* Size */
/* Times */
/* Width */
/* Media */
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 10px;
}

@media (max-width: 1330px) {
  html {
    font-size: 0.7518796992vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #2a0800;
  font-size: 1.6rem;
}

body.is-open {
  overflow: hidden;
}

main {
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: inline-block;
}

a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}
.inner {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1330px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .pc-view {
    display: none;
  }
}
.sp-view {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-view {
    display: block;
  }
}
.yellow {
  color: #f5a100;
}

.orange {
  color: #f65a37;
}

.red {
  color: #e8340d;
}

.black {
  color: #2a0800;
}

span.inline-block {
  display: inline-block;
}

.parts {
  margin-top: 10rem;
}

.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.js-fadeIn.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.bold {
  font-weight: 600;
}

.spacer {
  display: block;
  height: 1rem;
  width: 0;
}

/*-------------------------------
dummy
-------------------------------*/
/*-------------------------------
archive-category
-------------------------------*/
.archive-category__title {
  margin-left: 2.4rem;
  padding: 0.4rem 0;
  width: 15rem;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #e8340d;
  border-radius: 0.4rem;
}

@media screen and (max-width: 767px) {
  .archive-category__title {
    margin: 0 auto;
  }
}
.archive-category__list {
  margin-top: -1.3rem;
  padding: 2.4rem;
  height: 100%;
  border-radius: 1.6rem;
  border: 1px solid #e8340d;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.8rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: 2.8rem;
  grid-row-gap: 2.8rem;
}

@media screen and (max-width: 767px) {
  .archive-category__list {
    margin-top: -1.8rem;
    padding: 3.2rem 1.4rem;
    border-radius: 0.8rem;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 3.2rem;
  }
}
.archive-category__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.archive-category__item::after {
  font-size: min(3vw, 0.8em);
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 5em;
  border-radius: 100%;
  border: solid 1px #FFF;
  font-weight: 600;
  white-space: pre;
  aspect-ratio: 1/1;
}
.archive-category__item.fbb::after {
  content: "焼きたて\aパン";
  background-color: #a45c0f;
  padding-top: 0.5rem;
}
.archive-category__item.hms::after {
  content: "手作り\aサンド";
  background-color: #85d008;
}

@media screen and (max-width: 767px) {
  .archive-category__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 4;
    grid-row: span 4;
    grid-row-gap: 1.1rem;
  }
}
.archive-category__item-img {
  width: 22rem;
}

@media screen and (max-width: 767px) {
  .archive-category__item-img {
    width: 100%;
  }
}
.archive-category__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 220/180;
  border-radius: 0.8rem;
}

@media screen and (max-width: 767px) {
  .archive-category__item-img img {
    aspect-ratio: 310/180;
  }
}
.archive-category__item-shop {
  padding: 0 0.9rem;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  background-color: #ffe8e8;
}

@media screen and (max-width: 767px) {
  .archive-category__item-shop {
    padding: 0.2rem;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
  }
}
.archive-category__item-text {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .archive-category__item-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.archive-category__item-btn a {
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #e8340d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

@media screen and (max-width: 767px) {
  .archive-category__item-btn a {
    margin-left: auto;
    padding: 0.4rem 1.6rem;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    color: #fff;
    gap: 1rem;
    background-color: #e8340d;
    border-radius: 2rem;
  }
}
.archive-category__item-btn a::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-image: url(../images/common/circle-arrow__red2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .archive-category__item-btn a::after {
    width: 1.8rem;
    height: 1.8rem;
    background-image: url(../images/common/circle-arrow__red.webp);
  }
}
/*-------------------------------
一覧が空欄の時に適応されるフォント設定
-------------------------------*/
.archive-comingsoon {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #e2e2e2;
}

/*-------------------------------
archive-content
-------------------------------*/
.archive-content {
  margin-top: 8.4rem;
  padding-bottom: 18rem;
}

@media screen and (max-width: 767px) {
  .archive-content {
    margin-top: 4rem;
    padding-bottom: 0;
  }
}
.archive-content__inner.inner {
  max-width: 108.9rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .archive-content__inner.inner {
    padding: 0 1.8rem;
    max-width: 50rem;
  }
}
.archive-content__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: 6rem;
  grid-row-gap: 4rem;
}

@media screen and (max-width: 767px) {
  .archive-content__list {
    margin: 0 auto;
    max-width: 40rem;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 4rem;
  }
}
.archive-content__item {
  scroll-margin-top: 9rem;
}

@media screen and (max-width: 767px) {
  .archive-content__item {
    scroll-margin-top: 7rem;
  }
}
/*-------------------------------
archive-map
-------------------------------*/
.archive-map {
  margin-top: 3.7rem;
}

@media screen and (max-width: 767px) {
  .archive-map {
    margin-top: 1.2rem;
  }
}
.archive-map__inner.inner {
  max-width: 99rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .archive-map__inner.inner {
    padding: 0;
  }
}
.archive-map__wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  .archive-map__wrap {
    margin: 0 auto;
    max-width: 55rem;
  }
}
.archive-map__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 990/459;
}

@media screen and (max-width: 767px) {
  .archive-map__img img {
    aspect-ratio: 375/350;
  }
}
/*-------------------------------
ボタン設定
-------------------------------*/
.archive-map__btn-item {
  width: 9.2rem;
  height: 9.2rem;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item {
    width: 7rem;
    height: 7rem;
  }
}
.archive-map__btn-item a, .archive-map__btn-item a img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.archive-map__btn-item a:hover {
  opacity: 1;
}

/*-------------------------------
ボタン配置
-------------------------------*/
.archive-map__btn-item.-byouin {
  top: 9.4rem;
  left: 60rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-byouin {
    top: clamp(7.4rem, -7.1712rem + 38.86vw, 14.2rem);
    left: clamp(30.1rem, -3.9712rem + 90.86vw, 46rem);
  }
}
.archive-map__btn-item.-kigyou {
  top: 16.5rem;
  left: 27rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-kigyou {
    top: clamp(21.6rem, -7.7568rem + 78.29vw, 35.3rem);
    left: clamp(0.5rem, -2.072rem + 6.86vw, 1.7rem);
  }
}
.archive-map__btn-item.-gakkou {
  top: 16rem;
  left: 73rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-gakkou {
    top: clamp(18.4rem, -6.672rem + 66.86vw, 30.1rem);
    left: clamp(29.7rem, -4.5856rem + 91.43vw, 45.7rem);
  }
}
.archive-map__btn-item.-syougyou {
  top: 2.8rem;
  left: 36.2rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-syougyou {
    top: clamp(2.4rem, -7.0288rem + 25.14vw, 6.8rem);
    left: clamp(12.7rem, -2.9424rem + 41.71vw, 20rem);
  }
}
.archive-map__btn-item.-koutsuu {
  top: 2.5rem;
  left: 16rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-koutsuu {
    top: clamp(2.6rem, -7.6864rem + 27.43vw, 7.4rem);
    left: clamp(0.6rem, -2.4rem + 8vw, 2rem);
  }
}
.archive-map__btn-item.-apartment {
  top: 6.5rem;
  left: 48rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-apartment {
    top: clamp(0.5rem, -7rem + 20vw, 4rem);
    left: clamp(23.6rem, -3.8288rem + 73.14vw, 36.4rem);
  }
}
.archive-map__btn-item.-kankoutyou {
  top: 3.6rem;
  left: 68.3rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-kankoutyou {
    top: clamp(13.5rem, -6.8576rem + 54.29vw, 23rem);
    left: clamp(15.6rem, -1.328rem + 45.14vw, 23.5rem);
  }
}
.archive-map__btn-item.-rode {
  top: 26.7rem;
  left: 48.7rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-rode {
    top: clamp(23.8rem, -7.4864rem + 83.43vw, 38.4rem);
    left: clamp(16.8rem, -3.3424rem + 53.71vw, 26.2rem);
  }
}
.archive-map__btn-item.-butsuryuu {
  top: 31rem;
  left: 16rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-butsuryuu {
    top: clamp(12.6rem, -6.6864rem + 51.43vw, 21.6rem);
    left: clamp(4rem, -2.4288rem + 17.14vw, 7rem);
  }
}
.archive-map__btn-item.-sonota {
  top: 31rem;
  left: 72rem;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item.-sonota {
    top: clamp(27.4rem, -7.1rem + 92vw, 43.5rem);
    left: clamp(28.5rem, -2.5712rem + 82.86vw, 43rem);
  }
}
/*-------------------------------
ホバー画像
-------------------------------*/
.archive-map__btn-item a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

@media screen and (max-width: 767px) {
  .archive-map__btn-item a::after {
    display: none;
  }
}
.archive-map__btn-item a:hover::after {
  opacity: 1;
}

.archive-map__btn-item.-byouin a::after {
  background-image: url(../images/archive/map-byouin-hover.webp);
}

.archive-map__btn-item.-kigyou a::after {
  background-image: url(../images/archive/map-kigyou-hover.webp);
}

.archive-map__btn-item.-gakkou a::after {
  background-image: url(../images/archive/map-gakkou-hover.webp);
}

.archive-map__btn-item.-syougyou a::after {
  background-image: url(../images/archive/map-syougyou-hover.webp);
}

.archive-map__btn-item.-koutsuu a::after {
  background-image: url(../images/archive/map-koutsuu-hover.webp);
}

.archive-map__btn-item.-apartment a::after {
  background-image: url(../images/archive/map-hotel-hover.webp);
}

.archive-map__btn-item.-kankoutyou a::after {
  background-image: url(../images/archive/map-kankoutyou-hover.webp);
}

.archive-map__btn-item.-rode a::after {
  background-image: url(../images/archive/map-rode-hover.webp);
}

.archive-map__btn-item.-butsuryuu a::after {
  background-image: url(../images/archive/map-butsuryuu-hover.webp);
}

.archive-map__btn-item.-sonota a::after {
  background-image: url(../images/archive/map-sonota-hover.webp);
}

/*-------------------------------
detail-header
-------------------------------*/
.detail-header {
  margin-top: 5.6rem;
  padding-bottom: 11.3rem;
}

@media screen and (max-width: 767px) {
  .detail-header {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
}
.detail-header__inner.inner {
  max-width: 90rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .detail-header__inner.inner {
    max-width: 50rem;
    padding: 0 1.75rem;
  }
}
.detail-header__mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 900/470;
}

.detail-header__title {
  margin-top: 3rem;
  padding: 0.5rem 2rem;
  font-size: 2.4rem;
  line-height: 1.2083333333;
  font-weight: 700;
  background-color: #fff8f8;
  border-left: 0.8rem solid #e8340d;
  border-bottom: 1px solid #e8340d;
}

@media screen and (max-width: 767px) {
  .detail-header__title {
    margin-top: 1.6rem;
    padding: 0.5rem 1.2rem;
    font-size: 2rem;
    line-height: 1.45;
  }
}
.detail-header__wrap {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
}

@media screen and (max-width: 767px) {
  .detail-header__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.detail-header__left {
  margin-top: 2.1rem;
  width: 49.7777777778%;
}

@media screen and (max-width: 767px) {
  .detail-header__left {
    margin-top: 0;
    width: 100%;
  }
}
.detail-header__lead {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .detail-header__lead {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.detail-header__list {
  margin-top: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.4375;
}

.detail-header__list dt, .detail-header__list dd {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #BBBBBB;
}

.detail-header__list dt {
  width: 22.7678571429%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .detail-header__list dt {
    width: 30%;
  }
}
.detail-header__list dt::before {
  content: ":";
  width: 0.6rem;
  position: absolute;
  top: 0;
  right: 1.6rem;
  font-weight: 700;
}

.detail-header__list dd {
  width: 77.2321428571%;
}

@media screen and (max-width: 767px) {
  .detail-header__list dd {
    width: 70%;
  }
}
.detail-header__list dt:not(:first-of-type), .detail-header__list dd:not(:first-of-type) {
  margin-top: 0.3rem;
}

.detail-header__right {
  width: 46.6666666667%;
  height: 22rem;
}

@media screen and (max-width: 767px) {
  .detail-header__right {
    width: 100%;
    height: auto;
  }
}
.detail-header__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 420/220;
}

.detail-header__text {
  margin-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .detail-header__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.detail-header__btns {
  margin: 0 auto;
  margin-top: 6.1rem;
  max-width: 68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}

@media screen and (max-width: 767px) {
  .detail-header__btns {
    margin-top: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
  }
}
.detail-header__btn {
  margin: 0 auto;
  width: 100%;
  max-width: 30rem;
}

@media screen and (max-width: 767px) {
  .detail-header__btn {
    max-width: 22rem;
  }
}
.detail-header__btn a {
  padding: 1.6rem 0;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #f65a37;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  border-radius: 4rem;
}

@media screen and (max-width: 767px) {
  .detail-header__btn a {
    padding: 0.8rem 0;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.detail-header__btn a::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-image: url(../images/common/circle-arrow__red.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

/*-------------------------------
faq-kanyuu
-------------------------------*/
.faq-kanyuu {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffe5df;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.faq-kanyuu__inner.inner {
  max-width: 100rem;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__inner.inner {
    max-width: 50rem;
  }
}
.faq-kanyuu__list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__list {
    gap: 1.6rem;
  }
}
.faq-kanyuu__item-question {
  font-size: 2rem;
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__item-question {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.faq-kanyuu__item-answer {
  font-size: 1.8rem;
  line-height: 1.4444444444;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__item-answer {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.faq-kanyuu__item-question {
  padding: 2rem 16% 2rem 4rem;
  background-color: #f65a37;
  font-weight: 700;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__item-question {
    padding: 1rem 3.8rem 1rem 1rem;
  }
}
.faq-kanyuu__item-question::before, .faq-kanyuu__item-question::after {
  content: "";
  width: 2rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  right: 4.4rem;
  z-index: 50;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__item-question::before, .faq-kanyuu__item-question::after {
    right: 1rem;
    width: 1.6rem;
  }
}
.faq-kanyuu__item-question::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq-kanyuu__item-question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.faq-kanyuu__item-question.is-open::after {
  -webkit-transform: translateY(-50%) rotate(360deg);
          transform: translateY(-50%) rotate(360deg);
}

.faq-kanyuu__item-answer {
  padding: 3rem 2.8rem 3rem 4rem;
  background-color: #fff;
  font-weight: 400;
  display: none;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__item-answer {
    padding: 1rem;
  }
}
.faq-kanyuu__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__item-wrap {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .faq-kanyuu__item-answer .faq-kanyuu__item-wrap {
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
  }
}
.faq-kanyuu__item-question-img, .faq-kanyuu__item-answer-img {
  width: 3rem;
  min-width: 3rem;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__item-question-img, .faq-kanyuu__item-answer-img {
    width: 2.1rem;
    min-width: 2.1rem;
  }
}
.faq-kanyuu__item-question-img img, .faq-kanyuu__item-answer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 30/38;
}

@media screen and (max-width: 767px) {
  .faq-kanyuu__item-question-img img, .faq-kanyuu__item-answer-img img {
    aspect-ratio: 21/24;
  }
}
/*-------------------------------
加入ページセッティング
-------------------------------*/
.kanyuu .faq-kanyuu {
  margin-top: 8.6rem;
  padding-top: 0.01rem;
  padding-bottom: 8rem;
  background-color: #ffe5df;
  position: relative;
}

@media screen and (max-width: 767px) {
  .kanyuu .faq-kanyuu {
    margin-top: 0;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.kanyuu .faq-kanyuu::before {
  content: "";
  width: 54.3rem;
  height: 33.2rem;
  position: absolute;
  top: 1.25rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/kanyuu/ellipse-red.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .kanyuu .faq-kanyuu::before {
    display: none;
  }
}
.kanyuu .faq-kanyuu__inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .kanyuu .faq-kanyuu__inner {
    max-width: 50rem;
    padding: 0 27px;
  }
}
.kanyuu .faq-kanyuu__title-wrap {
  position: absolute;
  top: -3.6rem;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

@media screen and (max-width: 767px) {
  .kanyuu .faq-kanyuu__title-wrap {
    position: static;
    -webkit-transform: initial;
            transform: initial;
  }
}
/*-------------------------------
faq-tenpo
-------------------------------*/
.faq-tenpo {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffeecf;
}

@media screen and (max-width: 767px) {
  .faq-tenpo {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.faq-tenpo__inner.inner {
  max-width: 100rem;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__inner.inner {
    max-width: 50rem;
  }
}
.faq-tenpo__list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__list {
    gap: 1.8rem;
  }
}
.faq-tenpo__item-question, .faq-tenpo__item-answer {
  font-size: 2rem;
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__item-question, .faq-tenpo__item-answer {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.faq-tenpo__item-question {
  padding: 2rem 16% 2rem 4rem;
  background-color: #f5a100;
  font-weight: 700;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__item-question {
    padding: 1rem 3.8rem 1rem 1rem;
  }
}
.faq-tenpo__item-question::before, .faq-tenpo__item-question::after {
  content: "";
  width: 2rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  right: 4.4rem;
  z-index: 50;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__item-question::before, .faq-tenpo__item-question::after {
    right: 1rem;
    width: 1.6rem;
  }
}
.faq-tenpo__item-question::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq-tenpo__item-question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.faq-tenpo__item-question.is-open::after {
  -webkit-transform: translateY(-50%) rotate(360deg);
          transform: translateY(-50%) rotate(360deg);
}

.faq-tenpo__item-answer {
  padding: 2rem 2.8rem 2rem 4rem;
  background-color: #fff;
  font-weight: 400;
  display: none;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__item-answer {
    padding: 1rem;
  }
}
.faq-tenpo__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__item-wrap {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .faq-tenpo__item-answer .faq-tenpo__item-wrap {
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
  }
}
.faq-tenpo__item-question-img, .faq-tenpo__item-answer-img {
  width: 3.3rem;
  min-width: 3.3rem;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__item-question-img, .faq-tenpo__item-answer-img {
    width: 2.1rem;
    min-width: 2.1rem;
  }
}
.faq-tenpo__item-question-img img, .faq-tenpo__item-answer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 43/46;
}

@media screen and (max-width: 767px) {
  .faq-tenpo__item-question-img img, .faq-tenpo__item-answer-img img {
    aspect-ratio: 21/24;
  }
}
/*-------------------------------
店舗導入ページセッティング
-------------------------------*/
.tenpo .faq-tenpo {
  margin-top: 11.8rem;
  padding-top: 0.01rem;
  padding-bottom: 12rem;
  background-color: #fffaef;
  position: relative;
}

@media screen and (max-width: 767px) {
  .tenpo .faq-tenpo {
    margin-top: 0;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.tenpo .faq-tenpo::before {
  content: "";
  width: 54.3rem;
  height: 33.2rem;
  position: absolute;
  top: 1.25rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/tenpo/ellipse-yellow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .tenpo .faq-tenpo::before {
    display: none;
  }
}
.tenpo .faq-tenpo__inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .tenpo .faq-tenpo__inner {
    max-width: 50rem;
    padding: 0 27px;
  }
}
.tenpo .faq-tenpo__title-wrap {
  position: absolute;
  top: -4.9rem;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

@media screen and (max-width: 767px) {
  .tenpo .faq-tenpo__title-wrap {
    position: static;
    -webkit-transform: initial;
            transform: initial;
  }
}
/*-------------------------------
faq-two-btn
-------------------------------*/
.faq-two-btn {
  margin-top: 5.6rem;
  padding-bottom: 9.1rem;
}

@media screen and (max-width: 767px) {
  .faq-two-btn {
    margin-top: 3.1rem;
    padding-bottom: 4.5rem;
  }
}
/*-------------------------------
flow-kanyuu
-------------------------------*/
.flow-kanyuu {
  padding: 10rem 0;
  background-color: #FFEAE5;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu {
    padding: 6rem 0;
  }
}
.flow-kanyuu__inner.inner {
  max-width: 104.1rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__inner.inner {
    max-width: 50rem;
    padding: 0 28px;
  }
}
.flow-kanyuu__list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.6rem;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__list {
    margin-top: 5.6rem;
    gap: 3.8rem;
  }
}
.flow-kanyuu__item {
  padding: 2.7rem 5.8rem 2.7rem 4.8rem;
  background-color: #fff4f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  border-radius: 10rem;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item {
    padding: 2.4rem 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4rem;
    border-radius: 0.8rem;
  }
}
.flow-kanyuu__item:not(:last-of-type):after {
  content: "";
  width: 0.2rem;
  height: 3.6rem;
  position: absolute;
  bottom: 0;
  left: 9.5%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background-color: #f65a37;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item:not(:last-of-type):after {
    height: 3.8rem;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}
.flow-kanyuu__item-left {
  padding: 0 0.7rem;
  width: 9.9rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-left {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.7rem;
  }
}
.flow-kanyuu__item-left-step {
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  color: #f65a37;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-left-step {
    padding: 0.2rem 0;
    width: 9.2rem;
    font-size: 1.6rem;
    line-height: 1.4375;
    color: #fff;
    background-color: #f65a37;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .flow-kanyuu__item-left-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.7rem;
  }
}
.flow-kanyuu__item-left-img {
  margin-top: 0.5rem;
  width: 8.5rem;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-left-img {
    margin-top: 0;
    padding: 0 0.9rem;
    min-width: 9.2rem;
  }
}
.flow-kanyuu__item-left-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 85/85;
}

.flow-kanyuu__item-left-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-left-sp {
    padding: 0.5rem 0;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.flow-kanyuu__item-right {
  width: 100%;
}

.flow-kanyuu__item-right-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-right-top {
    display: none;
  }
}
.flow-kanyuu__item-top-wrap {
  width: 100%;
}

.flow-kanyuu__item-top-wrap.pc-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-top-wrap.pc-view {
    display: none;
  }
}
.flow-kanyuu__item-top-wrap.sp-view {
  display: none;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-top-wrap.sp-view {
    width: 62.2837370242%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.flow-kanyuu__item-title {
  font-size: 2.4rem;
  line-height: 1.2083333333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.flow-kanyuu__item-period {
  padding: 0.2rem 0.5rem;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
  background-color: #f65a37;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-period {
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    color: #f65a37;
    background-color: transparent;
    text-align: right;
  }
}
.flow-kanyuu__item-right-bottom {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .flow-kanyuu__item-right-bottom {
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.flow-kanyuu__item-right-bottom a {
  color: #e56346;
  text-decoration: underline;
}

/*-------------------------------
加入・運営ページ設定
-------------------------------*/
.kanyuu .flow-kanyuu {
  background-color: #fff;
}

/*-------------------------------
flow-support
-------------------------------*/
.flow-support {
  padding: 10rem 0;
  background-color: #fff8f8;
}

@media screen and (max-width: 767px) {
  .flow-support {
    padding: 6rem 0;
  }
}
.flow-support__inner.inner {
  max-width: 100rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .flow-support__inner.inner {
    max-width: 50rem;
  }
}
.flow-support__text {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .flow-support__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    font-weight: 400;
    text-align: left;
  }
}
.flow-support__img {
  margin: 0 auto;
  margin-top: 4rem;
  max-width: 100rem;
}

@media screen and (max-width: 767px) {
  .flow-support__img {
    margin-top: 2.4rem;
  }
}
.flow-support__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1000/665;
}

@media screen and (max-width: 767px) {
  .flow-support__img img {
    aspect-ratio: 375/353;
  }
}
/*-------------------------------
flow-tenpo
-------------------------------*/
.flow-tenpo {
  padding: 10rem 0 7.3rem;
  background-color: #ffeecf;
}

@media screen and (max-width: 767px) {
  .flow-tenpo {
    padding: 6rem 0;
  }
}
.flow-tenpo__inner.inner {
  max-width: 104.1rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__inner.inner {
    max-width: 50rem;
    padding: 0 28px;
  }
}
.flow-tenpo__list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.6rem;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__list {
    margin-top: 5.6rem;
  }
}
.flow-tenpo__item {
  padding: 2.4rem 5.8rem 2.4rem 4.8rem;
  background-color: #fffaf0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  border-radius: 12rem;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item {
    padding: 2.4rem 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4rem;
    border-radius: 0.8rem;
  }
}
.flow-tenpo__item:not(:last-of-type):after {
  content: "";
  width: 0.2rem;
  height: 3.6rem;
  position: absolute;
  bottom: 0;
  left: 9.5%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background-color: #f5a100;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item:not(:last-of-type):after {
    height: 3.8rem;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}
.flow-tenpo__item-left {
  padding: 0 0.7rem;
  width: 9.9rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-left {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.7rem;
  }
}
.flow-tenpo__item-left-step {
  font-size: 2rem;
  line-height: 1.45;
  text-align: center;
  color: #f5a100;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-left-step {
    padding: 0.2rem 0;
    width: 9.2rem;
    font-size: 1.6rem;
    line-height: 1.4375;
    color: #fff;
    background-color: #f5a100;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .flow-tenpo__item-left-wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.7rem;
  }
}
.flow-tenpo__item-left-img {
  margin-top: 0.5rem;
  width: 8.5rem;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-left-img {
    margin-top: 0;
    padding: 0 0.9rem;
    min-width: 9.2rem;
  }
}
.flow-tenpo__item-left-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 85/85;
}

.flow-tenpo__item-left-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-left-sp {
    padding: 0.5rem 0;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.flow-tenpo__item-right {
  width: 100%;
}

.flow-tenpo__item-right-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-right-top {
    display: none;
  }
}
.flow-tenpo__item-top-wrap {
  width: 100%;
}

.flow-tenpo__item-top-wrap.pc-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-top-wrap.pc-view {
    display: none;
  }
}
.flow-tenpo__item-top-wrap.sp-view {
  display: none;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-top-wrap.sp-view {
    width: 62.2837370242%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.flow-tenpo__item-title {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.flow-tenpo__item-period {
  padding: 0.2rem 0.5rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
  background-color: #f5a100;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-period {
    margin-left: auto;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    color: #f5a100;
    background-color: transparent;
  }
}
.flow-tenpo__item-right-bottom {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .flow-tenpo__item-right-bottom {
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.flow-tenpo__item-right-bottom a {
  color: #e56346;
  text-decoration: underline;
}

/*-------------------------------
店舗導入ページセッティング
-------------------------------*/
.tenpo .flow-tenpo {
  background-color: #fff;
}

/*-------------------------------
flow-two-btn
-------------------------------*/
.flow-two-btn {
  margin-top: 8.5rem;
}

@media screen and (max-width: 767px) {
  .flow-two-btn {
    margin-top: 5.2rem;
  }
}
.flow-two-btn2 {
  margin-top: 8.6rem;
  padding-bottom: 15.3rem;
}

@media screen and (max-width: 767px) {
  .flow-two-btn2 {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
}
.flow-two-btn__btns, .flow-two-btn2__btns {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .flow-two-btn__btns, .flow-two-btn2__btns {
    margin-top: 3.6rem;
  }
}
.flow-two-btn .two-btn__item a, .flow-two-btn2 .two-btn__item a {
  padding: 3.4rem 3.4rem 3.4rem 0;
}

@media screen and (max-width: 767px) {
  .flow-two-btn .two-btn__item a, .flow-two-btn2 .two-btn__item a {
    padding: 2.8rem 1.2rem 2.8rem 0;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.flow-two-btn .two-btn__item a::after, .flow-two-btn2 .two-btn__item a::after {
  right: 2rem;
}

@media screen and (max-width: 767px) {
  .flow-two-btn .two-btn__item a::after, .flow-two-btn2 .two-btn__item a::after {
    right: 1.6rem;
  }
}
/*-------------------------------
kanyuu-omoi
-------------------------------*/
.kanyuu-omoi {
  margin-top: 2.8rem;
  padding-bottom: 10.3rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi {
    margin-top: 5.8rem;
    padding-bottom: 5rem;
  }
}
.kanyuu-omoi__inner.inner {
  max-width: 1277px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/*-------------------------------
kanyuu-omoi__question
-------------------------------*/
.kanyuu-omoi__question {
  margin: 0 auto;
  margin-top: 4rem;
  padding: 5rem 0;
  max-width: 120rem;
  background-color: #ffe5df;
  border-radius: 1.6rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__question {
    margin-top: 2rem;
    padding: 4rem 1.2rem 19.2rem;
    border-radius: 0;
  }
}
.kanyuu-omoi__question::after {
  content: "";
  width: 34rem;
  height: 21.9rem;
  position: absolute;
  bottom: 0;
  left: 60%;
  background-image: url(../images/tenpo/tenpo-silhouette.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__question::after {
    width: 22.7rem;
    height: 14.6rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.kanyuu-omoi__question-list {
  margin-left: 11.375%;
  padding: 3.2rem 4.2rem;
  width: 88.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  background-color: #fff;
  border-radius: 0.4rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__question-list {
    margin-left: 0;
    padding: 1.6rem;
    width: initial;
    gap: 1.6rem;
    border-radius: 0;
  }
}
.kanyuu-omoi__question-item {
  font-size: 1.8rem;
  line-height: 1.2222222222;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__question-item {
    font-size: 1.6rem;
    line-height: 1.4375;
    gap: 1rem;
  }
}
.kanyuu-omoi__question-item::before {
  content: "";
  width: 1.8rem;
  min-width: 1.8rem;
  height: 1.8rem;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kanyuu-omoi__question-item:nth-child(1)::before {
  background-image: url(../images/common/circle-number01.webp);
}

.kanyuu-omoi__question-item:nth-child(2)::before {
  background-image: url(../images/common/circle-number02.webp);
}

.kanyuu-omoi__question-item:nth-child(3)::before {
  background-image: url(../images/common/circle-number03.webp);
}

.kanyuu-omoi__question-item:nth-child(4)::before {
  background-image: url(../images/common/circle-number04.webp);
}

/*-------------------------------
kanyuu-omoi__bottom-arrow
-------------------------------*/
.kanyuu-omoi__bottom-inner {
  max-width: 1277px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__bottom-inner {
    padding: 0 10px;
  }
}
.kanyuu-omoi__bottom-arrow {
  margin: 0 auto;
  margin-top: 2.8rem;
  width: 2rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__bottom-arrow {
    margin-top: 1.8rem;
  }
}
.kanyuu-omoi__bottom-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 20/64;
}

/*-------------------------------
kanyuu-omoi__support
-------------------------------*/
.kanyuu-omoi__support {
  margin-top: 6.3rem;
  padding: 5.9rem 3.6rem 4.1rem;
  border: 1px solid #e8340d;
  border-radius: 2.4rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__support {
    padding: 5.9rem 1.3rem 3rem;
    border-radius: 1.6rem;
  }
}
.kanyuu-omoi__support-title {
  margin: 0 auto;
  margin-top: -10.4rem;
  padding: 1.3rem 3.7rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  background-color: #f65a37;
  font-size: 3.2rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-radius: 5rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__support-title {
    margin: -10.4rem auto 0;
    padding: 0.8rem 3.9rem;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    font-size: 2rem;
    line-height: 1.45;
  }
}
.kanyuu-omoi__support-list {
  margin-top: 3.2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2.4rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__support-list {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 7rem 4px;
    overflow-x: scroll;
  }
}
.kanyuu-omoi__support-item {
  padding: 2.4rem 2rem 3.6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  border: 1px solid #f65a37;
  border-radius: 0.8rem;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__support-item {
    padding: 2.4rem;
    width: 23.5rem;
  }
}
.kanyuu-omoi__support-item.is-active {
  background-color: #ffe5df;
}

.kanyuu-omoi__support-number {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: #f65a37;
  text-align: center;
  display: block;
}

.kanyuu-omoi__support-img {
  margin: 0 auto;
  margin-top: 0.4rem;
  width: 13.9rem;
}

.kanyuu-omoi__support-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 139/101;
}

.kanyuu-omoi__support-text {
  margin-top: 0.4rem;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__support-text {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }
}
.kanyuu .kanyuu-omoi__support-btn {
  margin: 0 auto;
  margin-top: 1.7rem;
}

@media screen and (max-width: 767px) {
  .kanyuu .kanyuu-omoi__support-btn {
    padding: 0.8rem 3.4rem;
    border-radius: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .kanyuu-omoi__support-btn.bg-color-btn div {
    padding: 0;
    gap: 1.6rem;
  }
}
.kanyuu-omoi__support-btn.bg-color-btn div::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__scroll-side {
    margin-left: auto;
  }
}
/*-------------------------------
kanyuu-omoi__answer
-------------------------------*/
.kanyuu-omoi__answer-list {
  margin-top: 4.8rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__answer-list {
    margin-top: 3.4rem;
  }
}
.kanyuu-omoi__answer-item {
  padding: 3.5rem 3.6rem 3rem;
  background-color: #ffe5df;
  border: 1px solid #f65a37;
  border-radius: 1.6rem;
  position: relative;
  display: none;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__answer-item {
    padding: 2rem 1.4rem 3rem;
  }
}
.kanyuu-omoi__answer-item.is-active {
  display: block;
}

.kanyuu-omoi__answer-item::before, .kanyuu-omoi__answer-item::after {
  content: "";
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 0;
}

.kanyuu-omoi__answer-item::before {
  border-bottom: 3.4rem solid #f65a37;
  bottom: 100%;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__answer-item::before {
    border-bottom: 2.5rem solid #f65a37;
  }
}
.kanyuu-omoi__answer-item::after {
  border-bottom: 3.4rem solid #ffe5df;
  bottom: calc(100% - 5px);
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__answer-item::after {
    border-bottom: 2.5rem solid #ffe5df;
    bottom: calc(100% - 3px);
  }
}
.kanyuu-omoi__answer-text {
  padding: 2.4rem;
  font-size: 2rem;
  line-height: 1.6;
  background-color: #fff;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__answer-text {
    padding: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.kanyuu-omoi__answer-text a {
  color: #e56346;
  text-decoration: underline;
}

/*-------------------------------
加入：想いタブ設定
-------------------------------*/
.kanyuu-omoi__img-list {
  margin: 0 auto;
  margin-top: 2.1rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__img-list {
    margin-top: 1.4rem;
  }
}
#omoi-tab1 .kanyuu-omoi__img-list, #omoi-tab2 .kanyuu-omoi__img-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 7.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 7.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  #omoi-tab1 .kanyuu-omoi__img-list, #omoi-tab2 .kanyuu-omoi__img-list {
    width: 29rem;
    grid-column-gap: 1rem;
  }
}
#omoi-tab3 .kanyuu-omoi__img-list {
  padding: 1.6rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  #omoi-tab3 .kanyuu-omoi__img-list {
    padding: 0.6rem;
  }
}
#omoi-tab4 .kanyuu-omoi__img-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 7.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 7.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  #omoi-tab4 .kanyuu-omoi__img-list {
    grid-column-gap: 1rem;
  }
}
.kanyuu-omoi__img-item {
  width: 32.8rem;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}

@media screen and (max-width: 767px) {
  #omoi-tab1 .kanyuu-omoi__img-item, #omoi-tab2 .kanyuu-omoi__img-item, #omoi-tab4 .kanyuu-omoi__img-item {
    width: 14rem;
  }
}
#omoi-tab3 .kanyuu-omoi__img-item {
  width: 72.3rem;
}

@media screen and (max-width: 767px) {
  #omoi-tab3 .kanyuu-omoi__img-item {
    width: 28.5rem;
  }
}
.kanyuu-omoi__img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 329/231;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__img-item img {
    aspect-ratio: 140/99;
  }
}
#omoi-tab3 .kanyuu-omoi__img-item img {
  aspect-ratio: 723/231;
}

@media screen and (max-width: 767px) {
  #omoi-tab3 .kanyuu-omoi__img-item img {
    aspect-ratio: 285/290;
  }
}
.kanyuu-omoi__img-caption {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

@media screen and (max-width: 767px) {
  .kanyuu-omoi__img-caption {
    font-size: 1.2rem;
    line-height: 1.1666666667;
  }
}
.kanyuu-omoi__img-caption b, .kanyuu-omoi__img-caption p {
  text-align: center;
}

.tenpo .kanyuu-omoi__img-caption b {
  color: #f5a100;
}

/*-------------------------------
kanyuu-owner
-------------------------------*/
.kanyuu-owner__bg {
  padding-top: 8rem;
  padding-bottom: 9.9rem;
  background-image: url(../images/kanyuu/kanyuu-owner-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__bg {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.kanyuu-owner__title-wrap {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__title-wrap {
    gap: 0.6rem;
  }
}
.kanyuu-owner__sub-title {
  max-width: 37.7rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__sub-title {
    padding: 0 5.3rem;
  }
}
.kanyuu-owner__sub-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 377/134;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__sub-title img {
    aspect-ratio: 268/78;
  }
}
.kanyuu-owner__title {
  padding: 0.4rem 2.5rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-size: 3.2rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #f65a37;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__title {
    padding: 0.4rem 1.5rem;
    font-size: 2rem;
    line-height: 1.45;
  }
}
/*-------------------------------
加入スライダー設定
-------------------------------*/
.kanyuu-owner__swiper {
  margin-top: 4rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__swiper {
    margin-top: 2.4rem;
  }
}
.kanyuu-owner__swiper-inner.inner {
  max-width: 127.2rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__swiper-inner.inner {
    padding: 0 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .kanyuu-swiper.swiper {
    padding: 0 8px;
    max-width: 42.3rem;
  }
}
.kanyuu-swiper__slide {
  max-width: 40.8rem;
  height: auto;
}

.kanyuu-swiper__slide a {
  padding: 2.4rem;
  height: 100%;
  background-color: #FFEDE9;
  border-radius: 0.8rem;
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 767px) {
  .kanyuu-swiper__slide a {
    padding: 2.4rem 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.kanyuu-swiper__slide a:hover {
  background-color: #ffe5df;
  opacity: 1;
}

.kanyuu-swiper__slide-img {
  width: 100%;
}

.kanyuu-swiper__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 360/240;
  border-radius: 0.8rem;
}

.kanyuu-swiper__slide-shop {
  margin-top: 1.6rem;
  padding: 0.4rem 1.4rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
  background-color: #f65a37;
}

@media screen and (max-width: 767px) {
  .kanyuu-swiper__slide-shop {
    margin: 0 auto;
    margin-top: 1rem;
    padding: 0 1rem;
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.kanyuu-swiper__slide-text {
  margin-top: 1.3rem;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .kanyuu-swiper__slide-text {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.swiper-pagination {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
}

.swiper-pagination-bullet-active {
  background: #f65a37;
}

.swiper-pagination-horizontal.swiper-pagination-bullets {
  bottom: -3rem;
}

@media screen and (max-width: 767px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets {
    bottom: -1.6rem;
  }
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 1.25rem;
}

@media screen and (max-width: 767px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.5rem;
  }
}
.kanyuu-owner-swiper__button-wrap {
  width: 100%;
  max-width: 134.4rem;
  height: 4.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner-swiper__button-wrap {
    max-width: 46rem;
  }
}
.kanyuu-owner-swiper__button-wrap .swiper-button-prev, .kanyuu-owner-swiper__button-wrap .swiper-button-next {
  width: 3.7rem;
  height: 3.7rem;
  position: absolute;
  top: 55%;
  background-image: url(../images/common/circle-arrow__red.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .kanyuu-owner-swiper__button-wrap .swiper-button-prev, .kanyuu-owner-swiper__button-wrap .swiper-button-next {
    width: 3.1rem;
    height: 3.1rem;
  }
}
.kanyuu-owner-swiper__button-wrap .swiper-button-prev {
  left: 1rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .kanyuu-owner-swiper__button-wrap .swiper-button-prev {
    left: 0.4rem;
  }
}
.kanyuu-owner-swiper__button-wrap .swiper-button-next {
  right: 1rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner-swiper__button-wrap .swiper-button-next {
    right: 0.4rem;
  }
}
.kanyuu-owner__btn {
  margin: 0 auto;
  margin-top: 9rem;
  width: 100%;
  max-width: 32.1rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__btn {
    margin-top: 6.8rem;
    max-width: 27.9rem;
  }
}
.kanyuu-owner__btn a {
  padding: 1.6rem 0;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #f65a37;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  border-radius: 2.8rem;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__btn a {
    padding: 0.8rem 0;
    gap: 1rem;
  }
}
.kanyuu-owner__btn a::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-image: url(../images/common/circle-arrow__orange.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .kanyuu-owner__btn a::after {
    width: 2.2rem;
    height: 2.2rem;
  }
}
/*-------------------------------
kanyuu 
-------------------------------*/
.kanyuu__bg-color {
  background-color: #fff4f1;
}

/*-------------------------------
mv
-------------------------------*/
.mv {
  margin-top: 8rem;
  position: relative;
  z-index: 1;
  height: 60rem;
  min-height: 40rem;
}

@media screen and (max-width: 767px) {
  .mv {
    margin-top: 6rem;
    height: 47rem;
  }
}
.mv__inner {
  height: inherit;
  min-height: inherit;
}

/*-------------------------------
swiper
-------------------------------*/
.mv__swiper, .mv__swiper .swiper-img, .mv__swiper .swiper-img picture, .mv__swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
}

.mv__swiper .swiper-slide {
  width: 100%;
  position: relative;
}

.mv__swiper .swiper-slide.-mv2::before, .mv__swiper .swiper-slide.-mv3::before, .mv__swiper .swiper-slide.-mv4::before, .mv__swiper .swiper-slide.-mv5::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: blur(2.5px);
          filter: blur(2.5px);
}

.mv__swiper .swiper-slide.-mv2::before {
  background-image: url(../images/mv/mv2_bg.webp);
}

.mv__swiper .swiper-slide.-mv3::before {
  background-image: url(../images/mv/mv3_bg.webp);
}

.mv__swiper .swiper-slide.-mv4::before {
  background-image: url(../images/mv/mv4_bg.webp);
}

.mv__swiper .swiper-slide.-mv5::before {
  background-image: url(../images/mv/mv5_bg.webp);
}

.mv__swiper .swiper-img {
  position: relative;
}

.mv__swiper .swiper-slide.-mv1 .swiper-img-wrap {
  width: 100%;
  max-width: 144rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mv__swiper .swiper-slide.-mv1 .swiper-img-wrap::after {
  content: "";
  width: 37.2rem;
  height: 12.2rem;
  position: absolute;
  bottom: 17.8rem;
  left: 12.1rem;
  background-image: url(../images/mv/mv-text.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .mv__swiper .swiper-slide.-mv1 .swiper-img-wrap::after {
    width: 18.1rem;
    height: 5.9rem;
    bottom: 12.1rem;
    left: 2rem;
    background-image: url(../images/mv/mv-text.webp);
  }
}
.mv__swiper .swiper-slide.-mv2 .swiper-img, .mv__swiper .swiper-slide.-mv3 .swiper-img, .mv__swiper .swiper-slide.-mv4 .swiper-img, .mv__swiper .swiper-slide.-mv5 .swiper-img {
  margin: 0 auto;
  max-width: 1440px;
}

.mv__swiper .swiper-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .mv__swiper .swiper-img img {
    aspect-ratio: 375/470;
  }
}
/*-------------------------------
scale animation
-------------------------------*/
.mv__swiper .swiper-slide.swiper-slide-active .swiper-img, .mv__swiper .swiper-slide.swiper-slide-duplicate-active .swiper-img, .mv__swiper .swiper-slide.swiper-slide-prev .swiper-img {
  -webkit-animation: scale 12s linear 0s normal both;
          animation: scale 12s linear 0s normal both;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*-------------------------------
bg-color-btn
-------------------------------*/
.bg-color-btn {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #fff;
  border-radius: 2rem;
}

@media screen and (max-width: 767px) {
  .bg-color-btn {
    border-radius: 1.6rem;
  }
}
.bg-color-btn a, .bg-color-btn div {
  padding: 0.8rem 3.4rem;
  border-radius: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

@media screen and (max-width: 767px) {
  .bg-color-btn a, .bg-color-btn div {
    padding: 0.4rem 1.6rem;
    border-radius: 1.6rem;
    gap: 1rem;
  }
}
.bg-color-btn a::after, .bg-color-btn div::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .bg-color-btn a::after, .bg-color-btn div::after {
    width: 1.8rem;
    height: 1.8rem;
  }
}
/*-------------------------------
色設定
-------------------------------*/
.bg-color-btn.-red, .bg-color-btn.-red a {
  background-color: #e8340d;
}

.bg-color-btn.-red a::after, .bg-color-btn.-red div::after {
  background-image: url(../images/common/circle-arrow__red.webp);
}

.bg-color-btn.-yellow {
  background-color: #f5a100;
}

.bg-color-btn.-yellow a::after, .bg-color-btn.-yellow div::after {
  background-image: url(../images/common/circle-arrow__yellow.webp);
}

/*-------------------------------
breadcrumbs
-------------------------------*/
.breadcrumbs {
  margin-top: 1.85rem;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-top: 0.8rem;
  }
}
.breadcrumbs__inner.inner {
  max-width: 120rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .breadcrumbs__inner.inner {
    padding: 0 10px;
    gap: 1rem;
  }
}
.breadcrumbs__inner {
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .breadcrumbs__inner {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.breadcrumbs a + a, .breadcrumbs span {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  gap: 1.6rem;
}

@media screen and (max-width: 767px) {
  .breadcrumbs a + a, .breadcrumbs span {
    gap: 1rem;
  }
}
.breadcrumbs a + a::before, .breadcrumbs span::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-right: 2px solid #2a0800;
  border-bottom: 2px solid #2a0800;
  -webkit-transform: translate(-30%, 55%) rotate(-45deg);
          transform: translate(-30%, 55%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .breadcrumbs a + a::before, .breadcrumbs span::before {
    width: 0.7rem;
    height: 0.7rem;
    border-right: 1px solid #2a0800;
    border-bottom: 1px solid #2a0800;
    position: relative;
    top: 0.3rem;
  }
}
/*-------------------------------
common-title
-------------------------------*/
.common-title__sub-title {
  margin: 0 auto;
  height: 2.6rem;
}

.common-title__sub-title img {
  margin: 0 auto;
  height: 100%;
}

.common-title__main-title {
  margin-top: 0.8rem;
  padding-bottom: 2rem;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.2rem;
  line-height: 1.4375;
  font-weight: 700;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .common-title__main-title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.common-title__main-title .fs-big {
  font-size: 3.6rem;
  line-height: 1.4444444444;
}

@media screen and (max-width: 767px) {
  .common-title__main-title .fs-big {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}
.common-title__main-title .fs-big.-pc {
  font-size: 3.6rem;
  line-height: 1.4444444444;
}

@media screen and (max-width: 767px) {
  .common-title__main-title .fs-big.-pc {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }
}
.common-title__main-title::after {
  content: "";
  width: 10.4rem;
  height: 0.4rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e8340d;
  border-radius: 0.2rem;
}

/*-------------------------------
content
-------------------------------*/
.contact {
  margin-top: 6rem;
  padding-bottom: 6rem;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 3.6rem;
  }
}
.top-contact.contact {
  margin-top: 12rem;
}

@media screen and (max-width: 767px) {
  .top-contact.contact {
    margin-top: 8rem;
  }
}
.contact__inner.inner {
  max-width: 103.2rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .contact__inner.inner {
    padding: 0 30px;
  }
}
.contact__title-wrap {
  padding-bottom: 4rem;
}

.contact__title-wrap p {
  margin-top: 4rem;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact__title-wrap p {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.contact__tel {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .contact__tel {
    pointer-events: auto;
    margin: 0 auto;
    max-width: 48rem;
  }
}
.contact__tel a {
  padding: 2.8rem 0;
  width: 100%;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 20;
  border-radius: 1.6rem;
  background-image: url(../images/common/tel-btn_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .contact__tel a {
    padding: 1.8rem 0;
    border-radius: 0.8rem;
  }
}
.contact__tel a::before {
  content: "";
  position: absolute;
}

.contact__tel a::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(232, 52, 13, 0.8);
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .contact__tel a::before {
    border-radius: 0.8rem;
  }
}
.contact__tel-title {
  font-size: 2rem;
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .contact__tel-title {
    font-size: 1.6rem;
    line-height: 1.125;
  }
}
.contact__tel-number {
  margin-top: 0.8rem;
  font-size: 4.8rem;
  line-height: 1.4583333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
}

@media screen and (max-width: 767px) {
  .contact__tel-number {
    margin-top: 0.3rem;
    font-size: 2.4rem;
    line-height: 1.25;
    gap: 0;
  }
}
.contact__tel-number::before {
  content: "";
  width: 4.7rem;
  height: 6.8rem;
  display: inline-block;
  background-image: url(../images/icon/tel-white.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .contact__tel-number::before {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.contact__tel span {
  margin-top: 0.2rem;
  font-size: 1.4rem;
  line-height: 1;
  display: block;
}

@media screen and (max-width: 767px) {
  .contact__tel span {
    margin-top: 0.5rem;
  }
}
/*-------------------------------
contact-btns
-------------------------------*/
.contact__btns {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .contact__btns {
    margin-top: 2.4rem;
  }
}
.contact-btns__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .contact-btns__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.4rem;
  }
}
.contact-btns__item {
  width: 100%;
  max-width: 48rem;
}

.contact-btns__item a {
  padding: 4.5rem 1.2rem 4.5rem 0;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 20;
  border-radius: 1.6rem;
  outline: 2px solid #fff;
  outline-offset: -0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .contact-btns__item a {
    padding: 2.8rem 0;
    font-size: 1.8rem;
    line-height: 1.3333333333;
    border-radius: 0.8rem;
  }
}
.contact-btns__item--tenpo a {
  background-image: url(../images/common/yellow-btn_bg.webp);
}

.contact-btns__item--kanyuu a {
  background-image: url(../images/common/orange-btn_bg.webp);
}

.contact-btns__item a::before, .contact-btns__item a::after {
  content: "";
  position: absolute;
}

.contact-btns__item a::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .contact-btns__item a::before {
    border-radius: 0.8rem;
  }
}
.contact-btns__item--tenpo a::before {
  background-color: rgba(245, 161, 0, 0.8);
}

.contact-btns__item--kanyuu a::before {
  background-color: rgba(229, 99, 70, 0.8);
}

.contact-btns__item a::after {
  width: 4.7rem;
  height: 4.7rem;
  top: 50%;
  right: 5.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .contact-btns__item a::after {
    width: 2.2rem;
    height: 2.2rem;
    right: 2.7rem;
  }
}
.contact-btns__item--tenpo a::after {
  background-image: url(../images/common/circle-arrow__yellow.webp);
}

.contact-btns__item--kanyuu a::after {
  background-image: url(../images/common/circle-arrow__orange.webp);
}

/*-------------------------------
footer
-------------------------------*/
.footer__bg {
  padding: 6rem 0;
  background-color: #ffe8e8;
}

.footer__logo a {
  margin: 0 auto;
  width: 23.5rem;
  display: block;
}

@media screen and (max-width: 767px) {
  .footer__logo a {
    width: 19.2rem;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 235/103;
}

.footer__sub-title {
  margin-top: 1.1rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #e8340d;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer__sub-title {
    margin-top: 0.9rem;
  }
}
.footer__nav {
  margin-top: 4rem;
}

.footer__nav-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer__nav-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__nav-list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}

@media screen and (max-width: 767px) {
  .footer__nav-list1 {
    margin: 0 auto;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content 2.3rem -webkit-max-content;
    -ms-grid-columns: max-content 2.3rem max-content;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    -ms-grid-rows: 1fr 1.6rem 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 2.3rem;
    grid-row-gap: 1.6rem;
  }
  .footer__nav-list1 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__nav-list1 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .footer__nav-list1 > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .footer__nav-list1 > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
.footer__nav-list2 {
  margin-left: 1.6rem;
}

@media screen and (max-width: 767px) {
  .footer__nav-list2 {
    margin-top: 1.6rem;
    margin-left: 0;
  }
}
.footer__nav-item, .footer__nav-item2 {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .footer__nav-item, .footer__nav-item2 {
    font-size: 1.5rem;
    line-height: 1.4666666667;
    font-weight: 500;
  }
}
.footer__nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}

.footer__nav-list .footer__nav-item, .footer__nav-list2 .footer__nav-item {
  margin: 0 auto;
}

.footer__nav-item a::before {
  content: "";
  width: 0.9rem;
  height: 1rem;
  display: block;
  background-image: url(../images/common/triangle-red.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__nav-list3 {
  margin-top: 2.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.6rem;
}

.footer__nav-item2 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}

.footer__nav-item2 a::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  background-image: url(../images/icon/blank-icon.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*-------------------------------
footer__copyright
-------------------------------*/
.footer .footer__copyright small {
  padding: 0.5rem 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
  background-color: #e8340d;
}

@media screen and (max-width: 767px) {
  .footer .footer__copyright small {
    padding: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.1666666667;
  }
}
/*-------------------------------
header
-------------------------------*/
.header {
  height: 8rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .header {
    height: 6rem;
  }
}
.header__inner {
  margin: 0 auto;
  padding-left: 5rem;
  max-width: 144rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 1rem;
  }
}
.header__logo {
  max-width: 14.9rem;
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 12.7rem;
  }
}
.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*-------------------------------
header__nav
-------------------------------*/
.header__nav {
  height: inherit;
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}
.header__nav-item .header__nav-list__point__child span {
  border: none;
}

.header__nav-item a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #2a0800;
}

.header__nav-item a span {
  padding: 0.8rem 1.3rem;
  border-left: 1px solid #4e4e4e;
}

.header__nav-item:nth-last-child(3) a span {
  border-right: 1px solid #4e4e4e;
}

.header__nav-item--tel {
  margin: 0 0.9rem 0 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__tel-top {
  padding-left: 2.3rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 700;
  color: #e8340d;
  position: relative;
}

.header__tel-top::before {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon/tel-red.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.header__tel-bottom {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item.header__nav-item--contact a {
  padding: 0 1.6rem;
  position: relative;
  height: inherit;
  color: #fff;
  background-color: #e8340d;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  margin-right: 1.2rem;
  width: 2rem;
  height: 1.6rem;
  display: inline-block;
  background-image: url(../images/icon/mail-white.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__nav-list__point {
  display: none;
}
@media (max-width: 580px) {
  .header__nav-list__point {
    display: block !important;
  }
}

ul.header__nav-list__point {
  position: absolute;
  background: #FFF;
  padding: 1rem;
}

/*-------------------------------
.header__hamburger
-------------------------------*/
.header__hamburger {
  margin: 0;
  padding: 0;
  width: 6rem;
  height: inherit;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  background-color: #e8340d;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}

@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  width: 3rem;
  height: 2px;
  border-radius: 2px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.7rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.7rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.2rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.2rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

/*-------------------------------
.header__drawer
-------------------------------*/
.header__drawer {
  padding: 10.8rem 1.7rem 4.2rem 2.3rem;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.header__drawer.is-open {
  right: 0;
}

@media screen and (max-width: 767px) {
  .header__drawer::-webkit-scrollbar {
    display: none;
  }
}
.header__drawer-list {
  border-top: 1px solid #e8340d;
}

.header__drawer-item {
  position: relative;
  border-bottom: 1px solid #e8340d;
}

.header__drawer-item::before {
  content: "";
  width: 0.9rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 0.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
  background-image: url(../images/common/triangle-red.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.header__drawer-item:first-of-type::before {
  top: 15.5%;
}

.header__drawer-item a {
  padding: 2.4rem 0 2.4rem 1.7rem;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.header__drawer-contact-list {
  margin-top: 4.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__drawer-contact-item, .header__drawer-contact-item--tel {
  width: 100%;
  max-width: 31.5rem;
}

.header__drawer-contact-item a, .header__drawer-contact-item--tel a {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  border-radius: 3.2rem;
}

.header__drawer-contact-item--tel a {
  padding: 1.2rem 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.header__drawer-contact-item--tel a::after {
  content: "お電話でのお問い合わせ";
  width: 19.5rem;
  height: 2.4rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
  color: #e8340d;
  background-color: #fff;
  border: 1px solid #e8340d;
  border-radius: 1.2rem;
}

.header__drawer-contact-item--tel a span {
  font-size: 2.4rem;
  line-height: 1.4583333333;
}

.header__drawer-contact-item a {
  padding: 0.6rem 0.7rem 0.6rem 0;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 700;
  color: #fff;
}

.header__drawer-contact-item a::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header__drawer-contact-item a::before, .header__drawer-contact-item--tel a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 3.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header__drawer-contact-item--tel a {
  background-color: rgba(232, 52, 13, 0.8);
}

.header__drawer-contact-item--tenpo a {
  background-color: rgba(245, 161, 0, 0.8);
}

.header__drawer-contact-item--kanyuu a {
  background-color: rgba(229, 99, 70, 0.8);
}

.header__drawer-contact-item--tel a::before {
  background-image: url(../images/common/red-btn_bg.webp);
}

.header__drawer-contact-item--tenpo a::before {
  background-image: url(../images/common/yellow-btn_bg.webp);
}

.header__drawer-contact-item--kanyuu a::before {
  background-image: url(../images/common/orange-btn_bg.webp);
}

.header__drawer-contact-item--tenpo a::after {
  background-image: url(../images/common/circle-arrow__yellow.webp);
}

.header__drawer-contact-item--kanyuu a::after {
  background-image: url(../images/common/circle-arrow__orange.webp);
}

.header__drawer-item__point {
  margin-left: 3rem;
}
.header__drawer-item__point__child a {
  padding: 0rem 0 2rem;
  font-weight: 500;
}

/*-------------------------------
KV共通部分
-------------------------------*/
.KV {
  padding-top: 11.4rem;
}

@media screen and (max-width: 767px) {
  .KV {
    padding-top: 7.3rem;
  }
}
.KV__inner.inner {
  margin: 0 auto;
  width: 100%;
  max-width: 120rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .KV__inner.inner {
    padding: 0 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.KV__wrap {
  height: 18.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 20;
  outline: 2px solid #fff;
  outline-offset: -2.1rem;
  border-radius: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .KV__wrap {
    padding: 1.8rem 0;
    height: 9.7rem;
    outline-offset: -0.4rem;
  }
}
.KV__wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0.8rem;
}

.KV__title {
  font-size: 3.2rem;
  line-height: 1.4375;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .KV__title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
/*-------------------------------
各画像設定
-------------------------------*/
.tenpo .KV__wrap {
  color: #fff;
  background-image: url(../images/KV/tenpo-KV.webp);
}

@media screen and (max-width: 767px) {
  .tenpo .KV__wrap {
    background-image: url(../images/KV/tenpo-KV_sp.webp);
  }
}
.kanyuu .KV__wrap {
  color: #fff;
  background-image: url(../images/KV/kanyuu-KV.webp);
}

@media screen and (max-width: 767px) {
  .kanyuu .KV__wrap {
    background-image: url(../images/KV/kanyuu-KV_sp.webp);
  }
}
.archive .KV__wrap, .detail .KV__wrap {
  color: #e8340d;
  background-image: url(../images/KV/archive-KV.webp);
}

@media screen and (max-width: 767px) {
  .archive .KV__wrap, .detail .KV__wrap {
    background-image: url(../images/KV/archive-KV_sp.webp);
  }
}
.faq .KV__wrap {
  color: #e8340d;
  background-image: url(../images/KV/faq-KV.webp);
}

@media screen and (max-width: 767px) {
  .faq .KV__wrap {
    background-image: url(../images/KV/faq-KV_sp.webp);
  }
}
.flow .KV__wrap {
  color: #e8340d;
  background-image: url(../images/KV/flow-KV.webp);
}

@media screen and (max-width: 767px) {
  .flow .KV__wrap {
    background-image: url(../images/KV/flow-KV_sp.webp);
  }
}
.point .KV__wrap {
  color: #e8340d;
  background-image: url(../images/KV/point-KV.webp);
}

@media screen and (max-width: 767px) {
  .point .KV__wrap {
    background-image: url(../images/KV/point-KV_sp.webp);
  }
}
/*-------------------------------
各色設定
-------------------------------*/
.tenpo .KV__wrap::before {
  background-color: rgba(245, 161, 0, 0.8);
}

.kanyuu .KV__wrap::before {
  background-color: rgba(246, 90, 55, 0.8);
}

.archive .KV__wrap::before, .detail .KV__wrap::before, .faq .KV__wrap::before, .flow .KV__wrap::before, .point .KV__wrap::before {
  background-color: rgba(255, 255, 255, 0.7);
}

.scroll-side::after {
  content: "";
  position: absolute;
  bottom: 45%;
  right: 0;
  width: 7rem;
  height: 2px;
  background: #2a0800;
  -webkit-animation: scroll-side 2s infinite;
          animation: scroll-side 2s infinite;
}

@-webkit-keyframes scroll-side {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}

@keyframes scroll-side {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}
/*-------------------------------
top-return-btn
-------------------------------*/
.top-return-btn {
  padding: 0;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
  display: block;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  position: fixed;
  bottom: 6.2rem;
  right: 3.2rem;
  z-index: 300;
}

@media screen and (max-width: 767px) {
  .top-return-btn {
    width: 6rem;
    height: 6rem;
    bottom: 3rem;
    right: 2.5rem;
  }
}
.top-return-btn::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: -3.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-90deg);
          transform: translateX(-50%) rotate(-90deg);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  background-image: url(../images/common/circle-arrow__red2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-return-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

/*-------------------------------
two-btn
-------------------------------*/
.two-btn {
  position: relative;
  z-index: 50;
}

.two-btn__inner.inner {
  padding: 0;
  max-width: 100rem;
}

.two-btn__title {
  padding-bottom: 4rem;
  font-size: 2.4rem;
  line-height: 1.2083333333;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .two-btn__title {
    padding-bottom: 2.9rem;
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.two-btn__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}

@media screen and (max-width: 767px) {
  .two-btn__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6rem;
  }
}
.two-btn__item {
  width: 100%;
  max-width: 48rem;
}

@media screen and (max-width: 767px) {
  .two-btn__item {
    max-width: 31.5rem;
  }
}
.two-btn__item a {
  padding: 3.4rem 0.8rem 3.4rem 0;
  width: 100%;
  min-height: 10.5rem;
  font-size: 2.4rem;
  line-height: 1.2083333333;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 20;
  border-radius: 1.6rem;
  outline: 2px solid #fff;
  outline-offset: -0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .two-btn__item a {
    padding: 2.8rem 0;
    font-size: 1.8rem;
    line-height: 1.3333333333;
    border-radius: 0.8rem;
  }
}
.flow-two-btn2 .two-btn__item.-keiyaku a {
  min-height: 12.6rem;
  color: #4e9f3e;
  background-color: #fff;
  outline: 2px solid #4e9f3e;
  outline-offset: -0.8rem;
  border: 2px solid #4e9f3e;
}

@media screen and (max-width: 767px) {
  .flow-two-btn2 .two-btn__item.-keiyaku a {
    min-height: 10.5rem;
  }
}
.flow-two-btn2 .two-btn__item.-support a {
  color: #fff;
  background-color: #4e9f3e;
}

.two-btn__item.-tenpo a {
  background-image: url(../images/common/yellow-btn_bg.webp);
}

.two-btn__item.-kanyuu a {
  background-image: url(../images/common/orange-btn_bg.webp);
}

.two-btn__item a::before, .two-btn__item a::after {
  content: "";
  position: absolute;
}

.two-btn__item a::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .two-btn__item a::before {
    border-radius: 0.8rem;
  }
}
.two-btn__item.-tenpo a::before {
  background-color: rgba(245, 161, 0, 0.8);
}

.two-btn__item.-kanyuu a::before {
  background-color: rgba(229, 99, 70, 0.8);
}

.two-btn__item a::after {
  width: 4.7rem;
  height: 4.7rem;
  top: 50%;
  right: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .two-btn__item a::after {
    width: 2.2rem;
    height: 2.2rem;
    right: 2.7rem;
  }
}
.two-btn__item.-tenpo a::after {
  background-image: url(../images/common/circle-arrow__yellow.webp);
}

.two-btn__item.-kanyuu a::after {
  background-image: url(../images/common/circle-arrow__orange.webp);
}

.two-btn__item.-keiyaku a::after {
  background-image: url(../images/common/circle-arrow__green2.webp);
}

.two-btn__item.-support a::after {
  background-image: url(../images/common/circle-arrow__green.webp);
}

/*-------------------------------
under-btn
-------------------------------*/
.under-btn {
  padding-top: 6rem;
  padding-bottom: 5.2rem;
  background-color: #fff1f1;
}

@media screen and (max-width: 767px) {
  .under-btn {
    padding-bottom: 0;
    background-color: #fff;
  }
}
.under-btn__inner.inner {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .under-btn__inner.inner {
    width: 100%;
    max-width: 32.8rem;
  }
}
.under-btn__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 2.4rem auto 2.4rem auto;
  grid-template-columns: repeat(3, auto);
  grid-column-gap: 2.4rem;
}

@media screen and (max-width: 767px) {
  .under-btn__list {
    -ms-grid-columns: (auto)[1];
    grid-template-columns: repeat(1, auto);
    -ms-grid-rows: auto 2rem auto 2rem auto;
    grid-template-rows: repeat(3, auto);
    grid-row-gap: 2rem;
  }
  .under-btn__list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .under-btn__list > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .under-btn__list > *:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
}
.under-btn__item {
  width: 100%;
  max-width: 30rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

@media screen and (max-width: 767px) {
  .under-btn__item {
    display: block;
    max-width: 32.8rem;
  }
}
.under-btn__item a {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

@media screen and (max-width: 767px) {
  .under-btn__item a {
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    border-radius: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .under-btn__item:nth-child(1) a {
    background-color: #f5a100;
  }
}
@media screen and (max-width: 767px) {
  .under-btn__item:nth-child(2) a {
    background-color: #f65a37;
  }
}
@media screen and (max-width: 767px) {
  .under-btn__item:nth-child(3) a {
    background-color: #e8340d;
  }
}
.under-btn__item-img {
  border-radius: 0.8rem 0.8rem 0 0;
  border: 1px solid #e8340d;
}

@media screen and (max-width: 767px) {
  .under-btn__item-img {
    width: 11.9rem;
    border: none;
    border-radius: 0.4rem;
  }
}
.under-btn__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 300/240;
  border-radius: 0.8rem 0.8rem 0 0;
}

@media screen and (max-width: 767px) {
  .under-btn__item-img img {
    aspect-ratio: 119/83;
    border-radius: 0.4rem;
  }
}
.under-btn__item-text {
  padding: 1rem 0;
  font-size: 1.6rem;
  line-height: 1.1875;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  border-radius: 0 0 0.8rem 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .under-btn__item-text {
    padding: 0.7rem 0;
    width: 100%;
    max-width: 17.2rem;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
}
.under-btn__item:nth-of-type(1) .under-btn__item-text {
  background-color: #f5a100;
}

.under-btn__item:nth-of-type(2) .under-btn__item-text {
  background-color: #f65a37;
}

.under-btn__item:nth-of-type(3) .under-btn__item-text {
  background-color: #e8340d;
}

.under-btn__item-text::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.under-btn__item:nth-of-type(1) .under-btn__item-text::after {
  right: 0.9rem;
  background-image: url(../images/common/circle-arrow__yellow.webp);
}

@media screen and (max-width: 767px) {
  .under-btn__item:nth-of-type(1) .under-btn__item-text::after {
    right: 0;
  }
}
.under-btn__item:nth-of-type(2) .under-btn__item-text::after {
  right: 4rem;
  background-image: url(../images/common/circle-arrow__orange.webp);
}

@media screen and (max-width: 767px) {
  .under-btn__item:nth-of-type(2) .under-btn__item-text::after {
    right: 0;
  }
}
.under-btn__item:nth-of-type(3) .under-btn__item-text::after {
  right: 7.1rem;
  background-image: url(../images/common/circle-arrow__red.webp);
}

@media screen and (max-width: 767px) {
  .under-btn__item:nth-of-type(3) .under-btn__item-text::after {
    right: 0;
  }
}
/*-------------------------------
point-content-child
-------------------------------*/
.point-content-child {
  padding: 4rem 10rem;
  width: 100%;
  max-width: 110rem;
  border-radius: 1.6rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  position: relative;
}

@media screen and (max-width: 767px) {
  .point-content-child {
    padding: 3.2rem 1.3rem;
  }
}
.point-content-child.-logo1::before {
  content: "";
  width: 32.2rem;
  height: 12rem;
  position: absolute;
  top: 2.8rem;
  right: 0;
  background-image: url(../images/point/01/point01-5_logo.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .point-content-child.-logo1::before {
    width: 9.2rem;
    height: 8.3rem;
    top: 2rem;
    right: 2rem;
    background-image: url(../images/point/01/point01-5_logo_sp.webp);
  }
}
.point-content-child.-logo2::before {
  content: "";
  width: 23rem;
  height: 10.9rem;
  position: absolute;
  top: 2rem;
  right: 9rem;
  background-image: url(../images/point/03/point03-1_logo.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .point-content-child.-logo2::before {
    width: 13rem;
    height: 6.2rem;
    top: 1.1rem;
    right: 2rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .point-content-child.-logo2::before {
    top: -1.4em;
    right: 0;
  }
}
.point-content-child__title {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
}
.point-content-child__title span {
  margin-bottom: 0.5rem;
}
.point-content-child__title__sub {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 580px) {
  .point-content-child__title__sub {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .point-content-child__title {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.point-content-child__title .fz18 {
  font-size: 1.8rem;
  line-height: 1.2222222222;
}

@media screen and (max-width: 767px) {
  .point-content-child__title .fz18 {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}
.point-content-child__text {
  margin-top: 1.3rem;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
  text-align: justify;
}
.point-content-child__text p {
  margin-top: 0.5rem;
}
.point-content-child__text__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.point-content-child__text__list::before {
  content: "●";
  font-size: 50%;
  margin-right: 1em;
  margin-left: 0.5em;
  display: block;
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .point-content-child__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.-logo1 .point-content-child__title, .-logo1 .point-content-child__text {
  max-width: 65rem;
}

.-logo2 .point-content-child__text {
  margin-top: 3.6rem;
}

@media screen and (max-width: 767px) {
  .-logo2 .point-content-child__text {
    margin-top: 2rem;
  }
}
.point-content-child__img-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.5rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__img-column {
    gap: 0;
  }
}
.point-content-child__img-wrap {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.point-content-child__img-wrap__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8%;
  background-color: #FFF;
  border-radius: 10px;
  padding: 3rem 0 7rem;
}
@media (max-width: 580px) {
  .point-content-child__img-wrap__list {
    padding: 2rem 0;
  }
}
.point-content-child__img-wrap__list span {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
  margin-top: -3rem;
}
@media (max-width: 580px) {
  .point-content-child__img-wrap__list span {
    margin-top: 0;
  }
}
.point-content-child__img-wrap__list li {
  width: 25%;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 580px) {
  .point-content-child__img-wrap__list li {
    width: 45%;
  }
  .point-content-child__img-wrap__list li:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .point-content-child__img-wrap__list li:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .point-content-child__img-wrap__list li:nth-child(3) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .point-content-child__img-wrap__list li:nth-child(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .point-content-child__img-wrap__list li:nth-child(5) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .point-content-child__img-wrap__list li:nth-child(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
.point-content-child__img-wrap__list li span {
  display: block;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .point-content-child__img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.point-content-child__img-wrap.-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 767px) {
  .point-content-child__img-wrap.-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.point-content-child__img-wrap.-aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.point-content-child__img-wrap.-aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.point-content-child__img-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 2rem auto;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__img-group {
    width: 100%;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    display: block;
  }
}
.point-content-child__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 580px) {
  .point-content-child__img {
    margin-bottom: 1em;
  }
}
.point-content-child__img__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5%;
  padding-bottom: 5rem;
}
@media (max-width: 580px) {
  .point-content-child__img__list {
    gap: 13%;
    padding-bottom: 0;
  }
}
.point-content-child__img__list li {
  width: 25%;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 580px) {
  .point-content-child__img__list li {
    width: 35%;
  }
}
.point-content-child__img__list li span {
  display: block;
  aspect-ratio: 1/1.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.point-content-child__img__list li img {
  width: 90%;
}

.point-content-child__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__img img {
    border-radius: 0.8rem;
  }
}
.point-content-child__img span, .point-content-child__caption {
  display: block;
  font-size: 1.6rem;
  line-height: 1.625;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .point-content-child__img span, .point-content-child__caption {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.point-content-child__caption {
  margin-top: 1rem;
}

/*-------------------------------
point-content-child__list
-------------------------------*/
.point-content-child__list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

.point-content-child__item {
  padding: 2.4rem 9rem;
  background-color: #fff1f1;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__item {
    padding: 2.4rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .point-content-child__item.-support {
    padding: 2.4rem 4.6rem;
  }
}
.point-content-child__item-title {
  padding: 0.4rem 0.8rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  background-color: #e8340d;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .point-content-child__item-title {
    padding: 0.6rem 0.8rem;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: -0.01em;
  }
}
.point-content-child__item-text {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.625;
  text-indent: -1em;
  padding-left: 1em;
}
.point-content-child__item-text.no2 {
  text-indent: 0;
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .point-content-child__item-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.point-content-child__item-text + .point-content-child__item-text {
  margin-top: 0;
}

.point-content-child__item-img-wrap {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.point-content-child__container {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: 1fr 1rem 1fr 1rem 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 1rem;
  }
  .point-content-child__container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .point-content-child__container > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .point-content-child__container > *:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
}
.point-content-child__support {
  padding: 2.4rem 1rem 1.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  background-color: #fff;
  border: 1px solid #e8340d;
  border-radius: 0.8rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .point-content-child__support {
    padding: 2.4rem 2rem;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
}
.point-content-child__support:not(:first-of-type)::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  position: absolute;
  top: 48%;
  left: -13%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/triangle-red2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .point-content-child__support:not(:first-of-type)::before {
    top: -3rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.point-content-child__support-number {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: #e8340d;
  text-align: center;
}
.point-content-child__support-number span {
  font-size: 2.5rem;
  padding-right: 1rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__support-number {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.point-content-child__support-title {
  margin-top: 3.2rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .point-content-child__support-title {
    margin-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.point-content-child__support-text {
  padding: 0 0.4rem;
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.625;
}

.point-content-child__support-text span {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.point-content__item__top-btn {
  margin: 0 auto;
  margin-top: 4rem;
  width: 100%;
  max-width: 18.7rem;
}

.point-content__item__top-btn a {
  padding: 0.8rem 0;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #e8340d;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  border-radius: 2.8rem;
}

@media screen and (max-width: 767px) {
  .point-content__item__top-btn a {
    padding: 0.6rem 0;
    gap: 1rem;
  }
}
.point-content__item__top-btn a::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-image: url(../images/common/circle-arrow__red.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media screen and (max-width: 767px) {
  .point-content__item__top-btn a::after {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.point-content-child__img {
  position: relative;
}
.point-content-child__img.kasane {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 400/250;
}
.point-content-child__img.kasane__child {
  position: absolute;
}
.point-content-child__img.kasane__child:first-child {
  top: 0;
  left: 0;
  -webkit-filter: drop-shadow(1px 1px 0 #FFF);
          filter: drop-shadow(1px 1px 0 #FFF);
  z-index: 1;
}
.point-content-child__img.kasane__child:last-child {
  bottom: 0;
  right: 0;
}

/*ユニーク画像サイズ*/
/*-------------------------------
w190画像
-------------------------------*/
.point-content-child__img.-w190 {
  max-width: 19rem;
}

.point-content-child__img.-w190 img {
  aspect-ratio: 190/240;
  -o-object-fit: cover;
  object-fit: cover;
}

/*-------------------------------
w195画像
-------------------------------*/
.point-content-child__img.-w195 {
  max-width: 19.5rem;
}

/*-------------------------------
w225画像
-------------------------------*/
.point-content-child__img.-w225 {
  max-width: 22.5rem;
}

.point-content-child__img.-w225 img {
  aspect-ratio: 225/200;
}

/*-------------------------------
w236画像
-------------------------------*/
.point-content-child__img.-w236 {
  max-width: 23.6rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__img.-w236 {
    margin: 0 auto;
  }
}
.point-content-child__img.-w236 img {
  aspect-ratio: 236/277;
}

/*-------------------------------
w250画像
-------------------------------*/
.point-content-child__img.-w250 {
  max-width: 25rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__img.-w250 {
    margin: 0 auto;
    max-width: 60%;
  }
}
/*-------------------------------
w280画像
-------------------------------*/
.point-content-child__img.-w280 {
  max-width: 28rem;
}

/*-------------------------------
w290画像
-------------------------------*/
.point-content-child__img.-w280 {
  max-width: 29rem;
}

/*-------------------------------
w300画像
-------------------------------*/
.point-content-child__img.-w300 {
  max-width: 30rem;
}

/*-------------------------------
w340画像
-------------------------------*/
.point-content-child__img.-w340 {
  max-width: 34rem;
}

.point-content-child__img.-w340 img {
  aspect-ratio: 340/336;
  -o-object-position: bottom 20% left 50%;
  object-position: bottom 20% left 50%;
}

@media screen and (max-width: 767px) {
  .point-content-child__img.-w340 img {
    aspect-ratio: 320/192;
  }
}
/*-------------------------------
w350画像
-------------------------------*/
.point-content-child__img.-w350 {
  max-width: 35rem;
}

.point-content-child__img.-w350 img {
  aspect-ratio: 350/336;
}

/*-------------------------------
w390画像
-------------------------------*/
.point-content-child__img.-w390 {
  max-width: 39rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__img.-w390 {
    max-width: 19rem;
  }
}
.point-content-child__img.-w390 img {
  aspect-ratio: 390/240;
}

@media screen and (max-width: 767px) {
  .point-content-child__img.-w390 img {
    aspect-ratio: 190/240;
    -o-object-position: bottom;
    object-position: bottom;
  }
}
/*-------------------------------
w400画像
-------------------------------*/
.point-content-child__img.-w400 {
  max-width: 40rem;
}

.point-content-child__img.-w400 img {
  aspect-ratio: 400/250;
  -o-object-fit: cover;
  object-fit: cover;
}

/*-------------------------------
w430画像
-------------------------------*/
.point-content-child__img.-w430 {
  max-width: 43rem;
}

@media screen and (max-width: 767px) {
  .point-content-child__img.-w430 {
    max-width: 19.5rem;
  }
}
/*-------------------------------
w474画像
-------------------------------*/
.point-content-child__img.-w474 {
  max-width: 47.4rem;
}

.point-content-child__img.-w474 img {
  aspect-ratio: 474/277;
}

@media screen and (max-width: 767px) {
  .point-content-child__img.-w474 img {
    aspect-ratio: initial;
  }
}
/*-------------------------------
w606画像
-------------------------------*/
.point-content-child__img.-w560 {
  max-width: 56rem;
}

/*-------------------------------
point-content
-------------------------------*/
.point-content {
  padding-bottom: 13.6rem;
}

@media screen and (max-width: 767px) {
  .point-content {
    padding-bottom: 0;
  }
}
.point-content__inner.inner {
  max-width: 128rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .point-content__inner.inner {
    padding: 0 10px;
  }
}
/*-------------------------------
point-content__tab-list
-------------------------------*/
.point-content__tab-list {
  margin: 0 auto;
  margin-top: 5.5rem;
  max-width: 116.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1.6rem;
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .point-content__tab-list {
    margin-top: 2.4rem;
    max-width: 50rem;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 1rem 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1.5rem;
    grid-row-gap: 1rem;
    margin-bottom: 5rem;
  }
  .point-content__tab-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .point-content__tab-list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .point-content__tab-list > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .point-content__tab-list > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
.point-content__tab-item {
  padding: 1.6rem 0 1.6rem;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  border: 3px solid #e8340d;
  border-radius: 0.8rem 0.8rem 0 0;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}

@media screen and (max-width: 767px) {
  .point-content__tab-item {
    padding: 0;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    border-radius: 0.4rem;
    height: 7.5em;
  }
}
.point-content__tab-item.is-active {
  border-bottom: none;
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .point-content__tab-item.is-active {
    border-bottom: 3px solid #e8340d;
    border-radius: 0.4rem;
  }
}
.point-content__tab-item::before {
  content: "";
  width: calc(100% + 0.6rem);
  height: 1.1rem;
  position: absolute;
  top: -1rem;
  left: 50%;
  background: #e8340d;
  border-radius: 0.8rem 0.8rem 0 0;
  -webkit-transform: translateX(-50%) scale(1, 0);
          transform: translateX(-50%) scale(1, 0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .point-content__tab-item::before {
    display: none;
  }
}
.point-content__tab-item.is-active::before {
  -webkit-transform: translateX(-50%) scale(1, 1);
          transform: translateX(-50%) scale(1, 1);
}

.point-content__tab-number {
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: #e8340d;
  text-align: center;
  display: block;
}

@media screen and (max-width: 767px) {
  .point-content__tab-number {
    font-size: 2rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .point-content__tab-item.is-active .point-content__tab-number {
    color: #fff;
    background-color: #e8340d;
  }
}
.point-content__tab-text {
  margin-top: 0.8rem;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .point-content__tab-text {
    margin-top: 0;
    padding: 0.4rem 0 0.5rem;
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.point-content__tab-item:nth-child(3) .point-content__tab-text {
  font-size: 2.4rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .point-content__tab-item:nth-child(3) .point-content__tab-text {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.point-content__tab-text .fz24 {
  font-size: 2.4rem;
  line-height: 1.4166666667;
}

@media screen and (max-width: 767px) {
  .point-content__tab-text .fz24 {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.point-content__tab-text .fz18 {
  font-size: 1.8rem;
  line-height: 1.278;
}

@media screen and (max-width: 767px) {
  .point-content__tab-text .fz18 {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.point-content__list {
  margin-top: -0.3rem;
}

@media screen and (max-width: 767px) {
  .point-content__list {
    margin: 0 auto;
    margin-top: 2.2rem;
    max-width: 50rem;
  }
}
/*-------------------------------
point-content__item
-------------------------------*/
.point-content__item {
  padding: 4.8rem 8.7rem;
  border: 3px solid #e8340d;
  border-radius: 1.6rem;
  position: relative;
  display: none;
}

@media screen and (max-width: 767px) {
  .point-content__item {
    padding: 0 0.45rem;
    border: none;
  }
}
.point-content__item.is-active {
  display: block;
}

.point-content__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
}

.point-content__text {
  padding: 2.4rem;
  font-size: 2rem;
  line-height: 1.6;
  background-color: #fff;
  border-radius: 1.6rem;
}

.point-content__img-list {
  margin: 0 auto;
  margin-top: 3.3rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 7.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 7.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.point-content__img-item {
  width: 32.8rem;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
}

.point-content__img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.point-content__img-caption {
  margin-top: 0.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.point-content__img-caption b, .point-content__img-caption p {
  text-align: center;
}

.point-content__img-caption b {
  color: #f5a100;
}

/*-------------------------------
LINK
-------------------------------*/
.example-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .example-link {
    display: block;
  }
}
.example-link div {
  width: 45%;
  border-radius: 10px;
  margin: 3% 0 3% 3%;
}
@media (max-width: 767px) {
  .example-link div {
    width: 94%;
    margin: 3%;
  }
}
.example-link div h4 {
  text-align: center;
  border: solid 1px;
  border-radius: 10px;
  height: 4rem;
  font-size: min(3.4vw, 1em);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.example-link div.case_studies {
  background-color: #e8340d;
  border-color: #e8340d;
}
.example-link div.case_studies h4 {
  color: #FFF;
  border-color: #e8340d;
}
.example-link div.bs_introduction {
  background-color: #f5a100;
  border-color: #f5a100;
}
.example-link div.bs_introduction h4 {
  color: #FFF;
  border-color: #f5a100;
}
.example-link__list {
  background-color: #FFF;
  padding: 1rem 2rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: solid 1px;
  border-right: solid 1px;
  border-left: solid 1px;
  border-radius: 0 0 10px 10px;
  height: calc(100% - 4rem);
}
.example-link__list li {
  font-size: min(3.4vw, 1em);
  margin-bottom: 0.5rem;
}
.example-link__list.cs {
  border-color: #e8340d;
}
.example-link__list.cs .example-link__list__item::before {
  color: #e8340d;
}
.example-link__list.sb {
  border-color: #f5a100;
}
.example-link__list.sb .example-link__list__item::before {
  color: #f5a100;
}
.example-link__list__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.example-link__list__item::before {
  content: "●";
  font-size: 80%;
  margin-right: 1em;
  display: block;
  margin-top: 0.25em;
}
.example-link__list__item span {
  font-size: 0.9em;
}

/*-------------------------------
suuzi
-------------------------------*/
.suuzi {
  margin-top: 10rem;
}

@media screen and (max-width: 767px) {
  .suuzi {
    margin-top: 6rem;
  }
}
.suuzi__img {
  margin-top: 8.8rem;
}

@media screen and (max-width: 767px) {
  .suuzi__img {
    margin-top: 6.7rem;
  }
}
.suuzi__img img {
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1440/356;
}

@media screen and (max-width: 767px) {
  .suuzi__img img {
    aspect-ratio: 368/189;
  }
}
/*-------------------------------
tenpo-dounyuu
-------------------------------*/
.tenpo-dounyuu {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fff9eb;
}

@media screen and (max-width: 767px) {
  .tenpo-dounyuu {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.tenpo-dounyuu__inner.inner {
  max-width: 93.6rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .tenpo-dounyuu__inner.inner {
    padding: 0 12px;
    max-width: 55rem;
  }
}
.tenpo-dounyuu__point {
  margin: 0 auto;
  margin-top: 4rem;
  padding: 0.6rem 2.1rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: #fff;
  background-color: #f5a100;
  border-radius: 5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tenpo-dounyuu__point {
    margin-top: 2.4rem;
    padding: 0.6rem 2rem;
    font-size: 1.8rem;
    line-height: 1.4444444444;
    border-radius: 0.8rem;
  }
}
.tenpo-dounyuu__text {
  margin: 0 auto;
  margin-top: 3.2rem;
  padding: 2.4rem 4.4rem;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .tenpo-dounyuu__text {
    margin-top: 1.7rem;
    padding: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.4375;
    font-weight: 600;
  }
}
.tenpo-dounyuu__list {
  margin-top: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: 1fr 2.4rem 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 2.4rem;
  grid-row-gap: 2.4rem;
}
.tenpo-dounyuu__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.tenpo-dounyuu__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.tenpo-dounyuu__list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.tenpo-dounyuu__list > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.tenpo-dounyuu__list > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}
.tenpo-dounyuu__list > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.tenpo-dounyuu__list > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.tenpo-dounyuu__list > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.tenpo-dounyuu__list > *:nth-child(9) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.tenpo-dounyuu__list > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}

@media screen and (max-width: 767px) {
  .tenpo-dounyuu__list {
    margin-top: 2.4rem;
    padding: 0 1.8rem;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }
  .tenpo-dounyuu__list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .tenpo-dounyuu__list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.tenpo-dounyuu__item a {
  padding: 0.6rem;
  border-radius: 0.4rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.25);
}

.tenpo-dounyuu__item-img img {
  border-radius: 0.4rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 156/118;
}

.tenpo-dounyuu__item-text {
  margin-top: 0.4rem;
  padding-left: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.2777777778;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
}

@media screen and (max-width: 767px) {
  .tenpo-dounyuu__item-text {
    font-size: 1.6rem;
    line-height: 1.4375;
    gap: 0.4rem;
  }
}
.tenpo-dounyuu__item-text.-padding-none {
  padding-left: 0.5rem;
}

@media screen and (max-width: 767px) {
  .tenpo-dounyuu__item-text.-padding-none {
    padding-left: 1.6rem;
  }
}
.tenpo-dounyuu__item-text::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  display: block;
  background-image: url(../images/common/circle-arrow__yellow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*-------------------------------
tenpo-omoi
-------------------------------*/
.tenpo-omoi {
  margin-top: 2.8rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi {
    margin-top: 5.8rem;
    padding-bottom: 5.2rem;
  }
}
.tenpo-omoi__inner.inner {
  max-width: 1278px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__inner.inner {
    padding: 0;
  }
}
/*-------------------------------
tenpo-omoi__question
-------------------------------*/
.tenpo-omoi__question {
  margin: 0 auto;
  margin-top: 4rem;
  max-width: 120rem;
  height: 44rem;
  background-color: #ffeecf;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__question {
    margin-top: 2rem;
    height: 42.7rem;
    border-radius: 0;
  }
}
.tenpo-omoi__question-img {
  height: inherit;
  position: relative;
}

.tenpo-omoi__question-img img {
  width: 34rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__question-img img {
    width: 22.7rem;
  }
}
.tenpo-omoi__question-img::before, .tenpo-omoi__question-img::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tenpo-omoi__question-img::before {
  width: 48.3rem;
  height: 32.4rem;
  top: 4.7rem;
  right: calc(50% + 1.4rem);
  background-image: url(../images/tenpo/tenpo-question1.webp);
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__question-img::before {
    width: 17rem;
    height: 25.8rem;
    top: 1.8rem;
    right: calc(50% + 0.8rem);
    background-image: url(../images/tenpo/tenpo-question1_sp.webp);
  }
}
.tenpo-omoi__question-img::after {
  width: 44.7rem;
  height: 33.8rem;
  top: 4.7rem;
  left: calc(50% + 4.5rem);
  background-image: url(../images/tenpo/tenpo-question2.webp);
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__question-img::after {
    width: 16.5rem;
    height: 25.9rem;
    top: 2.2rem;
    left: calc(50% + 1.5rem);
    background-image: url(../images/tenpo/tenpo-question2_sp.webp);
  }
}
/*-------------------------------
tenpo-omoi__bottom-arrow
-------------------------------*/
.tenpo-omoi__bottom-arrow {
  margin: 0 auto;
  margin-top: 2.1rem;
  width: 2rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__bottom-arrow {
    margin-top: 1.8rem;
  }
}
.tenpo-omoi__bottom-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 20/64;
}

/*-------------------------------
tenpo-omoi__support
-------------------------------*/
.tenpo-omoi__support-wrap {
  margin-top: 6.6rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__support-wrap {
    margin: 0 auto;
    margin-top: 6.3rem;
    padding: 0 1.3rem;
  }
}
.tenpo-omoi__support {
  padding: 5.9rem 3.8rem 5.2rem;
  border: 1px solid #e8340d;
  border-radius: 2.4rem;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__support {
    padding: 5.9rem 1.3rem 3rem;
    border-radius: 1.6rem;
  }
}
.tenpo-omoi__support-title {
  margin: 0 auto;
  margin-top: -10.4rem;
  padding: 1.3rem 3.7rem;
  max-width: 74.6rem;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.2rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #f5a100;
  border-radius: 5rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__support-title {
    margin: -10.4rem auto 0;
    padding: 0.8rem 3.9rem;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    font-size: 2rem;
    line-height: 1.45;
  }
}
.tenpo-omoi__support-list {
  margin-top: 3.2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.4rem 1fr 2.4rem 1fr 2.4rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2.4rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__support-list {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 7rem 4px;
    overflow-x: scroll;
  }
}
.tenpo-omoi__support-item {
  padding: 2.4rem 4.6rem 2.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  border: 1px solid #f5a100;
  border-radius: 0.8rem;
  background-color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__support-item {
    padding: 2.4rem;
    width: 23.5rem;
  }
}
.tenpo-omoi__support-item.is-active {
  background-color: #ffeecf;
}

.tenpo-omoi__support-number {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: #f5a100;
  text-align: center;
  display: block;
}

.tenpo-omoi__support-img {
  margin: 0 auto;
  margin-top: 0.4rem;
  width: 13.9rem;
}

.tenpo-omoi__support-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 139/101;
}

.tenpo-omoi__support-text {
  margin-top: 0.4rem;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__support-text {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }
}
.tenpo-omoi__support-btn {
  margin: 0 auto;
  margin-top: 1.7rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__support-btn {
    border-radius: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .tenpo-omoi__support-btn.bg-color-btn div {
    padding: 0.8rem 3.4rem;
    gap: 1.6rem;
  }
}
.tenpo-omoi__support-btn.bg-color-btn div::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__scroll-side {
    margin-left: auto;
  }
}
/*-------------------------------
tenpo-omoi__answer
-------------------------------*/
.tenpo-omoi__answer-list {
  margin-top: 4.4rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__answer-list {
    margin-top: 3.4rem;
  }
}
.tenpo-omoi__answer-item {
  padding: 4rem 3.6rem 3rem;
  background-color: #ffeecf;
  border: 1px solid #f5a100;
  border-radius: 1.6rem;
  position: relative;
  display: none;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__answer-item {
    padding: 2.3rem 1.4rem 2.9rem;
  }
}
.tenpo-omoi__answer-item.is-active {
  display: block;
}

.tenpo-omoi__answer-item::before, .tenpo-omoi__answer-item::after {
  content: "";
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  border-top: 0;
}

.tenpo-omoi__answer-item::before {
  border-bottom: 3.4rem solid #f5a100;
  bottom: 100%;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__answer-item::before {
    border-bottom: 2.5rem solid #f5a100;
  }
}
.tenpo-omoi__answer-item::after {
  border-bottom: 3.4rem solid #ffeecf;
  bottom: calc(100% - 5px);
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__answer-item::after {
    border-bottom: 2.5rem solid #ffeecf;
    bottom: calc(100% - 3px);
  }
}
#omoi-tab1.is-active::before, #omoi-tab1.is-active::after {
  left: 12%;
}

@media screen and (max-width: 767px) {
  #omoi-tab1.is-active::before, #omoi-tab1.is-active::after {
    left: 50%;
  }
}
#omoi-tab2.is-active::before, #omoi-tab2.is-active::after {
  left: 37%;
}

@media screen and (max-width: 767px) {
  #omoi-tab2.is-active::before, #omoi-tab2.is-active::after {
    left: 50%;
  }
}
#omoi-tab3.is-active::before, #omoi-tab3.is-active::after {
  left: 63%;
}

@media screen and (max-width: 767px) {
  #omoi-tab3.is-active::before, #omoi-tab3.is-active::after {
    left: 50%;
  }
}
#omoi-tab4.is-active::before, #omoi-tab4.is-active::after {
  left: 88%;
}

@media screen and (max-width: 767px) {
  #omoi-tab4.is-active::before, #omoi-tab4.is-active::after {
    left: 50%;
  }
}
.tenpo-omoi__answer-text {
  padding: 2.4rem;
  font-size: 2rem;
  line-height: 1.6;
  background-color: #fff;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__answer-text {
    padding: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.tenpo-omoi__img-list {
  margin: 0 auto;
  margin-top: 3.3rem;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 7.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 7.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__img-list {
    margin-top: 1.4rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }
}
.tenpo-omoi__img-list.-columns3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__img-list.-columns3 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.tenpo-omoi__img-item {
  width: 32.8rem;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__img-item {
    width: 14rem;
  }
}
.tenpo-omoi__img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 329/231;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__img-item img {
    aspect-ratio: 140/99;
  }
}
.tenpo-omoi__img-caption {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

@media screen and (max-width: 767px) {
  .tenpo-omoi__img-caption {
    font-size: 1.2rem;
    line-height: 1.1666666667;
  }
}
.tenpo-omoi__img-caption b, .tenpo-omoi__img-caption p {
  text-align: center;
}

.tenpo .tenpo-omoi__img-caption b {
  color: #f5a100;
}

/*-------------------------------
tenpo 
-------------------------------*/
.tenpo__bg-color {
  background-color: #fff9eb;
}

/*-------------------------------
top-btns
-------------------------------*/
.top-btns {
  margin-top: 4rem;
  position: relative;
  z-index: 50;
}

@media screen and (max-width: 767px) {
  .top-btns {
    margin-top: 2.4rem;
  }
}
.top-btns__inner.inner {
  padding: 0;
  max-width: 103.2rem;
}

.top-btns__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top-btns__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6rem;
  }
}
.top-btns__item {
  width: 100%;
  max-width: 48rem;
}

@media screen and (max-width: 767px) {
  .top-btns__item {
    max-width: 31.5rem;
  }
}
.top-btns__item a {
  padding: 4.5rem 1.2rem 4.5rem 0;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 20;
  border-radius: 1.6rem;
  outline: 2px solid #fff;
  outline-offset: -0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .top-btns__item a {
    padding: 2.8rem 0;
    font-size: 1.8rem;
    line-height: 1.3333333333;
    border-radius: 0.8rem;
  }
}
.top-btns__item--tenpo a {
  background-image: url(../images/common/yellow-btn_bg.webp);
}

.top-btns__item--kanyuu a {
  background-image: url(../images/common/orange-btn_bg.webp);
}

.top-btns__item a::before, .top-btns__item a::after {
  content: "";
  position: absolute;
}

.top-btns__item a::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top-btns__item a::before {
    border-radius: 0.8rem;
  }
}
.top-btns__item--tenpo a::before {
  background-color: rgba(245, 161, 0, 0.8);
}

.top-btns__item--kanyuu a::before {
  background-color: rgba(229, 99, 70, 0.8);
}

.top-btns__item a::after {
  width: 4.7rem;
  height: 4.7rem;
  top: 50%;
  right: 7.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .top-btns__item a::after {
    width: 2.2rem;
    height: 2.2rem;
    right: 2.7rem;
  }
}
.top-btns__item--tenpo a::after {
  background-image: url(../images/common/circle-arrow__yellow.webp);
}

.top-btns__item--kanyuu a::after {
  background-image: url(../images/common/circle-arrow__orange.webp);
}

/*-------------------------------
top-guideline
-------------------------------*/
.top-guideline {
  margin-top: 12rem;
}

@media screen and (max-width: 767px) {
  .top-guideline {
    margin-top: 4rem;
    padding-bottom: 2.4rem;
  }
}
.top-guideline__inner.inner {
  max-width: 1024px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .top-guideline__inner.inner {
    padding: 0 30px;
  }
}
.top-guideline__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.4rem;
}

@media screen and (max-width: 767px) {
  .top-guideline__wrap {
    margin: 0 auto;
    max-width: 600px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.top-guideline__img, .top-guideline__text {
  width: 46.875%;
}

@media screen and (max-width: 767px) {
  .top-guideline__img, .top-guideline__text {
    width: 100%;
  }
}
.top-guideline__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 480/320;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top-guideline__img img {
    aspect-ratio: 320/200;
    border-radius: 0.8rem;
  }
}
.top-guideline__title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .top-guideline__title {
    font-size: 2.4rem;
  }
}
.top-guideline__text p {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .top-guideline__text p {
    margin-top: 1.6rem;
  }
}
.top-guideline__btn {
  margin-top: 3.2rem;
  margin-left: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .top-guideline__btn {
    margin-top: 2.4rem;
  }
}
.top-guideline__btn:hover {
  opacity: 0.8;
}

/*-------------------------------
top-message
-------------------------------*/
.top-message {
  margin-top: -6.6rem;
  background-color: #fff4f1;
  border-radius: 6rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-message {
    margin-top: 2.4rem;
    border-radius: 3rem;
  }
}
.top-message::after {
  content: "";
  width: 83.6rem;
  height: 13.9rem;
  position: absolute;
  bottom: -0.5rem;
  right: 7.6rem;
  background-image: url(../images/top/message-YSHOP%c3%a2%c2%80%c2%99S_MISSON.html);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .top-message::after {
    width: 37.1rem;
    height: 6.4rem;
    bottom: 2.4rem;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.top-message__wrap {
  padding: 16rem 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-message__wrap {
    padding-top: 4.5rem;
    padding-bottom: 9.8rem;
  }
}
.top-message__inner.inner {
  max-width: 103.6rem;
}

.top-message__content {
  padding: 6.7rem 0;
  background-image: url(../images/top/message_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.86);
  background-blend-mode: lighten;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4.5rem;
}

@media screen and (max-width: 767px) {
  .top-message__content {
    padding: 4rem 0;
    border-radius: 2.4rem;
  }
}
.top-message__text p {
  margin-top: 5.6rem;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-message__text p {
    margin-top: 2.4rem;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
}
/*-------------------------------
top-message__SPslide-wrapper
-------------------------------*/
.top-message__SPslide-wrapper {
  display: none;
}

@media screen and (max-width: 767px) {
  .top-message__SPslide-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    overflow: hidden;
  }
}
.top-message__SPslider {
  -webkit-animation: scroll-left 20s infinite linear 0.5s both;
          animation: scroll-left 20s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.top-message__SPslide {
  width: 11rem;
}

.top-message__SPslide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 110/64;
  border-radius: 0.4rem;
}

@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*-------------------------------
.top-message__decoration1,.top-message__decoration2
-------------------------------*/
.top-message__decoration1, .top-message__decoration2 {
  margin: 0 auto;
  max-width: 103.6rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-message__decoration1, .top-message__decoration2 {
    display: none;
  }
}
.top-message__decoration1::before, .top-message__decoration1::after, .top-message__decoration2::before, .top-message__decoration2::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 50;
}

.top-message__decoration1::before, .top-message__decoration1::after, .top-message__decoration2::before {
  border-radius: 1.4rem;
}

.top-message__decoration1::before {
  width: 27rem;
  height: 14.7rem;
  top: 23.4rem;
  left: -8.1rem;
  background-image: url(../images/top/message_decoration1.webp);
}

.top-message__decoration1::after {
  width: 27rem;
  height: 14.7rem;
  top: 15.4rem;
  right: -3.2rem;
  background-image: url(../images/top/message_decoration2.webp);
}

.top-message__decoration2::before {
  width: 19.5rem;
  height: 10.5rem;
  bottom: 19.1rem;
  left: 3.6rem;
  background-image: url(../images/top/message_decoration3.webp);
}

.top-message__decoration2::after {
  width: 30.4rem;
  height: 23.3rem;
  bottom: 13.8rem;
  right: -9.9rem;
  background-image: url(../images/top/message_decoration4.webp);
}

/*-------------------------------
top-point
-------------------------------*/
.top-point {
  margin-top: -4.9rem;
  padding-bottom: 12rem;
  background-color: #fffbfa;
}

@media screen and (max-width: 767px) {
  .top-point {
    margin-top: -2.4rem;
    padding-bottom: 6rem;
  }
}
.top-point__inner.inner {
  padding-top: 13.5rem;
}

@media screen and (max-width: 767px) {
  .top-point__inner.inner {
    padding: 0 0.7rem;
    padding-top: 6.4rem;
  }
}
.top-point__list {
  margin: 0 auto;
  margin-top: 4rem;
  width: 100%;
  max-width: 104.6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8.6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 8.6rem;
}

@media screen and (max-width: 767px) {
  .top-point__list {
    padding: 0.8rem 1.5rem 1.5rem;
    -ms-grid-columns: 33.7rem 2rem 33.7rem 2rem 33.7rem 2rem 33.7rem;
    grid-template-columns: repeat(4, 33.7rem);
    grid-column-gap: 2rem;
    overflow-x: auto;
    display: block;
  }
}
.top-point__list::-webkit-scrollbar {
  display: none;
}

/*-------------------------------
top-point-item
-------------------------------*/
.top-point-item {
  background-color: #fff;
  border-radius: 2.4rem;
  -webkit-box-shadow: 0.4rem 0.4rem 2rem rgba(0, 0, 0, 0.05);
          box-shadow: 0.4rem 0.4rem 2rem rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
  .top-point-item {
    -webkit-box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.3);
            box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
  }
}
.top-point-item:nth-of-type(2n) {
  margin-top: 8.6rem;
}
@media (max-width: 580px) {
  .top-point-item:nth-of-type(2n) {
    margin-top: 1rem;
  }
}

.top-point-item:nth-of-type(2n + 1) {
  margin-bottom: 8.6rem;
}

@media screen and (max-width: 767px) {
  .top-point-item:nth-of-type(2n + 1) {
    margin-bottom: 0;
  }
}
.top-point-item a {
  padding: 1.6rem 1.6rem 2.4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top-point-item a:hover {
  opacity: 1;
}

.top-point-item__number {
  font-size: 6.4rem;
  line-height: 1;
  font-weight: 700;
  color: #e2e2e2;
}

@media screen and (max-width: 767px) {
  .top-point-item__number {
    font-size: 6.4rem;
  }
}
.top-point-item__title {
  margin-top: -2.5rem;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .top-point-item__title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.top-point-item__subtitle {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .top-point-item__subtitle {
    font-size: 1.6rem;
  }
}
.top-point-item__img {
  margin-top: 1.6rem;
  border-radius: 1.4rem;
  overflow: hidden;
}

.top-point-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 448/260;
  border-radius: 1.4rem;
}

.top-point-item p {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: justify;
}
@media (max-width: 580px) {
  .top-point-item p {
    display: none;
  }
}

.top-point-item__btn {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #e8340d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.6rem;
}

.top-point-item__btn::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-image: url(../images/common/circle-arrow__red2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.top-point-item a:hover .top-point-item__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.top-point__scroll-side {
  margin-left: auto;
}

/*-------------------------------
top-point__btn
-------------------------------*/
.top-point__btn {
  margin: 0 auto;
  margin-top: 4.8rem;
  width: 100%;
  max-width: 32.1rem;
}

@media screen and (max-width: 767px) {
  .top-point__btn {
    margin-top: 3.2rem;
    max-width: 28.2rem;
  }
}
.top-point__btn a {
  padding: 1.6rem 0;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #e8340d;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
  border-radius: 2.8rem;
}

@media screen and (max-width: 767px) {
  .top-point__btn a {
    padding: 0.8rem 0;
    gap: 1rem;
  }
}
.top-point__btn a::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-image: url(../images/common/circle-arrow__red.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .top-point__btn a::after {
    width: 2.2rem;
    height: 2.2rem;
  }
}
/*-------------------------------
top-tenpo
-------------------------------*/
.top-tenpo, .top-kanyuu {
  position: relative;
}

.top-tenpo {
  background-color: #fff2d9;
}

.top-kanyuu {
  background-color: #ffe5df;
}

.top-tenpo::after, .top-kanyuu::after {
  content: "";
  width: 84.2rem;
  height: 48.8rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .top-tenpo::after, .top-kanyuu::after {
    width: 100%;
    height: 26rem;
  }
}
.top-tenpo::after {
  background-image: url(../images/common/yellow-triangle-bg.webp);
}

@media screen and (max-width: 767px) {
  .top-tenpo::after {
    background-image: url(../images/common/yellow-triangle-bg_sp.webp);
  }
}
.top-kanyuu::after {
  background-image: url(../images/common/red-triangle-bg.webp);
}

@media screen and (max-width: 767px) {
  .top-kanyuu::after {
    background-image: url(../images/common/red-triangle-bg_sp.webp);
  }
}
.top-tenpo__inner.inner, .top-kanyuu__inner.inner {
  padding: 10rem 0 10rem 20px;
  max-width: 131rem;
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .top-tenpo__inner.inner {
    padding: 4.3rem 10px 8.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top-kanyuu__inner.inner {
    padding: 4.3rem 10px 13rem;
  }
}
.top-tenpo__inner::after, .top-kanyuu__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .top-tenpo__inner::after, .top-kanyuu__inner::after {
    left: 1rem;
  }
}
.top-tenpo__inner::after {
  width: 59.7rem;
  height: 6.9rem;
  bottom: 3.7rem;
  background-image: url(../images/top/Store_introduction.svg);
}

@media screen and (max-width: 767px) {
  .top-tenpo__inner::after {
    width: 33.6rem;
    height: 4.8rem;
    bottom: 0.8rem;
  }
}
.top-kanyuu__inner::after {
  width: 97.5rem;
  height: 7.8rem;
  bottom: 2.8rem;
  background-image: url(../images/top/Joining_Stores_and_Operations.svg);
}

@media screen and (max-width: 767px) {
  .top-kanyuu__inner::after {
    width: 34.6rem;
    height: 9.7rem;
    bottom: 1rem;
    background-image: url(../images/top/Joining_Stores_and_Operations_sp.svg);
  }
}
.top-tenpo__wrap, .top-kanyuu__wrap {
  margin-right: calc(50% - 50vw + 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.4rem;
}

@media screen and (max-width: 1339px) {
  .top-tenpo__wrap, .top-kanyuu__wrap {
    margin-right: initial;
  }
}
@media screen and (max-width: 767px) {
  .top-tenpo__wrap, .top-kanyuu__wrap {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.8rem;
    max-width: 600px;
  }
}
@media screen and (min-width: 1441px) {
  .top-tenpo__wrap, .top-kanyuu__wrap {
    margin-right: -5.5rem;
  }
}
/*-------------------------------
top-tenpo__left
-------------------------------*/
.top-tenpo__left, .top-kanyuu__left {
  width: 100%;
  max-width: 34rem;
}

.top-tenpo__title, .top-kanyuu__title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.6rem;
  line-height: 1.4444444444;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .top-tenpo__title, .top-kanyuu__title {
    padding-left: 1.6rem;
    font-size: 2.8rem;
    line-height: 1.4642857143;
  }
}
.top-tenpo__fsSmall, .top-kanyuu__fsSmall {
  font-size: 3.2rem;
  line-height: 1.4375;
}

@media screen and (max-width: 767px) {
  .top-tenpo__fsSmall, .top-kanyuu__fsSmall {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}
.top-tenpo__category-wrap, .top-kanyuu__category-wrap {
  margin-top: 3.2rem;
  padding: 2.4rem;
  background-color: #fff;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top-tenpo__category-wrap, .top-kanyuu__category-wrap {
    display: none;
  }
}
.top-tenpo__category-wrap h3, .top-kanyuu__category-wrap h3 {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  color: #e8340d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-tenpo__category-wrap h3::before, .top-kanyuu__category-wrap h3::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon/yamazaki-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-tenpo__category-list, .top-kanyuu__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.top-tenpo__category-list:first-of-type, .top-kanyuu__category-list:first-of-type {
  margin-top: 1.6rem;
}

.top-tenpo__category-list:last-of-type, .top-kanyuu__category-list:last-of-type {
  margin-top: 1.2rem;
}

.top-tenpo__category-item, .top-kanyuu__category-item {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}

.top-tenpo__category-img, .top-kanyuu__category-img {
  height: 4.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.top-tenpo__category-img img, .top-kanyuu__category-img img {
  width: 100%;
  height: 100%;
  max-height: 4.2rem;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 400/260;
}

.top-tenpo__category-item p, .top-kanyuu__category-item p {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  text-align: center;
}

/*-------------------------------
top-tenpo__content
-------------------------------*/
.top-tenpo__content, .top-kanyuu__content {
  padding: 6rem 7rem;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6rem 0 0 6rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .top-tenpo__content, .top-kanyuu__content {
    padding: 0;
    border-radius: 0;
    background-color: initial;
  }
}
.top-tenpo__content {
  border: 2px solid #f5a100;
}

@media screen and (max-width: 767px) {
  .top-tenpo__content {
    border: none;
  }
}
.top-kanyuu__content {
  border: 2px solid #f65a37;
}

@media screen and (max-width: 767px) {
  .top-kanyuu__content {
    border: none;
  }
}
.top-tenpo__content-wrap, .top-kanyuu__content-wrap {
  width: 100%;
}

.top-tenpo__tenpo, .top-kanyuu__kanyuu {
  max-width: 84.2rem;
}

.top-tenpo__tenpo a:hover, .top-kanyuu__kanyuu a:hover {
  opacity: 1;
}

.top-tenpo__tenpo-flex, .top-kanyuu__kanyuu-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-flex, .top-kanyuu__kanyuu-flex {
    padding: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
    background-color: #fff;
    border-radius: 0.8rem;
  }
}
.top-tenpo__tenpo-img, .top-kanyuu__kanyuu-img {
  width: 100%;
  max-width: 47.5059382423%;
  overflow: hidden;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-img, .top-kanyuu__kanyuu-img {
    max-width: 100%;
    border-radius: 0.8rem;
  }
}
.top-tenpo__tenpo-img img, .top-kanyuu__kanyuu-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 400/260;
  border-radius: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-img img, .top-kanyuu__kanyuu-img img {
    aspect-ratio: 330/200;
    border-radius: 0.8rem;
  }
}
.top-tenpo__tenpo-title, .top-kanyuu__kanyuu-title {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
}

.top-tenpo__tenpo-text, .top-kanyuu__kanyuu-text {
  width: 100%;
  max-width: 47.7434679335%;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-text, .top-kanyuu__kanyuu-text {
    max-width: 100%;
  }
}
.top-tenpo__tenpo-title span, .top-kanyuu__kanyuu-title span {
  margin-top: -0.3rem;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  display: block;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-title span, .top-kanyuu__kanyuu-title span {
    display: none;
  }
}
.top-tenpo__tenpo-text p, .top-kanyuu__kanyuu-text p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-text p, .top-kanyuu__kanyuu-text p {
    margin-top: 1rem;
  }
}
.top-tenpo__tenpo-btn, .top-kanyuu__kanyuu-btn {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-btn, .top-kanyuu__kanyuu-btn {
    margin-top: 1.2rem;
    margin-left: auto;
    padding: 0.4rem 0;
    width: 14rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 2rem;
  }
}
.top-tenpo__tenpo-btn {
  color: #f5a100;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-btn {
    color: #fff;
    background-color: #f5a100;
  }
}
.top-kanyuu__kanyuu-btn {
  color: #e8340d;
}

@media screen and (max-width: 767px) {
  .top-kanyuu__kanyuu-btn {
    color: #fff;
    background-color: #f65a37;
  }
}
.top-tenpo__tenpo-btn::after, .top-kanyuu__kanyuu-btn::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-btn::after, .top-kanyuu__kanyuu-btn::after {
    width: 1.8rem;
    height: 2.4rem;
  }
}
.top-tenpo__tenpo-btn::after {
  background-image: url(../images/common/circle-arrow__yellow2.webp);
}

@media screen and (max-width: 767px) {
  .top-tenpo__tenpo-btn::after {
    background-image: url(../images/common/circle-arrow__yellow.webp);
  }
}
.top-kanyuu__kanyuu-btn::after {
  background-image: url(../images/common/circle-arrow__red2.webp);
}

@media screen and (max-width: 767px) {
  .top-kanyuu__kanyuu-btn::after {
    background-image: url(../images/common/circle-arrow__red.webp);
  }
}
.top-tenpo__tenpo a:hover .top-tenpo__tenpo-img img, .top-kanyuu__kanyuu a:hover .top-kanyuu__kanyuu-img img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

/*-------------------------------
top-tenpo__content-bottom
-------------------------------*/
.top-tenpo__content-bottom, .top-kanyuu__content-bottom {
  margin-top: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

@media screen and (max-width: 767px) {
  .top-tenpo__content-bottom, .top-kanyuu__content-bottom {
    margin-top: 2.4rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top-tenpo__zirei, .top-tenpo__faq, .top-kanyuu__zirei, .top-kanyuu__faq {
    padding: 0.8rem;
    background-color: #fff;
    border-radius: 0.8rem;
  }
}
.top-tenpo__zirei a:hover, .top-tenpo__faq a:hover, .top-kanyuu__zirei a:hover, .top-kanyuu__faq a:hover {
  opacity: 1;
}

.top-tenpo__zirei-img, .top-tenpo__faq-img, .top-kanyuu__zirei-img, .top-kanyuu__faq-img {
  width: 100%;
  max-width: 40rem;
  border-radius: 1.6rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .top-tenpo__zirei-img, .top-tenpo__faq-img, .top-kanyuu__zirei-img, .top-kanyuu__faq-img {
    border-radius: 0.8rem;
  }
}
.top-tenpo__zirei-img img, .top-tenpo__faq-img img, .top-kanyuu__zirei-img img, .top-kanyuu__faq-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 400/260;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .top-tenpo__zirei-img img, .top-tenpo__faq-img img, .top-kanyuu__zirei-img img, .top-kanyuu__faq-img img {
    aspect-ratio: 160/100;
  }
}
.top-tenpo__zirei p, .top-tenpo__faq p, .top-kanyuu__zirei p, .top-kanyuu__faq p {
  margin-top: 2rem;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .top-tenpo__zirei p, .top-tenpo__faq p, .top-kanyuu__zirei p, .top-kanyuu__faq p {
    margin-top: 0.8rem;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.top-tenpo__zirei p span, .top-tenpo__faq p span, .top-kanyuu__zirei p span, .top-kanyuu__faq p span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.8rem;
}

@media screen and (max-width: 767px) {
  .top-tenpo__zirei p span, .top-tenpo__faq p span, .top-kanyuu__zirei p span, .top-kanyuu__faq p span {
    gap: 1rem;
  }
}
.top-tenpo__zirei p span::after, .top-tenpo__faq p span::after, .top-kanyuu__zirei p span::after, .top-kanyuu__faq p span::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .top-tenpo__zirei p span::after, .top-tenpo__faq p span::after, .top-kanyuu__zirei p span::after, .top-kanyuu__faq p span::after {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.top-tenpo__zirei p span::after, .top-tenpo__faq p span::after {
  background-image: url(../images/common/circle-arrow__yellow2.webp);
}

.top-kanyuu__zirei p span::after, .top-kanyuu__faq p span::after {
  background-image: url(../images/common/circle-arrow__red2.webp);
}

.top-tenpo__zirei a:hover .top-tenpo__zirei-img img, .top-tenpo__faq a:hover .top-tenpo__faq-img img, .top-kanyuu__zirei a:hover .top-kanyuu__zirei-img img, .top-kanyuu__faq a:hover .top-kanyuu__faq-img img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/*-------------------------------
voice
-------------------------------*/
.voice {
  padding: 12rem 0;
  background-color: #ffe8e8;
}

@media screen and (max-width: 767px) {
  .voice {
    padding: 0;
    background-color: initial;
  }
}
.voice__inner.inner {
  max-width: 104.4rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .voice__inner.inner {
    padding: 5.6rem 1.75rem;
  }
}
/*-------------------------------
voice__content 共通項
-------------------------------*/
.voice__content {
  padding: 6rem 7.8rem;
  background-color: #fff;
  border-radius: 2.4rem;
}

@media screen and (max-width: 767px) {
  .voice__content {
    margin: 0 auto;
    padding: 0;
    max-width: 50rem;
    border-radius: 0;
  }
}
.voice__content-inner {
  margin: 0 auto;
  max-width: 70rem;
}

.voice__img {
  margin-top: 4rem;
  max-width: 70rem;
}

.voice__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 700/363;
}

.voice__text-list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

.voice__item-title {
  padding: 0.5rem 2rem;
  font-size: 2.4rem;
  line-height: 1.2083333333;
  font-weight: 700;
  border-left: 0.8rem solid #e8340d;
  border-bottom: 1px solid #e8340d;
}

@media screen and (max-width: 767px) {
  .voice__item-title {
    padding: 0.2rem 1rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.voice__text {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .voice__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
/*-------------------------------
voice__content 施設担当者
-------------------------------*/
@media screen and (max-width: 767px) {
  .voice__inner.inner.-shisetsu {
    background-color: #ffe8e8;
  }
}
@media screen and (max-width: 767px) {
  .voice__content.-shisetsu {
    background-color: #ffe8e8;
  }
}
/*-------------------------------
voice__content 運営会社
-------------------------------*/
.voice__inner.inner.-unei {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .voice__inner.inner.-unei {
    margin-top: 0;
  }
}
.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}
/*# sourceMappingURL=style.css.map */