@charset "utf-8";

/* ベース */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  color: #323232;
  line-height: 1.4;
}

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

a {
  text-decoration: none;
  color: #323232;
}

figure {
  margin: 0;
}

p {
  line-height: 2;
}

.container {
  max-width: 1140px;
  padding: 100px 20px;
  margin: 0 auto;
  overflow: hidden;
}

.staff-container {
  padding-bottom: 0px;
}


/* ------------------------- */
/* キービジュアル_トップページ以外 */
/* ------------------------- */
.common-kv {
  position: relative;
  margin-top: 97px;
  background-size: cover;
  background-position: center;
  height: 300px;
}

.about-kv {
  background-image: url(../img/common/about-top.jpg);
}

.flow-kv {
  background-image: url(../img/common/flow-top.jpg);
}

.tieup-kv {
  background-image: url(../img/common/tieup-top.jpg);
}

.voice-kv {
  background-image: url(../img/common/voice-top.jpg);
}

.event-kv {
  background-image: url(../img/common/event-top.jpg);
}

.realestate-kv {
  background-image: url(../img/common/event-top.jpg);
}

.staff-kv {
  background-image: url(../img/common/staff-top.jpg);
}

.faq-kv {
  background-image: url(../img/common/faq-top.jpg);
}

.policy-kv {
  background-image: url(../img/common/policy-top.jpg);
}

.blog-kv {
  background-image: url(../img/common/blog-top.jpg);
}

.form-kv {
  background-image: url(../img/common/form-top.jpg);
}

.shop-kv {
  background-image: url(../img/common/shop-top.jpg);
}

/* パンくず */
.breadcrumb_inner {
  text-align: center;
  margin-top: 20px;
  font-size: 1.3rem;
}

.breadcrumb_inner a {
  text-decoration: underline;
}

/* メインタイトル_トップページ以外 */
.main-ttitle-wrap {
  position: absolute;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-title-en {
  font-size: 3rem;
  font-family: 'Roboto Condensed', sans-serif;
  border: 3px solid #323232;
  padding: 0.2rem 1rem;
  line-height: 2;
}

.main-title {
  font-size: 4.5rem;
  font-weight: bold;
  display: table;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 0 0.3em;
}


/* セクションタイトル */
.section-title {
  position: relative;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 90px;
  opacity: 0;
  transform: translateY(100%);
  transition: 1s;
}

.section-title.show {
  opacity: 1;
  transform: translateY(0);
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 8px;
  background-color: #ba001a;
  border-radius: 7px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.section-text-area {
  text-align: center;
  opacity: 0;
  transform: translateY(50%);
  transition: 1s;
}

.section-text-area.show {
  opacity: 1;
  transform: translateY(0);
}

.color-white {
  color: #fff;
}

.line-white::after {
  background-color: #fff;
}

.color-orange {
  color: #ed6c00;
}

/* 改行 */
.br-tab {
  display: none;
}

.br-sp {
  display: none;
}

/* 画像_pcなし */
.img-sp {
  display: none;
}

.pcInline {
  display: inline;
}

.spInline {
  display: none;
}

@media only screen and (max-width: 599px) {
  .pcInline {
    display: none;
  }

  .spInline {
    display: inline;
  }
}

/* アニメーション（拡大・縮小ループ） */
.scale-animation {
  animation: anime 0.7s ease 0s infinite alternate;
  transform-origin: center;
}

@keyframes anime {
  from {
    transform: scale(0.9, 0.9);
  }

  to {
    transform: scale(1, 1);
  }
}

/* アニメーション（フワッと表示） */
.fade-anime {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* 共通ボタン */
.common-btn {
  position: relative;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 80px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #323232;
  border-radius: 50px;
  transition: 0.3s;
}

.common-btn::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid;
  right: 50px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  transition: 0.3s;
}

.common-btn:hover {
  color: #fff;
  background-color: #323232;
}

.common-btn:hover::after {
  border-color: #fff #fff transparent transparent;
  right: 30px
}

.common-btn01 {
  position: relative;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.4;
  color: #fff;
  background-color: #e5a949;
  border: 3px solid #e5a949;
  border-radius: 50px;
  transition: 0.3s;
}

.common-btn01::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 7%;
  transition: 0.3s;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #fff;
}

.common-btn01:hover {
  color: #fff;
  background-color: #a70719;
  border: 3px solid #a70719;
}

.common-btn01:hover::after {
  border-left: 6px solid #fff;
  right: 5%;
}

.common-btn02 {
  position: relative;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.4;
  color: #333;
  background-color: #fff;
  border: 3px solid #333;
  border-radius: 50px;
  transition: 0.3s;
}

.common-btn02::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 7%;
  transition: 0.3s;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #333;
}

