:root {
  --text-black: #333;
  --pink01: #e38179;
  --pink02: #fff8f3;
  --yellow01: #fefbee;
  --red01: #de584d;
  --en: "Figtree", sans-serif;
  --ja: "Zen Kaku Gothic New", sans-serif;
  --grad01: linear-gradient(135deg, #fff2ce 0%, #ffdebf 100%);
  --grad02: linear-gradient(135deg, #ffbd9b 0%, #fb94a2 100%);
}

* {
  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, 15px);
  line-height: 1.625;
  font-weight: 400;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

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;
  }
}
a[href^="tel"] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.6%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.en {
  font-family: var(--en);
}

.header {
  padding: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    padding: 8px;
    top: 0;
    left: 0;
    height: 64px;
  }
}
.header .header-inner {
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header h1 {
  width: auto;
  z-index: 999;
}
.header h1 a {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.header .header-nav .nav-list {
  gap: 20px;
}
.header .header-nav .nav-list li a {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-link {
  display: block;
  color: white;
  background: var(--pink01);
  padding: 12px 24px;
  box-shadow: 0 4px 0 #d6424b;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.5s ease;
  border-radius: 60px;
  z-index: 999;
}
.header .header-link:hover {
  box-shadow: none;
  transform: translateY(4px);
}
@media screen and (max-width: 768px) {
  .header .header-link {
    font-size: 1.3rem;
    white-space: nowrap;
    padding: 8px 16px;
  }
}

.openbtn {
  height: 40px;
  width: 40px;
  position: relative;
  display: none;
  z-index: 999;
  background: var(--pink01);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.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 {
  overflow: hidden;
  background-image: url(../../assets/images/bg.svg);
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main {
    background-image: url(../../assets/images/main-bg-sp.png);
  }
}

.color-red {
  color: var(--red01);
}

h2 {
  text-align: center;
  font-size: clamp(40px, 5.1244509517vw, 70px);
  font-family: var(--en);
  color: var(--pink01);
  font-weight: 500;
  line-height: 1.2142857143;
  letter-spacing: 0.1em;
}

.sub-ttl {
  text-align: center;
  font-size: clamp(16px, 1.756954612vw, 24px);
}

section {
  padding-top: 96px;
}
@media screen and (max-width: 768px) {
  section {
    padding-top: 56px;
  }
}

.mv {
  height: 100svh;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    padding-top: 64px;
  }
}
.mv .scroll-view {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  color: var(--pink01);
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .mv .scroll-view {
    bottom: auto;
    top: calc(100svh - 40px);
    right: 24px;
  }
}
.mv .scroll-view .text {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.mv .scroll-view .text::after {
  content: "";
  width: 11px;
  height: 23px;
  background: url(../../assets/images/scroll-arrow.svg) no-repeat center/contain;
  display: block;
}
.mv .mv-inner {
  display: flex;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  width: 90%;
  align-items: center;
}
.mv .mv-inner .flex-wrapper {
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv .mv-inner .flex-wrapper {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .mv .mv-inner .text-wrapper {
    margin-top: 40px;
  }
}
.mv .mv-inner .text-wrapper .message {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.4571428571;
  margin-bottom: 24px;
  padding-bottom: 0;
}
.mv .mv-inner .text-wrapper .text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  max-width: 340px;
}
.mv .mv-inner .mv-swiper {
  width: 415px;
  height: 415px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv .mv-inner .mv-swiper {
    width: 321px;
    height: 321px;
    margin-top: -60px;
  }
}
.mv .mv-inner .mv-swiper .swiper-slide img {
  border-radius: 53px;
}
.mv .mv-inner .mv-swiper .swiper-pagination {
  bottom: -36px;
}
.mv .mv-inner .mv-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--pink01);
}
.mv .mv-inner .vert-text-wrapper {
  position: relative;
  z-index: 2;
}
.mv .mv-inner .vert-text-wrapper .vert-text {
  writing-mode: vertical-rl;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .mv .mv-inner .vert-text-wrapper .vert-text {
    font-size: 2rem;
    margin-left: auto;
  }
}

.ta-c {
  text-align: center;
}

.lead {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 1.6rem;
  }
}

hgroup {
  margin-bottom: 40px;
}

.about {
  padding-top: 300px;
  padding-bottom: 400px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 150px;
    padding-bottom: 56px;
  }
}
.about h2 {
  margin-bottom: 40px;
}
.about .inner {
  position: relative;
}
.about .inner .deco {
  position: absolute;
  display: block;
  z-index: -1;
}
.about .inner .deco img {
  height: auto;
  width: 100%;
}
.about .inner .deco.deco1 {
  width: 31.0395314788vw;
  max-width: 424px;
  top: 297px;
  left: -235px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco1 {
    top: -123px;
    left: -47px;
  }
}
.about .inner .deco.deco2 {
  top: 650px;
  left: 270px;
  max-width: 172px;
  width: 12.5915080527vw;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco2 {
    top: 500px;
    left: 0;
    width: 20vw;
  }
}
.about .inner .deco.deco3 {
  top: 0;
  right: -40px;
  max-width: 190px;
  width: 13.9092240117vw;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco3 {
    top: -140px;
    right: 90px;
    width: 22vw;
  }
}
.about .inner .deco.deco4 {
  top: 324px;
  right: -80px;
  width: 8.1991215227vw;
  max-width: 112px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco4 {
    top: -50px;
    right: -20px;
    width: 16vw;
  }
}
.about .inner .deco.deco5 {
  top: 525px;
  max-width: 392px;
  width: 24.0849194729vw;
  right: -196px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco5 {
    top: 480px;
    right: -20px;
  }
}

