@charset "UTF-8";
/* PCとSPの適用切り替え
--------------------------------- */
/* メディアクエリ調整関数
--------------------------------- */
/* 画面サイズ
--------------------------------- */
/* インデント
--------------------------------- */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* アメーバアニメーション
--------------------------------- */
@keyframes amoeba_rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes amoeba_round {
  0% {
    border-radius: 30% 70% 60% 40%/30% 40% 60% 70%;
  }
  25% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  50% {
    border-radius: 70% 30% 30% 70%/50% 70% 30% 50%;
  }
  75% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  100% {
    border-radius: 30% 70% 60% 40%/30% 40% 60% 70%;
  }
}
/* マーカー
--------------------------------- */
.marker {
  background: linear-gradient(transparent 60%, #FEE13C 0%);
}

/* dash線
--------------------------------- */
/* カラー
--------------------------------- */
.clr-pk {
  color: #FC7C7C;
}

.clr-gn1 {
  color: #8DC654;
}

.clr-gn2 {
  color: #59AA90;
}

.clr-gn3 {
  color: #66D81A;
}

.clr-yl1 {
  color: #FFBA00;
}

.clr-yl2 {
  color: #FFDE00;
}

.td-ul {
  text-decoration: underline;
}

/* リセット
--------------------------------- */
html, body {
  font-family: "Noto Sans JP", serif;
  color: #000;
  font-weight: 700;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body, h1, h2, h3, h4, h5, h6, p, ul, li, span, figure, header, footer, main, div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

ul, li {
  list-style: none;
}

img, figure {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a, a:visited {
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

/* ボタン
--------------------------------- */
.btn {
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover {
  opacity: 0.9;
}

/* 設定
--------------------------------- */
@media (min-width: 768px) {
  .link-disable-pc {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .link-disable-sp {
    pointer-events: none;
  }
}
html {
  font-size: 10px;
}

@media (max-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

@media (max-width: 767px) {
  .anchor {
    margin-top: max(-4rem, -56px);
    padding-top: min(4rem, 56px);
  }
}
/* pc sp
--------------------------------- */
.dp-pc {
  display: block;
}

.dp-sp {
  display: none;
}

.dp-pc-ib {
  display: inline-block;
}

.dp-pc-im {
  display: block !important;
}

.dp-sp-im {
  display: none !important;
}

@media (max-width: 767px) {
  .dp-pc {
    display: none;
  }
  .dp-pc-ib {
    display: none;
  }
  .dp-sp {
    display: block;
  }
  .dp-pc-im {
    display: none !important;
  }
  .dp-sp-im {
    display: block !important;
  }
}
.dp-n {
  display: none;
}

.dp-n-im {
  display: none !important;
}

/* font
--------------------------------- */
.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
}

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

/* アニメーション
--------------------------------- */
.triger-by-scroll-in {
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 0.5s, transform 0.5s;
}
.triger-by-scroll-in.on {
  opacity: 1;
  transform: translateY(0);
}

/* 波のアンダーライン
--------------------------------- */
.wave-underline {
  position: relative;
  width: 100%;
  height: auto; /* 波の高さに合わせて調整 */
}
.wave-underline::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.6rem;
  background-repeat: repeat-x;
  background-size: contain;
}
.wave-underline.red::before {
  background-image: url("../img/parts/wave-red.png");
}
.wave-underline.yellow::before {
  background-image: url("../img/parts/wave-yellow.png");
}
.wave-underline.green::before {
  background-image: url("../img/parts/wave-green.png");
}

@media (max-width: 767px) {
  .wave-underline::before {
    bottom: max(-0.35rem, -5px);
    height: min(0.4rem, 5.6px);
  }
}
/* header
--------------------------------- */
.header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2666666667);
}
.header a {
  transition: .2s;
}
.header a:hover {
  opacity: .7;
  transition: .2s;
}
.header .header__inner {
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
  min-height: 50px;
}
.header .header__inner .header__logo {
  width: 16rem;
}
.header .header__inner .header__text {
  margin: 0 auto 0 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #6B573E;
}
.header .header__inner .hamburger {
  display: none;
}
.header .header__inner .header__nav .header__nav-list {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.header .header__inner .header__nav .header__nav-list a, .header .header__inner .header__nav .header__nav-list button {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  padding: 10px 15px;
}
.header .header__inner .header__nav .header__nav-list .nav-top {
  position: relative;
  color: #6B573E;
}
.header .header__inner .header__nav .header__nav-list .nav-top::after {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  height: 0.2rem;
  width: 3rem;
  background-color: #8DC654;
}
.header .header__inner .header__nav .header__nav-list .nav-notice {
  color: #fff;
  background-color: #FC7C7C;
  border-radius: 1rem;
}
.header .header__inner .header__nav .header__nav-list .nav-buttons {
  position: relative;
  display: flex;
  margin-top: 1.8rem;
}
.header .header__inner .header__nav .header__nav-list .nav-buttons::before {
  position: absolute;
  content: "文字の大きさ";
  top: 0;
  left: 50%;
  transform: translate(-50%, -110%);
  width: calc(100% + 4rem);
  font-size: 1.2rem;
  text-align: center;
  color: #6B573E;
}
.header .header__inner .header__nav .header__nav-list .nav-buttons button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.8rem;
  height: 3.6rem;
  border: none;
  border-radius: 1rem;
  color: #B3A594;
  background-color: #EEEEEE;
  text-align: center;
}
.header .header__inner .header__nav .header__nav-list .nav-buttons button:first-child {
  margin-right: 0.7rem;
}
.header .header__inner .header__nav .header__nav-list .nav-buttons button.active {
  color: #6B573E;
  background-color: #FFBA00;
}
.header .header__inner .header__nav .header__nav-list .nav-buttons button:not(.active) {
  cursor: pointer;
  transition: .2s;
}
.header .header__inner .header__nav .header__nav-list .nav-buttons button:not(.active):hover {
  color: #6B573E;
  background-color: #FFBA00;
  transition: .2s;
}

@media (max-width: 767px) {
  .header {
    box-shadow: none;
  }
  .header .header__inner {
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3333333333);
    background-color: #fff;
    height: 6.2rem;
  }
  .header .header__inner .header__logo {
    width: 10rem;
  }
  .header .header__inner .header__text {
    margin-left: 0.6rem;
    font-size: 1.2rem;
  }
  .header .header__inner .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background-color: #FFDE00;
    border-radius: 50%;
  }
  .header .header__inner .hamburger span {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .header .header__inner .hamburger span::before, .header .header__inner .hamburger span::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translate(-50%, 0);
    width: 2rem;
    height: 0.2rem;
    background-color: #6B573E;
    transition: all 0.3s;
  }
  .header .header__inner .hamburger span::before {
    top: 1.9rem;
  }
  .header .header__inner .hamburger span::after {
    bottom: 1.9rem;
  }
  .header .header__inner .hamburger.active span::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header .header__inner .hamburger.active span::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    bottom: unset;
  }
  .header .header__inner .hamburger.active ~ .header__nav {
    right: 0;
  }
  .header .header__inner .header__nav {
    display: flex;
    z-index: -1;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.3s;
  }
  .header .header__inner .header__nav .header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 3rem;
    width: 100%;
  }
  .header .header__inner .header__nav .header__nav-list .nav-top {
    margin-bottom: 1rem;
  }
}
/* footer
--------------------------------- */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background-color: #6B573E;
}

@media (max-width: 767px) {
  .footer {
    height: min(5.4rem, 75.6px);
  }
  .footer p {
    font-size: min(1.2rem, 16.8px);
  }
}
/* CTA
--------------------------------- */
/* 装飾アイテム
--------------------------------- */
.round-wrap {
  width: 200px;
  height: 200px;
}
.round-wrap .rotate {
  width: 100%;
  height: 100%;
  animation: amoeba_rotate 30s linear infinite;
}
.round-wrap .rotate .round {
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 60% 40%/30% 40% 60% 70%;
  animation: amoeba_round 5s linear infinite;
  background-color: #FFFDBA;
}

@keyframes floatAndScale {
  0% {
    transform: translate(0, 0) scale(1, 1);
  }
  20% {
    transform: translate(2%, 2%) scale(1.1, 0.9);
  }
  40% {
    transform: translate(-2%, -2%) scale(0.9, 1.1);
  }
  60% {
    transform: translate(2%, -2%) scale(1.05, 0.95);
  }
  80% {
    transform: translate(-2%, 2%) scale(0.95, 1.05);
  }
}
@keyframes floatAndScale2 {
  0% {
    transform: translate(0, 0) scale(1, 1);
  }
  20% {
    transform: translate(1%, 1%) scale(1.01, 0.99);
  }
  40% {
    transform: translate(-1%, -1%) scale(0.99, 1.01);
  }
  60% {
    transform: translate(1%, -1%) scale(1.01, 0.99);
  }
  80% {
    transform: translate(-1%, 1%) scale(0.99, 1.01);
  }
}
.triger-by-scroll-in {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 1s, transform 1s;
}
.triger-by-scroll-in.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  background-image: radial-gradient(circle, #EFF9E5 20%, transparent 20%), radial-gradient(circle, #FFFDBA 20%, transparent 20%), radial-gradient(circle, #FFDBDB 20%, transparent 20%);
  background-size: 3rem 0.8rem;
  background-position: 0 0, 1rem 0, 2rem 0;
  height: 0.8rem;
  width: 100%;
}

.icon-recos {
  position: relative;
  top: 0.2rem;
  display: inline-block;
  width: 1.8rem;
  height: 2.3rem;
  margin: 0 0.3rem;
  background: url(../img/button/icon-recos.png) no-repeat center/contain;
}

