@charset "utf-8";
/*
Theme Name: besthyle
Version: 1.0
*/
html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body .pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  body .sp {
    display: none;
  }

  body .pc {
    display: block;
  }
}

/* ----------------------------------------------------
    共通
---------------------------------------------------- */

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 16px;
  background-color: #FCF9F3;
  color: #333333;
}

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

.title {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #60451b;
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 18px;
}

.title span {
  display: inline-block;
  position: relative;
}

/* ドット装飾 */
.title span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 32px;
  width: 100%;
  height: 14px;
  background: url(./images/leaf-dot.svg) repeat-x;
  background-size: auto 6px;
}

@media screen and (min-width: 1024px) {
  .title {
    font-size: 32px;
    margin-bottom: 80px;
  }

  .title span::before {
    content: "";
    position: absolute;
    left: -14px;
    width: 106%;
    top: 56px;
    height: 14px;
    background: url(./images/leaf-dot.svg) repeat-x;
    background-size: auto 10px;
  }
}

.btn {
  background-color: #477C67;
  color: #FFFEFE;
  display: block;
  text-decoration: none;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  max-width: 505px;
  margin: 24px auto 0;
}

.btn span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 10px;
  background-image: url('./images/btn.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 31px;
  top: -3px;
  position: relative;
}

.btn2 {
  background-color: #4B3515;
  color: #FFFEFE;
  display: block;
  text-decoration: none;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  max-width: 505px;
  margin: 8px auto 0;
}

.btn2 span {
  
  margin-left: -4%;
}

.btn2 span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 27px;
  background-image: url('./images/telephone.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 14px;
  top: 4px;
  position: relative;
}

.onayami .aoiyane {
  width: 45%;
  margin: 48px auto 0;
}

@media screen and (min-width: 1024px) {
  .btn span::after {
    width: 12px;
    height: 14px;
    top: -2px;
  }

  .nav__items li:nth-child(5),
  .nav__items li:nth-child(6) {
    height: 60px;
  }

  .nav-items__item a.btn,
  .nav-items__item a.btn2 {
    padding: 16px;
    font-size: 16px;
    color: #fff;
    height: 24px;
  }

  .nav-items__item a.btn2 {
    font-size: 18px;
    margin-top: 2px;
  }

  .btn span::after {
    margin-left: 16px;
    top: 1px;
  }

  .btn2 span::before {
    top: 6px;
  }

  .btn span {
    top: -2px;
    position: relative;
  }

  .btn2 span {
    margin-left: auto;
    top: -7px;
    position: relative;
  }

  .btn:hover {
    opacity: 0.7;
  }
}

/* ----------------------------------------------------
    header
---------------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header h1 {
  font-size: 12px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #4B3515;
}

header .line-icon {
  width: 20px;
  display: flex;
  align-items: center;
}

header .tel {
  width: 20px;
  display: flex;
  align-items: center;
}

header a.header-logo {
  text-decoration: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  padding: 16px;
  background-color: #FCF9F3;
  z-index: 999;
}

.header_right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  transform: translateX(100%);
  background-color: #FCF9F3;
  transition: ease 0.4s;
  height: 100vh;
  z-index: 998;
}

.header__nav.active {
  transform: translateX(0);
}

.nav-inner {
  margin: 20% 10% 0;
}

.nav-inner .title {
  text-align: left;
  margin-bottom: 16px;
  margin-top: 46px;
}

.nav-items li {
  position: relative;
}

.nav-items li:not(:last-child) {
  margin-bottom: 16px;
}

.nav-items a {
  font-family: "Zen Maru Gothic", sans-serif;
  text-decoration: none;
  color: #4B3515;
  position: relative;
  margin-left: 24px;
  font-weight: 700;
}

.nav-items li::before {
  content: '';
  width: 14px;
  height: 1px;
  background-color: #333333;
  top: 50%;
  position: absolute;
  margin-right: 24px;
}

.nav-inner .btn {
  margin-top: 8px;
}

.nav-inner .btn2 {
  background-color: #4B3515;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #477C67;
  border-radius: 5px;
  border: #477C67 solid 1px;
  cursor: pointer;
}

.hamburger .span {
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  display: block;
  display: flex;
  width: 100%;
}

.hamburger .span>span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 1px;
  background-color: #fff;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.hamburger .span>span:nth-child(1) {
  top: 30%;
}

.hamburger .span>span:nth-child(2) {
  top: 50%;
}

.hamburger .span>span:nth-child(3) {
  top: 70%;
}

.hamburger.active .span>span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active .span>span:nth-child(2) {
  opacity: 0;
}

.hamburger.active .span>span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (1024px <=width) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;
    gap: 48px;
  }

  header h1 {
    font-size: 24px;
    white-space: nowrap;
  }

  .nav-bg {
    display: none;
  }

  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }

  .nav-items__item:not(:last-child) {
    padding-bottom: 0;
  }

  .nav-items__item a {
    width: 100%;
    display: block;
    border-top: none;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0%;
  }

  .nav-items__item a:hover {
    opacity: 0.7;
  }

  .hamburger {
    display: none;
  }


  .nav-items li::before {
    display: none;
  }

  .nav-items li:not(:last-child),
  .nav-items a {
    margin: 0;
  }

  .header__inner {
    padding-right: 50px;
  }

  /* .header__inner {
    padding: 32px;
  }*/
}

