@charset "UTF-8";
/*----------------------------------
  base
----------------------------------*/
:root {
  --color01: #333333;
  --color02: #f2f6f8;
  --color03: #dad5c7;
  --color04: #91b5cc;
  --color05: #91b5cc;
  --thin: 100;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semiBold: 600;
  --bold: 700;
  --font1: "Zen Kaku Gothic New", sans-serif;
  --font2: "Poppins", sans-serif;
  --spacing: 0;
  --transition: all 0.5s ease;
  --opacity: 0.6;
}

body {
  color: var(--color01);
  font-family: var(--font1);
  letter-spacing: var(--spacing);
  overflow-x: hidden;
  padding-top: 86px;
}

main {
  box-sizing: border-box;
  font-size: 16px;
}

.container {
  overflow-x: hidden;
}

img {
  height: auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/*----------------------------------
  parts
----------------------------------*/
.content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
}

.section-title {
  font-size: 32px;
  font-weight: var(--bold);
  line-height: 1.43;
  letter-spacing: 0.01em;
}

.section-title span {
  color: var(--color05);
  display: block;
  font-family: var(--font2);
  font-size: 14px;
  font-weight: var(--regular);
}

.section-title__vertical {
  font-feature-settings: initial;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.section-title__vertical span {
  color: var(--color05);
  display: block;
  font-family: var(--font2);
  font-size: 14px;
  font-weight: var(--regular);
}

.section-text {
  font-weight: var(--medium);
  line-height: 2;
}

.text-color {
  color: var(--color05);
}

.grecaptcha-badge {
  visibility: hidden;
}

/*----------------------------------
  header
----------------------------------*/
header {
  background-color: #fff;
  height: 86px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}

.header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: 3.66%;
  height: 100%;
  width: 86.6%;
}

/* header-logo */
.header-logo {
  max-width: 310px;
  height: 100%;
  width: 26.227%;
}

.header-logo__link {
  background-image: url(../images/logo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  width: 100%;
  white-space: nowrap;
}

/*----------------------------------
  footer
----------------------------------*/
footer {
  background-color: var(--color02);
  border-radius: 100px 100px 0 0;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}

.footer-logo {
  max-width: 314px;
  height: 46px;
}

.footer-logo__link {
  background-image: url(../images/logo.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  width: 100%;
  white-space: nowrap;
}

.footer-address {
  font-weight: var(--medium);
  line-height: 2;
  margin-top: 16px;
}

.footer-info {
  font-weight: var(--medium);
  line-height: 2;
  margin-top: 16px;
}

.footer-info span {
  font-weight: var(--bold);
}

.footer-sns {
  display: flex;
  margin-top: 20px;
}

.footer-sns__icon {
  max-width: 32px;
  margin-right: 20px;
  width: 100%;
}

.footer-facility__logos {
  display: flex;
  margin-top: 30px;
}

.footer-facility__logo {
  max-width: 208px;
}

.footer-facility__logo img {
  border-radius: 10px;
}

.footer-copyright {
  margin-top: 40px;
}

.footer-copyright__text {
  font-weight: var(--medium);
  text-align: center;
}

/* sp */
@media not all and (min-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* base */
  body {
    padding-top: 50px;
  }

  main {
    font-size: 14px;
  }

  /* header */
  header {
    height: 50px;
  }

  .header {
    margin-left: auto;
    margin-right: auto;
    width: 86.666%;
  }

  /* header-logos */
  .header-logo {
    max-width: 210px;
    height: 100%;
    width: 100%;
  }

  /* parts */
  .content {
    padding-left: 0;
    padding-right: 0;
    width: 86.666%;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .section-title span {
    font-size: 12px;
  }

  .section-title__vertical span {
    font-size: 12px;
  }

  .section-text {
    line-height: 2;
    letter-spacing: 0;
  }

  /* footer */
  footer {
    border-radius: 50px 50px 0 0;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .footer-logo {
    max-width: 230px;
    height: 35px;
  }

  .footer-address {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 15px;
  }

  .footer-info {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 15px;
  }

  .footer-sns {
    margin-top: 16px;
  }

  .footer-sns__icon {
    max-width: 30px;
    margin-right: 15px;
  }

  .footer-facility__logo {
    max-width: 150px;
  }

  .footer-copyright {
    margin-top: 40px;
  }

  .footer-copyright__text {
    font-size: 14px;
  }
}