@media (max-width: 767px) {
  .icon-recos {
    top: min(0.3rem, 4.2px);
    width: min(1.5rem, 21px);
    height: min(2rem, 28px);
    margin: 0 min(0.2rem, 2.8px);
  }
}
/* hero
--------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 76.1rem;
  aspect-ratio: 1366/760;
  padding-top: max(7rem, 50px);
  background: url(../img/common/mv-bg.png) no-repeat bottom center/cover;
}
.hero .container {
  position: relative;
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  height: 100%;
  max-height: 69.1rem;
  border-top: 0.1rem solid transparent;
}
.hero .container .mv-photo {
  overflow: hidden;
  z-index: 0;
  position: absolute;
  top: 3rem;
  right: 1.5rem;
  width: 88rem;
  height: 55.6rem;
  border-radius: 12rem;
}
.hero .container .mv-photo.slick-slider .slick-list {
  height: 100%;
}
.hero .container .mv-photo.slick-slider .slick-list .slick-slide {
  height: 100%;
}
.hero .container .mv-photo.slick-slider .slick-list .slick-slide > div {
  height: 100%;
}
.hero .container .mv-photo.slick-slider .slick-dots {
  bottom: 1rem;
}
.hero .container .mv-photo.slick-slider .slick-dots li button::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}
.hero .container .mv-photo.slick-slider .slick-dots li.slick-active button::before {
  opacity: 0.95;
}
.hero .container .mv-photo-sp {
  display: none;
}
.hero .container .mv-lead {
  z-index: 1;
  position: relative;
  margin-top: 11.2rem;
  margin-bottom: 6rem;
}
.hero .container .mv-lead h2 {
  width: fit-content;
  padding: 0rem 3rem 0 1rem;
  font-size: 3.7rem;
  line-height: 1.8918918919;
  letter-spacing: 0.05rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
.hero .container .mv-lead h2:not(:last-child) {
  margin-bottom: 2.4rem;
}
.hero .container .mv-lead h2 span {
  position: relative;
  z-index: 0;
}
.hero .container .mv-lead h2 span::after {
  z-index: -1;
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 3rem);
  height: 100%;
  background: linear-gradient(transparent 60%, #FFDE00 0%);
}
.hero .container .app-btns {
  position: relative;
  display: flex;
  column-gap: 0.8rem;
  margin-bottom: 10rem;
}
.hero .container .app-btns a img {
  width: auto;
  height: 5.1rem;
  object-fit: contain;
}
.hero .container .app-btns a {
  transition: .2s;
}
.hero .container .app-btns a:hover {
  opacity: .7;
  transition: .2s;
}
.hero .container .news {
  z-index: 1;
  position: absolute;
  bottom: 5.4rem;
  right: -3rem;
  width: 92%;
  height: 5.4rem;
  margin-left: auto;
}
.hero .container .news a {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  height: 100%;
  padding: 1rem 1rem 1rem 6rem;
  background-color: #FFDE00;
  color: #6B573E;
  font-weight: 700;
  border-radius: 3rem 0 0 3rem;
}
.hero .container .news a::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  right: calc(-50vw + 1px);
  width: 50vw;
  height: 100%;
  background-color: #FFDE00;
}
.hero .container .news a h4 {
  font-size: 1.6rem;
  color: #EE2828;
}
.hero .container .news a date {
  font-size: 1.6rem;
}
.hero .container .news a h3 {
  padding-right: 26rem;
  font-size: 1.6rem;
}
.hero .container .illust-ritzy {
  z-index: 1;
  position: absolute;
  left: 41rem;
  bottom: 10rem;
  width: 20.4rem;
  height: 21.6rem;
}
.hero .container .illust-tanuki {
  z-index: 1;
  position: absolute;
  bottom: 6.5rem;
  right: 15rem;
  width: 10.2rem;
}

@media (max-width: 767px) {
  .hero {
    max-height: unset;
    aspect-ratio: 375/620;
    padding-top: 6rem;
    background: url(../img/common/mv-bg-sp.png) no-repeat top center/cover;
  }
  .hero .container {
    border-top: 0.1rem solid transparent;
    background: unset;
    height: min(100% - 6.2rem, 100% - 50px);
    max-height: unset;
  }
  .hero .container .mv-photo {
    display: none;
  }
  .hero .container .mv-photo-sp {
    overflow: hidden;
    z-index: 0;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: block;
    width: 32.7rem;
    height: 40.5rem;
    border-radius: 7rem;
  }
  .hero .container .mv-photo-sp.slick-slider .slick-list {
    height: 100%;
  }
  .hero .container .mv-photo-sp.slick-slider .slick-list .slick-slide {
    height: 100%;
  }
  .hero .container .mv-photo-sp.slick-slider .slick-list .slick-slide > div {
    height: 100%;
  }
  .hero .container .mv-photo-sp.slick-slider .slick-dots {
    top: min(1rem, 14px);
    bottom: unset;
  }
  .hero .container .mv-photo-sp.slick-slider .slick-dots li button::before {
    content: "";
    width: min(0.8rem, 11.2px);
    height: min(0.8rem, 11.2px);
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
  }
  .hero .container .mv-photo-sp.slick-slider .slick-dots li.slick-active button::before {
    opacity: 0.9;
  }
  .hero .container .mv-lead {
    margin-top: 20rem;
    margin-bottom: 3.4rem;
  }
  .hero .container .mv-lead h2 {
    z-index: 1;
    position: relative;
    width: fit-content;
    padding: 0.5rem 3rem 0.5rem 1rem;
    font-size: 1.6rem;
    line-height: 1.8918918919;
    letter-spacing: 0.05rem;
    background-color: #fff;
    border-radius: 0.5rem;
  }
  .hero .container .mv-lead h2:not(:last-child) {
    margin-bottom: 1rem;
  }
  .hero .container .mv-lead h2 span::after {
    content: unset;
  }
  .hero .container .mv-lead h2:not(:last-child)::after {
    z-index: -1;
    position: absolute;
    display: block;
    content: "";
    bottom: 0.7rem;
    left: 1rem;
    width: calc(100% - 3rem);
    height: 100%;
    background: linear-gradient(transparent 75%, #FFDE00 0%);
  }
  .hero .container .app-btns {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0.6rem;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 1.2rem;
    margin-right: 2rem;
  }
  .hero .container .news {
    top: 49.5rem;
    bottom: unset;
    left: 0;
    width: calc(100% + 1.5rem);
    height: auto;
  }
  .hero .container .news a {
    flex-wrap: wrap;
    padding-left: 1.5rem;
  }
  .hero .container .news a::after {
    content: none;
  }
  .hero .container .news a h4 {
    font-size: min(1.4rem, 19.6px);
  }
  .hero .container .news a date {
    font-size: min(1.4rem, 19.6px);
  }
  .hero .container .news a h3 {
    width: 100%;
    padding-right: 2rem;
    font-size: min(1.5rem, 21px);
  }
  .hero .container .illust-ritzy {
    left: 1rem;
    top: 35.4rem;
    width: 14rem;
    height: 14.6rem;
  }
  .hero .container .illust-tanuki {
    right: -0.5rem;
    top: 46rem;
    width: 7.3rem;
  }
}
@media (max-width: 900px) and (min-width: 768px) {
  body.large-font .hero .container .mv-lead {
    margin-top: 8rem;
    margin-bottom: 4rem;
  }
  body.large-font .hero .container .mv-lead h2:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}
/* about
--------------------------------- */
.about {
  padding-top: 5rem;
}
.about .inner-blk {
  display: flex; /*岩﨑修正20240109:*/ 
  justify-content: flex-end;
  column-gap: 5.5rem;
  /* width: 100%; */ /*岩﨑修正20240109:*/ 
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 10rem;
}
.about .inner-blk .about-blk-1 {
  width: 49rem;
}
.about .inner-blk .about-blk-1 h2 {
  position: relative;
  margin-bottom: 4.3rem;
  padding-bottom: 1rem;
  font-size: 3.6rem;
  color: #6B573E;
}
.about .inner-blk .about-blk-1 h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.3rem; /* 線の高さを制御 */
  width: 100%;
  background-image: linear-gradient(to right, #8DC654 0%, #8DC654 50%, transparent 50%, transparent 100%);
  background-size: 1.2rem 0.3rem; /* 線と空白の幅を制御 (線の幅は background-size の幅の半分) */
}
.about .inner-blk .about-blk-1 h2 span {
  font-size: 4rem;
  position: relative;
}
.about .inner-blk .about-blk-1 h2 span::before {
  position: absolute;
  content: "リコスタイル";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.about .inner-blk .about-blk-1 p {
  font-size: max(1.6rem, 12px);
  font-weight: 700;
  color: #6B573E;
  line-height: 2;
}
.about .inner-blk .about-blk-1 p:not(:last-child) {
  margin-bottom: 2rem;
}
.about .inner-blk .about-blk-1 p .rubi {
  position: relative;
}
.about .inner-blk .about-blk-1 p .rubi::before {
  position: absolute;
  content: "リコスタイル";
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
  width: 140%;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.about .inner-blk .about-blk-1 .about-label {
  padding: 2rem 2rem 2rem 3.5rem;
  font-size: max(1.4rem, 11.9px);
  font-weight: 700;
  color: #6B573E;
  line-height: 1.4285714286;
  background-color: #FFDE00;
  border-radius: 2rem;
}
.about .inner-blk .about-blk-2 {
  position: relative;
  width: 60rem;
  margin-top: 5rem;
}
.about .inner-blk .about-blk-2 iframe {
  width: 100%;
  aspect-ratio: 600/338;
}
.about .inner-blk .about-blk-2 .round-wrap {
  z-index: -1;
  position: absolute;
  top: -7rem;
  right: -5rem;
  z-index: -1;
  width: 50rem;
  height: 50rem;
}

@media (max-width: 767px) {
  .about {
    padding-top: min(4rem, 56px);
  }
  .about .inner-blk {
    flex-wrap: wrap;
    width: 100%;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    padding-bottom: min(5rem, 70px);
    max-width: 550px;
  }
  .about .inner-blk .about-blk-1 {
    width: 100%;
  }
  .about .inner-blk .about-blk-1 h2 {
    margin-bottom: min(3rem, 42px);
    font-size: min(2.5rem, 35px);
    text-align: center;
  }
  .about .inner-blk .about-blk-1 h2 span {
    font-size: min(3.2rem, 44.8px);
    position: relative;
  }
  .about .inner-blk .about-blk-1 h2 span::before {
    position: absolute;
    content: "リコスタイル";
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: min(1.4rem, 19.6px);
    font-weight: 700;
    text-align: center;
  }
  .about .inner-blk .about-blk-1 p {
    font-size: min(1.4rem, 19.6px);
    text-align: center;
  }
  .about .inner-blk .about-blk-1 p:not(:last-child) {
    margin-bottom: min(2rem, 28px);
  }
  .about .inner-blk .about-blk-1 p .rubi {
    position: relative;
  }
  .about .inner-blk .about-blk-1 p .rubi::before {
    position: absolute;
    content: "リコスタイル";
    top: 0;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 100%;
    font-size: min(1rem, 14px);
    font-weight: 700;
    text-align: center;
  }
  .about .inner-blk .about-blk-1 .about-label {
    padding: min(1.2rem, 16.8px) min(1.6rem, 22.4px) min(1.2rem, 16.8px) min(2.5rem, 35px);
    font-size: min(1.2rem, 16.8px);
    border-radius: min(1.2rem, 16.8px);
  }
  .about .inner-blk .about-blk-2 {
    width: 100%;
    margin-top: min(3rem, 42px);
  }
  .about .inner-blk .about-blk-2 .round-wrap {
    top: -4rem;
    right: -2rem;
    width: 80vw;
    height: 75vw;
  }
}

/* about2 岩﨑 動画できるまでのバージョン20240109
--------------------------------- */
.about2 {
  padding-top: 5rem;
}
.about2 .inner-blk {
  /*display: flex;  
  justify-content: flex-end;
  column-gap: 5.5rem;*/
  width: 80%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 10rem;
}
.about2 .inner-blk .about-blk-1 {
  //width: 49rem;
}
.about2 .inner-blk .about-blk-1 h2 {
  position: relative;
  margin-bottom: 4.3rem;
  padding-bottom: 1rem;
  font-size: 3.6rem;
  color: #6B573E;
}
.about2 .inner-blk .about-blk-1 h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.3rem; /* 線の高さを制御 */
  width: 100%;
  background-image: linear-gradient(to right, #8DC654 0%, #8DC654 50%, transparent 50%, transparent 100%);
  background-size: 1.2rem 0.3rem; /* 線と空白の幅を制御 (線の幅は background-size の幅の半分) */
}
.about2 .inner-blk .about-blk-1 h2 span {
  font-size: 4rem;
  position: relative;
}
.about2 .inner-blk .about-blk-1 h2 span::before {
  position: absolute;
  content: "リコスタイル";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.about2 .inner-blk .about-blk-1 p {
  font-size: max(1.6rem, 12px);
  font-weight: 700;
  color: #6B573E;
  line-height: 2;
}
.about2 .inner-blk .about-blk-1 p:not(:last-child) {
  margin-bottom: 2rem;
}
.about2 .inner-blk .about-blk-1 p .rubi {
  position: relative;
}
.about .inner-blk .about-blk-1 p .rubi::before {
  position: absolute;
  content: "リコスタイル";
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
  width: 140%;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.about2 .inner-blk .about-blk-1 .about-label {
  padding: 2rem 2rem 2rem 3.5rem;
  font-size: max(1.4rem, 11.9px);
  font-weight: 700;
  color: #6B573E;
  line-height: 1.4285714286;
  background-color: #FFDE00;
  border-radius: 2rem;
}
.about2 .inner-blk .about-blk-2 {
  position: relative;
  width: 60rem;
  margin-top: 5rem;
}
.about2 .inner-blk .about-blk-2 iframe {
  width: 100%;
  aspect-ratio: 600/338;
}
.about2 .inner-blk .about-blk-2 .round-wrap {
  z-index: -1;
  position: absolute;
  top: -7rem;
  right: -5rem;
  z-index: -1;
  width: 50rem;
  height: 50rem;
}

@media (max-width: 767px) {
  .about2 {
    padding-top: min(4rem, 56px);
  }
  .about2 .inner-blk {
    flex-wrap: wrap;
    width: 100%;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    padding-bottom: min(5rem, 70px);
    max-width: 550px;
  }
  .about2 .inner-blk .about-blk-1 {
    width: 100%;
  }
  .about2 .inner-blk .about-blk-1 h2 {
    margin-bottom: min(3rem, 42px);
    font-size: min(2.5rem, 35px);
    text-align: center;
  }
  .about2 .inner-blk .about-blk-1 h2 span {
    font-size: min(3.2rem, 44.8px);
    position: relative;
  }
  .about .inner-blk .about-blk-1 h2 span::before {
    position: absolute;
    content: "リコスタイル";
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: min(1.4rem, 19.6px);
    font-weight: 700;
    text-align: center;
  }
  .about2 .inner-blk .about-blk-1 p {
    font-size: min(1.4rem, 19.6px);
    text-align: center;
  }
  .about2 .inner-blk .about-blk-1 p:not(:last-child) {
    margin-bottom: min(2rem, 28px);
  }
  .about2 .inner-blk .about-blk-1 p .rubi {
    position: relative;
  }
  .about .inner-blk .about-blk-1 p .rubi::before {
    position: absolute;
    content: "リコスタイル";
    top: 0;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 100%;
    font-size: min(1rem, 14px);
    font-weight: 700;
    text-align: center;
  }
  .about2 .inner-blk .about-blk-1 .about-label {
    padding: min(1.2rem, 16.8px) min(1.6rem, 22.4px) min(1.2rem, 16.8px) min(2.5rem, 35px);
    font-size: min(1.2rem, 16.8px);
    border-radius: min(1.2rem, 16.8px);
  }
  .about2 .inner-blk .about-blk-2 {
    width: 100%;
    margin-top: min(3rem, 42px);
  }
  .about2 .inner-blk .about-blk-2 .round-wrap {
    top: -4rem;
    right: -2rem;
    width: 80vw;
    height: 75vw;
  }
}

/* experience
--------------------------------- */
.experience {
  position: relative;
  margin-top: 16.7rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #8DC654;
}
.experience::before {
  position: absolute;
  content: "";
  top: -16.6rem;
  width: 100%;
  height: 16.7rem;
  background: url(../img/parts/parts-bg-curve.png) no-repeat top 1px center/cover;
}
.experience .inner-blk {
  z-index: 0;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.experience .inner-blk h2 {
  position: relative;
  left: 50%;
  transform: translateX(max(-663px, -50vw + 1.5rem));
  width: fit-content;
  padding-left: 9rem;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}
.experience .inner-blk h2::before {
  position: absolute;
  content: "";
  top: -1.5rem;
  left: 0;
  width: 7.1rem;
  height: 5.55rem;
  background: url(../img/illust/illust-megaphone.png) no-repeat center/contain;
}
.experience .inner-blk h2 span {
  position: relative;
  display: inline-block;
  top: 0.3rem;
  transform: rotate(-15deg);
  width: 8.8rem;
  height: 8.8rem;
  margin: 0 1rem 0 0.5rem;
  font-size: 5.4rem;
  color: #FFDE00;
  border: 0.6rem solid #FFDE00;
  border-radius: 50%;
  text-align: center;
  filter: drop-shadow(0.3rem 0.3rem 0.1rem #51970C);
}
.experience .inner-blk .exp-panel {
  position: relative;
  width: 60%;
  aspect-ratio: 804/633;
  margin-top: -20rem;
  padding-top: 23rem;
  padding-left: 11rem;
  color: #6B573E;
}
.experience .inner-blk .exp-panel::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/parts/parts-exp-panel-bg.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel.animFloatAndScale2::after {
  animation: floatAndScale2 18s ease-in-out infinite;
}
.experience .inner-blk .exp-panel::before {
  position: absolute;
  content: "";
}
.experience .inner-blk .exp-panel.left::after {
  background: url(../img/parts/parts-exp-panel-bg-left.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel.left.animFloatAndScale2::after {
  animation: floatAndScale2 15s ease-in-out -3s infinite;
}
.experience .inner-blk .exp-panel h4 {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 4.5rem;
  font-size: 3.3rem;
  font-weight: 500;
}
.experience .inner-blk .exp-panel h4::before {
  position: absolute;
  content: "";
  bottom: 1rem;
  left: 0;
}
.experience .inner-blk .exp-panel h4 span {
  font-size: 5.2rem;
  vertical-align: baseline;
}
.experience .inner-blk .exp-panel h3 {
  margin-bottom: 3rem;
  font-size: 5rem;
  font-weight: 500;
}
.experience .inner-blk .exp-panel p {
  width: 48rem;
  font-size: 1.6rem;
  line-height: 2;
}
.experience .inner-blk .exp-panel:nth-of-type(1) {
  margin-left: auto;
  right: -2rem;
}
.experience .inner-blk .exp-panel:nth-of-type(1)::before {
  top: 10rem;
  right: 7rem;
  width: 40.5rem;
  height: auto;
  aspect-ratio: 280/196;
  background: url(../img/illust/illust-support.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel:nth-of-type(1) h4::before {
  width: 4.3rem;
  height: 5.9rem;
  background: url(../img/illust/illust-weed-1.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel:nth-of-type(2) {
  margin-right: auto;
  padding-left: unset;
  padding-right: 11rem;
  left: -2rem;
  text-align: right;
}
.experience .inner-blk .exp-panel:nth-of-type(2)::before {
  top: 10rem;
  left: 7rem;
  width: 40.5rem;
  height: auto;
  aspect-ratio: 280/196;
  background: url(../img/illust/illust-save.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel:nth-of-type(2) h4 {
  width: fit-content;
  margin-left: auto;
}
.experience .inner-blk .exp-panel:nth-of-type(2) h4::before {
  width: 4.3rem;
  height: 5.9rem;
  background: url(../img/illust/illust-weed-2.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel:nth-of-type(2) p {
  margin-left: auto;
}
.experience .inner-blk .exp-panel:nth-of-type(3) {
  margin-left: auto;
  right: -2rem;
}
.experience .inner-blk .exp-panel:nth-of-type(3)::before {
  top: 10rem;
  right: 7rem;
  width: 40.5rem;
  height: auto;
  aspect-ratio: 280/196;
  background: url(../img/illust/illust-exchange.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel:nth-of-type(3)::after.animFloatAndScale2 {
  animation: floatAndScale2 15s ease-in-out -5s infinite;
}
.experience .inner-blk .exp-panel:nth-of-type(3) h4::before {
  width: 4.3rem;
  height: 5.9rem;
  background: url(../img/illust/illust-weed-3.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel-2 {
  position: relative;
  max-width: 104.5rem;
  margin: 7.5rem auto 0;
  padding: 6rem 10rem;
  background-color: #fff;
  border-radius: 12rem;
}
.experience .inner-blk .exp-panel-2 .weeds {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 11rem;
  transition: all 1s ease;
  width: 51.6rem;
  height: 18.1rem;
}
.experience .inner-blk .exp-panel-2 .weeds > span {
  position: absolute;
  width: 9.2rem;
}
.experience .inner-blk .exp-panel-2 .weeds > span img {
  width: 100%;
}
.experience .inner-blk .exp-panel-2 .weeds > span:nth-of-type(1) {
  left: 0;
  width: 25rem;
}
.experience .inner-blk .exp-panel-2 .weeds > span:nth-of-type(2) {
  left: 20rem;
}
.experience .inner-blk .exp-panel-2 .weeds > span:nth-of-type(3) {
  left: 32rem;
}
.experience .inner-blk .exp-panel-2 .weeds > span:nth-of-type(4) {
  left: 44rem;
}
.experience .inner-blk .exp-panel-2 .weeds .triger-by-scroll-in.pop-up {
  opacity: 1;
  transform: translate(0, -92%);
}
.experience .inner-blk .exp-panel-2 .bubble {
  position: absolute;
  top: -6rem;
  left: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11rem;
  height: 11rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background-color: #FFBA00;
}
.experience .inner-blk .exp-panel-2 .bubble::after {
  position: absolute;
  content: "";
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 1.6rem;
  height: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #FFBA00;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6.6rem;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(1) {
  width: 41rem;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(1) h3 {
  margin-bottom: 3rem;
  font-size: 4rem;
  font-weight: 700;
  color: #6B573E;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(1) h3 span {
  font-size: 4.4rem;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(1) p {
  font-size: 1.6rem;
  line-height: 2;
  color: #6B573E;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(2) {
  display: flex;
  align-items: center;
  width: 40.5rem;
  height: auto;
  aspect-ratio: 280/196;
  margin-left: auto;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 {
  width: 78.7rem;
  margin: 0 auto;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 span.divider {
  display: block;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 h4 {
  position: relative;
  width: fit-content;
  margin: 4rem auto 3rem;
  font-size: 3.4rem;
  text-align: center;
  color: #6B573E;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 h4::before, .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 h4::after {
  position: absolute;
  content: "";
  top: 50%;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 h4::before {
  left: -3rem;
  transform: translate(-100%, -50%);
  width: 11rem;
  height: 10.6rem;
  background: url(../img/illust/illust-ritzy.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 h4::after {
  right: -3rem;
  transform: translate(100%, -50%);
  width: 10.4rem;
  height: 9.7rem;
  background: url(../img/illust/illust-marie.png) no-repeat center/contain;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 p {
  z-index: 0;
  position: relative;
  padding-bottom: 3.5rem;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 p a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 6rem;
  margin: 0 auto;
  padding: 0.5rem 7rem 0.5rem 4rem;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background-color: #FC7C7C;
  border-radius: 4rem;
}
.experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 p a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(-100%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/button/icon-link.png) no-repeat center/contain;
}

@media (max-width: 950px) {
  .experience .inner-blk .exp-panel {
    padding-top: 25rem;
  }
}
@media (max-width: 767px) {
  .experience {
    margin-top: 4rem;
    padding-top: 1rem;
    padding-bottom: min(5rem, 70px);
    background-color: #8DC654;
  }
  .experience::before {
    top: -4rem;
    height: 4.1rem;
    background: url(../img/parts/parts-bg-curve.png) no-repeat top 1px center/100%;
  }
  .experience .inner-blk {
    max-width: 600px;
  }
  .experience .inner-blk h2 {
    left: 0;
    transform: unset;
    padding-left: min(7rem, 98px);
    font-size: min(2.5rem, 35px);
  }
  .experience .inner-blk h2::before {
    top: -1rem;
    left: min(1rem, 14px);
    width: min(5rem, 70px);
    height: min(4rem, 56px);
  }
  .experience .inner-blk h2 span {
    top: 0;
    width: min(5.4rem, 75.6px);
    height: min(5.4rem, 75.6px);
    font-size: min(3.2rem, 44.8px);
    border: min(0.4rem, 5.6px) solid #FFDE00;
  }
  .experience .inner-blk .exp-panel {
    position: relative;
    width: 120%;
    aspect-ratio: 376/325;
    margin-top: 0;
    padding-top: 14rem;
    padding-left: 5rem;
    color: #6B573E;
  }
  .experience .inner-blk .exp-panel::after {
    height: auto;
    aspect-ratio: 376/350;
  }
  .experience .inner-blk .exp-panel.animFloatAndScale2::after {
    animation: none;
  }
  .experience .inner-blk .exp-panel.left.animFloatAndScale2::after {
    animation: none;
  }
  .experience .inner-blk .exp-panel h4 {
    margin-bottom: min(0rem, 0px);
    padding-left: min(3.4rem, 47.6px);
    font-size: min(2.4rem, 33.6px);
  }
  .experience .inner-blk .exp-panel h4::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
  }
  .experience .inner-blk .exp-panel h4 span {
    font-size: min(3.2rem, 44.8px);
  }
  .experience .inner-blk .exp-panel h3 {
    margin-bottom: min(1rem, 14px);
    font-size: min(3rem, 42px);
    font-weight: 500;
  }
  .experience .inner-blk .exp-panel p {
    width: 90%;
    font-size: min(1.3rem, 18.2px);
    line-height: 1.8;
  }
  .experience .inner-blk .exp-panel:nth-of-type(1) {
    margin-left: auto;
    right: 10%;
  }
  .experience .inner-blk .exp-panel:nth-of-type(1)::before {
    top: min(8rem, 112px);
    right: min(5rem, 90px);
    width: min(22rem, 352px);
    aspect-ratio: 280/196;
  }
  .experience .inner-blk .exp-panel:nth-of-type(1) h4::before {
    width: min(3rem, 42px);
    height: min(4rem, 56px);
  }
  .experience .inner-blk .exp-panel:nth-of-type(2) {
    left: -10%;
    margin-top: min(1rem, 14px);
    margin-right: auto;
    padding-left: unset;
    padding-right: min(5rem, 70px);
    text-align: right;
  }
  .experience .inner-blk .exp-panel:nth-of-type(2)::before {
    top: min(8rem, 112px);
    left: min(5rem, 90px);
    width: min(22rem, 352px);
    aspect-ratio: 280/196;
  }
  .experience .inner-blk .exp-panel:nth-of-type(2) h4::before {
    width: min(3rem, 42px);
    height: min(4rem, 56px);
  }
  .experience .inner-blk .exp-panel:nth-of-type(2) p {
    margin-left: auto;
  }
  .experience .inner-blk .exp-panel:nth-of-type(3) {
    right: 10%;
    margin-top: min(1rem, 14px);
  }
  .experience .inner-blk .exp-panel:nth-of-type(3)::before {
    top: min(8rem, 112px);
    right: min(5rem, 90px);
    width: min(20rem, 320px);
    aspect-ratio: 280/196;
  }
  .experience .inner-blk .exp-panel:nth-of-type(3) h4::before {
    width: min(3rem, 42px);
    height: min(4rem, 56px);
  }
  .experience .inner-blk .exp-panel-2 {
    max-width: calc(100% - min(3rem, 42px));
    margin: min(17rem, 238px) auto 0;
    padding: min(5rem, 70px) min(2rem, 28px);
    border-radius: min(4rem, 56px);
  }
  .experience .inner-blk .exp-panel-2 .weeds {
    left: 4rem;
    width: min(28.6rem, 400.4px);
    height: min(10rem, 140px);
  }
  .experience .inner-blk .exp-panel-2 .weeds > span {
    width: min(5.1rem, 71.4px);
  }
  .experience .inner-blk .exp-panel-2 .weeds > span:nth-of-type(1) {
    left: 0;
    width: min(13.8rem, 193.2px);
  }
  .experience .inner-blk .exp-panel-2 .weeds > span:nth-of-type(2) {
    left: 10rem;
  }
  .experience .inner-blk .exp-panel-2 .weeds > span:nth-of-type(3) {
    left: 16rem;
  }
  .experience .inner-blk .exp-panel-2 .weeds > span:nth-of-type(4) {
    left: 22rem;
  }
  .experience .inner-blk .exp-panel-2 .weeds .triger-by-scroll-in.pop-up {
    opacity: 1;
    transform: translate(0, -92%);
  }
  .experience .inner-blk .exp-panel-2 .bubble {
    top: max(-4rem, -60px);
    left: 2rem;
    width: min(8rem, 112px);
    height: min(8rem, 112px);
    font-size: min(1.9rem, 26.6px);
  }
  .experience .inner-blk .exp-panel-2 .bubble::after {
    bottom: 4px;
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 {
    flex-wrap: wrap;
    margin-bottom: min(4rem, 56px);
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(1) {
    order: 2;
    width: 100%;
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(1) h3 {
    margin-bottom: min(2rem, 28px);
    font-size: min(2.8rem, 39.2px);
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(1) h3 span {
    font-size: min(3rem, 42px);
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(1) p {
    font-size: min(1.4rem, 19.6px);
    line-height: 1.8;
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-1 > div:nth-child(2) {
    width: 86%;
    margin: 0 auto 0;
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 {
    width: 100%;
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 h4 {
    margin: min(3rem, 42px) auto min(2rem, 28px);
    font-size: min(2rem, 28px);
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 h4::before {
    left: 0;
    width: min(6rem, 84px);
    height: min(5.8rem, 81.2px);
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 h4::after {
    right: 0;
    width: min(6rem, 84px);
    height: min(5.8rem, 81.2px);
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 p {
    z-index: 0;
    position: relative;
    padding-bottom: 3.5rem;
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 p a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 6rem;
    margin: 0 auto;
    padding: 0.5rem 7rem 0.5rem 4rem;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    background-color: #FC7C7C;
    border-radius: 4rem;
    height: min(5rem, 70px);
    padding-right: min(4rem, 56px);
    padding-left: min(2rem, 28px);
    font-size: min(1.6rem, 22.4px);
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 p a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translate(-100%, -50%);
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/button/icon-link.png) no-repeat center/contain;
  }
  .experience .inner-blk .exp-panel-2 .exp-panel-2-blk-2 p a::after {
    transform: translate(-70%, -50%);
    width: min(2rem, 28px);
    height: min(2rem, 28px);
  }
}
@media (max-width: 660px) {
  .experience .inner-blk .exp-panel {
    padding-top: 16rem;
  }
}
@media (max-width: 1180px) and (min-width: 768px) {
  body.large-font .experience .inner-blk .exp-panel {
    padding-top: 20rem;
  }
  body.large-font .experience .inner-blk .exp-panel p {
    width: 55rem;
  }
}
@media (max-width: 830px) and (min-width: 768px) {
  body.large-font .experience .inner-blk .exp-panel {
    width: 70%;
    padding-top: 27rem;
  }
  body.large-font .experience .inner-blk .exp-panel p {
    width: 67rem;
  }
  body.large-font .experience .inner-blk .exp-panel:not(:first-of-type) {
    margin-top: -5rem;
  }
  body.large-font .experience .inner-blk .exp-panel::before {
    width: 45rem;
  }
}
@media (max-width: 767px) {
  body.large-font .experience .inner-blk .exp-panel {
    width: 125%;
  }
  body.large-font .experience .inner-blk .exp-panel p {
    width: 86%;
  }
  body.large-font .experience .inner-blk .exp-panel:nth-of-type(2) {
    left: -13.5%;
  }
}
@media (max-width: 500px) {
  body.large-font .experience .inner-blk .exp-panel {
    padding-top: 15rem;
  }
}

/* manga
--------------------------------- */
.manga {
  position: relative;
}
.manga::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  border-top: 60vw solid #FFFDBA;
  border-right: 60vw solid transparent;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transform: translate(-40%, 50%) rotate(45deg);
}
.manga .inner-blk {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6rem;
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 88.5rem;
  padding: 6rem 0;
}
.manga .inner-blk .manga-blk-1 {
  width: 32.2rem;
}
.manga .inner-blk .manga-blk-1 h2 {
  margin-bottom: 3rem;
  font-size: 5rem;
  font-weight: 700;
  color: #6B573E;
  text-align: center;
  line-height: 1.2;
}
.manga .inner-blk .manga-blk-1 h2 span {
  font-size: 6rem;
}
.manga .inner-blk .manga-blk-1 p a {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 6rem;
  margin: 0 auto;
  padding: 0.5rem 7rem 0.5rem 4rem;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background-color: #FC7C7C;
  border-radius: 4rem;
  box-sizing: border-box;
  top: 52%;
  width: 24.8rem;
  padding-right: 6.5rem;
}
.manga .inner-blk .manga-blk-1 p a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(-100%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/button/icon-link.png) no-repeat center/contain;
}
.manga .inner-blk .manga-blk-1 p a::after {
  right: 2rem;
  transform: translate(-120%, -50%);
  background: url(../img/button/icon-link-plus.png) no-repeat center/contain;
}
.manga .inner-blk .manga-blk-2 ul {
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
}
.manga .inner-blk .manga-blk-2 ul li {
  width: 24.4rem;
}
.manga .inner-blk .modal,
.manga .inner-blk .modal2 {
  z-index: 11;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.manga .inner-blk .modal .modal-content,
.manga .inner-blk .modal2 .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  height: fit-content;
  max-height: 95vh;
  padding: 3rem;
  border-radius: 4px;
  background: white;
}
.manga .inner-blk .modal .modal-content button.close,
.manga .inner-blk .modal2 .modal-content button.close {
  position: absolute;
  cursor: pointer;
  display: block;
  width: 5rem;
  height: 5rem;
  background-color: #8CC653;
  top: 0;
  right: 0;
  transform: translate(40%, -30%);
  border-radius: 50%;
  border: none;
}
.manga .inner-blk .modal .modal-content button.close::before, .manga .inner-blk .modal .modal-content button.close::after,
.manga .inner-blk .modal2 .modal-content button.close::before, .manga .inner-blk .modal2 .modal-content button.close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
  width: 65%;
  height: 0.3rem;
  background-color: #fff;
}
.manga .inner-blk .modal .modal-content button.close::after,
.manga .inner-blk .modal2 .modal-content button.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.manga .inner-blk .modal .modal-content ul,
.manga .inner-blk .modal2 .modal-content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: calc(95vh - 6rem);
}
.manga .inner-blk .modal .modal-content ul li,
.manga .inner-blk .modal2 .modal-content ul li {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
  width: 0;
  height: 100%;
  max-height: calc(95vh - 6rem);
}
.manga .inner-blk .modal .modal-content ul li span,
.manga .inner-blk .modal2 .modal-content ul li span {
  display: none;
  font-size: 1.6rem;
}
.manga .inner-blk .modal .modal-content ul li img,
.manga .inner-blk .modal2 .modal-content ul li img {
  height: 90%;
  max-height: calc((95vh - 6rem) * 0.9);
  object-fit: contain;
}
.manga .inner-blk .modal .modal-content ul li.active,
.manga .inner-blk .modal2 .modal-content ul li.active {
  opacity: 1;
  width: 40vw;
}
.manga .inner-blk .modal .modal-content ul li.active span,
.manga .inner-blk .modal2 .modal-content ul li.active span {
  display: block;
}
.manga .inner-blk .modal button.prev,
.manga .inner-blk .modal button.next,
.manga .inner-blk .modal2 button.prev,
.manga .inner-blk .modal2 button.next {
  position: absolute;
  display: none;
  top: 50%;
  width: 5rem;
  height: 5rem;
  background-color: #777;
  border: none;
  cursor: pointer;
}
.manga .inner-blk .modal button.prev::after,
.manga .inner-blk .modal button.next::after,
.manga .inner-blk .modal2 button.prev::after,
.manga .inner-blk .modal2 button.next::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.8rem;
  height: 3.2rem;
  background-color: #ddd;
}
.manga .inner-blk .modal button.prev,
.manga .inner-blk .modal2 button.prev {
  left: 0;
  transform: translate(-130%, -50%);
}
.manga .inner-blk .modal button.prev::after,
.manga .inner-blk .modal2 button.prev::after {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.manga .inner-blk .modal button.next,
.manga .inner-blk .modal2 button.next {
  right: 0;
  transform: translate(130%, -50%);
}
.manga .inner-blk .modal button.next::after,
.manga .inner-blk .modal2 button.next::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.manga .inner-blk .modal button.active,
.manga .inner-blk .modal2 button.active {
  display: inline-block;
}

@media (max-width: 767px) {
  .manga::before {
    border-top: 150vw solid #FFFDBA;
    border-right: 150vw solid transparent;
  }
  .manga .inner-blk {
    flex-wrap: wrap;
    column-gap: 6rem;
    width: 100%;
    max-width: 1336px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 500px;
    padding: 6rem 0 min(12rem, 168px);
  }
  .manga .inner-blk .manga-blk-1 {
    width: 100%;
    margin-bottom: min(5rem, 70px);
  }
  .manga .inner-blk .manga-blk-1 h2 {
    margin-bottom: 0;
    font-size: min(3rem, 42px);
  }
  .manga .inner-blk .manga-blk-1 h2 span {
    font-size: min(4rem, 56px);
  }
  .manga .inner-blk .manga-blk-1 p {
    position: absolute;
    left: 0;
    bottom: min(4rem, 56px);
    width: 100%;
  }
  .manga .inner-blk .manga-blk-1 p a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 6rem;
    margin: 0 auto;
    padding: 0.5rem 7rem 0.5rem 4rem;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    background-color: #FC7C7C;
    border-radius: 4rem;
    width: 70%;
    max-width: 350px;
    height: min(4.5rem, 63px);
    padding-right: 7rem;
    font-size: min(1.6rem, 22.4px);
  }
  .manga .inner-blk .manga-blk-1 p a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translate(-100%, -50%);
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/button/icon-link.png) no-repeat center/contain;
  }
  .manga .inner-blk .manga-blk-1 p a::after {
    right: 4.5rem;
    transform: translate(-110%, -45%);
    width: min(2rem, 28px);
    height: min(2rem, 28px);
    background: url(../img/button/icon-link-plus.png) no-repeat center/contain;
  }
  .manga .inner-blk .manga-blk-2 ul {
    flex-wrap: wrap;
    row-gap: min(2.5rem, 35px);
  }
  .manga .inner-blk .manga-blk-2 ul li {
    width: 80%;
  }
  .manga .inner-blk .modal .modal-content,
  .manga .inner-blk .modal2 .modal-content {
    width: 96%;
    height: max(96vh - min(6rem, 84px), 96vw);
    padding: min(3rem, 42px);
  }
  .manga .inner-blk .modal .modal-content button.close,
  .manga .inner-blk .modal2 .modal-content button.close {
    top: 0.5rem;
    right: 0.5rem;
    transform: translate(50%, -50%);
    width: min(3rem, 42px);
    height: min(3rem, 42px);
  }
  .manga .inner-blk .modal .modal-content button.close::before, .manga .inner-blk .modal .modal-content button.close::after,
  .manga .inner-blk .modal2 .modal-content button.close::before, .manga .inner-blk .modal2 .modal-content button.close::after {
    width: 65%;
    height: 0.3rem;
  }
  .manga .inner-blk .modal .modal-content button.close::after,
  .manga .inner-blk .modal2 .modal-content button.close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .manga .inner-blk .modal .modal-content ul,
  .manga .inner-blk .modal2 .modal-content ul {
    height: 100%;
  }
  .manga .inner-blk .modal .modal-content ul li span,
  .manga .inner-blk .modal2 .modal-content ul li span {
    font-size: min(1.4rem, 19.6px);
  }
  .manga .inner-blk .modal .modal-content ul li.active,
  .manga .inner-blk .modal2 .modal-content ul li.active {
    width: 100%;
    height: 100%;
  }
  .manga .inner-blk .modal .modal-content ul li.active img,
  .manga .inner-blk .modal2 .modal-content ul li.active img {
    height: 92%;
  }
  .manga .inner-blk .modal .modal-content ul li.active span,
  .manga .inner-blk .modal2 .modal-content ul li.active span {
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, -1.6rem);
    text-align: center;
  }
  .manga .inner-blk .modal button.prev,
  .manga .inner-blk .modal button.next,
  .manga .inner-blk .modal2 button.prev,
  .manga .inner-blk .modal2 button.next {
    z-index: 10;
    top: unset;
    bottom: 0%;
    width: min(3.2rem, 44.8px);
    height: min(3.2rem, 44.8px);
    transform: translate(180%, -1rem);
  }
  .manga .inner-blk .modal button.prev::after,
  .manga .inner-blk .modal button.next::after,
  .manga .inner-blk .modal2 button.prev::after,
  .manga .inner-blk .modal2 button.next::after {
      width: min(1.8rem, 25.2px);
    height: min(2.2rem, 30.8px);
  }
  .manga .inner-blk .modal button.prev.prev,
  .manga .inner-blk .modal button.next.prev,
  .manga .inner-blk .modal2 button.prev.prev,
  .manga .inner-blk .modal2 button.next.prev {
    left: 50%;
    transform: translate(-180%, -1rem);
  }
  .manga .inner-blk .modal button.prev.next,
  .manga .inner-blk .modal button.next.next,
  .manga .inner-blk .modal2 button.prev.next,
  .manga .inner-blk .modal2 button.next.next {
    right: 50%;
  }
  .manga .inner-blk .modal button.active,
  .manga .inner-blk .modal2 button.active {
      display: inline-block;
  }
}
@media (max-width: 600px) and (max-aspect-ratio: 500/550) {
  .manga .inner-blk .modal button.prev,
  .manga .inner-blk .modal button.next,
  .manga .inner-blk .modal2 button.prev,
  .manga .inner-blk .modal2 button.next {
    transform: translate(180%, -1rem);
    width: min(3rem, 42px);
    height: min(3rem, 42px);
  }
  .manga .inner-blk .modal button.prev::after,
  .manga .inner-blk .modal button.next::after,
  .manga .inner-blk .modal2 button.prev::after,
  .manga .inner-blk .modal2 button.next::after {
      width: min(1.8rem, 25.2px);
    height: min(2.2rem, 30.8px);
  }
}
@media (min-width: 768px) {
  body.large-font .manga .inner-blk {
    max-width: 93.5rem;
  }
  body.large-font .manga .inner-blk .manga-blk-1 {
    width: 37.2rem;
  }
}

/* support
--------------------------------- */
.support {
  padding: 8rem 0 10rem;
  background-color: #8DC654;
}
.support .inner-blk {
  z-index: 0;
  position: relative;
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 108.5rem;
}
.support .inner-blk h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto 13.1rem;
  font-size: 4rem;
  color: #fff;
}
.support .inner-blk h2 span {
  position: relative;
}
.support .inner-blk h2 span::before {
  position: absolute;
  content: "";
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.8rem;
  height: 0.8rem;
  background-color: #FFDE00;
  border-radius: 50%;
}
.support .inner-blk h2::before, .support .inner-blk h2::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 3.9rem;
  background: url(../img/parts/parts-deco-1.png) no-repeat center/contain;
}
.support .inner-blk h2::before {
  left: -6rem;
}
.support .inner-blk h2::after {
  right: -6rem;
  transform: translateY(-50%) scale(-1, 1);
}
.support .inner-blk div.support-panel {
  position: relative;
  padding: 5rem 3.7rem;
  background-color: #F2F6D9;
  border-radius: 3rem;
}
.support .inner-blk div.support-panel h3 {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -95%);
  display: flex;
  align-items: center;
  width: max-content;
  padding: 1rem 6rem 3.2rem 3rem;
  font-size: 3rem;
  font-weight: 700;
  color: #6B573E;
  background: url(../img/parts/parts-ribbon-long.png) no-repeat center/contain;
}
.support .inner-blk div.support-panel h3 span:not(.not-bg) {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FC7C7C;
  background-color: #fff;
  width: 5rem;
  height: 5rem;
  margin-right: 0.3rem;
  border-radius: 50%;
}
.support .inner-blk div.support-panel ul {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  flex-wrap: wrap;
}
.support .inner-blk div.support-panel ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 23rem;
  height: 20.4rem;
  padding-top: 3rem;
  background: url(../img/parts/parts-bubble.png) no-repeat center/contain;
}
.support .inner-blk div.support-panel ul li img {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
}
.support .inner-blk div.support-panel ul li p {
  font-size: 1.6rem;
  text-align: center;
  color: #6B573E;
}
.support .inner-blk div.support-panel.support-panel-2 {
  position: relative;
  margin-top: 14.3rem;
  margin-bottom: 3rem;
}
.support .inner-blk div.support-panel.support-panel-2 h3 {
  background: url(../img/parts/parts-ribbon-short.png) no-repeat center/contain;
}
.support .inner-blk div.support-panel.support-panel-2 ul li:nth-of-type(2) {
  padding-top: 5.5rem;
}
.support .inner-blk div.support-panel.support-panel-2 ul li:nth-of-type(2) img {
  width: 9.8rem;
  height: 5.7rem;
}
.support .inner-blk div.support-panel.support-panel-2::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: -3rem;
  width: 30rem;
  height: 18.7rem;
  background: url(../img/illust/illust-ritzy-phone.png) no-repeat center/contain;
}
.support .inner-blk small {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .support {
    padding: min(4rem, 56px) 0 min(4rem, 56px);
  }
  .support .inner-blk {
    width: 100%;
    max-width: 1336px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 600px;
  }
  .support .inner-blk h2 {
    margin: 0 auto min(11rem, 154px);
    font-size: min(2.5rem, 35px);
    line-height: 1.8;
    text-align: center;
  }
  .support .inner-blk h2 span::before {
    width: min(0.6rem, 8.4px);
    height: min(0.6rem, 8.4px);
  }
  .support .inner-blk h2::before, .support .inner-blk h2::after {
    width: min(3rem, 42px);
    height: min(2.6rem, 36.4px);
  }
  .support .inner-blk h2::before {
    left: max(-4rem, -56px);
  }
  .support .inner-blk h2::after {
    right: max(-4rem, -56px);
  }
  .support .inner-blk div.support-panel {
    position: relative;
    padding: min(2rem, 28px) min(0.8rem, 11.2px);
    border-radius: min(3rem, 42px);
  }
  .support .inner-blk div.support-panel h3 {
    width: max-content;
    padding: min(1rem, 14px) min(4rem, 56px) min(2.8rem, 39.2px) min(2rem, 28px);
    font-size: min(2rem, 28px);
    background: url(../img/parts/parts-ribbon-long.png) no-repeat center/95% 100%;
  }
  .support .inner-blk div.support-panel h3 span:not(.not-bg) {
    font-size: min(2.5rem, 35px);
    width: min(3.8rem, 53.2px);
    height: min(3.8rem, 53.2px);
  }
  .support .inner-blk div.support-panel ul {
    justify-content: space-between;
    column-gap: 0;
    row-gap: min(1.2rem, 16.8px);
  }
  .support .inner-blk div.support-panel ul li {
    width: 49%;
    height: auto;
    aspect-ratio: 159/143;
    padding-top: min(2rem, 28px);
    background: url(../img/parts/parts-bubble.png) no-repeat center/contain;
  }
  .support .inner-blk div.support-panel ul li img {
    width: min(3.7rem, 51.8px);
    height: min(3.7rem, 51.8px);
    margin-bottom: min(1rem, 14px);
  }
  .support .inner-blk div.support-panel ul li p {
    font-size: min(1.2rem, 16.8px);
    text-align: center;
  }
  .support .inner-blk div.support-panel::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: -1.5rem;
    width: min(19rem, 266px);
    height: min(11.9rem, 166.6px);
    background: url(../img/illust/illust-ritzy-phone.png) no-repeat center/contain;
  }
  .support .inner-blk div.support-panel.support-panel-2 {
    position: relative;
    margin-top: min(12rem, 168px);
    margin-bottom: min(1rem, 14px);
  }
  .support .inner-blk div.support-panel.support-panel-2 h3 {
    transform: translate(-50%, -90%);
  }
  .support .inner-blk div.support-panel.support-panel-2 ul li:nth-of-type(2) {
    padding-top: min(3.5rem, 49px);
  }
  .support .inner-blk div.support-panel.support-panel-2 ul li:nth-of-type(2) img {
    width: 60%;
    height: auto;
  }
  .support .inner-blk div.support-panel.support-panel-2::after {
    content: none;
  }
  .support .inner-blk small {
    font-size: min(1.4rem, 19.6px);
    font-weight: 400;
    text-align: left;
  }
}
/* game
--------------------------------- */
.game {
  position: relative;
  padding: 5rem 0 10rem;
}
.game::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/167;
  background: url(../img/parts/parts-bg-curve-2.png) no-repeat top 1px center/cover;
}
.game .inner-blk {
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 107.5rem;
}
.game .inner-blk h2 {
  margin-bottom: 10rem;
  font-size: 5rem;
  color: #6B573E;
  text-align: center;
}
.game .inner-blk h2 small {
  font-size: 4.5rem;
}
.game .inner-blk > div:nth-of-type(1) {
  width: 75rem;
  margin: 0 auto 3rem;
}
.game .inner-blk > div:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  padding: 4rem 3rem;
  background-color: #FFDE00;
  border-radius: 3rem;
}
.game .inner-blk > div:nth-of-type(2) > div {
  width: 56rem;
  color: #6B573E;
}
.game .inner-blk > div:nth-of-type(2) > div h3 {
  position: relative;
  margin-bottom: 2.4rem;
  padding-bottom: 3rem;
  font-size: 3rem;
  font-weight: 700;
}
.game .inner-blk > div:nth-of-type(2) > div h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background-image: radial-gradient(circle, #fff 50%, transparent 50%);
  background-size: 15px 10px;
}
.game .inner-blk > div:nth-of-type(2) > div p {
  font-size: 1.6rem;
  line-height: 2;
}
.game .inner-blk > div:nth-of-type(2) img {
  width: 37.1rem;
  object-fit: contain;
}
.game .bg-1 {
  z-index: -1;
  position: absolute;
  top: 20%;
  left: 0;
  width: 43.4rem;
  aspect-ratio: 434/389;
  animation: floatAndScale 12s infinite ease-in-out;
}
.game .bg-2 {
  z-index: -1;
  position: absolute;
  top: 40%;
  right: 0;
  width: 57.5rem;
  aspect-ratio: 575/500;
  animation: floatAndScale 15s infinite -3s ease-in-out;
}

@media (max-width: 767px) {
  .game {
    padding: min(4rem, 56px) 0 min(4rem, 56px);
  }
  .game .inner-blk {
    width: 100%;
    max-width: 1336px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 600px;
  }
  .game .inner-blk h2 {
    margin-bottom: min(3rem, 42px);
    font-size: min(3rem, 42px);
  }
  .game .inner-blk h2 small {
    font-size: min(2.5rem, 35px);
  }
  .game .inner-blk > div:nth-of-type(1) {
    width: min(32rem, 448px);
    margin: 0 auto min(2rem, 28px);
  }
  .game .inner-blk > div:nth-of-type(2) {
    flex-wrap: wrap;
    padding: min(3rem, 42px) min(1.6rem, 22.4px);
    border-radius: 3rem;
  }
  .game .inner-blk > div:nth-of-type(2) > div {
    width: 100%;
    margin-bottom: min(1.5rem, 21px);
  }
  .game .inner-blk > div:nth-of-type(2) > div h3 {
    margin-bottom: min(2.5rem, 35px);
    padding-bottom: min(3rem, 42px);
    font-size: min(2.5rem, 35px);
    text-align: center;
    line-height: 1.6;
  }
  .game .inner-blk > div:nth-of-type(2) > div p {
    font-size: min(1.4rem, 19.6px);
    line-height: 2;
  }
  .game .inner-blk > div:nth-of-type(2) img {
    width: 100%;
  }
  .game .bg-1 {
    top: 15%;
    left: -10%;
    width: 60vw;
  }
  .game .bg-2 {
    top: 60%;
    right: -20%;
    width: 100vw;
  }
}
/* use
--------------------------------- */
.use {
  position: relative;
  margin-top: 16.7rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #8DC654;
}
.use::before {
  position: absolute;
  content: "";
  top: -16.6rem;
  width: 100%;
  height: 16.7rem;
  background: url(../img/parts/parts-bg-curve.png) no-repeat top 1px center/cover;
}
.use .inner-blk {
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 107.8rem;
  max-width: 1078px;
  margin-top: -16.7rem;
}
.use .inner-blk h2 {
  z-index: 1;
  position: relative;
  margin-bottom: 10rem;
  font-size: 5rem;
  color: #fff;
  text-align: center;
}
.use .inner-blk h2 span {
  font-size: 4.5rem;
}
.use .inner-blk ul {
  display: flex;
  justify-content: space-between;
}
.use .inner-blk ul li {
  position: relative;
  width: 24.6rem;
  padding: 6rem 2rem 2rem;
  background-color: #fff;
  border-radius: 2rem;
  text-align: center;
}
.use .inner-blk ul li h4 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 6.4rem;
  height: 6.4rem;
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
  background-color: #FFBA00;
  border-radius: 50%;
  text-align: center;
  line-height: 1;
}
.use .inner-blk ul li h4 span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.use .inner-blk ul li img {
  width: auto;
  height: 7.4rem;
  margin-bottom: 3rem;
}
.use .inner-blk ul li h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}
.use .inner-blk ul li p {
  font-size: 1.6rem;
  color: #6B573E;
  text-align: left;
}

@media (max-width: 767px) {
  .use {
    margin-top: 4rem;
    padding-top: 1rem;
    padding-bottom: min(5rem, 70px);
    background-color: #8DC654;
  }
  .use::before {
    top: -4rem;
    height: 4.1rem;
    background: url(../img/parts/parts-bg-curve.png) no-repeat top 1px center/100%;
  }
  .use .inner-blk {
    width: 100%;
    max-width: 1336px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    max-width: 600px;
    margin-top: 0;
  }
  .use .inner-blk h2 {
    margin-bottom: min(4rem, 56px);
    font-size: min(3rem, 42px);
  }
  .use .inner-blk h2 span {
    font-size: min(2.8rem, 39.2px);
  }
  .use .inner-blk ul {
    flex-wrap: wrap;
    row-gap: min(2rem, 28px);
  }
  .use .inner-blk ul li {
    width: 48%;
    padding: min(5.4rem, 75.6px) min(1.3rem, 18.2px) min(2rem, 28px);
    border-radius: min(2rem, 28px);
  }
  .use .inner-blk ul li h4 {
    width: min(5.6rem, 78.4px);
    height: min(5.6rem, 78.4px);
    font-size: min(1.8rem, 25.2px);
  }
  .use .inner-blk ul li h4 span {
    font-size: min(1.2rem, 16.8px);
  }
  .use .inner-blk ul li img {
    width: auto;
    height: min(4.8rem, 67.2px);
    margin-bottom: min(2rem, 28px);
  }
  .use .inner-blk ul li h3 {
    margin-bottom: min(1rem, 14px);
    font-size: min(1.8rem, 25.2px);
  }
  .use .inner-blk ul li p {
    font-size: min(1.4rem, 19.6px);
  }
}
/* app-dl
--------------------------------- */
.app-dl {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.app-dl .inner-blk {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #EFF9E5;
  border-radius: 3rem;
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 107.8rem;
  max-width: 1078px;
  padding: 4rem 6rem;
}
.app-dl .inner-blk::before {
  z-index: 0;
  position: absolute;
  content: "";
  top: 6rem;
  left: 3rem;
  width: 7.5rem;
  height: 7.5rem;
  background-color: #8DC654;
  border-radius: 50%;
}
.app-dl .inner-blk h2 {
  z-index: 1;
  position: relative;
  width: 34.6rem;
  font-size: 4.6rem;
  font-weight: 700;
}
.app-dl .inner-blk ul {
  width: 54.7rem;
}
.app-dl .inner-blk ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
}
.app-dl .inner-blk ul li:nth-child(2) {
  column-gap: 1rem;
}
.app-dl .inner-blk ul li img {
  width: 10.7rem;
  height: 10.7rem;
}
.app-dl .inner-blk ul li:first-child {
  margin-bottom: 2rem;
}
.app-dl .inner-blk ul li > div {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.app-dl .inner-blk ul li > div h3 {
  font-size: 2.2rem;
}
.app-dl .inner-blk ul li > div p {
  color: #666666;
}
.app-dl .inner-blk ul li > div a {
  color: #529FEE;
  text-decoration: underline;
}
.app-dl .inner-blk ul li:nth-child(2) > div {
  flex-direction: row;
  column-gap: 2rem;
}
.app-dl .inner-blk ul li:nth-child(2) > div img {
  width: 100%;
  height: 5.1rem;
}
.app-dl .round-1 {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 18vw;
  height: 18vw;
}
.app-dl .round-2 {
  z-index: -1;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30vw;
  height: 30vw;
}

@media (max-width: 767px) {
  .app-dl {
    padding-top: min(4rem, 56px);
    padding-bottom: min(4rem, 56px);
  }
  .app-dl .inner-blk {
    flex-wrap: wrap;
    width: 100%;
    max-width: 1336px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: calc(100% - 3rem);
    max-width: 550px;
    padding: min(5rem, 70px) min(1.7rem, 23.8px);
  }
  .app-dl .inner-blk::before {
    top: min(2.8rem, 39.2px);
    left: min(4.5rem, 63px);
    width: min(6rem, 84px);
    height: min(6rem, 84px);
  }
  .app-dl .inner-blk h2 {
    width: 100%;
    margin-bottom: min(3rem, 42px);
    font-size: min(3rem, 42px);
    text-align: center;
  }
  .app-dl .inner-blk ul {
    width: 54.7rem;
  }
  .app-dl .inner-blk ul li {
    column-gap: min(1rem, 14px);
  }
  .app-dl .inner-blk ul li img {
    width: min(8rem, 112px);
    height: min(8rem, 112px);
  }
  .app-dl .inner-blk ul li:first-child {
    margin-bottom: min(2rem, 28px);
  }
  .app-dl .inner-blk ul li > div {
    row-gap: min(0.5rem, 7px);
    font-size: min(1.4rem, 19.6px);
  }
  .app-dl .inner-blk ul li > div h3 {
    font-size: min(1.6rem, 22.4px);
  }
  .app-dl .inner-blk ul li:nth-child(2) > div {
    flex-direction: column;
    margin-right: auto;
  }
  .app-dl .inner-blk ul li:nth-child(2) > div img {
    width: 100%;
    height: min(5.1rem, 71.4px);
    object-position: left center;
    object-fit: contain;
  }
  .app-dl .round-1 {
    width: 30vw;
    height: 30vw;
  }
  .app-dl .round-2 {
    width: 50vw;
    height: 50vw;
  }
}
@media (max-width: 1600px) {
  body.large-font .app-dl .inner-blk h2 {
    width: 38.6rem;
  }
  body.large-font .app-dl .inner-blk ul {
    width: 52.7rem;
  }
}

/* story
--------------------------------- */
.story {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #8DC654;
  font-size: 1rem;
}
.story .inner-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 115rem;
  max-width: 1150px;
}
.story .inner-blk h2 {
  width: 100%;
  margin-bottom: 7rem;
  font-size: 7rem;
  font-weight: 400;
  font-family: serif;
  text-align: center;
  color: #fff;
}
.story .inner-blk > div {
  width: 50%;
  font-weight: 700;
  color: #fff;
}
.story .inner-blk > div h3 {
  margin-bottom: 3rem;
  font-size: 3rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
.story .inner-blk > div p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
.story .inner-blk img {
  width: 48%;
}

@media (max-width: 767px) {
  .story {
    padding-top: min(4rem, 56px);
    padding-bottom: min(4rem, 56px);
  }
  .story .inner-blk {
    width: 100%;
    max-width: 1336px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    max-width: 600px;
  }
  .story .inner-blk > p {
    width: 100%;
    margin-bottom: min(3rem, 42px);
    font-size: min(4rem, 56px);
  }
  .story .inner-blk > div {
    width: 100%;
    margin-bottom: min(2rem, 28px);
  }
  .story .inner-blk > div h3 {
    margin-bottom: min(3rem, 42px);
    font-size: min(2.5rem, 35px);
  }
  .story .inner-blk > div p {
    font-size: min(1.4rem, 19.6px);
  }
  .story .inner-blk img {
    width: 100%;
  }
}

/* button
--------------------------------- */
.button-gr a,
.button-pk a {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;

  margin: 0 auto;
  padding: 1.8rem 2rem 1.8rem 2.5rem;

  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #FC7C7C;
  box-shadow: 0 0.8rem 0 #E65353;
  border-radius: 4rem;
  transition: 0.2s;
}

.button-gr a:hover,
.button-pk a:hover {
  transform: translateY(3px);
  text-decoration: none;
  box-shadow: 0 0.2rem 0 #E65353;
}

.button-pk a {
  width: min(290px, 35vw);
}

.button-gr a {
  width: min(25vw, 255px);
  background-color: #8DC654;
  box-shadow: 0 0.8rem 0 #55A00A;
}

.button-gr a:hover {
  box-shadow: 0 0.2rem 0 #55A00A;
}

a [class^="icon"] {
  top: 0.2rem;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 1rem;
}

.icon-link {
  background: url(../img/button/icon-link.png) no-repeat center/contain;
}

.icon-plus {
  background: url(../img/button/icon-link-plus.png) no-repeat center/contain;
}


@media (max-width: 767px) {

  .button-pk a {
    width: 28.8rem;
    font-size: min(1.6rem, 22.4px);
  }

  .button-gr a {
    width: 60vw;
    font-size: min(1.6rem, 22.4px);
    margin-bottom: 1rem;
  }
}


/*上下にふわふわ動くアニメーション*/
#animatedObject {
  position: relative;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 上下の移動量を指定 */
  }
}

.hero-sub.case {
  max-height: 16.5rem;
}
@media (min-width: 768px) {
  .hero-sub.case {
    max-height: 30rem;
  }
}
.hero-sub.case .hero-block {
  background: url(../img/case/head-mv.jpg) no-repeat top center/cover;
  max-height: 30rem;
}
@media (max-width: 767px) {
  .hero-sub.case .hero-block {
    background: url(../img/case/head-mv-sp.jpg) no-repeat top 6rem center/cover !important;
  }
}
.hero-sub.case .hero-sub .container .mv-title h2 {
  background: url(../img/case/head-title.png) no-repeat top center/cover;
}
@media (max-width: 767px) {
  .hero-sub.case .hero-sub .container .mv-title h2 {
    background: url(../img/case/head-title-sp.png) no-repeat top center/cover;
  }
}

.case .mv-title h2 {
  font-weight: 700 !important;
}
.case-head {
  text-align: center;
  margin-block: 0 25px;
}
@media (min-width: 768px) {
  .case-head {
    margin-block: 0 50px;
  }
}
.case-head-top {
  font-weight: 700;
  color: #ffde00;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.05px;
}
@media (min-width: 768px) {
  .case-head-top {
    line-height: 35px;
    font-size: 24px;
  }
}
.case-head-btm {
  color: #ffde00;
  letter-spacing: 0.05px;
  font-weight: 700;
  margin-top: -13px;
  line-height: 44px;
  font-size: 30px;
}
@media (min-width: 768px) {
  .case-head-btm {
    font-size: 45px;
    line-height: 65px;
    margin-top: -18px;
  }
}
.case-row {
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
  padding-inline: 30px;
}
@media (min-width: 768px) {
  .case-row {
    margin: 0 auto 60px;
    flex-direction: row;
    gap: 50px;
    max-width: 725px;
    padding-inline: 0;
  }
}
@media (min-width: 992px) {
  .case-row {
    max-width: 930px;
    gap: 35px;
  }
}
@media (min-width: 1200px) {
  .case-row {
    max-width: 1045px;
    gap: 88px;
  }
}
.case-img {
  max-width: 100%;
  padding: 0 15px 0 16px;
}
@media (min-width: 768px) {
  .case-img {
    margin: 0;
    padding: 0;
    max-width: 461px;
  }
}
.case-content {
  max-width: 496px;
}
.case-content-txt {
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.001px;
  font-size: 15px;
  line-height: 26.83px;
}
@media (min-width: 768px) {
  .case-content-txt {
    line-height: 32.25px;
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .case-content-txt {
    line-height: 37.25px;
    font-size: 20px;
  }
}
.case-box {
  background-color: #fff;
  padding: 25px 0 29px;
  max-width: 100%;
  border-radius: 10px;
  margin: 0 15px;
}
@media (min-width: 576px) {
  .case-box {
    padding: 53px 0 48px;
  }
}
@media (min-width: 768px) {
  .case-box {
    margin: 0 auto;
    border-radius: 30px;
    max-width: 725px;
  }
}
@media (min-width: 992px) {
  .case-box {
    max-width: 930px;
  }
}
@media (min-width: 1200px) {
  .case-box {
    max-width: 1045px;
  }
}
.case-box-ttl {
  font-weight: 700;
  letter-spacing: 0.05px;
  text-align: center;
  color: #8dc654;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 29px;
}
@media (min-width: 768px) {
  .case-box-ttl {
    font-size: 30px;
    line-height: 44px;
    margin-bottom: 33px;
  }
}
.case-box-ttl.-third {
  line-height: 31px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .case-box-ttl.-third {
    line-height: 40px;
    margin-bottom: 33px;
  }
}
.case-box-row {
  display: flex;
  align-items: center;
  max-width: 823px;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 0;
}
@media (min-width: 768px) {
  .case-box-row {
    gap: 12.5px;
    flex-direction: row;
    max-width: 685px;
  }
}
@media (min-width: 992px) {
  .case-box-row {
    max-width: 823px;
  }
}
.case-box-row.-rev {
  max-width: 681px;
  flex-direction: column-reverse;
  gap: 15px;
}
@media (min-width: 768px) {
  .case-box-row.-rev {
    gap: 69px;
    flex-direction: row-reverse;
  }
}
.case-box-row.-rev .case-box-content-img {
  max-width: 196px;
  margin: -40px auto 0;
}
@media (min-width: 576px) {
  .case-box-row.-rev .case-box-content-img {
    max-width: 300px;
    margin: -30px auto 0;
  }
}
@media (min-width: 768px) {
  .case-box-row.-rev .case-box-content-img {
    max-width: 256px;
    margin: -25px -20.5px 0 auto;
  }
}
.case-box-row.-rev .case-box-img {
  display: flex;
  align-items: center;
  max-width: 100%;
  padding-inline: 15px 0;
  gap: 4px;
}
@media (min-width: 768px) {
  .case-box-row.-rev .case-box-img {
    gap: 0;
    max-width: 222px;
    padding-inline: 0;
    margin: 0 auto;
  }
}
.case-box-row.-rev .case-box-img-sp {
  max-width: 158px;
}
@media (min-width: 768px) {
  .case-box-row.-rev .case-box-img-sp {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .case-box-row.-rev .case-box-content-abs {
    max-width: 229px;
  }
}
.case-box-row.-rev .case-box-para p {
  letter-spacing: 1px;
}
.case-box-row.-third {
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .case-box-row.-third {
    gap: 12.5px;
    align-items: start;
  }
}
@media (min-width: 768px) {
  .case-box-row.-third .case-box-para {
    margin-top: 10px;
  }
}
.case-box-row.-third .case-box-content-img {
  margin: -25px auto 0;
  max-width: 159px;
}
@media (min-width: 576px) {
  .case-box-row.-third .case-box-content-img {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .case-box-row.-third .case-box-content-img {
    max-width: 219px;
  }
}
.case-box-row.-third .case-box-img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .case-box-row.-third .case-box-img {
    padding-inline: 55px;
  }
}
@media (min-width: 768px) {
  .case-box-row.-third .case-box-img {
    max-width: 406px;
  }
}
.case-box-para {
  background: #fefff1;
  padding: 26.2px 11px;
}
@media (min-width: 768px) {
  .case-box-para {
    padding: 38.5px 43px;
  }
}
.case-box-para p {
  font-weight: 700;
  color: #6b573e;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .case-box-para p {
    letter-spacing: 0.05px;
    font-size: 16px;
    line-height: 29.67px;
  }
}
@media (min-width: 992px) {
  .case-box-para p {
    font-size: 18px;
    line-height: 32.67px;
  }
}
.case-box-content {
  max-width: 261px;
}
@media (min-width: 576px) {
  .case-box-content {
    max-width: 350px;
  }
}
@media (min-width: 768px) {
  .case-box-content {
    max-width: 375px;
  }
}
.case-box-content-img {
  max-width: 230px;
  margin: -20px auto 0;
}
@media (min-width: 576px) {
  .case-box-content-img {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .case-box-content-img {
    margin: -25px 8.5px 0 auto;
    max-width: 302px;
  }
}
.case-box-content-abs {
  max-width: 229px;
  position: relative;
}
@media (min-width: 768px) {
  .case-box-content-abs {
    top: 69%;
    right: -225px;
    transform: translateY(-50%);
    position: absolute;
  }
}
.case-box-content-abs-txt {
  position: absolute;
  z-index: 1;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  letter-spacing: 0.005px;
  color: #6b573e;
  width: 100%;
  text-align: center;
  font-size: 13px;
  line-height: 21px;
}
@media (min-width: 768px) {
  .case-box-content-abs-txt {
    font-size: 16px;
    line-height: 26px;
  }
}
.case-box-img {
  max-width: 100%;
  padding-inline: 56px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .case-box-img {
    max-width: 467px;
    padding: 0;
  }
}
.case-box-img.-fst {
  margin: -30px auto 0;
}
@media (min-width: 768px) {
  .case-box-img.-fst {
    margin: -60px 0 0 -40px;
  }
}
.case-box-border {
  background-repeat: no-repeat;
  width: 100%;
  height: 8px;
  max-width: 320px;
  background-image: url("../img/case/case-dots-sp.svg");
  margin: 20px auto;
}
@media (min-width: 768px) {
  .case-box-border {
    margin: 40px auto;
    max-width: 775px;
    background-image: url("../img/case/case-dots.svg");
  }
}
.case-box-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-direction: column;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .case-box-btns {
    margin-top: 40px;
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .case-box-btns {
    gap: 79px;
  }
}
.case-box-btn a {
  width: 288px;
  height: 59px;
  padding: 0 20px 0 25px;
  font-size: 20px;
  line-height: 29px;
  background: #fc7c7c;
  color: #fff;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  box-shadow: 0 5px 0 #e65353;
  transition: all 0.2s ease;
}
.case-box-btn a:hover {
  transform: translateY(5px);
  box-shadow: none;
}
.case-box-btn a img {
  width: 24px;
}
.case-box-btn.-green a {
  background-color: #8dc654;
  box-shadow: 0 5px 0 #55a00a;
}
.case-box-btn.-green a:hover {
  box-shadow: none;
}

.main.case {
  background: #8dc655;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .main.case {
    padding-bottom: 100px;
  }
}/*# sourceMappingURL=style.css.map */