@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

li {
  list-style: none;
}

h2, h3, h4, h5 {
  font-weight: normal;
}

.index {
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
  /* アニメーション指定 */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.index_b {
  font-family: sofia-pro, sans-serif;
  font-size: 80px;
}
.index_s {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  color: #707070;
  margin: 5px 0 50px;
}
.index_t {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 28px;
}

.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* /アニメーション指定 */
.f_bold {
  font-weight: bold;
}
.f_sofia {
  font-family: sofia-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.f_sofia_b {
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.f_zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.more {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 12px;
}
.more img {
  width: 120px;
}

/* margin-rightの指定
============================== */
.spc10 {
  margin-right: 10px;
}

.spc13 {
  margin-right: 13px;
}

.spc30 {
  margin-right: 30px;
}

.spc50 {
  margin-right: 50px;
}

.spc70 {
  margin-right: 70px;
}

/* margin-bottomの指定
============================== */
.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

/* 改行の指定
============================== */
.tb_br {
  display: none;
}

.sp_br {
  display: none;
}

.min_br {
  display: none;
}

/* 820px以下の場合 */
@media screen and (max-width: 820px) {
  .tb_br {
    display: block;
  }
  .sp_br {
    display: none;
  }
  .min_br {
    display: none;
  }
}
/* 654px以下の場合 */
@media screen and (max-width: 654px) {
  .tb_br {
    display: none;
  }
  .sp_br {
    display: block;
  }
}
/* 430px以下の場合 */
@media screen and (max-width: 430px) {
  .tb_br {
    display: none;
  }
  .sp_br {
    display: none;
  }
  .min_br {
    display: block;
  }
}
/* スクロールしたら下からfade inの記述
============================== */
.fadein {
  /* 最初は非表示 */
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 2s, visibility 2s, -webkit-transform 2s;
  transition: opacity 2s, visibility 2s, -webkit-transform 2s;
  transition: transform 2s, opacity 2s, visibility 2s;
  transition: transform 2s, opacity 2s, visibility 2s, -webkit-transform 2s;
}

/* フェードイン時に入るクラス */
.un-fadein {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 2;
  visibility: visible;
}

/* colorの変数
============================== */
html {
  scroll-behavior: smooth;
}

html, 　body {
  height: 100%;
}

body {
  font-family: yu-gothic-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000;
  margin: 0 auto;
}

#wrapper {
  min-height: 100vh;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 999px) {
  .index_b {
    font-size: 60px;
  }
  .index_s {
    font-size: 14px;
  }
  .index_t {
    font-size: 0.94rem;
    line-height: 32px;
  }
}
/* ファイルのインポート
============================== */
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header #hd {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header #hd h1 img {
  width: 120px;
  padding-left: 20px;
}
header #hd .pc_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header #hd .pc_nav ul li {
  margin-right: 30px;
  letter-spacing: 0.15rem;
}
header #hd .pc_nav ul li:nth-of-type(5) {
  color: #B1784B;
  margin-right: 0;
}
header #hd .pc_nav ul li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
header #hd .pc_nav ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #E0DCC9;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
header #hd .pc_nav ul li a:hover:after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
header .sp_nav, header #menu {
  display: none;
}

