@charset "utf-8";

/* ブレークポイントで要素を表示・非表示 */
.show-pc {
  display: block;
}

.show-tab {
  display: none;
}

.show-sp {
  display: none;
}

.pc-none {
  display: none;
}

.tab-none {
  display: block;
}

.sp-none {
  display: block;
}

.sp-none-inline {
  display: inline;
}

@media (max-width: 1024px) {
  .show-pc {
    display: none;
  }

  .pc-none {
    display: block;
  }

  .show-tab {
    display: block;
  }

  .tab-none {
    display: none;
  }
}

@media (max-width: 750px) {
  .show-sp {
    display: block;
  }

  .sp-none {
    display: none;
  }

  .sp-none-inline {
    display: none;
  }
}

/* ---------------------------
    基本設定
----------------------------- */
/* html {
  font-size: 0.694444vw !important;
} */

html {
  font-size: 10px !important;
  min-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 750px) {
  html {
    font-size: 2.5641025641vw !important;
    min-width: 0;
  }
}

/* ---------------------------
    基本フォント・カラー設定
----------------------------- */
:root {
  --font-main: "Zen Kaku Gothic New", sans-serif;
  --font-strong: "Shippori Mincho B1", serif;
  --font-latin: "Oswald", sans-serif;
  --color-main: #F55D3F;
  --color-light: #FFFCFA;
  --color-base: #342723;
  --color-light-blue: #4AA6E7;
}

/* ベースフォント設定 */
body {
  font-family: var(--font-main);
  font-size: 1.4rem;
  letter-spacing: 0.07rem;
  width: 100%;
  /* 横スクロール防止 */
  overflow-x: hidden;
  /* 英単語の途中で改行 */
  word-break: break-all;
  color: var(--color-base);
  background: #F9F4F3;
  position: relative;
}

main,
footer {
  position: relative;
  z-index: 2;
}


.font-strong {
  font-family: var(--font-strong);
}

.font-latin {
  font-family: var(--font-latin);
}

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
}

/* ---------------------------
    header
----------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  pointer-events: none;
  transition: 0.6s ease;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 1.7rem 2.7rem 7.8rem 3.2rem;
  opacity: 0.001;
  animation: fadeIn 1.8s forwards;
  animation-delay: 3s;
}

.header.header__hidden {
  transform: translateY(-100%);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFFCFA 8.65%, rgba(255, 252, 250, 0.00) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity .4s ease-in-out;
}

.header.active,
.header.active::after {
  animation: none;
  opacity: 1;
}

.header.is-mv {
  background: transparent;
  opacity: 1;
}

.header.is-mv::after {
  opacity: 0;
}

.header.animation-none {
  animation: none;
  opacity: 1;
}

.header a {
  transition: 0.5s;
}

.header__logo {
  pointer-events: all;
  display: block;
  position: relative;
  z-index: 999;
}

.header__logo a:hover {
  opacity: 0.5;
}

.header__nav {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-left: auto;
  pointer-events: all;
}

.header__link {
  padding: 1.8rem 2.5rem;
  color: var(--color-light);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.16rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-base);
  background: var(--color-base);
}

.header__link:hover {
  background: var(--color-light);
  color: var(--color-base);
}


/* ハンバーガー */
.hamburger {
  width: 5.1rem;
  height: 5.1rem;
  position: relative;
  background: var(--color-base);
  border-radius: 50%;
  cursor: pointer;
}

.hamburger__border {
  display: block;
  width: 60%;
  height: 0.4rem;
  background-color: var(--color-light);
  position: absolute;
  left: 50%;
  transition: all 0.3s ease-in-out;
  border-radius: 3rem;
  transform: translateX(-50%);
}

.hamburger__border.is-active {
  background-color: #fafafa;
}

.hamburger__border--01 {
  top: 30%;
  background: #F1253A;
}

.hamburger__border--02 {
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.hamburger__border--03 {
  bottom: 30%;
}

.hamburger__border--01.is-active {
  top: 50%;
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

.hamburger__border--02.is-active {
  opacity: 0;
}

.hamburger__border--03.is-active {
  bottom: 50%;
  transform: translateY(50%) translateX(-50%) rotate(-45deg);
}

.hamburger__nav {
  position: fixed;
  top: 10.5rem;
  right: 2.7rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 23.2rem;
  height: 36.7rem;
  border-radius: 1.5rem;
  background: var(--color-light);
  box-shadow: 0 0 10px 0 rgba(76, 0, 0, 0.30);
  padding: 3.4rem 3.1rem;
  transition: .5s;
  display: flex;
  flex-direction: column;
}

.hamburger__nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.hamburger__nav-link {
  display: block;
  padding: 1.6rem 0;
  border-bottom: 1px solid #A8A8A8;
  font-size: 1.6rem;
  font-weight: 700;
}

.hamburger__nav-link:hover {
  opacity: 0.5;
}

.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  z-index: 888;
}

.header__overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.hamburger__nav-box {
  margin-top: 3.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}

.hamburger__nav-box a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
}

.hamburger__nav-box a:hover {
  opacity: 0.5;
}

.hamburger__nav-box a::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 1.1rem solid #F55D3F;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .header {
    padding: 1.85rem 1.1rem 9rem 1.2rem;
  }

  .header__logo {
    width: 4.3rem;
    height: 4rem;
  }

  .header__logo img {
    width: 100%;
    height: auto;
  }

  .header__nav {
    gap: 0.7rem;
  }

  .header__link {
    padding: 0;
    font-size: 1.2rem;
    width: 11.7rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__link:hover {
    background: var(--color-light);
    color: var(--color-base);
  }


  /* ハンバーガー */
  .hamburger {
    width: 4.1rem;
    height: 4.1rem;
  }

  .hamburger__border {
    height: 0.3rem;
  }

  .hamburger__border--01 {
    top: 32%;
    background: #F1253A;
  }

  .hamburger__border--03 {
    bottom: 32%;
  }

  .hamburger__nav {
    top: 8rem;
    height: 41rem;
  }

  .hamburger__nav-link {
    padding: 2.4rem 0;
  }

  .hamburger__nav li:first-child .hamburger__nav-link {
    padding-top: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.001;
  }

  100% {
    opacity: 1;
  }
}

