@charset "UTF-8";
/*
 * Theme Name: Theme Template
 * Description: 専用テーマ
 * Version: 1.0
 * Author: 株式会社ファイブスターコーポレーション
 */

/* Fonts */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  scroll-behavior: smooth;
}
html:lang(en) {
  font-family: "Libertinus Sans", sans-serif;
}
html:lang(ko) {
  font-family: "Noto Sans KR", sans-serif;
}
html:lang(zh-CN) {
  font-family: 'Noto Sans SC', sans-serif;
}
html:lang(zh-TW) {
  font-family: 'Noto Sans TC', sans-serif;
}

/* Variables */
:root {
  --font-size-10: 0.625rem;
  --font-size-11: 0.6875rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.8125rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-21: 1.3125rem;
  --font-size-22: 1.375rem;
  --font-size-24: 1.5rem;
  --font-size-25: 1.5625rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.6875rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-32: 2rem;
  --font-size-34: 2.125rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;

  --padding-horizontal: min(5.13%, 40px);
  --gap: 30;
}

/* Reset */
*,*::before,*::after{
	box-sizing:border-box;
}

body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,ul,ol,dl,dd,input,textarea{
	margin:0;
}

ul,ol {
  margin-left: 1em;
  padding: 0;
}

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

picture, img{
  display:inline-block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

button {
  appearance: none;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

ul ul {
  list-style: disc;
}

ul.no-list-style {
  list-style: none;
}

.no-list-style > li {
  display: grid;
}

.no-list-style > li::before {
  content: "\200B";
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

iframe {
  display: block;
  border: none;
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details .content {
  overflow: hidden;
}

body {
  line-height: 1.5;
  overflow-y: scroll;
}

body.no-scroll {
  position: fixed;
  left: 0;
  width: 100%;
}

/* Components */
.link-wrap {
  display: grid;
  gap: 10px 20px;
  place-content: center;
}

.link-button {
  position: relative;
  min-width: 220px;
  padding: 16px;
  border-radius: 100px;
  font-size: var(--font-size-15);
  text-align: center;
}

.link-button i {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  display: grid;
  place-content: center;
  font-size: var(--font-size-12);
}

.link-button.bg-main-color {
  background-color: var(--main-color);
  color: #fff;
}

.link-button.bg-sub-color {
  background-color: var(--sub-color);
  color: #fff;
}

section {
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
}

section h2 {
  font-size: var(--font-size-30);
  font-weight: 700;
  text-align: center;
}

p > a {
  text-decoration: underline;
}

/* Header */
header {
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
}
@media (width >= 960px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
  }
  .header-nav {
    flex-shrink: 0;
    border-radius: 100px;
    overflow: hidden;
  }
}
@media (width >= 1280px) {
  header {
    padding-right: 70px;
  }
}

.header-logo {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: 220px;
  height: 80px;
}

.header-logo img{
  background-color: #fff;
}

.header-menu-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100dvh;
  padding-top: calc(120px - 15px);
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
  background-color: #fff;
  font-size: var(--font-size-15);
  translate: 0 0;
  opacity: 1;
}
@media (width < 960px) {
  .header-menu-wrap {
    transition: opacity 0.4s ease-in, translate 0.3s ease-out;
  }
}
@media (width >= 960px) {
  .header-menu-wrap {
    position: static;
    height: 100%;
    padding: 20px 40px;
  }
  .header-menu {
    display: flex;
    gap: 24px;
  }
}

.header-menu-wrap[inert] {
  translate: -100% 0;
  opacity: 0;
}

@media (width < 960px) {
  .header-menu li {
    border-bottom: 1px solid #cccccc;
  }
  .header-menu a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
@media (width >= 960px) {
  .header-sns {
    display: none;
  }
}

.header-sns li {
  flex: 0 0 48px;
}

.header-toggle-button {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #fff;
}
@media (width >= 960px) {
  .header-toggle-button {
    display: none;
  }
}

.header-toggle-button span {
  position: absolute;
  inset: 0;
  width: 30px;
  height: 2px;
  margin: auto;
  background-color: #000;
  transition: transform 0.3s ease;
  transform: translate(0, 0) rotate(0deg);
}

.header-toggle-button span:nth-of-type(1) {
  --translateY: -6px;
  --rotate: 30deg;
}
.header-toggle-button span:nth-of-type(3) {
  --translateY: 6px;
  --rotate: -30deg;
}

.header-toggle-button[aria-expanded="false"] span:nth-of-type(1),
.header-toggle-button[aria-expanded="false"] span:nth-of-type(3) {
  transform: translate(0, var(--translateY)) rotate(0deg);
}

.header-toggle-button[aria-expanded="true"] span {
  opacity: 0;
}

.header-toggle-button[aria-expanded="true"] span:nth-of-type(1),
.header-toggle-button[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 1;
  transform: translate(0, 0) rotate(var(--rotate));
}

/* Footer */
footer {
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, -40px + 12.5vw, 80px);
  background-color: var(--footer-color);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 20px;
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
}
@media (width >= 960px) {
  .footer-inner {
    display: grid;
    place-items: start;
    grid-template-columns: 298px 1fr;
    gap: 32px;
  }
  .footer-gmap {
    grid-column-start: 2;
    grid-row: 1/span 4;
  }
  footer .link-wrap {
    justify-self: center;
  }
}

.footer-logo {
  max-width: 298px;
}

footer address {
  display: grid;
  gap: 5px;
  font-size: var(--font-size-13);
}

.footer-address {
  width: 100%;
}

.footer-gmap {
  justify-self: stretch;
  aspect-ratio: 350/268;
  margin-bottom: 40px;
}
@media (width >= 960px) {
  .footer-gmap {
    aspect-ratio: 518/384;
    margin-bottom: 0;
  }
}

.footer-gmap iframe {
  width: 100%;
  height: 100%;
}

.to-top {
  position: fixed;
  bottom: calc(var(--bottom, var(--gap)) + env(safe-area-inset-bottom));
  right: 20px;
  display: grid;
  place-content: center;
  place-items: center;
  aspect-ratio: 1;
  width: 3.69em;
  height: 3.69em;
  margin-left: auto;
  padding: 12px 0;
  border-radius: 100em;
  background-color: var(--accent-color);
  color: #fff;
  font-size: var(--font-size-13);
  will-change: bottom;
}
@media (width >= 960px) {
  .to-top {
    gap: 10px;
    width: 4.7em;
    height: 4.7em;
    font-size: var(--font-size-20);
  }
}

.to-top i {
  font-size: var(--font-size-12);
}

.copyright {
  margin-top: 105px;
  padding: 20px;
  background-color: #6d8192;
  color: #fff;
  font-size: var(--font-size-12);
  text-align: center;
}
@media (width >= 960px) {
  .copyright {
    margin-top: 155px;
  }
}

/* MV */
.section-mv {
  position: relative;
}

.section-mv h1 {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--text-color);
  font-size: clamp(1.875rem, 1.125rem + 1.875vw, 2.25rem);
  font-weight: 700;
  text-align: center;
}


.mv-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About us */
.section-info {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(40px, -40px + 12.5vw, 80px);;
  padding-bottom: clamp(40px, -40px + 12.5vw, 80px);;
}

.section-info .lead-text {
  margin-top: 25px;
}
@media (width >= 640px) {
  .section-info .lead-text {
    text-align: center;
  }
}

.info-wrap {
  margin-top: 50px;
}
@media (width >= 960px) {
  .info-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }
  .info-image {
    grid-row: span 2;
  }
}

