@charset "UTF-8";

/* arguments inittial */

/* font style */

/* site style */

/* [ opacity ]
------------------------------------------------- */

/* [ display style ]
------------------------------------------------- */

/* [ background-image ]
------------------------------------------------- */

/* [ writing-mode ]
------------------------------------------------- */

/* [ illustrator & photoshop letter spacing ]
------------------------------------------------- */

/* [ easy breakpoint ]
------------------------------------------------- */

/* [ easy transform ]
------------------------------------------------- */

/* ====================================================================================
■01.RESET HTML
==================================================================================== */

#wrapper {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 768px) {
  #wrapper {
    min-width: 1240px;
  }
}

/* html {
  overflow-y: auto;
  font-size: 62.5%;
  line-height: normal;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
} */
/* 
img {
  max-width: 100%;
  padding: 0;
  margin: 0;
  vertical-align: top;
  border: 0;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
} */

.ov_hover:hover img {
  -ms-filter: 'alpha( opacity=70)';
  filter: alpha(opacity=70);
  opacity: 0.7;
}

/* a {
  color: #364246;
  text-decoration: none;
  word-break: break-all;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
} */
/* 
@media (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }

  a:hover img {
    -ms-filter: 'alpha( opacity=70)';
    filter: alpha(opacity=70);
    opacity: 0.7;
  }
} */

/* ====================================================================================
■02.CLEAR FLOAT
==================================================================================== */
.clearfix::after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  content: ' ';
}

.clearfix {
  display: inline-block;
}

/* Hide these rules from IE-mac \ */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.hidden {
  display: none;
}

input[type='text'],
input[type='date'],
input[type='email'],
input[type='number'],
input[type='url'] {
  word-break: normal;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.table {
  display: table;
  margin-right: auto;
  margin-left: auto;
}

/* ====================================================================================
■03.LAYOUT
==================================================================================== */
@media only screen and (min-width: 768px) {
  .sp,
  .SP {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .pc,
  .PC {
    display: none !important;
  }
}

.container {
  position: relative;
  width: 100%;
  max-width: 1220px;
  padding: 0 10px;
  margin: 0 auto;
}

/* ====================================================================================
■04.FLEX
==================================================================================== */
.dis_flex {
  display: flex;
  display: -webkit-flex;

  /* Safari */
  display: -moz-flex;

  /* Firefox */
  display: -ms-flex;

  /* IE */
}

.flex_between {
  display: flex;
  justify-content: space-between;
}

.flex_between_center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex_center_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* justify-content */
.flex_jus_start {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}

.flex_jus_end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}

.flex_jus_center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.flex_jus_between {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.flex_jus_around {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}

.flex_jus_ini {
  -webkit-justify-content: initial;
  -moz-justify-content: initial;
  -ms-justify-content: initial;
  justify-content: initial;
}

/* align-items */
.flex_align_item_start {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.flex_align_item_end {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.flex_align_item_stretch {
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}

.flex_align_item_baseline {
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
}

.flex_align_item_center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.flex_align_item_ini {
  -webkit-align-items: initial;
  -moz-align-items: initial;
  -ms-align-items: initial;
  align-items: initial;
}

.flex-container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_bg {
  width: 100%;
  margin-right: -100%;
}

.flex_content {
  position: relative;
  width: 100%;
}

/* ====================================================================================
■05.HEADER
==================================================================================== */
#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 19999;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #header {
    min-width: 1220px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1219px) {
  #header {
    padding: 0 50px 22px 28px;
  }
}

/* #header .h-logo {
  padding-top: 19px;
} */

#header .h-inner {
  position: relative;
  z-index: 999;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  padding: 20px;
  margin: 0 auto;
}

#header::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 1800px;
  height: 1px;
  content: '';
  background: #fff;
  transform: translateX(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 1219px) {
  #header::before {
    right: 50px;
    left: 50px;
  }
}

#header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  content: '';
  background: #c8bba0;
  opacity: 0;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