/* ----------------------------------------------------
    sec01
---------------------------------------------------- */
.mv {
  position: relative;
  height: 100vh;
}

.mv .inner {
  padding: 0 5%;
}

.mv .main-copy {
  padding-top: 96px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #45351E;
  margin-bottom: 24px;
  font-size: 24px;
}

.mv .sub-copy {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #45351E;
  margin-bottom: 8px;
}

.mv ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mv ul li {
  font-size: 14px;
  color: #3A2A12;
  padding: 8px 10px;
  background-color: #F8EEE2;
  white-space: nowrap;
}

.mv-video {
  overflow: hidden;
  position: relative;
  height: 50vh;
}

.mv-video video {
  position: absolute;
  left: 63%;
  transform: translate(-50%, 0);
  bottom: 0;
  opacity: 0.9;
}

.mv-video .cover {
  position: absolute;
  top: 0;
}

.mv-video .cover img {
  height: 80px;
}

.video_wrapper {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

.video_wrapper>video {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
}

@media screen and (min-width: 1024px) {
  .mv {
    height: 100vh;
  }

  .mv .inner {
    padding: 0;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    position: absolute;
    z-index: 900;
  }

  .mv .main-copy {
    margin-top: 120px;
    margin-bottom: 48px;
    font-size: 48px;
  }

  .mv .sub-copy {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .mv ul {
    gap: 8px;
  }

  .mv ul li {
    font-size: 16px;
    padding: 8px 10px;
  }

  .mv ul li.flex-break {
    flex-basis: 100%;
    height: 0;
    padding: 0;
    margin: 0;
    background-color: transparent;
  }

  .mv-video {
    height: 100vh;
  }

  .mv-video video {
    top: 0;
    height: 100vh;
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    opacity: 0.7;
    width: 150%;
    object-fit: cover;
    object-position: right bottom;
  }

  .mv-video .cover {
    display: none;
  }

  .mv .btn {
    margin: 48px 0 114px;
  }
}


/* ----------------------------------------------------
    sec02onayami
---------------------------------------------------- */
.onayami {
  background-color: #F7F4EE;
  padding: 40px 0 40px 0;
  /* 余白入れると背景の色などが違う*/

}

.oyako {
  width: 61%;
  margin: -20px auto -4px;
}

.onayami ul {
  background-color: #FFFCFC;
  border-radius: 50%;
  /* background-size: 100% 100%;
  background-repeat: no-repeat; */
  padding: 28px 40px;
  /* background-image: url('/images/hukidasi.png'); */
  /* width: 78%; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.onayami ul li {
  display: inline-block;
  text-align: left;
}

.onayami ul li span {
  background: linear-gradient(transparent 40%, #ABD5F1 80%);
}

.onayami .ul-2 {
  text-align: right;
}

.onayami .ul-2 li {
  text-align: left;
}

.onayami .ul-2 li span {
  background: linear-gradient(transparent 40%, #FDD5D1 80%);
}

.onayami ul li::before {
  content: "";
  display: inline-block;
  /* width: 3px;
  height: 4px; */
  margin-right: 3px;
  top: -4px;
  position: relative;
  background-image: url('./images/ten.png');
  background-position: center;
  background-size: contain;
}

.answer {
  text-align: center;
  padding: 50px 5% 54px;
  margin-top: 40px;
  margin-bottom: -40px;
  background-color: #FCF9F3;
  clip-path: polygon(0 0, 50% 5vw, 100% 0, 100% 100%, 0 100%);
}

.answer p {
  text-align: left;
}

.green {
  color: #477C67;
  font-size: 20px;
}

.onayami h3 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #45351E;
  margin-bottom: 24px;
}

@media screen and (min-width: 1024px) {
  .onayami .title span::before {
    left: -23px;
    width: 112%;
  }

  .onayami h3 {
    font-size: 44px;
    margin-bottom: 61px;
  }

  .green {
    font-size: 48px;
  }

  .deha {
    font-size: 34px;
  }

  .answer p {
    font-size: 24px;
    text-align: center;
    margin-bottom: 65px;
  }

  .onayami .aoiyane {
    position: absolute;
    left: 50px;
    bottom: 71px;
    width: 20%;
  }

  .answer {
    position: relative;
    padding: 140px 5% 160px;
  }
}

/* ----------------------------------------------------
    sec03 power
---------------------------------------------------- */
.power {
  padding: 54px 0;
  background-color: #FFF8EB;
}

.power .title {
  margin-top: 0;
}

.power ul {
  padding: 0 10%;
}

.power ul li {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 48px;
}

.power ul li img {
  margin-bottom: 20px;
}

.power h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.power p {
  font-size: 14px;
  line-height: 1.6;
}

.power .kiirotochi {
  margin-top: 10px;
  margin-bottom: 20px;
}

.power .kiirotochi img {
  width: 171px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

@media screen and (min-width: 1024px) {
  .power {
    padding: 160px 0;
  }

  .power .title span::before {
    left: -18px;
    width: 110%;
  }

  .power ul {
    margin-top: 150px;
  }

  .power ul li {
    display: flex;
    width: 82%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
    align-content: center;
  }

  .power ul li:nth-child(1) {
    margin-top: -40px;
  }

  .power ul li:nth-child(2) {
    flex-direction: row-reverse;
  }

  .power h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .power p {
    font-size: 20px;
    line-height: 1.6;
  }



  .power li .image {
    width: 50%;
  }

  .power li .txt {
    width: 42%;
  }

}


/* ----------------------------------------------------
    sec04 cta
---------------------------------------------------- */
.cta-oyako {
  width: 100%;
  position: relative;
}

.cta-oyako .txt {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.cta-oyako h2 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #45351E;
  margin-bottom: 24px;
}

.cta-oyako p {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  margin-bottom: 8px;
}

.cta-oyako .btn {

  width: 82%;

  margin-top: 24px;
  white-space: nowrap;
  display: block;
}

.cta-oyako .btn span {
  padding-left: 36px;
  padding-right: 16px;
}

@media screen and (min-width: 1024px) {
  .cta-oyako {
    width: 100%;
    height: 558px;
    overflow: hidden;
  }

  .cta-oyako img {
    width: 110%;
    object-fit: cover;
    object-position: right;
    height: 100%;
  }

  .cta-oyako .txt {
    top: 50%;
    left: 88px;
    transform: translateY(-50%);
    width: auto;
  }

  .cta-oyako h2 {
    text-align: left;
    font-size: 39px;
    margin-bottom: 24px;
  }

  .cta-oyako p {
    margin-top: 30px;
    text-align: left;
    font-size: 24px;
    line-height: 2.0;
    margin-bottom: 38px;
  }

  .cta-oyako .btn {
    max-width: 363px;
    margin: 24px 0 0;
  }

  .cta-oyako .btn span::after {
    width: 12px;
    height: 14px;
    top: -2px;
  }
}


/* ----------------------------------------------------
    sec05 gutairei
---------------------------------------------------- */
.children-list {
  counter-reset: children-counter;
}

.hattatu .hattatu-list {
  padding: 0 10%;
}

.hattatu .hattatu-list li {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 48px;
}

.hattatu .hattatu-list li img {
  margin-bottom: 20px;
}

.hattatu .hattatu-list h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hattatu .hattatu-list p {
  font-size: 14px;
  line-height: 1.6;
}

.hattatu h2 {
  margin-top: 45px;
  text-align: center;
}

.children-list h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 12px;
  font-size: 18px;
}

.children-list h3::before {
  counter-increment: children-counter;
  content: counter(children-counter) ". ";
}

.children-list ul li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}