.info-list {
  display: grid;
  padding: 20px;
  font-size: var(--font-size-15);
}
@media (width >= 960px) {
  .info-list {
    display: grid;
    grid-template-columns: 168px 1fr;
  }
}

.info-list dt {
  padding-top: 10px;
}
@media (width >= 960px) {
  .info-list dt {
    padding-bottom: 10px;
    border-bottom: 1px solid #cccccc;
  }
}
@media (width < 960px) {
  .info-list dt:first-of-type {
    padding-top: 0;
  }
}

.info-list dd {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}

.info-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 0;
}

.info-sns li {
  flex: 0 0 42px;
}

.section-info .link-wrap {
  margin-top: 20px;
  padding-bottom: 20px;
}
@media (width >= 960px) {
  .section-info .link-wrap {
    grid-column: 2/3;
    grid-template-columns: 1fr auto auto 1fr;
  }
  .section-info .link-button:nth-of-type(1) {
    grid-column-start: 2;
  }
  .section-info .link-button:nth-of-type(2) {
    grid-column-start: 3;
  }
}

.photo-slider img {
  width: auto;
  height: 100%;
}

/* Plan */
.section-plan {
  padding-top: clamp(40px, -40px + 12.5vw, 80px);
  padding-right: 0;
  padding-left: 0;
}