.mind {
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mind {
    padding-bottom: 56px;
  }
}
.mind::after {
  content: "";
  width: 100%;
  border-radius: 80px;
  height: calc(100% - 143px);
  background-color: var(--yellow01);
  position: absolute;
  top: 143px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .mind::after {
    top: 80px;
    border-radius: 30px;
    height: calc(100% - 80px);
  }
}
.mind .mind-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 660px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 768px) {
  .mind .mind-list {
    margin-bottom: 24px;
  }
}
.mind .mind-list li {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 10px;
  background: var(--grad01);
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .mind .mind-list li {
    font-size: 1.6rem;
  }
}
.mind .sec-bottom-text {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .mind .sec-bottom-text {
    font-size: 1.6rem;
  }
}

.fade {
  opacity: 0;
  transform: translateY(25px);
}

.purpose {
  padding-bottom: 96px;
  background: url(../../assets/images/purpose-bg.svg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .purpose {
    background-image: url(../../assets/images/purpose-bg.svg);
    background-size: 220% auto;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 0;
  }
}
.purpose h3 {
  margin-top: 60px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red01);
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .purpose h3 {
    font-size: 2rem;
  }
}
.purpose .purpose-list {
  max-width: 930px;
  width: 100%;
  counter-reset: purpose-num;
}
.purpose .purpose-list li {
  padding: 16px;
  counter-increment: purpose-num;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  background-color: white;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .purpose .purpose-list li {
    flex-direction: column;
  }
}
.purpose .purpose-list li:not(:last-child) {
  margin-bottom: 30px;
}
.purpose .purpose-list li .img-wrapper {
  flex-shrink: 0;
  width: 166px;
  height: 166px;
}
.purpose .purpose-list li .text-wrapper {
  flex: 1;
}
.purpose .purpose-list li .text-wrapper h4 {
  color: var(--red01);
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .purpose .purpose-list li .text-wrapper h4 {
    font-size: 2rem;
  }
}
.purpose .purpose-list li .text-wrapper h4::before {
  content: counter(purpose-num, decimal-leading-zero);
  font-family: var(--en);
  font-size: 7rem;
  line-height: 1;
  position: absolute;
  left: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  bottom: 0;
  display: inline-block;
  color: var(--pink01);
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .purpose .purpose-list li .text-wrapper h4::before {
    font-size: 6rem;
  }
}
.purpose .purpose-list li .text-wrapper .desc {
  font-size: 1.6rem;
  text-align: justify;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .purpose .purpose-list li .text-wrapper .desc {
    font-size: 1.5rem;
  }
}

