:root {
  --dark-gray-color: #1E1C1C;
  --helvetica: "HelveticaLTPro-Bold", Helvetica, Arial, sans-serif;
  --en-font-family: "FuturaLTPro-Medium", "urw-din", Candara, Calibri, Arial, sans-serif;
  --page-width: calc(100vw - 60px);
}

html,
body {
  cursor: auto;
}

a {
  cursor: pointer;
}

.cursor {
  display: none;
}

main {
  position: relative;
  z-index: 1;
}

main::after {
  content: "";
  width: 10.8vw;
  height: var(--main-after-height);
  background: var(--dark-gray-color);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.one-container {
  width: var(--page-width);
  max-width: var(--max-page-width);
  margin: 0 auto;
  position: relative;
}

#about .one-container,
#what .one-container,
#content .one-container {
  padding-right: 7%;
}

.one-header {
  font-family: var(--en-font-family);
  font-size: clamp(3.5rem, 2.6042vw, 5rem);
  font-weight: 400;
  margin-bottom: 30px;
}

.one-header span {
  font-size: clamp(1.5rem, 1.3020833333333335vw, 2.5rem);
  font-family: var(--base-font-family);
  font-weight: 400;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .one-header span {
    display: block;
    margin: 3px 0 0;
  }
}

@media screen and (min-width: 769px) {
  main::after {
    width: 30vw;
  }

  .one-header {
    margin-bottom: 60px;
  }

  #about .one-container,
  #what .one-container,
  #content .one-container {
    padding-right: 15%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1060px) {

  #about .one-container,
  #what .one-container,
  #content .one-container {
    padding-right: 30%;
  }
}

@media screen and (min-width: 1061px) and (max-width: 1774px) {

  #about .one-container,
  #what .one-container,
  #content .one-container {
    padding-right: 25%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .one-container {
    max-width: var(--max-page-width);
    margin: 0 auto;
  }
}

@media screen and (min-width: 1441px) {
  .one-container {
    max-width: 1200px;
    margin: 0 auto;
  }
}


#kv {
  height: 144.13333333333333vw;
  background: no-repeat right top / 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNzUwIiBoZWlnaHQ9IjEwODEiIHZpZXdCb3g9IjAgMCA3NTAgMTA4MSI+PGRlZnM+PGNsaXBQYXRoIGlkPSJhIj48cmVjdCB3aWR0aD0iNzUwIiBoZWlnaHQ9IjEwODEiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzcwNzA3MCIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBkPSJNLTExNC40MzksNjk3LjU1NC05NC40LDgyLjcyMkMyNzUuMjA1LDQ2LjcxLDcxNC40ODEsMTIuOTcsOTEwLjAxNS05Ny44MTVzMjU0LjkzMi0yODMuODM3LDMyNi45NTctNTk4LjQ3NEgxODA2LjFWMzUyNi40aC0zNDVsLS4wNDEtMjgyOC44NVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC03OTIuMDg2IDM3OS4yODkpIiBmaWxsPSIjMWUxYzFjIi8+PC9nPjwvc3ZnPg==");
  position: relative;
}

.kv-text {
  color: var(--base-color);
  width: max-content;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}

.kv-logo {
  width: clamp(40px, 5.3333vw, 80px);
  padding: 30px 0 0 40px;
  box-sizing: content-box;
}

.kv-text img {
  width: 90vw;
}

.kv-text p {
  margin: 8vw auto 0;
  font-size: clamp(1.6rem, 1.0417vw, 2rem);
  line-height: 1.5;
  width: max-content;
}

.kv-text .btn {
  width: clamp(110px, 32.4vw, 200px);
  aspect-ratio: 3.3333;
  margin: 18vw auto 0;
  position: relative;
  z-index: 2;
}

.kv-text .btn a {
  font-size: clamp(1.5rem, 1.1458vw, 2.2rem);
  background: #000;
  color: var(--base-color);
  width: 100%;
  height: 100%;
  border: 2px solid var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.kv-text .btn::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--base-color);
  bottom: -3px;
  right: -3px;
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .kv-text {
    bottom: -4.86vw;
  }
}

