@charset "UTF-8";
/* ----------------------------------------------------------
    共通
---------------------------------------------------------- */
.body {
  font-size: 16px;
}

.wrapper {
  width: 100%;
  margin-inline: auto;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, YuGothic, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, Arial, メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.inner {
  width: 71.875%;
  max-width: 920px;
  margin-inline: auto;
}
@media screen and (max-width:640px) {
  .inner {
    width: 100%;
    padding: 0 16px;
  }
}

.main {
  background-color: #f3f3f3;
  color: #333;
}

.section {
  padding: 100px 0;
}
@media screen and (max-width:640px) {
  .section {
    padding: 80px 0;
  }
}

.btn-box {
  width: 300px;
}
@media screen and (max-width:640px) {
  .btn-box {
    width: calc(100vw - 32px);
  }
}
.btn-box.absolute {
  position: absolute;
  bottom: -40px;
  right: -40px;
}
@media screen and (max-width:640px) {
  .btn-box.absolute {
    position: relative;
    bottom: 16px;
    right: 0;
    left: 24px;
    width: calc(100vw - 32px - 48px);
  }
}

.btn__more {
  width: 100%;
  padding: 20px 40px;
  border-radius: 5px;
  display: inline-block;
  background-color: #333;
  color: #fff;
  position: relative;
}
.btn__more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 2px;
  background-color: #fff;
}
.btn__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 11px;
  height: 11px;
}
@media screen and (max-width:640px) {
  .btn__more {
    padding: 16px 24px;
  }
}

.contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
@media screen and (max-width:640px) {
  .contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
  }
}

.sec-title__en {
  font-size: 48px;
  font-weight: bold;
  line-height: 6rem;
}
@media screen and (max-width:640px) {
  .sec-title__en {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}

.sec-title__ja {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
}
.sec-title__ja::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background-color: #333;
}

/* ----------------------------------------------------------
    下層ページ共通
---------------------------------------------------------- */
.page__main {
  width: 65.625%;
  max-width: 840px;
  margin-inline: auto;
  margin-top: -40px;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (max-width:920px) {
  .page__main {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width:640px) {
  .page__main {
    width: calc(100% - 32px);
    max-width: 100%;
    margin-inline: 16px;
  }
}

.page__content {
  padding: 80px;
}
@media screen and (max-width:640px) {
  .page__content {
    padding: 40px 16px;
  }
}
.page__content p {
  margin-bottom: 40px;
}
.page__content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ----------------------------------------------------------
    ヘッダー
---------------------------------------------------------- */
.header {
  width: 100%;
  line-height: 1;
  margin-inline: auto;
  padding: 16px 24px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  z-index: 10;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background-color: rgba(0, 0, 0, 0.3);
}

.header-logo {
  width: 300px;
  height: 100%;
  font-size: 20px;
  color: #fff;
}

.header-nav {
  display: grid;
  place-items: center;
}
@media screen and (max-width:640px) {
  .header-nav {
    display: none;
  }
}
.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}
.header-nav li {
  color: #fff;
}

/* ----------------------------------------------------------
    ドロワーメニュー
---------------------------------------------------------- */
.menu-bars {
  width: 20px;
  height: 15px;
  position: relative;
  display: none;
}
@media screen and (max-width:640px) {
  .menu-bars {
    display: block;
  }
}
.menu-bars span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  position: absolute;
  content: "";
  left: 0;
}
.menu-bars span:nth-of-type(1) {
  top: 0;
}
.menu-bars span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.menu-bars span:nth-of-type(3) {
  bottom: 0;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #333;
  z-index: 20;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 1s, display 1s;
  transition: opacity 1s, display 1s;
}
@starting-style {
  .drawer-menu {
    opacity: 0;
  }
}

.drawer-menu.is-open {
  display: block;
  opacity: 1;
}

.drawer_lists {
  width: 100%;
  padding: 30px 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}

