@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

.section-title {
  line-height: 1.3;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.text {
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-weight: 400;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #2B2B2B;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  background-image: url(img/background.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  body {
    background-image: none;
    background-color: #FFFFFF;
  }
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

.body {
  width: 430px;
  height: 95vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 20px;
  background-color: #FFFFFF;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .body {
    width: 100%;
    height: 100vh;
    top: 0;
    transform: translate(-50%, 0);
    border-radius: 0;
  }
}
.body__inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: auto;
}
.body__inner::-webkit-scrollbar {
  display: none;
}

.petals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .petals {
    display: none;
  }
}
.petals .petal {
  position: absolute;
  top: -80px;
  width: 40px;
  height: 40px;
  background-image: url(img/haanbira-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: fall linear infinite;
}
.petals .petal:nth-child(2) {
  background-image: url(img/haanbira-3.png);
}
.petals .petal:nth-child(3), .petals .petal:nth-child(5) {
  background-image: url(img/haanbira-2.png);
}

.wrapper {
  width: 100%;
  padding-inline: 16px;
  margin-inline: auto;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  font-family: "Vujahday Script", "Hina Mincho", serif;
  color: #2B2B2B;
  font-weight: 400;
  margin-bottom: 15px;
}
.section-title span {
  display: block;
  font-size: 1.4rem;
  color: #CE7E8B;
}

.lead {
  font-weight: 400;
  margin-bottom: 60px;
}

.box-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.box-title .hanabira {
  width: 62px;
  height: 53px;
  line-height: 0.7;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(img/hanabira-4.png);
  background-size: cover;
  background-position: center;
}
.box-title .hanabira .sub {
  font-size: 10px;
  white-space: nowrap;
}
.box-title .hanabira .num {
  font-size: 35px;
  font-family: "Sassy Frass", cursive;
}
.box-title__main {
  width: 80%;
  font-size: 2rem;
  text-align: left;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
}
.box-title__main span {
  border-bottom: 3px solid #F9DCDD;
}

.btn {
  width: 180px;
  position: relative;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  background-color: #B6D176;
  border-radius: 40px;
  padding-block: 10px;
  border: 2px solid #B6D176;
}
.btn:hover {
  color: #B6D176;
  background-color: #FFFFFF;
}
.btn img {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 5px;
  bottom: -20px;
}

.btn-simple {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid #2B2B2B;
  border-radius: 8px;
  color: #2B2B2B;
  text-decoration: none;
  font-size: 1.4rem;
  background-color: transparent;
  transition: all 0.3s;
  font-family: "Hina Mincho", serif;
}
.btn-simple:hover {
  background-color: #CE7E8B;
  color: #FFFFFF;
  border: 1px solid #CE7E8B;
}

.text {
  font-size: 1.6rem;
}

@keyframes fall {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
    top: -80px;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(60px) rotate(720deg);
    opacity: 0;
    top: 100vh;
  }
}
.side-menu {
  display: block;
  position: fixed;
  top: 45%;
  transform: translateY(-50%);
  left: calc(50% + 270px);
  z-index: 100;
}
.side-menu__inner {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 60px 30px;
  border-radius: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.side-menu__list {
  list-style: none;
  padding: 0;
}
.side-menu__list li {
  margin-bottom: 20px;
}
.side-menu__list li a {
  position: relative;
  display: block;
  padding-left: 45px;
  text-decoration: none;
  color: #2B2B2B;
  font-family: "Vujahday Script", "Hina Mincho", serif;
  font-size: 1em;
  transition: color 0.3s ease;
}
.side-menu__list li a .sakura-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  width: 50px;
  height: auto;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.side-menu__list li a:hover {
  color: #CE7E8B;
}
.side-menu__list li a:hover .sakura-icon {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.side-menu__list li.is-active a {
  color: #CE7E8B;
}
.side-menu__list li.is-active a .sakura-icon {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.side-menu__sub {
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 30px;
}
.side-menu__sub .side-menu__list a {
  font-size: 1em;
  color: #2B2B2B;
  font-family: "Old Standard TT", sans-serif;
}
.side-menu__sub .side-menu__list a:hover {
  color: #CE7E8B;
}
@media (max-width: 1000px) {
  .side-menu {
    display: none;
  }
}

header {
  display: none;
}
@media (max-width: 1000px) {
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
  }
}
header .hamburger_toggle {
  width: 35px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
header .hamburger_toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #CE7E8B;
  position: absolute;
  left: 0;
  transition: all 0.4s ease;
}
header .hamburger_toggle span:nth-child(1) {
  top: 0;
}
header .hamburger_toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .hamburger_toggle span:nth-child(3) {
  bottom: 0;
}
header .hamburger_toggle span:hover span:nth-child(2) {
  transform: translateY(-50%) translateX(10px);
}
header .hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
header .hamburger-menu__list {
  list-style: none;
  padding: 0;
}
header .hamburger-menu__list li {
  margin-bottom: 25px;
}
header .hamburger-menu__list li a {
  font-size: 2rem;
  font-family: "Vujahday Script", "Hina Mincho", serif;
  color: #2B2B2B;
  position: relative;
}
header .hamburger-menu__list li a .sakura-icon {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  width: 50px;
  height: auto;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
header .hamburger-menu__list li.is-active a {
  color: #CE7E8B;
}
header .hamburger-menu__list li.is-active a .sakura-icon {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
header .hamburger-menu__sub {
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 30px;
}
header .hamburger-menu__sub a {
  font-size: 1.8rem;
  color: #2B2B2B;
  font-family: "Old Standard TT", sans-serif;
  padding-bottom: 16px;
}
header .hamburger-menu__sub a:hover {
  color: #CE7E8B;
}
header.active .hamburger_toggle span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
header.active .hamburger_toggle span:nth-child(2) {
  opacity: 0;
}
header.active .hamburger_toggle span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
header.active .hamburger-menu {
  opacity: 1;
  visibility: visible;
}

.footer__inner {
  padding-block: 60px;
  color: #2B2B2B;
  background-color: #FEF7EE;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__info {
  text-align: left;
}
.footer__logo {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Vujahday Script", "Hina Mincho", serif;
  margin-bottom: 24px;
  display: inline-block;
}
.footer__contact {
  margin-bottom: 12px;
}
.footer__contact a {
  text-decoration: none;
  color: inherit;
  font-size: 1.2rem;
}
.footer__sns {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  line-height: 1;
}
.footer__sns li img {
  width: 35px;
  height: auto;
  transition: opacity 0.3s;
}
.footer__sns li img:hover {
  opacity: 0.7;
}
.footer__menu {
  text-align: left;
  padding-top: 10px;
}
.footer__menu li {
  margin-bottom: 16px;
  line-height: 1;
}
.footer__menu li:last-child {
  margin-bottom: 0;
}
.footer__menu li a {
  text-decoration: none;
  color: inherit;
  font-size: 1.2rem;
  transition: color 0.3s;
  font-family: "Vujahday Script", "Hina Mincho", serif;
}
.footer__menu li a:hover {
  color: #CE7E8B;
}
.footer__line {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 20px;
}
.footer__copyright {
  text-align: left;
}
.footer__bottom {
  font-size: 0.8rem;
  color: #666;
}
.footer__sub-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.footer__sub-links a {
  text-decoration: none;
  color: inherit;
}
.footer__sub-links a:hover {
  text-decoration: underline;
}

#top .section-title-span {
  color: #CE7E8B;
  font-family: "Vujahday Script", "Hina Mincho", serif;
}
#top #service {
  background-color: #FEF7EE;
  padding-block: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#top #service .service-list {
  position: relative;
  width: 100%;
  height: 550px;
}
#top #service .service-list .item {
  position: absolute;
  overflow-x: hidden;
}
#top #service .service-list .item.service1 {
  top: 20px;
  left: 1%;
  z-index: 1;
  width: 272px;
}
#top #service .service-list .item.service2 {
  top: 190px;
  right: -5%;
  z-index: 2;
  width: 232px;
}
#top #service .service-list .item.service3 {
  top: 350px;
  left: 3%;
  z-index: 3;
  width: 230px;
}
#top .cta {
  position: relative;
  text-align: center;
  padding-block: 24px 39px;
}
#top .cta__title {
  font-size: 2.2rem;
  color: #CE7E8B;
  font-family: "Hina Mincho", serif;
  margin-bottom: 10px;
}
#top .cta__text {
  font-weight: 300;
  margin-bottom: 30px;
}
#top .cta__img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -64px;
}
#top #about {
  background-color: #FEF7EE;
  padding-block: 64px 20px;
}
#top #about ul {
  padding-top: 64px;
}
#top #about ul li img {
  padding-bottom: 20px;
}
#top #about ul li .img-left {
  padding-right: 48px;
}
#top #about ul li .img-right {
  padding-left: 16px;
}
#top #about ul li .box-title {
  width: 100%;
  margin-bottom: 16px;
}
#top #about ul li .box-title__main {
  font-size: 1.8rem;
}
#top #about ul li .button {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 64px;
}
#top #cta {
  padding-bottom: 40px;
}
#top #cta .sponsor {
  padding-block: 32px;
}
#top #cta .sponsor p {
  font-size: 1.6rem;
  font-family: "Vujahday Script", "Hina Mincho", serif;
}
#top #cta .cta-box {
  position: relative;
  text-align: center;
  padding-block: 24px 39px;
  background-color: #FEF7EE;
  border-radius: 10px;
  position: relative;
}
#top #cta .cta-box:before {
  content: "";
  width: 100%;
  height: 210px;
  background-color: transparent;
  border: 0.7px solid #2B2B2B;
  border-radius: 10px;
  position: absolute;
  top: -5px;
  left: -5px;
}
#top #cta .cta-box__title {
  font-size: 2.2rem;
  color: #CE7E8B;
  font-family: "Hina Mincho", serif;
  margin-bottom: 10px;
}
#top #cta .cta-box__text {
  font-weight: 300;
  margin-bottom: 30px;
}
#top #cta .cta-box__img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -64px;
}
#top #cta .cta-box .btn {
  width: 160px;
}
#top #cta .cta-box .btn img {
  right: -5px;
}
#top #news {
  background-color: rgb(250, 232, 228);
  padding-block: 64px;
}
#top #news .news-container {
  margin-bottom: 60px;
  padding-top: 60px;
}
#top #news .news-container .news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#top #news .news-container .news-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
#top #news .news-container .news-item:hover {
  transform: translateY(-2px);
}
#top #news .news-container .news-item .news-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-decoration: none;
  color: #2B2B2B;
}
#top #news .news-container .news-item .news-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
#top #news .news-container .news-item .news-header .sakura-icon {
  width: 24px;
  height: 24px;
  background: url("img/top-sakura-deco.png") no-repeat center/contain;
  flex-shrink: 0;
}
#top #news .news-container .news-item .news-header .news-title {
  font-size: 2.2rem;
  font-weight: 400;
  font-family: "Vujahday Script", "Hina Mincho", serif;
}
#top #news .news-container .news-item .news-category {
  font-size: 1rem;
  color: #bbb;
  margin-left: 4px;
  text-align: left;
}
#top #news .news-container .news-item .arrow-icon {
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffb6c1;
  border-right: 2px solid #ffb6c1;
  transform: rotate(45deg);
  margin-left: 10px;
}
#top #news .insta-container {
  text-align: left;
}
#top .contact {
  color: #FFFFFF;
  text-align: left;
  background-color: #FFFFFF;
  padding-block: 64px;
  position: relative;
}
#top .contact .wrapper .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: url(img/contact-bg.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 30px;
}
#top .contact .wrapper .flex .left .contact-title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}
#top .contact .wrapper .flex .left .contact-text {
  font-size: 1.4rem;
  font-weight: 400;
}
#top .contact .wrapper .flex .right .arrow {
  width: 50px;
  height: 50px;
}
#top .contact .before-footer-deco {
  width: 150px;
  position: absolute;
  right: 0;
  bottom: -20%;
  overflow-x: hidden;
}