.children-list ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.children-list ul li.profession {
  padding-left: 0;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #ccc;
  font-size: 14px;
}

.children-list ul li.profession::before {
  content: none;
}

.children-item {
  background-color: #FBF1E4;
  border-radius: 70px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

.children-item:nth-child(2) {
  background-color: #F3EEE2;
}

.children-item .img {
  width: 80%;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.children-item-text {
  flex-grow: 1;
  width: 80%;
}

@media screen and (max-width: 1023px) {
  .children-item {
    flex-direction: column;
    border-radius: 40px;
    padding: 24px;
    gap: 24px;
    margin-top: 22px;
    margin-right: 34px;
    margin-left: 46px;
  }


  .children-item img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.children-matome h2 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #45351E;
  margin-bottom: 24px;
  margin-top: 40px;
  text-align: center;
}

.children-matome span {
  display: inline-block;
  background-image: linear-gradient(#F6D0A8, #F6D0A8);
  background-repeat: no-repeat;
  background-size: 73px 3px;
  background-position: center bottom 7px;
}

.children-matome .img {
  margin: 26px auto;
  width: 72%;
}

@media screen and (min-width: 1024px) {

  .children {
    margin-top: 140px;
  }

  .children-item {
    gap: 55px;
  }

  /* 
  .children-item-text::before {
    left: -21px;
    top: 56px;
    width: 109%;
  } */

  .children-item .img {
    max-width: 380px;
    width: 50%;
    /* margin: 114px 110px 144px 64px; */
  }

  .children-item-text {
    width: 50%;
    max-width: 500px;
  }

  .hattatu h2 {
    font-size: 30px;
    margin-bottom: 70px;
  }

  .children-list h3 {
    margin-bottom: 9px;
    font-size: 32px;
    margin-top: 0;
  }

  .children-item {
    display: flex;
    margin: 62px auto;
    padding: 100px 48px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 82%;
  }

  .children-item ul li {
    font-size: 24px;
    line-height: 1.75;
  }

  .children-matome h2 {
    font-size: 36px;
    margin-bottom: 105px;
    margin-top: 94px;
  }

  .children-matome span {
    background-size: 153px 12px;
    background-position: center bottom 12px;
  }

  .children-matome .img {
    margin: 105px 424px;
    width: 72%;
    transform: translate(-20%);
  }

}


/* ----------------------------------------------------
    sec06 hattatu
---------------------------------------------------- */
/*.hattatu h2 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #45351E;
  margin-bottom: 24px;
  margin-top: 40px;
  text-align: center;
}

.hattatu .hattatu-list {
  padding: 0 10%;
}

.hattatu .hattatu-list li {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 48px;
}

.hattatu .hattatu-list li img {
  margin-bottom: 20px;
}

.hattatu .hattatu-list h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hattatu .hattatu-list p {
  font-size: 14px;
  line-height: 1.6;
}*/

.adult-item {
  background-color: #FBF1E4;
  border-radius: 70px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

.adult-item:nth-child(2) {
  background-color: #F3EEE2;
}


.adult-item-text {
  flex-grow: 1;
}

@media screen and (max-width: 1023px) {
  .adult-item {
    flex-direction: column;
    border-radius: 40px;
    padding: 24px;
    gap: 40px;
    margin-top: 22px;
    margin-right: 34px;
    margin-left: 46px;
  }

  .adult-item img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .adult-item-text {
    width: 100%;
  }
}

.adult-list ul li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}

.adult-list ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.adult-list ul li:last-child {
  padding-left: 0;
  margin-top: 7px;
}

.adult-list ul li:last-child::before {
  content: none;
}

.adult-item h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.adult-matome {
  position: relative;
  max-width: 500px;
  margin: 30px auto 40px;
  text-align: center;
  padding: 0 60px;
}

.adult-matome .kao {
  position: absolute;
  bottom: -20px;
  margin: 0;
}

.adult-matome .kao:first-child {
  left: 0;
}

.adult-matome .kao:last-child {
  right: 0;
}

.adult-matome h2 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #45351E;
  margin: 0 auto 60px;
  line-height: 2.2;
}

.kao img {
  width: 74px;
  height: 70px;
  object-fit: contain;
}


@media screen and (min-width: 1024px) {
  .support-adult .hattatu {
    font-size: 30px;
  }

  .adult-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    width: 82%;
    max-width: 1200px;
  }

  .adult-item {
    flex-direction: column;
    gap: 24px;
  }

  .adult-item h3 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .adult-list ul li {
    font-size: 24px;
    line-height: 1.83;
  }

  .adult-list ul li:last-child {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 32px;
  }

  .adult-item-text {
    width: 100%;
  }

  .adult-item img {
    width: 100%;
    height: auto;
  }


  .adult-matome {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 100px 0;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .adult-matome h2 {
    font-size: 36px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
  }

  .adult-matome .kao {
    position: static;
    margin: 0;
  }

  .kao img {
    width: 112px;
    height: auto;
  }

  .sp-br {
    display: none;
  }

}




/* ----------------------------------------------------
    sec07 (ご利用までの流れ)
---------------------------------------------------- */

.nagare {
  background-color: #FFF8EB;
  padding: 54px 0 0;
}

.nagare .title {
  margin-top: 0;
}

.step-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 1px 5%;
}

.step-content {
  background-color: #FCF9F3;
  border-radius: 12px;
  position: relative;
  padding: 60px 30px 40px;
  /* min-height: 280px;*/
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #F3EEE2;
  text-align: left;
  margin-bottom: 76px;
  margin-top: 48px;
}

.step-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: #FBF1E4;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid #F3EEE2;
}