#header .h-logo {
  width: 216px;
}

#header .h-logo a {
  display: inline-block;
}

@media (max-width: 767px) {
  #header .h-logo {
    width: 195px;
    max-width: 55%;
  }
}

#header .h-box .h-desc01 {
  margin-bottom: 9px;
  font-size: 13px;
  line-height: 1.53846;
  color: #fff;
  letter-spacing: 0.12em;
}

#header .h-box .h-desc01 span {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
}

#header .h-box .h-desc01 .time {
  margin-left: 10px;
}

#header .h-box .h-btn01 a {
  display: inline-block;
  width: 238px;
  padding: 8px 5px 12px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 30px;
}

#header .h-box .h-btn01 a .txt01 {
  display: inline-block;
  font-size: 12px;
  line-height: 1.66667;
  letter-spacing: 0.12em;
  vertical-align: middle;
}

#header .h-box .h-btn01 a .txt02 {
  display: inline-block;
  margin-left: 27px;
  font-size: 13px;
  line-height: 1.53846;
  letter-spacing: 0.09em;
  vertical-align: middle;
}

@media (min-width: 768px) {
  #header .h-box .h-btn01 a:hover {
    color: #fff;
    background: #2b2b2b;
    border: 1px solid #2b2b2b;
    opacity: 1;
  }
}

#header .h-right {
  width: calc(100% - 235px);
  max-width: 1070px;
  padding: 0;
}

#header .layerMenu {
  width: 100%;
}

#header.is-fixed::before {
  opacity: 0;
}

#header.is-fixed::after {
  opacity: 0.9;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@media (max-width: 767px) {
  #header {
    padding: 0;
  }

  #header .h-logo {
    padding-top: 4px;
  }

  #header .h-inner {
    position: relative;
    z-index: 999;
    padding: 3vw;
  }

  #header::before {
    width: 96%;
  }

  #header .h-logo {
    width: 45%;
  }

  #header .h-box {
    margin-top: 10px;
    text-align: center;
  }

  #header .h-box .h-desc01 {
    margin-bottom: 17px;
    font-size: 14px;
    line-height: 1.64286;
    color: #2b2b2b;
    letter-spacing: 0.12em;
  }

  #header .h-box .h-desc01 span {
    padding-bottom: 2px;
    border-bottom: 1px solid #2b2b2b;
  }

  #header .h-box .h-desc01 .time {
    margin-left: 20px;
  }

  #header .h-box .h-btn01 a {
    width: 275px;
    padding: 10px 5px 13px;
    color: #2b2b2b;
    border: 1px solid #2b2b2b;
  }

  #header .h-box .h-btn01 a .txt01 {
    font-size: 14px;
    line-height: 1.64286;
    letter-spacing: 0.12em;
  }

  #header .h-box .h-btn01 a .txt02 {
    margin-left: 30px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.09em;
  }

  #header .h-tel a {
    display: inline-block;
    width: 52px;
    height: 52px;
    padding-top: 11px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 9px;
  }

  #header .h-contact a {
    display: inline-block;
    width: 52px;
    height: 52px;
    padding-top: 14px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 9px;
  }

  #header .h-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    width: 165px;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .layerMenu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }

  #gnav .hasSub {
    position: relative;
  }

  #gnav .navSub {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 265px;
    padding: 20px 20px 10px;
    margin-left: -90px;
    visibility: hidden;
    background: rgba(200, 187, 160, 0.9);
    opacity: 0;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }

  #gnav .navSub.is-show {
    visibility: inherit;
    opacity: 1;
  }

  #gnav .navSub a {
    display: block;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .layerMenu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    padding: 70px 17px 0;
    visibility: hidden;
    background: #fff;
    opacity: 0;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }

  .layerMenu.menu_opened {
    z-index: 10010;
    visibility: inherit;
    opacity: 1;
  }

  #gnav .navSub {
    margin-top: 12px;
    border-bottom: 1px solid #2b2b2b;
  }

  #gnav .navSub a {
    position: relative;
    display: block;
    padding: 0 0 0 30px;
    margin-bottom: 7px;
    border-bottom: 0;
  }

  #gnav .navSub a:last-child {
    margin-bottom: 12px;
  }

  #gnav .navSub a::before {
    position: absolute;
    top: 11px;
    left: 15px;
    width: 5px;
    height: 1px;
    content: '';
    background: #2b2b2b;
  }
}