#about .fv {
  position: relative;
  background: url(img/fv-img.png);
  background-position: center;
  background-size: cover;
  padding: 100px 15px;
}
#about .fv .section-title {
  color: #FFFFFF;
}
#about .fv .section-title span {
  color: #FFFFFF;
}
#about .fv .fv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#about .fv .hanabira {
  position: absolute;
}
#about .fv .hanabira-1 {
  width: 80px;
  height: 80px;
  left: 50px;
  bottom: 10px;
  z-index: 4;
}
#about .fv .hanabira-2 {
  width: 57px;
  height: 57px;
  left: 80px;
  bottom: 5px;
  transform: rotate(15deg);
  z-index: 3;
}
#about .fv .hanabira-3 {
  width: 66px;
  height: 66px;
  right: 30px;
  bottom: 30px;
  transform: rotate(150deg);
  z-index: 2;
}
#about .intro-text {
  font-size: 1.6rem;
}
#about .intro-text .text {
  padding-bottom: 40px;
}
#about .card-area {
  padding-bottom: 20px;
}
#about .card-area .cards .card {
  background-color: #FFFFFF;
  border-radius: 10px;
  border-top: 1px solid #CE7E8B;
  padding: 10px 16px;
  margin-bottom: 24px;
}
#about .card-area .cards .card__header {
  color: #CE7E8B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
