/*======================================
    font
======================================*/
/*======================================
    color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 10px;
  font-family: "Noto Serif JP", serif;
  color: #5a5a5a;
}

body {
  background-color: #fff;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.is-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  br.is-pc {
    display: none;
  }
}

br.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is-sp {
    display: block;
  }
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .container {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .container {
    font-size: min(4.2666666667vw, 1.6rem);
  }
}

.inner {
  max-width: 67.5em;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 88.8%;
    max-width: 31.25em;
  }
}

.text-vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*======================================
    section
======================================*/
.section-title-en {
  font-weight: 200;
  letter-spacing: 0.135em;
}
@media screen and (max-width: 767px) {
  .section-title-en {
    font-size: 0.5625em;
    padding-left: 1.1em;
  }
}
.section-title-en span {
  display: inline-block;
  border-bottom: 1px solid rgba(90, 90, 90, 0.5);
  padding-bottom: 0.5em;
}

/*======================================
    page
======================================*/
.page-container {
  padding: 5.9em 0;
}
@media screen and (max-width: 767px) {
  .page-container {
    padding: 3.9em 0;
  }
}

.page-title {
  margin-left: auto;
  font-weight: 200;
  letter-spacing: 0.135em;
}
@media screen and (max-width: 767px) {
  .page-title {
    padding-right: 4.5em;
  }
}
.page-title span {
  display: inline-block;
  padding-left: 0.5em;
  border-left: 1px solid rgba(90, 90, 90, 0.5);
}
@media screen and (max-width: 767px) {
  .page-title span {
    padding-left: 0.6em;
  }
}

/*======================================
    common
======================================*/
.sns-links {
  display: flex;
}

.sns-link__link {
  display: block;
  transition: opacity 0.3s ease;
}
.sns-link__link:hover {
  opacity: 0.7;
}

.lang-lists {
  display: flex;
  column-gap: 1em;
}

.lang-list:nth-child(n+2) {
  position: relative;
}
.lang-list:nth-child(n+2)::before {
  content: "/";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-0.85em);
}

.lang-list__link {
  display: block;
  transition: opacity 0.3s ease;
  font-weight: 200;
  letter-spacing: 0.05em;
}
.lang-list__link:hover {
  opacity: 0.7;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  padding: 2em;
}
@media screen and (max-width: 1400px) {
  .header {
    display: contents;
  }
}

@media screen and (max-width: 1400px) {
  .header__logo {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;
    padding: 1em 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding: 1em 0.35em 1em 0.25em;
  }
}
.header__logo a {
  display: block;
  width: 3.5em;
  margin-left: auto;
}
@media screen and (max-width: 1400px) {
  .header__logo a {
    width: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .header__logo a {
    width: 0.9375em;
  }
}

.header__links {
  margin-top: 2.5em;
}
@media screen and (max-width: 1400px) {
  .header__links {
    margin-top: 0;
  }
}

.header__link {
  text-align: right;
}
@media screen and (max-width: 1400px) {
  .header__link:nth-child(n+2) {
    margin-top: 1.05em;
  }
}
.header__link a {
  display: inline-block;
  font-size: 0.8125em;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 2.2142857143;
  transition: opacity 0.3s ease;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .header__link a {
    font-size: 1em;
    line-height: 2;
  }
}
.header__link a::before {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 0.5em;
  height: 1px;
  background-color: #fff;
  transform: translateX(-100%);
  transform-origin: right top;
  transition: all 0.7s ease;
  z-index: 2;
  opacity: 0;
}
.header__link a::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(90, 90, 90);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__link a:hover:after {
  opacity: 1;
}
.header__link a:hover::before {
  transform: translateX(100%);
  transform-origin: left top;
  left: calc(100% - 0.5em);
  opacity: 1;
}
.header__link a.current::after {
  opacity: 1;
}
.header__link a:hover {
  opacity: 0.7;
}

/*======================================
    drawer
======================================*/
@media screen and (min-width: 1401px) {
  .drawer-icon__wrap {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .drawer-icon__wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    padding: 1.4em 1.1em;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    column-gap: 1.25em;
  }
}

@media screen and (max-width: 1400px) {
  .drawer-icon.active .drawer-bar.-bar1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
  }
  .drawer-icon.active .drawer-bar.-bar2 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
  }
}

.drawer-bars {
  width: 2.875em;
  height: 0.625em;
  position: relative;
}

