:root {
  --text-color: #333333;
  --accent-color: #52DBFA;
  --sub-color: #FFEEC5;
  --line-color: #06C755;
  --plans-color: #FFC94C;
  --background-color: #ffffff;
  --shadow-color: #333333cc;
  --ff-main: "Montserrat", sans-serif;
  --ff-num: "Moulpali", sans-serif;
  --vw-tb: 768px;
  --vw-sp: 500px;
}

html {
  font-size: 100%;
  font-family: var(--ff-main);
  color: var(--text-color);
}

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

li {
  list-style: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

h1 {
  width: 146px;
}
@media (max-width: 500px) {
  h1 {
    width: 100px;
  }
}
h1 a {
  display: inline-block;
  height: 100%;
}

h2 {
  font-size: clamp(1.3rem, 20.8px + 3.2 * (100vw - 768px) / 512, 1.5rem);
  font-weight: normal;
}

h3 {
  font-size: 4rem;
  font-weight: bold;
  border-bottom: 2px solid var(--accent-color);
}
@media (max-width: 768px) {
  h3 {
    font-size: clamp(2.5rem, 40px + 16 * (100vw - 500px) / 268, 3.5rem);
  }
}
@media (max-width: 500px) {
  h3 {
    font-size: clamp(1.5rem, 24px + 16 * (100vw - 360px) / 140, 2.5rem);
  }
}

.pages .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 4px 4px #ffffff;
}
.pages .title-bg {
  position: relative;
  width: 100%;
  height: 50vh;
  margin-bottom: 24px;
  background-position: bottom;
  background-size: cover;
}
@media (max-width: 500px) {
  .pages .title-bg {
    margin-bottom: 10px;
  }
}
.pages .title-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.5;
}
.pages h2 {
  font-size: 4rem;
  font-weight: bold;
  border-bottom: 2px solid var(--accent-color);
}
@media (max-width: 500px) {
  .pages h2 {
    font-size: 3rem;
  }
}
.pages h3 {
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: none;
  margin-bottom: 24px;
}
@media (max-width: 500px) {
  .pages h3 {
    font-size: 1rem;
  }
}
.pages h3 .bi {
  margin-right: 8px;
}
@media (max-width: 500px) {
  .pages h3 .bi {
    padding-right: initial;
  }
}
.pages h3 span {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .pages .btn {
    padding-inline: 3%;
  }
}

section {
  text-align: center;
  padding-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 500px) {
  section {
    padding-top: 75px;
    margin-bottom: initial;
  }
}

article {
  text-align: center;
  padding-top: 85px;
  margin-bottom: 80px;
  overflow-x: hidden;
}
@media (max-width: 500px) {
  article {
    padding-top: 70px;
  }
}

.wrapper {
  padding-inline: 3%;
}

.title {
  display: inline-block;
}
.title p {
  font-size: 1.5rem;
  text-align: right;
}
@media (max-width: 500px) {
  .title p {
    font-size: 1rem;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.btn .top-btn {
  display: inline-block;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  height: 70px;
  width: 276px;
  line-height: 70px;
  font-size: 1.5rem;
  transition: all 0.5s;
}
.btn .top-btn:hover {
  background-color: #333333;
  color: #ffffff;
}
.btn .contact-btn {
  border: 3px solid var(--text-color);
  border-radius: 20px;
  height: 90px;
  width: 346px;
  line-height: 90px;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
}
@media (max-width: 768px) {
  .btn .contact-btn {
    font-size: clamp(1rem, 16px + 4 * (100vw - 500px) / 268, 1.25rem);
  }
}
@media (max-width: 500px) {
  .btn .contact-btn {
    flex-direction: column;
    line-height: 25px;
  }
}
.btn .contact-btn span {
  font-size: 2.5rem;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .btn .contact-btn span {
    font-size: clamp(1.75rem, 28px + 12 * (100vw - 500px) / 268, 2.5rem);
  }
}
.btn .contact-btn::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #06C755;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  z-index: -1;
  transition: all 0.5s;
}
.btn .contact-btn:hover::before {
  top: 0;
  left: 0;
}

.breadcrumb {
  padding-left: 3%;
  text-align: left;
  margin-bottom: 72px;
}
@media (max-width: 500px) {
  .breadcrumb {
    font-size: 0.875rem;
  }
}
.breadcrumb .current {
  color: var(--plans-color);
}

.br-tb {
  display: none;
}
@media (max-width: 768px) {
  .br-tb {
    display: block;
    height: 0;
  }
}
.br-sp {
  display: none;
}
@media (max-width: 500px) {
  .br-sp {
    display: block;
    height: 0;
  }
}

@media (max-width: 768px) {
  .none-tb {
    display: none;
  }
}
@media (max-width: 500px) {
  .none-sp {
    display: none;
  }
}

.block-tb {
  display: none;
}
@media (max-width: 768px) {
  .block-tb {
    display: block;
  }
}
.block-sp {
  display: none;
}
@media (max-width: 500px) {
  .block-sp {
    display: block;
  }
}

header {
  background-color: var(--background-color);
  height: 85px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  box-shadow: 0px 0px 5px #b6b6b6;
}
@media (max-width: 500px) {
  header {
    height: 70px;
  }
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
}
nav ul {
  display: flex;
  gap: 20px;
  text-align: center;
}
nav li {
  position: relative;
}
nav li::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--accent-color);
  width: 100%;
  height: 30px;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
  transition: all 0.5s;
  opacity: 0;
}
nav li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(90px, 90px + 30 * (100vw - 768px) / 512, 120px);
  height: 40px;
}
nav li .en,
nav li .jp {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
nav li .jp {
  opacity: 0;
}
nav li:hover::before {
  opacity: 1;
}
nav li:hover .en {
  opacity: 0;
}
nav li:hover .jp {
  opacity: 1;
}

.toggle {
  display: none;
  cursor: pointer;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .toggle {
    display: block;
  }
}
.toggle-note {
  width: 40px;
  margin-inline: auto;
}
.toggle .close {
  display: none;
}
.toggle .cross {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  margin-inline: auto;
}
.toggle .cross span {
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--text-color);
}
.toggle .cross span:nth-child(1) {
  transform: rotate(45deg);
}
.toggle .cross span:nth-child(2) {
  transform: rotate(-45deg);
}