.step-badge img {
  width: 34px;
  height: auto;
  margin-bottom: 4px;
}

.step-badge span {
  font-size: 14px;
  font-weight: 700;
  color: #A0835D;
  letter-spacing: 0.05em;
}

.step-content-last {
  margin-bottom: 0;
}

.step-content h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #60451B;
  margin-bottom: 16px;
  text-align: center;
  font-size: 18px;
}

.step-content p {
  line-height: 1.8;
  color: #333333;
  text-align: left;
  display: inline-block;
}

.step-content .btn {
  position: static;
  transform: none;
  margin: 32px auto 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.step-content ul {
  font-size: 14px;
}

.step-content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.step-content ul li {
  position: relative;
  padding-left: 1em;
  list-style: none;
}

.nagare-img {
  width: 100%;
  max-width: 208px;
  margin-top: 56px;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  .nagare {
    position: relative;
    padding: 118px 0 120px;
  }

  .step-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .step-content {
    margin-bottom: 0;
  }

  .step-content:nth-child(1) {
    grid-column: 1 / span 2;
  }

  .step-content:nth-child(2) {
    grid-column: 3 / span 2;
  }

  .step-content:nth-child(3) {
    grid-column: 5 / span 2;
  }

  .step-content:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .step-content:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .nagare-img {
    position: absolute;
    bottom: -20px;
    left: 5%;
    width: 280px;
    height: auto;
    margin: 0 auto 80px;
  }

  .step-content .btn {
    padding: 12px;
  }

}

/* ----------------------------------------------------
    sec08 料金について
---------------------------------------------------- */
.ryoukin-img {
  display: none;
}

.ryoukin-item ul {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0;
  margin: 0 auto;
  width: 80%;
  flex-wrap: wrap;
  justify-content: center;
}

.ryoukin-item ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40%;
  aspect-ratio: 1 / 1;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

.ryoukin-item ul li:nth-child(1),
.ryoukin-item ul li:nth-child(4) {
  background-color: #FBF1E4;
}

.ryoukin-item ul li:nth-child(2),
.ryoukin-item ul li:nth-child(3) {
  background-color: #F3EEE2;
}

.ryoukin-item ul li:nth-child(1) {
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.ryoukin-item ul li:nth-child(2) {
  border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
}

.ryoukin-item ul li:nth-child(3) {
  border-radius: 30% 70% 50% 50% / 50% 60% 40% 50%;
}

.ryoukin-item ul li:nth-child(4) {
  border-radius: 60% 40% 40% 60% / 40% 50% 50% 60%;
}

.ryoukin-200yen {
  font-family: "Zen Maru Gothic", sans-serif;
}

.ryoukin-200yen-item h3 {
  text-align: center;
}

.ryoukin-item p {
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
  margin-left: 40px;
  margin-right: 40px;
}

.pc-br {
  display: none;
}

.ryoukin-200yen-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-top: 20px;
}

.ryoukin-200yen-item img {
  width: 6px;
  height: 6px;
  margin: 0 8px;
}

.ryoukin-200yen-text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
}

