:root {
  --text-black: #222;
  --black01: #333;
  --beige01: #fdf6eb;
  --beige02: #f4ebdc;
  --brown01: #b67239;
  --pink01: #fff1f1;
  --orange01: #fd965a;
  --pink02: #ed7d7d;
  --en: "Figtree", sans-serif;
  --ja: "Zen Kaku Gothic New", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: clamp(14px, 1.1713030747vw, 16px);
  line-height: 1.8;
  font-weight: 400;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 89.6%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.color-green {
  color: var(--green01);
}

.en {
  font-family: var(--en);
  font-weight: 500;
}

.fade {
  opacity: 0;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  left: 0;
  height: 80px;
  padding: 16px 24px;
}
@media screen and (max-width: 768px) {
  .header {
    height: 64px;
  }
}
.header .header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-logo a {
  display: block;
  font-size: 1.9rem;
  font-family: var(--en);
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav .nav-list {
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .header .header-nav .nav-list {
    gap: 16px;
  }
}
.header .header-nav .nav-list li a {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .header .header-nav .nav-list li a {
    font-size: 1.3rem;
  }
}

.openbtn {
  height: 40px;
  width: 40px;
  position: relative;
  display: none;
  z-index: 999;
  background: var(--text-black);
  border-radius: 50%;
  transition:
    background-color 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.openbtn:hover {
  background: var(--pink02);
  transform: scale(1.05);
}
.openbtn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.openbtn span:nth-of-type(1) {
  top: calc(50% - 6px);
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: calc(50% + 6px);
}
.openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -6px) rotate(45deg);
}

#gnav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #gnav-sp {
    position: fixed;
    z-index: 100;
    display: block;
    top: 0px;
    right: -120%;
    width: 100%;
    padding: 120px 24px 80px 24px;
    background: white;
    transition: all 0.6s ease;
    box-shadow: 0px 3px 6px rgba(87, 69, 66, 0.3);
  }
  #gnav-sp.panelactive {
    right: 0;
  }
  #gnav-sp #gnav-sp-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  #gnav-sp #gnav-sp-list ul li {
    margin-bottom: 24px;
  }
  #gnav-sp #gnav-sp-list ul li a {
    font-size: 1.8rem;
  }
}

.main {
  background: var(--beige01);
}