.mask {
  display: none;
}

.open .toggle-note {
  width: 40px;
  margin-inline: auto;
  -webkit-animation: toggle-close 1s forwards;
          animation: toggle-close 1s forwards;
}
@-webkit-keyframes toggle-close {
  0% {
    opacity: 1;
    transform: scaleX(0);
  }
  100% {
    opacity: 0;
    transform: scaleX(-1);
    display: none;
  }
}
@keyframes toggle-close {
  0% {
    opacity: 1;
    transform: scaleX(0);
  }
  100% {
    opacity: 0;
    transform: scaleX(-1);
    display: none;
  }
}
.open .toggle .close {
  display: block;
}
.open .toggle .cross.show {
  -webkit-animation: toggle-cross 1s forwards;
          animation: toggle-cross 1s forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.open .toggle .cross.hide {
  -webkit-animation: toggle-cross-reverse 0.8s forwards;
          animation: toggle-cross-reverse 0.8s forwards;
}
@-webkit-keyframes toggle-cross {
  0% {
    opacity: 0;
    transform: scaleX(-1);
  }
  10% {
    display: block;
    opacity: 0;
    transform: scaleX(-1);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes toggle-cross {
  0% {
    opacity: 0;
    transform: scaleX(-1);
  }
  10% {
    display: block;
    opacity: 0;
    transform: scaleX(-1);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
.open .toggle .menu {
  display: none;
}
.open nav {
  display: block;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.open nav ul {
  flex-direction: column;
  gap: 40px;
}
.open nav li::before {
  background-color: var(--sub-color);
}
.open nav li a {
  width: 200px;
  flex-direction: column;
}
.open nav li a:hover .en {
  opacity: 1;
}
.open nav li .en {
  position: initial;
}
.open nav li .jp {
  opacity: 1;
  position: initial;
  font-size: 0.875rem;
}
.open .mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--background-color);
  z-index: -1;
}
.open .mask::before, .open .mask::after {
  content: "";
  position: absolute;
  top: 95px;
  left: 0;
  width: 100%;
  height: calc(100vh - 85px);
  background-color: var(--accent-color);
  opacity: 0.2;
}
.open .mask::before {
  -webkit-clip-path: polygon(0 10%, 0 0, 100% 75%, 100% 85%);
          clip-path: polygon(0 10%, 0 0, 100% 75%, 100% 85%);
}
.open .mask::after {
  -webkit-clip-path: polygon(0 100%, 0 90%, 100% 45%, 100% 55%);
          clip-path: polygon(0 100%, 0 90%, 100% 45%, 100% 55%);
}

footer {
  text-align: center;
  padding-block: 150px 20px;
  background-color: rgba(176, 239, 255, 0.3490196078);
}
@media (max-width: 500px) {
  footer {
    padding-block: 80px 20px;
  }
}

.modal {
  position: fixed;
  bottom: 50px;
  left: 20px;
  padding: 14px;
  text-align: center;
  border: 1px solid var(--text-color);
  border-radius: 20px;
  background-color: var(--sub-color);
  line-height: 1.7;
  filter: drop-shadow(0 4px 4px var(--shadow-color));
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
@media (max-width: 500px) {
  .modal {
    display: none;
  }
}
.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 39px;
  height: 39px;
  background-color: #ffffff;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  filter: drop-shadow(0 4px 4px var(--shadow-color));
  transition: all 0.5s;
  cursor: pointer;
}
.modal-close::before, .modal-close::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 10px;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-close:hover {
  opacity: 0.5;
}
.modal .lead {
  font-size: 1.25rem;
  font-weight: bold;
}
.modal .lead .border {
  border-bottom: 5px dotted var(--accent-color);
}
.modal .content {
  font-size: 0.875rem;
  margin-block: 12px;
}
.modal a {
  display: inline-block;
  background-color: var(--line-color);
  border-radius: 10px;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 0px 4px 4px var(--shadow-color);
  padding: 10px;
  transition: all 0.5s;
}
.modal a:hover {
  opacity: 0.5;
}
.modal.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logo {
  width: 200px;
}
@media (max-width: 500px) {
  .logo {
    width: 120px;
  }
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.link a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.sns {
  display: flex;
  gap: 20px;
  font-size: 2rem;
}
@media (max-width: 500px) {
  .sns {
    font-size: 1.5rem;
  }
}
.sns a {
  transition: all 0.5s;
}
.sns a:hover {
  opacity: 0.5;
}

.legal {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-block: 30px;
  font-size: 0.875rem;
}
@media (max-width: 500px) {
  .legal {
    font-size: 0.75rem;
  }
}
.legal a {
  transition: all 0.5s;
}
.legal a:hover {
  opacity: 0.5;
}

@media (max-width: 500px) {
  small {
    font-size: 70%;
  }
}

#top {
  margin-block: initial;
  padding-top: 100px;
  overflow: hidden;
}
#top .gallery h2 {
  position: relative;
  line-height: 1.8;
}
#top .gallery h2 .by {
  font-size: 1rem;
}
@media (max-width: 500px) {
  #top .gallery h2 .by {
    font-size: 0.875rem;
  }
}
#top .grid {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, calc((100vh - 200px) / 3));
  gap: 10px;
}
#top .grid li img {
  height: 100%;
}
#top .grid li:nth-child(1) {
  grid-column: 1/span 4;
}
@media (max-width: 500px) {
  #top .grid li:nth-child(1) {
    grid-column: 1/span 7;
  }
}
#top .grid li:nth-child(2) {
  grid-column: 5/span 3;
}
@media (max-width: 500px) {
  #top .grid li:nth-child(2) {
    display: none;
  }
}
#top .grid li:nth-child(3) {
  grid-column: 8/span 5;
}
#top .grid li:nth-child(4) {
  grid-column: 1/span 3;
}
#top .grid li:nth-child(5) {
  grid-column: 4/span 6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#top .grid li:nth-child(6) {
  grid-column: 10/span 3;
}
#top .grid li:nth-child(7) {
  grid-column: 1/span 2;
}
@media (max-width: 500px) {
  #top .grid li:nth-child(7) {
    display: none;
  }
}
#top .grid li:nth-child(8) {
  grid-column: 3/span 3;
}
@media (max-width: 500px) {
  #top .grid li:nth-child(8) {
    grid-column: 1/span 6;
  }
}
#top .grid li:nth-child(9) {
  grid-column: 6/span 4;
}
@media (max-width: 500px) {
  #top .grid li:nth-child(9) {
    display: none;
  }
}
#top .grid li:nth-child(10) {
  grid-column: 10/span 3;
}
@media (max-width: 500px) {
  #top .grid li:nth-child(10) {
    grid-column: 7/span 6;
  }
}
#top .scroll {
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#top .scroll p {
  display: inline-block;
  font-size: 1.25rem;
}
#top .scroll .arrow {
  display: flex;
  opacity: 0;
  -webkit-animation: scroll 3s infinite;
          animation: scroll 3s infinite;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