.ryoukin-200yen-text::before {
  display: inline-block;
  content: "";
  width: 34px;
  height: 34px;
  background: url(/images/gamaguchi.png);
  background-position: center;
  background-size: contain;
  margin-right: 4px;
  bottom: -7px;
  position: relative;
}

.ryoukin-200yen-text span {
  font-size: 20px;
  margin: 0 4px;
}

.ryoukin-200yen-text-2 {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px;
}

.ryoukin-200yen {
  background-color: #F3EEE2;
  border-radius: 12px;
  position: relative;
  padding: 20px 0;
  /*min-height: 280px;*/
  border: 1px solid #F3EEE2;
  text-align: left;
  margin-bottom: 60px;
  margin-top: 40px;
  margin-left: 10%;
  margin-right: 10%;

}

@media screen and (min-width: 1024px) {
  .money {
    position: relative;
  }

  .money .title {
    margin: 80px auto;
    font-size: 32px;
  }

  .money .title span::before {
    left: -17px;
    width: 120%;
  }

  .ryoukin-item ul {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: nowrap;
    gap: 32px;
    font-size: 23px;
  }

  .ryoukin-item ul li {
    width: 262px;
    height: auto;
    font-size: 20px;
  }

  .ryoukin-item p {
    font-size: 20px;
    line-height: 1.75;
    margin: 82px 20% 53px;
  }

  .pc-br {
    display: block;
  }

  .ryoukin-200yen-item {
    padding: 24px 0;
  }

  .ryoukin-200yen-item img {
    width: 10px;
    height: 10px;
  }

  .ryoukin-200yen-text::before {
    width: 36px;
    height: 37px;
    background-size: contain;
    bottom: -7px;
    margin-right: 20px;
  }

  .ryoukin-200yen-text {
    font-size: 20px;
    margin-left: -14px;
    margin-top: -22px;
  }

  .ryoukin-200yen-text span {
    font-size: 36px;
    margin: 0 12px;
  }

  .ryoukin-200yen-text-2 {
    font-size: 16px;
  }

  .ryoukin-200yen {
    border-radius: 10px;
    padding: 20px 0;
    text-align: center;
    margin: 40px 20% 120px;
  }

  .sp-br {
    display: none;
  }

  .ryoukin-img {
    display: block;
    position: absolute;
    bottom: -90px;
    right: 5%;
    width: 280px;
    height: auto;
    margin: 0 auto;
  }

}