.activity {
  position: relative;
  padding-bottom: 80px;
}
.activity::after {
  content: "";
  width: 100%;
  height: calc(100% - 143px);
  position: absolute;
  top: 143px;
  display: block;
  background: var(--pink02);
  z-index: -1;
  border-radius: 80px;
}
@media screen and (max-width: 768px) {
  .activity::after {
    top: 80px;
    height: calc(100% - 80px);
    border-radius: 30px;
  }
}
.activity .activ-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .activity .activ-list {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.activity .activ-list .item {
  background-color: white;
  border-radius: 10px 80px 10px 80px;
  position: relative;
  width: 32%;
  padding: 65px 30px 40px;
  box-shadow: 10px 10px 0 rgba(219, 88, 77, 0.1);
}
@media screen and (max-width: 768px) {
  .activity .activ-list .item {
    width: 100%;
    padding-top: 35px;
    border-radius: 10px 60px 10px 60px;
  }
}
.activity .activ-list .item h4 {
  color: var(--red01);
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .activity .activ-list .item h4 {
    margin-bottom: 16px;
    font-size: 2rem;
  }
}
.activity .activ-list .item:nth-child(2) {
  transform: translateY(40px);
}
@media screen and (max-width: 768px) {
  .activity .activ-list .item:nth-child(2) {
    transform: translateX(0);
    margin-top: 32px;
  }
}
.activity .activ-list .item:nth-child(3) {
  transform: translateY(80px);
}
@media screen and (max-width: 768px) {
  .activity .activ-list .item:nth-child(3) {
    transform: translateY(0);
    margin-top: 32px;
  }
}
.activity .hg02 {
  color: var(--pink01);
  margin-bottom: 40px;
}
.activity .hg02 h3 {
  font-size: 5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--en);
}
@media screen and (max-width: 768px) {
  .activity .hg02 h3 {
    font-size: 3.3rem;
  }
}
.activity .hg02 .sub {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .activity .hg02 .sub {
    font-size: 2rem;
  }
}
.activity .gain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  column-gap: 30px;
}
@media screen and (max-width: 768px) {
  .activity .gain-list {
    grid-template-columns: 1fr;
  }
}
.activity .gain-list .item {
  background: white;
  border-radius: 10px 80px 10px 80px;
  border: 1px solid var(--pink01);
  padding: 35px 30px 40px;
  box-shadow: 10px 10px 0 rgba(219, 88, 77, 0.1);
}
@media screen and (max-width: 768px) {
  .activity .gain-list .item {
    border-radius: 10px 60px 10px 60px;
  }
}
.activity .gain-list .item h4 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .activity .gain-list .item h4 {
    font-size: 2rem;
  }
}
.activity .gain-list .item h4 span {
  color: var(--pink01);
  font-family: var(--en);
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 500;
}
.activity .gain-list .item .desc {
  font-size: 1.6rem;
  text-align: justify;
}

.recommended .reco-list {
  width: fit-content;
  margin: 0 auto 48px;
}
.recommended .reco-list li {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .recommended .reco-list li {
    font-size: 1.6rem;
  }
}
.recommended .reco-list li:not(:last-child) {
  margin-bottom: 1em;
}
.recommended .reco-list li::before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border-top: 2px;
  flex-shrink: 0;
  margin-right: 0.5em;
  border-right: 2px solid var(--pink01);
  border-top: 2px solid var(--pink01);
  transform: rotate(45deg);
}
.recommended .lead {
  margin-bottom: 48px;
}
.recommended .reco-list-bottom {
  justify-content: space-between;
  column-gap: 48px;
}
@media screen and (max-width: 768px) {
  .recommended .reco-list-bottom {
    flex-direction: column;
    row-gap: 32px;
    padding: 0 24px;
  }
}
.recommended .reco-list-bottom li {
  flex: 1;
}
.recommended .reco-list-bottom li .img-wrapper {
  width: 180px;
  margin: 0 auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .recommended .reco-list-bottom li .img-wrapper {
    width: 120px;
  }
}
.recommended .reco-list-bottom li h4 {
  color: var(--pink01);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .recommended .reco-list-bottom li h4 {
    font-size: 2rem;
  }
}
.recommended .reco-list-bottom li .text {
  text-align: justify;
  font-size: 1.6rem;
  font-weight: 500;
}

.membership {
  position: relative;
  padding-bottom: 80px;
}
.membership::before {
  content: "";
  width: 100%;
  height: calc(100% - 143px);
  background: var(--yellow01);
  display: block;
  position: absolute;
  top: 143px;
  z-index: -1;
  left: 0;
  border-radius: 80px;
}
@media screen and (max-width: 768px) {
  .membership::before {
    top: 80px;
    height: calc(100% - 80px);
    border-radius: 30px;
  }
}
.membership .flex-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .membership .flex-wrapper {
    flex-direction: column;
  }
}
.membership .flex-wrapper dl {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  overflow: hidden;
  background-color: white;
}
.membership .flex-wrapper dl dt {
  color: white;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.2em;
  height: 60px;
  display: flex;
  align-items: center;
  font-weight: 700;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .membership .flex-wrapper dl dt {
    font-size: 2rem;
    height: 46px;
  }
}
.membership .flex-wrapper dl dd {
  background-color: white;
  padding: 20px 20px 24px;
  line-height: 2;
}
.membership .flex-wrapper dl dd .price {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .membership .flex-wrapper dl dd .price {
    font-size: 2rem;
  }
}
.membership .flex-wrapper dl dd .price .num {
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .membership .flex-wrapper dl dd .price .num {
    font-size: 4.8rem;
  }
}
.membership .flex-wrapper dl dd .text {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .membership .flex-wrapper dl dd .text {
    font-size: 1.5rem;
  }
}
.membership .flex-wrapper dl:nth-child(1) dt {
  background-color: #e3aa79;
}
.membership .flex-wrapper dl:nth-child(1) dd .price {
  color: #de7e4d;
}
.membership .flex-wrapper dl:nth-child(2) dt {
  background-color: #e38179;
}
.membership .flex-wrapper dl:nth-child(2) dd .price {
  color: #de584d;
}

