@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
@import url(default.css);
@import url(utility.css);
@import url(animate.css);
@import url(header.css);
@import url(footer.css);
/* ==================================
    共通箇所
================================== */
html {
  font-size: 62.5%; }

body {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: white;
  font-family: "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  color: black;
  letter-spacing: 0px; }

.outer {
  max-width: 100%;
  overflow: hidden; }

.mincho {
  font-family: "Noto Serif JP", "游明朝", YuMincho medium, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

a {
  color: #040404;
  text-decoration: underline; }

a:hover {
  opacity: .8;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

img {
  max-width: 100%;
  height: auto; }

.sp_cnt {
  display: none; }

object {
  pointer-events: none;
  max-width: 100%;
  height: auto; }

@media screen and (max-width: 768px) {
  .sp_cnt {
    display: block; }
  .pc_cnt {
    display: none; } }

/* ==================================
    MAIN CONTENTS
================================== */
#main_container {
  position: relative;
  margin-top: 100vh;
  padding-bottom: 80px;
  background-color: #fff;
  z-index: 10; }

.lower #main_container {
  position: relative;
  margin-top: auto;
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #fff;
  z-index: 1; }

.logo {
  font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  line-height: normal;
  letter-spacing: 1.6px;
  text-align: center;
  color: #ffffff; }
  .logo a {
    color: #fff;
    text-decoration: none; }
  .logo .logo_name {
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1.08px; }
  .logo .eng {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2; }
  .logo .jpn {
    font-family: "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2; }

.inner_box {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; }

.flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex_box_sb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.flex_box_fs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.flex_box_fe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.flex_box_cnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.btn_design {
  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;
  position: relative;
  max-width: 322px;
  width: 100%;
  height: 66px;
  background-color: #b79f7b;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.48px;
  text-align: center;
  color: #ffffff; }
  .btn_design:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 26px;
    height: 2px;
    margin: auto;
    background-color: #ffffff;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .btn_design:hover {
    opacity: 1; }
    .btn_design:hover:after {
      width: 36px; }

.btn_design02 {
  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;
  position: relative;
  max-width: 206px;
  width: 100%;
  height: 55px;
  border: solid 2px #b79f7b;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.42px;
  color: #b39971;
  text-decoration: none; }
  .btn_design02:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0px;
    height: 2px;
    margin: auto;
    background-color: #b79f7b;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
  .btn_design02:hover {
    opacity: 1; }
    .btn_design02:hover:after {
      width: 15px; }

.btn_stlye.arrow {
  position: relative; }
  .btn_stlye.arrow span {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.75px;
    color: #ffffff; }

.fuki_sub_ttl {
  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;
  position: relative;
  width: 100%;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 4px;
  background-color: #34b566;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.9px;
  color: #ffffff; }
  .fuki_sub_ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 10px solid #34b566; }

.txt_box p {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
  color: #000000; }
  .txt_box p:last-of-type {
    margin-bottom: 0; }

#pagetop_box {
  _width: 100%;
  _text-align: right;
  _padding: 0 20px 0 0; }

#pageTop {
  position: fixed;
  display: none;
  bottom: 80px;
  right: 67px;
  z-index: 100;
  width: 60px; }

.fixed_box {
  display: none; }

.ttl_Wrap_hd {
  position: relative;
  margin-bottom: 60px;
  text-align: center; }
  .ttl_Wrap_hd .ttl_box {
    position: relative;
    font-size: 34px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.02px;
    text-align: center;
    color: #000000; }
  .ttl_Wrap_hd .eng {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 11rem;
    font-weight: bold;
    line-height: 1.0;
    letter-spacing: 2.2px;
    text-align: center;
    color: #f5f3ef;
    z-index: 1; }
  .ttl_Wrap_hd .jpn {
    position: relative;
    z-index: 2; }
    .ttl_Wrap_hd .jpn em {
      display: block;
      position: relative;
      z-index: 2;
      margin-bottom: 0px;
      font-size: 1.8rem; }

@media screen and (max-width: 1200px) {
  #main_container {
    padding-bottom: 6.66667vw; }
  .lower #main_container {
    padding-top: 5vw;
    padding-bottom: 6.66667vw; }
  .logo {
    font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
    color: #ffffff; }
    .logo a {
      color: #fff;
      text-decoration: none; }
    .logo .logo_name {
      font-size: 3vw;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 1.08px; }
    .logo .eng {
      font-size: 1.33333vw;
      font-weight: 500;
      line-height: 1.2; }
    .logo .jpn {
      font-family: "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
      font-size: 1vw;
      font-weight: bold;
      line-height: 1.2; }
  .inner_box {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto; }
  .btn_design {
    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;
    position: relative;
    max-width: 322px;
    width: 100%;
    height: 66px;
    background-color: #b79f7b;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-align: center;
    color: #ffffff; }
    .btn_design:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 26px;
      height: 2px;
      margin: auto;
      background-color: #ffffff;
      -webkit-transition: all 0.2s ease-in;
      -o-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }
    .btn_design:hover {
      opacity: 1; }
      .btn_design:hover:after {
        width: 36px; }
  .btn_design02 {
    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;
    position: relative;
    max-width: 206px;
    width: 100%;
    height: 55px;
    border: solid 2px #b79f7b;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.42px;
    color: #b39971;
    text-decoration: none; }
    .btn_design02:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 0px;
      height: 2px;
      margin: auto;
      background-color: #b79f7b;
      -webkit-transition: all 0.2s ease-in;
      -o-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }
    .btn_design02:hover {
      opacity: 1; }
      .btn_design02:hover:after {
        width: 15px; }
  .btn_stlye.arrow {
    position: relative; }
    .btn_stlye.arrow span {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0.75px;
      color: #ffffff; }
  .fuki_sub_ttl {
    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;
    position: relative;
    width: 100%;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #34b566;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.9px;
    color: #ffffff; }
    .fuki_sub_ttl:before {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -10px;
      border: 10px solid transparent;
      border-top: 10px solid #34b566; }
  .txt_box p {
    margin-bottom: 1em;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.48px;
    color: #000000; }
    .txt_box p:last-of-type {
      margin-bottom: 0; }
  #pagetop_box {
    _width: 100%;
    _text-align: right;
    _padding: 0 20px 0 0; }
  #pageTop {
    position: fixed;
    display: none;
    bottom: 6.66667vw;
    right: 5.58333vw;
    z-index: 9;
    width: 5vw; }
  .ttl_Wrap_hd {
    position: relative;
    margin-bottom: 5vw;
    text-align: center; }
    .ttl_Wrap_hd .ttl_box {
      position: relative;
      font-size: 2.83333vw;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: normal;
      letter-spacing: 1.02px;
      text-align: center;
      color: #000000; }
    .ttl_Wrap_hd .eng {
      display: block;
      position: absolute;
      bottom: 0;
      width: 100%;
      font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
      font-size: 9.16667vw;
      font-weight: bold;
      line-height: 1.0;
      letter-spacing: 2.2px;
      text-align: center;
      color: #f5f3ef;
      z-index: 1; }
    .ttl_Wrap_hd .jpn {
      position: relative;
      z-index: 2; }
      .ttl_Wrap_hd .jpn em {
        display: block;
        position: relative;
        z-index: 2;
        margin-bottom: 5px;
        font-size: 1.5vw; } }

@media screen and (max-width: 992px) {
  #main_container {
    padding-bottom: 8.06452vw; }
  .lower #main_container {
    padding-top: 6.04839vw;
    padding-bottom: 8.06452vw; }
  .logo {
    font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
    color: #ffffff; }
    .logo a {
      color: #fff;
      text-decoration: none; }
    .logo .logo_name {
      font-size: 3.62903vw;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 1.08px; }
    .logo .eng {
      font-size: 1.6129vw;
      font-weight: 500;
      line-height: 1.2; }
    .logo .jpn {
      font-family: "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
      font-size: 1.20968vw;
      font-weight: bold;
      line-height: 1.2; }
  .inner_box {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto; }
  .btn_design {
    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;
    position: relative;
    max-width: 322px;
    width: 100%;
    height: 66px;
    background-color: #b79f7b;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-align: center;
    color: #ffffff; }
    .btn_design:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 26px;
      height: 2px;
      margin: auto;
      background-color: #ffffff;
      -webkit-transition: all 0.2s ease-in;
      -o-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }
    .btn_design:hover {
      opacity: 1; }
      .btn_design:hover:after {
        width: 36px; }
  .btn_design02 {
    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;
    position: relative;
    max-width: 206px;
    width: 100%;
    height: 55px;
    border: solid 2px #b79f7b;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.42px;
    color: #b39971;
    text-decoration: none; }
    .btn_design02:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 0px;
      height: 2px;
      margin: auto;
      background-color: #b79f7b;
      -webkit-transition: all 0.2s ease-in;
      -o-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }
    .btn_design02:hover {
      opacity: 1; }
      .btn_design02:hover:after {
        width: 15px; }
  .btn_stlye.arrow {
    position: relative; }
    .btn_stlye.arrow span {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0.75px;
      color: #ffffff; }
  .fuki_sub_ttl {
    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;
    position: relative;
    width: 100%;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #34b566;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.9px;
    color: #ffffff; }
    .fuki_sub_ttl:before {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -10px;
      border: 10px solid transparent;
      border-top: 10px solid #34b566; }
  .txt_box p {
    margin-bottom: 1em;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.48px;
    color: #000000; }
    .txt_box p:last-of-type {
      margin-bottom: 0; }
  #pagetop_box {
    _width: 100%;
    _text-align: right;
    _padding: 0 20px 0 0; }
  #pageTop {
    position: fixed;
    display: none;
    bottom: 6.66667vw;
    right: 5.58333vw;
    z-index: 9;
    width: 5vw; }
  .ttl_Wrap_hd {
    position: relative;
    margin-bottom: 6.04839vw;
    text-align: center; }
    .ttl_Wrap_hd .ttl_box {
      position: relative;
      font-size: 3.42742vw;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: normal;
      letter-spacing: 1.02px;
      text-align: center;
      color: #000000; }
    .ttl_Wrap_hd .eng {
      display: block;
      position: absolute;
      bottom: 0;
      width: 100%;
      font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
      font-size: 11.08871vw;
      font-weight: bold;
      line-height: 1.0;
      letter-spacing: 2.2px;
      text-align: center;
      color: #f5f3ef;
      z-index: 1; }
    .ttl_Wrap_hd .jpn {
      position: relative;
      z-index: 2; }
      .ttl_Wrap_hd .jpn em {
        display: block;
        position: relative;
        z-index: 2;
        margin-bottom: 5px;
        font-size: 1.81452vw; } }

@media screen and (max-width: 768px) {
  #main_container {
    margin-top: auto;
    padding-bottom: 6.51042vw; }
  .lower #main_container {
    padding-top: 7.8125vw;
    padding-bottom: 10.41667vw; }
  .logo {
    font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
    color: #ffffff; }
    .logo a {
      color: #fff;
      text-decoration: none; }
  .inner_box {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto; }
  .btn_design {
    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;
    position: relative;
    max-width: none;
    width: 72.91667vw;
    height: 15.625vw;
    background-color: #b79f7b;
    text-decoration: none;
    font-size: 4.16667vw;
    font-weight: 500;
    letter-spacing: 0.48px;
    text-align: center;
    color: #ffffff; }
    .btn_design:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 26px;
      height: 2px;
      margin: auto;
      background-color: #ffffff;
      -webkit-transition: all 0.2s ease-in;
      -o-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }
    .btn_design:hover {
      opacity: 1; }
      .btn_design:hover:after {
        width: 36px; }
  .btn_design02 {
    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;
    position: relative;
    max-width: 206px;
    width: 100%;
    height: 55px;
    border: solid 2px #b79f7b;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.42px;
    color: #b39971;
    text-decoration: none; }
    .btn_design02:after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 0px;
      height: 2px;
      margin: auto;
      background-color: #b79f7b;
      -webkit-transition: all 0.2s ease-in;
      -o-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }
    .btn_design02:hover {
      opacity: 1; }
      .btn_design02:hover:after {
        width: 15px; }
  .btn_stlye.arrow {
    position: relative; }
    .btn_stlye.arrow span {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0.75px;
      color: #ffffff; }
  .fuki_sub_ttl {
    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;
    position: relative;
    width: 100%;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #34b566;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.9px;
    color: #ffffff; }
    .fuki_sub_ttl:before {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -10px;
      border: 10px solid transparent;
      border-top: 10px solid #34b566; }
  .txt_box p {
    margin-bottom: 1em;
    font-size: 3.64583vw;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.48px;
    color: #000000; }
    .txt_box p:last-of-type {
      margin-bottom: 0; }
  #pagetop_box {
    _width: 100%;
    _text-align: right;
    _padding: 0 20px 0 0; }
  #pageTop {
    position: fixed;
    display: none;
    bottom: 22.26563vw;
    right: 3.90625vw;
    z-index: 1000;
    width: 15.625vw; }
  .fixed_box {
    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;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20.18229vw;
    background-color: rgba(62, 66, 70, 0.71);
    z-index: 1000; }
    .fixed_box .fixed_btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      max-width: 340px;
      width: 44.27083vw;
      height: 13.80208vw;
      -webkit-box-shadow: 0px 5px 0 0 #7b6443;
      box-shadow: 0px 5px 0 0 #7b6443;
      background-color: #bba585;
      text-decoration: none; }
      .fixed_box .fixed_btn span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
        font-size: 3.51563vw;
        font-weight: bold;
        line-height: 1.11;
        text-align: left;
        color: #ffffff; }
      .fixed_box .fixed_btn.tel_btn {
        margin-right: 3.64583vw;
        padding-left: 5.20833vw; }
        .fixed_box .fixed_btn.tel_btn span {
          padding-left: 9.50521vw;
          background-image: url(../images/icon/sp_tel_icon02.svg);
          background-position: left center;
          background-repeat: no-repeat;
          background-size: 5.2vw auto;
          letter-spacing: 2.7px; }
      .fixed_box .fixed_btn.contact_btn {
        padding-left: 4.55729vw; }
        .fixed_box .fixed_btn.contact_btn span {
          padding-left: 10.02604vw;
          background-image: url(../images/icon/sp_mail_icon02.svg);
          background-position: left center;
          background-repeat: no-repeat;
          background-size: 7.03vw auto;
          font-size: 3.125vw;
          letter-spacing: 1.2px; }
  .ttl_Wrap_hd {
    position: relative;
    margin-bottom: 7.8125vw;
    text-align: center; }
    .ttl_Wrap_hd .ttl_box {
      position: relative;
      font-size: 4.42708vw;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: normal;
      letter-spacing: 1.02px;
      text-align: center;
      color: #000000; }
    .ttl_Wrap_hd .eng {
      display: block;
      position: absolute;
      bottom: 0;
      width: 100%;
      font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
      font-size: 15.625vw;
      font-weight: bold;
      line-height: 1.0;
      letter-spacing: 2.2px;
      text-align: center;
      color: #f5f3ef;
      z-index: 1; }
    .ttl_Wrap_hd .jpn em {
      font-size: 3.125vw; } }

.contact_contents {
  max-width: 1200px;
  width: 100%;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #b79f7b; }
  .contact_contents .contact_box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    color: #fff; }
  .contact_contents .contact_ttl_hd {
    margin-right: 8.33333%; }
    .contact_contents .contact_ttl_hd .contact_ttl {
      margin-bottom: 15px;
      font-family: "Roboto", "ヒラギノ角ゴ Pro W3", "游ゴシック", "メイリオ", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
      font-size: 3.6rem;
      font-weight: bold;
      line-height: 1.2;
      letter-spacing: 2.16px; }
    .contact_contents .contact_ttl_hd .jpn {
      font-size: 1.7rem;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0.85px; }
  .contact_contents .tel_box {
    margin-right: 3.33333%; }
    .contact_contents .tel_box .tel_img {
      width: 20.66667%; }
    .contact_contents .tel_box .txt {
      margin-top: 10px;
      font-size: 1.3rem;
      font-weight: 500;
      line-height: 1.6;
      letter-spacing: 0.39px; }
  .contact_contents .btn_box {
    max-width: 380px;
    width: 31.66667%; }
    .contact_contents .btn_box .btn_design {
      max-width: none;
      width: 100%;
      height: 80px;
      background-image: url(../images/icon/mail_icon.svg);
      background-position: 7.89% center;
      background-repeat: no-repeat;
      background-size: 30px auto;
      border: solid 2px #ffffff; }

@media screen and (max-width: 1200px) {
  .contact_contents {
    max-width: none;
    width: 100%;
    height: 16.66667vw; }
    .contact_contents .contact_box {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 100%;
      color: #fff; }
    .contact_contents .contact_ttl_hd {
      margin-right: 4.16667vw; }
      .contact_contents .contact_ttl_hd .contact_ttl {
        margin-bottom: 1.66667vw;
        font-size: 3vw; }
      .contact_contents .contact_ttl_hd .jpn {
        font-size: 1.41667vw; }
    .contact_contents .tel_box {
      margin-right: 2.5vw; }
      .contact_contents .tel_box .tel_img {
        width: 20.66667vw; }
      .contact_contents .tel_box .txt {
        margin-top: 0.83333vw;
        font-size: 1.08333vw; }
    .contact_contents .btn_box {
      max-width: 380px;
      width: 31.66667vw; }
      .contact_contents .btn_box .btn_design {
        height: 6.66667vw;
        background-image: url(../images/icon/mail_icon.svg);
        background-position: 5.89% center;
        background-repeat: no-repeat;
        background-size: 2.5vw auto; } }

@media screen and (max-width: 992px) {
  .contact_contents {
    max-width: none;
    width: 100%;
    height: auto; }
    .contact_contents .contact_box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding-top: 7.05645vw;
      padding-bottom: 7.05645vw; }
    .contact_contents .contact_ttl_hd {
      margin-right: 0;
      margin-bottom: 3.02419vw;
      text-align: center; }
      .contact_contents .contact_ttl_hd .contact_ttl {
        margin-bottom: 2.01613vw;
        font-size: 3.62903vw; }
      .contact_contents .contact_ttl_hd .jpn {
        font-size: 1.71371vw; }
    .contact_contents .tel_box {
      margin-right: 0;
      margin-bottom: 3.02419vw; }
      .contact_contents .tel_box .tel_img {
        max-width: none;
        width: 29.03226vw;
        margin-left: auto;
        margin-right: auto; }
        .contact_contents .tel_box .tel_img img {
          width: 100%;
          height: auto; }
      .contact_contents .tel_box .txt {
        margin-top: 1.00806vw;
        font-size: 1.6129vw; }
    .contact_contents .btn_box {
      max-width: 480px;
      width: 48.3871vw; }
      .contact_contents .btn_box .btn_design {
        height: 8.06452vw;
        background-image: url(../images/icon/mail_icon.svg);
        background-position: 5.89% center;
        background-repeat: no-repeat;
        background-size: 3.5vw auto; } }

@media screen and (max-width: 768px) {
  .contact_contents {
    max-width: none;
    width: 100%;
    height: auto; }
    .contact_contents .contact_box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding-top: 9.11458vw;
      padding-bottom: 9.11458vw; }
    .contact_contents .contact_ttl_hd {
      margin-right: 0;
      margin-bottom: 3.90625vw;
      text-align: center; }
      .contact_contents .contact_ttl_hd .contact_ttl {
        margin-bottom: 2.60417vw;
        font-size: 7.29167vw; }
      .contact_contents .contact_ttl_hd .jpn {
        font-size: 3.125vw; }
    .contact_contents .tel_box {
      margin-right: 0;
      margin-bottom: 6.51042vw; }
      .contact_contents .tel_box .tel_img {
        max-width: none;
        width: 44.27083vw;
        margin-left: auto;
        margin-right: auto; }
        .contact_contents .tel_box .tel_img img {
          width: 100%;
          height: auto; }
      .contact_contents .tel_box .txt {
        margin-top: 1.95313vw;
        font-size: 3.38542vw; }
    .contact_contents .btn_box {
      max-width: 540px;
      width: 70.3125vw; }
      .contact_contents .btn_box .btn_design {
        height: 13.02083vw;
        background-image: url(../images/icon/mail_icon.svg);
        background-position: 6.89% center;
        background-repeat: no-repeat;
        background-size: 5.5vw auto;
        font-size: 3.125vw; } }

@media screen and (max-width: 576px) {
  .contact_contents .contact_ttl_hd {
    margin-right: 0;
    margin-bottom: 3.90625vw;
    text-align: center; }
  .contact_contents .tel_box .tel_img {
    max-width: none;
    width: 44.27083vw;
    margin-left: auto;
    margin-right: auto; }
    .contact_contents .tel_box .tel_img img {
      width: 100%;
      height: auto; }
  .contact_contents .tel_box .txt {
    margin-top: 1.95313vw;
    font-size: 3.38542vw; }
  .contact_contents .btn_box .btn_design {
    height: 15.625vw; } }


/*** レスポンシブテーブルデザイン ***/
.shokai{
	width: 100%;
	border: 2px solid #d6ceb4;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	　margin-bottom: 40px;
	margin-top: 10px;
	margin-bottom: 10px;
}
 
.shokai th{
  padding: 15px;
  border-top: solid 1px #ffffff;
  width: 30%;
  overflow: hidden;
  color: #13131e;
  font-style: normal;
  font-weight: bold;
  font-size: 100%;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
  vertical-align: top;
  background-color: #eeece4;
}
 
.shokai td{
padding: 15px;
text-align: left;
vertical-align: top;
color: #595960;
background-color: #ffffff;
border-top: dotted 1px #e0dccc;
overflow: hidden;
word-break: break-all;
word-wrap: break-word;
}
 
@media (max-width: 768px){
.shokai th{
  width:100%;
  display:block;
  margin: 0 auto;
  border:none;
  border-radius: 3px;
}
.shokai td{
  display: list-item;
  width: 95%;
  border-top: none !important;
}
}
/*** レスポンシブテーブルデザイン　おわり ***/