#top .scroll .arrow span {
  display: inline-block;
  background-color: var(--text-color);
  width: 30px;
  height: 2px;
  position: relative;
}
#top .scroll .arrow span:nth-of-type(1) {
  transform: rotate(30deg);
  left: 2px;
}
#top .scroll .arrow span:nth-of-type(2) {
  transform: rotate(-30deg);
  right: 2px;
}

.thought {
  height: 100vh;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .thought {
    font-size: clamp(1.25rem, 20px + 4 * (100vw - 500px) / 268, 1.5rem);
  }
}
@media (max-width: 500px) {
  .thought {
    line-height: 2.5;
  }
}
.thought .bold {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .thought .bold {
    font-size: clamp(1.5rem, 24px + 8 * (100vw - 500px) / 268, 2rem);
  }
}
.thought p {
  position: relative;
}
.thought p::before, .thought p::after {
  position: absolute;
  content: "";
  background-color: var(--accent-color);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.5;
}
.thought p::before {
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -webkit-animation: float 3s infinite linear;
          animation: float 3s infinite linear;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.thought p::after {
  bottom: -145px;
  right: 40px;
  width: 180px;
  height: 180px;
  transform: rotate(-30deg);
  -webkit-animation: float-block 5s infinite linear;
          animation: float-block 5s infinite linear;
}
@media (max-width: 768px) {
  .thought p::after {
    right: clamp(-120px, -120px + 160 * (100vw - 500px) / 268, 40px);
  }
}
.thought p .shape::before, .thought p .shape::after {
  position: absolute;
  content: "";
  background-color: var(--sub-color);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.5;
}
.thought p .shape::before {
  top: -200px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -webkit-animation: float 5s infinite linear;
          animation: float 5s infinite linear;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
@media (max-width: 500px) {
  .thought p .shape::before {
    right: -80px;
  }
}
.thought p .shape::after {
  bottom: -220px;
  left: 30px;
  width: 150px;
  height: 150px;
  transform: rotate(-30deg);
  -webkit-animation: float-block 3s infinite linear;
          animation: float-block 3s infinite linear;
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}
@media (max-width: 500px) {
  .thought p .shape::after {
    left: -50px;
  }
}

@-webkit-keyframes float {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(50px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(50px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
}
@-webkit-keyframes float-block {
  0% {
    transform: translateY(0) rotate(-30deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(50px) rotate(-30deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(-30deg);
    opacity: 0.5;
  }
}
@keyframes float-block {
  0% {
    transform: translateY(0) rotate(-30deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(50px) rotate(-30deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(-30deg);
    opacity: 0.5;
  }
}
.slide {
  font-size: 5rem;
  display: flex;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  gap: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  -webkit-animation: slideLeft 20s linear infinite;
          animation: slideLeft 20s linear infinite;
}
@media (max-width: 500px) {
  .slide {
    font-size: 2rem;
  }
}
.slide li {
  color: #fff;
  text-shadow: 1px 1px 0 var(--text-color), -1px 1px 0 var(--text-color), 1px -1px 0 var(--text-color), -1px -1px 0 var(--text-color);
}

@-webkit-keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#features .wrapper {
  position: relative;
  padding-block: 50px;
}
@media (max-width: 768px) {
  #features .wrapper {
    padding-block: initial;
  }
}
#features .wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  -webkit-clip-path: polygon(0 10%, 0 0, 100% 50%, 0 100%, 0 90%, 80% 50%);
          clip-path: polygon(0 10%, 0 0, 100% 50%, 0 100%, 0 90%, 80% 50%);
  opacity: 0.5;
  z-index: -2;
}
#features li {
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--text-color);
  box-shadow: 1px 4px 10px #333;
  background-color: #fff;
  border-radius: 34px;
  max-width: 850px;
  padding: 20px;
  margin-top: 50px;
  position: relative;
  z-index: -2;
}
@media (max-width: 500px) {
  #features li {
    flex-direction: column;
  }
}
#features li .num {
  position: absolute;
  top: 0;
  left: 10px;
  font-family: var(--ff-num);
  font-size: 10.5rem;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.2;
  z-index: -1;
}
@media (max-width: 500px) {
  #features li .num {
    font-size: 8.5rem;
  }
}
#features li .icon {
  width: 30%;
}
@media (max-width: 500px) {
  #features li .icon {
    width: 160px;
    margin-inline: auto;
  }
}
#features li .icon img {
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
#features li .text {
  width: 70%;
  text-align: left;
}
@media (max-width: 500px) {
  #features li .text {
    width: 100%;
  }
}
#features li .text .lead {
  font-size: clamp(1.75rem, 28px + 4 * (100vw - 768px) / 512, 2rem);
  font-weight: bold;
  margin-bottom: 10px;
  text-wrap: nowrap;
}
@media (max-width: 768px) {
  #features li .text .lead {
    font-size: clamp(1.3rem, 20.8px + 7.2 * (100vw - 500px) / 268, 1.75rem);
  }
}
@media (max-width: 500px) {
  #features li .text .lead {
    font-size: clamp(1.15rem, 18.4px + 2.4 * (100vw - 360px) / 140, 1.3rem);
  }
}
#features li .text .sub {
  display: inline-block;
  font-size: clamp(1.25rem, 20px + 4 * (100vw - 768px) / 512, 1.5rem);
  margin-bottom: 10px;
  position: relative;
  text-wrap: nowrap;
}
@media (max-width: 768px) {
  #features li .text .sub {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  #features li .text .sub {
    font-size: 1rem;
  }
}
#features li .text .sub::before {
  position: absolute;
  bottom: 5px;
  left: 0;
  content: "";
  width: 100%;
  height: 10px;
  background-color: var(--sub-color);
  z-index: -1;
}
#features li .text:last-of-type {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  #features li .text:last-of-type {
    font-size: 1rem;
  }
}
#features li:nth-of-type(2) {
  margin-left: auto;
  flex-direction: row-reverse;
}
#features li:nth-of-type(2) .block-sp {
  display: none;
}
@media (max-width: 500px) {
  #features li:nth-of-type(2) .block-sp {
    display: inline-block;
  }
}
@media (max-width: 500px) {
  #features li:nth-of-type(2) {
    flex-direction: column;
    gap: 20px;
  }
}
#features li:nth-of-type(2) .num {
  right: 0;
  left: initial;
}
#features li:nth-of-type(3) {
  gap: 20px;
}
@media (max-width: 500px) {
  #features li:nth-of-type(3) {
    gap: initial;
  }
}
#features li.fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease;
}