@media screen and (max-width: 999px) {
  .pc_nav {
    display: none;
  }
  /* SP　menu */
  .sp_nav {
    display: block !important;
    z-index: 999;
    position: fixed;
    top: 0;
    right: -120%;
    width: 100vw;
    height: 100vh;
    background: rgb(243, 241, 234);
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .sp_nav_menu {
    position: absolute;
    top: 75px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .sp_nav_menu_list {
    margin-bottom: 14px;
  }
  .sp_nav_menu_list_bg img {
    width: 70px;
    display: inline;
  }
  .sp_nav_menu_list_index {
    font-size: 28px;
    margin-top: -65px;
  }
  .sp_nav_menu_list_text {
    color: #707070;
    font-size: 14px;
  }
  .sp_nav_ud {
    position: absolute;
    top: 580px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .sp_nav_ud img {
    display: inline;
  }
  .sp_nav_ud_img1 img {
    width: 30px;
  }
  .sp_nav_ud_img2 {
    margin-top: 30px;
  }
  .sp_nav_ud_img2 img {
    width: 305px;
  }
  .sp_nav_ud_text {
    font-size: 12px;
    margin-top: -10px;
    color: #707070;
  }
  /*アクティブクラスがついたら位置を0に*/
  .sp_nav.panelactive {
    right: 0 !important;
  }
  /*========= ボタンのためのCSS ===============*/
  #menu {
    display: block !important;
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /* ×に変化 */
  #menu span {
    display: inline-block !important;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  #menu span:nth-of-type(1) {
    top: 15px;
  }
  #menu span:nth-of-type(2) {
    top: 23px;
  }
  #menu span:nth-of-type(3) {
    top: 31px;
  }
  #menu.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  #menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  #menu.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/* 557px以下の場合 */
@media screen and (max-width: 557px) {
  .sp_nav_menu {
    top: 65px;
  }
  .sp_nav_ud {
    top: 525px;
  }
  .sp_nav_ud_img2 {
    margin-top: 12px;
  }
  .sp_nav_ud_text {
    margin-top: -15px;
  }
}
/* ファイルのインポート
============================== */
/* Contact */
.contact {
  width: 100%;
  margin: 200px auto;
  padding-top: 100px;
}
.contact_text {
  line-height: 40px;
  font-size: 17px;
  margin-bottom: 50px;
}
.contact_text_br {
  display: none;
}
.contact_btn-box {
  background: #B1784B;
}
.contact_btn-box:before {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #B1784B;
}
.contact_btn-box:hover:before {
  top: 0;
  left: 0;
  width: 99%;
  height: 97%;
  content: "";
}
.contact_btn-box_text {
  font-size: 20px;
  padding: 8px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.contact_btn, .contact a.btn, .contact button.btn {
  position: relative;
  display: inline-block;
  padding: 1rem 6.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
}

/* 999px以下の場合
================================= */
@media screen and (max-width: 999px) {
  .contact {
    margin: 160px auto;
    padding-top: 0;
  }
}
/* 430px以下の場合
================================= */
@media screen and (max-width: 430px) {
  /* contact */
  .contact {
    width: 100%;
  }
  .contact_text {
    font-size: 16px;
    padding: 0 15px;
  }
  .contact_text_br {
    display: block;
  }
  .contact_btn {
    margin: 0 15px;
    width: -webkit-fill-available;
  }
  .contact_btn-box_text {
    font-size: 18px;
  }
}
/* 370px以下の場合
================================= */
@media screen and (max-width: 370px) {
  .contact_btn {
    padding: 1rem 2.5rem;
  }
}
/* ファイルのインポート
============================== */
footer {
  width: 100%;
  height: 245px;
  background-color: #E0DCC9;
  margin: 100px auto 0;
  padding-top: 45px;
}
footer p {
  width: 25px;
  margin: 20px auto;
}
footer p img {
  width: 25px;
}
footer h3 {
  text-align: center;
  font-size: 0.62rem;
  color: #fff;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 840px;
  margin: 0 auto;
}
.footer img {
  width: 120px;
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer ul li {
  margin-right: 30px;
  letter-spacing: 0.15rem;
  color: #fff;
}
.footer ul li:nth-of-type(5) {
  color: #B1784B;
  margin-right: 0;
}

@media screen and (max-width: 999px) {
  .footer {
    width: 100%;
  }
  .footer nav {
    display: none;
  }
}
/* ファイルのインポート
============================== */
/* contact top
============================== */
/* class="cap" */
.cap {
  margin: 95px auto 140px;
}
.cap_waku {
  width: 100％;
  height: 260px;
  padding: 30px 0 0 50px;
  border: solid 40px #F3F1EA;
  background-color: #fff;
}
.cap_waku_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cap_waku_inner h2 {
  font-size: 5rem;
  letter-spacing: 0.3rem;
}
.cap_waku_inner h4 {
  font-size: 14px;
  margin-left: 60px;
  margin-top: 20px;
  color: #707070;
}
.cap_waku_sq1 {
  position: absolute;
  top: 95px;
  left: 0;
}
.cap_waku_sq1_1, .cap_waku_sq2_3, .cap_waku_sq2_4, .cap_waku_sq1_2 {
  width: 40px;
  height: 40px;
  background-color: #51718C;
}
.cap_waku_sq1_2 {
  position: relative;
  top: 180px;
}
.cap_waku_sq2 {
  position: absolute;
  top: 95px;
  right: 0;
}
.cap_waku_sq2_4 {
  position: relative;
  top: 180px;
}

/* class="content" */
.content {
  max-width: 840px;
  margin: 0 auto;
}
.content h3 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 120px;
  line-height: 36px;
}

.form_note {
  margin-bottom: 40px;
}
.form_note_kome {
  color: #B1784B;
}
.form_note_2 {
  font-size: 0.88rem;
  margin-top: 20px;
}
.form_note_3 {
  margin: 70px 0;
  text-align: center;
}
.form_note_3 input {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}
.form_note_3 span {
  color: #51718C;
}
.form h5 {
  font-size: 1.12rem;
  margin-bottom: 5px;
}
.form_list p {
  min-height: 50px;
  background-color: #F3F1EA;
  margin-bottom: 40px;
  padding: 15px 23px;
}
.form_list p input {
  margin-left: 25px;
}
.form_list p input:first-child {
  margin-left: 0;
}
.form_list_checkbox {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 1em;
  width: 1em;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
}
.form_list_checkbox + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid rgba(0, 0, 0, 0.32);
  border-left: 3px solid rgba(0, 0, 0, 0.32);
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}
.form_list_checkbox:checked {
  background-color: #ccc;
}
.form_list_text {
  border: 0;
  background-color: #F3F1EA;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}
.form_list_text:focus {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.form_list_free {
  border: 0;
  background-color: #F3F1EA;
  min-width: 840px;
  height: 200px;
}
.form_button {
  width: 250px;
  height: 60px;
  background-color: #51718C;
  margin: 0 auto;
  border-radius: 5px;
}
.form_button button {
  background-color: #51718C;
  border: 0;
  color: #fff;
  font-size: 1.25rem;
  width: 100px;
  margin: 15px 76px;
}

/* responsive
================================ */
/* 999px以下の場合 */
@media screen and (max-width: 999px) {
  .cap_waku {
    padding: 30px 0 0 0;
  }
  .cap_waku_inner {
    display: block;
    margin: 10px auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  .cap_waku_inner h2 {
    font-size: 3rem;
  }
  .cap_waku_inner h4 {
    margin: 0 auto;
  }
  .cap_waku_sq1_2, .cap_waku_sq2_4 {
    top: 180px;
  }
  .content {
    padding: 0 12px;
  }
  .content h3 {
    font-size: 1.1rem;
  }
  .contact_text_br {
    display: block;
  }
  .form_list_free {
    min-width: 655px;
  }
}
/* 654px以下の場合 */
@media screen and (max-width: 654px) {
  .form_list_free {
    min-width: 360px;
  }
}
/* 492px以下の場合 */
@media screen and (max-width: 492px) {
  .content h3 {
    font-size: 1rem;
  }
  .form {
    max-width: 492px;
  }
  .form_list p {
    padding: 5px 23px;
  }
  .form_button {
    width: 200px;
    height: 50px;
  }
  .form_button button {
    font-size: 1rem;
    margin: 12px 55px;
  }
}