@charset "UTF-8";
/*===========================
reset style
===========================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  color: #000000;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

.l-inner {
  width: 100%;
  max-width: 1299px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 23px;
  border-bottom: 1px solid #FFFFFF;
}

.l-header__logo {
  line-height: 1;
}
.l-header__logo img {
  display: block;
  width: 226px;
  height: 35px;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 70px;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 52px;
}

.l-header__nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.l-header__nav-link:hover {
  opacity: 0.7;
}

.l-header__nav-link.is-disabled {
  opacity: 0.4;
  cursor: default;
}

.l-header__nav-link.is-disabled:hover {
  opacity: 0.4;
}

.l-header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 52px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: opacity 0.3s;
}
.l-header__contact:hover {
  opacity: 0.7;
}

.l-header__hamburger {
  display: none;
}

.l-header__hamburger-bar {
  display: block;
  width: 40px;
  height: 1px;
  background: #ffffff;
}
.l-header__hamburger-bar + .l-header__hamburger-bar {
  margin-top: 9px;
}

@media screen and (min-width: 768px) and (max-width: 850px) {
  .l-header__nav {
    gap: 56px;
  }
  .l-header__nav-list {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 56px;
    padding: 0 20px;
  }
  .l-header__logo img {
    width: 130px;
    height: auto;
  }
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: block;
    width: 100%;
    height: 100%;
    padding: 107px 43px 0 52px;
    background: #ffffff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .l-header.is-open .l-header__nav {
    opacity: 1;
    visibility: visible;
  }
  .l-header__nav-list {
    display: block;
    border-top: 1px solid #c0c0c0;
  }
  .l-header__nav-item {
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid #c0c0c0;
  }
  .l-header__nav-link {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
  }
  .l-header__nav-link.is-disabled,
  .l-header__nav-link.is-muted {
    opacity: 1;
    color: #c8c8c8;
  }
  .l-header__nav-link.is-disabled:hover,
  .l-header__nav-link.is-muted:hover {
    opacity: 1;
  }
  .l-header__contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    height: 80px;
    border: none;
    border-bottom: 1px solid #c0c0c0;
    border-radius: 0;
    background: transparent;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
  }
  .l-header__hamburger {
    position: relative;
    z-index: 30;
    display: block;
  }
  .l-header__hamburger-bar {
    transition: transform 0.3s ease;
  }
  .l-header.is-open .l-header__hamburger-bar:first-child {
    transform: translateY(5px) rotate(25deg);
  }
  .l-header.is-open .l-header__hamburger-bar:last-child {
    transform: translateY(-5px) rotate(-25deg);
  }
}
/* 下層ページのヘッダー。
   TOPは写真の上に重なる透過ヘッダーだが、こちらは白背景で通常の流れに置く。
   高さ・ロゴ寸法・左右余白はTOPと共通で、色だけが変わる */
body.is-about .l-header {
  position: relative;
  background: #ffffff;
}

body.is-about .l-header__hamburger-bar {
  background: #000000;
}

/* 文字色とお問い合わせボタンはPC幅のときだけ。
   SPではドロワーになり、見た目が全ページ共通になるため、
   ここでページ別の色を当てると打ち消せなくなる */
@media screen and (min-width: 768px) {
  body.is-about .l-header__nav-link {
    color: #000000;
  }
  body.is-about .l-header__nav-link.is-disabled {
    opacity: 0.3;
  }
  body.is-about .l-header__nav-link.is-disabled:hover {
    opacity: 0.3;
  }
  body.is-about .l-header__contact {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
  }
}
.l-footer {
  background: #ffffff;
}

.l-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 936px;
  margin: 0 auto;
  padding: 43px 20px 41px;
}

.l-footer__company {
  display: flex;
  align-items: center;
  gap: 30px;
}

.l-footer__logo {
  width: 98px;
  height: 103px;
}

.l-footer__name {
  font-size: 20px;
  line-height: 1.5;
}