@media (min-width: 768px) {
  #gnav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    width: calc(100% - 250px);
    max-width: 795px;
  }

  #gnav li a {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    color: #fff;
    text-decoration: none;
  }

  #gnav li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #fff;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0% 50%;
  }

  #gnav li a .txt-en {
    display: inline-block;
    font-size: 12px;
    line-height: 1.66667;
    letter-spacing: 0.12em;
    vertical-align: middle;
  }

  #gnav li a .txt-ja {
    display: block;
    font-size: 15px;
    line-height: 1.33333;
    letter-spacing: 0.12em;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  #gnav li a:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@media (min-width: 768px) {
  #gnav li:last-child a {
    padding-right: 0;
  }

  #gnav li:last-child a::after {
    width: calc(100% - 13px);
  }
}

@media (max-width: 767px) {
  #gnav {
    text-align: left;
  }

  #gnav li {
    padding-bottom: 5px;
  }

  #gnav li a {
    position: relative;
    display: block;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.53333;
    color: #2b2b2b;
    text-decoration: none;
    border-bottom: 1px solid #2b2b2b;
  }

  #gnav li a .txt-en {
    order: 2;
    margin-left: 15px;
    font-size: 14px;
    line-height: 1.64286;
    letter-spacing: 0.12em;
  }

  #gnav li a .txt-ja {
    order: 1;
    font-size: 15px;
    line-height: 1.53333;
    letter-spacing: 0.08em;
  }

  #gnav li:last-child a {
    border-bottom: 0;
  }
}

.hamberger {
  position: relative;
  z-index: 10018;
  width: 52px;
  height: 52px;
  padding: 14px 2px 0 2px;
  font-size: 0;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 9px;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@media (min-width: 768px) {
  .hamberger {
    display: none;
  }
}

.hamberger .ham,
.hamberger .ber,
.hamberger .ger {
  display: block;
  width: 32px;
  height: 4px;
  margin: 0 auto 4px;
  background: #fff;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.hamberger.is-active {
  padding-top: 16px;
  background: #2b2b2b;
  border: 1px solid #2b2b2b;
}

.hamberger.is-active span {
  border-radius: 2px;
}

.hamberger.is-active .ham,
.hamberger.is-active .ber {
  width: 35px;
  height: 3px;
  background: #fff;
}

.hamberger.is-active .ham {
  -webkit-transform: rotate(45deg) translateY(5px) translateX(5px);
  -moz-transform: rotate(45deg) translateY(5px) translateX(5px);
  -ms-transform: rotate(45deg) translateY(5px) translateX(5px);
  -o-transform: rotate(45deg) translateY(5px) translateX(5px);
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamberger.is-active .ber {
  -webkit-transform: rotate(-45deg) translateY(0) translateX(0);
  -moz-transform: rotate(-45deg) translateY(0) translateX(0);
  -ms-transform: rotate(-45deg) translateY(0) translateX(0);
  -o-transform: rotate(-45deg) translateY(0) translateX(0);
  transform: rotate(-45deg) translateY(0) translateX(0);
}

.hamberger.is-active .ger {
  display: none;
}

/* ====================================================================================
■06.FOOTER
==================================================================================== */
#footer {
  color: #c0b9a9;
}

#footer .f-block01 {
  background: #fff;
}

#footer .f-block01 .f-ttl01 {
  position: relative;
  z-index: 138;
  margin-bottom: 40px;
}