#about .card-area .cards .card__header .num {
  font-size: 2.5rem;
  font-family: "Hina Mincho", serif;
}
#about .card-area .cards .card__body {
  font-weight: 300;
  text-align: left;
}
#about .card-area .cards .card__body .title {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  margin-bottom: 10px;
}
#about .card-area .cards .card__body .lead {
  font-weight: 300;
  margin-bottom: 15px;
}
#about .card-area .cards .card__body .list {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}
#about #mission {
  background-color: #FEF7EE;
  padding-block: 64px 20px;
}
#about #mission .box-title__main {
  font-size: 1.85rem;
}
#about #vision {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FAE8E4 90%, #FAE8E4 100%);
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about #vision .intro-text {
  padding-bottom: 24px;
}
#about #vision .card-area h3 {
  font-size: 2.4rem;
  text-align: left;
  padding-bottom: 24px;
  margin-bottom: 0;
}
#about #vision .card-area .description {
  text-align: left;
  padding-bottom: 24px;
}
#about #value {
  padding-block: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about #value .text {
  font-size: 1.5rem;
}
#about #message {
  padding-block: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about #message .intro-text {
  max-width: 350px;
}
#about #company {
  padding-block: 64px 40px;
}
#about #company .profile-list {
  border-top: 1px solid #f6f6f6;
}
#about #company .profile-list .profile-item {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #f6f6f6;
  align-items: flex-start;
}
#about #company .profile-list .profile-item .email {
  font-size: 1.4rem;
}
#about #company .profile-list .profile-item dt {
  width: 30%;
  color: #CE7E8B;
  text-align: left;
  flex-shrink: 0;
}
#about #company .profile-list .profile-item dd {
  flex-grow: 1;
  color: #2B2B2B;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}