/* ----------------------------------------------------
    sec09 利用者の声
---------------------------------------------------- */
.voice {
  background-color: #FFF8EB;
  padding: 32px 0 48px;
}

.voice .title {
  margin-top: 0;
}

.voice-list {
  margin: 0 5%;
}

.voice-list .img {
  width: 50%;
  max-width: 208px;
  margin: 0 auto 26px;
}

.voice-list p {
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #45351E;
  line-height: 2.2;
  text-align: center;
  margin-top: 20px;
  margin-left: 40px;
  margin-right: 40px;
}

.voice .btn {
  margin: 24px auto 45px;
}

@media screen and (min-width: 1024px) {
  .voice {
    padding-top: 100px;
  }

  .voice .title {
    font-size: 32px;
    margin-top: 24px;
  }

  .voice .title span::before {
    left: -18px;
    width: 119%;
  }

  .voice-list p {
    font-size: 24px;
    line-height: 2.3;
    margin: 80px 10% 127px;
  }

  .sp-br {
    display: none;
  }
}

/* ----------------------------------------------------
    sec10 よくある質問
---------------------------------------------------- */
.faq {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.faq:not([open]) {
  margin-bottom: 40px;
}

.accordion summary {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border-radius: 5px;
  background-color: #4B3515;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-top: 20px;
  gap: 8px;
  transition: transform .3s;
}

.accordion .kotae {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #FBF1E4;
  padding: 32px 24px 24px 24px;
  transition: transform .3s;
}

.accordion .kotae .label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  flex-shrink: 0;
}

.accordion .answer-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.accordion .text,
.accordion .note {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.8;
}

.accordion .note {
  display: block;
}

.accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 3px;
  height: 3px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
  transition: transform .3s;
  position: absolute;
  right: 16px;
}

.accordion[open] summary::after {
  transform: rotate(225deg);
}

.accordion p {
  position: relative;
  background-color: #FBF1E4;
  margin: 0;
  /*padding: 1em 2em 2em 2em;*/
  color: #333333;
  font-size: 14px;
  transition: transform .5s, opacity .5s;
}

.note {

  padding-top: 14px;
}

/*.kotae  {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}*/

.accordion[open] p {
  transform: none;
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .faq .title {
    font-size: 32px;
    margin-top: 171px;
  }

  .faq .title::before {
    left: -20px;
    width: 126%;
  }

  .faq .title span::before {
    width: 121%;
  }

  .faq {
    max-width: none;
  }

  .faq:not([open]) {
    margin-bottom: 40px;
  }

  .faq .accordion {
    width: 82%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .accordion summary {
    border-radius: 15px;
    font-size: 20px;
    margin-top: 26px;
  }

  .accordion .kotae {
    padding: 24px 42px 24px 69px;
  }

  .accordion .kotae .label {
    line-height: 1.6;
  }

  .accordion .text,
  .accordion .note {
    font-size: 20px;
    line-height: 1.8;
  }
}


/* ----------------------------------------------------
    sec04 cta
---------------------------------------------------- */
.cta-baby {
  width: 100%;
  position: relative;
}

.cta-baby .txt {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.cta-baby h2 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #45351E;
  margin-bottom: 24px;
}

.cta-baby p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  margin-bottom: 8px;
}

.cta-baby .btn {
  width: 90%;
  margin-top: 24px;
  white-space: nowrap;
  display: block;
}

.cta-baby .btn span {
  padding-left: 36px;
  padding-right: 16px;
}

.cta-baby img {
  height: 80vh;
  object-fit: cover;
  object-position: bottom;
}