#footer .f-block01 .f-ttl01 .ttl-en {
  position: relative;
  display: block;
  padding-bottom: 4px;
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
  color: #e5e0d4;
  letter-spacing: 0.05em;
}

#footer .f-block01 .f-ttl01 .ttl-ja {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #ada497;
  letter-spacing: 0.17em;
}

#footer .f-block01 .box-map iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  #footer .f-block01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #footer .f-block01 .f-map {
    position: relative;
    width: 50%;
  }

  #footer .f-block01 .f-map .box-map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  #footer .f-block01 .f-info {
    width: 50%;
    padding: 81px 0 64px 63px;
  }

  #footer .f-block01 .f-info .inner {
    max-width: 540px;
  }
}

#footer .f-tbl01 {
  width: 100%;
  margin-bottom: 41px;
}

#footer .f-tbl01 table {
  width: 100%;
}

#footer .f-tbl01 th {
  padding: 18px 4px 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
  vertical-align: middle;
  background: #d7d0bf;
  border: 1px solid #d7d0bf;
}

#footer .f-tbl01 th:first-child {
  width: 10%;
}

#footer .f-tbl01 th:last-child {
  width: 16%;
}

#footer .f-tbl01 td {
  padding: 11px 5px 11px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #c0b9a9;
  text-align: center;
  letter-spacing: 0.15em;
  vertical-align: middle;
  background-color: #f6f3ea;
  border: 1px solid #d7d0bf;
}

#footer .f-box {
  padding-left: 6px;
}

#footer .f-box .ttl {
  position: relative;
  padding-left: 20px;
  margin-bottom: 17px;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  line-height: 1;
  color: #c0b9a9;
  letter-spacing: 0.08em;
  border-left: 1px solid #dcd7cb;
}

#footer .f-box .desc01 {
  padding-left: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #c0b9a9;
  letter-spacing: 0.11em;
}

#footer .f-box .desc01 a {
  color: currentColor;
  text-decoration: none;
}

#footer .f-box .desc01 .note01 {
  margin-top: 19px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.69231;
  letter-spacing: 0.11em;
}

#footer .f-box .desc01 .note01 .hoshi {
  display: inline-block;
  width: 15px;
  vertical-align: top;
}

#footer .f-box .desc01 .note01 .txt {
  display: inline-block;
  width: calc(100% - 15px);
  vertical-align: top;
}

#footer .f-btn01 {
  margin: 40px 0 0 6px;
}

@media (min-width: 768px) {
  #footer .f-rows01 {
    /* display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; */
    margin-bottom: 24px;
  }

  #footer .f-rows01 .f-box:nth-child(1) {
    /* width: 43%; */
    margin-bottom: 24px;
  }

  #footer .f-rows01 .f-box:nth-child(2) {
    /* width: 57%; */
    margin-bottom: 0;
  }
}

#footer .f-logo {
  margin-bottom: 30px;
}

#footer .f-add {
  /* margin-bottom: 37px; */
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.71429;
  color: #696360;
  letter-spacing: 0.12em;
}

#footer .f-add a {
  color: #696360;
  text-decoration: none;
}

#footer .f-menu ul li {
  margin-bottom: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

#footer .f-menu ul li:last-child {
  margin-bottom: 0;
}

#footer .f-menu ul li.sub {
  margin: 0 0 4px;
}

#footer .f-menu ul li.sub:last-child {
  margin-bottom: 0;
}

#footer .f-menu ul li a {
  font-size: 14px;
  line-height: 1.71429;
  color: #696360;
  text-decoration: none;
  letter-spacing: 0.12em;
}

@media (min-width: 768px) {
  #footer .f-menu ul li a:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
}

@media (min-width: 768px) {
  #footer .f-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }

  #footer .f-menu .f-menu01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    width: 56%;
  }

  #footer .f-menu .f-menu02 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    width: 39%;
  }
}