.drawer-bar {
  width: 2.875em;
  height: 1px;
  background-color: rgb(90, 90, 90);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.drawer-bar.-bar1 {
  top: 0;
}
.drawer-bar.-bar2 {
  top: 100%;
}

@media screen and (min-width: 1401px) {
  .drawer-contents {
    display: contents;
  }
}
@media screen and (max-width: 1400px) {
  .drawer-contents {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    padding: 8.4em 4.875em 2.5em 1.25em;
    background-color: #fff;
    overflow: scroll;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .drawer-contents.active {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 1401px) {
  .drawer-contents__bottom {
    display: none;
  }
}

.drawer-sns {
  display: flex;
  justify-content: flex-end;
  column-gap: 2.25em;
  margin-top: 4.5em;
  margin-right: 0.25em;
}
.drawer-sns li {
  width: 2.1875em;
}

.drawer-lang {
  justify-content: flex-end;
  margin-top: 2em;
}
.drawer-lang .lang-list {
  font-size: 0.6875em;
}

.sp-header-lang {
  margin-top: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
.sp-header-lang.hide {
  opacity: 0;
  visibility: hidden;
}

.footer {
  padding: 4em 0 2.5em;
}

.footer__map {
  width: 16.875em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .footer__map {
    width: 15.625em;
  }
}

.footer__logo {
  width: 1.3125em;
  margin: 1.5em auto 0;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 1.0625em;
    margin-top: 3.5em;
  }
}

.footer__text {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .footer__text {
    margin-top: 3em;
  }
}
.footer__text a {
  display: block;
  font-size: 0.875em;
  letter-spacing: 0.175em;
  line-height: 1.75;
  text-align: center;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .footer__text a {
    font-size: 0.75em;
    letter-spacing: 0.12em;
  }
}

.footer__contact {
  text-align: center;
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    margin-top: 2em;
  }
}
.footer__contact a {
  display: inline-block;
  font-size: 1.125em;
  font-weight: 200;
  letter-spacing: 0.175em;
  line-height: 1.6666666667;
  padding-right: 1.2em;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__contact a {
    font-size: 0.9375em;
  }
}
.footer__contact a:hover {
  opacity: 0.7;
}
.footer__contact a:hover::before {
  transform: translate(0.2em, -50%);
}
.footer__contact a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0.45em;
  height: 0.83em;
  background: url(../img/comfirm_arrow.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.footer-sns {
  column-gap: 1.125em;
  justify-content: center;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .footer-sns {
    column-gap: 1.75em;
  }
}
.footer-sns li {
  width: 1.3125em;
}
@media screen and (max-width: 767px) {
  .footer-sns li {
    width: 2.1875em;
  }
}

.copyright {
  margin-top: 3em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .copyright {
    margin-top: 2em;
  }
}
.copyright small {
  font-weight: 200;
  letter-spacing: 0.175em;
  font-size: 0.75em;
}
@media screen and (max-width: 767px) {
  .copyright small {
    font-size: 0.625em;
  }
}

/*======================================
    TOP
======================================*/
@media screen and (min-width: 768px) {
  .fv__inner {
    max-width: 76.25em;
    display: grid;
    grid-template-columns: auto 21.25em;
    column-gap: 1.25em;
    padding: 16.5em 0 14em;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1500px) {
  .fv__inner {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .fv__inner {
    font-size: 0.875em;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .fv__inner {
    width: 73%;
    font-size: 0.8125em;
  }
}
@media screen and (max-width: 767px) {
  .fv__inner {
    display: flex;
    flex-direction: column;
    padding: 4em 0 4.4em;
  }
}

.fv__contents {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-right: auto;
  column-gap: 4em;
  padding-top: 5.75em;
  flex: 1;
}
@media screen and (min-width: 1025px) and (max-width: 1500px) {
  .fv__contents {
    column-gap: 2em;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .fv__contents {
    font-size: 0.875em;
    column-gap: 1.5em;
    margin-left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .fv__contents {
    column-gap: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .fv__contents {
    display: contents;
  }
}

.fv__contents--lead {
  font-size: 1.5em;
  font-weight: 200;
  letter-spacing: 0.365em;
  line-height: 2.2083333333;
}
@media screen and (max-width: 767px) {
  .fv__contents--lead {
    order: 1;
    margin-right: auto;
    margin-left: auto;
    font-size: 1em;
    line-height: 2.25;
  }
}

.fv__contents--text {
  font-size: 0.875em;
  font-weight: 200;
  letter-spacing: 0.03em;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .fv__contents--text {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 767px) {
  .fv__contents--text {
    order: 3;
    font-size: 0.75em;
    line-height: 2.25;
    max-width: 28em;
    margin: 7.1em auto 0;
  }
}

@media screen and (max-width: 767px) {
  .fv__image {
    order: 2;
    width: 15.25em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .fv__bg img {
    max-height: 67.5em;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .fv__bg img {
    height: 100%;
    max-height: 31.25em;
    object-fit: cover;
  }
}

.t-vision {
  padding: 8.25em 0;
}
@media screen and (max-width: 767px) {
  .t-vision {
    padding: 4.5em 0;
  }
}

.t-vision__head--lead {
  font-size: 2.25em;
  font-weight: 200;
  letter-spacing: 0.34em;
  line-height: 1.8888888889;
  margin: 3.2em auto 0;
}
@media screen and (max-width: 767px) {
  .t-vision__head--lead {
    font-size: 1.75em;
    line-height: 1.8928571429;
    margin-top: 2.1em;
  }
}

.t-vision__head--text {
  font-size: 0.9375em;
  font-weight: 200;
  letter-spacing: 0.18em;
  line-height: 2.3333333333;
  text-align: center;
  margin-top: 2.75em;
}
@media screen and (max-width: 767px) {
  .t-vision__head--text {
    font-size: 0.8125em;
    line-height: 2.1538461538;
    margin-top: 1.25em;
  }
}

.t-vision__lists {
  margin-top: 11.5em;
}
@media screen and (max-width: 767px) {
  .t-vision__lists {
    margin-top: 5.25em;
  }
}

.t-vision__list:nth-child(n+2) {
  margin-top: 12.5em;
}
@media screen and (max-width: 767px) {
  .t-vision__list:nth-child(n+2) {
    margin-top: 5.5em;
  }
}

.t-vision__list--title {
  font-size: 2.3125em;
  letter-spacing: 0.34em;
  line-height: 2.2162162162;
  font-weight: 200;
  margin-top: 1.85em;
  margin-left: -0.25em;
}
@media screen and (max-width: 767px) {
  .t-vision__list--title {
    font-size: 1.375em;
    margin-top: 1.15em;
  }
}

.t-vision__list--lead {
  font-weight: 200;
  letter-spacing: 0.27em;
  font-size: 1.375em;
  line-height: 1.7272727273;
  margin-top: 1.75em;
  margin-left: -0.2em;
}
@media screen and (max-width: 767px) {
  .t-vision__list--lead {
    font-size: 1em;
    margin-top: 0.75em;
  }
}

.t-vision__list--text {
  font-size: 0.875em;
  font-weight: 200;
  letter-spacing: 0.03em;
  line-height: 2.2142857143;
  margin-top: 1.8em;
}
@media screen and (max-width: 767px) {
  .t-vision__list--text {
    font-size: 0.75em;
    line-height: 2.0833333333;
    margin-top: 2.25em;
    margin-left: -0.2em;
  }
}

.sp-button {
  display: none;
  margin-top: 4em;
}
@media screen and (max-width: 1400px) {
  .sp-button {
    display: block;
  }
}
.sp-button a {
  display: inline-block;
  font-size: 1.125em;
  font-weight: 200;
  letter-spacing: 0.175em;
  line-height: 1.6666666667;
  padding-right: 1.2em;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sp-button a {
    font-size: 0.9375em;
  }
}
.sp-button a:hover {
  opacity: 0.7;
}
.sp-button a:hover::before {
  transform: translate(0.2em, -50%);
}
.sp-button a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0.45em;
  height: 0.83em;
  background: url(../img/comfirm_arrow.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

/*======================================
    overview
======================================*/
.overview {
  margin-top: 4em;
}
.overview:nth-of-type(n + 2) {
  margin-top: 5.4em;
}
@media screen and (max-width: 767px) {
  .overview:nth-of-type(n + 2) {
    margin-top: 5em;
  }
}

.overview-section-title {
  font-size: 0.9375em;
  font-weight: 200;
  letter-spacing: 0.2em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .overview-section-title {
    font-size: 0.8125em;
    letter-spacing: 0.34em;
  }
}

@media screen and (max-width: 767px) {
  .overview__img {
    width: 96.4%;
    margin-left: auto;
    margin-right: auto;
  }
}

.overview__contents {
  display: flex;
  column-gap: 1.25em;
  margin-top: 1.75em;
}
@media screen and (max-width: 767px) {
  .overview__contents {
    flex-direction: column;
    row-gap: 1.75em;
    margin-top: 1.1em;
  }
}

.overview__lead {
  font-size: 1.125em;
  font-weight: 200;
  letter-spacing: 0.2em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .overview__lead {
    font-size: 0.875em;
  }
}

.overview__title {
  font-size: 2em;
  font-weight: 200;
  letter-spacing: 0.2em;
  line-height: 1.65625;
}
.overview__title span.kana {
  display: block;
  font-size: 0.4em;
  letter-spacing: 2em;
  transform: translateY(0.5em);
}
.overview__title span.kana span {
  display: inline-block;
  letter-spacing: 0.25em;
  margin-right: 1.35em;
}
@media screen and (max-width: 767px) {
  .overview__title {
    font-size: 1.5625em;
    margin-top: 0.1em;
  }
}

.overview__text {
  font-size: 0.875em;
  line-height: 2.2142857143;
  letter-spacing: 0.03em;
  font-weight: 200;
  margin-top: 1.25em;
}
@media screen and (max-width: 767px) {
  .overview__text {
    font-size: 0.75em;
    line-height: 2.0833333333;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
}

.overview__links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .overview__links {
    align-items: flex-end;
    margin-left: auto;
  }
}

.overview__link {
  display: block;
  font-size: 0.625em;
  letter-spacing: 0.2em;
  font-weight: 200;
  line-height: 1.75;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .overview__link {
    font-size: 0.75em;
  }
}
.overview__link:hover {
  opacity: 0.7;
}

.overview__links--lists {
  display: flex;
  flex-direction: row;
  width: 100%;
  column-gap: 1.25em;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .overview__links--lists {
    justify-content: flex-end;
    margin-top: 0.75em;
  }
}

.overview__links--list {
  position: relative;
}
.overview__links--list:nth-child(n+2)::before {
  content: "/";
  position: absolute;
  top: 50%;
  left: -1em;
  transform: translate(-50%, -50%);
  font-size: 0.625em;
}
@media screen and (max-width: 767px) {
  .overview__links--list:nth-child(n+2)::before {
    font-size: 0.75em;
  }
}

.company {
  margin-top: 11em;
}
@media screen and (max-width: 767px) {
  .company {
    margin-top: 6.5em;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}

.overview-details {
  margin-top: 3.3em;
}
@media screen and (max-width: 767px) {
  .overview-details {
    margin-top: 3em;
  }
}

.overview-detail {
  border-top: 1px solid rgba(90, 90, 90, 0.5);
  padding: 1.45em 0;
}
@media screen and (max-width: 767px) {
  .overview-detail {
    padding: 1.35em 0 1.6em;
  }
}
.overview-detail:last-child {
  border-bottom: 1px solid rgba(90, 90, 90, 0.5);
}

.overview-detail__dl {
  display: grid;
}
@media screen and (max-width: 767px) {
  .overview-detail__dl {
    display: block;
  }
}
.overview-detail__dl dt, .overview-detail__dl dd {
  font-size: 0.9375em;
  font-weight: 200;
  line-height: 1.75;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .overview-detail__dl dt, .overview-detail__dl dd {
    font-size: 0.8125em;
  }
}
@media screen and (max-width: 767px) {
  .overview-detail__dl dd {
    margin-top: 0.6em;
  }
}

.company-detail {
  grid-template-columns: 10em auto;
}

.history {
  margin-top: 9.5em;
}
@media screen and (max-width: 767px) {
  .history {
    margin-top: 7.25em;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}

.history-detail {
  grid-template-columns: 20em auto;
}

.overview-map {
  margin-top: 9.5em;
}
@media screen and (max-width: 767px) {
  .overview-map {
    margin-top: 8.25em;
    margin-right: calc(50% - 50vw);
    padding-bottom: 0.625em;
    overflow: scroll;
  }
}

@media screen and (min-width: 768px) {
  .overview-map__img {
    max-width: 64.75em;
  }
}
@media screen and (max-width: 767px) {
  .overview-map__img {
    min-width: 35.75em;
    width: 100%;
  }
}

/*======================================
    people
======================================*/
.people {
  margin-top: 1.75em;
}
@media screen and (max-width: 767px) {
  .people {
    width: 96.4%;
    margin-left: auto;
    margin-right: auto;
  }
}

.people-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 5.375em;
  row-gap: 5em;
}
@media screen and (max-width: 767px) {
  .people-lists {
    grid-template-columns: repeat(auto-fill, minmax(13.75em, 1fr));
    column-gap: 1.75em;
  }
}

.people-list__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: filter 0.3s ease;
}
.people-list__link:hover {
  filter: brightness(1.1);
}
.people-list__link:hover .people-list__img img {
  transform: scale(1.05);
}
.people-list__link:hover .people-list__more::before {
  transform: translate(0.25em, -50%) rotate(-45deg);
}

.people-list__img {
  aspect-ratio: 304/171;
  overflow: hidden;
}
.people-list__img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.people-list__texts {
  margin-top: 1.25em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .people-list__texts {
    margin-bottom: 3em;
  }
}

.people-list__belong {
  font-size: 0.8125em;
  font-weight: 200;
  line-height: 2.3076923077;
  letter-spacing: 0.05em;
}

.people-list__name {
  font-weight: 200;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

.people-list__text {
  font-size: 0.8125em;
  font-weight: 200;
  letter-spacing: 0.03em;
  line-height: 1.9230769231;
  margin-top: 1.5em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .people-list__text {
    font-size: 0.75em;
    line-height: 2.0833333333;
    margin: 1.75em -0.25em 0;
  }
}

.people-list__more {
  margin-top: auto;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  font-weight: 200;
  display: inline-block;
  align-self: start;
  padding-right: 1.5em;
  position: relative;
}
.people-list__more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 1px solid rgba(90, 90, 90, 0.3);
  border-right: 1px solid rgba(90, 90, 90, 0.3);
  width: 0.7em;
  height: 0.7em;
  transition: transform 0.3s ease;
}

.recruit {
  margin-top: 12.5em;
}
@media screen and (max-width: 767px) {
  .recruit {
    margin-top: 6em;
  }
}

.recruit__title {
  font-size: 1.25em;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.155em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    font-size: 1.125em;
    line-height: 2.1111111111;
  }
}

.recruit__text {
  font-size: 0.8125em;
  font-weight: 200;
  letter-spacing: 0.03em;
  line-height: 1.9230769231;
  text-align: center;
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .recruit__text {
    font-size: 0.75em;
    line-height: 2.0833333333;
    margin-top: 1.5em;
  }
}

.recruit__contents {
  display: grid;
  margin-top: 4em;
  align-items: center;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 767px) {
  .recruit__contents {
    margin: 2.5em calc(50% - 50vw) 0;
  }
}
.recruit__contents:hover {
  filter: brightness(1.05);
}
.recruit__contents:hover .recruit__img img {
  transform: scale(1.05);
}
.recruit__contents:hover .recruit__texts::before {
  transform: translate(0.25em, -50%) rotate(-45deg);
}

.recruit__img {
  grid-column: 1/2;
  grid-row: 1/2;
  overflow: hidden;
}
.recruit__img img {
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .recruit__img img {
    max-height: 15.625em;
    object-fit: cover;
  }
}

.recruit__texts {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #fff;
  width: 10.5em;
  height: 4.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .recruit__texts {
    width: 9.125em;
  }
}
.recruit__texts::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0, -50%) rotate(-45deg);
  width: 0.75em;
  height: 0.75em;
  border-bottom: 1px solid rgba(90, 90, 90, 0.3);
  border-right: 1px solid rgba(90, 90, 90, 0.3);
  transition: transform 0.3s ease;
}

.recruit__texts--lead {
  font-size: 0.8125em;
  font-weight: 200;
  letter-spacing: -0.025em;
}

.recruit__texts--text {
  font-size: 0.625em;
  font-weight: 200;
  margin-top: 0.75em;
}

/*======================================
    news
======================================*/
.news {
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .news {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4.1em;
  }
}

.news-list {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.news-list:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.news-list__link {
  display: grid;
  grid-template-columns: 7.75em auto;
  padding: 2.25em 0 2.5em;
  transition: opacity 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-list__link {
    display: flex;
    flex-direction: column;
    padding: 1.4em 0 1.85em;
    row-gap: 0.5em;
  }
}
.news-list__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  transform: translate(0, -50%) rotate(-45deg);
  width: 0.75em;
  height: 0.75em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-list__link::before {
    width: 0.6em;
    height: 0.6em;
    right: 1em;
  }
}
.news-list__link:hover {
  opacity: 0.7;
}
.news-list__link:hover::before {
  transform: translate(0.25em, -50%) rotate(-45deg);
}

.news-list__date {
  font-size: 0.875em;
  line-height: 1.8571428571;
  letter-spacing: 0.22em;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .news-list__date {
    font-size: 0.6875em;
  }
}

.news-list__title {
  font-size: 0.9375em;
  font-weight: 200;
  line-height: 1.7333333333;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .news-list__title {
    font-size: 0.75em;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 1.375em;
  row-gap: 1em;
  margin-top: 6.25em;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 3.125em;
  }
}
.pagination .page-numbers {
  font-size: 0.9375em;
  font-weight: 200;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 3.33em;
  height: 3.33em;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.pagination .page-numbers.dots {
  border: none;
}

.news__eye {
  max-width: 53.75em;
  margin-left: auto;
  margin-right: auto;
}
.news__eye img {
  height: auto;
}

.news__contents {
  max-width: 37.5em;
  margin: 6em auto 0;
}
@media screen and (max-width: 767px) {
  .news__contents {
    width: 87.5%;
    margin-top: 2.85em;
  }
}

.news__contents--date {
  font-size: 0.875em;
  font-weight: 200;
  line-height: 1.75;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 767px) {
  .news__contents--date {
    font-size: 0.6875em;
  }
}

.news__contents--title {
  font-size: 0.9375em;
  font-weight: 200;
  line-height: 1.75;
  letter-spacing: 0.12em;
  margin-top: 0.8em;
}
@media screen and (max-width: 767px) {
  .news__contents--title {
    font-size: 0.75em;
    margin-top: 0.5em;
  }
}

.news__content {
  font-size: 0.8125em;
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .news__content {
    font-size: 0.6875em;
    margin-top: 2.7em;
  }
}
.news__content * {
  font-weight: 200;
  line-height: 2.4615384615;
  letter-spacing: 0.05em;
  margin: 2em auto 1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .news__content * {
    line-height: 2.2727272727;
    letter-spacing: 0.03em;
  }
}
.news__content img {
  height: auto;
  margin: 3em auto;
}
@media screen and (max-width: 767px) {
  .news__content img {
    margin: 2em auto;
  }
}

.single-pagination {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-top: 11em;
}
@media screen and (max-width: 767px) {
  .single-pagination {
    margin-top: 4em;
  }
}
.single-pagination a {
  display: block;
  transition: opacity 0.3s ease;
}
.single-pagination a:hover {
  opacity: 0.7;
}

.single-prev,
.single-next {
  width: 1.875em;
  height: 1.875em;
  border-bottom: 1px solid rgba(90, 90, 90, 0.41);
  border-right: 1px solid rgba(90, 90, 90, 0.41);
}

.single-prev {
  column-gap: 1/2;
  grid-row: 1/2;
  transform: rotate(-225deg);
}

.single-all {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 0.75em;
  font-weight: 200;
  letter-spacing: 0.175em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single-all {
    font-size: 0.625em;
  }
}

.single-next {
  grid-column: 3/4;
  grid-row: 1/2;
  margin-left: auto;
  transform: rotate(-45deg);
}

/*======================================
    contact
======================================*/
.contact {
  max-width: 34.6875em;
  margin: 5.25em auto 0;
}
@media screen and (max-width: 767px) {
  .contact {
    width: 84%;
    margin-top: 1.5em;
  }
}

.required {
  color: #db0000;
  font-size: 0.57em;
  font-weight: 200;
  transform: translateY(-8%);
  display: inline-block;
}

.contact__text {
  font-size: 0.875em;
  font-weight: 200;
  letter-spacing: 0.12em;
  line-height: 1.75;
  text-align: right;
}

.contact-lists {
  margin-top: -0.25em;
}
@media screen and (max-width: 767px) {
  .contact-lists {
    margin-top: -1.5em;
  }
}

.contact-list:nth-child(n+2) {
  margin-top: 1.35em;
}

.contact-list__head {
  font-size: 0.875em;
  font-weight: 200;
  line-height: 1.75;
  letter-spacing: 0.12em;
}

.contact-list__input {
  margin-top: 0.2em;
}
.contact-list__input input,
.contact-list__input select,
.contact-list__input textarea,
.contact-list__input span.check-text {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background-color: #f0f0f0;
  color: #5a5a5a;
  border-radius: 0.1875em;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.75;
  width: 100%;
  padding: 0.6875em 1em;
  letter-spacing: 0.12em;
  font-family: inherit;
  word-break: break-all;
}
.contact-list__input input:focus,
.contact-list__input select:focus,
.contact-list__input textarea:focus,
.contact-list__input span.check-text:focus {
  outline: none;
}
.contact-list__input select {
  color: #9a9a9a;
}
.contact-list__input .wpcf7-not-valid-tip {
  letter-spacing: 0.12em;
  display: block;
  margin-top: 0.2em;
  font-size: 0.875em;
}
.contact-list__input span.check-text {
  display: block;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contact-list__input span.check-text {
    font-size: 0.875em;
  }
}
.contact-list__input textarea {
  height: 15.3125em;
  resize: vertical;
}
.contact-list__input select {
  background: #f0f0f0 url(../img/select_arrow.svg) no-repeat center right 1.25em/0.625em 0.375em;
}

.contact-privacy {
  margin-top: 2.5em;
}
.contact-privacy input {
  display: none;
}
.contact-privacy .wpcf7-list-item-label {
  display: none;
}
.contact-privacy input:checked + .check::after {
  opacity: 1;
  visibility: visible;
  transform: translate(0.15em, 0) rotate(-45deg);
}
.contact-privacy .wpcf7-list-item {
  margin-left: 0 !important;
}
.contact-privacy .check {
  padding-left: 1.75em;
  position: relative;
  display: inline-block;
}
.contact-privacy .check a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.contact-privacy .check a:hover {
  opacity: 0.7;
}
.contact-privacy .check.-nobox::before, .contact-privacy .check.-nobox::after {
  display: none;
}
.contact-privacy .check.-nobox:hover {
  cursor: default;
}
.contact-privacy .check:hover {
  cursor: pointer;
}
.contact-privacy .check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.29em;
  height: 1.29em;
  border: 1px solid rgb(90, 90, 90);
  border-radius: 0.21em;
}
.contact-privacy .check::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 0.5em;
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  transform: translate(0.15em, 0) rotate(-20deg);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.contact-button {
  margin-top: 4.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.875em;
}
@media screen and (max-width: 767px) {
  .contact-button {
    row-gap: 2.875em;
  }
}
.contact-button.-check {
  padding-top: 7.8125em;
  margin-top: 8.75em;
  border-top: 1px solid rgb(90, 90, 90);
}
@media screen and (max-width: 767px) {
  .contact-button.-check {
    padding-top: 3.75em;
    margin-top: 3.75em;
  }
}
.contact-button .wpcf7-spinner {
  display: none !important;
}
.contact-button input,
.contact-button button,
.contact-button .contact__thanks--top {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: #fff url(../img/comfirm_arrow.svg) no-repeat center right 1.29em/0.43em 0.72em;
  font-size: 0.875em;
  font-weight: 200;
  letter-spacing: 0.12em;
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20.71em;
  height: 3.57em;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}
.contact-button input:not(:disabled):hover,
.contact-button button:not(:disabled):hover,
.contact-button .contact__thanks--top:not(:disabled):hover {
  background: #fff url(../img/comfirm_arrow.svg) no-repeat center right 1em/0.43em 0.72em;
  cursor: pointer;
}

.form-check {
  display: none;
}

.contact__recaptcha {
  font-size: 0.625em;
  margin-top: 5em;
  text-align: center;
}
.contact__recaptcha a {
  font-weight: inherit;
  transition: opacity 0.3s ease;
}
.contact__recaptcha a:hover {
  opacity: 0.7;
}

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

.thanks {
  width: 100%;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*======================================
    privacy policy
======================================*/
.privacy {
  font-size: 0.875em;
  line-height: 2.2142857143;
  letter-spacing: 0.03em;
  font-weight: 200;
  margin: 2.5em auto 0;
}
.privacy dl {
  margin-top: 3em;
}
.privacy dl dt {
  font-size: 1.75em;
}
.privacy dl dd {
  margin-top: 0.5em;
}
.privacy dl dd ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin: 1.5em 0;
}

/*# sourceMappingURL=style.css.map */