.btn01 {
  background: var(--black01);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 40px;
  padding: 10px 40px;
  width: fit-content;
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .btn01 {
    padding: 10px 24px;
    font-size: 1.4rem;
  }
}
.btn01::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  display: inline-block;
  background: url(../../assets/images/btn-arrow.svg) no-repeat center/contain;
}
.btn01:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.mv {
  width: 100%;
  height: 100dvh;
  background: url(../../assets/images/MV.png) no-repeat top center/cover;
  position: relative;
}
@media screen and (max-width: 640px) {
  .mv {
    background: url(../../assets/images/mv-sp.png) no-repeat center top/cover;
  }
}
.mv::before {
  content: "";
  width: 100%;
  height: 14.4841269841vw;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../assets/images/mv-deco-top.png) no-repeat center top/cover;
}
@media screen and (max-width: 640px) {
  .mv::before {
    background: url(../../assets/images/mv-deco-sp-top.png) no-repeat top center/cover;
    height: 20.1492537313vw;
  }
}
.mv::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 250px;
  height: 20.4365079365vw;
  background: url(../../assets/images/mv-deco-bottom.png) no-repeat center top/cover;
}
@media screen and (max-width: 640px) {
  .mv::after {
    background: url(../../assets/images/mv-deco-sp-bottom.png) no-repeat center bottom/cover;
    height: 38.5572139303vw;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    min-height: 520px;
    padding: 96px 0 60px;
  }
}
@media screen and (max-width: 420px) {
  .mv {
    padding: 88px 0 48px;
  }
}
.mv .mv-inner {
  padding: 0 6.6137566138vw;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 640px) {
  .mv .mv-inner {
    padding: 0 20px;
    align-items: flex-start;
  }
}
.mv .mv-inner .contents {
  position: relative;
}
.mv .mv-inner .contents .lead {
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .mv .mv-inner .contents .lead {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv-inner .contents .lead {
    font-size: 4rem;
  }
}
@media screen and (max-width: 420px) {
  .mv .mv-inner .contents .lead {
    font-size: 3.3rem;
  }
}
.mv .mv-inner .contents .desc {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 2.2;
}
.mv .mv-inner .contents .desc span {
  background: var(--beige01);
}
@media screen and (max-width: 768px) {
  .mv .mv-inner .contents .desc {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}
.mv .mv-inner .contents .note {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 20px;
}
.mv .mv-inner .mv-illust {
  position: absolute;
  bottom: 32px;
  left: 200px;
  width: 20.6349206349vw;
  max-width: 312px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv .mv-inner .mv-illust {
    left: 18px;
    bottom: 8px;
    width: 200px;
  }
}
.mv .mv-inner .scroll {
  position: absolute;
  left: 100px;
  z-index: 1;
  bottom: 100px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-family: var(--en);
  font-size: 1.2rem;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .mv .mv-inner .scroll {
    left: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv-inner .scroll {
    left: 18px;
    bottom: -32px;
  }
}
.mv .mv-inner .scroll .circle {
  width: 28px;
  height: 28px;
  background: var(--black01);
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin-right: 0.5em;
}
.mv .mv-inner .scroll .circle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 420px) {
  section {
    padding: 48px 0;
  }
}

.intro .contents {
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .intro .contents {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.intro .contents .left .ttl-top {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .intro .contents .left .ttl-top {
    font-size: 2rem;
  }
}
.intro .contents .left .ttl-top span {
  text-emphasis: filled dot;
  text-emphasis-position: over;
  text-emphasis-color: var(--orange01);
}
.intro .contents .left h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .intro .contents .left h2 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .intro .contents .left h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 420px) {
  .intro .contents .left h2 {
    font-size: 2.4rem;
  }
}
.under {
  text-decoration: underline;
  text-underline-offset: -0.3em;
  text-decoration-thickness: 0.5em;
}
.under.pink {
  text-decoration-color: #ffd2c2;
}
.under.yellow {
  text-decoration-color: #fceeae;
}

.intro .contents .right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .intro .contents .right {
    width: 100%;
  }
}

.service {
  background: white;
  overflow-x: hidden;
}
.service .yoko-slide-wrapper {
  overflow-x: auto;
  margin-right: calc(50% - 50vw);
}
.service .service-list {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .service .service-list {
    gap: 48px;
  }
}
.service .service-list .item {
  padding: 24px 0;
  width: 495px;
  flex-shrink: 0;
}
.service .service-list .item:last-child {
  padding-right: 5em;
}
@media screen and (max-width: 1024px) {
  .service .service-list .item {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .service .service-list .item {
    width: 320px;
  }
}
.service .service-list .item .num {
  color: white;
  font-family: var(--en);
  font-weight: 500;
  text-align: center;
  flex-shrink: 0;
  width: 100px;
  font-size: 2.8rem;
  display: grid;
  place-content: center;
  height: 100px;
  background: url(../../assets/images/intro02-num-bg.png) no-repeat center/contain;
}
.service .service-list .item .top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.service .service-list .item .top .ttl-box .sub-ttl {
  color: var(--brown01);
  font-weight: 700;
  margin-bottom: 8px;
}
.service .service-list .item .top .ttl-box h3 {
  font-weight: 700;
  line-height: 1.25;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service .service-list .item .top .ttl-box h3 {
    font-size: 2rem;
  }
}
.service .service-list .item .top img {
  display: block;
  width: 60px;
  object-fit: contain;
}
.service .service-list .item .desc {
  margin-bottom: 16px;
  line-height: 1.5;
}
.service .service-list .item .btn02 {
  margin-left: auto;
  background: white;
  border: #eee3d2 2px solid;
  border-radius: 40px;
  min-width: 165px;
  height: 44px;
  font-weight: 500;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition:
    background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
.service .service-list .item .btn02::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../../assets/images/btn02-arrow.svg) no-repeat center/contain;
  margin-left: 0.5em;
  display: inline-block;
}
.service .service-list .item .btn02:hover {
  background: var(--beige02);
  border-color: var(--brown01);
  transform: translateY(-3px);
}

.service-list-bottom .flex {
  align-items: center;
  justify-content: flex-start;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .service-list-bottom .flex {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .service-list-bottom .btn01 {
    margin: 0 auto;
  }
}
.service-list-bottom .text {
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .service-list-bottom .text {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .service-list-bottom .img-wrapper {
    width: 100%;
    text-align: center;
  }
}

.think {
  background-color: var(--beige02);
  border-radius: 150px;
}
@media screen and (max-width: 768px) {
  .think {
    border-radius: 40px;
  }
}
.think .flex {
  gap: 9.2592592593vw;
}
@media screen and (max-width: 768px) {
  .think .flex {
    flex-direction: column;
    gap: 32px;
  }
}
.think .text-wrapper {
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .think .text-wrapper {
    max-width: 100%;
  }
}
.think .text-wrapper h2 {
  font-size: 3.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .think .text-wrapper h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .think .text-wrapper h2 {
    font-size: 2.4rem;
  }
}
.think .text-wrapper .desc {
  margin-bottom: 48px;
}
@media screen and (max-width: 640px) {
  .think .text-wrapper .desc {
    margin-bottom: 24px;
  }
}
.think .img-wrapper {
  flex: 1;
  width: 100%;
  position: relative;
}
.think .img-wrapper::before {
  content: "";
  position: absolute;
  width: 174px;
  height: 138px;
  background: url(../../assets/images/image-deco01.png) no-repeat center/contain;
  top: -70px;
  right: 0;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .think .img-wrapper::before {
    width: 100px;
    height: 79px;
    top: -24px;
  }
}
@media screen and (max-width: 420px) {
  .think .img-wrapper::before {
    width: 76px;
    height: 60px;
    top: -18px;
  }
}
.think .img-wrapper::after {
  content: "";
  width: 60px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  left: -30px;
  background: url(../../assets/images/image-deco02.png) no-repeat center/contain;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .think .img-wrapper::after {
    width: 40px;
    height: 33px;
    left: -14px;
    bottom: 12px;
  }
}
.think .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 23px;
}

.spread .sec-top {
  margin-bottom: 48px;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .spread .sec-top {
    flex-direction: column;
    gap: 24px;
  }
}
.spread .sec-top h2 {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .spread .sec-top h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .spread .sec-top h2 {
    font-size: 2.4rem;
  }
}
.spread .spread-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .spread .spread-list {
    flex-wrap: wrap;
    row-gap: 24px;
    margin-bottom: 32px;
  }
}
.spread .spread-list dl {
  width: 230px;
}
@media screen and (max-width: 1024px) {
  .spread .spread-list dl {
    width: 22%;
  }
}
@media screen and (max-width: 768px) {
  .spread .spread-list dl {
    width: calc(50% - 12px);
  }
}
.spread .spread-list dl dt {
  height: 206px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .spread .spread-list dl dt {
    height: auto;
  }
}

.flow {
  background: var(--beige02);
  border-radius: 150px;
}
@media screen and (max-width: 768px) {
  .flow {
    border-radius: 40px;
  }
}
.flow h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-size: 3.6rem;
}
@media screen and (max-width: 1024px) {
  .flow h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .flow h2 {
    font-size: 2.4rem;
  }
}
.flow .lead {
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 420px) {
  .flow .lead {
    font-size: 1.3rem;
  }
}
.flow .flow-list {
  display: flex;
  column-gap: 16px;
  row-gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .flow .flow-list {
    margin-bottom: 32px;
  }
}
.flow .flow-list .item {
  background: white;
  border-radius: 10px;
  width: 213px;
  padding: 30px 15px;
}
@media screen and (max-width: 420px) {
  .flow .flow-list .item {
    width: 100%;
  }
}
.flow .flow-list .item .num {
  font-family: var(--en);
  text-align: center;
  color: var(--pink02);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.flow .flow-list .item img {
  display: block;
  margin: 0 auto 12px;
}
.flow .flow-list .item h3 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
.flow .flow-list .item .desc {
  font-size: 1.5rem;
  line-height: 1.5;
}

.news h2 {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .news h2 {
    font-size: 2.4rem;
  }
}
.news .lead {
  line-height: 1.5;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .news .flex {
    flex-direction: column;
    gap: 24px;
  }
}
.news .news-list {
  margin-left: 16px;
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news .news-list {
    margin-left: 0;
  }
}
.news .news-list li a {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--beige02);
}
@media screen and (max-width: 420px) {
  .news .news-list li a {
    gap: 12px;
    align-items: flex-start;
  }
}
.news .news-list .date {
  color: var(--brown01);
  font-family: var(--en);
}

.recruit {
  background: var(--beige02);
  border-radius: 150px;
  position: relative;
  z-index: 0;
}
.recruit::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/recruit-deco1.png) no-repeat center/contain;
  top: -60px;
  display: inline-block;
  right: 223px;
  width: 174px;
  height: 138px;
}
@media screen and (max-width: 1024px) {
  .recruit::before {
    top: -30px;
    right: 40px;
    width: 120px;
    height: 95px;
  }
}
@media screen and (max-width: 768px) {
  .recruit::before {
    top: -20px;
    right: 16px;
    width: 90px;
    height: 71px;
  }
}
@media screen and (max-width: 420px) {
  .recruit::before {
    top: -16px;
    width: 70px;
    height: 55px;
  }
}
@media screen and (max-width: 768px) {
  .recruit {
    border-radius: 40px;
  }
}
.recruit .top-illust {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px) {
  .recruit .top-illust {
    width: 100px;
  }
}
.recruit .inner {
  position: relative;
  z-index: 1;
}
.recruit .inner::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: -20px;
  background: url(../../assets/images/recruit-deco2.png) no-repeat center/contain;
}
@media screen and (max-width: 640px) {
  .recruit .inner::before {
    top: -53px;
  }
}
.recruit::after {
  content: "RECRUIT";
  position: absolute;
  z-index: -1;
  text-align: center;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--beige01);
  font-family: var(--en);
  font-size: 24rem;
  line-height: 0.7;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .recruit::after {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit::after {
    font-size: 9rem;
  }
}
@media screen and (max-width: 420px) {
  .recruit::after {
    font-size: 6rem;
  }
}
.recruit h2 {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .recruit h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit h2 {
    font-size: 2.2rem;
  }
}
.recruit .lead {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .recruit .lead {
    font-size: 1.3rem;
  }
}
.recruit .btn01 {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.cta h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .cta h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .cta h2 {
    font-size: 2.2rem;
  }
}
.cta .lead {
  font-size: 2.4rem;
  line-height: 2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .cta .lead {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 420px) {
  .cta .lead {
    font-size: 1.4rem;
  }
}
.cta .desc {
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cta .desc {
    line-height: 1.6;
  }
}
.cta .btn-wrapper {
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .cta .btn-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.cta .btn-wrapper .btn01.brown {
  background: var(--brown01);
}

.scroll-hint-shadow-wrap::before,
.scroll-hint-shadow-wrap::after {
  content: none;
}

.scroll-hint-icon {
  background: #f1afa4;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.footer {
  background: var(--beige01);
  position: relative;
  padding: 0 6.6137566138vw;
  padding-bottom: 9.2592592593vw;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8.7962962963vw;
  background: url(../../assets/images/footer-bottom.png) no-repeat bottom center/cover;
}
.footer .footer-inner {
  gap: 4.2328042328vw;
  margin: 0 auto 40px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
}
.footer .footer-logo .top {
  font-family: var(--en);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer .footer-logo .bottom {
  font-size: 1.1rem;
  line-height: 1.8;
}
.footer .footer-nav {
  gap: 2.6455026455vw;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer .footer-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}
.footer .footer-nav .list > li .child-list {
  padding-left: 0.5em;
}
.footer .footer-nav .list > li .child-list .child a {
  line-height: 1.8;
  font-size: 1.3rem;
}
.footer .footer-nav .list > li > a {
  color: var(--brown01);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 40px;
}
.footer .footer-bottom .other-link {
  justify-content: center;
  flex-wrap: wrap;
}
.footer .footer-bottom .other-link a {
  text-decoration: underline;
  font-size: 1.3rem;
  padding-inline: 1em;
}
.footer .footer-bottom .other-link a:not(:first-child) {
  border-left: 1px solid var(--text-black);
}
.footer .copy {
  font-size: 1.2rem;
  font-family: var(--en);
}
.footer .scroll-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--en);
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .footer .scroll-top {
    bottom: 20px;
  }
}
.footer .scroll-top::before {
  content: "";
  width: 26px;
  height: 26px;
  background: url(../../assets/images/scroll-top.svg) no-repeat center/contain;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.footer .scroll-top:hover {
  opacity: 0.7;
}
.footer .scroll-top:hover::before {
  transform: translateY(-4px);
}