#footer .f-btn02 a {
  display: inline-block;
  width: 100%;
  max-width: 310px;
  padding: 10px 10px 13px;
  font-size: 14px;
  line-height: 1.57143;
  color: #696360;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.12em;
  background: #fff;
  border-radius: 40px;
}

#footer .f-btn02 a .txt-en {
  display: block;
}

@media (min-width: 768px) {
  #footer .f-btn02 a:hover {
    opacity: 0.5;
  }
}

#footer .f-block02 {
  padding: 85px 0 60px;
  background: #d8d1bf;
}

@media (min-width: 768px) {
  #footer .f-block02 .container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #footer .f-block02 .container .left {
    width: 320px;
  }

  #footer .f-block02 .container .f-menu {
    width: calc(100% - 320px);
    padding-top: 2px;
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  #footer .f-block01 .f-ttl01 {
    margin-bottom: 25px;
  }

  #footer .f-block01 .f-ttl01 .ttl-en {
    padding-bottom: 4px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.18em;
  }

  #footer .social {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) and (max-width: 360px) {
  #footer .f-block01 .f-ttl01 .ttl-en {
    font-size: 28px;
    line-height: 1.14286;
  }
}

@media (max-width: 767px) {
  #footer .f-block01 .f-ttl01 .ttl-ja {
    font-size: 15px;
    line-height: 1.53333;
    letter-spacing: 0.1em;
  }

  #footer .f-block01 .f-info {
    padding: 20px 10px 33px;
  }

  #footer .f-block01 .box-map iframe {
    height: 200px;
  }

  #footer .f-tbl01 {
    width: 100%;
    margin-bottom: 25px;
  }

  #footer .f-tbl01 table {
    width: 100%;
  }

  #footer .f-tbl01 th {
    padding: 18px 2px 18px;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.12em;
  }

  #footer .f-tbl01 th:first-child {
    width: 33px;
  }

  #footer .f-tbl01 th:last-child {
    width: 62px;
  }

  #footer .f-tbl01 td {
    padding: 11px 2px 11px;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.12em;
  }

  #footer .f-box {
    padding-left: 0;
    margin-bottom: 20px;
  }

  #footer .f-box .ttl {
    padding-left: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.0625;
    letter-spacing: 0.06em;
  }

  #footer .f-box .desc01 {
    padding-left: 12px;
    font-size: 15px;
    line-height: 1.53333;
    letter-spacing: 0.08em;
  }

  #footer .f-box .desc01 .note01 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.64286;
    letter-spacing: 0.08em;
  }

  #footer .f-btn01 {
    margin: 20px 0 0 0;
  }
}

@media (max-width: 767px) and (min-width: 768px) {
  #footer .f-rows01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  #footer .f-rows01 .f-box:nth-child(1) {
    width: 43%;
  }

  #footer .f-rows01 .f-box:nth-child(2) {
    width: 57%;
  }
}

@media (max-width: 767px) {
  #footer .f-logo {
    width: 55%;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }

  #footer .f-add {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.71429;
    text-align: center;
    letter-spacing: 0.12em;
  }

  #footer .f-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    margin-top: 25px;
  }

  #footer .f-menu .f-menu01 {
    width: 55%;
  }

  #footer .f-menu .f-menu02 {
    width: 43%;
  }

  #footer .f-menu ul {
    margin-bottom: 10px;
  }

  #footer .f-menu ul li {
    margin-bottom: 10px;
  }

  #footer .f-menu ul li:last-child {
    margin-bottom: 0;
  }

  #footer .f-menu ul li.sub {
    margin: 0 0 4px;
  }

  #footer .f-menu ul li.sub:last-child {
    margin-bottom: 0;
  }

  #footer .f-menu ul li a {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }

  #footer .f-btn02 a {
    display: table;
    max-width: 67%;
    padding: 8px 10px 11px;
    margin: 0 auto;
  }

  #footer .f-block02 {
    padding: 35px 0 30px;
  }
}