@media screen and (min-width: 769px) and (orientation: portrait) {
  .kv-text {
    top: 48vw;
  }

  .kv-text .btn {
    margin: 60px auto 0;
  }
}

@media screen and (min-width: 769px) and (orientation: landscape) {
  #kv {
    height: 49.375vw;
    background: no-repeat right top / 88.85416666666667%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTcwNiIgaGVpZ2h0PSI5MzUiIHZpZXdCb3g9IjAgMCAxNzA2IDkzNSI+PGRlZnM+PGNsaXBQYXRoIGlkPSJhIj48cmVjdCB3aWR0aD0iMTcwNiIgaGVpZ2h0PSI5MzUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxNCkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzcwNzA3MCIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9jbGlwUGF0aD48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxNCkiIGNsaXAtcGF0aD0idXJsKCNhKSI+PHBhdGggZD0iTS0xMTQuNDM5LDU0MS45ODVsMTcuOC01NDYuMjA5YzMyOC4zNTItMzEuOTkzLDcxOC42LTYxLjk2Nyw4OTIuMzA5LTE2MC4zODdzMjI2LjQ3OS0yNTIuMTU4LDI5MC40NjUtNTMxLjY3N2g1MDUuNjA4VjU0MS45ODVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMjguMjUzIDM5My4yODkpIiBmaWxsPSIjMWUxYzFjIi8+PC9nPjwvc3ZnPg==");
  }

  .kv-logo {
    padding: 58px 0 0 76px;
  }

  .kv-text {
    top: 24vw;
  }

  .kv-text p {
    margin: min(5.9259svh, 64px) auto 0;
  }

  .kv-text img {
    width: 43.59375vw;
  }

  .kv-text .btn {
    margin: min(10.1852svh, 110px) auto 0;
  }

  .kv-text .btn::after {
    bottom: -5px;
    right: -5px;
  }
}


@media screen and (min-width: 769px) and (max-width: 900px) {
  #kv .kv-text .for-tab {
    display: block !important;
  }
}

#about p,
#what p {
  font-size: clamp(1.6rem, 1.5625vw, 3rem);
  line-height: 1.6;
  margin-bottom: 20px;
}

#about {
  padding-top: min(25vw, 90px);
}

#about .link {
  margin-left: auto;
  width: fit-content;
  padding-bottom: 15px;
  background: no-repeat left bottom / 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMTguODk2IiBoZWlnaHQ9IjQuNzI2IiB2aWV3Qm94PSIwIDAgMjE4Ljg5NiA0LjcyNiI+PHBhdGggZD0iTTEyOTQxLjQ3My01MzgzaC0yMTguNjZ2LTFoMjE2LjY2NWwtNS4zMTUtMi44NDQuNDcxLS44ODIsNy4wNzUsMy43ODVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTI3MjIuODEzIDUzODcuNzI2KSIgZmlsbD0iIzFlMWMxYyIvPjwvc3ZnPg==");
  position: relative;
}

#about img {
  width: clamp(120px, 12.7604vw, 245px);
}

#what {
  padding-top: 90px;
}

#what p {
  margin-bottom: 40px;
}

.movie-content {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 80px;
}

.movie-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {

  #what .what-img {
    width: var(--page-width);
  }

  #what .what-img img {
    max-width: 110%;
    margin-left: -5%;
  }

  .movie-content {
    width: 100vw;
    margin-left: -30px;
  }
}

@media screen and (min-width: 769px) {
  #about {
    padding-top: 115px;
  }

  #what {
    padding-top: 140px;
  }

  #about p,
  #what p {
    line-height: 2;
    margin-bottom: 40px;
  }

  #what p {
    margin-bottom: 80px;
  }
}

#content {
  padding-top: 75px;
  padding-bottom: 50px;
}

#content .content-grid-item .index {
  font-size: clamp(3.2rem, 4.2667vw, 5.5rem);
  font-family: var(--en-font-family);
  font-weight: 400;
  margin-bottom: 10px;
}