#about #company .profile-list .profile-item dd a {
  text-decoration: none;
  color: inherit;
}
#about #company .profile-list .profile-item dd a:hover {
  text-decoration: underline;
}
#about #company .profile-list .profile-item dd ul {
  list-style: none;
  padding: 0;
}
#about #company .profile-list .profile-item dd ul li {
  position: relative;
  padding-left: 1.2em;
  padding-right: 1rem;
  margin-bottom: 0.5em;
}
#about #company .profile-list .profile-item dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
#about .contact {
  color: #FFFFFF;
  text-align: left;
  background-color: #FFFFFF;
  padding-block: 64px;
}
#about .contact .wrapper .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: url(img/contact-bg.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 30px;
}
#about .contact .wrapper .flex .left .contact-title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}
#about .contact .wrapper .flex .left .contact-text {
  font-size: 1.4rem;
  font-weight: 400;
}
#about .contact .wrapper .flex .right .arrow {
  width: 50px;
  height: 50px;
}

#service .fv {
  position: relative;
  background: url(img/fv-img.png);
  background-position: center;
  background-size: cover;
  padding: 100px 15px;
  margin-bottom: 60px;
}
#service .fv .section-title {
  color: #FFFFFF;
}
#service .fv .section-title span {
  color: #FFFFFF;
}
#service .fv .fv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#service .fv .hanabira {
  position: absolute;
}
#service .fv .hanabira-1 {
  width: 80px;
  height: 80px;
  left: 50px;
  bottom: 10px;
  z-index: 4;
}
#service .fv .hanabira-2 {
  width: 57px;
  height: 57px;
  left: 80px;
  bottom: 5px;
  transform: rotate(15deg);
  z-index: 3;
}
#service .fv .hanabira-3 {
  width: 66px;
  height: 66px;
  right: 30px;
  bottom: 30px;
  transform: rotate(150deg);
  z-index: 2;
}
#service .reason {
  position: relative;
  margin-bottom: 30px;
}
#service .reason__title {
  font-size: 2.7rem;
}
#service .reason__list {
  width: 100%;
  height: 250px;
  position: relative;
}
#service .reason__list .item {
  width: 175px;
  position: absolute;
}
@media (max-width: 370px) {
  #service .reason__list .item {
    width: 150px;
  }
}
#service .reason__list .item:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 3;
}
#service .reason__list .item:nth-child(2) {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#service .reason__list .item:nth-child(3) {
  top: 0;
  right: 0;
  z-index: 1;
}
#service .reason .white-bg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -30px;
}
#service .detail {
  text-align: left;
  background-color: #FEF7EE;
  padding: 64px 0px;
}
#service .detail__text {
  font-weight: 300;
  margin-bottom: 16px;
}
#service .detail__img {
  margin-bottom: 70px;
}
#service .detail__content {
  margin-bottom: 70px;
}
#service .detail__content .text {
  font-weight: 300;
}
#service .detail .title-h3 {
  position: relative;
  font-size: 2.4rem;
  font-family: "Vujahday Script", "Hina Mincho", serif;
  font-weight: 400;
  padding-left: 16px;
  margin-bottom: 16px;
}
#service .detail .title-h3::after {
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 3px solid #CE7E8B;
}
#service .detail__card-area {
  margin-bottom: 70px;
}
#service .detail__card-area .cards {
  padding-inline: 15px;
}
#service .detail__card-area .cards .card {
  background-color: #FFFFFF;
  border-radius: 10px;
  border-top: 1px solid #CE7E8B;
  padding: 10px 20px;
  margin-bottom: 24px;
}
#service .detail__card-area .cards .card__header {
  color: #CE7E8B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