#gototop {
  position: fixed;
  right: 10px;
  z-index: 299;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;

  /* bottom: -200px; */
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

#gototop.is-show {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {
  #gototop {
    right: 0;
    bottom: -200px;
  }

  #gototop.is-show {
    bottom: 0;
  }
}

/* ====================================================================================
■07.LAYOUT
==================================================================================== */

/* ====================================================================================
■08.COMMON
==================================================================================== */

/* --------------------------------------------
Title
-------------------------------------------- */
.cm-ttl01 {
  position: relative;
  z-index: 138;
  padding-bottom: 23px;
  border-bottom: 1px solid #fff;
}

.cm-ttl01 .ttl-en {
  position: relative;
  display: block;
  padding-bottom: 10px;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.03448;
  color: #c8c7c6;
  letter-spacing: 0.35em;
}

.cm-ttl01 .ttl-ja {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.58824;
  color: #c8c7c6;
  letter-spacing: 0.15em;
}

@media (max-width: 767px) {
  .cm-ttl01 {
    padding-bottom: 10px;
  }

  .cm-ttl01 .ttl-en {
    padding-bottom: 0;
    font-size: 37px;
    line-height: 1.08108;
    letter-spacing: 0.25em;
  }

  .cm-ttl01 .ttl-ja {
    font-size: 13px;
    line-height: 1.55556;
    letter-spacing: 0.15em;
  }
}

.cm-ttl02 {
  position: relative;
  z-index: 138;
  padding-bottom: 65px;
  border-bottom: 1px solid #e4dcd6;
}

.cm-ttl02 .ttl-en {
  position: relative;
  display: block;
  padding-bottom: 15px;
  font-size: 43px;
  font-weight: 400;
  line-height: 1.04651;
  letter-spacing: 0.05em;
}

.cm-ttl02 .ttl-ja {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6875;
  letter-spacing: 0.12em;
}

@media (max-width: 767px) {
  .cm-ttl02 {
    padding-bottom: 65px;
  }

  .cm-ttl02 .ttl-en {
    padding-bottom: 0;
    font-size: 30px;
    line-height: 1.33333;
    letter-spacing: 0.3em;
  }

  .cm-ttl02 .ttl-ja {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.12em;
  }
}

.cm-ttl03 {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 40px;
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.35em;
}

.cm-ttl03::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 2px;
  margin: 0 auto;
  content: '';
  background: #e4dcd6;
}

@media (max-width: 767px) {
  .cm-ttl03 {
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.08333;
    letter-spacing: 0.22em;
  }

  .cm-ttl03::after {
    width: 200px;
  }
}

/* --------------------------------------------
Button
-------------------------------------------- */
.sticky01 {
  position: fixed;
  top: 50%;
  right: -111px;
  width: 111px;
  margin-top: -104px;
  font-family:
    'EB Garamond',
    'Noto Serif JP',
    '游明朝体',
    'Yu Mincho',
    YuMincho,
    'ヒラギノ明朝 Pro',
    'Hiragino Mincho Pro',
    'MS P明朝',
    'MS PMincho',
    serif;
  -webkit-transition: 0.8s ease all;
  -moz-transition: 0.8s ease all;
  -ms-transition: 0.8s ease all;
  -o-transition: 0.8s ease all;
  transition: 0.8s ease all;
}

.sticky01 a {
  position: relative;
  display: inline-block;

  /* color: #fff; */
  width: 100%;
  padding: 23px 23px 42px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.76923;
  color: #8b8785;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0;
  letter-spacing: 1px;

  /* background: #c8bba0; */
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px #c9d4df;
}

.sticky01 a.line_btn {
  padding: 0;
  margin-top: 10px;
  background-color: transparent;
  box-shadow: none;
}

.sticky01 a.line_btn::before {
  display: none;
}