#content .content-grid-item .headline {
  margin-bottom: 15px;
}

#content .content-grid-item h3 {
  font-size: clamp(3rem, 2.6042vw, 5rem);
  font-weight: 400;
}

#content .content-grid-item .content-text {
  font-size: clamp(1.6rem, 1.3021vw, 2.5rem);
  line-height: 2;
}

#content .content-grid-item .tag {
  font-size: clamp(1.5rem, 1.0417vw, 2rem);
  font-weight: 400;
  width: fit-content;
  border: 1px solid var(--dark-gray-color);
  padding: 5px 10px;
}

@media screen and (max-width: 768px) {
  #content .content-grid-item {
    padding-bottom: 25px;
    position: relative;
  }

  #content .content-grid-item:not(:first-child) {
    padding-top: 20px;
  }

  #content .content-grid-item:not(:last-child)::after {
    content: "";
    width: var(--page-width);
    height: 1px;
    background: var(--dark-gray-color);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  #content .content-grid-item .headline .tag {
    margin-left: auto;
  }
}

@media screen and (min-width: 769px) {
  #content {
    padding-top: 180px;
    padding-bottom: 110px;
  }

  #content .content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  #content .content-grid-item {
    display: flex;
    flex-direction: column;
  }

  #content .content-grid-item:nth-child(1),
  #content .content-grid-item:nth-child(2) {
    border-bottom: 1px solid var(--dark-gray-color);
    padding-bottom: 40px;
  }

  #content .content-grid-item:nth-child(3),
  #content .content-grid-item:nth-child(4) {
    padding-top: 40px;
  }

  #content .content-grid-item:nth-child(odd) {
    padding-left: 5px;
    padding-right: 40px;
    border-right: 1px solid var(--dark-gray-color);
  }

  #content .content-grid-item:nth-child(even) {
    padding-left: 40px;
    padding-right: 5px;
  }

  #content .content-grid-item .index {
    margin-bottom: 20px;
  }

  #content .content-grid-item .headline {
    margin-bottom: 30px;
  }

  #content .content-grid-item .tag {
    margin-top: auto;
  }

  #content .content-grid-item .content-text {
    margin-bottom: 50px;
  }
}

#plan,
#message {
  background: no-repeat center top / contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ0NCIgdmlld0JveD0iMCAwIDc1MCA0NDQiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHJlY3Qgd2lkdGg9Ijc1MCIgaGVpZ2h0PSI0NDQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgODk2MikiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzcwNzA3MCIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9jbGlwUGF0aD48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtODk2MikiIGNsaXAtcGF0aD0idXJsKCNhKSI+PHBhdGggZD0iTTkwLjg1Ny0zMzAuMjM2LDk2LjEyLTQ5MS43cTE0NS42LTE0LjE4NywyMDMuMDkyLTQ3LjQxM3Q4NS44NjYtMTU3LjE3Mkg1MzQuNTQzVjI0OS4wMjVoLTE4Ni44bC01LjI2My01NzkuMjYxWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTMwLjg3OCA5NDk2LjU0Mykgcm90YXRlKC05MCkiIGZpbGw9IiMxZTFjMWMiLz48L2c+PC9zdmc+");
}

#plan .one-header,
#message .one-header {
  color: var(--base-color);
}

#plan {
  padding: 25px 0 72px;
}

#plan .plan-list {
  gap: 30px;
}

#plan .plan-list-item {
  width: 350px;
  background: #FFF;
  padding: 13% 3%;
  border: 3px solid var(--dark-gray-color);
  border-radius: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#plan .plan-list-item h3 {
  font-size: clamp(2rem, 1.5625vw, 3rem);
  font-family: var(--helvetica);
  font-weight: 700;
  margin-bottom: 15px;
}

#plan .plan-list-item .price {
  font-size: clamp(4.4rem, 3.5417vw, 6.8rem);
  font-family: var(--helvetica);
  font-weight: 700;
  letter-spacing: -0.1em;
  margin-bottom: 24px;
}