/* ---------------------------
  共通
----------------------------- */
.section__title {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.section__title .en {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__title h2 {
  font-size: 5.3rem;
  font-weight: 700;
  line-height: 1.26;
}

.section__text {
  margin-top: 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.53;
}

.bg-white {
  background: #fff;
}

@media screen and (max-width: 750px) {
  .section__title {
    gap: 0.6rem;
  }

  .section__title .en {
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
  }

  .section__title h2 {
    font-size: 3.3rem;
    line-height: 1.51;
  }

  .section__text {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 2.42;
  }
}

/* ---------------------------
  mv
----------------------------- */

.mv {
  width: 100%;
  height: 100dvh;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43.2%;
  opacity: 0;
  animation: fadeInUpSmooth 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.mv__title img {
  width: 100%;
  height: auto;
}

@keyframes fadeInUpSmooth {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(50px) scale(0.95);
  }

  60% {
    opacity: 0.8;
    transform: translate(-50%, -50%) translateY(-5px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
}

/* アイコン */
.mv__icon {
  position: absolute;
  height: auto;
}

.mv__icon img {
  width: 100%;
  height: auto;
}

.mv__icon--01 {
  width: 8.7%;
  top: 8.4%;
  left: 25.4%;
  opacity: 0;
  animation: slideDown 1.3s forwards;
  animation-delay: 1s;
}

.mv__icon--02 {
  width: 36%;
  top: 0;
  left: 40.6%;
  opacity: 0;
  animation: slideDown 1.3s forwards;
  animation-delay: 1s;

}

.mv__icon--03 {
  width: 12%;
  top: 14.6%;
  right: 11.1%;
  opacity: 0;
  animation: slideLeft 1.3s forwards;
  animation-delay: 1s;
}

.mv__icon--04 {
  width: 26%;
  top: 54%;
  left: 0;
  opacity: 0;
  animation: slideRight 1.3s forwards;
  animation-delay: 1s;
}

.mv__icon--05 {
  width: 7%;
  bottom: -5%;
  left: 0;
  opacity: 0;
  animation: slideRight 1.3s forwards;
  animation-delay: 1s;
}

.mv__icon--06 {
  width: 26.2%;
  bottom: -19%;
  left: 29.4%;
  opacity: 0;
  animation: slideUp 1.3s forwards;
  animation-delay: 1s;
}

.mv__icon--07 {
  width: 7.4%;
  bottom: 21.2%;
  right: 28%;
  opacity: 0;
  animation: slideUp 1.3s forwards;
  animation-delay: 1s;
}

.mv__icon--08 {
  width: 28.1%;
  bottom: -11%;
  right: 0;
  opacity: 0;
  animation: slideLeft 1.3s forwards;
  animation-delay: 1s;
}

.mv__icon--09 {
  display: none;
}

/* テキスト */
.mv__text {
  position: absolute;
  height: auto;
}

.mv__text img {
  width: 100%;
  height: auto;
}

.mv__text--01 {
  top: 26%;
  left: 1.8%;
  width: 19.9%;
  opacity: 0;
  animation: slideRight 1.3s forwards;
  animation-delay: 1.2s;
}

.mv__text--02 {
  top: -6.5%;
  left: 14%;
  width: 6.7%;
  opacity: 0;
  animation: slideDown 1.3s forwards;
  animation-delay: 1.2s;
}

.mv__text--03 {
  top: -0.5%;
  left: 37.5%;
  width: 4%;
  opacity: 0;
  animation: slideDown 1.3s forwards;
  animation-delay: 1.2s;
}

.mv__text--04 {
  top: 14%;
  right: 2%;
  width: 6%;
  opacity: 0;
  animation: slideLeft 1.3s forwards;
  animation-delay: 1.2s;
}

.mv__text--05 {
  top: 44%;
  right: 4.5%;
  width: 19.9%;
  opacity: 0;
  animation: slideLeft 1.3s forwards;
  animation-delay: 1.2s;
}

.mv__text--06 {
  bottom: 2.5%;
  left: 10%;
  width: 15.3%;
  opacity: 0;
  animation: slideRight 1.3s forwards;
  animation-delay: 1.2s;
}

.mv__text--07 {
  bottom: -1%;
  right: 38%;
  width: 3.8%;
  opacity: 0;
  animation: slideUp 1.3s forwards;
  animation-delay: 1.2s;
}

/* 人 */
.mv__human {
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1.6s forwards;
  animation-delay: 2.2s;
}

.mv__human img {
  width: 100%;
  height: auto;
}

.mv__human--01 {
  width: 101%;
  top: 0;
}

.mv__human--02 {
  width: 100%;
  top: 0;
}

.mv__human--03 {
  width: 87.5%;
  top: -64%;
  left: 56%;
}

.mv__human--04 {
  width: 103.5%;
  top: -20%;
}

.mv__human--05 {
  width: 95%;
  top: -0.7%;
  left: inherit;
  right: 0%;

  transform: translateX(0);
}

/* アニメーション設定 */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 16:9比率の画面（Windows一般的） */
@media screen and (min-aspect-ratio: 16/9) {
  .mv__title {
    width: 38%;
  }

  .mv__icon--01 {
    width: 7.7%;
  }

  .mv__icon--02 {
    width: 30%;
    top: -1%;
  }

  .mv__icon--03 {
    width: 9%;
    right: 15%;
  }

  .mv__icon--04 {
    width: 24.5%;
    top: 52%;
  }

  .mv__icon--05 {
    width: 6.5%;
    bottom: -8%;
  }

  .mv__icon--06 {
    width: 26%;
    bottom: -31%;
    left: 28%;
  }

  .mv__icon--07 {
    width: 7%;
    bottom: 20%;
    right: 27.5%;
  }

  .mv__icon--08 {
    width: 25%;
    bottom: -16%;
    right: 0;
  }

  .mv__text--01 {
    top: 23.5%;
    left: 3.4%;
    width: 14%;
  }

  .mv__text--02 {
    top: -5%;
    left: 13%;
    width: 4.5%;
  }

  .mv__text--03 {
    top: -0.5%;
    left: 37.5%;
    width: 3.4%;
  }

  .mv__text--04 {
    top: 13%;
    right: 3.5%;
    width: 4.5%;
  }

  .mv__text--05 {
    top: 42%;
    right: 6%;
    width: 14%;
  }

  .mv__text--06 {
    bottom: 0.5%;
    left: 9%;
    width: 12%;
  }

  .mv__text--07 {
    width: 3.4%;
    right: 39%;
  }
}

/* レスポンシブ */
@media screen and (max-width:1440px) {
  .mv {
    height: 890px;
  }
}

@media screen and (max-width: 750px) {
  .mv {
    height: 94.5rem;
    width: 100%;
    overflow: hidden;
  }

  .mv__title {
    top: 45rem;
    left: 50%;
    width: 32.4rem;
  }

  .mv__icon--01 {
    width: 7rem;
    top: 30.8rem;
    left: 19rem;
  }

  .mv__icon--02 {
    width: 30rem;
    top: 1rem;
    left: 9rem;
  }

  .mv__icon--03 {
    width: 8rem;
    top: 27rem;
    right: 2rem;
  }

  .mv__icon--04 {
    width: 17rem;
    top: 24rem;
  }


  .mv__icon--05 {
    width: 11rem;
    left: -4rem;
    top: 81rem;
  }

  .mv__icon--06 {
    width: 15rem;
    bottom: inherit;
    top: 55.5rem;
    left: -1rem;
    animation: slideRight 1.3s forwards;
    animation-delay: 1s;

  }

  .mv__icon--07 {
    width: 5rem;
    bottom: inherit;
    top: 55.5rem;
    left: 20rem;
  }

  .mv__icon--08 {
    width: 23rem;
    bottom: inherit;
    top: 62rem;
  }

  .mv__icon--09 {
    display: block;
    top: 41rem;
    left: 0;
    width: 1.4rem;
    opacity: 0;
    animation: slideRight 1.3s forwards;
    animation-delay: 1.2s;
  }

  .mv__text--01 {
    top: 10rem;
    left: -0.8rem;
    width: 13rem;
  }

  .mv__text--02 {
    top: -3rem;
    left: 8rem;
    width: 4rem;
  }

  .mv__text--03 {
    display: none;
  }

  .mv__text--04 {
    top: 54rem;
    width: 12rem;
    right: -1rem;
  }

  .mv__text--05 {
    top: 24rem;
    right: 0;
    width: 9rem;
  }

  .mv__text--06 {
    top: 73.5rem;
    bottom: inherit;
    left: -4.5rem;
    width: 12.5rem;
  }

  .mv__text--07 {
    bottom: inherit;
    right: 24.2rem;
    top: 72rem;
    width: 5rem;
  }

  .mv__human--01 {
    width: 120%;
    top: 21%;
    left: 62%;
    right: 3%;
  }
}

/* ---------------------------
    イントロ
----------------------------- */

.intro {
  font-size: 0.694444vw !important;
  position: relative;
  padding: 36rem 0 23.5rem;
  text-align: center;
}

.intro__text {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 4.62;
}

.intro__img {
  position: absolute;
}

.intro__img img {
  width: 100%;
  height: auto;
}

.intro__img--01 {
  width: 22.7%;
  top: 17rem;
  left: 0;
}

.intro__img--02 {
  width: 33.2%;
  top: 8rem;
  right: 0;
}

.intro__img--03 {
  width: 32.5%;
  top: 30rem;
  left: 0;

}

.intro__img--04 {
  width: 22.9%;
  top: 55rem;
  right: 0;
}

/* テキストスライダー */

.text-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.text-slider .swiper-slide img {
  width: 100%;
  height: auto;
}

/* 16:9比率の画面（Windows一般的） */
@media screen and (min-aspect-ratio: 16/9) {
  .intro {
    padding: 40rem 0 23.5rem;
  }

  .intro__img--01 {
    top: 20rem;
  }

  .intro__img--02 {
    top: 12rem;
  }

  .intro__img--03 {
    top: 32rem;
  }

  .intro__img--04 {
    top: 60rem;
  }

}

@media screen and (max-width:1440px) {
  .intro {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 750px) {
  .intro {
    padding: 7rem 0 30rem;
  }

  .intro__text {
    text-align: center;
    font-size: 1.4rem;
    line-height: 3.21;
  }

  .intro__img--01 {
    width: 5.3rem;
    top: 3rem;
  }

  .intro__img--02 {
    top: 1rem;
    width: 10.8rem;
  }

  .intro__img--03 {
    width: 20rem;
    top: 42rem;
  }

  .intro__img--04 {
    width: 16rem;
    top: 50rem;
  }
}

/* ---------------------------
    数字で見るスシロー
----------------------------- */
.number {
  margin-top: 17rem;
}

.number__inner {
  position: relative;
  max-width: 1052px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 33rem 1fr;
  gap: 8.6rem;
}

.number__left {
  width: 100%;
  height: fit-content;
  position: sticky;
  top: 20%;
}



.number__card-list {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding-bottom: 10rem;
}

.number__card {
  width: 100%;
  height: 38rem;
  padding: 4.5rem 4.5rem 2rem 6.5rem;
  border-radius: 1.8rem;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(76, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.number__card-layout {
  display: flex;
  align-items: center;
}

.number__card-title {
  flex: 1;
  font-size: 2.4rem;
  font-weight: 700;
}

.number__card-img {
  width: 50%;
}

.number__card-img img {
  width: 100%;
  height: auto;
}

.number__card:nth-child(2) .number__card-img {
  width: 67%;
}

.number__card-text {
  margin-top: 2rem;
  text-align: right;
  color: #7E7E7E;
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (max-width: 750px) {
  .number {
    margin-top: 13rem;
    padding: 0 2rem;
  }

  .number__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .number__left {
    position: relative;
    top: 0;
  }

  .number__card-list {
    gap: 2rem;
    padding-bottom: 0;
  }

  .number__card {
    padding: 3rem 2.2rem 1.5rem;
    height: 27.2rem;
    top: 15%;
  }

  .number__card-layout {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .number__card-title {
    flex: none;
    font-size: 1.8rem;
  }

  .number__card-img {
    width: 52%;
  }

  .number__card-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ---------------------------
    活躍を支える制度
----------------------------- */
.benefit {
  margin-top: 18rem;
  padding-bottom: 19rem;
  overflow: hidden;
}

.benefit__inner {
  position: relative;
  max-width: 1054px;
  margin: 0 auto;
}


.benefit__img {
  margin-top: 4rem;
}

.benefit__img img {
  width: 100%;
  height: auto;
}

.benefit__list-inner {
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 60rem;
  overflow: hidden;
}

.benefit__list-inner.open {
  max-height: 145rem;
}

.benefit__list-inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  display: block;
  background: linear-gradient(0deg, #F9F4F3 19.25%, rgba(249, 244, 243, 0.00) 66.35%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 1;
}

.benefit__list-inner.open::before {
  opacity: 0;
}

.benefit__list {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem 1.7rem;
}

.benefit__item {
  height: 27rem;
  border-radius: 1.5rem;
  background: #FFF;
  padding: 3rem 2.1rem 3.3rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.benefit__item:nth-child(1) .benefit__item-img {
  margin-top: 1.5rem;
}

.benefit__item:nth-child(4) .benefit__item-img {
  margin-top: 1.5rem;
}

.benefit__item:nth-child(11) .benefit__item-img {
  margin-top: 1.5rem;
}

.benefit__item:nth-child(12) .benefit__item-img {
  margin-top: 1.5rem;
}

.benefit__item:nth-child(13) .benefit__item-img {
  margin-top: 1rem;
}

.benefit__item:nth-child(14) .benefit__item-img {
  margin-top: 1rem;
}

.benefit__item:nth-child(15) .benefit__item-img {
  margin-top: 1rem;
}

.benefit__item:nth-child(16) .benefit__item-img {
  margin-top: 1.5rem;
}

.benefit__item-contents {
  height: 11rem;
}

.benefit__item-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.benefit__item-text {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.92;
}

.benefit__item-text--small {
  margin-top: 1rem;
  color: #7E7E7E;
  text-align: right;
  font-size: 1rem;
  font-weight: 500;
}

.benefit__bottomItem {
  margin-top: 2rem;
  padding: 4.2rem 5.5rem 4.2rem 5.2rem;
  border-radius: 1.5rem;
  background: #FFF;
  display: grid;
  grid-template-columns: 32.5rem 1fr;
  align-items: center;
  gap: 4rem;
}

.benefit__bottomItem-left {
  display: grid;
  grid-template-columns: 9rem 1fr;
  align-items: center;
  gap: 2rem;
}

.benefit__bottomItem-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.benefit__bottomItem-right {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.92;
  /* 192.857% */
}

@media screen and (max-width:750px) {
  .benefit {
    margin-top: 20rem;
    padding: 0 2rem;
  }

  .benefit__img {
    overflow: scroll;
    position: relative;
    width: calc(100% + 4rem);
    left: -2rem;
    padding-left: 2rem;
    padding-bottom: 1rem;
  }

  .benefit__img picture {
    display: block;
    width: 220%;
    padding-right: 2rem;
  }

  .benefit__imgwrapper {
    position: relative;
  }

  .benefit__indicator {
    pointer-events: none;
    position: absolute;
    top: -0.1rem;
    right: -2rem;
    width: 72%;
    height: 100%;
  }

  .benefit__indicator img {
    width: 100%;
    height: auto;
  }

  .benefit__list-inner {
    max-height: 96rem;
  }

  .benefit__list-inner.open {
    max-height: 455rem;
  }

  .benefit__list {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .benefit__item {
    height: 23.6rem;
    padding: 2.5rem 2.8rem;
  }

  .benefit__item:nth-child(1) .benefit__item-img {
    margin-top: 1rem;
  }

  .benefit__item:nth-child(4) .benefit__item-img {
    margin-top: 1rem;
  }

  .benefit__item:nth-child(11) .benefit__item-img {
    margin-top: 1rem;
  }

  .benefit__item:nth-child(13) .benefit__item-img {
    margin-top: 0.5rem;
  }

  .benefit__item:nth-child(14) .benefit__item-img {
    margin-top: 0.5rem;
  }

  .benefit__item:nth-child(15) .benefit__item-img {
    margin-top: 0;
  }



  .benefit__item-contents {
    height: 10.2rem;
  }

  .benefit__bottomItem {
    padding: 3.4rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit__bottomItem-left {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.8rem;
  }
}

/* 開閉ボタン */
.oac-button__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oac-button__wrapper:has(.oac-button__inner.open) {
  margin-bottom: 19rem;
}

.oac-button__inner {
  width: fit-content;
  position: absolute;
  top: -25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  cursor: pointer;
}

.oac-button__inner.open {
  top: 5rem;
}

.oac-button__wrapper button {
  position: relative;
  z-index: 5;
  border-radius: 6.3rem;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  padding: 1.8rem 0;
  width: 25.6rem;
  border: 1px solid transparent;
  transition: .5s;
  overflow: hidden;
}

.oac-button__wrapper button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-light);
  border-radius: 6.3rem;
  opacity: 0;
  transition: .5s;
  z-index: -1;
}

.oac-button__wrapper .oac-button__inner:hover button::before {
  opacity: 1;
}

.oac-button__wrapper .oac-button__inner:hover button {
  border: 1px solid #F55D3F;
}

.oac-button__wrapper button span {
  color: var(--color-light);
  position: relative;
  transition: .5s;
}

.oac-button__wrapper button span::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: .5s;
}

.oac-button__wrapper .oac-button__inner:hover button span::before {
  opacity: 1;
}

.oac-button__inner .open-icon {
  display: block;
}

.oac-button__inner .close-icon {
  display: none;
}

.oac-button__inner.open .close-icon {
  display: block;
}

.oac-button__inner.open .open-icon {
  display: none;
}

@media screen and (max-width: 750px) {

  .oac-button__wrapper button {
    font-size: 1.7rem;
    padding: 1.8rem 0;
    width: 18rem;
    height: 4.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .benefit__list-inner::before {
    left: -2rem;
    width: calc(100% + 4rem);
    height: 40%;
  }

}

/* ---------------------------
    店長テスト
----------------------------- */
.diagnosis {
  position: relative;
  background-image: url(../images/bgDiagnosis.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 240 / 233;
  background-color: transparent;
  z-index: 2;
}

.swiper-02 {
  width: 100%;
  height: 100%;
}

.swiper-02 .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.diagnosis__start {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76rem;
  height: 76rem;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.diagnosis__start::after {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 45%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 119.8rem;
  height: 100%;
  background-image: url(../images/imgDiagnosis01.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.diagnosis__start-title h2 {
  text-align: center;
  font-size: 9.8rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diagnosis__start-title p {
  margin-top: 1rem;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diagnosis__start-text {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.31;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diagnosis__start-btn {
  margin-top: 3.4rem;
  width: 25.6rem;
  padding: 1.8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-light);
  font-size: 2.5rem;
  font-weight: 500;
  border-radius: 6.3rem;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  position: relative;
  z-index: 5;
  border: 1px solid transparent;
  transition: .5s;
  overflow: hidden;
}

.diagnosis__start-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-light);
  border-radius: 6.3rem;
  opacity: 0;
  transition: .5s;
  z-index: -1;
}

.diagnosis__start-btn:hover::before {
  opacity: 1;
}

.diagnosis__start-btn:hover {
  border: 1px solid #F55D3F;
}

.diagnosis__start-btn span {
  color: var(--color-light);
  position: relative;
  transition: .5s;
}

.diagnosis__start-btn span::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: .5s;
}

.diagnosis__start-btn:hover span::before {
  opacity: 1;
}

/* 診断コンテンツ */
.back-btn {
  position: absolute;
  top: 45%;
  left: 5rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-content: center;
  align-items: center;
  color: var(--color-light);
  font-size: 1.6rem;
  font-weight: 500;
}

.diagnosis__contents {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 79.1rem;
  height: 30.8rem;
  border-radius: 1.5rem;
  background: var(--color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.diagnosis__contents::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  display: block;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.swiper-02 .swiper-slide:nth-child(2) .diagnosis__contents::after,
.swiper-02 .swiper-slide:nth-child(8) .diagnosis__contents::after {
  width: 140%;
  height: 100%;
  background-image: url(../images/imgDiagnosis02.webp);
}

.swiper-02 .swiper-slide:nth-child(3) .diagnosis__contents::after,
.swiper-02 .swiper-slide:nth-child(9) .diagnosis__contents::after {
  background-image: url(../images/imgDiagnosis03.webp);
  width: 150%;
  height: 120%;
  top: 46%;
  left: 49%;
}

.swiper-02 .swiper-slide:nth-child(4) .diagnosis__contents::after,
.swiper-02 .swiper-slide:nth-child(10) .diagnosis__contents::after {
  background-image: url(../images/imgDiagnosis04.webp);
  width: 140%;
  height: 120%;
  top: 48%;
  left: 48%;
}

.swiper-02 .swiper-slide:nth-child(5) .diagnosis__contents::after,
.swiper-02 .swiper-slide:nth-child(11) .diagnosis__contents::after {
  background-image: url(../images/imgDiagnosis05.webp);
  width: 137%;
  height: 93%;
  left: 45%;
}

.swiper-02 .swiper-slide:nth-child(6) .diagnosis__contents::after {
  background-image: url(../images/imgDiagnosis06.webp);
  width: 140%;
  height: 120%;
  left: 52%;
  top: 40%;
}

.swiper-02 .swiper-slide:nth-child(7) .diagnosis__contents::after {
  background-image: url(../images/imgDiagnosis07.webp);
  width: 150%;
  height: 100%;
  left: 48%;
  top: 55%;
}

.diagnosis__contents-title {
  text-align: center;
  font-size: 5.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diagnosis__contents-question {
  margin-top: 2rem;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 700;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* /チェックボックス */
/* チェックボックス・ラジオボタンを完全に隠す */
.diagnosis__contents-box {
  margin-top: 1.5rem;
}

.diagnosis__contents-checkWrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.diagnosis__contents-checkWrapper label {
  padding-top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.diagnosis__contents-check input[type="checkbox"],
.diagnosis__contents-check input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* コンテナのスタイル */
.diagnosis__contents-check {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}

/* カスタムチェックボックスの見た目（未チェック状態） - ボックスのみ */
.diagnosis__contents-check::before {
  content: '';
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='29' viewBox='0 0 30 29' fill='none'%3E%3Crect x='4.5' y='9.5' width='19' height='19' rx='2.5' fill='white' stroke='%23342723'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

/* チェックマークを重ねる */
.diagnosis__contents-check::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='22' viewBox='0 0 30 22' fill='none'%3E%3Cpath d='M2 9.11628L13.0169 20L28 2' stroke='url(%23paint0_linear_1400_2256)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1400_2256' x1='19.5681' y1='3.85294' x2='17.3357' y2='20.3167' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F55D3F'/%3E%3Cstop offset='1' stop-color='%23FC4D55'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* チェックされた状態 - チェックマークを表示 */
.diagnosis__contents-check.checked::after {
  opacity: 1;
}

/* ホバー効果 */
.diagnosis__contents-check:hover::before {
  opacity: 0.8;
  transform: scale(1.05);
  transition: all 0.2s ease;
}

/* /チェックボックス */

/* 診断プログレスバー */
.diagnosis__progress {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: none;
  width: 79.1rem;
  max-width: 80vw;
}

.diagnosis__progress-bar {
  position: relative;
}

/* プログレストラック（外枠の白いバー） */
.diagnosis__progress-track {
  width: 100%;
  height: 0.6rem;
  background: rgba(255, 252, 250, 0.3);
  border-radius: 0.3rem;
  overflow: hidden;
  position: relative;
}

/* プログレス塗りつぶし（グラデーションバー） */
.diagnosis__progress-fill {
  height: 100%;
  background: var(--color-light);
  border-radius: 0.3rem;
  width: 0%;
  transition: width 0.4s ease;
}

/* 結果セクション */
.diagnosis__completion {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}


.diagnosis__completion-text {
  color: var(--color-light);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.diagnosis__completion button {
  width: 25.6rem;
  padding: 1.8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.9rem;
  font-weight: 500;
  border-radius: 7.5rem;
  cursor: pointer;
  transition: .3s;
  margin: 0 auto;
}

.diagnosis__completion button:hover {
  transform: scale(1.05);
}

.diagnosis__completion-result {
  background: var(--color-light);
}

.diagnosis__completion-back {
  background: transparent;
  border: 0.2rem solid var(--color-light);
}

.diagnosis__completion .diagnosis__completion-result span {
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diagnosis__completion-back span {
  color: var(--color-light);
}

/* レスポンシブ対応 */
@media screen and (min-width: 1920px) {
  .diagnosis__progress {
    position: absolute;
    top: 56%;
  }
}

@media screen and (max-width: 1500px) {
  .diagnosis__progress {
    position: absolute;
    top: 59%;
  }
}

@media screen and (max-width: 750px) {
  .diagnosis {
    background-image: url(../images/bgDiagnosisSp.webp);
    aspect-ratio: 65 / 162;
  }

  .diagnosis__start {
    width: 49rem;
    height: 49rem;
  }

  .diagnosis__start::after {
    top: -12%;
    left: 50%;
    width: 80%;
    height: 126%;
    background-image: url(../images/imgDiagnosis01Sp.webp);
  }

  .diagnosis__start-title h2 {
    font-size: 5rem;
  }

  .diagnosis__start-title p {
    margin-top: 1rem;
    font-size: 1.8rem;
  }

  .diagnosis__start-text {
    margin: 2rem auto 0;
    font-size: 1.4rem;
    line-height: 1.87;
    width: 31rem;
  }

  .diagnosis__start-btn {
    margin-top: 2.4rem;
    width: 16rem;
    padding: 1.4rem 0;
    font-size: 1.7rem;
  }

  /* 診断コンテンツ */
  .back-btn {
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .back-btn svg {
    width: 4.9rem;
    height: 4.9rem;
  }

  .diagnosis__contents {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 3rem);
    height: 36.3rem;
    padding: 5rem 2.5rem;
    justify-content: start;
    font-size: 1.5rem;
  }

  .swiper-02 .swiper-slide:nth-child(2) .diagnosis__contents::after,
  .swiper-02 .swiper-slide:nth-child(8) .diagnosis__contents::after {
    top: 0;
    left: 48%;
    width: 105%;
    height: 45%;
    background-image: url(../images/imgDiagnosis02Sp.webp);
  }

  .swiper-02 .swiper-slide:nth-child(3) .diagnosis__contents::after,
  .swiper-02 .swiper-slide:nth-child(9) .diagnosis__contents::after {
    background-image: url(../images/imgDiagnosis03Sp.webp);
    top: 0;
    left: 50%;
    width: 110%;
    height: 55%;
  }

  .swiper-02 .swiper-slide:nth-child(4) .diagnosis__contents::after,
  .swiper-02 .swiper-slide:nth-child(10) .diagnosis__contents::after {
    background-image: url(../images/imgDiagnosis04Sp.webp);
    top: 0;
    left: 50%;
    width: 110%;
    height: 55%;
  }

  .swiper-02 .swiper-slide:nth-child(5) .diagnosis__contents::after,
  .swiper-02 .swiper-slide:nth-child(11) .diagnosis__contents::after {
    background-image: url(../images/imgDiagnosis05Sp.webp);
    top: 0;
    left: 48%;
    width: 105%;
    height: 45%;
  }

  .swiper-02 .swiper-slide:nth-child(6) .diagnosis__contents::after {
    background-image: url(../images/imgDiagnosis06Sp.webp);
    top: 0;
    left: 52%;
    width: 99%;
    height: 53%;
  }

  .swiper-02 .swiper-slide:nth-child(7) .diagnosis__contents::after {
    background-image: url(../images/imgDiagnosis07Sp.webp);
    top: 0;
    left: 48%;
    width: 112%;
    height: 45%;
  }

  .diagnosis__contents-title {
    font-size: 4rem;
  }

  .diagnosis__contents-question {
    font-size: 1.8rem;
  }

  .diagnosis__contents-checkWrapper {
    gap: 0.4rem;
  }

  .diagnosis__contents-checkWrapper label {
    line-height: 1.57;
    font-size: 1.4rem;
  }

  .diagnosis__completion {
    gap: 1.5rem;
  }

  .diagnosis__completion-icon {
    width: 6rem;
    height: 6rem;
  }

  .diagnosis__completion-text {
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
  }

  .diagnosis__completion button {
    width: 21.3rem;
    font-size: 2rem;
    font-weight: 700;
  }

  .diagnosis__progress {
    position: absolute;
    top: 67%;
    left: 43%;
  }

  .diagnosis__progress-track {
    width: 116%;
  }
}

/* /診断プログレスバー */

/* パララックスセクション */
.fixed__section {
  margin-top: -25rem;
  position: relative;
  width: 100%;
  height: calc(100dvh + 25rem);
}

.fixed-bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
}

.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../images/bgFixed.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
}

@media screen and (max-width: 750px) {
  .fixed__section {
    height: calc(75dvh + 25rem);
  }

  .fixed-bg {
    background-image: url(../images/bgFixedSp.webp);
    /* モバイルでのパフォーマンス向上 */
    background-attachment: scroll;
    /* fixedの代替 */

    /* iOS Safari対応 */
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;

    /* Android Chrome対応 */
    transform: translateZ(0);
  }
}

/* /パララックスセクション */
/* テキストスライダー */
.text-slider--02 {
  margin-top: -4%;
}

@media screen and (max-width: 750px) {
  .text-slider--02 {
    margin-top: -8%;
  }
}

/* /テキストスライダー */


/* ---------------------------
   先輩社員インタビュー
----------------------------- */
.interview {
  margin: 18rem 0;
  position: relative;
}

.interview__inner {
  position: relative;
  max-width: 1154px;
  margin: 0 auto;
}

.interview__tab {
  width: 100%;
  margin-top: 6rem;
}

.interview__tab-btnBox {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.interview__tab-btn {
  height: 5.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 500;
  border-radius: 1.5rem;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  transition: .5s;
}

.interview__tab-btn:hover {
  opacity: 0.7;
}

.interview__tab-btn.active:hover {
  opacity: 1;
}

.interview__tab-btn span {
  color: var(--color-light);

}

.interview__tab-btn.active {
  position: relative;
  background: transparent;
}

.interview__tab-btn.active::before {
  content: "";
  position: absolute;
  top: -4%;
  left: 50%;
  transform: translateX(-50%);
  width: 125%;
  height: 135%;
  background-image: url(../images/bgTab.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.interview__tab-btn:nth-child(1).active::before {
  left: 0;
  transform: translateX(0);
  width: 110%;
  background-size: contain;

  height: 135%;
  background-image: url(../images/bgTabLeft.svg);
}

.interview__tab-btn:nth-child(4).active::before {
  left: inherit;
  right: 0;
  transform: translateX(0);
  width: 110%;
  background-size: contain;

  height: 135%;
  background-image: url(../images/bgTabRight.svg);
}

.interview__tab-btn.active span {
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.swiper-04 {
  margin-top: 1.5rem;
  border-radius: 1.5rem;
  background: #FFF;
}

/* 1つ目のタブがアクティブな時 */
.interview__tab-btnBox:has(.interview__tab-btn:nth-child(1).active)~.swiper-04 {
  border-top-left-radius: 0;
}

/* 4つ目のタブがアクティブな時 */
.interview__tab-btnBox:has(.interview__tab-btn:nth-child(4).active)~.swiper-04 {
  border-top-right-radius: 0;
}

.swiper-04 .swiper-slide {
  border-radius: 1.5rem;
  background: #FFF;
  padding: 4.5rem 4.5rem 5.3rem 4.5rem;
  display: grid;
  grid-template-columns: 53.2% 1fr;
  gap: 5rem;
}

.interview__mov video {
  width: 100%;
  height: auto;
}


.interview__contents-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: #000 1px solid;
}

.interview__contents-title {
  font-size: 2.2rem;
  font-weight: 500;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.interview__contents-titleSub {
  font-size: 2.4rem;
  line-height: 1.45;
  font-weight: 700;
}

.interview__contents-name {
  font-size: 1.5rem;
  font-weight: 700;
}



.interview__contents-text {
  margin-top: 2rem;
  color: #342723;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
}

.interview__contents-btn {
  margin-top: 2rem;
  max-width: 184px;
  width: 100%;
  height: 4.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4rem;
  background: var(--color-base);
  color: var(--color-light);
  font-size: 1.5rem;
  font-weight: 500;
  border: var(--color-base) 1px solid;
  transition: .5s;
}

.interview__contents-btn:hover {
  background: var(--color-light);
  color: var(--color-base);
  border: var(--color-base) 1px solid;
}

/* リンクラベル */
.interview__link {
  position: absolute;
  top: 16rem;
  right: 0;
  padding: 3.8em 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem 0 0 1.5rem;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  border: 1px solid transparent;
  transition: .5s;
  overflow: hidden;
  text-decoration: none;
}

.interview__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-light);
  border-radius: 1.5rem 0 0 1.5rem;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}

.interview__link:hover::before {
  opacity: 1;
}

.interview__link:hover {
  border: 1px solid #F55D3F;
}

/* SVG画像の表示切り替え */
.interview__link-iconTop {
  position: relative;
  z-index: 2;
}

.interview__link-iconTop .interview__link-icon-default {
  transition: .3s;
}

.interview__link-iconTop .interview__link-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .3s;
}

.interview__link:hover .interview__link-iconTop .interview__link-icon-default {
  opacity: 0;
}

.interview__link:hover .interview__link-iconTop .interview__link-icon-hover {
  opacity: 1;
}

.interview__link-iconBottom {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.interview__link-iconBottom .interview__link-icon-default {
  transition: .3s;
}

.interview__link-iconBottom .interview__link-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .3s;
}

.interview__link:hover .interview__link-iconBottom .interview__link-icon-default {
  opacity: 0;
}

.interview__link:hover .interview__link-iconBottom .interview__link-icon-hover {
  opacity: 1;
}

.interview__link-textWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.interview__link-text {
  margin-top: 1.5rem;
  color: var(--color-light);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.22;
  position: relative;
  transition: .5s;
  z-index: 2;
}

.interview__link-text::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: .5s;
}

.interview__link:hover .interview__link-text::before {
  opacity: 1;
}

.interview__link-text-vertical {
  margin-top: 1rem;
  color: var(--color-light);
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  position: relative;
  transition: .5s;
  z-index: 2;
}

.interview__link-text-vertical::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: .5s;
  writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  white-space: nowrap;
  width: 100%;
}

.interview__link:hover .interview__link-text-vertical::before {
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .interview {
    margin-top: 13rem;
    padding: 0 2rem;
  }

  .interview__tab-btnBox {
    display: none;
  }

  .interview__tab-nav {
    margin-bottom: 3.2rem;
  }

  .interview__tab-nav__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    display: none;
  }

  .interview__tab-nav .swiper-button-next,
  .interview__tab-nav .swiper-button-prev {
    top: 40%;
    width: 4.7rem;
    height: 4.7rem;
  }

  .interview__tab-nav .swiper-button-next img,
  .interview__tab-nav .swiper-button-prev img {
    width: 100%;
    height: auto;
  }

  .interview__tab-nav__number {
    width: 22rem;
    height: 4.7rem;
    border-radius: 1.5rem;
    background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 2.3rem;
    letter-spacing: 0.07rem;
  }

  .swiper-04 .swiper-slide {
    grid-template-columns: 1fr;
    padding: 2.4rem 2.4rem 4.5rem;
    gap: 2.5rem;
  }

  .interview__contents-top {
    gap: 1rem;
    padding-bottom: 1.8rem;
  }

  .interview__contents-titleSub {
    font-size: 1.8rem;
  }

  .interview__contents-text {
    margin-top: 1.8rem;
  }

  .interview__contents-btn {
    margin-top: 2.4rem;
    width: 100%;
    max-width: 100%;
  }

  .interview__link {
    margin-top: 3rem;
    position: relative;
    top: 0;
    padding: 0;
    height: 9rem;
    padding: 0 3.2rem 0.8rem 2.8rem;
    flex-direction: row;
    border-radius: 1.5rem;
    background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
    border-radius: 15px;
    justify-content: start;
    align-items: center;
  }

  .interview__contents-name {
    font-size: 1.3rem;
  }

  .interview__link::before {
    border-radius: 0;
  }

  .interview__link-textWrapper {
    align-items: start;
    margin-left: 2rem;
  }

  .interview__link-text {
    margin-top: 0;
    font-size: 2.8rem;
  }

  .interview__link-text::before {
    width: 106%;
  }

  .interview__link-text-vertical {
    margin-top: 0;
    font-size: 1.5rem;
    writing-mode: inherit;
  }

  .interview__link-text-vertical::before {
    writing-mode: inherit;
  }

  .interview__link-iconTop {
    width: 4.65rem;
  }

  .interview__link-iconBottom {
    width: 2.2rem;
    margin-top: 0;
    margin-left: auto;
  }

  .interview__link-iconTop img,
  .interview__link-iconBottom img {
    width: 100%;
    height: auto;
  }

}

/* -------------- 
  footer
-----------------*/
.footer {
  background: var(--color-light);
  padding: 4.5rem 5.7rem 3rem;
}

.footer a {
  transition: .5s;
}

.footer a:hover {
  opacity: 0.5;
}

.footer__inner {
  max-width: 1326px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__bottom {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  justify-content: end;
}

.footer__links {
  display: flex;
  gap: 3.8rem;
  margin-left: 17rem;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
}

.footer__link::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 1.1rem solid #F55D3F;
  flex-shrink: 0;
}

.footer__text {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.14rem;
}

@media screen and (max-width: 750px) {
  .footer {
    padding: 4.2rem 2rem 3rem;
  }

  .footer__logo {
    width: 5.1rem;
  }

  .footer__logo img {
    width: 100%;
    height: auto;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 4rem;
    justify-content: center;
  }

  .footer__links {
    margin-left: 0;
    gap: 2.3rem;
  }

  .footer__text {
    font-size: 1.1rem;
    letter-spacing: 0.12rem;
  }
}

/* -------------- 
  店長診断結果ページ
-----------------*/
/* head */
.color-red {
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color-green {
  background: linear-gradient(259deg, #25B462 -4.85%, #23CDA9 100.03%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color-blue {
  background: linear-gradient(89deg, #5499E8 0.96%, #306DE1 99.04%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color-yellow {
  background: linear-gradient(270deg, #FFD656 -6.84%, #FFC422 89.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tencho {
  padding-top: 16.6rem;
}

.tencho__head {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 2.5rem;
  padding: 1.5rem;
}

.tencho--maguro .tencho__head {
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
}

.tencho--ebi .tencho__head {
  background: linear-gradient(259deg, #25B462 -4.85%, #23CDA9 100.03%);
}

.tencho--hamachi .tencho__head {
  background: linear-gradient(89deg, #5499E8 0.96%, #306DE1 99.04%);
}

.tencho--tamago .tencho__head {
  background: linear-gradient(270deg, #FFD656 -6.84%, #FFC422 89.83%);
}

.tencho__head-inner {
  border-radius: 2rem;
  background: var(--color-light);
  display: flex;
}

.tencho--ebi .tencho__head-inner {
  gap: 1rem;
}

.tencho--hamachi .tencho__head-inner {
  gap: 2rem;
}

.tencho__head-img {
  width: 50%;
}

.tencho--ebi .tencho__head-img {
  width: 48%;
}

.tencho--hamachi .tencho__head-img {
  width: 45%;
}

.tencho--tamago .tencho__head-img {
  width: 55%;
  position: relative;
  z-index: 2;
  margin-right: -5%;
}

.tencho__head-img img {
  width: 100%;
  height: auto;
}

.tencho__head-contents {
  width: 50%;
}

.tencho--tamago .tencho__head-contents {
  width: 55%;
  position: relative;
  z-index: 4;
}

.tencho__head-contents {
  padding: 3.5rem 7.4rem 5rem 0;
}

.tencho__head-headding {
  font-size: 1.5rem;
  font-weight: 700;
}

.tencho__head-tag {
  margin-top: 2rem;
  border-radius: 5rem;
  color: var(--color-light);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: start;
}

.tencho--maguro .tencho__head-tag {
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
}

.tencho--ebi .tencho__head-tag {
  background: linear-gradient(259deg, #25B462 -4.85%, #23CDA9 100.03%);
}

.tencho--hamachi .tencho__head-tag {
  background: linear-gradient(89deg, #5499E8 0.96%, #306DE1 99.04%);
}

.tencho--tamago .tencho__head-tag {
  background: linear-gradient(270deg, #FFD656 -6.84%, #FFC422 89.83%);
}

.tencho__head-title {
  margin-top: 1rem;
  font-size: 6.7rem;
  font-weight: 700;
  letter-spacing: -1.27rem;
}

.tencho__head-title span {
  letter-spacing: 0;
  padding-left: 1rem;
}

.tencho__head-box {
  margin-top: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #F55D3F;
  padding: 1.4rem 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.66;
  background: var(--color-light);
}

.tencho--maguro .tencho__head-box {
  border-color: #F55D3F;
}

.tencho--ebi .tencho__head-box {
  border-color: #25B462;
}

.tencho--hamachi .tencho__head-box {
  border-color: #5499E8;
}

.tencho--tamago .tencho__head-box {
  border-color: #FFD656;
}

@media screen and (max-width: 750px) {
  .tencho {
    padding: 8.9rem 0 0;
  }

  .tencho__head {
    border-radius: 1.5rem;
    padding: 0.6rem;
    height: 50rem;
    margin: 0 1.5rem;
  }


  .tencho__head-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    flex-direction: column !important;
  }

  .tencho__head-contents {
    padding: 3rem 3rem 0;
    width: 100% !important;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .tencho__head-headding {
    font-size: 1.54em;
  }

  .tencho__head-tag {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
  }

  .tencho__head-title {
    margin-top: 1rem;
    font-size: 4.4rem;
    letter-spacing: -0.84rem;
  }

  .tencho__head-title span {
    padding-left: 0.6rem;
  }

  .tencho__head-box {
    border-radius: 1.1rem;
    padding: 1.2rem 1.5rem;
    font-size: 1.3rem;
  }

  .tencho__head-img {
    width: 100% !important;
    height: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
    margin: 0 !important;
    z-index: 1;
  }

  .tencho__head-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
}

/* 特徴 */
.tencho__features {
  margin-top: 10rem;
}

.tencho__features-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.tencho__features-inner dt {
  border-radius: 0.6rem;
  color: var(--color-light);
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.tencho--maguro .tencho__features-inner dt {
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
}

.tencho--ebi .tencho__features-inner dt {
  background: linear-gradient(259deg, #25B462 -4.85%, #23CDA9 100.03%);
}

.tencho--hamachi .tencho__features-inner dt {
  background: linear-gradient(89deg, #5499E8 0.96%, #306DE1 99.04%);
}

.tencho--tamago .tencho__features-inner dt {
  background: linear-gradient(270deg, #FFD656 -6.84%, #FFC422 89.83%);
}


.tencho__features-inner dd {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.53;
}

.tencho__features-inner dd img {
  width: 100%;
  height: auto;
}

.tencho__features-inner dl:nth-child(2) dd {
  margin-top: 4.5rem;
}

@media screen and (max-width: 750px) {
  .tencho__features {
    margin-top: 7rem;
    padding: 0 4.5rem;
  }

  .tencho__features-inner {
    gap: 7.5rem;
  }

  .tencho__features-inner dt {
    font-size: 1.6rem;
  }

  .tencho__features-inner dd {
    font-size: 1.4rem;
    line-height: 2.42;
  }

  .tencho__features-inner dl:nth-child(2) dd {
    margin-top: 3.4rem;
  }
}

/* 診断内容説明 */
.tencho__desc {
  margin-top: 10rem;
  padding: 5.6rem 3rem;
}

.tencho--maguro .tencho__desc {
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
}

.tencho--ebi .tencho__desc {
  background: linear-gradient(259deg, #25B462 -4.85%, #23CDA9 100.03%);
}

.tencho--hamachi .tencho__desc {
  background: linear-gradient(89deg, #5499E8 0.96%, #306DE1 99.04%);
}

.tencho--tamago .tencho__desc {
  background: linear-gradient(270deg, #FFD656 -6.84%, #FFC422 89.83%);
}

.tencho__desc-inner {
  margin: 0 auto;
  max-width: 885px;
  display: flex;
  align-items: center;
  gap: 4.4rem;
}

.tencho__desc-img {
  width: 40%;
}

.tencho__desc-img img {
  width: 100%;
  height: auto;
}

.tencho__desc-contents {
  flex: 1;
  padding: 3.2rem 0;
  color: var(--color-light);
}

.tencho__desc-headings p {
  font-size: 1.8rem;
  font-weight: 700;
}

.tencho__desc-headings h2 {
  margin-top: 1.5rem;
  font-size: 3.1rem;
  font-weight: 700;
}

.tencho__desc-text {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.53;
}

@media screen and (max-width: 750px) {
  .tencho__desc {
    margin-top: 7rem;
    padding: 4rem 3rem;
  }

  .tencho__desc-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .tencho__desc-img {
    width: 80%;
  }

  .tencho__desc-contents {
    flex: none;
    padding: 0;
  }

  .tencho__desc-headings {
    text-align: center;
  }

  .tencho__desc-headings p {
    font-size: 1.6rem;
  }

  .tencho__desc-headings h2 {
    font-size: 2.4rem;
  }

  .tencho__desc-text {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 2.42;
  }
}

/* 診断結果シェアセクション */
.tencho__shear {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tencho__shear-title {
  position: relative;
  width: fit-content;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
}

.tencho__shear-title::before {
  content: '';
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: -3rem;
  display: block;
  width: 0.4rem;
  height: 3rem;
  background: #656565;
  border-radius: 3rem;
  transform: rotate(-25deg);
}

.tencho__shear-title::after {
  content: '';
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  right: -2.2rem;
  display: block;
  width: 0.4rem;
  height: 3rem;
  background: #656565;
  border-radius: 3rem;
  transform: rotate(25deg);
}

.tencho__shear-buttons {
  display: flex;
  gap: 1.3rem;
  margin: 2.6rem 0 0;
}

.tencho__shear-button {
  transition: .5s;
}

.tencho__shear-button:hover {
  opacity: 0.4;
}

/* コピーツールチップ */
/* ツールチップ基本スタイル */
.copy-tooltip {
  position: absolute;
  top: -45px;
  right: -10px;
  padding: 1.2rem 1.4rem;
  border-radius: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 成功時の背景色 */
.copy-tooltip.success {
  background: var(--color-light);
}

/* エラー時の背景色 */
.copy-tooltip.error {
  background: #f44336;
}

/* 表示アニメーション */
.copy-tooltip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 非表示アニメーション */
.copy-tooltip.hide {
  opacity: 0;
  transform: translateY(-10px) scale(0.9);
}

/* ツールチップの矢印 */
.copy-tooltip-arrow {
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
}

/* 成功時の矢印色 */
.copy-tooltip.success .copy-tooltip-arrow {
  border-top: 1.2rem solid var(--color-light);
}

/* エラー時の矢印色 */
.copy-tooltip.error .copy-tooltip-arrow {
  border-top: 1.2rem solid #f44336;
}

@media screen and (max-width: 750px) {
  .tencho__shear {
    margin-top: 7rem;
  }

  .tencho__shear-title {
    font-size: 2.1rem;
  }

  .tencho__shear-title::before {
    left: -2rem;
    width: 0.2rem;
    height: 2.5rem;
  }

  .tencho__shear-title::after {
    right: -1.7rem;
    width: 0.2rem;
    height: 2.5rem;
  }

  .tencho__shear-buttons {
    display: flex;
    gap: 1.3rem;
    margin: 2.6rem 0 0;
  }

  .tencho__shear-button {
    width: 5.8rem;
    height: 5.8rem;
  }

  .tencho__shear-button img {
    width: 100%;
    height: auto;
  }

  .tencho__shear-img img {
    width: 100%;
    height: auto;
  }
}

/* ボタンセクション */
.section__bottom {
  background: #F9F4F3;
  padding: 8.8rem 3rem;
}

.section__bottom-inner {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.5rem 3rem;
}

.section__bottom-link {
  width: calc(50% - 1.5rem);
  border-radius: 5rem;
  background: var(--color-base);
  padding: 2.2rem 0;
  color: var(--color-light);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
  border: var(--color-base) 1px solid;
}

.section__bottom-link:hover {
  background: var(--color-light);
  color: var(--color-base);
}

.section__bottom-link--strong {
  color: #F55D3F;
  background: var(--color-light);
  position: relative;
  z-index: 5;
  border: 1px solid #F55D3F;
  overflow: hidden;
  text-decoration: none;
}

.section__bottom-link--strong::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(191deg, #F55D3F 13.92%, #FC4D55 91.81%);
  border-radius: 6.3rem;
  opacity: 0;
  transition: .5s;
  z-index: -1;
}

.section__bottom-link--strong:hover::before {
  opacity: 1;
}

.section__bottom-link--strong:hover {
  border: 1px solid transparent;
}

.section__bottom-link--strong span {
  color: #F55D3F;
  position: relative;
  transition: .5s;
}

.section__bottom-link--strong span::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: var(--color-light);
  opacity: 0;
  transition: .5s;
}

.section__bottom-link--strong:hover span::before {
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .section__bottom {
    padding: 6rem 4rem;
  }

  .section__bottom-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .section__bottom-link {
    width: 100%;
    padding: 1.6rem 0;
    font-size: 1.7rem;
    letter-spacing: 0.09rem;
  }

}

/* -------------- 
  オブジェクト
-----------------*/
.object {
  position: absolute;
  height: auto;
}

.object img {
  width: 100%;
  height: auto;
}

.object--01 {
  top: 23.5%;
  left: 0;
}

.object--02 {
  top: 30%;
  left: 0;
}

.object--03 {
  top: 35%;
  left: 0;
}

.object--04 {
  top: 42.5%;
  left: 0;
}

.object--05 {
  top: 49%;
  left: 0;
}

.object--06 {
  top: 25%;
  right: 0;
}

.object--07 {
  top: 33%;
  right: 0;
}

.object--08 {
  top: 39.5%;
  right: 13%;
}

.object--09 {
  top: 43.5%;
  right: 0;
}

.object--10 {
  top: 53%;
  right: 0;
}

.object--11 {
  top: 91%;
  left: 0;
}

.object--12 {
  bottom: 0;
  left: 0;
}

.object--13 {
  top: 90%;
  right: 0;
}

.object--14 {
  top: 8%;
  left: 0;
}

.object--15 {
  bottom: 22%;
  left: 0;
}

.object--16 {
  top: 5%;
  right: 0;
}

.object--17 {
  bottom: 18%;
  right: 0;
}

@media screen and (max-width: 750px) {
  .object {
    display: none;
  }

  .object--18 {
    display: block;
    top: 21.6%;
    right: 0;
    width: 12.3rem;
  }

  .object--19 {
    display: block;
    top: 38%;
    left: 0;
    width: 8.3rem;
  }

  .object--20 {
    display: block;
    top: 39.4%;
    right: 0;
    width: 10.9rem;
  }

  .object--21 {
    display: block;
    top: 61%;
    left: 0;
    width: 6rem;
  }

  .object--22 {
    display: block;
    top: 61%;
    right: 0;
    width: 9.9rem;
  }

  .object--23 {
    display: block;
    bottom: 15.4%;
    right: 0;
    width: 14.3rem;
  }

  .object--24 {
    display: block;
    bottom: 4.4%;
    right: 0;
    width: 6.4rem;
  }

  .object--25 {
    display: block;
    bottom: 4.5%;
    left: 9%;
    width: 2.8rem;
  }

  .object--26 {
    display: block;
    bottom: 7%;
    left: 0;
    width: 8.3rem;
  }
}