@charset "UTF-8";
/*================================================================
foundation
================================================================*/
/*================================================================
base.css
================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*================================================================
mixin
================================================================*/
/*================================================================
reset.css
================================================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

/*================================================================
variable
================================================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-color: #FFFFFF;
  font-weight: 400;
  line-height: 1.5;
}

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

img {
  width: 100%;
}

/*================================================================
layout
================================================================*/
/*================================================================
l-header
================================================================*/
.l-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 100px;
  position: fixed;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 2px rgba(61, 60, 59, 0.25);
          box-shadow: 0px 2px 2px rgba(61, 60, 59, 0.25);
}

@media (max-width: 743px) {
  .l-header {
    height: 80px;
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-header__logo {
  margin: 10px 0 0 12%;
}

.l-header__logoLink img {
  width: 144px;
  height: 80px;
}

@media (max-width: 743px) {
  .l-header__logoLink img {
    width: 108px;
    height: 60px;
  }
}

.l-header__logo.on {
  z-index: 9999;
  /*ボタンを最前面に*/
}

/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
.l-header__nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.l-header__circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f9f9f9;
  /*丸のスタート位置と形状*/
  -webkit-transform: scale(0);
          transform: scale(0);
  /*scaleをはじめは0に*/
  top: -50px;
  left: calc(50% - 50px);
  /*50%から円の半径を引いた値*/
  -webkit-transition: all .6s;
  transition: all .6s;
  /*0.6秒かけてアニメーション*/
}

.l-header__circle-bg.circleactive {
  -webkit-transform: scale(50);
          transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
.l-header__scroll {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.l-header__nav.panelactive .l-header__scroll {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
.l-header__nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
.l-header__nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
.l-header__nav.panelactive ul li {
  -webkit-animation-name: gnaviAnime;
          animation-name: gnaviAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
  /*0.2 秒遅らせて出現*/
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*リストのレイアウト設定*/
.l-header__nav ul li {
  text-align: center;
  margin-top: 52px;
}

.l-header__nav ul li:nth-child(1) {
  margin-top: 0px;
}

.l-header__nav ul li a {
  font-size: 20px;
  letter-spacing: .1em;
  position: relative;
  font-weight: 700;
}

@media (max-width: 743px) {
  .l-header__nav ul li a {
    font-size: 16px;
  }
}

.l-header__nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.l-header__nav ul li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*========= ボタンのためのCSS ===============*/
.l-header__burger {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 28px;
  height: 26px;
  right: 60px;
  top: 27px;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .l-header__burger {
    right: 40px;
  }
}

@media (max-width: 743px) {
  .l-header__burger {
    right: 20px;
    top: 20px;
  }
}

.l-header__burgerInline,
.l-header__burgerInline2,
.l-header__burgerInline3 {
  height: 4px;
  background-color: #000000;
  margin: 7px auto;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-radius: 24px;
}

.l-header__burger.active {
  top: 58px;
  right: 62px;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .l-header__burger.active {
    right: 42px;
  }
}

@media (max-width: 743px) {
  .l-header__burger.active {
    top: 51px;
    right: 22px;
  }
}

.l-header__burger.active .l-header__burgerInline,
.l-header__burger.active .l-header__burgerInline3 {
  margin: -11px auto;
}

.l-header__burger.active .l-header__burgerInline {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-header__burger.active .l-header__burgerInline2 {
  opacity: 0;
}

.l-header__burger.active .l-header__burgerInline3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.l-header__bottom-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #C90A16;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  height: 100px;
}

.l-header__bottom-menu.on {
  opacity: 1;
}

/*================================================================
l-cta
================================================================*/
.l-cta__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  background-color: #C90A16;
}

.l-cta__contactPhone {
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 24px;
  color: #FFFFFF;
}

@media (max-width: 743px) {
  .l-cta__contactPhone {
    font-size: 16px;
  }
}

.l-cta__contactPhone span {
  margin-right: 10px;
}

@media (max-width: 743px) {
  .l-cta__contactPhone span {
    margin-right: 4px;
  }
}

.l-cta__contactMail {
  margin-left: 32px;
}

@media (max-width: 743px) {
  .l-cta__contactMail {
    margin-left: 10px;
  }
}

/*================================================================
l-main
================================================================*/
.l-main {
  margin-top: 128px;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .l-main {
    margin-top: 112px;
  }
}

@media (max-width: 743px) {
  .l-main {
    margin-top: 88px;
  }
}

/*================================================================
l-breadcrumb
================================================================*/
.l-breadcrumb__txt {
  font-size: 14px;
  letter-spacing: .2em;
}

@media (max-width: 743px) {
  .l-breadcrumb__txt {
    font-size: 12px;
  }
}

/*================================================================
l-inner
================================================================*/
.l-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .l-inner {
    padding: 0 40px;
  }
}

@media (max-width: 743px) {
  .l-inner {
    padding: 0 20px;
  }
}

/*================================================================
l-access
================================================================*/
.l-access__map iframe {
  display: block;
  width: 100%;
  height: 360px;
}

/*================================================================
l-footer
================================================================*/
.l-footer {
  padding: 10px 0 8px;
  background-color: #f9f9f9;
}

.l-copyright {
  text-align: center;
}

.l-copyright__link {
  font-size: 12px;
  letter-spacing: .1em;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  color: #A59EA4;
}

.l-copyright__link:hover {
  opacity: .8;
}

@media (max-width: 743px) {
  .l-copyright__link {
    font-size: 10px;
  }
}

/*================================================================
component
================================================================*/
/*================================================================
c-heading
================================================================*/
.c-primary-ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 72px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-primary-ttl::before, .c-primary-ttl::after {
  content: "";
  width: 10px;
  height: 10px;
}

.c-primary-ttl::before {
  margin: -30px 20px 0 0;
  border-top: 10px solid #e5e5e5;
  border-left: 10px solid #C90A16;
}

.c-primary-ttl::after {
  margin: 0 0 -30px 20px;
  border-right: 10px solid #C90A16;
  border-bottom: 10px solid #e5e5e5;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .c-primary-ttl {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

@media (max-width: 743px) {
  .c-primary-ttl {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

/*================================================================
c-btn
================================================================*/
.c-btn {
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 20px;
  padding: 8px 40px 8px 20px;
  border-radius: 24px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  -webkit-transition: color .4s ease-in-out;
  transition: color .4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-btn::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 0);
          transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform .45s ease-in-out;
  transition: -webkit-transform .45s ease-in-out;
  transition: transform .45s ease-in-out;
  transition: transform .45s ease-in-out, -webkit-transform .45s ease-in-out;
}

.c-btn::after {
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  right: 16px;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-btn:hover:before {
  -webkit-transform: translate3d(-50%, -50%, 0) scale3d(15, 15, 15);
          transform: translate3d(-50%, -50%, 0) scale3d(15, 15, 15);
}

.c-btn:hover::after {
  border-top: 3px solid #000000;
  border-right: 3px solid #000000;
}

@media (max-width: 743px) {
  .c-btn {
    font-size: 14px;
  }
}

.c-secondary-btn {
  background: #000000;
  color: #FFFFFF;
}

.c-secondary-btn::before {
  background-color: #FFFFFF;
}

.c-secondary-btn:hover {
  color: #000000;
}

.c-totop {
  position: fixed;
  right: 40px;
  bottom: 80px;
  z-index: 10;
  visibility: hidden;
}

@media (max-width: 743px) {
  .c-totop {
    right: 20px;
    bottom: 60px;
  }
}

.c-totop.is-show {
  visibility: visible;
}

.c-totop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background-color: #f9f9f9;
  border: 3px solid #dbcbcd;
  border-radius: 50vh;
  -webkit-transition: .3s;
  transition: .3s;
}

.c-totop a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 3px solid #000000;
  border-left: 3px solid #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: .3s;
  transition: .3s;
}

.c-totop a span {
  width: 0px;
  height: 0px;
  visibility: hidden;
}

.c-totop a:hover {
  background-color: #C90A16;
  border: 3px solid #f9f9f9;
}

.c-totop a:hover::after {
  border-top: 3px solid #FFFFFF;
  border-left: 3px solid #FFFFFF;
  -webkit-transform: translateY(-5px) rotate(45deg);
          transform: translateY(-5px) rotate(45deg);
}

@media (max-width: 743px) {
  .c-totop a {
    width: 60px;
    height: 60px;
  }
}

/*================================================================
project
================================================================*/
/*================================================================
front-page
================================================================*/
/*================================================================
p-fv
================================================================*/
.p-fv {
  position: relative;
  top: 128px;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-fv {
    top: 112px;
  }
}

@media (max-width: 743px) {
  .p-fv {
    top: 88px;
  }
}

/*================================================================
p-slider
================================================================*/
.swiper-slide {
  text-align: right;
}

.swiper-slide img {
  width: 88%;
  border-radius: 24px 0 0 24px;
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 5%;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .swiper-pagination {
    margin-left: 6%;
  }
}

@media (max-width: 743px) {
  .swiper-pagination {
    margin-left: 3%;
  }
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #e5e5e5;
  opacity: 1;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 743px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.swiper-pagination-bullet-active {
  background: #C90A16;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-top: 8px;
  margin-bottom: 8px;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-top: 7px;
    margin-bottom: 7px;
  }
}

@media (max-width: 743px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

/*================================================================
p-feature
================================================================*/
.p-feature {
  padding: 64px 0 100px;
}

@media (max-width: 743px) {
  .p-feature {
    padding: 40px 0 60px;
  }
}

@media (min-width: 1200px) {
  .p-feature__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

@media (min-width: 1200px) {
  .p-feature__img {
    margin-left: 60px;
    position: relative;
  }
  .p-feature__img::before, .p-feature__img::after {
    content: '';
    position: absolute;
    -webkit-transform: rotate(-35deg);
            transform: rotate(-35deg);
    width: 70px;
    height: 25px;
    background-color: #FFFFFF;
    z-index: 1;
  }
  .p-feature__img::before {
    top: -10px;
    left: -25px;
    border-bottom: 1px solid #e5e5e5;
  }
  .p-feature__img::after {
    bottom: -10px;
    right: -25px;
    border-top: 1px solid #e5e5e5;
  }
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-feature__img {
    margin: 80px 0 58px;
    text-align: center;
  }
  .p-feature__img img {
    width: 600px;
  }
}

@media (max-width: 743px) {
  .p-feature__img {
    margin: 48px 0 40px;
    text-align: center;
  }
  .p-feature__img img {
    width: 300px;
  }
}

@media (min-width: 1200px) {
  .p-feature__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-feature__body,
.p-feature__footer {
  margin: 56px auto 0;
}

@media (min-width: 1200px) {
  .p-feature__body,
  .p-feature__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 1200px) {
  .p-feature__desc {
    width: 610px;
  }
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-feature__desc {
    margin: 0 auto;
    width: 530px;
  }
}

@media (max-width: 743px) {
  .p-feature__desc {
    margin: 0 auto;
    width: 290px;
  }
}

.p-feature__ttl {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.p-feature__ttl::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: repeating-linear-gradient(-45deg, #C90A16 0px, #C90A16 2px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background-size: 6px 6px;
  z-index: 1;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-feature__ttl {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (max-width: 743px) {
  .p-feature__ttl {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.p-feature__txt {
  line-height: 1.7;
}

.p-feature__txt span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: .3em;
  line-height: 2.5;
  background-color: #e5e5e5;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-feature__txt {
    width: 530px;
  }
}

@media (max-width: 743px) {
  .p-feature__txt {
    width: 290px;
    font-size: 14px;
    line-height: 1.8;
  }
}

.p-feature__item {
  border-bottom: 1px solid #dbcbcd;
  padding: 24px 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-feature__itemHeader {
  width: 200px;
}

@media (max-width: 743px) {
  .p-feature__itemHeader {
    width: 130px;
  }
}

@media (max-width: 743px) {
  .p-feature__itemTtl {
    font-size: 13px;
  }
}

.p-feature__itemTxt {
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .p-feature__itemTxt {
    font-size: 13px;
  }
}

.p-feature__att {
  line-height: 1.7;
  margin-top: 16px;
}

.p-feature__att span {
  color: #C90A16;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-feature__att {
    width: 530px;
    margin-top: 12px;
  }
}

@media (max-width: 743px) {
  .p-feature__att {
    width: 290px;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 12px;
  }
}

.p-feature__link {
  text-align: center;
  margin-top: 28px;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-feature__link {
    margin-top: 24px;
  }
}

@media (max-width: 743px) {
  .p-feature__link {
    margin-top: 24px;
  }
}

.p-feature__linkTxt {
  color: #998211;
  position: relative;
  padding-right: 50px;
}

.p-feature__linkTxt::before {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: #998211;
  -webkit-transition: right .4s;
  transition: right .4s;
}

.p-feature__linkTxt::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background-color: #998211;
  -webkit-transition: right .4s;
  transition: right .4s;
}

.p-feature__linkTxt:hover {
  color: #998211;
}

.p-feature__linkTxt:hover::before {
  background-color: #C90A16;
  right: -12px;
}

.p-feature__linkTxt:hover::after {
  background-color: #C90A16;
  right: -12px;
}

@media (max-width: 743px) {
  .p-feature__linkTxt {
    font-size: 14px;
  }
}

#cboxOverlay {
  background: #000000;
}

#cboxContent {
  background-color: transparent;
}

/*================================================================
child-page
================================================================*/
/*================================================================
contact-page
================================================================*/
/*================================================================
p-inquiry
================================================================*/
.p-inquiry {
  padding: 36px 0 100px;
}

@media (max-width: 743px) {
  .p-inquiry {
    padding: 32px 0 100px;
  }
}

@media (min-width: 1200px) {
  .p-inquiry__descArea {
    margin: 0 auto 88px;
    width: 530px;
  }
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-inquiry__descArea {
    margin: 0 auto 88px;
    width: 530px;
  }
}

@media (max-width: 743px) {
  .p-inquiry__descArea {
    margin: 0 auto 88px;
    width: 335px;
  }
}

.p-inquiry__txt {
  line-height: 1.7;
  letter-spacing: .1em;
  color: #A59EA4;
}

.p-inquiry__txt span {
  color: #C90A16;
}

@media (max-width: 743px) {
  .p-inquiry__txt {
    font-size: 14px;
  }
}

.p-inquiry___cont {
  margin: 0 auto;
  width: 700px;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-inquiry___cont {
    width: 600px;
  }
}

@media (max-width: 743px) {
  .p-inquiry___cont {
    width: 335px;
  }
}

.wpcf7-form p {
  margin-top: 48px;
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .wpcf7-form p {
    font-size: 14px;
  }
}

.wpcf7-form p .your-name {
  position: relative;
}

.wpcf7-form p .your-name::after {
  content: "例) 佐藤 翔太";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 44px;
  color: #A59EA4;
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-name::after {
    font-size: 12px;
  }
}

.wpcf7-form p .your-kana {
  position: relative;
}

.wpcf7-form p .your-kana::after {
  content: "例) さとう しょうた";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 44px;
  color: #A59EA4;
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-kana::after {
    font-size: 12px;
  }
}

.wpcf7-form p .your-company {
  position: relative;
}

.wpcf7-form p .your-company::after {
  content: "例) 株式会社□□□□□□□□□□";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 44px;
  color: #A59EA4;
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-company::after {
    font-size: 12px;
  }
}

.wpcf7-form p .your-phone {
  position: relative;
}

.wpcf7-form p .your-phone::after {
  content: "例) 090-0000-0000";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 44px;
  color: #A59EA4;
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-phone::after {
    font-size: 12px;
  }
}

.wpcf7-form p .your-email {
  position: relative;
}

.wpcf7-form p .your-email::after {
  content: "例) xxxxx@example.com";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 44px;
  color: #A59EA4;
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-email::after {
    font-size: 12px;
  }
}

.wpcf7-form p .your-address {
  position: relative;
}

.wpcf7-form p .your-address::after {
  content: "例) 福岡県福岡市〇〇区△△1-12-13 □□□□101号室";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 44px;
  color: #A59EA4;
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-address::after {
    font-size: 12px;
  }
}

.wpcf7-form p .your-check .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wpcf7-form p .your-check .wpcf7-checkbox .wpcf7-list-item {
  margin-top: 20px;
  margin-left: 0;
}

.wpcf7-form p .your-check .wpcf7-checkbox .wpcf7-list-item label input {
  display: none;
}

.wpcf7-form p .your-check .wpcf7-checkbox .wpcf7-list-item label input + span {
  cursor: pointer;
  display: inline-block;
  color: #000000;
  margin: 0 28px 0 0;
  padding: 0 0 0 42px;
  position: relative;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-check .wpcf7-checkbox .wpcf7-list-item label input + span {
    font-size: 14px;
  }
}

.wpcf7-form p .your-check .wpcf7-checkbox .wpcf7-list-item label input + span::before {
  background: #FFFFFF;
  border: 1px solid #A59EA4;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  border-radius: 4px;
}

.wpcf7-form p .your-check .wpcf7-checkbox .wpcf7-list-item label input:checked + span::after {
  border-bottom: 3px solid #C90A16;
  border-left: 3px solid #C90A16;
  content: "";
  display: block;
  height: 18px;
  left: 0;
  margin-top: 0.4em;
  opacity: 1;
  position: absolute;
  top: 1%;
  -webkit-transform: translateY(-45%) rotate(-50deg);
          transform: translateY(-45%) rotate(-50deg);
  width: 36px;
}

.wpcf7-form p .your-message {
  position: relative;
}

.wpcf7-form p .your-message::after {
  content: "ご自由にお書きください";
  position: absolute;
  font-size: 14px;
  left: 0;
  top: 22px;
  color: #A59EA4;
  letter-spacing: .1em;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-message::after {
    font-size: 12px;
  }
}

.wpcf7-form p .your-check2 span {
  color: #998211;
  font-weight: 700;
}

.wpcf7-form p .your-check2 .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wpcf7-form p .your-check2 .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-form p .your-check2 .wpcf7-checkbox .wpcf7-list-item label input {
  display: none;
}

.wpcf7-form p .your-check2 .wpcf7-checkbox .wpcf7-list-item label input + span {
  cursor: pointer;
  display: inline-block;
  color: #000000;
  margin: 0 28px 0 0;
  padding: 0 0 0 42px;
  position: relative;
}

@media (max-width: 743px) {
  .wpcf7-form p .your-check2 .wpcf7-checkbox .wpcf7-list-item label input + span {
    font-size: 14px;
  }
}

.wpcf7-form p .your-check2 .wpcf7-checkbox .wpcf7-list-item label input + span::before {
  background: #FFFFFF;
  border: 1px solid #A59EA4;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  border-radius: 4px;
}

.wpcf7-form p .your-check2 .wpcf7-checkbox .wpcf7-list-item label input:checked + span::after {
  border-bottom: 3px solid #C90A16;
  border-left: 3px solid #C90A16;
  content: "";
  display: block;
  height: 18px;
  left: 0;
  margin-top: 0.4em;
  opacity: 1;
  position: absolute;
  top: 1%;
  -webkit-transform: translateY(-45%) rotate(-50deg);
          transform: translateY(-45%) rotate(-50deg);
  width: 36px;
}

.wpcf7-form p .ajax-loader {
  display: none;
}

.wpcf7-form p label .p-inquiry_required {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  color: #FFFFFF;
  background-color: #998211;
  margin-left: 14px;
  top: -2px;
  position: relative;
}

@media (max-width: 743px) {
  .wpcf7-form p label .p-inquiry_required {
    font-size: 10px;
  }
}

.wpcf7-form p label span input,
.wpcf7-form p label span textarea,
.wpcf7-form p label span select {
  border: 1px solid #A59EA4;
  border-radius: 4px;
  width: 700px;
  margin-top: 8px;
  letter-spacing: .1em;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .wpcf7-form p label span input,
  .wpcf7-form p label span textarea,
  .wpcf7-form p label span select {
    width: 600px;
  }
}

@media (max-width: 743px) {
  .wpcf7-form p label span input,
  .wpcf7-form p label span textarea,
  .wpcf7-form p label span select {
    width: 335px;
    font-size: 14px;
  }
}

.wpcf7-form p label span input,
.wpcf7-form p label span select {
  height: 50px;
  padding-left: 16px;
}

.wpcf7-form p label span textarea {
  height: 300px;
  padding: 13px 0 0 16px;
}

@media (max-width: 743px) {
  .wpcf7-form p label span textarea {
    height: 180px;
  }
}

.p-modal__ttl {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 743px) {
  .p-modal__ttl {
    font-size: 18px;
  }
}

.p-modal__txt {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .1em;
  text-align: center;
}

.p-modal__area {
  overflow-y: scroll;
  height: 280px;
  width: 600px;
  margin: 40px auto 0;
  background-color: #f9f9f9;
  padding: 12px 4px 0 16px;
}

@media (min-width: 744px) and (max-width: 1199px) {
  .p-modal__area {
    width: 500px;
  }
}

@media (max-width: 743px) {
  .p-modal__area {
    width: 300px;
    height: 150px;
    margin: 32px auto 0;
  }
}

.p-modal__areaTtl {
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px;
}

.p-modal__areaTxt {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .1em;
  color: #A59EA4;
}

.wpcf7-submit {
  font-size: 18px;
  padding: 12px 36px;
  background-color: #C90A16;
  color: #FFFFFF;
  position: relative;
  letter-spacing: .2em;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-shadow: 2px 4px 4px rgba(61, 60, 59, 0.25);
          box-shadow: 2px 4px 4px rgba(61, 60, 59, 0.25);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  border: none;
  margin: 0 auto;
  border-radius: 24px;
}

.wpcf7-submit:hover {
  background-color: #998211;
}

/*================================================================
utility
================================================================*/
/*================================================================
u-hidden
================================================================*/
@media (min-width: 1200px) {
  .u-hidden-pc {
    display: none;
  }
}

@media (min-width: 744px) and (max-width: 1199px) {
  .u-hidden-tab {
    display: none;
  }
}

@media (max-width: 743px) {
  .u-hidden-sp {
    display: none;
  }
}

/*================================================================
u-animation
================================================================*/
/* 上から */
.u-fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: .8s;
          animation-duration: .8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*================================================================
u-ais
================================================================*/
.u-ais {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/*================================================================
u-margin
================================================================*/
.u-mt {
  margin-top: 0;
}
