@charset "UTF-8";
/*
Theme Name: 土田造園
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *  base
 * ************************************************ */
html, html *, body, header, footer {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  /*サイト全体の基準となるフォントサイズ*/
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: #1d201f;
  font-family: var(--base_font_family_setting);
  font-size: 1.4rem;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 2;
  padding: 0;
  margin: 0;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}
@media print, screen and (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}

a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 960px) {
  a[href^="tel:"]:hover {
    opacity: unset;
    transition: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ************************************************
 *  共通クラス定義
 * *************************************************/
/* コンテンツ枠定義
---------------------------------------------------*/
#content-wrap {
  padding-top: 64px;
}
@media print, screen and (min-width: 960px) {
  #content-wrap {
    padding-top: 112px;
  }
}
#content-wrap.front {
  padding-top: 0;
}

.inner {
  container-type: inline-size;
  max-width: 1224px;
  padding: 0 5vw;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .inner {
    padding: 0 32px;
  }
}
.inner.short {
  max-width: 1024px;
}
.inner.medium {
  max-width: 1296px;
}
.inner.large {
  max-width: 1416px;
}

/* アンカーずれ補正
---------------------------------------------------*/
.anchor {
  display: block;
  padding-top: 64px;
  margin-top: -64px;
}
@media print, screen and (min-width: 960px) {
  .anchor {
    padding-top: 112px;
    margin-top: -112px;
  }
}