.plan-container:nth-of-type(odd) {
  background-color: var(--plan-bg-color);
}

.plan-inner {
  max-width: 1026px;
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(20px, -60px + 12.5vw, 60px);
  padding-bottom: clamp(40px, -40px + 12.5vw, 80px);
}

@media (width >= 960px) {
  .plan-info {
    display: grid;
    grid-template-columns: 1fr 368px;
    gap: 72px;
  }
  .plan-container:nth-of-type(even) .plan-info {
    grid-template-columns: 368px 1fr;
  }
  .plan-container:nth-of-type(even) .plan-image {
    grid-column-start: 1;
    grid-row-start: 1;
  }
}

.plan-wrap {
  display: grid;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (width >= 960px) {
  .plan-wrap {
    padding-top: 30px;
  }
}

.section-plan h2 {
  text-align: left;
}

.plan-image {
  margin-top: 20px;
}

.plan-details {
  margin-top: 10px;
}

summary {
  font-size: var(--font-size-18);
  font-weight: 700;
}

.plan-details > summary {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #7a7676;
  font-weight: 700;
}

.plan-details > summary .fa-clipboard-list {
  font-size: var(--font-size-20);
}

summary .fa-chevron-down {
  margin-left: auto;
  font-size: var(--font-size-15);
}

.plan-details .content-inner {
  display: grid;
  gap: 40px;
  padding-top: 35px;
}

.plan-list {
  border-top: 1px solid var(--plan-border-color);
}
@media (width >= 640px) {
  .plan-list {
    display: grid;
    grid-template-columns: 167px 1fr;
  }
}

.plan-list :where(dt,dd) {
  padding: 10px;
}

.plan-list dt {
  background-color: #fff;
}
@media (width >= 640px) {
  .plan-list dt {
    border-bottom: 1px solid var(--plan-border-color);
  }
}

.plan-list dd {
  border-bottom: 1px solid var(--plan-border-color);
  background-color: var(--plan-bg-color);
}

.plan-attention {
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid #707070;
  background-color: #fff;
  font-size: var(--font-size-15);
}

.plan-attention h3 {
  margin-bottom: 20px;
  font-size: var(--font-size-20);
  font-weight: 700;
}

@media (width >= 640px) {
  .section-plan .link-wrap {
    grid-template-columns: 1fr auto auto 1fr;
  }
  .section-plan .link-button:nth-of-type(1) {
    grid-column-start: 2;
  }
  .section-plan .link-button:nth-of-type(2) {
    grid-column-start: 3;
  }
}

.plan-faq {
  padding-top: 10px;
}

.plan-faq h3 {
  margin-bottom: 10px;
  font-size: var(--font-size-24);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #7a7676;
}

.faq-label {
  display: grid;
  place-content: center;
  flex: 0 0 30px;
  height: 30px;
  border: 1px solid var(--main-color);
  border-radius: 100em;
  font-size: 16px;
}
@media (width >= 960px) {
  .faq-label {
    flex-basis: 36px;
    height: 36px;
  }
}

.faq-label.label-q {
  background-color: var(--main-color);
  color: #fff;
  font-size: 12px;
}
@media (width >= 960px) {
  .faq-label.label-q {
    font-size: 14px;
  }
}

.faq-label.label-a {
  background-color: #fff;
  color: var(--main-color);
}

.faq-summary,
.faq-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-summary {
  padding-top: 30px;
  padding-bottom: 30px;
}

.faq-summary .fa-chevron-down {
  margin-top: 4px;
}

.faq-inner {
  padding-bottom: 30px;
  font-size: var(--font-size-15);
}

.section-faq {
  padding: clamp(60px, -20px + 12.5vw, 100px); var(--padding-horizontal) clamp(50px, -50px + 15.625vw, 100px);;
}

.section-faq-inner {
  display: grid;
  max-width: 1026px;
  margin-right: auto;
  margin-left: auto;
}

.faq-lead {
  margin-top: 25px;
  margin-bottom: 40px;
  font-size: var(--font-size-15);
  text-align: center;
}