.sticky01 a::before {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  width: 13px;
  height: 12px;
  margin: 0 auto;
  content: '';
  background: url(../images/common/icn_arr01_bl.png) no-repeat center center;
  background-size: 100% auto;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .sticky01 a:hover {
    opacity: 0.95;
  }

  .sticky01 a:hover::before {
    left: 10px;
  }
}

.sticky01.is-show {
  right: 10px;
}

@media (max-width: 767px) {
  .sticky01 {
    width: 85px;
  }

  .sticky01 a {
    padding: 12px 0 27px;
  }

  .sticky01 a.line_btn img {
    width: 50px;
  }

  .sticky01 a::before {
    bottom: 5px;
  }
}

.cm-btn01 {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 258px;
  padding: 16px 15px 13px 20px;
  font-family:
    'EB Garamond',
    'Noto Serif JP',
    '游明朝体',
    'Yu Mincho',
    YuMincho,
    'ヒラギノ明朝 Pro',
    'Hiragino Mincho Pro',
    'MS P明朝',
    'MS PMincho',
    serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5625;
  color: #837e7c;
  text-align: left;
  text-decoration: none;
  letter-spacing: 0.05em;
  background-color: #f3f0e8;
  border: none;
}

.cm-btn01.bg-white {
  background-color: #fff;
}

.cm-btn01::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 11px;
  content: '';
  background: url(../images/common/icn_arr02_be.png) no-repeat center center;
  background-size: 100% auto;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .cm-btn01 {
    max-width: 280px;
    padding: 20px 15px 18px 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.66667;
    letter-spacing: 0.05em;
  }

  .cm-btn01::before {
    right: 10px;
  }
}

.cm-btn01:link {
  text-decoration: none;
}

.cm-btn01 span {
  position: relative;
  z-index: 55;
  color: #fff;
}

@media (min-width: 768px) {
  .cm-btn01:hover {
    color: #fff;
    background: #2b2b2b;
    opacity: 1;
  }

  .cm-btn01:hover::before {
    background-image: url(../images/common/icn_arr02_wh.png);
  }
}