#plan .plan-list-item .price span {
  font-size: clamp(1.4rem, 1.0417vw, 2rem);
  letter-spacing: 0;
}

#plan .plan-list-item ul {
  margin-bottom: 40px;
  margin-left: 20px;
  list-style: disc;
}

#plan .plan-list-item ul li {
  font-size: clamp(1.6rem, 1.0417vw, 2rem);
  font-weight: 700;
}

#plan .plan-list-item ul li:not(:last-child) {
  margin-bottom: 10px;
}

#plan .plan-list-item a {
  font-size: clamp(1.6rem, 1.1458vw, 2rem);
  font-weight: 700;
  width: 160px;
  height: 64px;
  border-radius: 32px;
  background: #C4C4C4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

#plan .memo {
  font-size: clamp(1.5rem, 0.9375vw, 1.8rem);
  text-align: center;
  line-height: 1.6;
  margin-top: 80px;
}

#plan .link a,
#faq .link a {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  width: clamp(200px, 26.6667vw, 260px);
  aspect-ratio: 3.4483;
  background: var(--dark-gray-color);
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 60px auto 0;
}

@media screen and (max-width: 768px) {
  #plan .plan-list {
    width: 100vw;
    margin-left: -30px;
  }

  #plan .plan-list-item {
    height: auto;
  }

  .swiper {
    overflow: visible;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -30px;
  }

  .swiper-pagination-bullet-active {
    background: var(--dark-gray-color);
  }
}

@media screen and (min-width: 769px) {
  #plan {
    padding: 9.4vw 0 110px;
  }

  #plan,
  #message {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDAzIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDAzIj48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxyZWN0IHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjEwMDMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgNTQ3NikiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzcwNzA3MCIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9jbGlwUGF0aD48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtNTQ3NikiIGNsaXAtcGF0aD0idXJsKCNhKSI+PHBhdGggZD0iTTkwLjg1NywxMzAuODMybDExLjg5Mi0zNjQuODQ4cTMyOC45OS0zMi4wNTYsNDU4LjktMTA3LjEzM3QxOTQuMDItMzU1LjE0MUgxMDkzLjR2MjEzNkg2NzEuMzEyTDY1OS40MiwxMzAuODMyWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDgwLjI4OSA2NTY5LjM5Nikgcm90YXRlKC05MCkiIGZpbGw9IiMxZTFjMWMiLz48L2c+PC9zdmc+");
  }

  #plan .plan-list-item {
    padding: 6.6% 3%;
  }

  #plan .plan-list-item h3 {
    margin-bottom: 30px;
  }
}

#message {
  padding-top: 25px;
}

#message .message-text {
  margin-left: auto;
  margin-top: min(14.5833vw, 280px);
}

#message .message-text h3 {
  font-size: clamp(2.4rem, 2.34375vw, 4.5rem);
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

#message .message-text p {
  font-size: clamp(1.6rem, 1.3021vw, 3rem);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {

  #message .message-text h3::before,
  #message .message-text p::after {
    content: "";
    width: calc(100% + 10px);
    height: 100%;
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--base-color);
    z-index: -1;
  }
}

@media screen and (min-width: 769px) {
  #message {
    padding-top: 9.4vw;
  }

  #message .message-text {
    width: 70%;
  }

  #message .message-text h3 {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  #message .message-text {
    width: 65%;
  }
}

#profile {
  padding-top: 60px;
}

#profile .profile-text {
  font-size: clamp(1.6rem, 1.3021vw, 2.5rem);
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #profile .profile-content .profile-img {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 769px) {
  #profile {
    padding-top: 120px;
  }

  #profile .profile-content {
    gap: 40px;
  }

  #profile .profile-content .profile-img {
    width: 42%;
  }

  #profile .profile-content p {
    width: calc(58% - 40px);
  }
}

#application {
  padding-top: 60px;
}

#application .application-content dl {
  display: flex;
  align-items: flex-start;
  gap: min(16px, 5%);
  position: relative;
}

#application .application-content dl:not(:last-child) {
  padding-bottom: 20px;
}

