@charset "UTF-8";
/*===================================
共通
===================================*/
body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px; }

.col_blue {
  background-color: #24252D; }

.col_white {
  color: #fff; }

li {
  list-style: none; }
  li a {
    text-decoration: none; }

.ttl_Lv2 {
  text-align: center;
  font-size: 38px;
  padding-bottom: 60px; }
  @media (max-width: 767px) {
    .ttl_Lv2 {
      font-size: 24px;
      padding-bottom: 25px; } }

.ttl_Lv3 {
  font-size: 33px; }
  @media (max-width: 767px) {
    .ttl_Lv3 {
      font-size: 23px; } }

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

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

/*===================================
ヘッダー
===================================*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 45px;
  position: fixed;
  width: 100%;
  z-index: 999; }
  @media (min-width: 768px) and (max-width: 1081px) {
    .header {
      padding: 17px 20px; } }
  @media (max-width: 767px) {
    .header {
      padding: 15px; } }
  .header .logo {
    width: 350px; }
    @media (max-width: 767px) {
      .header .logo {
        width: 240px; } }

.header_list {
  display: none; }
  @media (min-width: 1081px) {
    .header_list {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 40%; } }

/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  /* 初期状態では画面の外に隠れている */
  width: 100%;
  height: 100%;
  background-color: #24252D;
  color: #333;
  transition: right 0.8s ease;
  /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 10; }
  @media (min-width: 1081px) {
    .menu {
      display: none; } }

/* メニューが開いているとき */
.menu.open {
  right: 0; }

/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 25px;
  right: 20px;
  width: 35px;
  cursor: pointer;
  z-index: 20; }
  @media (max-width: 767px) {
    .hamburger {
      top: 15px; } }

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  margin: 10px 0;
  transition: 1s; }

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px); }

.hamburger.active span:nth-child(2) {
  opacity: 0; }

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px); }

/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0 40px;
  margin-top: 22vh; }

.menu li {
  padding: 20px 0;
  border-bottom: 1px solid #9F815D; }

.menu li:last-child {
  border-bottom: none; }

.menu li a {
  color: #fff;
  text-decoration: none;
  display: block;
  text-align: center; }
  .menu li a .icon {
    margin: 0 auto; }

/*===================================
メインビジュアル画像
===================================*/
.slider {
  padding-top: 46px; }

/*===================================
企業理念
===================================*/
.company_wrap {
  padding: 60px 20px; }
  @media (max-width: 767px) {
    .company_wrap {
      padding: 25px 20px; } }
  .company_wrap .company_box {
    max-width: 845px;
    margin: 0 auto 45px;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .company_wrap .company_box {
        display: block; } }
    .company_wrap .company_box h3::after {
      content: "";
      display: block;
      /* インライン要素ではなくブロック要素として扱う */
      width: 55px;
      height: 2px;
      background-color: #9F815D;
      /* color はテキスト用なので、background-color を指定 */
      margin-top: 10px; }
      @media (max-width: 767px) {
        .company_wrap .company_box h3::after {
          width: 45px;
          margin-top: 5px; } }
    .company_wrap .company_box p {
      max-width: 550px;
      line-height: 2.5; }
      @media (max-width: 767px) {
        .company_wrap .company_box p {
          margin-top: 17px;
          line-height: 1.5; } }

/*===================================
お問い合わせ
===================================*/
.button {
  width: 420px;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .button {
      width: 330px; } }

.button_link {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: .5s; }

.button-text {
  font-size: 18px; }
  @media (max-width: 767px) {
    .button-text {
      font-size: 16px; } }

.bg_extend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border: solid 1px #9F815D;
  background-color: #9F815D;
  overflow: hidden;
  position: relative;
  z-index: 1; }
  .bg_extend::after {
    content: "";
    display: block;
    background-image: url("../img/home/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 20px;
    /* 適宜調整 */
    transition: 1.3s;
    opacity: 1; }
    @media (max-width: 767px) {
      .bg_extend::after {
        width: 25px;
        height: 25px; } }
  .bg_extend::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: -100%;
    top: 0;
    transition: 0.4s;
    z-index: -1; }
  .bg_extend:hover {
    color: #9F815D; }
  .bg_extend:hover::before {
    left: 0; }
  .bg_extend:hover::after {
    background-image: url("../img/home/arrow_hover.svg");
    opacity: 1;
    /* フェードアウト */ }

/*===================================
フッター
===================================*/
.footer {
  margin-top: 80px; }
  @media (max-width: 767px) {
    .footer {
      margin-top: 50px; } }
  .footer .footer_box {
    border-bottom: solid 1px #fff; }
  .footer .footer_wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 15px; }
    @media (min-width: 1081px) {
      .footer .footer_wrap {
        display: flex;
        align-items: center; } }
    .footer .footer_wrap dl {
      line-height: 1.8; }
      .footer .footer_wrap dl dt {
        font-size: 18px;
        font-weight: bold; }
        @media (max-width: 767px) {
          .footer .footer_wrap dl dt {
            font-size: 16px; } }
      .footer .footer_wrap dl dd {
        font-size: 14px; }
    .footer .footer_wrap .list_box {
      padding-top: 15px; }
      @media (min-width: 1081px) {
        .footer .footer_wrap .list_box {
          padding-left: 10vw;
          padding-top: 0; } }
      .footer .footer_wrap .list_box ul {
        display: flex;
        padding-top: 20px; }
        @media (max-width: 767px) {
          .footer .footer_wrap .list_box ul {
            display: block;
            padding-top: 15px; } }
        .footer .footer_wrap .list_box ul li {
          padding-right: 20px; }
          @media (max-width: 767px) {
            .footer .footer_wrap .list_box ul li {
              padding-top: 10px;
              font-size: 14px; } }
  .footer .copyright {
    padding: 10px 0;
    text-align: center; }
    .footer .copyright p {
      font-size: 14px; }
      @media (max-width: 767px) {
        .footer .copyright p {
          font-size: 12px; } }