.message {
  position: relative;
}
.message::before {
  content: "";
  background: url(../../assets/images/message-bg.png) no-repeat center/contain;
  width: 1740px;
  height: 1440px;
  position: absolute;
  left: -50%;
  top: -30%;
  z-index: -2;
}
.message {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .message {
    padding-bottom: 56px;
  }
}
.message .flex-wrapper {
  gap: 7%;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .message .flex-wrapper {
    flex-direction: column;
    row-gap: 32px;
    margin-bottom: 40px;
  }
}
.message .flex-wrapper hgroup h2 {
  text-align: left;
}
.message .flex-wrapper hgroup .sub-ttl {
  text-align: left;
}
.message .flex-wrapper .img-wrapper {
  max-width: 430px;
  width: 100%;
  position: relative;
  border-radius: 53px;
  aspect-ratio: 430/530;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .message .flex-wrapper .img-wrapper {
    max-width: 180px;
    margin: 0 auto;
  }
}
.message .flex-wrapper .img-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(222, 88, 77, 0.1);
  left: 10px;
  top: 10px;
  position: absolute;
  border-radius: 53px;
  z-index: 1;
  aspect-ratio: 430/530;
}
.message .flex-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  border-radius: 53px;
  object-fit: cover;
  display: block;
}
.message .flex-wrapper .text-wrapper {
  flex: 1;
}
.message .flex-wrapper .text-wrapper .text {
  text-align: justify;
  margin-bottom: 1em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
.message .flex-wrapper .text-wrapper .name {
  text-align: right;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.message .flex-wrapper .text-wrapper .name span {
  font-size: 80%;
  margin-right: 1em;
}
.message dl {
  margin-bottom: 60px;
}
.message dl:last-of-type {
  margin-bottom: 0;
}
.message dl dt {
  color: white;
  font-size: 2.4rem;
  text-align: center;
  background: var(--grad02);
  border-radius: 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .message dl dt {
    font-size: 2rem;
    height: 48px;
  }
}
.message dl dd .date {
  color: var(--pink01);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.message dl dd h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.message dl dd .text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}

.bottom-rec {
  background: var(--grad02);
  border-radius: 80px 80px 0 0;
  color: white;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .bottom-rec {
    border-radius: 30px 30px 0 0;
  }
}
.bottom-rec .inner {
  max-width: 1160px;
}
.bottom-rec .flex-wrapper {
  align-items: center;
  gap: 5.1244509517vw;
}
@media screen and (max-width: 768px) {
  .bottom-rec .flex-wrapper {
    flex-direction: column-reverse;
    row-gap: 32px;
  }
}
.bottom-rec .flex-wrapper .img-wrapper {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .bottom-rec .flex-wrapper .img-wrapper {
    width: 100%;
  }
}
.bottom-rec .flex-wrapper .text-wrapper {
  flex: 1;
}
.bottom-rec h3 {
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bottom-rec h3 {
    font-size: 3rem;
  }
}
.bottom-rec .sub-en {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .bottom-rec .sub-en {
    font-size: 1.3rem;
  }
}
.bottom-rec .text {
  margin-top: 24px;
  line-height: 1.875;
  font-weight: 500;
  margin-bottom: 24px;
}
.bottom-rec .btn02 {
  background-color: white;
  border-radius: 40px;
  padding: 16px 32px;
  color: var(--pink01);
  font-size: 1.6rem;
  transition: all 0.3s ease;
  border: 2px solid white;
  display: inline-block;
  font-weight: 500;
}
.bottom-rec .btn02:hover {
  color: white;
  background: var(--pink01);
}

.footer {
  padding: 40px 0 10px;
  text-align: center;
}
.footer address {
  font-style: normal;
  margin-bottom: 16px;
}
.footer .site-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer .name {
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.footer .riji {
  font-size: 1.3rem;
  font-weight: 400;
}
.footer small {
  display: block;
  margin-top: 24px;
  font-size: 1.1rem;
}