#service .detail__card-area .cards .card__header .num {
  font-size: 2.5rem;
  font-family: "Hina Mincho", serif;
}
#service .detail__card-area .cards .card__body {
  font-weight: 300;
}
#service .detail__card-area .cards .card__body .title {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Hina Mincho", serif;
  margin-bottom: 10px;
}
#service .detail__card-area .cards .card__body .lead {
  font-weight: 300;
  margin-bottom: 15px;
}
#service .detail__card-area .cards .card__body .list {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}
#service .detail .cta {
  position: relative;
  text-align: center;
  background: #FEF7EE;
  padding-bottom: 39px;
}
#service .detail .cta__title {
  font-size: 2.2rem;
  color: #CE7E8B;
  font-family: "Hina Mincho", serif;
  margin-bottom: 10px;
}
#service .detail .cta__text {
  font-weight: 300;
  margin-bottom: 30px;
}
#service .detail .cta__img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -64px;
}
#service #sakura .card-section-sakura {
  height: 450vh;
  position: relative;
}
#service #sakura .card-section-sakura .box {
  height: 80vh;
  position: sticky;
  top: 60px;
}
#service #sakura .card-section-sakura .box .cards {
  height: 100%;
  position: relative;
}
#service #sakura .card-section-sakura .box .cards .card {
  width: 93%;
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(40px);
  transition: 0.7s ease;
  margin: 0 auto;
}
#service #sakura .card-section-sakura .box .cards .card.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#service #sakura .card-section-sakura .box .card-nav {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
#service #sakura .card-section-sakura .box .card-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CE7E8B;
  opacity: 0.3;
  transition: all 0.3s ease;
}
#service #sakura .card-section-sakura .box .card-nav__dot.active {
  opacity: 1;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: url("img/card-point.png") center/contain no-repeat;
  background-color: transparent;
}
#service #movie {
  position: relative;
  background-color: #FFFFFF;
}
#service #movie .card {
  background-color: rgba(250, 232, 228, 0.3);
}
#service #movie .white-bg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
#service #esports {
  position: relative;
}
#service #esports .card-section-esports {
  height: 250vh;
  position: relative;
}
#service #esports .card-section-esports .box {
  height: 70vh;
  position: sticky;
  top: 60px;
}
#service #esports .card-section-esports .box .cards {
  height: 100%;
  position: relative;
}
#service #esports .card-section-esports .box .cards .card {
  width: 93%;
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(40px);
  transition: 0.7s ease;
  margin: 0 auto;
}
#service #esports .card-section-esports .box .cards .card.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#service #esports .card-section-esports .box .card-nav {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
#service #esports .card-section-esports .box .card-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CE7E8B;
  opacity: 0.3;
  transition: all 0.3s ease;
}
#service #esports .card-section-esports .box .card-nav__dot.active {
  opacity: 1;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: url("img/card-point.png") center/contain no-repeat;
  background-color: transparent;
}
#service #esports .white-bg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -10px;
  transform: rotate(180deg);
}
#service .contact {
  color: #FFFFFF;
  text-align: left;
  background-color: #FFFFFF;
  padding-block: 64px;
  position: relative;
}
#service .contact .wrapper .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: url(img/contact-bg.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 30px;
}
#service .contact .wrapper .flex .left .contact-title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}
#service .contact .wrapper .flex .left .contact-text {
  font-size: 1.4rem;
  font-weight: 400;
}
#service .contact .wrapper .flex .right .arrow {
  width: 50px;
  height: 50px;
}
#service .contact .before-footer-deco {
  width: 150px;
  position: absolute;
  right: 0;
  bottom: -20%;
  overflow-x: hidden;
}

#partners .fv {
  position: relative;
  background: url(img/fv-img.png);
  background-position: center;
  background-size: cover;
  padding: 100px 15px;
  margin-bottom: 60px;
}
#partners .fv .section-title {
  color: #FFFFFF;
}
#partners .fv .section-title span {
  color: #FFFFFF;
}
#partners .fv .fv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#partners .fv .hanabira {
  position: absolute;
}
#partners .fv .hanabira-1 {
  width: 80px;
  height: 80px;
  left: 50px;
  bottom: 10px;
  z-index: 4;
}
#partners .fv .hanabira-2 {
  width: 57px;
  height: 57px;
  left: 80px;
  bottom: 5px;
  transform: rotate(15deg);
  z-index: 3;
}
#partners .fv .hanabira-3 {
  width: 66px;
  height: 66px;
  right: 30px;
  bottom: 30px;
  transform: rotate(150deg);
  z-index: 2;
}
#partners .filter-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 34px;
}
#partners .filter-list li {
  border: 1px solid #2B2B2B;
  border-radius: 11px;
  padding: 4px 16px;
  transition: 0.3s;
  cursor: pointer;
}
#partners .filter-list li:hover, #partners .filter-list li.active {
  background-color: #CE7E8B;
  border: 1px solid #CE7E8B;
  color: #FFFFFF;
}
#partners .partners {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px 5%;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
#partners .partners .partner-box {
  background-color: rgb(250, 232, 228);
  width: 47.5%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  box-sizing: border-box;
}
#partners .partners .partner-box .logo {
  background-color: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#partners .partners .partner-box .info {
  text-align: left;
  margin-top: auto;
}
#partners .partners .partner-box .info .name {
  font-family: "Hina Mincho", serif;
  line-height: 1;
  font-size: 1.6rem;
}
#partners .partners .partner-box .info .tag {
  font-size: 1.2rem;
  color: #666;
}
#partners .pagination {
  margin: 60px auto;
  text-align: center;
}
#partners .pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 7px;
}
#partners .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 30px;
}
#partners .pagination .page-numbers.current {
  background: #CE7E8B;
  border-color: #CE7E8B;
  color: #FFFFFF;
}
#partners .pagination .page-numbers:hover:not(.current) {
  background: rgba(206, 126, 139, 0.1);
  border-color: #CE7E8B;
  color: #CE7E8B;
}
#partners .contact {
  color: #FFFFFF;
  text-align: left;
  background-color: #FFFFFF;
  padding-block: 64px;
}
#partners .contact .wrapper .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: url(img/contact-bg.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 30px;
}
#partners .contact .wrapper .flex .left .contact-title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}
#partners .contact .wrapper .flex .left .contact-text {
  font-size: 1.4rem;
  font-weight: 400;
}
#partners .contact .wrapper .flex .right .arrow {
  width: 50px;
  height: 50px;
}

