@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
  line-height: 1.875;
  scroll-padding-top: 100px;
}

body {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.875;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media only screen and (max-width: 1023px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.71428571;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.l-container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 1023px) {
  .l-container {
    padding: 0 20px;
  }
}

.c-ttl {
  text-align: center;
  color: #5AB255;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  position: relative;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1023px) {
  .c-ttl {
    font-size: 34px;
    margin-bottom: 44px;
    letter-spacing: 0.08em;
  }
}
@media only screen and (max-width: 767px) {
  .c-ttl {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.c-ttl::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #5AB255;
  content: "";
  display: block;
}
@media only screen and (max-width: 1023px) {
  .c-ttl::after {
    width: 35px;
    bottom: -8px;
  }
}
@media only screen and (max-width: 767px) {
  .c-ttl::after {
    bottom: -10px;
  }
}

.l-header {
  background-color: #fff;
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 40px;
}
@media only screen and (max-width: 1023px) {
  .l-header {
    padding: 10px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header {
    height: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 5px 10px 10px 10px;
  }
}
.l-header .burger-btn {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .l-header .burger-btn {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    display: contents;
  }
}
.l-header__logo p {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 2.5;
  font-weight: 400;
  color: #666666;
}
@media only screen and (max-width: 1023px) {
  .l-header__logo p {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__logo p {
    line-height: 1;
    font-size: 10px;
  }
}
.l-header__logo h1 {
  font-size: 30px;
  line-height: 1;
  width: 250px;
}
@media only screen and (max-width: 1023px) {
  .l-header__logo h1 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__logo h1 {
    font-size: 22px;
    text-align: left;
    line-height: 1.36363636;
    width: 180px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    z-index: 9999;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 20px 35px 40px;
    background-color: #F7F9E7;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__nav {
    top: 70px;
  }
}
.l-header__nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1023px) {
  .l-header__nav__list {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-header__nav__list li {
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .l-header__nav__list li {
    width: 100%;
  }
}
.l-header__nav__list li a {
  color: #333333;
}
@media only screen and (max-width: 1023px) {
  .l-header__nav__list li a {
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 50px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
  }
}
.l-header__nav__list li:not(:last-of-type)::after {
  content: "｜";
  margin: 0 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #5AB255;
}
@media only screen and (max-width: 1023px) {
  .l-header__nav__list li:not(:last-of-type)::after {
    display: none;
  }
}

.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.8);
  z-index: 9998;
  cursor: pointer;
}

#main {
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  #main {
    margin-top: 70px;
  }
}

.l-mv {
  position: relative;
}
.l-mv__message {
  position: absolute;
  top: 50px;
  right: 164px;
  max-width: 450px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .l-mv__message {
    max-width: 400px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .l-mv__message {
    max-width: 302px;
    right: auto;
    left: 50%;
    top: 35px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.l-mv__teaser {
  width: 100%;
  max-width: 378px;
  left: 22px;
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(40%);
          transform: translateY(40%);
}
@media only screen and (max-width: 1023px) {
  .l-mv__teaser {
    max-width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .l-mv__teaser {
    max-width: 301px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(50%);
            transform: translateX(-50%) translateY(50%);
  }
}

section .l-container {
  position: relative;
}
section .en {
  position: absolute;
  width: 98px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 1023px) {
  section .en {
    width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  section .en {
    width: 65px;
  }
}

.p-about {
  margin-top: 130px;
  padding: 60px 0 80px 0;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .p-about {
    margin-top: 120px;
    padding: 50px 0 70px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about {
    margin-top: 128px;
    padding: 40px 0;
  }
}
.p-about::before {
  position: absolute;
  background-color: #F7F9E7;
  top: 0;
  left: 100px;
  width: calc(100% - 100px);
  height: 100%;
  content: "";
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-about::before {
    width: calc(100% - 15px);
    left: 15px;
  }
}
.p-about .l-container {
  max-width: 1166px;
  position: static;
}
@media only screen and (max-width: 1023px) {
  .p-about .l-container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about .l-container {
    padding: 0 35px;
  }
}
.p-about .en {
  left: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media only screen and (max-width: 767px) {
  .p-about .en {
    top: 0;
    left: 0;
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}
.p-about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 1023px) {
  .p-about__list {
    gap: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-about__list li:nth-of-type(2) {
  margin-top: 70px;
}
@media only screen and (max-width: 1023px) {
  .p-about__list li:nth-of-type(2) {
    margin-top: 50px;
  }
}
.p-about__list li .img {
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .p-about__list li .img {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list li .img {
    margin-bottom: 15px;
  }
}
.p-about__list li .img .num {
  position: absolute;
  width: 80px;
  left: 0;
  top: 0;
  display: block;
}
@media only screen and (max-width: 1023px) {
  .p-about__list li .img .num {
    width: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list li .img .num {
    width: 60px;
  }
}
.p-about__list li h3 {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  line-height: 1.66666667;
  color: #5AB255;
}
@media only screen and (max-width: 1023px) {
  .p-about__list li h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list li h3 {
    font-size: 20px;
    line-height: 1.75;
  }
}
.p-about__list li p {
  margin-top: 20px;
}
@media only screen and (max-width: 1023px) {
  .p-about__list li p {
    margin-top: 18px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about__list li p {
    margin-top: 15px;
  }
}

.p-message {
  padding: 80px 0;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .p-message {
    padding: 60px 0;
  }
}
.p-message .en {
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media only screen and (max-width: 767px) {
  .p-message .en {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
}
.p-message__wrap {
  max-width: 830px;
  margin: 0 auto;
}
.p-message__name {
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
  margin-top: 40px;
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  .p-message__name {
    margin-top: 20px;
  }
}
.p-message .position {
  display: block;
  font-size: 14px;
  color: #5AB255;
  line-height: 2.14285714;
}
.p-message .name {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  .p-message .name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .p-message .name {
    font-size: 18px;
  }
}
.p-message .romaji {
  display: inline-block;
  font-size: 14px;
  color: #666666;
  margin-left: 15px;
  font-weight: 400;
}
@media only screen and (max-width: 1023px) {
  .p-message .romaji {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .p-message .romaji {
    font-size: 12px;
  }
}
.p-message__career {
  background-color: #F3F8E5;
  padding: 50px 70px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1023px) {
  .p-message__career {
    padding: 40px 15px;
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .p-message__career {
    margin-top: 40px;
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }
}
.p-message__career .wrap {
  padding: 0 30px;
}
@media only screen and (max-width: 1023px) {
  .p-message__career .wrap {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .p-message__career .wrap {
    padding: 0;
  }
}
.p-message__career .wrap:not(:last-of-type) {
  border-right: 1px solid #E3D8B5;
}
@media only screen and (max-width: 1023px) {
  .p-message__career .wrap:not(:last-of-type):nth-of-type(2) {
    border-right: none;
  }
}
@media only screen and (max-width: 767px) {
  .p-message__career .wrap:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid #E3D8B5;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.p-message__career .wrap h3 {
  font-size: 18px;
  color: #5AB255;
  font-weight: bold;
}
.p-message__career .wrap ul,
.p-message__career .wrap dl {
  margin-top: 15px;
}
.p-message__career .wrap ul dt,
.p-message__career .wrap ul dd,
.p-message__career .wrap ul li,
.p-message__career .wrap dl dt,
.p-message__career .wrap dl dd,
.p-message__career .wrap dl li {
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p-message__career .wrap ul dt,
  .p-message__career .wrap ul dd,
  .p-message__career .wrap ul li,
  .p-message__career .wrap dl dt,
  .p-message__career .wrap dl dd,
  .p-message__career .wrap dl li {
    line-height: 1.57142857;
  }
}
.p-message__career .wrap ul dt:not(:last-of-type),
.p-message__career .wrap ul dd:not(:last-of-type),
.p-message__career .wrap ul li:not(:last-of-type),
.p-message__career .wrap dl dt:not(:last-of-type),
.p-message__career .wrap dl dd:not(:last-of-type),
.p-message__career .wrap dl li:not(:last-of-type) {
  margin-bottom: 10px;
}
.p-message__career .wrap dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-message__career .wrap dl {
    display: block;
  }
}
.p-message__career .wrap dl dt {
  width: 70px;
}
@media only screen and (max-width: 767px) {
  .p-message__career .wrap dl dt {
    width: 100%;
    margin-bottom: 3px !important;
  }
}
.p-message__career .wrap dl dd {
  width: calc(100% - 70px);
}
@media only screen and (max-width: 767px) {
  .p-message__career .wrap dl dd {
    width: 100%;
  }
}
.p-message__career .wrap ul li {
  position: relative;
  padding-left: 20px;
}
.p-message__career .wrap ul li::before {
  content: "●";
  color: #CDD971;
  position: absolute;
  left: 0;
}

.p-treatment {
  background-color: #F3F8E5;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1023px) {
  .p-treatment {
    padding-bottom: 70px;
  }
}
.p-treatment__image {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p-treatment__image img {
  width: 100%;
}
.p-treatment__box {
  background-color: #fff;
  padding: 50px 0 60px 0;
  margin-top: -200px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .p-treatment__box {
    padding: 45px 25px 55px;
    margin-top: -80px;
  }
}
@media only screen and (max-width: 767px) {
  .p-treatment__box {
    padding: 40px 20px 60px;
    margin-top: -160px;
  }
}
.p-treatment__box .en {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 1023px) {
  .p-treatment__box .en {
    -webkit-transform: translateX(-60px);
            transform: translateX(-60px);
  }
}
@media only screen and (max-width: 767px) {
  .p-treatment__box .en {
    -webkit-transform: translateX(-35px);
            transform: translateX(-35px);
    top: 0;
    left: 0;
  }
}
.p-treatment__wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}
.p-treatment .ttl {
  font-size: 24px;
  background: -webkit-gradient(linear, left top, right top, from(#F3F8E5), to(#ECFAC4));
  background: -webkit-linear-gradient(left, #F3F8E5 0%, #ECFAC4 100%);
  background: linear-gradient(90deg, #F3F8E5 0%, #ECFAC4 100%);
  padding: 8px 10px;
  line-height: 1.25;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  .p-treatment .ttl {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .p-treatment .ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-treatment .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
@media only screen and (max-width: 1023px) {
  .p-treatment .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .p-treatment .list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.p-treatment .list:not(:last-of-type) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1023px) {
  .p-treatment .list:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .p-treatment .list:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.p-treatment .list li {
  font-size: 18px;
  line-height: 1.66666667;
  border-bottom: 1px solid #D1D1D1;
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 1023px) {
  .p-treatment .list li {
    font-size: 17px;
    padding-left: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .p-treatment .list li {
    padding-left: 20px;
    font-size: 16px;
  }
}
.p-treatment .list li::before {
  content: "●";
  color: #CDD971;
  position: absolute;
  left: 0;
}

.p-access {
  padding: 80px 0;
  background: url(../img/bg_access.png) no-repeat center/cover;
}
@media only screen and (max-width: 1023px) {
  .p-access {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-access {
    background: url(../img/bg_access_sp.png) no-repeat center/cover;
  }
}
.p-access .l-container {
  max-width: 1465px;
}
.p-access .c-ttl {
  color: #fff;
}
.p-access .c-ttl::after {
  background-color: #fff;
}
.p-access__box {
  padding: 60px 50px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (max-width: 1023px) {
  .p-access__box {
    padding: 50px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .p-access__box {
    padding: 40px 20px;
  }
}
.p-access__box .txt-wrap {
  width: 30.18%;
}
@media only screen and (max-width: 1023px) {
  .p-access__box .txt-wrap {
    width: 100%;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-access__box .txt-wrap {
    width: 100%;
    margin-top: 30px;
  }
}
.p-access__box .txt-wrap h3 {
  font-size: 30px;
  line-height: 1;
  width: 250px;
}
@media only screen and (max-width: 1023px) {
  .p-access__box .txt-wrap h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .p-access__box .txt-wrap h3 {
    font-size: 24px;
    width: 230px;
  }
}
.p-access__box .txt-wrap h4 {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #5AB255;
  border-radius: 5px;
  padding: 5px 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .p-access__box .txt-wrap h4 {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-access__box .txt-wrap p {
  border-bottom: 1px solid #D1D1D1;
  padding-bottom: 20px;
}
.p-access__box .txt-wrap p:not(:last-of-type) {
  margin-bottom: 20px;
}
.p-access__box .map-wrap {
  width: 66.217228%;
  aspect-ratio: 442/245;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .p-access__box .map-wrap {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media only screen and (max-width: 767px) {
  .p-access__box .map-wrap {
    width: 100%;
    aspect-ratio: 305/229;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}
.p-access__box .map-wrap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-access__tableWrap {
  width: 100%;
  max-width: 1000px;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  .p-access__tableWrap {
    margin-top: 30px;
  }
}
.p-access__table {
  width: 100%;
  table-layout: fixed;
  text-align: center;
}
.p-access__table tr {
  border-bottom: 1px solid #E1EBCD;
}
.p-access__table th {
  background-color: #F7F9E7;
}
.p-access__table th:first-child {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .p-access__table th:first-child {
    width: 35%;
  }
}
.p-access__table td:not(:first-child) {
  color: #5AB255;
}
.p-access__table th,
.p-access__table td {
  font-size: 18px;
  padding: 17px;
  line-height: 1.66666667;
}
@media only screen and (max-width: 1023px) {
  .p-access__table th,
  .p-access__table td {
    font-size: 16px;
    padding: 14px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .p-access__table th,
  .p-access__table td {
    padding: 10px 0;
    font-size: 14px;
  }
}
.p-access__notice {
  color: #666666;
  font-size: 14px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .p-access__notice {
    margin-top: 5px;
    font-size: 12px;
  }
}

.p-recruit {
  padding: 60px 0;
}
@media only screen and (max-width: 1023px) {
  .p-recruit {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-recruit {
    padding: 40px 0;
  }
}
.p-recruit__banner {
  max-width: 830px;
  margin: 0 auto;
  display: block;
}
.p-recruit__banner img {
  display: block;
}

.l-footer {
  padding: 60px 0;
  background-color: #5AB255;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .l-footer {
    padding: 50px 0;
  }
}
.l-footer__logo {
  font-size: 30px;
  line-height: 1;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .l-footer__logo {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__logo {
    font-size: 24px;
  }
}
.l-footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.l-footer__nav li a {
  font-weight: bold;
  color: #fff;
}
.l-footer .copyright {
  font-size: 10px;
  margin-top: 30px;
  display: block;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .l-header .burger-btn {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #5AB255;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 10px;
  }
  .l-header .burger-btn span {
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: #fff;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 5px;
    left: 9px;
  }
  .l-header .burger-btn span:nth-of-type(1) {
    top: 12px;
  }
  .l-header .burger-btn span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header .burger-btn span:nth-of-type(3) {
    bottom: 12px;
  }
  .l-header.is-nav-open .l-header .burger-btn span {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-nav-open .l-header .burger-btn span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 19px;
  }
  .l-header.is-nav-open .l-header .burger-btn span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header.is-nav-open .l-header .burger-btn span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 19px;
  }
}/*# sourceMappingURL=style.css.map */