#lessons .outer {
  margin-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 500px) {
  #lessons .outer {
    margin-top: 70px;
    padding-bottom: initial;
  }
}
#lessons .outer::before, #lessons .outer::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #333;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#lessons .outer::before {
  -webkit-clip-path: polygon(100% 0, 100% 2px, 0 calc(20% + 2px), 0 20%);
          clip-path: polygon(100% 0, 100% 2px, 0 calc(20% + 2px), 0 20%);
}
#lessons .outer::after {
  -webkit-clip-path: polygon(100% 20%, 100% calc(20% + 2px), 0 calc(40% + 2px), 0 40%);
          clip-path: polygon(100% 20%, 100% calc(20% + 2px), 0 calc(40% + 2px), 0 40%);
}
#lessons .line::before, #lessons .line::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #333;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#lessons .line::before {
  -webkit-clip-path: polygon(100% 40%, 100% calc(40% + 2px), 0 calc(60% + 2px), 0 60%);
          clip-path: polygon(100% 40%, 100% calc(40% + 2px), 0 calc(60% + 2px), 0 60%);
}
#lessons .line::after {
  -webkit-clip-path: polygon(100% 60%, 100% calc(60% + 2px), 0 calc(80% + 2px), 0 80%);
          clip-path: polygon(100% 60%, 100% calc(60% + 2px), 0 calc(80% + 2px), 0 80%);
}
#lessons .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 20px;
  place-items: center;
  max-width: 1200px;
  margin-inline: auto;
}
#lessons .wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #333;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-clip-path: polygon(100% 80%, 100% calc(80% + 2px), 0 calc(100% + 2px), 0 100%);
          clip-path: polygon(100% 80%, 100% calc(80% + 2px), 0 calc(100% + 2px), 0 100%);
}
#lessons li {
  width: 100%;
  height: 140px;
  max-width: 195px;
  font-size: 1.5rem;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 768px) {
  #lessons li {
    font-size: clamp(1.25rem, 20px + 4 * (100vw - 500px) / 268, 1.5rem);
    height: clamp(110px, 110px + 30 * (100vw - 500px) / 268, 140px);
  }
}
@media (max-width: 500px) {
  #lessons li {
    font-size: clamp(0.875rem, 14px + 6 * (100vw - 360px) / 140, 1.25rem);
    height: clamp(80px, 80px + 30 * (100vw - 360px) / 140, 110px);
  }
}
#lessons li::before {
  position: absolute;
  bottom: 50%;
  right: 0;
  content: "";
  background-color: #333;
  width: 10px;
  height: 140px;
  border-radius: 5px;
}
@media (max-width: 500px) {
  #lessons li::before {
    height: clamp(90px, 90px + 50 * (100vw - 360px) / 140, 140px);
  }
}
#lessons li:hover {
  transform: scale(1.2);
}
#lessons li:nth-child(3n+1) {
  transform: translateY(140px);
}
#lessons li:nth-child(3n+1):hover {
  transform: translateY(140px) scale(1.2);
}
#lessons li:nth-child(3n+2) {
  transform: translateY(70px);
}
#lessons li:nth-child(3n+2):hover {
  transform: translateY(70px) scale(1.2);
}
#lessons li:last-child {
  grid-column: 3;
  transform: translateY(0);
}
#lessons li:last-child:hover {
  transform: translateY(0) scale(1.2);
}
#lessons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #333;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  color: #fff;
}