@media screen and (min-width: 1024px) {
  .cta-baby {
    width: 100%;
    height: 558px;
    overflow: hidden;
  }

  .cta-baby img {
    width: 110%;
    object-fit: cover;
    object-position: right;
    height: 100%;
  }

  .cta-baby .txt {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: auto;
  }

  .cta-baby h2 {
    text-align: left;
    font-size: 39px;
    margin-bottom: 24px;
  }

  .cta-baby p {
    margin-top: 30px;
    text-align: left;
    font-size: 24px;
    line-height: 2.0;
    margin-bottom: 38px;
  }

  .cta-baby .btn {
    max-width: 363px;
    margin: 24px 0 0;
  }

  .cta-baby .btn span::after {
    width: 12px;
    height: 14px;
    top: -2px;
  }
}

/* 

@media screen and (min-width: 1024px) {
  .cta-baby h2 {
    top: 10%;
    left: 720px;
    text-align: left;
    font-size: 39px;
    margin-bottom: 24px;
  }

  .cta-baby p {
    top: 40%;
    left: 720px;
    margin-top: 30px;
    text-align: left;
    font-size: 24px;
    line-height: 2.0;
    margin-bottom: 38px;
  }

  .cta-baby .btn {
    top: 70%;
    left: 720px;
    width: 82%;
    margin: 24px auto 107px 257px;
  }
} */

/* ----------------------------------------------------
   Instagram
---------------------------------------------------- */

.instagram {
  text-align: center;
  margin: 0 5%;
  padding: 88px 0;
}

.instagram .title {
  margin-top: 0;
}

.instagram .title span::before {
  left: -13px;
  width: 131%;
}

.instagram p {
  font-size: 14px;
  margin: -14px 5% 32px;
  text-align: center;
}

.instagram .btn {
  margin-top: 32px;
}

.insta-img ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px;
}

.insta-img ul li {
  width: 100%;
}