.l-footer__place {
  font-size: 16px;
  line-height: 1.5;
}

.l-footer__nav-list {
  display: flex;
  align-items: center;
}
.l-footer__nav-list + .l-footer__nav-list {
  margin-top: 10px;
}

.l-footer__nav-item {
  display: flex;
  align-items: center;
}

.l-footer__nav-item + .l-footer__nav-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  margin: 0 18px;
  background: #000000;
}

.l-footer__nav-link {
  font-size: 14px;
  line-height: 1.5;
  transition: opacity 0.3s;
}
.l-footer__nav-link:hover {
  opacity: 0.7;
}
.l-footer__nav-link-sub {
  font-size: 12px;
}

.l-footer__nav-link.is-disabled {
  opacity: 0.4;
  cursor: default;
}

.l-footer__nav-link.is-disabled:hover {
  opacity: 0.4;
}

.l-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 83px;
  background: #292929;
  color: #999999;
  font-size: 11px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    padding: 57px 0 35px;
  }
  .l-footer__company {
    flex-direction: column;
    gap: 37px;
    text-align: center;
  }
  .l-footer__logo {
    width: 121px;
    height: 127px;
  }
  .l-footer__nav {
    margin-top: 39px;
  }
  .l-footer__nav-link {
    font-size: 13px;
  }
  .l-footer__nav-link-sub {
    font-size: 11px;
  }
  .l-footer__nav-item + .l-footer__nav-item::before {
    margin: 0 1em;
  }
}
.l-footcontact {
  padding: 55px 0 48px;
  background: #cc1414;
  text-align: center;
}

.l-footcontact__title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.l-footcontact__title br {
  display: none;
}

.l-footcontact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 50px;
  margin: 43px auto 0;
  border-radius: 3px;
  background: #ffffff;
  color: #cc1414;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.l-footcontact__button:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .l-footcontact {
    padding: 51px 0 49px;
  }
  .l-footcontact__title {
    font-size: 24px;
    line-height: 1.58;
  }
  .l-footcontact__title br {
    display: inline;
  }
  .l-footcontact__button {
    width: 286px;
    margin-top: 28px;
  }
}
.l-pankuzu {
  background: #8d8d8d;
}

.l-pankuzu__list {
  display: flex;
  align-items: center;
  height: 24px;
  padding-left: 30px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.l-pankuzu__item + .l-pankuzu__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  margin: 0 10px;
  background: #ffffff;
}

.l-pankuzu__item {
  display: flex;
  align-items: center;
}

.l-pankuzu__link {
  color: #ffffff;
  transition: opacity 0.3s;
}
.l-pankuzu__link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .l-pankuzu__list {
    height: 20px;
    padding-left: 20px;
    font-size: 10px;
  }
}
.is-hidden-tablet {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-hidden-tablet {
    display: block;
  }
}

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

.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.js-fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

/*===========================
p-policy : 個人情報保護方針
===========================*/
body.is-privacypolicy {
  color: #393838;
}

body.is-privacypolicy .l-inner {
  max-width: 1240px;
}

.p-policy {
  padding: 80px 0 50px;
}
.p-policy .l-inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-policy {
    padding: 32px 0 79px;
  }
}

.p-policy-label {
  color: #cc1414;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-policy-title {
  margin-top: 22px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-policy-title {
    font-size: 28px;
  }
}

.p-policy-text {
  margin-top: 22px;
  font-weight: 400;
  font-size: 16px;
  line-height: 178%;
  text-align: justify;
}
.p-policy-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 178%;
  text-align: justify;
  margin-top: 12px;
}
.p-policy-text h3 + p {
  margin-top: 12px;
}
.p-policy-text ol {
  margin-top: 12px;
  list-style: decimal;
  margin-left: 24px;
}
.p-policy-text p + p {
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .p-policy-text {
    font-size: 16px;
    line-height: 178%;
  }
}