#blog .fv {
  position: relative;
  background: url(img/fv-img.png);
  background-position: center;
  background-size: cover;
  padding: 100px 15px;
}
#blog .fv .section-title {
  color: #FFFFFF;
}
#blog .fv .section-title span {
  color: #FFFFFF;
}
#blog .fv .fv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#blog .fv .hanabira {
  position: absolute;
}
#blog .fv .hanabira-1 {
  width: 80px;
  height: 80px;
  left: 50px;
  bottom: 10px;
  z-index: 4;
}
#blog .fv .hanabira-2 {
  width: 57px;
  height: 57px;
  left: 80px;
  bottom: 5px;
  transform: rotate(15deg);
  z-index: 3;
}
#blog .fv .hanabira-3 {
  width: 66px;
  height: 66px;
  right: 30px;
  bottom: 30px;
  transform: rotate(150deg);
  z-index: 2;
}
#blog .blog {
  position: relative;
  background: #fdf4f1;
  padding-block: 60px;
}
#blog .blog__category-nav {
  font-family: "Hina Mincho", serif;
  margin-bottom: 48px;
}
#blog .blog__category-nav .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
}
@media (max-width: 370px) {
  #blog .blog__category-nav .list {
    gap: 8px;
  }
}
#blog .blog__category-nav .list .item {
  color: #2B2B2B;
  border: 0.5px solid #2B2B2B;
  border-radius: 11px;
  transition: all 0.3s;
}
@media (max-width: 370px) {
  #blog .blog__category-nav .list .item {
    padding: 8px 10px;
  }
}
#blog .blog__category-nav .list .item.is-active {
  color: #FFFFFF;
  border: 0.5px solid #CE7E8B;
  background: #CE7E8B;
}
#blog .blog__category-nav .list .item:hover {
  background-color: #CE7E8B;
  color: #FFFFFF;
  border: 0.5px solid #CE7E8B;
}
#blog .blog__category-nav .list .item a {
  width: 100%;
  height: 100%;
  padding: 8px 16px;
}
#blog .blog__posts .post {
  background: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 20px;
}
#blog .blog__posts .post__link {
  width: 100%;
  height: 100%;
  padding: 20px;
}
#blog .blog__posts .post__link .img {
  border-radius: 10px;
  margin-bottom: 20px;
}
#blog .blog__posts .post__link .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#blog .blog__posts .post__link .flex__left {
  flex: 1;
  font-family: "Hina Mincho", serif;
}
#blog .blog__posts .post__link .flex__left .title {
  font-size: 2.2rem;
  font-weight: 400;
  display: flex;
  justify-content: left;
  align-items: center;
}
#blog .blog__posts .post__link .flex__left .title .sakura {
  width: 29px;
  margin-right: 8px;
}
#blog .blog__posts .post__link .flex__left .category {
  text-align: left;
  color: #909090;
  font-size: 1.4rem;
}
#blog .blog__posts .post__link .flex__right {
  width: 29px;
}
#blog .blog__posts .post__link .flex__right .arrow {
  width: 100%;
}
#blog .blog .pagination {
  margin: 60px auto;
  text-align: center;
}
#blog .blog .pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 7px;
}
#blog .blog .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid #2B2B2B;
  background: #FFFFFF;
  color: #2B2B2B;
  text-decoration: none;
  font-family: "Hina Mincho", serif;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
