@charset "UTF-8";

/* =========================================================
  Reset
========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

/* =========================================================
  Variables
========================================================= */
:root{
  --header-h-sp: 60px;
  --header-h-home: 220px;
  --header-h-home-scrolled: 140px;
  --header-h-sub: 120px;
  --logo-scale-scrolled: .7;

  --container: 1040px;
  --container-wide: 1300px;
  --pad: 20px;

  --bg-gray: #d9d9d9;
  --bg-gray2: #cfcfcf;
  --hero-band: #F4F6F6;
  --text: #111;
  --muted: #666;
  --line: #ccc;
  --accent: #EA5504;
  --bg-light: #F4F6F6;
  --text-dark: #30303B;
  --footer-bg: #4A4A54;
}

/* =========================================================
  Base
========================================================= */
html{
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text);
  background: #fff;
  scroll-behavior: smooth;
}

body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-top: var(--header-h-sp);
}

body.home,
body.subpage{
  background: #fff;
}

@media (min-width: 769px){
  body.home{ padding-top: var(--header-h-home); }
  html.is-scrolled body.home{ padding-top: var(--header-h-home-scrolled); }
  body.subpage{ padding-top: var(--header-h-sub); }
}

.container{
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.catch{ letter-spacing: 0.05em; }
.tight{ margin-left: -0.2em; }
.l-tight{ margin-left: -0.4em; }

main,
.sub-main{
  display: block;
}
.company .sub-main{
  padding-top: 145px;
}
@media (max-width: 768px){
  .company .sub-main{
    padding-top: 91px;
  }
}
a,
button {
  transition: opacity 0.3s;
}

a:hover,
button:hover {
  opacity: 0.6;
}

.pc{
  display: inline;
}

.sp{
  display: none;
}

@media (max-width: 768px){
  .pc{
    display: none;
  }

  .sp{
    display: inline;
  }
}
/* =========================================================
  Header / common navigation
========================================================= */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h-sp);
  background: #fff;
  transition: height .2s ease, background-color .2s ease;
  z-index: 50;
}

.header__inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo{
  transform-origin: center center;
  transition: transform .2s ease;
}

.header__logo img{
  width: 220px;
  height: auto;
}

.pcnav{ display: none; }

.header__toggle{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.header__toggleIcon{
  position: relative;
  width: 26px;
  height: 2px;
  background: #808080;
  display: block;
}

.header__toggleIcon::before,
.header__toggleIcon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #808080;
}

.header__toggleIcon::before{ top: -9px; }
.header__toggleIcon::after{ top: 9px; }

.is-nav-open .header__toggleIcon{ background: transparent; }
.is-nav-open .header__toggleIcon::before{ top: 0; transform: rotate(45deg); }
.is-nav-open .header__toggleIcon::after{ top: 0; transform: rotate(-45deg); }

.spnav{
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h-sp);
  height: 100vh;
  background: #fff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.is-nav-open .spnav{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.spnav__inner{
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.spnav__list{
  width: min(360px, 86vw);
  text-align: center;
}

.spnav__list li{ border-top: 1px solid var(--line); }
.spnav__list li:first-child{ border-top: none; }
.spnav__list li:last-child{ border-bottom: 1px solid var(--line); }

.spnav__list a{
  display: block;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
}

body.is-nav-open{ overflow: hidden; }

@media (min-width: 769px){
  .header__toggle{ display: none; }
  .spnav{ display: none; }
  .pcnav{ display: block; }

  .header__logo img{
    width: 440px;
  }

  .pcnav__list{
    display: flex;
    align-items: center;
  }

  .pcnav__list a{
    position: relative;
    display: inline-block;
    font-size: 20px;
    letter-spacing: -.02em;
    padding: 6px 2px 2px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
  }

  .pcnav__list a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
  }

  .pcnav__list a:hover::after,
  .pcnav__list a:focus-visible::after{
    transform: scaleX(1);
  }
}