#contact {
  margin-block: 115px 0;
  padding-top: 85px;
  overflow-x: hidden;
}
@media (max-width: 500px) {
  #contact {
    margin-block: initial;
  }
}
#contact .piano {
  width: 100vw;
}
#contact .piano-top {
  margin-bottom: 70px;
}
@media (max-width: 500px) {
  #contact .piano-top {
    margin-bottom: 40px;
  }
}
#contact .piano-bottom {
  margin-top: 70px;
}
@media (max-width: 500px) {
  #contact .piano-bottom {
    margin-top: 40px;
  }
}
#contact .wrapper {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  #contact .wrapper {
    margin-top: 20px;
  }
}
#contact .text {
  line-height: 2;
  width: calc(100% - 200px);
}
@media (max-width: 500px) {
  #contact .text {
    flex: 1;
  }
}
#contact .text p {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  #contact .text p {
    font-size: clamp(1rem, 16px + 4 * (100vw - 500px) / 268, 1.25rem);
  }
}
@media (max-width: 500px) {
  #contact .text p {
    font-size: 0.875rem;
  }
}
#contact .text p:first-of-type {
  margin-bottom: 20px;
}
#contact .text .glowAnime span {
  opacity: 0;
}
#contact .text .glowAnime.glow span {
  -webkit-animation: glow_anime_on 1s ease-out forwards;
          animation: glow_anime_on 1s ease-out forwards;
}
@-webkit-keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
#contact .line-btn {
  width: 200px;
  position: relative;
}
@media (max-width: 500px) {
  #contact .line-btn {
    width: 120px;
  }
}
#contact .line-btn .click {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 100px;
  z-index: -1;
  -webkit-animation: click 15s linear infinite;
          animation: click 15s linear infinite;
}
@-webkit-keyframes click {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes click {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#contact .line-btn a {
  display: inline-block;
  height: 100%;
  width: 100%;
  position: relative;
}
#contact .line-btn a::before {
  position: absolute;
  top: -5px;
  left: 35px;
  content: "";
  background-color: var(--line-color);
  border-radius: 19px;
  width: 82%;
  height: 95%;
  z-index: -1;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  #contact .line-btn a::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
  }
}
#contact .line-btn a p {
  position: absolute;
  top: 45%;
  left: 34%;
  background-color: #fff;
  font-weight: bold;
  color: var(--line-color);
  transition: all 0.5s;
}
@media (max-width: 500px) {
  #contact .line-btn a p {
    font-size: 0.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#contact .line-btn a p .bi-line {
  position: absolute;
  top: -70%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 8rem;
  z-index: -1;
  line-height: 0;
}
@media (max-width: 500px) {
  #contact .line-btn a p .bi-line {
    font-size: 4rem;
  }
}
#contact .line-btn a:hover::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#contact .line-btn a:hover p {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#instructors .title-bg {
  background-image: url(../img/instructor-bg.jpg);
}
#instructors .wrapper {
  max-width: 1220px;
  margin-inline: auto;
}
#instructors .wrapper.parent {
  margin-bottom: 80px;
}
#instructors .wrapper.parent .parent-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 40px;
}
#instructors .wrapper.parent .parent-list .active {
  font-size: 1.5rem;
  position: relative;
}
#instructors .wrapper.parent .parent-list .active::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--accent-color);
  width: 100%;
  height: 30px;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
  transition: all 0.5s;
}
#instructors .wrapper.child {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 40px;
  margin-bottom: 160px;
}
#instructors .wrapper.child .left {
  position: -webkit-sticky;
  position: sticky;
  width: 40%;
  top: 20vh;
  left: 0;
}
@media (max-width: 500px) {
  #instructors .wrapper.child .left {
    width: 30%;
  }
}
#instructors .wrapper.child .left .term-list {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  line-height: 1;
}
@media (max-width: 500px) {
  #instructors .wrapper.child .left .term-list {
    flex-direction: column;
    align-items: center;
  }
}
#instructors .wrapper.child .left .term-list .active {
  font-size: 1.5rem;
  position: relative;
}
@media (max-width: 500px) {
  #instructors .wrapper.child .left .term-list .active {
    font-size: 1.25rem;
  }
}
#instructors .wrapper.child .left .term-list .active::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--accent-color);
  width: 100%;
  height: 30px;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
  transition: all 0.5s;
}
#instructors .wrapper.child .left .silhouette {
  max-width: 500px;
  margin-inline: auto;
  margin-top: 40px;
}
@media (max-width: 500px) {
  #instructors .wrapper.child .left .silhouette {
    margin-top: 20px;
  }
}
#instructors .wrapper.child .right {
  width: 60%;
}
@media (max-width: 500px) {
  #instructors .wrapper.child .right {
    width: 70%;
  }
}
#instructors .portrait {
  max-width: 300px;
  margin-inline: auto;
  margin-bottom: 24px;
}
#instructors .portrait img {
  aspect-ratio: 1/1;
  border-radius: 25px;
}
#instructors .right li:not(:first-of-type) {
  border-top: 1px dashed var(--text-color);
  padding-top: 40px;
  margin-top: 40px;
}
#instructors .right h3 {
  font-size: 1.5rem;
  font-weight: normal;
  display: inline-block;
  border-bottom: 7px dotted var(--accent-color);
}
@media (max-width: 768px) {
  #instructors .right h3 {
    display: flex;
    flex-direction: column;
  }
}
#instructors .right h3 span {
  font-size: 1rem;
  padding-left: 24px;
}
@media (max-width: 768px) {
  #instructors .right h3 span {
    padding-left: initial;
  }
}
#instructors .right .text {
  text-align: left;
}
#instructors .right .flex {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  flex-direction: column;
  gap: initial;
}
#instructors .right dt {
  width: 100%;
}
#instructors .right dd {
  width: 100%;
}
#instructors .right dd:first-of-type {
  margin-bottom: 24px;
}
#instructors dt {
  font-weight: bold;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 10px;
}
#instructors p {
  margin-bottom: 24px;
}
#instructors .no {
  margin-top: 80px;
}