#blog .blog .pagination .page-numbers.current {
  background: #CE7E8B;
  border-color: #CE7E8B;
  color: #FFFFFF;
}
#blog .blog .pagination .page-numbers:hover:not(.current) {
  background: rgba(206, 126, 139, 0.1);
  border-color: #CE7E8B;
  color: #CE7E8B;
}
#blog .blog .pagination .next, #blog .blog .pagination .prev {
  display: none;
}
#blog .blog__bg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media (max-width: 370px) {
  #blog .blog__bg {
    bottom: -35px;
  }
}
#blog .contact {
  color: #FFFFFF;
  text-align: left;
  background-color: #FFFFFF;
  padding-block: 64px;
  position: relative;
}
#blog .contact .wrapper .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: url(img/contact-bg.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 30px;
}
#blog .contact .wrapper .flex .left .contact-title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}
#blog .contact .wrapper .flex .left .contact-text {
  font-size: 1.4rem;
  font-weight: 400;
}
#blog .contact .wrapper .flex .right .arrow {
  width: 50px;
  height: 50px;
}
#blog .contact .before-footer-deco {
  width: 150px;
  position: absolute;
  right: 0;
  bottom: -20%;
  overflow-x: hidden;
}

#blog-detail .fv {
  position: relative;
  background: url(img/fv-img.png);
  background-position: center;
  background-size: cover;
  padding: 100px 15px;
}
#blog-detail .fv .section-title {
  color: #FFFFFF;
}
#blog-detail .fv .section-title span {
  color: #FFFFFF;
}
#blog-detail .fv .fv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#blog-detail .fv .hanabira {
  position: absolute;
}
#blog-detail .fv .hanabira-1 {
  width: 80px;
  height: 80px;
  left: 50px;
  bottom: 10px;
  z-index: 4;
}
#blog-detail .fv .hanabira-2 {
  width: 57px;
  height: 57px;
  left: 80px;
  bottom: 5px;
  transform: rotate(15deg);
  z-index: 3;
}
#blog-detail .fv .hanabira-3 {
  width: 66px;
  height: 66px;
  right: 30px;
  bottom: 30px;
  transform: rotate(150deg);
  z-index: 2;
}
#blog-detail .blog {
  position: relative;
  background: linear-gradient(to bottom, #FFFFFF, rgba(250, 232, 228, 0.5));
  padding-top: 60px;
  padding-bottom: 120px;
}
#blog-detail .blog__category-nav {
  font-family: "Hina Mincho", serif;
  margin-bottom: 48px;
}
#blog-detail .blog__category-nav .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
}
@media (max-width: 370px) {
  #blog-detail .blog__category-nav .list {
    gap: 8px;
  }
}
#blog-detail .blog__category-nav .list .item {
  color: #2B2B2B;
  border: 0.5px solid #2B2B2B;
  border-radius: 11px;
  transition: all 0.3s;
}
@media (max-width: 370px) {
  #blog-detail .blog__category-nav .list .item {
    padding: 8px 10px;
  }
}
#blog-detail .blog__category-nav .list .item.is-active {
  color: #FFFFFF;
  border: 0.5px solid #CE7E8B;
  background: #CE7E8B;
}
#blog-detail .blog__category-nav .list .item span {
  display: inline-block;
  padding: 8px 16px;
}
#blog-detail .blog .post {
  border-radius: 10px;
  margin-bottom: 46px;
}
#blog-detail .blog .post__header {
  font-family: "Hina Mincho", serif;
  margin-bottom: 15px;
}
#blog-detail .blog .post__header .title {
  font-size: 2.2rem;
  font-weight: 400;
  display: flex;
  justify-content: left;
  align-items: center;
}
#blog-detail .blog .post__header .category {
  text-align: left;
  color: #909090;
  font-size: 1.4rem;
}
#blog-detail .blog .post__img {
  border-radius: 10px;
  margin-bottom: 30px;
}
#blog-detail .blog .post__textarea {
  text-align: left;
  border-left: 1px solid #CE7E8B;
  padding-left: 15px;
}
#blog-detail .blog .post__back {
  border: 0.5px solid #2B2B2B;
  border-radius: 10px;
  transition: all 0.3s;
  padding: 10px 20px;
}
#blog-detail .blog .post__back:hover {
  background-color: #CE7E8B;
  color: #FFFFFF;
  border: 0.5px solid #CE7E8B;
}
#blog-detail .blog__bg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media (max-width: 370px) {
  #blog-detail .blog__bg {
    bottom: -35px;
  }
}
#blog-detail .contact {
  color: #FFFFFF;
  text-align: left;
  background-color: #FFFFFF;
  padding-block: 64px;
  position: relative;
}
#blog-detail .contact .wrapper .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: url(img/contact-bg.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 30px;
}
#blog-detail .contact .wrapper .flex .left .contact-title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}
#blog-detail .contact .wrapper .flex .left .contact-text {
  font-size: 1.4rem;
  font-weight: 400;
}
#blog-detail .contact .wrapper .flex .right .arrow {
  width: 50px;
  height: 50px;
}
#blog-detail .contact .before-footer-deco {
  width: 150px;
  position: absolute;
  right: 0;
  bottom: -20%;
  overflow-x: hidden;
}