.insta-img ul li img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 1024px) {


  .instagram p {
    font-size: 16px;
    margin-bottom: 64px;
    text-align: center;
  }

  .insta-img {
    width: 82%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .sp-br {
    display: none;
  }

  .insta-img ul {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 64px 0;
  }

  .insta-img ul li {
    width: auto;
  }

}

/* ----------------------------------------------------
    footer
---------------------------------------------------- */
.footer {
  background-color: #4B3515;
  color: #FFF;
  padding: 40px 5% 60px;
}

.footer a {
  color: #FFF;
  text-decoration: none;
}


.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer__head {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer__nav {
  margin-bottom: 24px;
}

.footer__nav ul,
.footer__philosophy ul {
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer__nav ul li a,
.footer__philosophy ul li a {
  font-size: 14px;
  white-space: nowrap;
}

.footer__sns {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__sns a {
  display: block;
  width: 48px;
  height: 48px;
}

.footer__sns a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}

.footer__company-name {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.footer__company ul li {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.footer__policy {
  margin-top: 6px;
}

.footer__policy a {
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 60px 0 80px;
  }

  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 82%;
  }

  .footer__head {
    font-size: 26px;
    margin-bottom: 38px;
  }

  .footer__head.footer__policy {
    gap: 24px;
  }

  .footer__company ul li {
    font-size: 15px;
  }

  .footer__policy a {
    font-size: 20px;
  }

  .footer__top-main {
    display: flex;
    gap: 164px;
  }

  .footer__policy ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer__sns a img {
    margin-left: -50px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ----------------------------------------------------
    our-mission
---------------------------------------------------- */
.our-mission {
  background-color: #FCF9F3
}

.omoi h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 55px 1% 5% auto;
  text-align: center;
}

.omoi p {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #3A2A12;
  text-align: left;
  margin: 34px 5% auto;
}

.our-image {
  display: flex;
  margin: 22px 0 0 auto;
}

.img-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
}

.img-box img {
  height: auto;
}

.img-box img:first-child {
  width: 23%;
}

.img-box img:last-child {
  width: 38%;
}

.pc-br {
  display: none;
}

@media screen and (min-width: 1024px) {

  .page-mission .our-mission .title {
    font-size: 40px;
    margin-top: 200px;
  }

  .page-mission .our-mission .title span::before {
    left: -16px;
    width: 115%;
    top: 69px;
  }

  .pc-br {
    display: inline;
  }

  .omoi {
    position: relative;
  }

  .omoi h2 {
    font-size: 32px;
    margin: 90px auto 0;
    text-align: center;
  }

  .omoi p {
    font-size: 20px;
    text-align: center;
    margin: 70px auto 0;
  }

  .img-box {
    margin-top: -180px;
    position: relative;
    pointer-events: none;
  }

  .img-box img:first-child {
    width: 255px;
    height: auto;
    margin-left: 5%;
  }

  .img-box img:last-child {
    width: 353px;
    height: auto;
    margin-right: 2%;
  }
}

/* ----------------------------------------------------
reason
---------------------------------------------------- */
.reason .title {
  text-align: left;
  margin-left: 5%;
  font-size: 20px;
}

.reason p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin: 32px 5% auto;
  text-align: left;
}

.reason-image {
  display: flex;
  margin-top: 40px;
  margin-left: auto;
  margin-right: 5%;
  text-align: right;
  width: 43%;
}

.reason-ashirai {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 35%;
}

.pc-br {
  display: none;
}

@media screen and (min-width: 1024px) {
  .pc-br {
    display: inline;
  }

  .reason-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
    margin-top: 80px;
  }

  .reason-text-box {
    width: 50%;
  }

  .reason .title {
    margin-left: 0;
  }

  .reason .title span {
    font-size: 28px;
    text-align: left;

  }

  .reason .title span::before {
    left: 0;
    width: 102%;
  }

  .reason p {
    font-size: 20px;
    margin: 0;
    width: 100%;
    height: auto;
  }

  .reason-image {
    margin: 0;
    max-width: 380px;
    height: auto;
    display: flex;
    align-self: center;
  }
}

/* ----------------------------------------------------
message
---------------------------------------------------- */
.message .title {
  margin-left: 5%;
  text-align: left;
  font-size: 20px;
}

.message-omoi {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #3A2A12;
  text-align: left;
  margin: 34px 5% auto;
}

.message-omoi span {
  background: linear-gradient(transparent 40%, #F6D0A8 82%);
}

.message p {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #3A2A12;
  text-align: left;
}

.message-name {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
  display: flex;
}

.message-name p {
  margin-left: 5%;
}

.message-name .role {
  display: block;
  font-size: 17px;
  margin-left: 0;
  white-space: nowrap;
}

.message-name .name {
  display: block;
  margin-top: 8px;
}

.message-name img {
  padding: 0;
  margin-right: 6%;
  margin-top: 28px;
  width: 35%;
  height: auto;
}

.message-image {
  display: none;
}

.pc-br {
  display: none;
}

@media screen and (min-width: 1024px) {
  .pc-br {
    display: inline;
  }

  .message {
    margin-bottom: 148px;
  }

  .message-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 82%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .message-text-box {
    width: 60%;
  }

  .message-omoi {
    width: 100%;
    margin: 0;
  }

  .message .title {
    margin-left: 0;
  }

  .message .title span {
    font-size: 32px;
    margin: 70px auto 0 0;
  }

  .message .title span::before {
    left: 0;
    width: 100%;
  }

  .message p {
    font-size: 20px;
    line-height: 1.8;
  }

  .sp-img {
    display: none;
  }

  .message-name {
    display: block;
    margin-bottom: 0;
    margin: 32px 50px 0 auto;
    width: 220px;
  }

  .message-image {
    display: block;
    width: 35%;
    max-width: 367px;
  }

  .message-name p {
    margin: 0;

  }

  .message-name .role {
    font-size: 17px;
  }

  .message-name .name {
    font-size: 20px;
  }
}

/* ----------------------------------------------------
     cta-rinen
---------------------------------------------------- */
.cta-rinen {
  width: 100%;
  position: relative;
}

.cta-rinen img {
  width: 100%;
  height: auto;
  display: block;
  /* transform: scale(-1); */
}

.cta-rinen h2 {
  position: absolute;
  top: 6%;
  left: 5%;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  color: #60451B;
  margin-bottom: 24px;
}

.cta-rinen h3 {
  position: absolute;
  top: 23%;
  left: 5%;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #3A2A12;
  margin-bottom: 8px;
}

.cta-rinen p {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 86%;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #3A2A12;
  margin-bottom: 18px;
}

.cta-rinen .btn {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 86%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.cta-rinen .btn span {
  padding-left: 36px;
  padding-right: 16px;
}

.pc-br {
  display: none;
}

@media screen and (min-width: 1024px) {
  .pc-br {
    display: inline;
  }

  .cta-rinen {
    margin-bottom: 0;
  }

  .cta-rinen h2 {
    font-size: 32px;
    margin: 107px auto 0 13%;
  }

  .cta-rinen h2::before {
    left: -18px;
    top: 37px;
    width: 140%;
  }

  .cta-rinen h3 {
    font-size: 20px;
    margin: 79px auto 0 13%;
    width: 100%;
    height: auto;
  }

  .cta-rinen p {
    font-size: 16px;
    line-height: 1.6;
    margin: 100px auto 0 13%;
    width: 100%;
    height: auto;
  }

  .cta-rinen .btn {
    top: 75%;
    left: 31%;
    width: 367px;
    height: auto;
    display: flex;
  }

  .cta-rinen .btn span {
    padding-left: 84px;
    padding-right: 16px;
  }

  .sp-br {
    display: none;
  }
}