.instrument-archive article {
  overflow: initial;
}

#plans .title-bg {
  background-image: url(../img/plan-bg.jpg);
}
#plans .plans.wrapper {
  max-width: 770px;
  margin-inline: auto;
}
#plans .plans-list {
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media (max-width: 768px) {
  #plans .plans-list {
    gap: clamp(20px, 20px + 60 * (100vw - 500px) / 268, 80px);
  }
}
#plans .plans-list li {
  width: 50%;
  border: 1px solid var(--plans-color);
  border-radius: 16px;
  box-shadow: 0px 4px 12px var(--shadow-color);
  padding: 40px;
}
@media (max-width: 768px) {
  #plans .plans-list li {
    padding: clamp(20px, 20px + 20 * (100vw - 500px) / 268, 40px);
  }
}
@media (max-width: 500px) {
  #plans .plans-list li {
    padding: 30px 10px;
  }
}
#plans .plans-list li:nth-child(2) {
  position: relative;
}
#plans .plans-list dl {
  display: flex;
  align-items: flex-end;
  margin-inline: auto;
}
#plans .plans-list dl:not(:first-of-type) {
  margin-top: 16px;
}
#plans .plans-list dt,
#plans .plans-list dd {
  border-bottom: 1px solid var(--text-color);
}
#plans .plans-list dt {
  font-size: 1.25rem;
  width: 25%;
  text-align: left;
  padding-left: 8px;
}
@media (max-width: 500px) {
  #plans .plans-list dt {
    font-size: 1rem;
    padding-left: initial;
  }
}
#plans .plans-list dd {
  width: 80%;
  text-align: right;
  padding-right: 8px;
}
@media (max-width: 500px) {
  #plans .plans-list dd {
    font-size: 1rem;
    padding-right: initial;
  }
}
#plans .plans-list dd span {
  font-size: 2rem;
}
@media (max-width: 500px) {
  #plans .plans-list dd span {
    font-size: 1.5rem;
  }
}
#plans .plans-list .recommend {
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--background-color);
  top: -12px;
  right: -12px;
  transform: rotate(15deg);
}
@media (max-width: 500px) {
  #plans .plans-list .recommend {
    font-size: 1.25rem;
  }
}
#plans .plans-list .recommend::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 140%;
  height: 140%;
  background-color: var(--accent-color);
  border-radius: 50%;
  filter: blur(5px);
}
#plans .plans-text {
  text-align: left;
  margin-top: 56px;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  #plans .plans-text {
    padding-inline: initial;
  }
}
#plans .contact-lead {
  max-width: 1000px;
  margin: 160px auto 145px;
}
#plans .contact-lead li {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  #plans .contact-lead li {
    font-size: clamp(1.25rem, 20px + 4 * (100vw - 500px) / 268, 1.5rem);
  }
}
#plans .contact-lead li:not(:first-of-type) {
  margin-top: 80px;
}
#plans .contact-lead li:nth-of-type(1), #plans .contact-lead li:nth-of-type(3) {
  text-align: left;
}
#plans .contact-lead li:nth-of-type(2), #plans .contact-lead li:nth-of-type(4) {
  text-align: right;
}
#plans .contact-lead li:nth-of-type(1), #plans .contact-lead li:nth-of-type(2) {
  position: relative;
}
#plans .contact-lead li:nth-of-type(1)::before, #plans .contact-lead li:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
}
#plans .contact-lead li:nth-of-type(1)::before {
  left: -30px;
  width: 130px;
  height: 130px;
  background-color: var(--accent-color);
}
#plans .contact-lead li:nth-of-type(2) {
  margin-right: 100px;
}
@media (max-width: 768px) {
  #plans .contact-lead li:nth-of-type(2) {
    margin-right: clamp(20px, 20px + 80 * (100vw - 500px) / 268, 100px);
  }
}
#plans .contact-lead li:nth-of-type(2)::before {
  right: -30px;
  width: 100px;
  height: 100px;
  background-color: var(--sub-color);
}
#plans .contact-lead li:nth-of-type(3), #plans .contact-lead li:nth-of-type(4) {
  position: relative;
}
#plans .contact-lead li:nth-of-type(3)::before, #plans .contact-lead li:nth-of-type(4)::before {
  content: "";
  position: absolute;
  top: -30px;
  z-index: -1;
  filter: blur(20px);
}
#plans .contact-lead li:nth-of-type(3) {
  margin-left: clamp(70px, 70px + 30 * (100vw - 768px) / 512, 100px);
}
@media (max-width: 768px) {
  #plans .contact-lead li:nth-of-type(3) {
    margin-left: clamp(20px, 20px + 30 * (100vw - 500px) / 268, 50px);
  }
}
#plans .contact-lead li:nth-of-type(3)::before {
  left: -30px;
  width: 200px;
  height: 200px;
  background-color: var(--sub-color);
  transform: rotate(30deg);
}
@media (max-width: 500px) {
  #plans .contact-lead li:nth-of-type(4) {
    margin-left: auto;
  }
}
#plans .contact-lead li:nth-of-type(4)::before {
  right: -30px;
  width: 160px;
  height: 160px;
  background-color: var(--accent-color);
  transform: rotate(-30deg);
}
@media (max-width: 768px) {
  #plans .contact-lead li:nth-of-type(4)::before {
    width: clamp(140px, 140px + 20 * (100vw - 500px) / 268, 160px);
    height: clamp(140px, 140px + 20 * (100vw - 500px) / 268, 160px);
  }
}
#plans .contact-lead li:nth-of-type(4) p {
  display: inline-block;
  text-align: left;
}
@media (max-width: 500px) {
  #plans .contact-lead li:nth-of-type(4) p .sp-text {
    margin-left: -20px;
  }
}
#plans .contact-lead li.fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease;
}