#application .application-content dl:not(:last-child)::before {
  content: "";
  height: 100%;
  width: 5px;
  background: no-repeat center bottom / cover;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1LjQzMyIgaGVpZ2h0PSIyNDcuOTI1IiB2aWV3Qm94PSIwIDAgNS40MzMgMjQ3LjkyNSI+PHBhdGggZD0iTTExODg4LjUsMTM2MC4yNDFsLTUuNDMzLTYuNjE3Ljc3My0uNjM1LDMuNjU5LDQuNDU3VjExMTIuMzE2aDFaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTE4ODMuMDY3IC0xMTEyLjMxNikiIGZpbGw9IiMxZTFjMWMiLz48L3N2Zz4=");
  position: absolute;
  top: 0;
  left: 9px;
  z-index: -1;
}

#application .application-content dl dt {
  color: var(--base-color);
  font-size: clamp(2rem, 2.0833vw, 4rem);
  width: 4.35%;
  min-width: 26px;
  aspect-ratio: 1;
  background-color: var(--dark-gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

#application .application-content dl dd h3 {
  font-size: clamp(1.75rem, 1.82292vw, 3.5rem);
  font-weight: 700;
  margin: 1% 0 2.5%;
}

#application .application-content dl dd p {
  font-size: clamp(1.5rem, 1.3021vw, 2.5rem);
  line-height: 1.8;
}

@media screen and (max-width: 768px) {}

@media screen and (min-width: 769px) {
  #application {
    padding-top: 220px;
  }

  #application .application-content dl:not(:last-child) {
    padding-bottom: 40px;
  }

  #application .application-content dl:not(:last-child)::before {
    left: 2%;
  }
}

#faq {
  padding-top: 75px;
}

#faq .faq-content dl {
  margin-bottom: 40px;
}

#faq .faq-content dl dt {
  font-size: clamp(1.6rem, 1.5625vw, 3rem);
  line-height: 1.3;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--dark-gray-color);
  cursor: pointer;
  padding-bottom: 10px;
}

#faq .faq-content dl dt::before {
  content: "Q";
  color: var(--base-color);
  font-size: clamp(2.7rem, 2.08333vw, 4rem);
  line-height: 1;
  width: 43px;
  min-width: 43px;
  aspect-ratio: 1;
  background-color: var(--dark-gray-color);
  border: 1px solid var(--dark-gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

#faq .faq-content dl dt::after {
  content: "";
  display: inline-block;
  min-width: 8px;
  height: 7px;
  background: #000000;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin-left: auto;
  transition: all 0.3s ease;
}

#faq .faq-content dl dt.active::after {
  transform: rotate(-90deg);
}

#faq .faq-content dl dd {
  font-size: clamp(1.6rem, 1.5625vw, 3rem);
  line-height: 1.8;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 10px;
}

#faq .faq-content dl dd::before {
  content: "A";
  font-size: clamp(2.7rem, 2.08333vw, 4rem);
  line-height: 1;
  width: 43px;
  min-width: 43px;
  aspect-ratio: 1;
  border: 1px solid var(--dark-gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

#faq .faq-content dl dd a,
#application .application-content dl dd a {
  text-decoration: underline;
  overflow-wrap: break-word;
  word-break: break-all;
}

@media screen and (max-width: 768px) {}

@media screen and (min-width: 769px) {
  #faq {
    padding-top: 220px;
  }

  #faq .faq-content dl dt {
    gap: 20px;
  }

  #faq .faq-content dl dt::after {
    min-width: 16px;
    height: 14px;
    margin-right: 20px;
  }

}

footer {
  background: var(--dark-gray-color);
}

footer .d-flex {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

footer::before,
footer::after {
  content: none;
}

.footer__logo {
  margin: 0;
}

footer p {
  margin-bottom: 20px;
  text-align: right;
}

footer p a {
  color: var(--base-color);
}

.to_back_btn {
  margin-top: 40px;
}

.to_back_btn a {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  display: block;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {}

@media screen and (min-width: 769px) {
  .to_back_btn {
    margin-top: 80px;
  }
}