/* 明朝体
---------------------------------------------------*/
.mincho {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* flexクラス
---------------------------------------------------*/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/*  PC／SP切り替え
---------------------------------------------------*/
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* リンクボタン
---------------------------------------------------*/
a.more-btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: #939c95;
  color: #ffffff;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  a.more-btn:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: ripple 1.5s infinite;
    color: #fff;
  }
  a.more-btn:hover span::after {
    right: -8px;
  }
}
a.more-btn span {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 40px;
}
a.more-btn span::after {
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
  width: 25px;
  height: 8px;
  background: url(images/icon-arrow-white.svg) no-repeat center;
  transition: right 0.4s ease;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 #939c95;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(147, 156, 149, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(147, 156, 149, 0);
  }
}
/* 見出し
---------------------------------------------------*/
.section-ttl-container {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 768px) {
  .section-ttl-container {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl-container {
    margin-bottom: 24px;
  }
}
.section-ttl-container.center {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .section-ttl-container.center.tab-pc-left {
    text-align: left;
  }
}
.section-ttl-container.no-mb {
  margin-bottom: 0;
}

.page__ttl-wrapper {
  display: grid;
  place-items: center;
  height: 104px;
  background: url(images/page-ttl-bg.webp) no-repeat center;
  background-size: cover;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page__ttl-wrapper {
    height: 160px;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl-wrapper {
    height: 240px;
  }
}

.page__ttl-main {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  .page__ttl-main {
    font-size: 3.4rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl-main {
    font-size: 4.2rem;
  }
}
.page__ttl-main .small {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .page__ttl-main .small {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl-main .small {
    font-size: 2.6rem;
  }
}

.page__ttl-sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 4px;
}
@media print, screen and (min-width: 768px) {
  .page__ttl-sub {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl-sub {
    font-size: 1.7rem;
  }
}

.section-ttl-main {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  .section-ttl-main {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl-main {
    font-size: 3.8rem;
  }
}
.section-ttl-main.aboutUs {
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .section-ttl-main.aboutUs {
    margin-top: 16px;
  }
}
.section-ttl-main.aboutUs img {
  width: auto;
  height: 24px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .section-ttl-main.aboutUs img {
    height: 30px;
    margin: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl-main.aboutUs img {
    height: 36px;
  }
}
.section-ttl-main.season {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #B1AEAE;
  padding: 12px 0;
}
@media print, screen and (min-width: 768px) {
  .section-ttl-main.season {
    padding: 12px 8px;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl-main.season {
    padding: 16px 8px;
  }
}
.section-ttl-main.season span {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 768px) {
  .section-ttl-main.season span {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl-main.season span {
    font-size: 2.2rem;
  }
}
.section-ttl-main.maintenance {
  border-bottom: 1px solid #B1AEAE;
  padding: 12px 0;
}
@media print, screen and (min-width: 768px) {
  .section-ttl-main.maintenance {
    padding: 12px 8px;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl-main.maintenance {
    padding: 16px 8px;
  }
}
.section-ttl-main.--gray {
  color: #939c95;
}
.section-ttl-main.no-mb {
  margin-bottom: 0;
}

.section-ttl-sub {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  padding-bottom: 4px;
}
@media print, screen and (min-width: 960px) {
  .section-ttl-sub {
    font-size: 1.6rem;
  }
}

/* ぶら下げインデント
---------------------------------------------------*/
.hanging-indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* ************************************************
 *  ヘッダー
 * *************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  transition: transform 0.5s ease, background-color 0.5s ease;
  z-index: 9999;
}
@media print, screen and (min-width: 960px) {
  header {
    height: 112px;
  }
}
header.hidden {
  transform: translateY(-64px);
}
@media print, screen and (min-width: 960px) {
  header.hidden {
    transform: translateY(-120px);
  }
}
header.visible {
  background-color: #EEEEEC;
}
header.visible .logo-front-white {
  visibility: hidden;
  opacity: 0;
}
header.visible .logo-front-gray {
  visibility: visible;
  opacity: 1;
}
header.visible a:not(.header__contact-btn) {
  color: #1d201f;
}
header.open {
  background-color: #EEEEEC;
}
@media print, screen and (min-width: 960px) {
  header.open {
    background-color: transparent;
  }
}
header.open.hidden {
  transform: unset;
}
header.open.hidden .logo-front-white {
  visibility: hidden;
  opacity: 0;
}
header.open.hidden .logo-front-gray {
  visibility: visible;
  opacity: 1;
}
header.open a {
  color: #1d201f;
}
header.front-white a {
  color: #ffffff;
}
header.front-white.open .logo-front-white {
  visibility: hidden;
  opacity: 0;
}
header.front-white.open .logo-front-gray {
  visibility: visible;
  opacity: 1;
}
header.front-white.open a {
  color: #1d201f;
}
header .header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}
@media print, screen and (min-width: 960px) {
  header .header__inner {
    padding: 0 min(3vw, 40px);
  }
}

/* ロゴ
----------------------------------------------*/
.logo {
  position: relative;
  width: 200px;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .logo {
    width: min(26.4vw, 380px);
  }
}
@media print, screen and (min-width: 960px) {
  .logo a {
    transition: opacity 0.4s;
  }
  .logo a:hover {
    opacity: 0.6;
  }
}
.logo img {
  transition: visibility 0.5s ease, opacity 0.5s ease;
}

.logo-front-gray {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .g_nav {
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.header__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 64px);
  background-color: #EEEEEC;
  transition: all 0.5s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
}
@media print, screen and (min-width: 960px) {
  .header__nav {
    position: unset;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0 min(4vw, 2em);
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
}

@media print, screen and (min-width: 960px) {
  .header__nav-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    height: 100%;
  }
}

.header__content-nav {
  line-height: 1;
  padding: 0 5%;
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .header__content-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    order: 2;
    gap: 0 min(3.5vw, 2em);
    margin-top: 0;
    padding: 0;
  }
}
.header__content-nav li {
  border-bottom: 1px solid rgba(35, 24, 21, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header__content-nav li {
    border-bottom: none;
  }
}
.header__content-nav a {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  padding: 20px 0;
}
@media print, screen and (min-width: 960px) {
  .header__content-nav a {
    font-size: min(1.3vw, 1.7rem);
    padding: 0;
    transition: opacity 0.4s ease, color 0.4s ease;
  }
  .header__content-nav a:hover {
    opacity: 0.6;
  }
}

.header__sub-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  line-height: 1;
  padding: 0 5%;
}
@media print, screen and (min-width: 960px) {
  .header__sub-nav {
    flex-direction: row;
    align-items: center;
    gap: min(2vw, 32px);
    order: 1;
    padding: 0;
  }
}
.header__sub-nav li:first-child {
  border-bottom: 1px solid rgba(35, 24, 21, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header__sub-nav li:first-child {
    border-bottom: none;
  }
}
.header__sub-nav a {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  padding: 20px 0;
}
@media print, screen and (min-width: 960px) {
  .header__sub-nav a {
    font-size: min(1.1vw, 1.5rem);
    padding: 0;
    transition: color 0.4s ease;
  }
  .header__sub-nav a:not(.header__contact-btn):hover {
    color: #939c95;
  }
}
.header__sub-nav a.header__tel {
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  border: 1px solid rgba(35, 24, 21, 0.7);
  padding: 16px 0;
}
@media print, screen and (min-width: 960px) {
  .header__sub-nav a.header__tel {
    font-size: 1.7rem;
    text-align: left;
    border: none;
    padding: 0;
    transition: color 0.4s ease;
  }
}
.header__sub-nav a.header__tel span {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .header__sub-nav a.header__tel span {
    display: inline-block;
    font-size: 1.3rem;
  }
}

a.header__contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #1d201f;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  border: 1px solid #1d201f;
  padding: 16px 0;
  margin: 16px 5% 0;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
@media print, screen and (min-width: 960px) {
  a.header__contact-btn {
    font-size: min(1.3vw, 1.7rem);
    padding: 12px 28px;
    margin: 0;
  }
  a.header__contact-btn:hover {
    background-color: transparent;
    color: #1d201f;
  }
  a.header__contact-btn:hover path {
    fill: #1d201f;
  }
}
a.header__contact-btn path {
  transition: fill 0.4s ease;
}
@media print, screen and (min-width: 960px) {
  a.header__contact-btn.front-white {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
  }
  a.header__contact-btn.front-white:hover {
    background-color: #ffffff;
    color: #1d201f;
    border-color: #ffffff;
  }
  a.header__contact-btn.front-white:hover path {
    fill: #1d201f;
  }
}

header.open a.header__contact-btn {
  background-color: #1d201f;
  color: #ffffff;
}

/* ************************************************
 *  ハンバーガーメニュー関連
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(147, 156, 149, 0.15);
  border: 1px solid #939c95;
  border-radius: 3px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  text-align: center;
  transform: translateX(0);
}
@media print, screen and (min-width: 960px) {
  .menu-trigger {
    display: none;
  }
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  right: 7px;
  height: 1px;
  background-color: #939c95;
  transition: all 0.5s;
}
.menu-trigger span:nth-of-type(1) {
  top: 13px;
}
.menu-trigger span:nth-of-type(2) {
  top: 19px;
}
.menu-trigger span:nth-of-type(3) {
  top: 25px;
}
.menu-trigger.active span {
  background-color: #939c95;
}
.menu-trigger.active span:nth-of-type(1) {
  top: 11px;
  transform: translateY(8px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  top: 29px;
  transform: translateY(-10px) rotate(45deg);
}
.menu-trigger.front-white {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #ffffff;
}
.menu-trigger.front-white span {
  background-color: #ffffff;
}
.menu-trigger.front-white.active {
  background-color: rgba(147, 156, 149, 0.15);
  border: 1px solid #939c95;
}
.menu-trigger.front-white.active span {
  background-color: #939c95;
}
.menu-trigger p {
  position: absolute;
  top: 32px;
  width: 100%;
  color: #1d201f;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.5s;
}

/* ************************************************
 * googlemap
 * ************************************************ */
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 56.25%;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ************************************************
 * Movie
 * ************************************************ */
.movie-container {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
}
.movie-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ************************************************
 * 404
 * ************************************************ */
.notfound_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 68px;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    margin-top: 104px;
  }
}

.notfound_txt {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 2.4rem;
  }
}

.top-back {
  margin-top: 56px;
  padding-bottom: 12px;
}

/* ************************************************
 *  パンくずリスト
 * ************************************************ */
.breadcrumbs_wrapper {
  position: relative;
  width: 100%;
  background: #ffffff;
  font-size: 0.8rem;
  line-height: 1;
  text-align: left;
  padding-top: 56px;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding-top: 104px;
  }
}
.breadcrumbs_wrapper .bre {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  max-width: 1776px;
  padding: 16px 5vw;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper .bre {
    padding: 16px 32px;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    font-size: 1.2rem;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 1.2rem;
  }
}

/* ************************************************
 *  フッター
 * ************************************************ */
footer {
  margin-top: 56px;
}
@media print, screen and (min-width: 768px) {
  footer {
    margin-top: 72px;
  }
}
@media print, screen and (min-width: 960px) {
  footer {
    margin-top: 104px;
  }
}

/* 採用情報リンク
----------------------------------------*/
.footer__recruit {
  position: relative;
  height: 128vw;
  background: url(images/footer-recruit-bg-sp.webp) no-repeat center;
  background-size: cover;
  font-weight: 500;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .footer__recruit {
    background: url(images/footer-recruit-bg.webp) no-repeat center;
    background-size: cover;
    height: 35.5vw;
    max-height: 680px;
  }
}
.footer__recruit .footer__recruit-text {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: min(9vw, 140px);
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -55%);
  z-index: 1;
}
.footer__recruit a.footer__recruit-link {
  display: block;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 960px) {
  .footer__recruit a.footer__recruit-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.4s ease;
    z-index: -1;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__recruit a.footer__recruit-link {
    display: flex;
    align-items: center;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__recruit a.footer__recruit-link {
    position: relative;
    z-index: 0;
  }
  .footer__recruit a.footer__recruit-link:hover .arrow {
    margin-left: min(1.5vw, 20px);
  }
  .footer__recruit a.footer__recruit-link:hover::after {
    background-color: rgba(255, 255, 255, 0.25);
  }
}
.footer__recruit .footer__recruit-link-text {
  display: inline-block;
  color: #ffffff;
  line-height: 1.4;
  font-size: min(8.5vw, 80px);
  text-shadow: 0 0 8px rgba(29, 32, 31, 0.7);
  padding-right: min(5.7vw, 76px);
  margin: 9.5vw 0 0 5vw;
}
@media print, screen and (min-width: 768px) {
  .footer__recruit .footer__recruit-link-text {
    font-size: min(4.2vw, 80px);
    margin: 0 0 0 5vw;
  }
}
.footer__recruit .footer__recruit-link-text .arrow {
  display: inline-block;
  width: min(6vw, 56px);
  height: min(6vw, 56px);
  background: url(images/icon-arrow-circle-white2.svg) no-repeat center;
  background-size: contain;
  margin-left: 12px;
}
@media print, screen and (min-width: 960px) {
  .footer__recruit .footer__recruit-link-text .arrow {
    transition: margin-left 0.5s ease;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__recruit .footer__recruit-link-text .arrow {
    width: min(3vw, 56px);
    height: min(3vw, 56px);
  }
}

/* お問い合わせ
----------------------------------------*/
.footer__contact {
  background: url(images/footer-contact-bg-sp.webp) no-repeat center;
  background-size: cover;
  padding: 48px 0;
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  .footer__contact {
    background: url(images/footer-contact-bg.webp) no-repeat center;
    margin-top: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__contact {
    padding: 72px 0;
    margin-top: 48px;
  }
}
.footer__contact .footer__contact-box {
  background-color: #ffffff;
  padding: 32px 24px;
}
@media print, screen and (min-width: 960px) {
  .footer__contact .footer__contact-box {
    padding: 40px min(5vw, 64px);
  }
}
.footer__contact .footer__contact-text {
  line-height: 1.6;
  text-align: center;
  margin-top: 12px;
}

.footer__contact-btnContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1;
  margin-top: 24px;
}
@media print, screen and (min-width: 768px) {
  .footer__contact-btnContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 960px) {
  .footer__contact-btnContainer {
    display: grid;
    align-items: center;
    gap: 0;
    margin-top: 24px;
  }
}
.footer__contact-btnContainer .footer__contact-btn {
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .footer__contact-btnContainer .footer__contact-btn:nth-child(1) {
    grid-column: unset;
    padding-right: min(3.27vw, 40px);
  }
  .footer__contact-btnContainer .footer__contact-btn:nth-child(2) {
    border-left: 1px solid #1d201f;
    padding: 0 min(3.27vw, 40px);
  }
  .footer__contact-btnContainer .footer__contact-btn:nth-child(3) {
    padding-left: min(3.27vw, 40px);
  }
}
.footer__contact-btnContainer .tel-text {
  font-size: 1.8rem;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .footer__contact-btnContainer .tel-text {
    font-size: min(1.8vw, 2.2rem);
  }
}
.footer__contact-btnContainer .tel {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .footer__contact-btnContainer .tel {
    font-size: min(1.97vw, 2.4rem);
  }
}
.footer__contact-btnContainer .tel span {
  font-size: 3.2rem;
}
@media print, screen and (min-width: 960px) {
  .footer__contact-btnContainer .tel span {
    font-size: min(3.27vw, 4rem);
  }
}
.footer__contact-btnContainer .tel-time {
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .footer__contact-btnContainer .tel-time {
    font-size: min(1.31vw, 1.6rem);
  }
}
.footer__contact-btnContainer a.mail, .footer__contact-btnContainer a.line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 72px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .footer__contact-btnContainer a.mail, .footer__contact-btnContainer a.line {
    transition: opacity 0.4s ease;
    flex-direction: column;
    gap: 8px;
    height: 88px;
    font-size: min(1.64vw, 2rem);
  }
  .footer__contact-btnContainer a.mail:hover, .footer__contact-btnContainer a.line:hover {
    opacity: 0.6;
  }
}
.footer__contact-btnContainer a.mail {
  background-color: #939c95;
  color: #ffffff;
}
.footer__contact-btnContainer a.line {
  background-color: #DFEEDF;
  color: #1d201f;
}

/* 下部
----------------------------------------*/
.footer__bottom {
  background: #1d201f;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1344px;
  color: #ffffff;
  padding: 72px 5vw 32px;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 104px 32px 56px;
  }
}

/* 店舗情報
----------------------------------------*/
.footer__info {
  order: 2;
  max-width: 352px;
  text-align: center;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .footer__info {
    order: 1;
    width: 24vw;
    text-align: left;
    margin: 0;
  }
}
.footer__info .footer__logo {
  width: 312px;
}
@media print, screen and (min-width: 960px) {
  .footer__info .footer__logo {
    width: 100%;
    transition: opacity 0.4s;
  }
  .footer__info .footer__logo:hover {
    opacity: 0.6;
  }
}
.footer__info .footer__address {
  margin-top: 16px;
}
@media print, screen and (min-width: 960px) {
  .footer__info .footer__address {
    font-size: min(1.32vw, 1.6rem);
    margin-top: 24px;
  }
}

/* リンク
----------------------------------------*/
.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px 0;
  order: 1;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .footer__links {
    grid-template-columns: repeat(6, auto);
    gap: 0 min(2.8vw, 40px);
    order: 2;
  }
}
.footer__links a {
  color: #BABABA;
}
@media print, screen and (min-width: 960px) {
  .footer__links a {
    transition: opacity 0.4s;
  }
  .footer__links a:hover {
    opacity: 0.6;
  }
}
.footer__links .footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 960px) {
  .footer__links .footer__links-list {
    font-size: min(1.2vw, 1.4rem);
  }
}
.footer__links .footer__links-list li:first-child {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 960px) {
  .footer__links .footer__links-list li:first-child {
    font-size: min(1.32vw, 1.6rem);
  }
}
.footer__links .footer__links-list li:first-child a {
  color: #ffffff;
}
@media print, screen and (min-width: 960px) {
  .footer__links .footer__links-list li:nth-child(2) {
    margin-top: 8px;
  }
}

/* SP固定ナビ
----------------------------------------*/
.footer__sp-fixed-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 56px;
  line-height: 1;
  z-index: 1;
}
@media print, screen and (min-width: 960px) {
  .footer__sp-fixed-nav {
    display: none;
  }
}
.footer__sp-fixed-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  height: 100%;
  font-weight: 500;
  padding: 8px 0;
  font-size: 1.6rem;
}
.footer__sp-fixed-nav a.tel {
  background-color: #E3E2DA;
  font-size: 2rem;
}
.footer__sp-fixed-nav a.line {
  background-color: #DFEEDF;
}
.footer__sp-fixed-nav a.mail {
  background-color: #939c95;
  color: #ffffff;
}
.footer__sp-fixed-nav .footer__sp-fixed-nav-icon {
  display: grid;
  place-items: center;
  height: 28px;
}

/* コピーライト
----------------------------------------*/
.copyright {
  display: block;
  width: 100%;
  background: #1d201f;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  padding-bottom: 104px;
}
@media print, screen and (min-width: 960px) {
  .copyright {
    font-size: 1.4rem;
    padding-bottom: 56px;
  }
}/*# sourceMappingURL=style.css.map */