.drawer_list {
  text-align: center;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.cross-bars {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 20;
  pointer-events: none;
}
.cross-bars span {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 3px;
  pointer-events: auto;
}
.cross-bars span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cross-bars span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ----------------------------------------------------------
    FV
---------------------------------------------------------- */
.fv {
  width: 100%;
  height: 60vh;
  text-align: center;
  display: grid;
  place-items: center;
  background: url(../img/fv_bg.png) no-repeat center center/cover;
}
.fv--page {
  height: 40vh;
}
@media screen and (max-width:640px) {
  .fv--page {
    height: 33vh;
  }
  .fv--page .fv-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width:640px) {
  .fv {
    padding: 100px 16px;
  }
}

.fv-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width:640px) {
  .fv-title {
    font-size: 32px;
    text-align: left;
  }
}

.fv-text {
  line-height: 2;
  margin-bottom: 40px;
  width: 100%;
}
.fv-text--page {
  position: relative;
  padding: 0 40px;
}
.fv-text--page::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background-color: #f3f3f3;
}
.fv-text--page::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background-color: #f3f3f3;
}
@media screen and (max-width:640px) {
  .fv-text {
    font-size: 0.9rem;
    text-align: left;
  }
  .fv-text--page {
    text-align: center;
  }
}

/* ----------------------------------------------------------
    ニュース
---------------------------------------------------------- */
.news {
  width: 65.625%;
  max-width: 840px;
  margin-inline: auto;
  margin-top: -40px;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (max-width:640px) {
  .news {
    width: calc(100% - 32px);
    max-width: 100%;
    margin: -40px 16px 0;
  }
}

.news-content {
  padding: 24px 40px;
}
@media screen and (max-width:640px) {
  .news-content {
    padding: 16px 24px;
  }
}
.news-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  margin-top: 24px;
}

.content-title {
  font-size: 24px;
  font-weight: bold;
}
.content-title--business {
  margin-bottom: 24px;
}
@media screen and (max-width:640px) {
  .content-title--business {
    text-align: center;
  }
}

/* ----------------------------------------------------------
    事業内容
---------------------------------------------------------- */
.business-text {
  margin-bottom: 40px;
}

.business-image {
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width:640px) {
  .business-image {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
    特徴
---------------------------------------------------------- */
.features-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.feature-list h3 {
  margin-bottom: 40px;
  position: relative;
  padding-left: 80px;
  font-size: 18px;
  font-weight: bold;
}
.feature-list h3::before {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ----------------------------------------------------------
    私たちについて
---------------------------------------------------------- */
.about {
  background-color: #fff;
}

.about-map {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.about-map iframe {
  width: 100%;
}

.about-text {
  margin-bottom: 40px;
}

.about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  line-height: 1.8;
}
@media screen and (max-width:640px) {
  .about-list {
    gap: 0;
  }
}

.about-list__head {
  width: 25%;
  font-weight: bold;
}
@media screen and (max-width:640px) {
  .about-list__head {
    width: 100px;
  }
}

.about-list__body {
  width: 100%;
}
/* ----------------------------------------------------------
    フッター
---------------------------------------------------------- */
.footer {
  padding-top: 80px;
  background-color: #f3f3f3;
  color: #999;
}
.footer .inner {
  padding: 16px 24px;
}

.footer-nav {
  margin-bottom: 16px;
}
.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.copyright {
  text-align: center;
  font-size: 12px;
}

/* ----------------------------------------------------------------------------
    固定ページ
--------------------------------------------------------------------------- */
/* ----------------------------------------------------------
    News
---------------------------------------------------------- */
/* ----------------------------------------------------------
    Business
---------------------------------------------------------- */
.page__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  margin-bottom: 160px;
}
@media screen and (max-width:640px) {
  .page__content-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 120px;
  }
}

.p-business_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-business_list {
  font-size: 0.9rem;
}
@media screen and (max-width:640px) {
  .p-business_list {
    width: 100%;
    text-align: left;
  }
}

.p-business_image {
  max-width: 240px;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------
    Members
---------------------------------------------------------- */
.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}
.contact-form label {
  font-size: 14px;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 0.83rem;
}
.contact-form span {
  font-size: 14px;
}

.form-text {
  text-align: center;
}
@media screen and (max-width:640px) {
  .form-text {
    text-align: left;
  }
}

.form__names {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 8px 0;
}

.form__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 0;
}

.btn-submit {
  padding: 16px 40px;
  background-color: #333;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: normal;
}

/* ----------------------------------------------------------
    Contact
---------------------------------------------------------- */