#contact .fv {
  position: relative;
  background: url(img/fv-img.png);
  background-position: center;
  background-size: cover;
  padding: 100px 15px;
}
#contact .fv .section-title {
  color: #FFFFFF;
}
#contact .fv .section-title span {
  color: #FFFFFF;
}
#contact .fv .fv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#contact .fv .hanabira {
  position: absolute;
}
#contact .fv .hanabira-1 {
  width: 80px;
  height: 80px;
  left: 50px;
  bottom: 10px;
  z-index: 4;
}
#contact .fv .hanabira-2 {
  width: 57px;
  height: 57px;
  left: 80px;
  bottom: 5px;
  transform: rotate(15deg);
  z-index: 3;
}
#contact .fv .hanabira-3 {
  width: 66px;
  height: 66px;
  right: 30px;
  bottom: 30px;
  transform: rotate(150deg);
  z-index: 2;
}
#contact {
  /* フォーム全体のスタイル */
}
#contact p {
  margin-bottom: 20px;
}
#contact form {
  background-color: #FEF7EE;
  padding: 20px 15px 50px;
  margin-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  /* ラベルのスタイル */
}
#contact form label {
  display: block;
  margin-top: 10px;
}
#contact form {
  /* 入力欄のスタイル */
}
#contact form input,
#contact form textarea,
#contact form select {
  width: 100%;
  /* box-sizingが適用されるので、paddingやborder込みで100%に収まる */
  padding: 5px;
  border: 2px solid #f6f6f6;
  border-radius: 5px;
}
#contact form {
  /* テキストエリアの高さを調整 */
}
#contact form textarea {
  resize: vertical;
  height: 120px;
}
#contact form span {
  color: #CE7E8B;
}
#contact form {
  /* 送信ボタンのスタイル */
}
#contact form button {
  background-color: #B6D176;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
#contact form button:hover {
  background-color: #B6D176;
}

#terms .fv {
  position: relative;
  background: url(img/fv-img.png);
  background-position: center;
  background-size: cover;
  padding: 100px 15px;
  margin-bottom: 60px;
}
#terms .fv .section-title {
  color: #FFFFFF;
}
#terms .fv .section-title span {
  color: #FFFFFF;
}
#terms .fv .fv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#terms .fv .hanabira {
  position: absolute;
}
#terms .fv .hanabira-1 {
  width: 80px;
  height: 80px;
  left: 50px;
  bottom: 10px;
  z-index: 4;
}
#terms .fv .hanabira-2 {
  width: 57px;
  height: 57px;
  left: 80px;
  bottom: 5px;
  transform: rotate(15deg);
  z-index: 3;
}
#terms .fv .hanabira-3 {
  width: 66px;
  height: 66px;
  right: 30px;
  bottom: 30px;
  transform: rotate(150deg);
  z-index: 2;
}
#terms .legal-content {
  line-height: 1.8;
  color: #2B2B2B;
  text-align: left;
  max-width: 320px;
  margin: 0 auto 80px;
}
#terms .legal-content h3 {
  font-size: 1.8rem;
  border-left: 4px solid #CE7E8B;
  padding-left: 15px;
  margin: 40px 0 20px;
  font-weight: bold;
}
#terms .legal-content p {
  margin-bottom: 15px;
}
#terms .legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
#terms .legal-content ul li {
  list-style: disc;
  margin-bottom: 5px;
}

#policy .fv {
  position: relative;
  background: url(img/fv-img.png);
  background-position: center;
  background-size: cover;
  padding: 100px 15px;
  margin-bottom: 60px;
}
#policy .fv .section-title {
  color: #FFFFFF;
}
#policy .fv .section-title span {
  color: #FFFFFF;
}
#policy .fv .fv-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#policy .fv .hanabira {
  position: absolute;
}
#policy .fv .hanabira-1 {
  width: 80px;
  height: 80px;
  left: 50px;
  bottom: 10px;
  z-index: 4;
}
#policy .fv .hanabira-2 {
  width: 57px;
  height: 57px;
  left: 80px;
  bottom: 5px;
  transform: rotate(15deg);
  z-index: 3;
}
#policy .fv .hanabira-3 {
  width: 66px;
  height: 66px;
  right: 30px;
  bottom: 30px;
  transform: rotate(150deg);
  z-index: 2;
}
#policy .legal-content {
  line-height: 1.8;
  color: #2B2B2B;
  text-align: left;
  max-width: 320px;
  margin: 0 auto 80px;
}
#policy .legal-content h3 {
  font-size: 1.8rem;
  border-left: 4px solid #CE7E8B;
  padding-left: 15px;
  margin: 40px 0 20px;
  font-weight: bold;
  text-align: left;
}
#policy .legal-content h4 {
  font-size: 1.6rem;
  margin: 25px 0 10px;
  font-weight: bold;
  text-align: left;
}
#policy .legal-content p {
  margin-bottom: 15px;
}
#policy .legal-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
#policy .legal-content ul li {
  list-style: disc;
}/*# sourceMappingURL=main.css.map */