@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 1280px;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .inner {
    padding: 0;
  }
}

.container {
  padding: 64px 0;
}
@media (max-width: 767px) {
  .container {
    padding: 60px 0;
  }
}

/* 位置
------------------------------*/
.u-center {
  margin: 0 auto;
  text-align: center;
}

/* タイトル
------------------------------*/
.c-section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}

/* 下層ページタイトル
------------------------------*/
.c-page-header {
  background: #111;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .c-page-header {
    padding: 16px 0;
  }
}

.c-page-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .c-page-title {
    font-size: 2.8rem;
  }
}

/* ボタン
------------------------------*/
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  max-width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background: #938031;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  padding: 1em 0;
}
.c-button::after {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_arrow.png) no-repeat center center/contain;
  width: 12px;
  aspect-ratio: 12/24;
  margin-left: 1.333em;
}
@media (max-width: 767px) {
  .c-button {
    font-size: 1.6rem;
  }
}

.c-smple-button {
  display: inline-block;
  width: 170px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5555555556;
  color: #fff;
  border-radius: 8px;
  border: 1px solid #fff;
  padding: 0.889em 0;
  text-align: center;
}
@media (max-width: 767px) {
  .c-smple-button {
    font-size: 4.8vw;
    width: 9.7em;
  }
}

.u-button--center {
  margin: 0 auto;
}

/*------------------------------
header
------------------------------*/
header {
  background: #000;
  padding: 20px 0;
}
@media (max-width: 767px) {
  header {
    padding: 13px 0;
    height: 50px;
  }
}

@media (min-width: 768px) {
  .header__inner {
    width: 100%;
    max-width: 92%;
  }
}
@media (max-width: 767px) {
  .header__inner {
    max-width: 95%;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .header__content {
    padding: 0;
  }
}

.header__logo {
  width: min(240px, 22.1354166667vw);
}
@media (max-width: 767px) {
  .header__logo {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__menu {
  display: flex;
}
.header__menu li:nth-child(n+2) {
  margin-left: 24px;
}
.header__menu li a {
  border-bottom: 2px solid transparent;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
.header__menu li a.header__menu--current {
  border-color: #fff;
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  margin-right: 2.5%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50px;
  right: 0;
  background: #000;
  padding: 20px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

.drawer-menu li {
  border-bottom: 1px solid #fff;
}
.drawer-menu li a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  font-family: "Roboto", sans-serif;
  padding: 20px 10px;
  position: relative;
}
.drawer-menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.png) no-repeat center center/contain;
  width: 12px;
  aspect-ratio: 25/48;
}

/*------------------------------
contact-banner
------------------------------*/
.contact-banner {
  padding: 64px 0;
  background: #000;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-banner {
    padding: 64px 0 20px;
  }
}

.contact-banner__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .contact-banner__heading {
    font-size: 2.6rem;
    line-height: 1.3846153846;
  }
}

.contact-banner__text {
  font-size: min(1.8rem, 2.0833333333vw);
  font-weight: 400;
  line-height: 1.5555555556;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .contact-banner__text {
    font-size: 1.5rem;
    margin-top: 26px;
    line-height: 1.8;
  }
}

.contact-banner__button {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .contact-banner__button {
    margin-top: 26px;
  }
}

/*------------------------------
footer
------------------------------*/
footer {
  padding: 48px 0;
  background: #000;
  color: #fff;
}
@media (max-width: 767px) {
  footer {
    padding: 48px 0 16px;
  }
}

.footer__content {
  display: flex;
  padding-bottom: 42px;
  border-bottom: 1px solid #1F2937;
}
@media (max-width: 767px) {
  .footer__content {
    display: block;
    padding-bottom: 36px;
  }
}

.footer__brand {
  width: 33%;
}
@media (max-width: 767px) {
  .footer__brand {
    width: 100%;
  }
}

.footer__logo {
  width: 240px;
  max-width: 100%;
}

.footer__description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 16px;
}

.footer__sns {
  margin-top: 16px;
  display: flex;
}
.footer__sns a {
  display: inline-block;
  width: 40px;
}
.footer__sns a:nth-child(n+2) {
  margin-left: 16px;
}

.footer__nav {
  width: 22.8%;
  margin-left: 32px;
}
@media (max-width: 767px) {
  .footer__nav {
    width: 100%;
    margin-left: 0;
    margin-top: 42px;
  }
}

.footer__label {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5555555556;
}

.footer__menu {
  margin-top: 16px;
}
.footer__menu li a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .footer__menu {
    margin-top: 1%;
  }
  .footer__menu li a {
    line-height: 1.7;
  }
}

.footer__infomation {
  margin-left: 3%;
}
@media (max-width: 767px) {
  .footer__infomation {
    margin-left: 0;
    margin-top: 4%;
  }
}

.footer__infomation-list {
  margin-top: 16px;
}
.footer__infomation-list li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  padding-left: 1.563em;
}
.footer__infomation-list li:nth-child(n+2) {
  margin-top: 0.5em;
}
.footer__infomation-list li img {
  position: absolute;
  top: 4px;
  left: 0;
  width: 1.25em;
  margin-right: 0.5em;
}
@media (max-width: 767px) {
  .footer__infomation-list {
    margin-top: 2%;
  }
  .footer__infomation-list li:nth-child(n+2) {
    margin-top: 0.2em;
  }
}

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__bottom {
    padding-top: 16px;
    display: block;
  }
}

.footer__copyright {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    text-align: center;
  }
}

.footer__legal-menu {
  display: flex;
}
.footer__legal-menu li:nth-child(n+2) {
  margin-left: 16px;
}
.footer__legal-menu li a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
}
@media (max-width: 767px) {
  .footer__legal-menu {
    display: block;
  }
  .footer__legal-menu li {
    text-align: center;
  }
  .footer__legal-menu li:nth-child(n+2) {
    margin-left: 0;
  }
  .footer__legal-menu li a {
    font-size: 1.2rem;
  }
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}

.thanks__button {
  margin-top: 32px;
}