#studio .title-bg {
  background-image: url(../img/sample2.jpg);
  background-position: center;
}
#studio .wrapper {
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 80px;
}
#studio .wrapper p {
  text-align: right;
  font-size: 0.875rem;
}
#studio .wrapper a {
  position: relative;
}
#studio .wrapper a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--accent-color);
  width: 100%;
  height: 30px;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
  transition: all 0.5s;
  opacity: -1;
}
#studio .wrapper a:hover::before {
  opacity: 1;
}
#studio .wrapper .active {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}
@media (max-width: 500px) {
  #studio .wrapper .active {
    font-size: 1.25rem;
  }
}
#studio .wrapper .active::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: var(--accent-color);
  width: 100%;
  height: 30px;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
  transition: all 0.5s;
  opacity: 1;
}
#studio .city {
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 85px;
  height: 60px;
  left: 0;
  z-index: 2;
  padding-bottom: 16px;
}
@media (max-width: 500px) {
  #studio .city {
    top: 70px;
    gap: 20px;
    font-size: 0.875rem;
  }
}
#studio .city a {
  line-height: 1;
}
#studio .city:hover::before {
  opacity: 1;
}
#studio .flex {
  display: flex;
  gap: 80px;
  text-align: left;
  margin-top: 80px;
}
@media (max-width: 500px) {
  #studio .flex {
    margin-top: 40px;
    gap: 20px;
    flex-direction: column;
  }
}
#studio .flex .railway {
  width: 20%;
}
@media (max-width: 500px) {
  #studio .flex .railway {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    left: 0;
    background-color: #fff;
    padding-top: 20px;
  }
}
@media (max-width: 500px) {
  #studio .flex .railway li {
    font-size: 0.875rem;
  }
}
#studio .flex .railway li:not(:first-of-type) {
  margin-top: 24px;
}
@media (max-width: 500px) {
  #studio .flex .railway li:not(:first-of-type) {
    margin-top: initial;
  }
}
#studio .flex .route {
  width: 80%;
  border: 1px solid var(--text-color);
  padding: 16px 16px 40px;
  min-height: 500px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (max-width: 500px) {
  #studio .flex .route {
    width: 100%;
  }
}
#studio .flex .route-item:not(:first-of-type) {
  margin-top: 24px;
}
#studio .flex .station {
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: normal;
}
@media (max-width: 500px) {
  #studio .flex .station {
    font-size: 0.875rem;
  }
}
#studio .flex .station-item {
  margin-left: 16px;
}