/* home header */
@media (min-width: 769px){
  body.home .header{ height: var(--header-h-home); }
  html.is-scrolled body.home .header{ height: var(--header-h-home-scrolled); }

  body.home .header__inner{
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  html.is-scrolled body.home .header__inner{ gap: 20px; }

  body.home .header__logo{ text-align: center; }
  html.is-scrolled body.home .header__logo{ transform: scale(var(--logo-scale-scrolled)); }

  body.home .pcnav__list{
    justify-content: center;
    gap: 28px;
  }
}

/* subpage header */
body.subpage .header{
  background: #fff;
}

@media (min-width: 769px){
  body.subpage .header{
    height: var(--header-h-sub);
    background: #fff;
  }

  body.subpage .header__inner{
    width: min(var(--container-wide), calc(100% - 40px));
    margin-inline: auto;
    padding-inline: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  body.subpage .header__logo{
    flex: 0 0 auto;
    text-align: left;
  }

  body.subpage .header__logo img{
    width: 360px;
  }

  body.subpage .pcnav__list{
    justify-content: flex-end;
    gap: 64px;
  }
}

/* =========================================================
  Shared sections / button
========================================================= */
.section{ padding-block: 44px; background: #fff; }
.section--gray{ background: #efefef; }

.section__title{
  font-size: 80px;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: -.05em;
  line-height: 1;
}

.section__subtitle{
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -.05em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section__title.white{ color: #fff; }
.section__cta{ margin-top: 16px; }

.btn-viewmore{
  display: inline-flex;
  align-items: center;
  background: #30303B;
  border-radius: 999px;
  text-decoration: none;
  height: 54px;
  padding-left: 28px;
  padding-right: 0;
  position: relative;
  width: 220px;
  margin-top: 50px;
}

.btn-viewmore__text{
  color: #fff;
  font-size: 18px;
  letter-spacing: -.03em;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
}

.btn-viewmore__circle{
  position: absolute;
  top: 0;
  right: -1px;
  width: 54px;
  height: 54px;
  margin-left: 20px;
  background: #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-viewmore__arrow svg{
  width: 14px;
  height: auto;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #111;
  background: #fff;
  font-weight: 600;
}

.btn--black{ background: #111; color: #fff; border-color: #111; }
.btn--wide{ width: 100%; }

/* =========================================================
  Hero
========================================================= */
.hero{
  background: linear-gradient(#fff 405px, #F4F6F6 0);
}

.hero__bg{
  max-width: 1200px;
  margin: 0 auto;
}

.hero__bg img{
  width: 100%;
  height: auto;
}

.hero-lead{
  background: #F4F6F6;
}

.hero-lead__inner{
  padding-top: 95px;
  padding-bottom: 44px;
  color: #30303B;
}

.hero-lead__title{
  font-size: 60px;
  letter-spacing: -.02em;
  font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.hero-lead__title .orenge{
  color: #EA5504;
}

.hero-lead__text{
  font-size: 16px;
  font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
}

@media (max-width: 768px){
  .section__title{ font-size: 60px !important; }
  
  .section__subtitle{
    font-size: 17px;
    margin-bottom: 15px;
  }

  .btn-viewmore{ margin-top: 30px; }

  .hero{
    background: linear-gradient(#fff 220px, #F4F6F6 0);
  }

  .hero-lead__inner{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-lead__title{
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 35px;
  }

  .hero-lead__text{
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (min-width: 769px){
  .hero-lead__inner{
    padding-bottom: 120px;
  }

  .hero-lead__title{
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .hero-lead__text{
    font-size: 16px;
    line-height: 2.2;
  }
}

/* =========================================================
  News
========================================================= */
.section--news{
  background: #FFF;
  padding: 110px 0 180px;
}

.section--news .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section--news .section__title{
  line-height: 1;
  margin-bottom: 48px;
}

.news{ position: relative; }
.news__viewport{ overflow: hidden; }
.news__track{
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.news__item{ flex: 0 0 100%; }
.news__link{ display: block; }

.news__thumb{
  width: 100%;
  aspect-ratio: 316 / 161;
  margin-bottom: 18px;
}

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

.news__date{
  display: block;
  color: #bbb;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
}

.news__desc{
  color: #4A4A54;
  font-size: 15px;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.news__btn{
  position: absolute;
  top: 112px;
  transform: translateY(-50%);
  width: 24px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  z-index: 2;
}

.news__btn span{
  display: block;
  width: 24px;
  height: 24px;
  border-top: 1px solid #30303B;
  border-right: 1px solid #30303B;
}

.news__btn--prev{ left: -26px; }
.news__btn--prev span{ transform: rotate(-135deg); }
.news__btn--next{ right: -26px; }
.news__btn--next span{ transform: rotate(45deg); }

@media (min-width: 769px){
  .section--news .section__title{ margin-bottom: 58px; }
  .news__viewport{ overflow: visible; }

  .news__track{
    display: flex;
    gap: 26px;
    transform: none !important;
  }

  .news__item{
    flex: 0 0 calc((100% - 52px) / 3);
    width: calc((100% - 52px) / 3);
    min-width: 0;
  }

  .news__date{
    font-size: 15px;
    margin-bottom: 10px;
  }

  .news__desc{
    font-size: 15px;
    line-height: 1.8;
  }

  .news__btn{ display: none; }
}

@media (max-width: 768px){
  .section--news{
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .section--news .section__title{ margin-bottom: 28px; }

  .news{
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    --news-side-gap: 56px;
    --news-side-peek: 22px;
  }

  .news__viewport{
    width: 100%;
    overflow: hidden;
  }

  .news__track{
    display: flex;
    gap: 0;
    transition: transform .35s ease;
    will-change: transform;
  }

  .news__item{
    flex: 0 0 100vw;
    width: 100vw;
  }

  .news__thumb{
    width: calc(100vw - (var(--news-side-gap) * 2));
    margin: 0 auto 16px;
    background: #cfcfcf;
    position: relative;
  }

  .news__thumb::before,
  .news__thumb::after{
    content: "";
    position: absolute;
    top: 0;
    width: var(--news-side-peek);
    height: 100%;
    background: #cfcfcf;
  }

  .news__thumb::before{ left: calc(var(--news-side-gap) * -1); }
  .news__thumb::after{ right: calc(var(--news-side-gap) * -1); }

  .news__date,
  .news__desc{
    width: calc(100vw - (var(--news-side-gap) * 2));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .news__date{
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .news__desc{
    font-size: 15px;
    line-height: 1.6;
  }

  .news__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 70px;
    width: 24px;
    height: 40px;
    z-index: 3;
  }

  .news__btn--prev{ left: 34px; }
  .news__btn--next{ right: 34px; }
}

/* =========================================================
  Company shared block
========================================================= */
.company-def{
  border-top: none;
  background: transparent;
}

.company-def .def__row{
  display: table;
  align-items: start;
  padding: 0 0 26px;
}

.company-def .def__row:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
}

.company-def .def__row:last-child .def__dt,
.company-def .def__row:last-child .def__dd{
  padding-bottom: 0;
  border-bottom: none;
}

.company-def .def__dt{
  width: 207px;
  display: table-cell;
  color: var(--accent);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0;
  padding: 0 24px 24px 24px;
  border-bottom: 1px solid var(--accent);
}

.company-def .def__dd{
  display: table-cell;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
  padding: 0 24px 24px 24px;
  border-bottom: 1px solid #ececed;
}

.company-def--summary .def__row{ width: 700px; }
.company-def--full .def__row{ width: 100%; }

#company{
  position: relative;
  background: #F4F6F6;
  padding-top: 150px;
  padding-bottom: 88px;
  overflow: visible;
}

#company .container{ position: relative; }

#company .section__title{
  position: absolute;
  top: -202px;
  left: 20px;
  display: inline-block;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 80px;
  line-height: 1;
  letter-spacing: .02em;
  color: #000;
  z-index: 2;
}

.company-page{
  position: relative;
  background: #F4F6F6;
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: visible;
}

.company-page .container{ position: relative; }

.company-page .section__title{
  position: absolute;
  top: -202px;
  left: 0;
  margin: 0;
  color: #000;
  z-index: 2;
}

.company-profile{
  margin-top: 70px;
}

.company-profile__inner{
  background: #fff;
  padding: 62px 64px 66px;
  display: grid;
  grid-template-columns: 210px 1fr;
  column-gap: 48px;
}

.company-profile__head{
  padding-right: 28px;
  border-right: 1px solid #e5e5e5;
}

.company-profile__label{
  margin: 0 0 18px;
  color: #EA5504;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.company-profile__name{
  margin: 0 0 8px;
  color: #4A4A54;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.company-profile__kana{
  margin: 0;
  color: #4A4A54;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.company-profile__body{
  color: #30303B;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.15;
}

.company-profile__body p + p{ margin-top: 28px; }

/* =========================================================
  Access
========================================================= */
.section-access{ background: #efefef; }

.access{
  display: grid;
  grid-template-columns: 60.714% 39.286%;
  min-height: 710px;
}

.access__content{
  background: #4A4A54;
  color: #fff;
}

.access__inner{
  max-width: 640px;
  margin: 0 auto;
  padding: 110px 40px 10px;
}

.access .section__title{
  margin: 0 0 30px;
  color: #72727A;
}

.access__address{ margin-bottom: 86px; }

.access__zip,
.access__building{
  margin: 0;
  color: #fff;
  font-style: normal;
}

.access__zip{
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0;
  margin-bottom: 6px;
  font-weight: 400;
}

.access__building{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .06em;
}

.access__info{
  max-width: 514px;
  background: #30303B;
  padding: 32px 42px 32px;
}

.access__list li{
  position: relative;
  margin: 0 0 5px;
  padding-left: 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.access__list li:last-child{ margin-bottom: 0; }

.access__list li::before{
  content: "";
  position: absolute;
  top: .82em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ea5504;
  transform: translateY(-50%);
}

.access__map{ min-width: 0; }

.access__map-inner{
  width: 100%;
  height: 100%;
  min-height: 710px;
  filter: grayscale(100%);
  overflow: hidden;
}

.access__map-inner iframe{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 710px;
  border: 0;
  filter: grayscale(1) brightness(1.05) contrast(0.95);
}

/* =========================================================
  Contact
========================================================= */
.section-contact{
  background: #fff;
  padding: 82px 0 102px;
}

.section-contact .container{
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-contact .section__title{
  margin: 0 0 98px;
  color: #000;
}

.contact-lead{ margin-bottom: 62px; }

.contact-lead p{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #4A4A54;
}

.contact-form{
  max-width: 712px;
}

.contact-form__row{ margin-bottom: 34px; }
.contact-form__row:last-of-type{ margin-bottom: 58px; }

.contact-form__label{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.contact-form__required{
  color: #EA5504;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  flex: 0 0 auto;
}

.contact-form__text{
  color: #30303B;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-form__input,
.contact-form__textarea{
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #ededed;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 15px;
  color: #30303B;
  padding: 0 18px;
}

.contact-form__input{ height: 58px; }

.contact-form__textarea{
  height: 58px;
  padding-top: 16px;
  resize: vertical;
}

.contact-note{
  margin: 0 0 34px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #30303B;
}

.contact-note a{
  color: #EA5504;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.contact-submit{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 200px;
  height: 54px;
  padding: 0 22px 0 28px;
  border: 0;
  border-radius: 27px;
  background: #EA5504;
  color: #fff;
  cursor: pointer;
  transition: opacity .25s ease;
}

.contact-submit:hover{ opacity: .85; }

.contact-submit__icon,
.contact-submit__arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex: 0 0 auto;
}

.contact-submit__text{
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
}

.contact-submit__arrow svg{
  width: 14px;
  height: auto;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sp-only{ display: none; }

/* =========================================================
  Vision
========================================================= */
.vision{
  padding: 130px 0 120px;
  background:
    linear-gradient(
      to bottom,
      transparent 0,
      transparent 66%,
      #ffffff 66%,
      #ffffff 100%
    ),
    url("../images/company/bg.jpg") center top / cover no-repeat;
}

.vision__inner{ text-align: center; }

.vision__lead{
  margin: 0 0 14px;
  color: #30303B;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.vision__title{
  margin: 0;
  color: #30303B;
  font-family: "Outfit", sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.vision__message{ margin-top: 72px; }

.vision__message p{
  margin: 0;
  color: #30303B;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
}

.vision__sublead{
  position: relative;
  display: inline-block;
  margin: 96px 0 0;
  padding: 0 70px;
  color: #EA5504;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.vision__sublead::before,
.vision__sublead::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: #EA5504;
  transform: translateY(-50%);
}

.vision__sublead::before{ left: 0; }
.vision__sublead::after{ right: 0; }

.vision__items{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.vision__circle{
  width: 240px;
  height: 240px;
  border: 1px solid #4A4A54;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
}

.vision__icon{
  width: auto;
  height: 48px;
  margin-bottom: 24px;
}

.vision__itemText{
  margin: 0;
  color: #30303B;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.vision__foot{ margin-top: 48px; }

.vision__foot p{
  margin: 0;
  color: #30303B;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.2;
}

/* =========================================================
  Recruit guide
========================================================= */
.recruit-guide{
  background: #30303B;
}

.recruit-guide .container{
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 20px;
}

.recruit-guide__link{
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  text-decoration: none;
}

.recruit-guide__text{
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.recruit-guide__circle{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #EA5504;
}

.recruit-guide__circle svg{
  width: 14px;
  height: auto;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.recruit-guide__link:hover{ opacity: .85; }

/* =========================================================
  Footer
========================================================= */
.footer{
  background: #4A4A54;
  color: #fff;
}

.footer .container{
  max-width: 1040px;
  margin: 0 auto;
  padding: 126px 20px 136px;
}

.footer__logo{
  margin-bottom: 80px;
  fill: #EA5504;
}

.footer__logo path{ fill: #EA5504; }

.footer__logo-svg{
  display: block;
  width: 440px;
  max-width: 100%;
  height: auto;
  fill: #EA5504;
}

.footer-nav{ margin-bottom: 96px; }

.footer-nav__list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 120px;
  row-gap: 26px;
  max-width: 670px;
}

.footer-nav__item{ min-width: 0; }

.footer-nav__link{
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: baseline;
  column-gap: 22px;
  color: #fff;
  text-decoration: none;
}

.footer-nav__en{
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  color: #8E8E94;
  letter-spacing: -0.02em;
}

.footer-nav__ja{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.footer-nav__link:hover .footer-nav__en,
.footer-nav__link:hover .footer-nav__ja{ opacity: .8; }

.footer__copyright{
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

/* =========================================================
  Responsive
========================================================= */
@media (max-width: 768px){
  .header__logo{ font-size: 18px; }

  #company{
    padding-top: 86px;
    padding-bottom: 60px;
  }

  #company .section__title{
    top: -126px;
    left: 20px;
  }

  .company-page{
    padding-top: 86px;
    padding-bottom: 60px;
  }

  .company-page .section__title{
    top: -126px;
    left: 20px;
  }

  .company-def .def__row{
    width: 100% !important;
    grid-template-columns: 1fr;
    row-gap: 0;
    padding: 0 0 22px;
  }

  .company-def .def__dt{ border-bottom: none; }

  .company-def .def__dt,
  .company-def .def__dd{
    width: 100%;
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .company-def .def__dt{
    font-size: 15px;
    padding: 0 0 12px 0;
  }

  .company-def .def__dd{
    font-size: 15px;
    line-height: 1.9;
    padding-bottom: 10px;
  }

  .company-profile{ margin-top: 44px; }

  .company-profile__inner{
    padding: 34px 24px 38px;
    display: block;
  }

  .company-profile__head{
    padding-right: 0;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .company-profile__label{
    margin-bottom: 12px;
    font-size: 15px;
  }

  .company-profile__name{
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 1.4;
  }

  .company-profile__kana{ font-size: 15px; }

  .company-profile__body{
    font-size: 15px;
    line-height: 2;
  }

  .company-profile__body p + p{ margin-top: 20px; }

  .access{
    display: block;
    min-height: 0;
  }

  .access__inner{
    max-width: none;
    padding: 46px 24px 42px;
  }

  .access__address{ margin-bottom: 44px; }

  .access__zip{
    font-size: 16px;
    line-height: 2;
    margin-bottom: 2px;
  }

  .access__building{
    font-size: 17px;
    line-height: 2;
    letter-spacing: .04em;
  }

  .access__info{
    max-width: none;
    padding: 18px 20px 16px;
  }

  .access__list li{
    font-size: 13px;
    line-height: 2.1;
    padding-left: 18px;
    margin-bottom: 6px;
  }

  .access__list li::before{
    width: 7px;
    height: 7px;
    top: .95em;
  }

  .access__map-inner,
  .access__map-inner iframe{
    min-height: 360px;
    height: 360px;
  }

  .section-contact{
    padding: 50px 0;
  }

  .section-contact .container{ padding: 0 24px; }
  .section-contact .section__title{ margin-bottom: 54px; }
  .contact-lead{ margin-bottom: 38px; }

  .contact-lead p{
    font-size: 16px;
    line-height: 1.85;
  }

  .contact-form{ max-width: none; }
  .contact-form__row{ margin-bottom: 26px; }
  .contact-form__row:last-of-type{ margin-bottom: 54px; }

  .contact-form__label{
    gap: 10px;
    margin-bottom: 10px;
    align-items: flex-start;
  }

  .contact-form__required,
  .contact-form__text{
    font-size: 15px;
    line-height: 1.5;
  }

  .contact-form__input,
  .contact-form__textarea{
    font-size: 15px;
    padding: 0 14px;
  }

  .contact-form__input{ height: 50px; }

  .contact-form__textarea{
    height: 58px;
    padding-top: 16px;
  }

  .contact-note{
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.9;
  }

  .contact-submit{
    min-width: 192px;
    height: 54px;
    padding: 0 20px 0 24px;
  }

  .contact-submit__text{
    font-size: 18px;
    letter-spacing: 0.16em;
  }

  .contact-submit__arrow{ font-size: 22px; }
  .sp-only{ display: inline; }

  .vision{
    padding: 50px 0 66px;
    background:
      linear-gradient(
        to bottom,
        transparent 0,
        transparent 50%,
        #ffffff 50%,
        #ffffff 100%
      ),
      url("../images/company/bg.jpg") center top / cover no-repeat;
  }

  .vision__lead{
    margin-bottom: 10px;
    font-size: 15px;
  }

  .vision__title{
    font-size: 60px;
  }

  .vision__message{
    margin-top: 44px;
  }

  .vision__message p{
    font-size: 15px;
    line-height: 2;
  }

  .vision__sublead{
    margin-top: 58px;
    padding: 0 32px;
    font-size: 18px;
    line-height: 1.8;
    font-feature-settings: "palt";
  }

  .vision__sublead::before,
  .vision__sublead::after{
    width: 28px;
  }

  .vision__items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: start;
    column-gap: 22px;
    row-gap: 0;
    max-width: 460px;
    margin: 28px auto 0;
  }

  .vision__item:nth-child(1){
    grid-column: 1 / 3;
  }

  .vision__circle{
    width: 168px;
    height: 168px;
    padding: 10px;
  }

  .vision__icon{
    height: 38px;
    margin-bottom: 18px;
  }

  .vision__itemText{
    font-size: 16px;
    line-height: 1.8;
  }

  .vision__foot{
    margin-top: 34px;
  }

  .vision__foot p{
    font-size: 15px;
    line-height: 2;
    font-feature-settings: "palt";
  }

  .recruit-guide .container{
    padding: 40px 24px;
    text-align: center;
  }

  .recruit-guide__text{
    font-size: 18px;
    line-height: 1.4;
  }

  .recruit-guide__circle{
    width: 48px;
    height: 48px;
  }

  .footer .container{
    padding: 80px 20px 64px;
  }

  .footer__logo{ margin-bottom: 44px; }
  .footer__logo-svg{ width: 220px; }
  .footer-nav{ margin-bottom: 52px; }

  .footer-nav__list{
    display: block;
    max-width: none;
  }

  .footer-nav__item{ margin-bottom: 20px; }
  .footer-nav__item:last-child{ margin-bottom: 0; }

  .footer-nav__link{
    display: grid;
    grid-template-columns: 108px 1fr;
    column-gap: 18px;
  }

  .footer-nav__en{ font-size: 20px; }
  .footer-nav__ja{ font-size: 15px; }

  .footer__copyright{
    font-size: 12px;
    line-height: 1.8;
    font-feature-settings: "palt";
  }
}

/* =========================================================
  CONTENTS PAGE
========================================================= */
.contents-page{
  background: #fff;
}

.contents-archive{
  padding: 93px 0 190px;
}

.contents-archive__container{
  max-width: 1040px;
}

.contents-archive__title{
  margin: 0;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contents-archive__nav{
  display: flex;
  gap: 26px;
  margin-top: 80px;
}

.contents-switch{
  display: inline-flex;
  align-items: center;
  background: #30303B;
  border-radius: 999px;
  text-decoration: none;
  height: 54px;
  padding-left: 28px;
  padding-right: 0;
  position: relative;
  width: 220px;
  margin-top: 50px;
}

.contents-switch__text{
  color: #fff;
  font-size: 18px;
  letter-spacing: -.03em;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
}

.contents-switch__circle{
  position: absolute;
  top: 0;
  right: -1px;
  width: 54px;
  height: 54px;
  margin-left: 20px;
  background: #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contents-switch__arrow svg{
  width: 10px;
  height: auto;
  fill:#fff;
}

.contents-block{
  margin-top: 130px;
}

.contents-block2{
  margin-top: 90px;
}

.contents-block + .contents-block{
  margin-top: 200px;
}

.contents-block__head{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 80px;
}

.contents-block__title{
  margin: 0;
  flex: 0 0 auto;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.contents-block__head::after{
  content: "";
  display: block;
  height: 1px;
  background: #000;
  flex: 1 1 auto;
}

.contents-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 80px;
}

.book-card{
  min-width: 0;
}

.book-card__title{
  margin: 0 0 18px;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.book-card__image{
  display: block;
  width: 100%;
  max-width: 190px;
  margin: 0 auto;
}

.book-card__image img{
  display: block;
  width: 100%;
  height: auto;
}

.book-card__desc{
  margin: 18px 0 16px;
  color: #848484;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.book-card__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 230px;
  width: 100%;
  height: 48px;
  margin: 0 auto;
  border: 1px solid #EA5504;
  border-radius: 999px;
  color: #EA5504;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.book-card__btn:hover{
  opacity: 1;
  background: #EA5504;
  color: #fff;
}

/* =========================================================
  PRIVACY POLICY PAGE
========================================================= */
.contents-policy{
  padding: 93px 0 100px;
}

.contents-policy__container{
  max-width: 1040px;
}

.contents-policy__title{
  margin: 0;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contents-txt {
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 60px;
}

.contents-txt + h2 {
  margin-top: 40px;
}

.list__line {
  list-style: none;
  padding-left: 0;
  margin-left: 1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.list__line li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.list__line li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 2px;
  background-color: #000;
}

/* =========================================================
  SP
========================================================= */
@media (max-width: 768px){
  .contents-archive{
    padding: 52px 0 80px;
  }

  .contents-archive__title{
    font-size: 52px;
    line-height: 1.06;
  }

  .contents-archive__nav{
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
  }

  .contents-switch{
    width: 48%;
    height: 54px;
    padding-left: 18px;
    margin-top: 30px;
  }

  .contents-switch__text{
    font-size: 16px;
  }

  .contents-block{
    margin-top: 56px;
  }

  .contents-block2{
    margin-top: 40px;
  }

  .contents-block + .contents-block{
    margin-top: 80px;
  }

  .contents-block__head{
    gap: 18px;
    margin-bottom: 34px;
  }

  .contents-block__title{
    font-size: 32px;
  }

  .contents-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 38px;
  }

  .book-card__title{
    margin-bottom: 15px;
    font-size: 15px;
  }

  .book-card__image{
    max-width: 150px;
  }

  .book-card__desc{
    margin: 17px 0 15px;
    font-size: 15px;
  }

  .book-card__btn{
    width: 100%;
    height: 44px;
    font-size: 16px;
  }
  
  .contents-policy{
    padding: 52px 0 80px;
  }

  .contents-policy__title{
    font-size: 46px;
    line-height: 1.06;
  }
  
  .contents-txt {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .contents-txt + h2 {
    margin-top: 20px;
  }

}