.common-btn02:hover {
  color: #fff;
  background-color: #333;
}

.common-btn02:hover::after {
  border-left: 6px solid #fff;
  right: 5%;
}


/* ロード画面 */
#load {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #ba001a;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.sk-fading-circle {
  position: relative;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {

  0%,
  39%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

@keyframes sk-circleFadeDelay {

  0%,
  39%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}


/* ヘッダー */
.header {
  position: fixed;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  height: 120px;
  top: 0;
  background: #fff;
  box-shadow: 0 0 6px rgb(0, 0, 0, 0.3);
  z-index: 5;
}

/* ヘッダー上部 */
.header-top {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.header-logo-area {
  width: 240px;
  transition: 0.3s;
}

.header-logo-area:hover {
  opacity: .7;
}

.header-logo-area2 {
  margin: 0;
  max-width: 26%;
  font-size: 1.3em;
}

.header-logo-area2 a {
  display: block;
}

.header-logo-area2 a span {
  color: #ba001a;
  display: block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  margin-top: 5px;
}

@media only screen and (max-width: 1024px) {
  .header-logo-area2 {
    max-width: 36%;
  }

  .header-logo-area2 a span {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  .header-logo-area2 {
    width: auto;
    max-width: 55%;
    font-size: 1.0em;
    padding-top: 5px;
  }

  .header-logo-area2 img {
    display: block;
    margin: 0 auto;
  }
}

.header-contact-area {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.header-tel {
  font-size: 2.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  margin-right: 20px;
}

.header-tel span {
  font-size: 3.1rem;
}

.header-tel em {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight: bold;
}

.header-tel2 {
  text-align: right;
  margin-right: 15px;
}

.header-tel2 p {
  line-height: 1;
}

.header-tel2 a {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.6em;
  letter-spacing: 0;
}

.header-tel2 a span {}

.header-tel2 a strong {
  font-size: 1.4em;
  font-weight: 700;
}

.header-tel2 em {
  font-style: normal;
  display: block;
}

/* ヘッダー_問い合わせボタン */
.header-contact-btn {
  position: relative;
  display: flex;
  width: 150px;
  height: 40px;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #e5a949;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  transition: 0.3s;
}

.header-contact-btn::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid;
  right: 15px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}

.header-contact-btn:hover {
  color: #fff;
  background-color: #a70719;
}

.header-contact-btn:hover::after {
  border-color: #fff #fff transparent transparent;
}

/* ヘッダー下部（SNSアイコン） */
.header-bottom {
  display: flex;
  justify-content: space-between;
  /*justify-content: flex-end;*/
}

.sns-ico-list {
  display: flex;
}

.sns-ico-item:not(:last-child) {
  margin-right: 10px;
}

.sns-ico {
  display: block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.sns-ico:hover {
  opacity: 0.7;
}

.facebook-ico {
  background-image: url(../img/ico/facebook_ico.svg);
}

.insta-ico {
  background-image: url(../img/ico/instagram-2016.svg);
}

.line-ico {
  background-image: url(../img/ico/LINE_ico.svg);
}

/* ヘッダー下部（グローバルナビゲーション） */
.global-nav>ul {
  display: flex;
  flex-wrap: wrap;
}

.global-nav li {
  font-size: 1.4rem;
}

.global-nav li+li {
  margin-left: 30px;
}

.global-nav a {
  position: relative;
  display: block;
  font-weight: bold;
  transition: 0.3s;
}

.global-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ED6C00;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.global-nav a:hover {
  color: #ED6C00;
}

.global-nav a:hover::after {
  width: 100%;
}



/* ------------------------- */
/* ハンバーガーメニュー */
/* ------------------------- */
.hamburger-menu {
  display: none;
}

/* ハンバーガーメニュー_ボタン */
.menubutton {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 5px;
  right: 5px;
}

.menubutton div {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.menubutton div:nth-of-type(1) {
  transform: translate(-50%, -12px);
}

.menubutton div:nth-of-type(3) {
  transform: translate(-50%, 11px);
}

.menubutton.active div:nth-of-type(2) {
  opacity: 0;
}

.menubutton.active div:nth-of-type(1) {
  transform: rotate(45deg) translate(-50%, 0);
  transform-origin: 0% 50%;
}

.menubutton.active div:nth-of-type(3) {
  transform: rotate(-45deg) translate(-50%, 0);
  transform-origin: 0% 50%;
}

/* メニュー画面 */
.sp-menu {
  position: absolute;
  background-color: #323232;
  width: 100%;
  height: 100vh;
  top: 60px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.3s;
}

.sp-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.global-nav-sp ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.global-nav-sp li {
  text-align: center;
  border-bottom: 1px solid #fff;
  padding: 2rem 0;
  margin: 0;
  width: 48%;
}

.global-nav-sp a {
  color: #fff;
  font-size: 4.5vw;
  font-weight: bold;
}

/* ------------------------- */
/* ページネーション */
/* ------------------------- */
.pagination {
  margin: 60px 0;
  display: flex;
  justify-content: center;
}

ul.page-numbers {
  display: flex;
}

ul.page-numbers li:not(:last-child) {
  margin-right: 5px;
}

span.page-numbers,
a.page-numbers {
  display: flex;
  width: 35px;
  height: 35px;
  font-family: 'Roboto Condensed', sans-serif;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
}

.current {
  background-color: #e5a949;
}

a.page-numbers {
  transition: 0.3s;
}

a.page-numbers:hover {
  opacity: 0.7;
}


/* ------------------------- */
/* フッター */
/* ------------------------- */
.footer-inner {
  display: flex;
  flex-direction: row-reverse;
  padding: 50px 20px;
}

.add-area {
  flex: 0 0 340px;
  margin-right: 8%;
}

.logo {
  width: 290px;
  margin-bottom: 8px;
}

.footer-text {
  font-weight: bold;
  margin-bottom: 10px;
}

.add {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-sns {
  margin-bottom: 15px;
}

.copyright {
  font-weight: bold;
}

.sitemap-area {
  display: flex;
  width: 100%;
}

.sitemap-list:not(:first-of-type) {
  margin-left: 3%;
}

.sitemap-list {
  flex: 0 1 22%;
}

.sitemap-list:first-of-type {
  flex: 0 1 30%;
}

.sitemap-item {
  font-size: 1.4rem;
  line-height: 3;
  font-weight: bold;
}

.sitemap-item a:hover {
  text-decoration: underline;
}


/*Contact Form 7カスタマイズ*/
.contact-wrap {
  max-width: 840px;
  margin: 120px auto 0;
  padding: 100px 20px;
}

.inquiry {
  width: 100%;
}

input.wpcf7-form-control,
.wpcf7-textarea {
  width: 100%;
}

.inquiry tr {
  display: flex;
  border: 1px solid #323232;
  padding: 10px;
  margin-bottom: 10px;
}

.inquiry th {
  width: 30%;
}

.inquiry td {
  width: 100%;
}

/*必須の調整*/
.haveto {
  font-size: 7px;
  padding: 5px;
  background: #ED6C00;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}

/*任意の調整*/
.any {
  font-size: 7px;
  padding: 5px;
  background: #c0c0c0;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}

/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item {
  display: block;
}

form.wpcf7-form.init p {
  text-align: center;
}

/* メール送信完了非表示 */
.wpcf7-mail-sent-ok {
  display: none;
}


/* 問い合わせリンク */
.contact-sp {
  display: none;
}

/* 画像認証 */
img.wpcf7-form-control {
  width: 30%;
  display: block;
  margin: 0 auto;
}

input.wpcf7-form-control.wpcf7-captchar {
  width: auto;
  margin-bottom: 30px;
}




/* ------------------------------------------------------------------- */


/* ------------------------- */
/* タブレット */
/* ------------------------- */
@media screen and (max-width: 1024px) {
  p {
    font-size: 1.4rem;
  }

  .container {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 60px;
  }

  .section-title::after {
    width: 60px;
    height: 6px;
    bottom: -14px;
  }

  .br-tab {
    display: block;
  }

  /* 共通ボタン */
  .common-btn {
    width: 340px;
    height: 60px;
    font-size: 1.8rem;
  }

  /* ヘッダー */
  .header {
    padding: 0 10px;
    height: 90px;
  }

  /* ヘッダー上部 */
  .header-top {
    padding: 5px 0;
  }

  .header-logo-area {
    width: 180px;
  }

  .header-tel {
    font-size: 2rem;
    margin-right: 10px;
  }

  .header-tel span {
    font-size: 2.5rem;
  }

  /* ヘッダー_問い合わせボタン */
  .header-contact-btn {
    width: 120px;
    height: 30px;
    font-size: 1.2rem;
  }

  /* ヘッダー下部（SNSアイコン） */
  .sns-ico {
    width: 18px;
    height: 18px;
  }

  /* ヘッダー下部（グローバルナビゲーション） */
  .header-bottom {
    padding-bottom: 120px;
  }

  .global-nav li {
    font-size: 1rem;
  }

  .global-nav li+li {
    margin-left: 15px;
  }

  /* ------------------------- */
  /* キービジュアル_トップページ以外_タブレット */
  /* ------------------------- */
  .common-kv {
    margin-top: 58px;
    height: 250px;
  }

  /* メインタイトル_トップページ以外 */
  .main-title-en {
    font-size: 2rem;
  }

  .main-title {
    font-size: 4rem;
  }

  /* ------------------------- */
  /* フッター_タブレット */
  /* ------------------------- */
  .footer-inner {
    padding: 40px 20px;
  }

  .add-area {
    flex: 0 0 200px;
    margin-right: 6%;
  }

  .logo {
    width: 180px;
    margin-bottom: 4px;
  }

  .footer-text {
    font-size: 1.2rem;
  }

  .add {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .copyright {
    font-size: 1rem;
  }

  .sitemap-item {
    font-size: 1rem;
  }
}



/* ----------------------------------------------------------------- */
/* ------------------------- */
/* スマホ */
/* ------------------------- */
@media screen and (max-width: 599px) {
  .img-pc {
    display: none;
  }

  .img-sp {
    display: block;
  }

  p,
  h2,
  h3,
  h4 {
    line-height: 3rem;
  }

  .section-title {
    font-size: 5vw;
    margin-bottom: 60px;
    line-height: 1.8;
  }

  .section-text-area {
    text-align: left;
  }

  .section-text-strong {
    font-weight: bold;
    background: linear-gradient(transparent 60%, #ba001a 60%);
  }

  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }

  /* 共通ボタン */
  .common-btn {
    width: 80%;
    height: 60px;
    font-size: 1.8rem;
  }

  .common-btn01 {
    font-size: 1.6rem;
  }

  .common-btn02 {
    font-size: 1.6rem;
  }

  /* ヘッダー */
  .header {
    height: 60px;
  }

  .header-top {
    padding-top: 12px;
  }

  .header-contact-area {
    display: none;
  }

  .header-bottom {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  /* ------------------------- */
  /* キービジュアル_トップページ以外_SP */
  /* ------------------------- */
  .common-kv {
    margin-top: 28px;
    height: 200px;
  }

  /* メインタイトル_トップページ以外 */
  .main-title-en {
    font-size: 1.8rem;
  }

  .main-title {
    font-size: 2.5rem;
    line-height: 1.4;
  }

  /* ------------------------- */
  /* フッター_SP */
  /* ------------------------- */
  .footer-inner {
    display: block;
    padding: 30px 20px;
  }

  .add-area {
    flex: 1;
    margin-right: 0;
    margin-top: 20px;
    text-align: center;
  }

  .logo {
    width: 240px;
  }

  .add {
    font-size: 1.4rem;
  }

  .footer-sns {
    display: flex;
    justify-content: center;
  }

  .sns-ico {
    width: 30px;
    height: 30px;
  }

  .copyright {
    font-size: 1.4rem;
  }

  .sitemap-area {
    /*display: none;*/
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sitemap-list {
    flex: none;
    width: 48%;
  }

  .sitemap-list:not(:first-of-type) {
    margin-left: 0;
  }

  .sitemap-item {
    line-height: 4;
  }

  .sitemap-list.end {
    width: 50%;
    /*display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 20px;*/
    flex: auto;
  }

  .sitemap-list.end .sitemap-item {
    width: 100%;
  }

  /* 固定フッター_問い合わせボタン */
  .footer-contact-area {
    display: flex;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    bottom: 0;
    padding: 12px;
    background-color: #323232;
    z-index: 10;
    transition: 0.3s;
  }

  .footer-contact-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: 65px;
    background-color: #e5a949;
    color: #fff;
    border-radius: 10px;
  }

  .footer-contact-ico {
    display: block;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-position: center;
  }

  .tel-ico {
    background-image: url(../img/ico/tel_ico.svg);
  }

  .form-ico {
    background-image: url(../img/ico/form_ico.svg);
  }

  .footer-btn-text {
    font-weight: bold;
  }

  .head-animation {
    transform: translateY(100%);
  }

  /*Contact Form 7カスタマイズ*/
  .contact-wrap {
    padding: 0 20px;
  }

  .inquiry tr {
    flex-direction: column;
    border: 1px solid #323232;
    padding: 10px;
    margin-bottom: 10px;
  }

  .inquiry th {
    width: 100%;
    margin-bottom: 5px;
  }

  /* 問い合わせリンク */
  .contact-sp-wrap {
    margin-bottom: 20px;
  }

  .contact-sp {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: underline;
  }
}