.c-link {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .c-link:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

.tel-sp {
  text-decoration: none;
}

.tel-sp:link {
  text-decoration: none;
}

@media (min-width: 768px) {
  .tel-sp {
    pointer-events: none;
    cursor: none;
  }
}

/* --------------------------------------------
TEXT
-------------------------------------------- */
.text-base01 {
  position: relative;
  z-index: 133;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .text-base01 {
    font-size: 14px;
    line-height: 1.57143;
  }
}

@media only screen and (max-width: 767px) and (max-width: 375px) {
  .text-base01 {
    font-size: 14px;
    line-height: 1.57143;
    letter-spacing: 0;
  }
}

/* --------------------------------------------
BLOCK
-------------------------------------------- */
.c-sec-contact {
  position: relative;
  z-index: 138;
  padding: 50px 0 80px;
  margin-top: 35px;
  text-align: center;
  background: #fff;
}

.c-sec-contact .c-ttl01 {
  margin-bottom: 40px;
}

.c-sec-contact .desc01 {
  margin-bottom: 38px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align-last: left;
}

.text-right {
  text-align: right;
}

.w1k {
  width: 1000px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .w1k {
    width: 100%;
  }

  .c-sec-contact {
    padding: 10px 0 40px;
    margin-top: 0;
  }

  .c-sec-contact .c-ttl01 {
    margin-bottom: 25px;
  }

  .c-sec-contact .desc01 {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.5625;
  }

  .c-sec-contact .tel01 img {
    max-height: 28px;
  }
}

/* =============================================
 * .toggle
 *============================================= */
.toggle {
  margin-top: 30px;
}

.toggle .toggle-link {
  position: relative;
  cursor: pointer;
  background-color: #c8bba0;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: right 40px center, center right 30px;
  background-size: 2px 20px, 22px 2px;
  transition: 0.2s;
}

.toggle .toggle-link .inner {
  display: flex;
  padding: 5px 60px 15px 30px;
  color: #fff;
}

.toggle .toggle-link .inner .qes {
  width: 75px;
  font-family:
    'EB Garamond',
    'Noto Serif JP',
    '游明朝体',
    'Yu Mincho',
    YuMincho,
    'ヒラギノ明朝 Pro',
    'Hiragino Mincho Pro',
    'MS P明朝',
    'MS PMincho',
    serif;
  font-size: 40px;
  line-height: 1;
  white-space: nowrap;
}

.toggle .toggle-link .inner .qes small {
  font-size: 30px;
}

.toggle .toggle-link .inner h4 {
  width: calc(100% - 75px);
  margin-top: 17px;
  margin-left: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.toggle.active .toggle-link {
  background-size: 2px 0, 22px 2px;
}

.toggle .toggle-main {
  display: none;
  border: 1px solid #e4dcd6;
  border-top: none;
}

.toggle .toggle-main .inner {
  display: flex;
  align-items: flex-start;
  width: 1000px;
  max-width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 0 auto;
}

.toggle .toggle-main .inner .ans {
  display: flex;
  align-items: flex-end;
  margin-right: 30px;
  font-family:
    'EB Garamond',
    'Noto Serif JP',
    '游明朝体',
    'Yu Mincho',
    YuMincho,
    'ヒラギノ明朝 Pro',
    'Hiragino Mincho Pro',
    'MS P明朝',
    'MS PMincho',
    serif;
  font-size: 40px;
  line-height: 1;
  color: #c8bba0;
}

.toggle .toggle-main .inner .ans small {
  margin-bottom: 4px;
  font-size: 30px;
  line-height: 1;
}

.toggle.active .toggle-main {
  display: block;
}

@media (max-width: 767px) {
  .toggle {
    margin-top: 15px;
  }

  .toggle .toggle-link {
    background-position: right 17px center, center right 10px;
    background-size: 2px 15px, 17px 2px;
  }

  .toggle.active .toggle-link {
    background-size: 2px 0, 17px 2px;
  }

  .toggle .toggle-link .inner {
    padding: 5px 10px;
  }

  .toggle .toggle-link .inner .qes {
    width: 50px;
    font-size: 30px;
  }

  .toggle .toggle-link .inner .qes small {
    font-size: 20px;
  }

  .toggle .toggle-link .inner h4 {
    margin-top: 0;
    margin-left: 5px;
    font-size: 18px;
  }

  .toggle .toggle-main .inner {
    width: 100%;
    padding: 5px;
  }

  .toggle .toggle-main .inner .ans {
    font-size: 30px;
  }
}

/* =============================================
 * end toggle
 *============================================= */

/* =============================================
 * color text
 *============================================= */
.c_726655 {
  color: #726655 !important;
}

/* =============================================
 * end color text
 *============================================= */

/* =============================================
 * class css
 *============================================= */
.bg-right,
.bg-left {
  position: relative;
  z-index: 1;
}

.bg-right::after,
.bg-left::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% + 425px);
  content: '';
  background-color: #e5e0d4;
}

.bg-left::after {
  left: 0;
}

.bg-right::after {
  right: 0;
}

@media (max-width: 767px) {
  .bg-right::after,
  .bg-left::after {
    width: 100%;
  }
}

.w-full {
  width: 100% !important;
  max-width: 100% !important;
}

.item_style01.col-2 {
  display: flex;
  justify-content: space-between;
}

.item_style01.col-2 > * {
  width: 50%;
}

.item_style01.col-2 .col-left {
  padding-right: 50px;
}

.item_style01 .ttlh4_1 {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .item_style01.col-2 {
    flex-direction: column-reverse;
  }

  .item_style01.col-2 > * {
    width: 100%;
  }

  .item_style01.col-2 .col-left {
    padding-right: 0;
  }

  .item_style01 .ttlh4_1 {
    margin-bottom: 20px;
  }
}

/* 20240325 add */
#header .h-logo a {
  width: 100%;
}

#footer .f-logo {
  width: 240px;
}