.studio article {
  overflow-x: initial;
}

#privacy_policy .title-bg {
  background-image: url(../img/IMG_7465.jpeg);
  background-position: center;
}
#privacy_policy .wrapper {
  max-width: 1000px;
  margin-inline: auto;
  width: 100%;
}
#privacy_policy h2 {
  display: inline-block;
}
#privacy_policy .inner {
  text-align: left;
  position: relative;
  padding: 40px;
  margin-bottom: 100px;
}
#privacy_policy .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sub-color);
  border-radius: 20px;
  opacity: 0.3;
  z-index: -1;
}
#privacy_policy .inner .lead {
  margin-bottom: 80px;
}
#privacy_policy .inner h3 {
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 3px solid var(--sub-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#privacy_policy .inner h3:not(:first-of-type) {
  margin-top: 40px;
}
#privacy_policy .inner .content a {
  border-bottom: 1px solid var(--text-color);
}
#privacy_policy .inner .card {
  margin-top: 20px;
}
#privacy_policy .inner .supplement {
  margin-top: 40px;
}

#law .title-bg {
  background-image: url(../img/IMG_7465.jpeg);
  background-position: center;
}
#law .wrapper {
  max-width: 1000px;
  margin-inline: auto;
  width: 100%;
}
#law h2 {
  display: inline-block;
}
#law dl {
  text-align: left;
  position: relative;
  padding: 40px;
  margin-bottom: 100px;
}
#law dl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sub-color);
  border-radius: 20px;
  opacity: 0.3;
  z-index: -1;
}
#law dl dt {
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 3px solid var(--sub-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#law dl dt:not(:first-of-type) {
  margin-top: 40px;
}
/*# sourceMappingURL=main.css.map */