@charset "UTF-8";
/* 
  css設定 @charsetが消されるsass仕様へのハック用コメントです。削除しないでください。新規作成時も必須！
 */
/*==================================================================================
 default
==================================================================================*/
@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular"); /* Mediumない場合 */
}
@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic");
}
/* -------------------------------------------
 initialize
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
	  font-family: "Shippori Mincho", serif!important;
}

body {
  color: #fff;

}



html.nav-open,
body.nav-open {
  overflow: hidden;
  height: 100%;
}

body.nav-open {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

body_1 {
  color: #fff;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

#top_body {
  color: #fff;
  background-color: #fff;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

.serif {
  font-family: "Cinzel", serif;
}

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

sup {
  font-size: 10px;
  vertical-align: super;
}

div {
  line-height: 0;
}

ul li {
  list-style: none;
}

input, select {
  vertical-align: middle;
}

img {
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

table {
  font-size: 100%;
}

main {
  display: block;
}

img {
  -ms-interpolation-mode: bicubic;
}

iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

/* 
 End-initialize
------------------------------------------- */
/* ----------------------------------------
 link-style 
 */
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

a.no-link {
  cursor: default !important;
}

a.no-link:hover {
  opacity: 1 !important;
}

.disable a {
  opacity: 0.25 !important;
  cursor: default;
}

.disable a:after {
  display: none !important;
}

/* ----------------------------------------
 link-style only-pc
*/
@media screen and (min-width: 1025px) {
  a:hover {
    transition: opacity 0.3s;
  }
}
/* 
 End-link-style only-pc
---------------------------------------- */
/* 
 end-link-style
----------------------------------------- */
/* ----------------------------------------
 responsible-contents 
 */
/* ----------------------------------------
 responsible-contents  only-pc 
*/
@media screen and (min-width: 1025px) {
  img.pc {
    display: inline-block !important;
  }
  .pc {
    display: block !important;
  }
  .sp,.sps, .tb {
    display: none !important;
  }
}
/* 
 End-responsible-contents  only-pc 
---------------------------------------- */
/* ----------------------------------------
 responsible-contents  tablet 
*/
@media screen and (max-width: 1024px) {
  .sp,.sps {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  img.tb {
    display: inline-block !important;
  }
  span.tb {
    display: inline !important;
  }
}
/*
 End-responsible-contents  tablet 
 ---------------------------------------- */
/* ----------------------------------------
 responsible-contents  sp 
*/
@media screen and (max-width: 768px) {
  .pc, .tb {
    display: none !important;
  }
  .sp,.sps {
    display: block !important;
  }
  img.sp {
    display: inline-block !important;
  }
  span.sp {
    display: inline !important;
  }
}


.header_btn01{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 80px;
	background-color: #4c6e8b;
	color: #F9F3F3;
	font-size: 16px;
	text-decoration: none;
}

.header_btn02{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 80px;
	background-color: #879cca;
	color: #F9F3F3;
	font-size: 16px;
	text-decoration: none;
}
/*
 End-responsible-contents  sp 
 ---------------------------------------- */
/* 
 End-responsible-contents 
---------------------------------------- */
/*================================================================
 fit-4d-style
================================================================*/
/* logtag */
/* accessibilityNav*/
#accessibilityNav {
  display: none;
}

#logtag {
  display: none;
}

/* no-js */
#noscript {
  width: 100%;
  min-height: 59px;
  border-bottom: 1px solid #999999;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  font-family: sans-serif;
  overflow: hidden;
}

#noscript .content {
  padding: 10px;
  width: auto;
}

#noscript span {
  color: #cc0000;
}

@media (max-width: 768px) {
  sup {
    font-size: 8px;
  }
  .pc {
    display: none !important;
  }
  .sp,.sps {
    display: block !important;
  }
  .wrap {
    width: 94%;
  }
}
/*

snipets

@mixin after-given {
  content: "";
  display: block;
}
example:
@include after-given;

@mixin abs-topce($top: 0) {
  position: absolute;
  top: $top;
  left: 50%;
  transform: translate(-50%,0);
}
example:
@include abs-topce();
@include abs-topce($top: 10%);

@mixin abs-cece {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
example:
@include abs-cece;

@mixin abs-cele($left:0) {
  position: absolute;
  top: 50%;
  left: $left;
  transform: translate(0,-50%);
}
example:
@include abs-cele();
@include abs-cele($left:10%);


@mixin abs-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
example:
@include abs-cover;

@mixin tac {
  text-align: center;
}
example:
@include tac;

@mixin tar {
  text-align: right;
}
example:
@include tar;

@mixin tal {
  text-align: left;
}
example:
@include tal;


*/
/*==================================================================================
 common
==================================================================================*/
body {
  font-feature-settings: "palt";
  background-size: 100% 100%;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.2em;
}

.fixed-base {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./imgs/top/content-bg.jpg);
  background-size: cover;
}

.all-wrap {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

main {
  color: #1c2b46;
}

.js-scroll {
  opacity: 0;
  /* margin-top: 50px; */
  transition: opacity 0.9s;
}

.js-scroll.on {
  opacity: 1;
  margin-top: 0;
}

.app-bnr a {
  display: none;
}

a.disabled {
  pointer-events: none;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.app-bnr {
  position: relative;
  z-index: 20;
}

.wrap {
  margin: 0 auto;
  width: 94%;
  max-width: 1200px;
}

.light {
  font-weight: lighter;
}

.bold {
  font-weight: bold;
}

.serif {
  font-family: "Gilda Display", "Shippori Mincho", serif;
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.en,
.gilda {
  font-family: "Gilda Display", serif;
}

.garamond {
  font-family: "Gilda Display", serif;
}

.cinzel {
  font-family: "Cinzel", serif;
}

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

.font-size30 {
  font-size: 30%;
}

.font-size40 {
  font-size: 40%;
}

.font-size50 {
  font-size: 50%;
}

.font-size60 {
  font-size: 60%;
}

.font-size70 {
  font-size: 70%;
}

.font-size80 {
  font-size: 80%;
}

.font-size90 {
  font-size: 90%;
}

.font-size100 {
  font-size: 100%;
}

.font-size110 {
  font-size: 110%;
}

.font-size120 {
  font-size: 120%;
}

.font-size130 {
  font-size: 130%;
}

.font-size140 {
  font-size: 140%;
}

.font-size150 {
  font-size: 150%;
}

.font-size160 {
  font-size: 160%;
}

.font-size170 {
  font-size: 170%;
}

.font-size180 {
  font-size: 180%;
}

.font-size190 {
  font-size: 190%;
}

.font-size200 {
  font-size: 200%;
}

.swiper-container {
  margin: 0;
  padding-bottom: 50px;
  overflow-x: hidden;
}

.swiper-wrapper {
  height: auto;
  align-items: center;
}

.swiper-slide {
  box-sizing: border-box;
  padding-right: 20px;
}

.commonBannerArea .swiper-container-horizontal > .swiper-scrollbar {
  border-radius: 0;
  position: absolute;
  left: 10%;
  bottom: -20px;
  height: 8px;
  width: 80%;
  background: none;
  border-bottom: 1px solid #2b2f36;
}

.commonBannerArea .swiper-container-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0;
  background: #2b2f36;
}

@media only screen and (max-width: 767px) {
  .commonBannerArea .swiper-container-horizontal > .swiper-scrollbar {
    height: 4px;
  }
}
.swipe {
  display: none;
}

.js-scroll {
  transition: transform 0.6s, opacity 0.6s;
  opacity: 0;
  transform: translateY(40px);
}
.js-scroll.on {
  opacity: 1;
  transform: translateY(0px);
}

.footer-wrapper,
.content {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .content {
    background: url(.imgs/top/bg-sp.jpg);
    background-size: 100% auto;
    background-repeat: repeat;
    padding-top: 92px;
  }
  .swipe-img {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .swipe-img img {
    max-width: auto !important;
    max-width: inherit !important;
    width: auto !important;
  }
  .swipe {
    display: block;
    text-align: center;
    margin: 20px auto 40px;
  }
  .swipe img {
    width: 50% !important;
  }
}
.pageAnnotation {
  position: relative;
  line-height: 1.5;
  font-size: 11px;
  color: #2e4161;
}
.pageAnnotation p {
  line-height: 1.5;
  font-size: 11px;
}
.pageAnnotation a {
  text-decoration: underline;
}

.common-link01 {
  position: relative;
  display: inline-block;
  padding: 9px 0px 9px 31px;
  color: #fff;
  max-width: 300px;
  box-sizing: border-box;
  font-size: 16px;
  margin: auto;
  text-align: left;
}
.common-link01::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0px;
  width: 19px;
  height: 17px;
  background: url(.imgs/top/pin.svg) center no-repeat;
  background-size: 19px 17px;
  transform: translateY(-50%);
  transition: opacity 0.5s;
  z-index: 2;
}
.common-link01::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 100%;
  margin-left: 10px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.common-link01:hover {
  text-decoration: underline;
}

.fadeInAct {
  opacity: 0;
  transition: opacity 2s, transform 2s;
}
.fadeInAct.action {
  opacity: 1;
  transform: translate(0) !important;
}
.fadeInAct.fadeUp {
  opacity: 1;
  transform: translateY(50px);
}
.fadeInAct.fadeLeft {
  transform: translateX(100px);
}
.fadeInAct.fadeDown {
  transform: translateY(-50px);
}
.fadeInAct.fadeRight {
  transform: translateX(-100px);
}
.fadeInAct.fadeExpand {
  transform: translateY(100px) scale(0.7);
}
.fadeInAct.fadeExpand.action {
  transform: translateY(0) scale(1) !important;
}

figure,
div.image {
  position: relative;
  line-height: 0;
}

figcaption {
  line-height: 1;
}

.caption {
  position: absolute;
  bottom: 0;
  font-size: 10px;
  color: #fff;
  right: 0%;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.8);
}

.page-title .caption {
  bottom: 0px;
}
@media screen and (max-width: 1024px) {
  .page-title .caption {
    bottom: 0px;
  }
}

img.border {
  border: 1px solid #d3d3d3;
}

.inlineBlock {
  display: inline-block !important;
}

.colorBlack {
  color: #333 !important;
}

span.altText {
  display: none;
}

.image {
  position: relative;
}
.image .caption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  color: #fff;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.image .caption.left {
  left: 0;
  right: auto;
}
.image .caption.none {
  background: none;
  bottom: -20px;
}

.appBnr {
  text-align: center;
}
.appBnr img {
  border: 1px solid #d3d3d3;
}

.commonBannerArea {
  padding: 45px 0 62px;
  background: #ebebeb;
  text-align: center;
  position: relative;
  z-index: 2;
}
.commonBannerArea .title {
  font-size: 22px;
  padding-bottom: 35px;
  font-family: "Gilda Display", serif;
  color: #564e4b;
}
.commonBannerArea a img {
  max-width: 420px;
  width: 90%;
  margin: auto;
  margin-bottom: 10px;
}
.commonBannerArea .slick-slide {
  margin: 0 10px;
  margin: auto;
  width: 30%;
}
.commonBannerArea .slick-arrow {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: url(.imgs/top/button-arrow01.png);
  background-size: 100% 100%;
  z-index: 10;
  transform: translateY(-50%);
}
.commonBannerArea .slick-arrow:before {
  display: none !important;
}
.commonBannerArea .slick-arrow.prev {
  left: 0;
}
.commonBannerArea .slick-arrow.next {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.commonBannerArea img {
  width: 100%;
  max-width: none;
}

#slider01 {
  position: relative;
  margin: auto;
}
#slider01 img {
  width: 100%;
  height: auto;
}
#slider01 .slideFrame {
  position: relative;
  height: 100%;
}
#slider01 .slides {
  height: 100%;
}
#slider01 .slides li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------
  common-classes  tablet-sp
*/
.pageAnnotationArea {
  padding: 50px 5%;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.pageAnnotationArea .page-annotation {
  font-size: 11px;
  line-height: 1.5;
  color: #564e4b;
}

@media screen and (max-width: 1024px) {
  main {
    margin-top: 0;
  }
  main img {
    width: 100%;
    height: auto;
  }
  main .wrap {
    width: 94%;
  }
  .printBtn {
    display: none !important;
  }
  .commonBannerArea {
    padding: 50px 0;
  }
}
/*==================================================================================
 site-header
==================================================================================*/
.pc-menu {
  position: fixed;
  top: 35px;
  right: 20px;
  width: 40px;
  width: 72px;
  z-index: 1500;
}
.pc-menu .close {
  display: none;
}
.pc-menu.on {
  width: 34px;
  top: 46px;
  right: 40px;
}
.pc-menu.on .close {
  display: block;
}
.pc-menu.on .open {
  display: none;
}

.pc-fixed-button {
  position: fixed;
  top: 140px;
  right: 0;
  z-index: 499;
}
.pc-fixed-button li {
  margin-bottom: 15px;
}
.pc-fixed-button a {
  display: block;
  background-color: #a28d56;
  color: #fff;
  font-size: 16px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 20px 15px 20px 0;
  text-align: center;
  height: 122px;
  max-width: 46px;
  width: 32px;
  border: 1px solid #a28d56;
}
.site-header {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 95px;
  background: #fff;
  z-index: 100;
}
.site-header h1 {
  font-weight: normal;
}

.site-header .body {
  position: relative;
}

.site-header .title a:hover,
.site-header .title02 a:hover {
  opacity: 1;
}

.site-header .title {
  padding: 45px 0 0 60px;
}

.site-header .title .placeName {
  padding-bottom: 2px;
}

.site-header .title img {
  margin-right: 10px;
  vertical-align: bottom;
}

.site-header .text {
  position: absolute;
  top: 15px;
  right: 60px;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
}

.site-header .tools {
  position: absolute;
  right: 58px;
  top: 40px;
}

.site-header .menu-button {
  display: none;
}

.site-header .tools li {
  float: left;
  margin-left: 1px;
}

.site-header .tools li.links {
  padding-right: 15px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  .site-header .tools li.links {
    padding-top: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .site-header .tools li.links > div {
    line-height: 1;
  }
  .site-header .tools li.links > div:first-child {
    padding-bottom: 5px;
  }
}

.site-header .tools li.links a {
  display: block;
  color: #fff;
}

.site-header .tools li.links .outline {
  padding-top: 2px;
}

.site-header .tools li.request a:hover,
.site-header .tools li.request a:hover img,
.site-header .tools li.reserve a:hover,
.site-header .tools li.reserve a:hover img {
  opacity: 1;
}

.site-header .tools li.request,
.site-header .tools li.reserve {
  position: relative;
  overflow: hidden;
}
.site-header .tools li.request:after,
.site-header .tools li.reserve:after {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  width: 120px;
  height: 120px;
  background: url(.imgs/top/light.png) center;
  animation: button 3s ease infinite;
  z-index: 19;
}

@media screen and (min-width: 1025px) {
  .site-header .title01 {
    display: none;
  }
  .site-header .title02 {
    display: inline-block;
    padding: 0 0 0 60px;
    height: 100px;
    width: 142px;
  }
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    padding-bottom: 105px;
  }
}
/* ----------------------------------------
       header-style only-tablet 
      */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .site-header .pc {
    display: none !important;
  }
  .site-header .sp {
    display: block !important;
  }
	  .site-header .sps {
    display: block !important;
  }
}
/*
       End-header-style only-tablet 
       ---------------------------------------- */
/* ----------------------------------------
       header-style tablet-sp 
      */
@media screen and (max-width: 1024px) {
  .content {
    padding-top: 92px;
  }
  .site-header .tools li.request:after,
  .site-header .title02,
  .site-header .tools li.reserve:after {
    display: none;
  }
	.pc-menu {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 40px;
  width: 72px;
  z-index: 1500;
}
	
  .site-header {
    position: absolute;
    height: 157px;
    height: 92px;
    border-bottom: 1px solid #cbcbcb;
  }
  .site-header .title {
    padding: 20px 10px 0 10px;
    text-align: center;
  }
  .site-header .title .placeName {
    padding-bottom: 0;
  }
  .site-header .title .clio.sp {
    display: block !important;
    margin: 0 auto 10px auto;
    width: auto;
    height: 20px;
  }
  .site-header .title .placeName {
    display: inline-block;
    width: auto;
    height: 18px;
  }
  .site-header .title img {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 100%;
    height: 20px;
  }
  .site-header .text {
    display: none;
  }
  .site-header .tools {
    position: static;
  }
  .site-header .tools li img {
    display: none;
  }
  .site-header .tools .sp-navi li img {
    display: inline-block;
    width: auto;
  }
  .site-header .tools .sp-navi li.top img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.concept img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.design img {
    height: 12px;
  }
  .site-header .tools .sp-navi li.location img {
    height: 10px;
  }
  .site-header .tools .sp-navi li.access img {
    height: 10px;
  }
  .site-header .tools .sp-navi li.equipment img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.structure img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.select img {
    height: 10px;
  }
  .site-header .tools .sp-navi li.plan img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.outline img {
    height: 11px;
  }
  .site-header .tools .btns li.request img {
    height: 11px;
  }
  .site-header .tools .btns li.reserve img {
    height: 11px;
  }
  .site-header .menu-button {
    display: block;
  }
  .site-header .tools-base {
    position: relative;
    height: 55px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
  }
  .site-header .tools {
	  
    position: absolute;
    top: auto !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 150;
    transition: opacity 0.9s;
    opacity: 0;
  }
  .site-header .tools.fadeIn {
    opacity: 1;
  }
  .site-header .tools.fixed {
    position: fixed;
  }
  .site-header .tools li {
    width: 20%;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
  }
  .site-header .tools .head-btns li {
    border: none;
  }
  .site-header .tools .head-btns li.sp {
    display: block !important;
  }
  .site-header .tools .head-btns li:first-child {
    border-left: none;
  }
  .site-header .tools li.links {
    padding-right: 0;
    text-align: center;
  }
  .site-header .tools .head-btns li a:hover {
    opacity: 1;
  }
  .site-header .tools li div.outline,
  .site-header .tools .head-btns li.webReserveBtn {
    display: none !important;
  }
  .site-header .tools .head-btns li a {
    box-sizing: border-box;
    display: block;
    width: auto;
    height: 75px;
    padding: 9px 0 6px !important;
    border: none;
    line-height: 1;
    text-indent: -10000px;
    font-size: 0;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 60px;
    overflow: hidden;
  }
  .site-header .tools li.menu-button.on {
    position: relative;
  }
  .site-header .tools li.menu-button.on:after {
	  
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(#ad9a03, #6a5c34);
  }
  .site-header .tools li.menu-button.on a {
    position: relative;
    background-color: transparent;
    z-index: 1;
  }
  .site-header .tools li.links a {
    display: block;
    margin-top: 0;
    font-size: 0;
    text-indent: -10000;
    background-image: url(.imgs/top/hdr-sp-map.png);
  }
  .site-header .tools .head-btns li.requestBtn a {
    background-image: url(.imgs/top/hdr-sp-request.png);
  }
  .site-header .tools .head-btns li.reserveBtn a {
    background-image: url(.imgs/top/hdr-sp-reserve.png);
  }
  .site-header .tools li.tel a {
    background-image: url(.imgs/top/hdr-sp-tell.png);
  }
  .site-header .tools li.menu-button a {
    background-image: url(.imgs/top/hdr-sp-menu.png);
  }
  .site-header .tools li.menu-button.on a {
    background-image: url(.imgs/top/hdr-sp-close.png);
  }
  .site-header .tools .sp-navi ul {
    margin-top: -1px;
    border-top: 1px solid #cacbcf;
  }
  .site-header .tools .sp-navi li {
    width: 100%;
    border-bottom: 1px solid #cacbcf;
  }
  .site-header .tools .sp-navi li:not(:first-child) {
    float: left;
    width: 50%;
  }
  .site-header .tools .sp-navi li a {
    line-height: 1;
  }
  /*.site-header .tools .sp-navi .navi-list li:nth-child(odd):last-child {
          width: 100%;
          border-right: none;
        }*/
  .site-header .tools .head-btns {
    position: relative;
    z-index: 20;
    background: #fff;
  }
  .sp-navi a {
    display: block;
    padding: 16px 10px;
    color: #1a0f08;
  }
  .commonButton01 a {
    padding: 20px 20px;
  }
  .sp-navi .commonButton01 a {
    color: #fff;
    border-color: #fff;
    background: #39465c;
    position: relative;
  }
  .sp-navi .commonButton01 a::after, .sp-navi .commonButton01 a::before {
    content: "";
    display: block;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 35px;
    height: 1px;
    background-color: #fff;
  }
  .sp-navi .commonButton01 a::after {
    display: none;
  }
  .sp-navi .reserveBtn a {
    background-color: #564e4b;
  }
  .sp-navi .webReserveBtn a {
    background-color: #c8a57c;
  }
  .site-header .tools .sp-navi .btns {
    clear: both;
    margin: 0 auto;
    padding: 15px 0;
    width: 70%;
    border: none;
    background: none;
  }
  .site-header .tools .sp-navi .btns li {
    float: none;
    clear: both;
    margin: 0 auto;
    padding-bottom: 10px;
    border: none;
    width: auto;
    text-align: center;
    line-height: 0;
  }
  .site-header .tools .sp-navi .btns li:last-child {
    padding-bottom: 0;
  }
  .site-header .tools .sp-navi .btns li a {
    display: block;
    box-sizing: border-box;
    width: auto;
    color: #fff;
  }
  .site-header .head-btns .requestBtn a,
  .site-header .head-btns .reserveBtn a {
    background-color: transparent;
  }
  .site-header .head-btns .requestBtn a:after,
  .site-header .head-btns .reserveBtn a:after {
    display: none !important;
  }
  .site-header .tools .sp-navi .btns a:before {
    background: none;
  }
}
/*
       End-header-style tablet-sp 
       ---------------------------------------- */
/*==================================================================================
 siteFooter
==================================================================================*/
.site-footer {
  position: relative;
  background-color: #fff;
  z-index: 15;
}

.site-footer .infoes {
  margin-bottom: 25px;
  padding: 10px 0 4px;
}
.site-footer .infoes .infoes-base {
  position: relative;
  height: 80px;
  z-index: 20;
}
.site-footer .infoes .base {
		  display: none;
  position: absolute;
  padding: 10px 5% 6px 5%;
  left: 0;
  bottom: 0;
  width: 90%;
  color: #000;
  z-index: 20;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.7);
  transition: opacity 0.9s;
}
.site-footer .infoes .base.fadeIn {
  opacity: 1;
}
.site-footer .infoes .base:not(.fixed) {
  opacity: 1;
  display: block;
}
.site-footer .infoes .base.fixed {
  position: fixed;
}
.site-footer .infoes .inner {
  margin: 0 auto;
  max-width: 900px;
}
.site-footer .infoes .inner:after {
  content: "";
  width: 1px;
  height: 1px;
  display: table;
  clear: both;
}
.site-footer .infoes a {
  transition: opacity 0.7s;
}
.site-footer .infoes a:hover {
  opacity: 0.65;
}
.site-footer .infoes img {
  max-width: 100%;
  height: auto;
}

.site-footer .btns {
  margin: 0;
  padding-top: 8px;
  float: right;
}
.site-footer .btns li {
  box-sizing: border-box;
  position: relative;
  float: left;
  width: 140px;
  text-align: center;
  border: none;
}
.site-footer .btns li:not(:last-child) {
  margin-right: 1px;
}
.site-footer .btns li a {
  border-color: #ab6334;
  color: #fff;
  background-color: #ab6334;
}
.site-footer .btns li a::after {
  display: none;
}
@media (min-width: 1025px) {
  .site-footer .btns li a:hover {
    opacity: 1 !important;
    color: #fff;
  }
}
.site-footer .btns li .caption {
  position: absolute;
  right: 1%;
  bottom: 1%;
  line-height: 1;
  font-size: 10px;
  color: #000;
}

.site-footer .links {
  float: right;
  padding: 18px 10px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.site-footer .links li a {
  position: relative;
  padding-left: 8px;
  color: #000;
  overflow-x: hidden;
}
.site-footer .links li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -2px;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (min-width: 1025px) {
  .site-footer .links li a:hover {
    opacity: 0.7;
  }
}
.site-footer .links li:first-child {
  padding-bottom: 8px;
}

.site-footer .contact {
  margin-bottom: 0;
  padding: 0 0 0;
  float: left;
  width: 53%;
  letter-spacing: 0.1em;
  text-align: left;
}
.site-footer .contact a {
  color: #000;
}
.site-footer .contact .title {
  padding-bottom: 5px;
  font-size: 12px;
}
.site-footer .contact .number {
  float: left;
  padding-right: 5px;
  position: relative;
  font-size: 36px;
}
.site-footer .contact .number span.pc {
  line-height: 0.8;
}
@media screen and (min-width: 1025px) {
  .site-footer .contact .number span.pc {
    display: inline-block !important;
  }
}
.site-footer .contact .number a {
  display: inline-block;
  position: relative;
  pointer-events: none;
}
.site-footer .contact .number a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
  width: 33px;
  height: 25px;
}
.site-footer .contact .businessHours {
  float: right;
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-size: 11px;
}

.clioNav {
  clear: both;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  padding-bottom: 40px;
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
}
.clioNav ul {
  zoom: 1;
}
.clioNav ul:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
}
.clioNav ul:after {
  content: "";
  display: block;
  clear: both;
}
.clioNav ul li {
  float: left;
  width: 33%;
  box-sizing: border-box;
  border-left: 1px solid #e1e1e1;
  text-align: center;
  vertical-align: baseline;
  zoom: 1;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #d6d6d6;
  padding: 5px 0;
  box-sizing: content-box;
}
.clioNav ul li a {
  display: block;
  text-decoration: none;
  padding: 14px 10px;
}
.clioNav ul li a img {
  margin-bottom: 5px;
}
.clioNav ul li a span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  vertical-align: middle;
  color: #333;
  margin-left: 1px;
  letter-spacing: 0;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}
.clioNav ul li a span:before {
  content: "▶";
  display: inline-block;
  margin-right: 5px;
  font-size: 10px;
  line-height: 18px;
}
.clioNav ul li.num01 {
  border-left: 0;
}
.clioNav .insta {
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 0;
}

.logoArea {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.logoArea .statement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0;
  text-align: center;
}

.logoArea .statement img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 36px; /* PCで少し小さく */
}

/* スマホ */
@media screen and (max-width: 767px) {
  .logoArea {
    padding: 0 12px;
  }

  .logoArea .statement {
    gap: 12px;
  }

  .logoArea .statement img {
    max-height: 28px;
  }
}

.copyright {
  clear: both;
  padding: 40px 0px 20px;
  text-align: center;
  font-size: 10px;
}
.copyright img {
  vertical-align: baseline;
  max-width: 277px;
}

.copyright p {
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
	font-size: 10px;
	color: #000;
}

.pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  z-index: 30;
  opacity: 0;
  transition: opacity 0.5s;
}
.pageTop.on {
  opacity: 1;
}

/* fNav */
#fNav {
  color: #666666;
  font-size: 12px;
  line-height: 18px;
}

#fNav li {
  float: left;
  letter-spacing: 1px;
}

#fNav strong {
  font-weight: bold;
}

/* ----------------------------------------
 footer-style only-pc 
*/
@media screen and (min-width: 1025px) {
  .site-footer .btns {
    display: none;
  }
  .site-footer .infoes .bg {
    display: block;
    position: relative;
    padding-bottom: 430px;
    background: url(.imgs/top/footer-bg.jpg) no-repeat top center;
    background-size: cover;
  }
  .site-footer .infoes .bg .caption {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 105px;
    line-height: 20px;
    background: rgba(43, 43, 43, 0.74);
    text-align: center;
  }
  .site-footer .contact .num {
    pointer-events: none;
  }
  .site-footer .foot-navi {
    text-align: center;
    border-top: none;
    padding: 10px 0 4px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e3e3e3;
    font-feature-settings: normal;
  }
  .site-footer .foot-navi ul {
    margin: 0 auto;
    padding: 11px 0 13px;
    max-width: 1000px;
  }
  .site-footer .foot-navi ul li {
    position: relative;
    display: inline-block;
    padding-right: 18px;
    font-size: 10px;
    letter-spacing: 0;
  }
  .site-footer .foot-navi ul li:last-child {
    padding-right: 0;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .site-footer .foot-navi ul li.pc {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1025px) {
  .site-footer .foot-navi ul li a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-size: 10px;
    padding-bottom: 3px;
  }
}
/*
 END-footer-style only-pc 
---------------------------------------- */
/* ----------------------------------------
       footer-style only-tablet 
      */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .site-footer .pc {
    display: none !important;
  }
  .site-footer .sp {
    display: block !important;
  }
	  .site-footer .sps {
    display: block !important;
  }
}
/* 
       End-footer-style only-tablet 
      ---------------------------------------- */
/* ----------------------------------------
       footer-style tablet-sp
      */
@media screen and (max-width: 1024px) {
  .site-footer .infoes {
    margin-bottom: 0;
    text-align: center;
    padding-top: 10px;
  }
  .site-footer .infoes .infoes-base {
    height: auto;
    background: none;
  }
  .site-footer .infoes .links {
    display: none;
  }
  .site-footer .infoes .btns {
    float: none;
    margin: 0 auto;
    padding-top: 0;
    width: 70%;
  }
  .site-footer .infoes .btns li {
    float: none;
    margin-right: 0 !important;
  }
  .site-footer .infoes .btns li a {
    border: none;
    display: block;
    width: auto;
    background: linear-gradient(90deg, #a28d56, #a28d56);
    position: relative;
  }
  .site-footer .infoes .btns li a::after, .site-footer .infoes .btns li a::before {
    content: "";
    display: block;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 15px;
    height: 1px;
    background-color: #fff;
  }
  .site-footer .infoes .btns li a::after {
    left: auto;
    transform: translateY(-50%) rotate(90deg);
  }
  .site-footer .infoes .btns li a:hover {
    opacity: 1 !important;
    color: #fff;
  }
  .site-footer .infoes .base {
    position: static !important;
    background: none;
  }
  .site-footer .infoes .contact {
    float: none;
    margin: 0 auto;
    width: 94%;
    text-align: center;
  }
  .site-footer .infoes .contact .title {
    float: none;
    width: auto;
    line-height: 1.4;
  }
  .site-footer .infoes .contact .title img {
    margin-bottom: 0;
  }
  .site-footer .infoes .contact .businessHours {
    padding-top: 0;
    float: none;
    width: auto;
  }
  .site-footer .infoes .contact .businessHours span.sp {
    display: inline !important;
  }
  .site-footer .infoes .contact .businessHours br {
    display: none;
  }
  .site-footer .contact .businessHours img {
    margin: 0 auto;
    height: auto;
  }
  #gFooter img {
    max-width: 100%;
  }
  #gFooter .meiwaLink {
    margin-top: 0;
    border-top: 1px solid #e1e1e1;
    margin-bottom: 0;
  }
  #gFooter .meiwaLink li {
    border: 1px solid #e1e1e1;
    border-width: 0 0 1px 0;
    width: 100%;
  }
  #gFooter .ftrCompanyLink {
    text-align: center;
    padding: 20px 10px 0 10px;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 0;
  }
  #gFooter .ftrCompanyLink .companyLink {
    position: static;
    margin-top: 20px;
  }
  #gFooter .ftrCompanyLink .companyLink li {
    float: none;
    margin: 10px 0;
  }
  #gFooter .ftrCopy {
    text-align: center;
  }
  .foot-navi {
    height: auto;
    overflow: hidden;
  }
  .foot-navi li {
    box-sizing: border-box;
    display: block;
    float: left;
    width: 50%;
    margin-right: 0;
    border-bottom: 1px solid #efefef;
    text-align: center;
    font-size: 10px;
  }
  .foot-navi li a {
    display: block;
    position: relative;
    padding: 17px 0 15px;
    color: #212933;
    line-height: 14px;
  }
  .foot-navi li.current a {
    position: relative;
    /*&:after {
            @include after_given;
            position: absolute;
            bottom: 10px;
            width: 50%;
            left: 25%;
            border-bottom: 1px solid #aaa;
          }*/
  }
  .foot-navi li.new a:before {
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 50%;
    color: #887955;
    font-size: 10px;
    font-family: "Cinzel", serif;
    transform: translateX(-50%);
    font-style: itelic;
  }
  .foot-navi li.premium a:before {
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 50%;
    color: #887955;
    font-size: 10px;
    font-family: "Cinzel", serif;
    transform: translateX(-50%);
    font-style: itelic;
  }
  .foot-navi li.special a {
    letter-spacing: 0;
  }
  .foot-navi li a:hover {
    text-decoration: none;
  }
  .site-footer .btns {
    padding-bottom: 30px;
  }
  .site-footer .btns li {
    float: none;
    width: auto;
    height: auto;
  }
  .site-footer .btns li:not(:last-child) {
    margin-bottom: 10px;
    padding: 0;
  }
  .site-footer .btns li img {
    margin: 0 0 0 auto;
  }
  .site-footer .contact {
    float: none;
    clear: both;
    width: auto;
  }
  .site-footer .contact .title {
    padding-bottom: 10px;
  }
  .site-footer .contact .title .pc {
    display: none !important;
  }
  .site-footer .contact .title .sp {
    display: block !important;
  }
  .site-footer .contact .number {
    float: none;
    clear: both;
    padding: 0 0px 10px 0;
    position: relative;
    font-size: 36px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 1025px) {
  .site-footer .contact .number span.pc {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1024px) {
  .site-footer .contact .number a {
    pointer-events: fill;
    box-sizing: border-box;
    padding: 18px 0 18px 28px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    background: #212933;
  }
  .site-footer .contact .number a .sp {
    display: inline-block !important;
    width: auto;
  }
  .site-footer .contact .number a:before {
    left: 50%;
    margin: -14px 0 0 -110px;
    width: 28px;
    height: 27px;
    background-image: url(".imgs/top/icon_tel.png");
    background-size: 100% auto;
  }
  .site-footer .contact .businessHours {
    font-size: 10px;
  }
  .site-footer .clioNav {
    width: auto;
    padding-bottom: 20px;
  }
  .site-footer .clioNav .insta {
    max-width: 330px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  .site-footer .clioNav li {
    float: none;
    clear: both;
    padding: 0;
    width: auto;
    border-bottom: 1px solid #e2e2e2;
  }
  .site-footer .clioNav li a {
    display: block;
    padding: 10px 0;
  }
  .site-footer .logoArea {
    padding-bottom: 21px;
    width: auto;
    text-align: center;
  }
  .site-footer .logoArea .statement,
  .site-footer .logoArea ul {
    float: none;
    clear: both;
    margin: 0 auto;
    text-align: center;
  }
  .site-footer .logoArea .statement {
    padding-bottom: 30px;
    width: 94%;
  }
  .site-footer .logoArea .statement img {
    width: 100%;
    max-width: 340px;
  }
  .site-footer .logoArea ul li {
    display: block;
    float: none;
    clear: both;
    text-align: left;
    margin: 0 auto 15px;
    padding: 0;
  }
  .site-footer .logoArea ul li:last-child {
    margin-bottom: 0;
  }
  .site-footer .logoArea ul li span {
    display: inline-block;
    vertical-align: baseline;
  }
  .site-footer .logoArea .privacy {
    float: none;
    padding-top: 20px;
    margin-bottom: 30px;
  }
  .site-footer .copyright {
    text-align: center;
  }
  .site-footer .copyright p {
    width: 94%;
  }
  .site-footer .copyright img.sp {
    display: inline-block !important;
  }
  .pageTop {
    width: 30px;
    right: 0;
    bottom: 0;
  }
}
/* 
       End-footer-style tablet-sp
      ---------------------------------------- */
/*==================================================================================
 navi
==================================================================================*/
.global-navi-base {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  font-feature-settings: normal;
  z-index: -1;
  pointer-events: none;
}
.global-navi-base .layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(32, 38, 42, 0.85);
  transition: opacity 1s;
  opacity: 0;
  z-index: -1;
}
.global-navi-base.on {
  z-index: 1000;
  pointer-events: all;
}
.global-navi-base.on .global-navi {
  pointer-events: all;
  opacity: 1;
  transform: scaleX(1);
  z-index: 100;
}
.global-navi-base.on .layer {
  pointer-events: inherit;
  opacity: 1;
  z-index: 1;
}

.global-navi {
  position: absolute;
  right: 0;
  color: #fff;
  box-sizing: border-box;
  padding: 0px 0px 20px 80px;
  z-index: 100;
  width: 100%;
  min-height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scaleX(1);
  transform-origin: right;
  transition: opacity 0.7s, transform 0.5s;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.global-navi .global-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
.global-navi .block01 {
  width: 100%;
  padding-bottom: 75px;
}
.global-navi .block01 .txt01 {
  font-size: 17px;
  line-height: 1.1;
  padding-bottom: 3px;
}
.global-navi .block01 .txt02 {
  font-size: 50px;
  line-height: 1.1;
  padding-bottom: 0px;
}
.global-navi .block01 .txt03 {
  font-size: 14px;
}
.global-navi .block02 {
  width: 100%;
}
.global-navi .block02 .in-block {
  color: #fff;
}
.global-navi .block02 .links {
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: normal;
  margin-bottom: -20px;
}
.global-navi .block02 .links li {
  width: 20%;
  padding-bottom: 0;
  margin-bottom: 35px;
  position: relative;
}
.global-navi .block02 .links li::after {
  content: "";
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #a28d56;
  width: 120px;
}
.global-navi .block02 .links a {
  display: block;
  height: 22px;
  position: relative;
  color: #fff;
}
.global-navi .block02 .links a span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.5s;
}
.global-navi .block02 .links a span.en {
  opacity: 1;
}
.global-navi .block02 .links a span.ja {
  font-family: "Shippori Mincho", serif;
}
.global-navi .block02 .links a:hover {
  opacity: 1 !important;
}
.global-navi .block02 .links a:hover .en {
  opacity: 0;
}
.global-navi .block02 .links a:hover .ja {
  opacity: 1;
}
.global-navi .block02 .links .disable a:hover {
  opacity: 0.4 !important;
}
.global-navi .block02 .links .disable a:hover .en {
  opacity: 1;
}
.global-navi .block02 .links .disable a:hover .ja {
  opacity: 0;
}
.global-navi a {
  color: #fff;
}
.global-navi .links01 {
  width: 38%;
  font-size: 11px;
  line-height: 1.7;
  padding-bottom: 20px;
}
.global-navi .links01 li {
  padding-bottom: 8px;
}
.global-navi .links01 a {
  color: #fff;
  position: relative;
  padding-left: 25px;
  font-size: 11px;
}
.global-navi .links01 a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: background-color 0.4s;
}
.global-navi .links01 a:hover {
  opacity: 1 !important;
}
.global-navi .links01 a:hover::after {
  background-color: rgb(255, 255, 255);
}
.global-navi .links01 a span {
  color: #c85e1a;
}
.global-navi .contact {
  width: 65%;
  color: #fff;
}
.global-navi .contact .ttl {
  padding-bottom: 2px;
  font-size: 12px;
}
.global-navi .contact .number {
  padding: 0 0px 4px 0;
  position: relative;
  font-size: 36px;
}
.global-navi .contact .number span {
  display: inline-block;
}
.global-navi .contact .number a {
  pointer-events: none;
  box-sizing: border-box;
  padding: 10px 0 8px 0px;
  width: 100%;
  color: #fff;
  font-size: 36px;
  position: relative;
}

.global-navi .contact .businessHours {
  font-size: 11px;
  line-height: 1.5;
}
.global-navi .links {
  font-size: 14px;
  line-height: 1.5;
}
.global-navi .links li {
  padding-bottom: 30px;
}
.global-navi .links a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.global-navi .links a::before {
  content: "";
  position: absolute;
  display: block;
}
.global-navi .links a::before {
  content: "";
  display: none;
  font-size: 9px;
  color: #fff;
  background-color: #a28d56;
  transform: translateY(-50%);
  padding: 3px 8px 2px;
  top: -14px;
  margin-top: -3px;
  margin-right: 8px;
  letter-spacing: 0;
}
.global-navi .links a:hover::after {
  width: 100%;
}
.global-navi .links .current a::after {
  width: 100%;
}
.global-navi .links .new a::before {
  content: "NEW";
  display: block;
}
.global-navi .disable a {
  opacity: 0.4 !important;
}

/* ----------------------------------------
  navi-style only-pc 
*/
@media screen and (min-width: 1025px) {
  .sp-navi {
    display: none !important;
  }
}
/* ----------------------------------------
  navi-style tablet-sp
*/
@media screen and (max-width: 1024px) {
  .global-navi-base {
    display: block!important;
  }
  .global-navi {
    display: block;
  }
  .global-navi.fd_fixed {
    top: 60px;
  }
	
	.global-navi {
  position: absolute;
  right: 0;
  color: #fff;
  box-sizing: border-box;
  padding: 60px 0px 20px 20px;
  z-index: 100;
  width: 100%;
  min-height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scaleX(1);
  transform-origin: right;
  transition: opacity 0.7s, transform 0.5s;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.global-navi .global-inner {
  display: block;
  width: 100%;
}

	.global-navi .block02 .links {
  padding-bottom: 20px;
  display: block;
  margin-bottom: -20px;
}
	
	
  .sp-navi {
    display: none;
    position: fixed;
    box-sizing: border-box;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 101;
  }
  .sp-navi .inner {
    overflow: auto;
  }
  .sp-navi .close {
    display: none;
  }
  .sp-navi .close a {
    position: relative;
    display: block;
    box-sizing: border-box;
    border: 1px solid #333;
    background-color: #fff;
  }
  .sp-navi .close a span {
    display: inline-block;
    line-height: 50px;
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
    font-size: 24px;
    color: #333;
    background-image: url(.imgs/top/gNav-close-icn.png);
  }
  .sp-navi .navi-list {
    margin-bottom: 15px;
  }
  .sp-navi .navi-list li {
    position: relative;
    min-height: 33px;
    margin-bottom: 4px;
    float: left;
    width: 50%;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  }
  .sp-navi .navi-list li:first-child {
    width: 100%;
  }
  .sp-navi .navi-list li:nth-child(2n+1) {
    float: right;
  }
  .sp-navi .navi-list li.current a {
    box-sizing: border-box;
  }
  .sp-navi .btns {
    margin: 0 auto;
    width: 80%;
  }
  .sp-navi .btns li {
    margin-bottom: 10px;
  }
  .sp-navi .btns li a .lines {
    background-color: #1c2b46;
  }
  .sp-navi .btns .instaBtn {
    margin: 0 auto;
    background-color: #fff;
  }
  .sp-navi .btns .instaBtn img {
    width: 290px;
  }
  .site-footer {
    padding-bottom: 60px;
  }
  .site-footer .infoes-base .base {
    opacity: 1 !important;
  }
  .sp-navi li.new a:before,
  .global-navi .links li.new a:before {
    content: "NEW";
    display: inline-block;
    position: absolute;
    top: -2px;
    left: 0%;
    transform: translateX(0%);
    text-align: center;
    font-size: 14px;
    background: #a28d56;
    color: #fff;
    padding: 2px 2px;
    letter-spacing: 0;
  }
  .sp-navi li.new a:before {
    font-size: 10px;
  }
  .sp-navi li.premium a:before,
  .global-navi .links li.premium a:before {
    content: "PREMIUM";
    display: inline-block;
    position: absolute;
    top: 2px;
    right: 0;
    left: 0;
    text-align: center;
    font-size: 11px;
    color: #fff;
  }
}
/*==================================================================================
 print
==================================================================================*/
@media print {
  .site-header,
  .global-navi-base,
  .site-footer,
  .printBtn,
  .btns,
  .pageTop,
  .sp,
	.sps,
  .mainVisual,
  .printBtn,
  .pageAnnotation {
    display: none !important;
  }
  #map .main {
    width: 850px !important;
  }
}
@media screen and (min-width: 1025px) {
  body > .app-bnr {
    display: none !important;
  }
}
/*==================================================================================
 sp
==================================================================================*/
@media (max-width: 768px) {
  /*

  snipets

  @mixin after-given {
    content: "";
    display: block;
  }
  example:
  @include after-given;

  @mixin abs-topce($top: 0) {
    position: absolute;
    top: $top;
    left: 50%;
    transform: translate(-50%,0);
  }
  example:
  @include abs-topce();
  @include abs-topce($top: 10%);

  @mixin abs-cece {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  example:
  @include abs-cece;

  @mixin abs-cele($left:0) {
    position: absolute;
    top: 50%;
    left: $left;
    transform: translate(0,-50%);
  }
  example:
  @include abs-cele();
  @include abs-cele($left:10%);


  @mixin abs-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  example:
  @include abs-cover;

  @mixin tac {
    text-align: center;
  }
  example:
  @include tac;

  @mixin tar {
    text-align: right;
  }
  example:
  @include tar;

  @mixin tal {
    text-align: left;
  }
  example:
  @include tal;


  */
  /*==================================================================================
   common
  ==================================================================================*/
  main {
    padding-bottom: 120px;
  }
  /*.pageAnnotation {
    padding: 30px 5%;
    font-size: 10px;
    background-image: url(.imgs/location/common/pageannotation-bg-sp.jpg);
  }*/
  .commonButton01 {
    width: auto;
    font-size: 12px;
  }
  .commonButton02 {
    width: 80%;
    font-size: 14px;
  }
  .commonButton02 a,
  .commonButton02 span {
    padding: 16px 0 18px;
  }
  .commonBannerArea {
    padding: 30px 0;
  }
  .commonBannerArea .slick-slide {
    margin: 0 20px;
    width: 90%;
    margin: auto;
  }
  .commonBannerArea .slick-arrow {
    width: 20px;
    height: 36px;
    background-image: url(.imgs/top/button-arrow02.png);
  }
  .commonCaption01 {
    padding: 4px 8px;
    font-size: 10px;
  }
  /*==================================================================================
   site-header
  ==================================================================================*/
  .site-header {
    height: 136px;
    height: 92px;
  }
  .site-header .tools .head-btns li a {
    height: 55px;
    background-size: auto 40px;
  }
  .site-header .tools li.links a {
    background-image: url(.imgs/top/hdr-sp-map.png);
  }
  .site-header .tools li.tel a {
    background-image: url(.imgs/top/hdr-sp-tell.png);
  }
  .site-header .tools li.menu-button a {
    background-image: url(.imgs/top/hdr-sp-menu.png);
  }
  .site-header .tools li.menu-button.on a {
    background-color: #a28d56;
  }
  /*==================================================================================
   siteFooter
  ==================================================================================*/
  .site-footer .copyright {
    padding: 16px 0px 28px;
    border-top: 1px solid #ccc;
  }
  .logoArea {
    padding-bottom: 13px;
  }
  .site-footer .clioNav {
    padding-bottom: 14px;
  }
  .site-footer .logoArea .statement {
    padding-bottom: 14px;
  }
  .site-footer .clioNav li a {
    padding: 8px 0 8px 17px;
  }
  .site-footer .contact {
    padding: 0;
  }
  .site-footer .contact .title img {
    width: 70%;
    height: auto;
  }
  .site-footer .contact .businessHours img {
    width: 50%;
    height: auto;
  }
  .site-footer .clioNav li {
    border-bottom: 1px solid #ccc;
  }
  /*==================================================================================
   navi
  ==================================================================================*/
  .sp-navi {
    top: 55px;
  }
  .sp-navi .gNavSPcv a span {
    line-height: 25px;
    padding-left: 40px;
    font-size: 14px;
    background-size: auto 25px;
  }
  .sp-navi .global-naviClose a span {
    line-height: 25px;
    padding-left: 30px;
    font-size: 14px;
    color: #333;
    background-size: 15px auto;
  }
  .googleMap-request {
    margin: 0 19px;
    padding: 35px 19px 35px;
  }
  .googleMap-request .select {
    margin-bottom: 9px;
  }
  .googleMap-request select {
    font-size: 12px;
  }
  .googleMap-request .input-text {
    margin-bottom: 9px;
  }
  .googleMap-request .input-text:after {
    font-size: 12px;
    line-height: 40px;
  }
  .googleMap-request input {
    display: block;
    box-sizing: border-box;
    padding: 13px 30px 13px 10px;
    font-size: 12px;
  }
  .googleMap-request .common-link-button a {
    margin: 0 22%;
    width: auto;
  }
}/*# sourceMappingURL=style.css.map */






.sec_category .cate_wrap::after {
  content: "";
  background: rgba(16, 13, 11, 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  transition: all 2s ease;
  z-index: 1;
}
.sec_category.overlay .cate_wrap::after {
  transform: translateY(0);
}
.is_ani .ani_text > span,
.on .ani_text > span,
.ani_text.on > span {
	-webkit-animation: ani_text 1s cubic-bezier(0.54, 0, 0, 0.99) 0s forwards;
	animation: ani_text 1s cubic-bezier(0.54, 0, 0, 0.99) 0s forwards;
  /* animation-delay: 5s !important; */
}
@keyframes ani_text {
	0% {
	  transform: translateY(120%);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
}

/* .sec_category */
.sec_concept{
	display: none;
}

.sec_concept,
.merit,
.sec_information,
.main_visual {
    position: relative;
    z-index: 2;
}
.category_wrap {
  position: relative;
  z-index: 0;
}
.sec_category {
    height: 125vh;
    position: relative;
    overflow: hidden;
}
.sec_category .cate_wrap {
    position: absolute;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
}

.sec_category .cate_wrap .photoboox{
	padding-top: 30px;
}

.sec_category .cate_wrap .photoboox ul{
	display: flex;
}

.sec_category .cate_wrap .photoboox li{
	width: 30%;
	height: auto;
}
@media only screen and (max-width:767px){
	.sec_category .cate_wrap .photoboox li{
	width: 30%;
	height: auto;
}
}
.sec_category .cate_wrap .photoboox li img{
	width: 100%;
	height: auto;
}


.sec_category .cate_wrap .btnnn a {
	padding-top: 40px;
	padding-bottom: 20px;
	padding-right: 33px;
	transition: transform .4s;
	position: relative;
	display: inline-block;
	border-left: none;
}

.sec_category .cate_wrap .btnnn a::before {
	position: absolute;
	content: "";
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 30px;
	background-image: url("icon_btnarrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform .3s;
}

.sec_category .cate_wrap .btnnn a span {
	display: inline-block;
	color: #E6E6E6;
	font-size: 1.2rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
}

.sec_category .cate_wrap .btnnn a:hover::before {
	transform: translateX(30px);
}



.sec_category.is_fixed .cate_wrap {
    position: fixed;
}
.sec_category .image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(1.3);
    transition: all 3s ease-out;
    z-index: 0;
}
.sec_category.is_active .image {
    transform: scale(1);
}
.sec_category .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.sec_category .pic_cap {
  bottom: 66px;
  transition: all 0.7s ease-out;
  z-index: 2;
}
.sec_category .cate_wrap .cont {
    color: #E6E6E6;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    max-width: 970px;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.sec_category .cont .box_title {
    margin: 0 0 50px;
    position: relative;
    overflow: hidden;
    padding-top: 30px;
}
.sec_category .cont .line {
    width: 100%;
    height: 1px;
    position: relative;
}
.sec_category .cont .line:after {
  content: "";
  background: #E6E6E6;
  height: 100%;
  bottom: 0;
  left: 50%;
  width: 0px;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.5s ease-out;
}
.sec_category.is_ani .cont .line:after {
  width: 100%;
}
.sec_category .cont .box_title .sub {
  color: #B2B280;
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0.2em;
  line-height: 1;
  left: 0;
  top: 110%;
  transition: all 0.5s ease-out;
  position: absolute;
  opacity: 0;
}
.sec_category.is_ani .cont .box_title .sub {
  top: 0;
  opacity: 1;
}
.sec_category .cont .box_title .ttl {
  color: #B2B280;
  font-size: 4rem;
  letter-spacing: 0;
  line-height: 1;
}
.sec_category .cont .box_title .ttl > span {
  letter-spacing: 0.2em;
}
.sec_category .cont .box_text {
  padding-top: 35px;
  margin-top: 15px;
  overflow: hidden;
  position: relative;
}
.sec_category .cont .box_text .ttl {
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
}
.sec_category .cont .box_text small {
	display: inline-block;
	font-size: 0.8rem;
}
.sec_category .cont .box_text .txt {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.sec_category .button {
  position: absolute;
  bottom: 100px;
  right: calc((100vw - 970px)/2);
  width: 200px;
  transform: translateX(50%);
  z-index: 2;
}
.sec_category .button a {
  display: block;
  transition: all 0.3s ease-out;
}
.sec_category .button img {
  transition: all 1s ease-out;
  transform: scale(0.3);
  opacity: 0;
}
.sec_category.is_ani .button img {
  transform: scale(1);
  opacity: 1;
}}
/* .category_nav {
	position: fixed;
	z-index: 1;
	bottom: 66px;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
  transition: all 0.5s ease-out;
}
.category_nav .pers {
    color: #E6E6E6;
    font-size: 4rem;
    letter-spacing: 0.1em;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 0 0 50px;
}
.category_nav .pers .per_line {
    background: #E6E6E6;
    width: 210px;
    height: 1px;
    margin: 0 15px;
}
.category_nav .label {
    color: #E6E6E6;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.category_nav .label .txt {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.5em;
    text-align: center;
    transition: all 0.5s ease-out;
    position: relative;
    padding: 0 0 20px;
}
.category_nav .label .txt.off {
    opacity: 0;
}
.category_nav .label .txt:after {
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;    
    border-bottom: 12px solid #E6E6E6;
    position: absolute;
} */

.category_wrap.is_bottom .sec_category.is_fixed .cate_wrap {
	position: absolute;
	bottom: 0;
	top: auto;
}
/* .category_wrap.is_bottom .category_nav {
  bottom: 0;
  position: absolute;
} */
.category_wrap.is_bottom .sec_category .pic_cap {
	bottom: 0;
}
@media only screen and (max-width: 1200px) {
  .sec_category .button {
    width: 150px;
    transform: translateX(0);
  }
  .sec_category .cate_wrap .cont {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1000px) {
  .sec_category .button {
    right: 15px;
  }
  /* .category_nav .pers .per_line {
    width: 80px;
  } */
  .sec_category .cont .box_title .ttl {
    font-size: 10vw;
  }
  .sec_category .cont .box_title .ttl > span {
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 767px) {
  .sec_category .cont .box_title {
    margin: 0 0 5px;
    padding-top: 20px;
  }
  .sec_category .cont .box_title .sub {
    margin: 0 0 15px;
  }
  .sec_category .cont .box_text {
    padding-top: 10px;
    margin-top: 0;
  }
  .sec_category .cate_wrap .cont {
    top: 23%;
    transform: translate(-50%);
  }
  .sec_category .cont .box_text .ttl {
    font-size: 1.4rem;
  }
  .sec_category .cont .box_text .txt {
    font-size: 1em;
    letter-spacing: 0.01em;
  }
  .sec_category .button {
    right: 50%;
    transform: translateX(50%);
    bottom: 10%;
    width: 130px;
  }
  /* .category_nav {
    bottom: 0;
  }
  .category_nav .pers {
    font-size: 2.2rem;
    padding: 0 0 40px;
  }
  .category_nav .label .txt {
    padding: 0 0 10px;
  }
  .category_nav .label .txt::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #E6E6E6;
  } */
  .sec_category .pic_cap {
    bottom: 0;
    left: 0;
    right: auto;
  }
}

/* 「RightToLeft」を適用する箇所 */

p.top_midasi{
   

	font-size: 24px;
	letter-spacing: .32em;
	line-height: calc(54 / 32);
	line-height: 1.688;
	margin-top:40px;
    height: auto;
	margin-bottom:0px;
    font-size: 24px;
    text-align: center;
  
}

p.zeh_top_midasi{
   

	font-size: 24px;
	letter-spacing: .32em;
	line-height: calc(54 / 32);
	line-height: 1.688;
	margin-top:40px;
	margin-bottom:40px;
    max-width: 1000px;
    height: auto;
    font-size: 24px;
    text-align: center;
  
}

#contents_box_way{
	width:100%;
	height:auto;
background-color: #332e31;
}


.stage4{
	max-width:1000px;
	margin: 0px auto;
	position: relative;
}

@media screen and (max-width:559px) { 

p.top_midasi{
	font-size:1.8em;
	line-height:1.6em;
	letter-spacing:0.5px;
	margin-bottom:20px;
}

p.zeh_top_midasi{
	font-size: 20px;
	letter-spacing: 0px;
  
}
	.stage4{
	width:100%;
	height:auto;
	position: relative;
}
}

@media screen and (max-width:359px) { 

p.top_midasi{
	font-size:1.2em;
	line-height:1.6em;
	letter-spacing:0.5px;

}
}

.eqnav{
text-align: center;
	padding-bottom: 40px;
	font-size:0.7em;
}
.eqnav ul{
margin: 0 ;
padding: 0 ;
}
.eqnav li{
list-style: none;
display: inline-block;
width: 10%;
min-width: 90px;
	color: #fff;
}
.eqnav li:not(:last-child){
border-right:2px solid #ddd;
}
.eqnav a{
text-decoration: none;
color: #fff;
}
.eqnav a.current{
color: #00B0F0;
border-bottom:2px solid #BCA989;
}
.eqnav a:hover{
color:#BCA989;
border-bottom:2px solid #BCA989;
}

body .fadeitem_t0 {
	font-size: 14px!important;
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 0s ease-out;
  transition: all 1.5s 0s ease-out;
}
body .fadeitem_t1 {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 0.2s ease-out;
  transition: all 1.5s 0.2s ease-out;
}
body .fadeitem_t2 {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 0.4s ease-out;
  transition: all 1.5s 0.4s ease-out;
}
body .fadeitem_t3 {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 0.6s ease-out;
  transition: all 1.5s 0.6s ease-out;
}
body .fadeitem_t4 {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 0.8s ease-out;
  transition: all 1.5s 0.8s ease-out;
}
body .fadeitem_t5 {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 1s ease-out;
  transition: all 1.5s 1s ease-out;
}
body .fadeitem_t6 {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 1.2s ease-out;
  transition: all 1.5s 1.2s ease-out;
}
body .fadeitem_t7 {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 1.4s ease-out;
  transition: all 1.5s 1.4s ease-out;
}
body .fadeitem_t8 {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: all 1.5s 1.6s ease-out;
  transition: all 1.5s 1.6s ease-out;
}
body .fadeitem_0 {
  opacity: 0;
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}
body .fadeitem_01 {
  opacity: 0;
  -webkit-transition: all 1.5s 0.2s ease-out;
  transition: all 1.5s 0.2s ease-out;
}
body .fadeitem_02 {
  opacity: 0;
  -webkit-transition: all 1.5s 0.4s ease-out;
  transition: all 1.5s 0.4s ease-out;
}
body .fadeitem_03 {
  opacity: 0;
  -webkit-transition: all 1.5s 0.6s ease-out;
  transition: all 1.5s 0.6s ease-out;
}
body .fadeitem_04 {
  opacity: 0;
  -webkit-transition: all 1.5s 0.8s ease-out;
  transition: all 1.5s 0.8s ease-out;
}
body .fadeitem_05 {
  opacity: 0;
  -webkit-transition: all 1.5s 1s ease-out;
  transition: all 1.5s 1s ease-out;
}
body .fadeitem_06 {
  opacity: 0;
  -webkit-transition: all 1.5s 1.2s ease-out;
  transition: all 1.5s 1.2s ease-out;
}
body .item {
  opacity: 1;
  -webkit-filter: none;
          filter: none;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-top: 0;
}
body .fadeitem_zoom {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 1.5s 0.2s ease-out;
  transition: all 1.5s 0.2s ease-out;
}
body .zoomitem {
  opacity: 1;
  -webkit-filter: none;
          filter: none;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transform: scale(1);
          transform: scale(1);
  margin-top: 0;
}
body .fadeitem_blur {
  opacity: 0;
  -webkit-filter: blur(8px) contrast(200%) brightness(150%);
          filter: blur(8px) contrast(200%) brightness(150%);
  -webkit-transition: all 1.5s 0s ease-out;
  transition: all 1.5s 0s ease-out;
}
body .fadeitem_blur2 {
  opacity: 0;
  -webkit-filter: blur(8px) contrast(200%) brightness(150%);
          filter: blur(8px) contrast(200%) brightness(150%);
  -webkit-transition: all 1.5s 0.5s ease-out;
  transition: all 1.5s 0.5s ease-out;
}
body .fadeitem_blur3 {
  opacity: 0;
  -webkit-filter: blur(8px) contrast(200%) brightness(150%);
          filter: blur(8px) contrast(200%) brightness(150%);
  -webkit-transition: all 1.5s 0.8s ease-out;
  transition: all 1.5s 0.8s ease-out;
}
body .bluritem {
  opacity: 1;
  -webkit-filter: none;
          filter: none;
  margin-top: 0;
}
body .fadein {
  opacity: 0;
  -webkit-animation: fadein 5s ease forwards;
          animation: fadein 5s ease forwards;
}
body .fadeup {
  -webkit-animation: fadeUp 1s ease forwards;
          animation: fadeUp 1s ease forwards;
}

/***********************/
/*    outline          */
/***********************/


#outline a{
    color: #d3e0f7;
}

#outline{
	max-width:980px;
	width:90%;
	height:auto;
	margin:0 auto;
	text-align:left;
	padding:20px;
	font-size: 12px;
}



.testt{
	width:100%;
	height:20px;
	background-color:#999;
}

.outline_box h3{
	float: left;
	width: 95px;
	text-align: left;
	vertical-align: middle;
	font-size: 12px;
	line-height: 16px;
	padding-left: 5px;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight: 100;
}

.outline_box_b h3{
	float:left;
	width:95px;
	text-align:left;
	vertical-align:top;
	font-size:12px;
	height:16px;
	line-height:20px;
	padding-left:5px;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
		font-weight: 100;
}

.outline_box2{
	float:left;
	width:100px;
	text-align:left;
	vertical-align:top;
	font-size:12px;
	line-height:20px;
		font-weight: 100;
}


.outline_box3{
	float:left;
	width:100px;
	text-align:left;
	vertical-align:top;
	font-size:12px;
	height:140px;
	line-height:20px;
		font-weight: 100;
}

.loca_box{
	max-width:1000px;
	height:auto;
	text-align:center;
	padding-top:20px;
	padding-bottom:10px;
	background-color: #fff;
}

body#outline .outline_box p{
	float:left;
	width:80%;
	padding-left:5px;
	text-align:left;
	font-size:12px;
		font-weight: 100;
}

body#outline .outline_box_b p{
	float:left;
	width:80%;
	padding-left:5px;
	text-align:left;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
		font-weight: 100;
}

.outline_box{
	border-top:#c4c3c3 solid 1px;
	clear:both;
	padding-top:20px;
	padding-bottom:20px;
	width:100%;
	max-width:980px;
}
.outline_box_b{
	border-top:#c4c3c3 solid 1px;
	border-bottom:#c4c3c3 solid 1px;
		padding-top:20px;
	padding-bottom:20px;
	clear:both;
		font-weight: 100;
}


body#outline h2{
	background-image: url(../img/outline/contentsH3.gif);
	text-indent: -9999px;
	height: 70px;
	width: 900px;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-position: left center;
}



body#outoline .right{
	border-top:#666 solid 1px;
	width:750px;
		font-weight: 100;
}


.mapBlock {
	margin-top: 40px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .mapBlock {
    height: 560px;
  }
}

@media (max-width: 768px) {
  .mapBlock {
    height: 480px;
    width: 100%;
  }
}

.mapBlock .mapWindow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  overflow: visible !important;
  padding: 15px 20px;
  position: absolute;
  text-align: center;
  -webkit-transform: translate(-50%, -160px);
          transform: translate(-50%, -160px);
  white-space: nowrap;
  width: auto;
}

@media screen and (min-width: 769px) {
  .mapBlock .mapWindow {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .mapBlock .mapWindow {
    font-size: 12px;
  }
}

.mapBlock .mapWindow:after {
  background: linear-gradient(45deg, white 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%) #ffffff;
  bottom: -4px;
  content: '';
  height: 15px;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
  width: 15px;
}

.mapBlock .centerLabel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  height: 62px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible !important;
  padding: 15px 20px;
  text-align: center;
  -webkit-transform: translate(-50%, -130px);
          transform: translate(-50%, -130px);
}

.mapBlock .centerLabel:after {
  background: linear-gradient(45deg, white 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%) #ffffff;
  bottom: -4px;
  content: '';
  height: 15px;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
  width: 15px;
}

@media screen and (min-width: 769px) {
  .mapBlock .centerLabel__logo {
    height: 45px;
    margin-top: 10px;
    width: 68px;
  }
}

@media (max-width: 768px) {
  .mapBlock .centerLabel__logo {
    height: 34px;
    margin-top: 10px;
    width: 52px;
  }
}

.mapBlock .centerLabel img {
  height: 32px;
}

.mapBlock .centerLabel--lower {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mapBlock .centerLabel--lower:after {
  bottom: unset;
  top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.mapBlock.is-clicked .centerLabel {
  display: none !important;
}



@media screen and (min-width: 769px) {
  .mapBtn + .mapBlock {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .mapBtn + .mapBlock {
    margin-top: 40px;
  }
}

.floating {
	position: fixed;
	right: 8px;
	bottom: 80px;
	display: none;
	z-index: 99999999;
}
.floating a {
	display: block;
	color: #fff;
	background: #000;
	font-size: 12px;
	padding: 10px 10px;
	text-decoration: none;
	text-align: center;
	opacity: 0.6;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-weight: bold;
}
.floating a:hover {
	opacity: 1;
}



.floating p.kusitubtn{
	padding-bottom: 0px;
}


.keyVisual {
  position: relative;
  z-index: 1;
		color: #c8bb9b;
	background-color: #283243;
}

.keyVisual__image .photo {
  overflow: hidden;
}

.keyVisual__image .photo__image {
  -webkit-filter: brightness(0.8) blur(10px);
          filter: brightness(0.8) blur(10px);
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: -webkit-filter 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
  transition: -webkit-filter 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
  transition: filter 1.2s ease-in-out, transform 1.2s ease-in-out;
  transition: filter 1.2s ease-in-out, transform 1.2s ease-in-out, -webkit-filter 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}

.keyVisual__image.sai-animate .photo__image {
  -webkit-filter: brightness(1) blur(0);
          filter: brightness(1) blur(0);
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (min-width: 768px) {
  .keyVisual__desc {
    padding: 120px 0;
  }
}

@media screen and (max-width: 768px) {
  .keyVisual__desc {
    padding: 64px 0 104px;
  }
}

.keyVisual__inner {
  margin: 0 auto;
	color: #c8bb9b;
}

@media screen and (min-width: 768px) {
  .keyVisual__inner {
    width: 1200px;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .keyVisual__inner {
    padding: 0 20px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .keyVisual__inner {
    padding: 0 20px;
  }
}



    .ptx-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
      color: #222;
		background-color: #fff;
    }

    .ptx-heading {
      margin-bottom: clamp(18px, 3vw, 28px);
    }

    .ptx-title-en {
      font-size: clamp(44px, 7vw, 92px);
      letter-spacing: 0.08em;
      color: #cfcfcf;
      font-weight: 300;
      line-height: 1;
      margin: 0 0 10px;
    }

    .ptx-title-jp {
      margin: 0;
      font-size: clamp(18px, 2.2vw, 30px);
      letter-spacing: 0.12em;
      line-height: 1.9;
      font-weight: 400;
    }

    /* ====== grid ====== */
    .ptx-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(14px, 2vw, 22px);
      align-items: start;
    }


.ptx_image{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.ptx_image img{
  width: 100%;
  height: auto;
  display: block; /* 余計な隙間対策でおすすめ */
}

.p01_copy{
  position: absolute;
  top: 20%;      
  left: 6%;      
  z-index: 2;    
  font-size: clamp(24px, 2.8vw, 36px);
  line-height:6;
  color: #fff;
}

.p01_copy p{
  margin: 0;           /* pのデフォルト余白を消す */
  line-height: 2.2;    /* ここで調整 */
}


    /* ====== card ====== */
    .ptx-card {
      position: relative;
      padding-left: 44px; /* space for vertical label */
    }

    .ptx-vlabel {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      width: 34px;
      letter-spacing: 0.25em;
      font-size: 12px;
      color: #333;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      user-select: none;
    }

    .ptx-card-head {
      text-align: center;
      font-size: 18px;
      letter-spacing: 0.12em;
      margin: 0 0 10px;
      font-weight: 600;
    }

    /* ====== link (image + gray area whole clickable) ====== */
    .ptx-link {
      display: block;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }

    .ptx-link:focus-visible {
      outline: 3px solid #111;
      outline-offset: 4px;
    }

    /* ====== media ====== */
    .ptx-media {
      border-radius: 2px;
      overflow: hidden; /* important for zoom */
      background: #eee;
    }

    .ptx-media img {
      display: block;
      width: 100%;
      height: 340px;
      object-fit: cover;
      transform: scale(1);
      transform-origin: center center; /* zoom from center */
      transition: transform 420ms ease;
      will-change: transform;
    }

    /* hover zoom (center) */
    .ptx-link:hover .ptx-media img,
    .ptx-link:focus-visible .ptx-media img {
      transform: scale(1.12);
    }

    /* ====== bottom gray area ====== */
    .ptx-meta {
      margin-top: -1px;
    }

    .ptx-caption {
      background: #6a6a6a;
      color: #fff;
      padding: 16px 14px 14px;
      text-align: center;
      line-height: 1.7;
      font-size: 12px;
      letter-spacing: 0.08em;
      transition: background 260ms ease;
    }

    .ptx-arrow {
      display: grid;
      place-items: center;
      height: 28px;
      background: #6a6a6a;
      color: #fff;
      font-size: 14px;
      line-height: 1;
      letter-spacing: 0.1em;
      transition: background 260ms ease;
    }

    /* optional hover feedback for gray area */
    .ptx-link:hover .ptx-caption,
    .ptx-link:hover .ptx-arrow {
      background: #555;
    }

    /* ====== responsive ====== */
    @media (max-width: 1024px) {
      .ptx-grid { grid-template-columns: repeat(2, 1fr); }
      .ptx-media img { height: 300px; }
    }

    @media (max-width: 640px) {
      .ptx-grid { grid-template-columns: 1fr; }
      .ptx-card { padding-left: 40px; }
      .ptx-media img { height: 260px; }
      .ptx-card-head { font-size: 16px; }
      .ptx-caption { font-size: 14px; }
    }


/* ========== section base ========== */
.haleia-reasons {
  background: #ffffff;
  padding: 24px 16px;
}

.haleia-reasons__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* ========== left image ========== */
.haleia-reasons__media {
  flex: 0 0 58%;
  border-radius: 6px;
  overflow: hidden;
  background: #f3f3f3;
}

.haleia-reasons__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9; /* 画像がない時でも崩れにくく */
}

/* ========== right text ========== */
.haleia-reasons__copy {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.haleia-reasons__title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #111;
}

.haleia-reasons__num {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.haleia-reasons__stack {
  display: grid;
  gap: 6px;
}

.haleia-reasons__line1 {
  font-size: clamp(14px, 1.7vw, 20px);
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.haleia-reasons__line2 {
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.haleia-reasons__brand {
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* ========== responsive ========== */
@media (max-width: 900px) {
  .haleia-reasons__inner {
    flex-direction: column;
  }

  .haleia-reasons__media {
    flex-basis: auto;
  }

  .haleia-reasons__copy {
    justify-content: flex-start;
    padding: 18px 4px 0;
  }

  .haleia-reasons__line2 {
    white-space: normal;
  }
}
/* ========== plus one ========== */
.haleia-reasons__plus {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  align-items: center;
  gap: 12px;
  color: #111;
}

.haleia-reasons__plus::before {
  content: "";
  display: block;
  width: 64px;          /* 横線の長さ（好みで調整） */
  height: 1px;
  background: #111;
  opacity: 0.9;
}

.haleia-reasons__plusText {
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.08em;
  line-height: 1;
}
  /* ===== Layout ===== */
    .p01-wrap {
      width: 100%;
				      background: linear-gradient(#efefef 0%, #f8f8f8 55%, #f4f4f4 55%, #f4f4f4 100%);
      padding: 56px 20px 64px;
    }
    .p01-inner {
      max-width: 1200px; /* PC最大1200px */
      margin: 0 auto;
    }

    /* ===== Hero ===== */
    .p01-hero {
      text-align: center;
      padding-top: 8px;

    }
    .p01-pointImg {
      width: 150px;
      margin: 0 auto 24px;
    }
    .p01-ttl {
      margin: 0;
      font-size: clamp(18px, 2.3vw, 28px);
		  line-height: 1.8;
      font-weight: 500;
      letter-spacing: 0.08em;
		color: #000000;
    }
    .p01-subttl {
      margin: 10px 0 0;
      font-size: clamp(14px, 1.6vw, 18px);
      color: #555;
      letter-spacing: 0.06em;
    }

    /* ===== Tabs ===== */
    .p01-tabs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin: 34px auto 44px;
      max-width: 880px;
      padding: 0 6px;
    }
    .p01-tabBtn {
      appearance: none;
      border: 1px solid #d9d9d9;
      background: #fff;
      cursor: pointer;
      border-radius: 0;
      padding: 14px 12px;
      text-align: center;
      transition: background .25s ease, color .25s ease, border-color .25s ease;
      position: relative;
      min-height: 62px;
    }

    .p01-tabTop {
      display: block;
      font-size: 18px;
      letter-spacing: 0.08em;
      color: #8a7a5c;
      margin-bottom: 2px;
      white-space: nowrap;
			font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    }
    .p01-tabBottom {
      display: block;
      font-size: 14px;
      letter-spacing: 0.12em;
      color: #2b2b2b;
    }

    /* 選択時：ベタ色 */
    .p01-tabBtn.is-active {
      background: #c7b28a;   /* ベタ色（好みで変更OK） */
      border-color: #c7b28a;
    }
    .p01-tabBtn.is-active .p01-tabTop,
    .p01-tabBtn.is-active .p01-tabBottom {
      color: #fff;
    }
    .p01-tabBtn:focus-visible {
      outline: 2px solid rgba(60, 120, 255, 0.5);
      outline-offset: 2px;
    }

    /* ===== Slider (lower area) ===== */
    .p01-slider {
      background: transparent;
    }
    .p01-sliderHead {
      text-align: center;
      margin-bottom: 24px;
    }
    .p01-sliderTitle {
      margin: 0;
      font-size: clamp(18px, 2.2vw, 26px);
      font-weight: 500;
      letter-spacing: 0.08em;
    }
    .p01-sliderDesc {
      margin: 14px auto 0;
      max-width: 780px;
      color: #000;
      font-size: 20px;
    }

    /* viewport */
    .p01-viewport {
      overflow: hidden;
      border-radius: 6px;
		  height: auto;
  transition: height 420ms cubic-bezier(.22,.61,.36,1);
  will-change: height;
    }

    /* track */
    .p01-track {
      display: flex;
      width: 300%;
      transform: translateX(0%);
      transition: transform 420ms cubic-bezier(.22,.61,.36,1);
      will-change: transform;
		align-items: flex-start; /* これ重要 */
    }
    .p01-panel {
      width: 100%;
      flex: 0 0 100%;
      padding: 10px 0 0;
		 height: auto;
    }

    /* content grid inside each panel */
.p01-contentGrid {
	width: 100%;
max-width: 1000px;
  text-align: center;   /* テキストも中央 */
	padding-left: 100px;
	  align-items: flex-start;   /* flexなら */
  align-content: start;      /* 念のため */
}
    .p01-visual {
      background: #fff;
      border: 1px solid #e5e5e5;
      border-radius: 6px;
      overflow: hidden;
    }
    .p01-copy {
  height: auto;
  align-self: start;      /* flex/gridどっちでも効く */
  justify-self: start;    /* grid対策 */
	
    }
    .p01-copy p {       margin: 0;
      font-size: clamp(14px, 1.8vw, 22px);
      font-weight: 500;
      letter-spacing: 0.08em;
		color: #000000;
		margin: 0 0 12px; }

    .p01-copySmall { font-size: 12px !important;
		line-height: 20px;
		text-align: justify;
		color: #666;
padding-top: 20px;}


    @media (max-width: 520px) {
      .p01-tabs {
        grid-template-columns: 1fr;
        max-width: 420px;
      }
      .p01-tabBtn::before {
        left: 18px;
        right: 18px;
      }
		.p01-contentGrid {
	width: 100%;
			max-width: 440px;
  text-align: center;   /* テキストも中央 */
			margin-left: -100px;
}
    }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
      .p01-track { transition: none; }
      .p01-tabBtn { transition: none; }
    }

/* ===== Layout ===== */
.p01-wrap{
  width: 100%;
  padding: 0;                 /* 背景を分割するのでwrapには余白を持たせない */
  background: transparent;    /* ここでグレーを敷かない */
}

/* 上：グレー（ここにヒーロー〜ボタンを入れる） */
.p01-top{
  background: #efefef;
  padding: 56px 20px 34px;    /* 下はボタンに合わせて少し浅め */
}

/* 下：白（ここにスライドエリアを入れる） */
.p01-bottom{
  background: #ffffff;
  padding: 44px 20px 64px;
}

.p01-inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* ボタンの下に白が見えるように微調整したい場合（任意） */
.p01-tabs{
  margin: 34px auto -70px;    /* 下へ少しまたがせる（境目がボタン中央っぽくなる） */
  position: relative;
  z-index: 2;
}



.info-panel {
  padding: 24px 16px;
	color: #000000;
}

.info-panel__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff; /* 外枠なし */
}

/* 見出し */
.info-panel__title {
  margin: 0;
  padding: 10px 14px 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* INFORMATIONの下＆全体末尾の横線 */
.info-panel__rule {
  height: 2px;
  background: #222;
}

.info-panel__rule--bottom {
  margin-top: 10px;
}

/* リスト */
.info-panel__list {
  list-style: none;
  margin: 0;
  padding: 10px 0; /* 横線と本文の間を少し確保 */
}

/* 各項目（罫線なし、余白のみ） */
.info-item {
  padding: 8px 14px;
	margin-bottom: 16px;
}

/* 行：日付＋本文 */
.info-item__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* 日付：薄いグレー背景 */
.info-item__date {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1.3; /* 行間詰め */
  white-space: nowrap;
  font-weight: 600;

  background: #efefef;
  padding: 2px 8px;
  border-radius: 2px;
}

/* 本文：行間を詰める */
.info-item__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

/* ▼ 項目の下に入る画像 */
.info-item__media {
  margin: 8px 0 0;
}

.info-item__img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border: 1px solid #d7d7d7;
}
.info-item__media02 {
  margin: 8px 0 0;
  display: flex;
  gap: 12px;              /* 画像間の余白 */
  align-items: flex-start;
  flex-wrap: wrap;        /* 画面が狭いとき折り返す */
}

.info-item__media02 a {
  flex: 0 0 auto;
}

.info-item__img02 {
  display: block;
  width: 100%;
  max-width: 240px;       /* ←ここで小さくする（例） */
  height: auto;
  border: 1px solid #d7d7d7;
}

.info-item__photo {
  max-width: 240px;
}

.info-item__caption {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: #555;
  letter-spacing: 0.04em;
}

.info-item__media02--with-caption {
  display: block;
}

.info-item__photos {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.info-item__media02--with-caption {
  display: block;
}

.info-item__photos {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* 動画モーダル */
.movie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.movie-modal.active {
  display: block;
}

.movie-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.movie-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 900px);
  transform: translate(-50%, -50%);
  background: #000;
}

.movie-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.movie-modal__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie-modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===== SP ===== */
@media screen and (max-width: 768px) {
  .info-panel__rule {
    height: 1px;
  }

  .info-item__row {
    flex-direction: column;
    gap: 6px;
  }

  .info-item__date {
    font-size: 12px;
    line-height: 1.2;
  }

  .info-item__img {
    max-width: 100%;
  }
}


@media (max-width: 600px) {
  .info-item__media02 {
    flex-direction: column;
  }
  .info-item__img02 {
    max-width: 100%;
  }
}


.info-item__date {
  flex: 0 0 110px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
  font-weight: 600;
  background: #efefef;
  padding: 2px 8px;
  border-radius: 2px;
}

.info-item__media,
.info-item__media02 {
  margin-left: 120px;
}

@media screen and (max-width: 768px) {
  .info-item__media,
  .info-item__media02 {
    margin-left: 0;
  }
}





.bonsai_box h3.bonsai{
	font-size: 32px!important;
	line-height: calc(54 / 32);
	line-height: 1.688;
	margin-bottom:40px;
}

    .switcher {
      width: min(1200px, 92vw);
      margin: 24px auto;
    }

    .switcher__frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #eee;
      /* 角を四角にする（丸めない） */
      border-radius: 0;
    }

    .switcher__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1800ms ease;
      pointer-events: none;
      user-select: none;
    }

    .switcher__img.is-active {
      opacity: 1;
    }

    /* ドット（◯●） */
    .switcher__dots {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 12px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      border: 2px solid #333;
      background: transparent; /* ◯ */
      cursor: pointer;
      padding: 0;
      appearance: none;
    }

    .dot.is-active {
      background: #333; /* ● */
    }

    /* タップしやすく（見た目は小さいけど当たり判定広め） */
    .dot::after {
      content: "";
      display: block;
      width: 28px;
      height: 28px;
      margin: -10px;
    }

.locat_back{
	background-color: #283243;
}

/* 外枠（最大1000pxでレスポンシブ） */
.pc-frame {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  box-sizing: border-box;

  /* ラベルが枠線に被る分、上に余白を足す */
  padding: 32px 20px 20px;
  background: #fff;
}

/* 左上のラベル */
.pc-frame__label {
  position: absolute;
  top: -16px;              /* 枠線上に重ねる */
  left: 16px;
  transform: translateY(-55%);

  display: inline-block;
  padding: 6px 14px;

  background: #fff;

  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #855937;
  box-sizing: border-box;
  white-space: nowrap;
}

/* 中身エリア（高さは内容で可変） */
.pc-frame__body {
  /* 必要なら余白などを追加 */
	padding-top: 10px;
}

.pc-frame__body p.frame_in_midasi{
		position: absolute;
	top:10px;
	left: 10px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #855937;
}



.pc-frame__body p.txt_{
	color: #000000;
	font-size: 16px;
	line-height: 24px;
	text-align: justify;
}


/* ちょい調整（スマホ） */
@media (max-width: 480px) {
  .pc-frame {
    padding: 28px 14px 14px;
  }

  .pc-frame__label {
    left: 12px;
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* 全体：最大1000pxでセンター寄せ */
.sv-view {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  box-sizing: border-box;
}

/* 見出し行：左右配置 */
.sv-view__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 10px;
  box-sizing: border-box;
}

/* 左の説明テキスト */
.sv-view__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #111;
}

/* 右の「B type VIEW」 */
.sv-view__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 2px; /* 下線との距離 */
  border-bottom: 1px solid #999;
  color: #111;
  white-space: nowrap;
}

.sv-view__badge-main {
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sv-view__badge-sub {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* 画像 */
.sv-view__media {
  margin: 0;
}

.sv-view__img {
  display: block;
  width: 100%;
  height: auto;           /* 高さ可変（画像比率で決まる） */
  object-fit: cover;      /* もし高さ固定にしたくなった時に効く */
}

/* スマホ：縦並びに変更 */
@media (max-width: 640px) {
  .sv-view__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sv-view__title {
    font-size: 15px;
    line-height: 1.7;
  }

  .sv-view__badge-main {
    font-size: 30px;
  }
}

	/* 全体 */
.nx-wrap{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 12px; /* 画面端の詰まり防止 */
}

/* 上段：左（カード2枚）＋右（説明） */
.nx-top{
  display: grid;
  grid-template-columns: 1fr 320px; /* 右は固定寄り */
  gap: 20px;
  align-items: start;
}

/* カード2枚 */
.nx-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* カード */
.nx-card{
  border: 2px solid #10a7b2;
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: #fff;
  box-sizing: border-box;
  min-height: 180px; /* 近い雰囲気に（不要なら消してOK） */
}

.nx-card__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.nx-card__logo{
  display: block;
  width: 120px;
  height: auto;
}

.nx-card__tag{
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #e10000;
  white-space: nowrap;
}

.nx-card__lead{
  margin: 8px 0 6px;
  font-size: 16px;
  color: #111;
}

.nx-card__sub{
  margin: 0 0 8px;
  font-size: 14px;
  color: #0b67c2;
  font-weight: 600;
}

.nx-card__speed{
  margin: 0;
  font-size: 14px;
  color: #111;
}

.nx-card__speed strong{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nx-card__desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.nx-card__note{
  font-size: 12px;
  margin-left: 4px;
}

/* 右の説明 */
.nx-side{
  color: #e10000;
  font-size: 14px;
  line-height: 1.8;
}

.nx-side__title{
  margin: 0 0 10px;
  font-weight: 700;
}

.nx-side__text{
  margin: 0 0 10px;
}

/* 注釈 */
.nx-notes{
  margin-top: 18px;
}

.nx-note{
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.7;
  color: #333;
}

/* 表 */
.nx-tableWrap{
	width: 360px;
  margin-top: 22px;/
}

.nx-table{
  width: 100%;
  min-width: 560px; /* 崩れ防止（必要に応じて調整） */
  border-collapse: collapse;
  background: #fff;
}

.nx-table th,
.nx-table td{
  border: 1px solid #333;
  padding: 10px 12px;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
}

.nx-table thead th{
  color: #e10000;
  font-weight: 700;
}

/* レスポンシブ */
@media (max-width: 900px){
  .nx-top{
    grid-template-columns: 1fr; /* 右説明を下へ */
  }
  .nx-side{
    order: 2;
  }
  .nx-cards{
    order: 1;
  }
}

@media (max-width: 640px){
  .nx-cards{
    grid-template-columns: 1fr; /* カード縦積み */
  }
  .nx-card__tag{
    font-size: 16px;
  }
  .nx-card__speed strong{
    font-size: 28px;
  }
	.nx-tableWrap{
	width: 200px;
  margin-top: 22px;/
}
}

/* 表（PCはそのまま） */


.nx-table{
  width: 100%;
  min-width: 460px; /* PC想定 */
  border-collapse: collapse;
}

/* スマホだけ：横幅を可変に（縮める） */
@media (max-width: 640px){
  .nx-tableWrap{
    overflow-x: visible; /* スクロールさせない */
  }

  .nx-table{
    min-width: 0;        /* ←これが重要。固定幅を解除 */
    table-layout: fixed; /* 列幅を均等に割り振って縮めやすくする */
  }

  .nx-table th,
  .nx-table td{
    padding: 8px 8px;
    font-size: 13px;
    white-space: normal;     /* 折り返しOK */
    word-break: break-word;  /* 長い文字も折り返す */
  }
}

p.madori_come{
	text-align: left;
	padding-left: 100px;
	color: #F51216;
}

span.blue{color: #03A2FB}

/* 全体：最大420pxでレスポンシブ */
.lx-itemlist{
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

/* 1行（赤枠ボックス） */
.lx-itemlist__row{
  background: #ceb28f;
  box-sizing: border-box;

  padding: 10px 12px;
  margin: 0 0 12px;

  font-size: 14px;
  line-height: 1.6;
  color: #fff;

  /* 番号＋本文を横並び */
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

/* 最後の余白だけ消す */
.lx-itemlist__row:last-child{
  margin-bottom: 0;
}

/* 番号 */
.lx-itemlist__num{
  flex: 0 0 auto;
  line-height: 1.6;
}

/* スマホ：少し詰める */
@media (max-width: 360px){
  .lx-itemlist__row{
    padding: 9px 10px;
    font-size: 13px;
  }
}

/* 2つ横並び用 */
.pc-frameGrid{
  width: 100%;
  max-width: 1000px;     /* 必要なら（pc-frameと合わせる） */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* pc-frame側の max-width:1000px が邪魔になるので解除 */
.pc-frameGrid .pc-frame{
  max-width: none;
  margin: 0;
}

/* スマホは1列 */
@media (max-width: 640px){
  .pc-frameGrid{
    grid-template-columns: 1fr;
  }
}

/* 画像がはみ出さないように（任意だけどほぼ必須） */
.pc-frame__body img{
  max-width: 100%;
  height: auto;
  display: block;
}

p.cap{
	color: #000000;
	font-size: 10px;
	padding-top: 10px;
}





.header-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-wrapper {
    position: relative;
    height: 80px;
    padding-left: 20px;
    z-index: 995;
    background-color: #fff;
}

.header-logo {
    flex: 1;
    padding-right: 20px;
}

.header-logo img{
	width:35.43vw;
	max-width:600px;
}
.header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 80px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: .05em;
    border: 1px solid #fff;
    border-left: none;
    padding:3px;
}
a.header-btn.bg_btn {
    letter-spacing: -0.03em;
}
div.header-btn.bg_btn {
	background-color: #999;
    color:#777 !important;
    letter-spacing: -0.03em;
}

.hamburger {
    position: relative;
    width: 80px;
    height: 62px;
    text-align: center;
    padding-top: 17px;
    font-size: 14px;
    letter-spacing: .1em;
    background: #f1e9dc;
    z-index: 50;
    cursor: pointer;
		box-sizing: content-box;
}

.menu-trigger {
    position: absolute;
    left: 21.5px;
    top: 37px;
    width: 37px;
    height: 23px;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all .4s;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 10px;
}

.menu-trigger span:nth-of-type(3) {
    top: 20px;
}

.menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.hamburger.active .menu-trigger span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(10px) rotate(45deg);
    }
}

.hamburger.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.active .menu-trigger span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(-10px) rotate(-45deg);
    }
}/* PC/タブレットのメニューは必ず「浮かせる」 */
.header-menu{
  /* ★追加：メニュー内だけフォント基準を固定（html font-sizeの影響を受けにくくする） */
  font-size: 10px; /* 後で全体調整はここだけ触ればOK */

  position: fixed;          /* ←ここが重要（absoluteでもOKだけどfixedが安定） */
  left: 0px;              /* ←単位が無かったので修正 */
  top: 80px;               /* ←単位が無かったので修正 */
  width: 100%;
  height: 100vh;            /* 画面高に固定 */
  box-sizing: border-box;   /* padding込みで収める */
  transform: translateY(-110%);
  transition: transform .5s linear;
  z-index: 990;             /* headerより上に */
  margin: 0;                /* 念のため */
  padding-left: 20px;
	padding-top: 30px;
}

.header-menu.active{
  transform: translateY(0);
}

.header-menu{ pointer-events: none; }
.header-menu.active{ pointer-events: auto; }

@media screen and (max-width: 639px) {
  .sp-menu{
    top: 0;
    transform: translateY(-110%);
    transition: transform .5s linear;
  }
  .sp-menu.active{
    transform: translateY(0);
  }
}

.header-menu.black {
  color: #fff;
 background-image: url("../imgs/equipment/bg-content@1.5x.jpg");
}

.header-menu::-webkit-scrollbar {
  width: 0;
}

.header-menu .container {
  max-width: 1500px;
}

.header-menu nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 50%;
}

.header-menu nav>ul {
  width: 47%;
  max-width: 330px;
}

.header-menu nav>ul>li>a,
.header-menu nav>ul>li>p {
  position: relative;
  display: block;
  padding: 30px 0 15px;
  font-size: 1.6em;     /* 1.6rem → 1.6em */
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: .1em;
  border-bottom: 1px solid #ccc1af;
}
.header-menu nav>ul>li>p{
  color: #ccc;
}
.header-menu.black nav>ul>li>a{
  color: #fff;
}
.header-menu.black nav>ul>li>p {
  border-bottom: 1px solid #ccc1af;
  color: #999;
}

.header-menu nav>ul>li>a .f-en,
.header-menu nav>ul>li>p .f-en {
  font-size: 2.6em;     /* 2.6rem → 2.6em */
  letter-spacing: -.035em;
}

.header-menu nav>ul>li>a .f-en {
  color: #615239;
}

.header-menu nav>ul>li>p .f-en {
  color: #ccc;
}
.header-menu.black nav>ul>li>p .f-en {
  color: #999;
}
.header-menu nav>ul>li>p.active .f-en {
  color: #000;
}
.header-menu.black nav>ul>li>p.active .f-en {
  color: #fff;
}
.header-menu nav .f-en {
  color: #615239;
}

.header-menu.black nav {
  color: #333;
}
.header-menu.black nav a .f-en,
.header-menu.black nav a {
  color: #fff;
}

.header-menu nav>ul>li.has-child>p {
  padding-right: 35px;
  cursor: pointer;
}
.header-menu nav>ul>li.has-child>p.active {
  color: #000;
}
.header-menu.black nav>ul>li.has-child>p.active {
  color: #fff;
}

.header-menu nav>ul>li.has-child>p::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15px;
  bottom: 0;
  width: 25px;
  background: url(../images/common/icn_plus_black.png) no-repeat center / auto;
}

.header-menu nav>ul>li.has-child>p.sub-open::after {
  background: url(../images/common/icn_minus_black.png) no-repeat center / auto;
}
.header-menu.black nav>ul>li.has-child>p::after {
  background: url(../images/common/icn_plus.png) no-repeat center / auto;
}
.header-menu.black nav>ul>li.has-child>p.sub-open::after {
  background: url(../images/common/icn_minus.png) no-repeat center / auto;
}

.header-menu nav>ul>li .sub-menu {
  display: none;
  padding-left: 12%;
  border-bottom: 1px solid #ccc1af;
}

.header-menu nav>ul>li .sub-menu a {
  display: block;
  padding: 18px 0;
  font-size: 1.8em;     /* 1.8rem → 1.8em */
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: .1em;
  border-bottom: 1px solid #ccc1af;
}
.header-menu nav>ul>li .sub-menu a.finish {
  border-bottom:none;
}

.header-menu-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 45%;
  padding-top: 25px;
}

.header-menu-btn {
  width: 57%;
  max-width: 370px;
}

.header-menu-btn li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 6px;
  text-align: center;
  font-size: 2em;       /* 2rem → 2em */
  line-height: 1.2;
  letter-spacing: .1em;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 20px center;
}
.header-menu-btn li p,
.header-menu-btn li a{
  width: 100%;
  height: 100%;
  padding: 10px;
  display: grid;
  align-items: center;
}
.header-menu-btn a::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  width: 32px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header-menu-btn li.btn001 {
  background-color: #5d4c32;
  color: #fff;
}
.header-menu-btn li.btn002 {
  background-color: #c2b974;
  color: #fff;
}
.header-menu-btn li.btn003 {
  background-color: #f5f3ed;
  color:#000;
}

.header-menu-other {
  width: 38%;
}

.header-menu-other ul li {
  position: relative;
  display: block;
  margin-bottom: 25px;
  padding-left: 22px;
  font-size: 1.8em;     /* 1.8rem → 1.8em */
  font-weight: 300;
  letter-spacing: .1em;
}
.header-menu.black .header-menu-other ul li a {
  color:#fff;
}
.header-menu .header-menu-other ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  width: 10px;
  height: 2px;
  background-color: #000;
}
.header-menu.black .header-menu-other ul li a::before {
  background-color: #fff;
}
.header-menu .header-menu-other ul li p {
  color:#ccc;
}
.header-menu.black .header-menu-other ul li p {
  color:#333;
}
.header-menu .header-menu-other ul li p::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  width: 10px;
  height: 2px;
  background-color: #ccc;
}
.header-menu.black .header-menu-other ul li p::before {
  background-color: #333;
}

.header-sns {
  display: flex;
  align-items: center;
  padding: 5px 0 0 5px;
}

.header-sns a {
  display: block;
  margin-left: 20px;
  line-height: 0;
}

.sp-menu {
  display: none;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* header 1400 */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1400px) {
  .header-menu nav>ul>li>a, 
  .header-menu nav>ul>li>p {
    font-size: 1.3vw; /* vwはそのまま */
  }
  .header-menu nav>ul>li>a .f-en, 
  .header-menu nav>ul>li>p .f-en {
    font-size: 18px; /* pxはそのまま */
  }
  .header-menu nav>ul>li .sub-menu a {
    font-size: 1.28vw; /* vwはそのまま */
  }
  .header-menu-btn li {
    padding: 5px;
    font-size: 1.3vw; /* vwはそのまま */
  }
  .header-menu-btn a::before {
    left: 8%;
    width: 13%;
  }
  .header-menu-other ul li a {
    font-size: 1.8rem; /* ★ここ誤記っぽいので修正：rpm → rem（ただしheader-menu内では効かない要素かも） */
  }
  .header-menu-btn li p,
  .header-menu-btn li a{
    padding: 10px;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* header 1200 */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  .header-btn {
    width: 13vw;
    font-size: 1.4166vw;
  }
  .header-menu nav>ul>li>a .f-en, 
  .header-menu nav>ul>li>p .f-en {
    font-size: 16px;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* header 1024 */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  body.nav-open {
    overflow: hidden;
  }
  .header-menu nav {
    width: 47%;
  }
  .header-menu nav>ul,
  .header-menu-btn,
  .header-menu-other {
    width: 100%;
  }
  .header-menu nav>ul {
    max-width: none;
  }
  .header-menu nav>ul>li>a, 
  .header-menu nav>ul>li>p,
  .header-menu-other ul li a {
    font-size: 2em;    /* 2rem → 2em */
  }
  .header-menu nav>ul>li>a .f-en, 
  .header-menu nav>ul>li>p .f-en {
    font-size: 3em;    /* 3rem → 3em */
  }
  .header-menu nav>ul>li .sub-menu a {
    font-size: 2.3em;  /* 2.3rem → 2.3em */
  }
  .header-menu-right {
    width: 48%;
    max-width: 370px;
  }
  .header-menu-btn {
    margin-bottom: 40px;
  }
  .header-menu-btn li {
    padding: 5px;
    font-size: 2em;    /* 2rem → 2em */
  }
  .header-menu-btn a::before {
    left: 7%;
    width: 32px;
  }
  .header-menu-other ul li a {
    font-size: 2em;    /* 2rem → 2em */
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* header 768 */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .header-wrapper {
    height: 110px;
  }
  .header-btn {
    display: none;
  }
  .header-logo img{
    width:100%;
  }
  .hamburger {
    padding-top: 12px;
  }
  .header-menu {
    padding-top: 140px;
  }
  .header-menu nav>ul>li>a, 
  .header-menu nav>ul>li>p {
    font-size: 2.13vw;
  }
  .header-menu nav>ul>li>a .f-en, 
  .header-menu nav>ul>li>p .f-en {
    font-size: 3.46vw;
  }
  .header-menu nav>ul>li .sub-menu a {
    font-size: 2.4vw;
  }
  .header-menu-btn a {
    font-size: 2.6vw;
  }
  .header-menu-btn a::before {
    width: 11%;
  }
  .header-menu-other ul li a {
    font-size: 2.4vw;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* header 639 */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 639px) {
  .header-wrapper {
    height: 70px;
  }
  .hamburger {
    width: 70px;
    height: 70px;
    padding-top: 10px;
    font-size: 12px;
  }
  .menu-trigger {
    left: 16.5px;
    top: 30px;
  }
  .header-menu {
    display: none;
  }
  .sp-menu {
    position: fixed;
    left: 0;
    top: -100vh;
    display: block;
    width: 100%;
    height: 100vh;
    padding: 100px 0 20vw;
    background-color: rgba(255, 255, 255, 1);
    z-index: 990;
    overflow-y: scroll;
    transition: all .5s linear;
  }
  .sp-menu.active {
    top: 0;
  }
  .sp-menu.sp-toggle {
  }
  .sp-menu nav ul {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    border-top: 1px solid #b99a31;
  }
  .sp-menu nav ul li {
    width: 50%;
    height:14.8437vw;
    border-bottom: 1px solid #b99a31;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3.75vw;
    font-weight: 300;
    letter-spacing: .05em;
    color:#c7c6c6;
    line-height: 1.2;
    padding: 20px 10px;
  }

  .sp-menu nav ul li:nth-of-type(2n+1) {
    border-right: 1px solid #b99a31;
  }

  /*
  .sp-menu nav ul li:last-child {
    border-bottom: none;
  }
  */
  .sp-menu nav ul li a {
    color:#000;
  }
  .sp-menu-sns {
    padding: 10vw 0;
  }
  .sp-menu-sns a {
    display: block;
    margin: 0 20px;
    line-height: 0;
  }
  #information-sec{
    margin-top:100px!important;
  }
  #contents-sec{
    margin-top:100px!important;
  }
}

@media screen and (max-width: 639px) {
  .sp-menu nav ul { display: flex; flex-wrap: wrap; }
  .sp-menu nav ul li { width: 50%; box-sizing: border-box; }
}

/* header-menu の中の .container だけ Bootstrap を打ち消す */
.header-menu .container{
  max-width: none !important;   /* Bootstrapの1140px等を無効化 */
  width: 100% !important;
  padding-left: 50px !important;   /* ←欲しい余白はここで固定 */
  padding-right: 50px !important;
  margin-left: 0 !important;    /* auto中央寄せをやめる */
  margin-right: 0 !important;
}
/* header-menu内ではBootstrapのflex指定を無視して縦積みにする */
.header-menu .container{
  display: block !important;   /* d-flex を潰す */
}


/* ※英語はすでに 2.6em で大きいので、英語はそのまま */


.mv .txt{position: relative;}

.mv .txt .page-topname{
	font-size: 50px;
	color: #ffffff;
	position: absolute;
	top:50;
	left: 100;
	z-index: 9999999;
}

/* ロゴ画像だけに確実に効かせる */
.header-logo > a > figure > img{
  width: 35.43vw !important;
  max-width: 600px !important;
  height: auto !important;
  display: block;
}



/* BASE */
/* LAYOUT */
.contentMenu {
  height: 100vh;
  left: 0;
  overflow: scroll;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

.contentMenu::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 768px) {
  .contentMenu {
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 140px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu {
    padding: 80px 20px 0;
  }
}

.contentMenu__bg {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  width: 100%;
  z-index: -1;
}

.contentMenu__bg .pic {
  height: 100%;
  width: 100%;
}

.contentMenu__bg .pic__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.contentMenu {
  visibility: hidden;
}

.contentMenu.is-visible {
  visibility: visible;
}

.contentMenu .mansionSymbol,
.contentMenu .contentMenu-inner,
.contentMenu .contentMenu-external {
  opacity: 0;
  -webkit-transition: .6s;
  transition: .6s;
  visibility: hidden;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
          transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}

.contentMenu__bg {
  opacity: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: .9s;
  transition: .9s;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
          transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}

.contentMenu.is-visible .mansionSymbol,
.contentMenu.is-visible .contentMenu-inner,
.contentMenu.is-visible .contentMenu-external {
  opacity: 1;
  -webkit-transition: .3s .28s;
  transition: .3s .28s;
  visibility: visible;
}

.contentMenu.is-visible .contentMenu__bg {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: .3s;
  transition: .3s;
}

.contentMenu .mansionSymbol {
  position: absolute;
  top: 0;
}

.contentMenu-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  z-index: 9990;
}

@media screen and (min-width: 768px) {
  .contentMenu-menu {
    height: 17px;
    right: 40px;
    top: 40px;
    width: 30px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-menu {
    height: 15px;
    right: 20px;
    top: 20px;
    width: 26px;
  }
}

@media only screen and (max-width: 320px) {
  .contentMenu-menu {
    height: 15px;
    right: 20px;
    top: 20px;
    width: 26px;
  }
}

.contentMenu-menu:before {
  content: '';
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s;
  transition: .3s;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .contentMenu-menu:before {
    height: 70px;
    width: 70px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-menu:before {
    height: 35px;
    width: 35px;
  }
}

.contentMenu-menu__line {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contentMenu-menu__line {
    height: 2px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-menu__line {
    height: 1px;
  }
}

.contentMenu-menu.is-mod:before {
  opacity: 1;
}

.contentMenu-menu.is-mod.is-active:before {
  opacity: 0;
}

.contentMenu-gradient {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition-duration: 1.8s;
          transition-duration: 1.8s;
  width: 100%;
  z-index: 1;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
          transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}

@media screen and (min-width: 768px) {
  .contentMenu-gradient {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-gradient {
    height: 150px;
  }
}

@media only screen and (max-width: 320px) {
  .contentMenu-gradient {
    height: 150px;
  }
}

@media screen and (min-width: 768px) {
  .site-theme-white .contentMenu-gradient {
    background: url("../imgs/pc/hdr-transparent-black.png") bottom left repeat-x;
  }
}

@media screen and (max-width: 768px) {
  .site-theme-white .contentMenu-gradient {
    background: url("../imgs/sp/hdr-transparent-black.png") bottom left no-repeat;
    background-size: cover;
  }
}

@media only screen and (max-width: 320px) {
  .site-theme-white .contentMenu-gradient {
    background: url("../imgs/sp/hdr-transparent-black.png") bottom left no-repeat;
    background-size: cover;
  }
}

.site-theme-white .contentMenu-menu:before {
  background-color: rgba(255, 255, 255, 0.6);
}

.site-theme-white .contentMenu-menu__line {
  background-color: #000000;
}

@media screen and (min-width: 768px) {
  .site-theme-black .contentMenu-gradient {
    background: url("../imgs/pc/hdr-transparent-white.png") bottom left repeat-x;
  }
}

@media screen and (max-width: 768px) {
  .site-theme-black .contentMenu-gradient {
    background: url("../imgs/sp/hdr-transparent-white.png") bottom left no-repeat;
    background-size: cover;
  }
}

@media only screen and (max-width: 320px) {
  .site-theme-black .contentMenu-gradient {
    background: url("../imgs/sp/hdr-transparent-white.png") bottom left no-repeat;
    background-size: cover;
  }
}

.site-theme-black .contentMenu-menu__line {
  background-color: #ffffff;
}

.contentMenu-inner {
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
  width: 100%;
  z-index: 9;
}

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

@media screen and (min-width: 768px) {
  .contentMenu-pageList {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList {
    gap: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contentMenu-pageList__item {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__item {
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList__item {
    width: calc(50% - 6px);
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__item:nth-of-type(odd):before {
    right: 50px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList__item:nth-of-type(odd):before {
    right: 12.5px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__item:nth-of-type(even) .contentMenu-pageList__link {
    margin: 0 0 0 auto;
  }
}

.contentMenu-pageList__item--full {
  width: 100%;
}

.contentMenu-pageList__item.is-active .contentMenu-pageList__link {
  background-color: rgba(176, 168, 148, 0.2);
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__item:hover .contentMenu-pageList__link {
    background-color: rgba(176, 168, 148, 0.2);
  }
}

.contentMenu-pageList__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transition: background-color .8s ease-in-out;
  transition: background-color .8s ease-in-out;
  width: 100%;
  z-index: 1;
	 box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__link {
    padding: 20px 24px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList__link {
    padding: 20px 4px 20px 12px;
  }
}

.contentMenu-pageList__link:after {
  background-color: rgba(255, 255, 255, 0.1);
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.contentMenu-pageList__page {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contentMenu-pageList__page .new {
  background: -webkit-gradient(linear, left top, right top, from(#a08c6a), color-stop(50%, #c3ad8e), to(#8f7c5d));
  background: linear-gradient(90deg, #a08c6a 0%, #c3ad8e 50%, #8f7c5d 100%);
  color: #ffffff;
  display: none;
  font-family: "Cormorant Infant", serif;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  padding: 4px 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__page .new {
    margin-left: 10px;
    padding: 4px 10px;
    vertical-align: middle;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList__page .new {
    font-size: 10px;
    padding: 3px 4px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__item.is-new .contentMenu-pageList__page .new {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList__item.is-new .contentMenu-pageList__page .new {
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
  }
}

.contentMenu-pageList__page .ja {
  color: #d8ceb9;
  display: block;
  font-size: 12px;
  letter-spacing: .05em;
  line-height: 1.8;
}

.contentMenu-pageList__page .ja:before {
  content: '';
  margin-top: calc((1 - 1.8) * .5em);
}

.contentMenu-pageList__page .ja:after {
  margin-bottom: calc((1 - 1.8) * .5em);
}

.contentMenu-pageList__page .ja:before, .contentMenu-pageList__page .ja:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

.contentMenu-pageList__page .en {
  display: block;
  font-family: "Cinzel", serif;
  letter-spacing: .05em;
  position: relative;
  line-height: 1.1;
}

.contentMenu-pageList__page .en:before {
  content: '';
  margin-top: calc((1 - 1.1) * .5em);
}

.contentMenu-pageList__page .en:after {
  margin-bottom: calc((1 - 1.1) * .5em);
}

.contentMenu-pageList__page .en:before, .contentMenu-pageList__page .en:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__page .en {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList__page .en {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__page .en + .ja {
    margin-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList__page .en + .ja {
    margin-top: 12px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-pageList__arrow {
    width: 22px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-pageList__arrow {
    display: none;
  }
}

.contentMenu-pageList__arrow .arrowSVG {
  display: block;
  height: auto;
  width: 100%;
}

.contentMenu-specialList {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .contentMenu-specialList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-specialList {
    margin-top: 40px;
  }
}

.contentMenu-specialList__item {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .contentMenu-specialList__item {
    -webkit-transition: .3s;
    transition: .3s;
    width: 435px;
  }
  .contentMenu-specialList__item:hover {
    background-color: rgba(176, 168, 148, 0.2);
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-specialList__item:not(:first-child) {
    margin-top: 24px;
  }
}

.contentMenu-specialList__item.is-off {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .contentMenu-specialList__item.is-off {
    opacity: .4;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-specialList__item.is-off .contentMenu-dropdown {
    background: none;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-specialList__item.is-off .contentMenu-dropdown__link {
    opacity: .4;
  }
}

.contentMenu-specialList__item.is-off .contentMenu-dropdown__body {
  max-height: unset;
}

@media screen and (min-width: 768px) {
  .contentMenu-specialList__item.is-off .contentMenu-dropdown__body {
    opacity: .4;
  }
}

.contentMenu-specialList__item.is-off .statusIcon {
  display: none;
}

.contentMenu-specialList__item.is-off .statusIcon .inner {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.contentMenu-specialList__item.is-off .statusIcon .inner:before {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}

.contentMenu-specialList__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: .15;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contentMenu-specialList__link {
    font-size: 14px;
    line-height: 1.42857;
  }
  .contentMenu-specialList__link:before {
    content: '';
    margin-top: calc((1 - 1.42857) * .5em);
  }
  .contentMenu-specialList__link:after {
    margin-bottom: calc((1 - 1.42857) * .5em);
  }
  .contentMenu-specialList__link:before, .contentMenu-specialList__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-specialList__link {
    font-size: 12px;
    padding: 20px 0;
    line-height: 1.25;
  }
  .contentMenu-specialList__link:before {
    content: '';
    margin-top: calc((1 - 1.25) * .5em);
  }
  .contentMenu-specialList__link:after {
    margin-bottom: calc((1 - 1.25) * .5em);
  }
  .contentMenu-specialList__link:before, .contentMenu-specialList__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.contentMenu-dropdown {
  background: rgba(216, 206, 185, 0.2);
}

@media screen and (min-width: 768px) {
  .contentMenu-dropdown {
    border: 1px solid rgba(254, 253, 251, 0.2);
    padding: 0 24px;
  }
}

.contentMenu-dropdown__head {
  position: relative;
}

@media screen and (min-width: 768px) {
  .contentMenu-dropdown__head {
    padding: 24px 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-dropdown__head {
    border: 1px solid rgba(254, 253, 251, 0.2);
    padding: 12px 16px;
  }
}

.contentMenu-dropdown__head .statusIcon {
  border-left: 1px solid rgba(254, 253, 251, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .contentMenu-dropdown__head .statusIcon {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-dropdown__head .statusIcon {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 48px;
  }
}

.contentMenu-dropdown__head .statusIcon .inner {
  display: block;
  height: 15px;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  width: 15px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .contentMenu-dropdown__head .statusIcon .inner:before, .contentMenu-dropdown__head .statusIcon .inner:after {
    background-color: #666666;
    content: '';
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .contentMenu-dropdown__head .statusIcon .inner:before {
    height: 1px;
    width: 100%;
  }
  .contentMenu-dropdown__head .statusIcon .inner:after {
    height: 100%;
    width: 1px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-dropdown__head.is-active .statusIcon .inner {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .contentMenu-dropdown__head.is-active .statusIcon .inner:before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}

.contentMenu-dropdown__link {
  color: #ffffff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: .15em;
  width: auto;
}

@media screen and (min-width: 768px) {
  .contentMenu-dropdown__link {
    display: block;
    font-size: 14px;
    line-height: 1.42857;
  }
  .contentMenu-dropdown__link:before {
    content: '';
    margin-top: calc((1 - 1.42857) * .5em);
  }
  .contentMenu-dropdown__link:after {
    margin-bottom: calc((1 - 1.42857) * .5em);
  }
  .contentMenu-dropdown__link:before, .contentMenu-dropdown__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-dropdown__link {
    display: inline-block;
    font-size: 12px;
    line-height: 1.25;
  }
  .contentMenu-dropdown__link:before {
    content: '';
    margin-top: calc((1 - 1.25) * .5em);
  }
  .contentMenu-dropdown__link:after {
    margin-bottom: calc((1 - 1.25) * .5em);
  }
  .contentMenu-dropdown__link:before, .contentMenu-dropdown__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.contentMenu-dropdown__body {
  overflow: hidden;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

@media screen and (min-width: 768px) {
  .contentMenu-dropdown__body {
    padding: 0 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-dropdown__body {
    max-height: 0;
  }
}

.contentMenu-dropdown__body.is-open {
  max-height: 300px;
  -webkit-transition: .6s;
  transition: .6s;
}

.contentMenu-dropdown__txt {
  color: #d8ceb9;
  display: block;
  font-size: 12px;
  line-height: 1.66667;
}

.contentMenu-dropdown__txt:before {
  content: '';
  margin-top: calc((1 - 1.66667) * .5em);
}

.contentMenu-dropdown__txt:after {
  margin-bottom: calc((1 - 1.66667) * .5em);
}

.contentMenu-dropdown__txt:before, .contentMenu-dropdown__txt:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

@media screen and (min-width: 768px) {
  .contentMenu-dropdown__txt {
    letter-spacing: .15em;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-dropdown__txt {
    border-bottom: 1px solid rgba(254, 253, 251, 0.2);
    border-left: 1px solid rgba(254, 253, 251, 0.2);
    border-right: 1px solid rgba(254, 253, 251, 0.2);
    letter-spacing: .05em;
    padding: 20px 16px;
  }
}

.contentMenu-subNav {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .contentMenu-subNav {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-subNav {
    margin-top: 40px;
  }
}

.contentMenu-subNav__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contentMenu-subNav__link {
    font-size: 12px;
    letter-spacing: .04em;
    padding-left: 22px;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .contentMenu-subNav__link:not(:last-of-type) {
    margin-right: 40px;
  }
  .contentMenu-subNav__link:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-subNav__link {
    font-size: 10px;
    letter-spacing: .1em;
    line-height: 1.4;
  }
  .contentMenu-subNav__link:before {
    content: '';
    margin-top: calc((1 - 1.4) * .5em);
  }
  .contentMenu-subNav__link:after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .contentMenu-subNav__link:before, .contentMenu-subNav__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
  .contentMenu-subNav__link:not(:last-of-type) {
    margin-right: 60px;
  }
}

.contentMenu-subNav .svgIcon {
  height: auto;
}

@media screen and (min-width: 768px) {
  .contentMenu-subNav .svgIcon {
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 13px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-subNav .svgIcon {
    margin-right: 11.5px;
    width: 11px;
  }
}

.contentMenu-btnGroup {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .contentMenu-btnGroup {
    margin-top: 60px;
    gap: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-btnGroup {
    margin-top: calc(60 / 390 * 100vw);
    gap: calc(60 / 390 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-btnGroup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contentMenu-btnGroup__item {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .contentMenu-btnGroup__item {
    width: 470px;
  }
}

.contentMenu-btnGroup__ttl {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contentMenu-btnGroup__ttl {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-btnGroup__ttl {
    font-size: calc(24 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-btnGroup__ttl + .contentMenu-btnGroup__txt {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-btnGroup__ttl + .contentMenu-btnGroup__txt {
    margin-top: calc(14 / 390 * 100vw);
  }
}

.contentMenu-btnGroup__txt {
  letter-spacing: .1em;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .contentMenu-btnGroup__txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-btnGroup__txt {
    font-size: calc(14 / 390 * 100vw);
  }
}

.contentMenu-btnGroup .cvBtn--reserve,
.contentMenu-btnGroup .cvBtn--entry {
  max-width: unset;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contentMenu-btnGroup .cvBtn--reserve,
  .contentMenu-btnGroup .cvBtn--entry {
    margin-top: 10px;
    width: 470px;
    height: 78px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-btnGroup .cvBtn--reserve,
  .contentMenu-btnGroup .cvBtn--entry {
    margin-top: calc(14 / 390 * 100vw);
    height: calc(78 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-btnGroup .cvBtn--reserve .cvBtn__ttl,
  .contentMenu-btnGroup .cvBtn--entry .cvBtn__ttl {
    font-size: 20px;
  }
}

.contentMenu-btnGroup .cvBtn--reserve .cvBtn__arrow,
.contentMenu-btnGroup .cvBtn--entry .cvBtn__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translatY(-50%);
          transform: translatY(-50%);
}

@media screen and (min-width: 768px) {
  .contentMenu-btnGroup .cvBtn--reserve .cvBtn__arrow,
  .contentMenu-btnGroup .cvBtn--entry .cvBtn__arrow {
    right: 30px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-btnGroup .cvBtn--reserve .cvBtn__arrow,
  .contentMenu-btnGroup .cvBtn--entry .cvBtn__arrow {
    right: calc(30 / 390 * 100vw);
    width: calc(30 / 390 * 100vw);
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-limitedGroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 55px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-limitedGroup {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-express {
    width: 340px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-express:not(:last-of-type) {
    margin-right: 40px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-express:not(:last-of-type) {
    margin-bottom: 35px;
  }
}

.contentMenu-express__txt {
  letter-spacing: .06em;
}

@media screen and (min-width: 768px) {
  .contentMenu-express__txt {
    color: #333333;
    font-size: 10px;
    line-height: 1.6;
  }
  .contentMenu-express__txt:before {
    content: '';
    margin-top: calc((1 - 1.6) * .5em);
  }
  .contentMenu-express__txt:after {
    margin-bottom: calc((1 - 1.6) * .5em);
  }
  .contentMenu-express__txt:before, .contentMenu-express__txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-express__txt {
    color: #666666;
    font-size: 11px;
    line-height: 1.54545;
  }
  .contentMenu-express__txt:before {
    content: '';
    margin-top: calc((1 - 1.54545) * .5em);
  }
  .contentMenu-express__txt:after {
    margin-bottom: calc((1 - 1.54545) * .5em);
  }
  .contentMenu-express__txt:before, .contentMenu-express__txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-express__txt + .contentMenu-expressBtn {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-express__txt + .contentMenu-expressBtn {
    margin-top: 10px;
  }
}

.contentMenu-expressBtn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contentMenu-expressBtn {
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-expressBtn {
    height: 50px;
  }
}

.contentMenu-expressBtn__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contentMenu-expressBtn__link {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 1;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .contentMenu-expressBtn__link:hover {
    background-color: #333333;
    color: #ffffff;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-expressBtn__link {
    font-size: 12px;
  }
}

.contentMenu-expressBtn__link:after {
  content: '＞';
  line-height: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%) scale(0.6, 1);
          transform: translate(0, -50%) scale(0.6, 1);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

@media screen and (min-width: 768px) {
  .contentMenu-expressBtn__link:after {
    font-size: 14px;
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-expressBtn__link:after {
    font-size: 9px;
    right: 15px;
  }
}

.contentMenu-expressBtn__link .svgIcon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .contentMenu-expressBtn__link .svgIcon {
    left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-expressBtn__link .svgIcon {
    left: 26.5px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-expressBtn__link .svgIcon--limited {
    width: 14px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-expressBtn__link .svgIcon--limited {
    width: 11px;
  }
}

.contentMenu-external {
  background-color: #222222;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .contentMenu-external {
    margin-top: 60px;
    padding: 40px 0 92px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-external {
    margin: 40px -20px 0;
  }
}

.contentMenu-external:before {
  background: -webkit-gradient(linear, left top, right top, from(#a08c6a), color-stop(52%, #c3ad8e), color-stop(50%, #8f7c5d));
  background: linear-gradient(to right, #a08c6a, #c3ad8e 52%, #8f7c5d 50%);
  content: '';
  display: block;
  height: 1px;
  left: 0;
  opacity: .3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .contentMenu-external__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    max-width: 1204px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-external__inner {
    padding: 40px 20px 120px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-external .contentMenu-btn {
    height: 60px;
    -webkit-transition: .3s;
    transition: .3s;
    width: 340px;
  }
  .contentMenu-external .contentMenu-btn:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-external .contentMenu-btn {
    height: 50px;
    width: 100%;
  }
}

.contentMenu-external .contentMenu-btn__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(254, 253, 251, 0.2);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contentMenu-external .contentMenu-btn__link {
    font-size: 12px;
    letter-spacing: .06em;
    line-height: 1.5;
  }
  .contentMenu-external .contentMenu-btn__link:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .contentMenu-external .contentMenu-btn__link:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .contentMenu-external .contentMenu-btn__link:before, .contentMenu-external .contentMenu-btn__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-external .contentMenu-btn__link {
    font-size: 12px;
    line-height: 1.25;
  }
  .contentMenu-external .contentMenu-btn__link:before {
    content: '';
    margin-top: calc((1 - 1.25) * .5em);
  }
  .contentMenu-external .contentMenu-btn__link:after {
    margin-bottom: calc((1 - 1.25) * .5em);
  }
  .contentMenu-external .contentMenu-btn__link:before, .contentMenu-external .contentMenu-btn__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.contentMenu-external .contentMenu-btn__link .svgIcon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .contentMenu-external .contentMenu-btn__link .svgIcon {
    left: 28px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-external .contentMenu-btn__link .svgIcon {
    left: 12px;
  }
}

.contentMenu-external .contentMenu-btn__link .svgIcon__path {
  fill: none;
  fill-rule: evenodd;
  stroke: #ffffff;
  stroke-width: 1px;
}

@media screen and (min-width: 768px) {
  .contentMenu-external .contentMenu-btn__link .svgIcon--external {
    width: 16px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-external .contentMenu-btn__link .svgIcon--external {
    width: 12px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-residenceList {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-residenceList {
    margin-top: 27.5px;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-residenceList__item {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .contentMenu-residenceList__item:nth-of-type(n + 3) {
    margin-top: 18px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-residenceList__item:not(:last-of-type) {
    margin-bottom: 25px;
  }
}

.contentMenu-residenceList__link {
  color: #ffffff;
  display: block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contentMenu-residenceList__link {
    font-size: 12px;
    letter-spacing: 0;
    padding-left: 30px;
    -webkit-transition: .3s;
    transition: .3s;
    line-height: 1.5;
  }
  .contentMenu-residenceList__link:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .contentMenu-residenceList__link:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .contentMenu-residenceList__link:before, .contentMenu-residenceList__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
  .contentMenu-residenceList__link:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-residenceList__link {
    font-size: 10px;
    padding-left: 22.5px;
    line-height: 1.4;
  }
  .contentMenu-residenceList__link:before {
    content: '';
    margin-top: calc((1 - 1.4) * .5em);
  }
  .contentMenu-residenceList__link:after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .contentMenu-residenceList__link:before, .contentMenu-residenceList__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.contentMenu-residenceList__link .svgIcon {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}

.contentMenu-residenceList__link .svgIcon__path {
  fill: none;
  fill-rule: evenodd;
  stroke: #ffffff;
  stroke-width: 1px;
}

@media screen and (min-width: 768px) {
  .contentMenu-residenceList__link .svgIcon--external {
    width: 18px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu-residenceList__link .svgIcon--external {
    width: 12px;
  }
}

.cvMenu {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.cvMenu__content {
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100%;
}

.cvMenu__inner {
  height: 100%;
  overflow: scroll;
  position: absolute;
  width: 100%;
  z-index: 6;
}

.cvMenu__inner::-webkit-scrollbar {
  display: none;
}

.cvMenu__close {
  background: none;
  border: none;
  cursor: pointer;
  height: 14.5px;
  padding: 0;
  position: absolute;
  z-index: 9;
}

@media screen and (min-width: 768px) {
  .cvMenu__close {
    height: 17px;
    right: 40px;
    top: 90px;
    width: 30px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu__close {
    height: 14.5px;
    right: 20px;
    top: 60px;
    width: 24.5px;
  }
}

.cvMenu__close:before, .cvMenu__close:after {
  background-color: #ffffff;
  content: '';
  height: 1px;
  position: absolute;
  top: 0;
  width: calc(56% / 49 * 100);
}

.cvMenu__close:before {
  left: 0;
  -webkit-transform: rotate(30.6deg);
          transform: rotate(30.6deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.cvMenu__close:after {
  right: 0;
  -webkit-transform: rotate(-30.6deg);
          transform: rotate(-30.6deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.cvMenu__close:focus:not(:focus-visible) {
  outline: 0;
}

.cvMenu {
  pointer-events: none;
}

.cvMenu__content {
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  -webkit-transition: .6s;
  transition: .6s;
  visibility: hidden;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
          transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}

.cvMenu__inner {
  background-color: #ffffff;
}

.cvMenu.is-visible {
  pointer-events: auto;
}

.cvMenu.is-visible:before {
  opacity: 1;
}

.cvMenu.is-visible .cvMenu__content {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}

.cvMenu .mansionSymbol {
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  visibility: hidden;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
          transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}

.cvMenu.is-visible .mansionSymbol {
  opacity: 1;
  -webkit-transition-duration: 1.8s;
          transition-duration: 1.8s;
  visibility: visible;
}

.cvMenu-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  z-index: 9993;
}

@media screen and (min-width: 768px) {
  .cvMenu-menu {
    height: 30px;
    right: 40px;
    top: 40px;
    width: 50px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-menu {
    height: 15px;
    right: 20px;
    top: 20px;
    width: 26px;
  }
}

@media only screen and (max-width: 320px) {
  .cvMenu-menu {
    height: 15px;
    right: 20px;
    top: 20px;
    width: 26px;
  }
}

.cvMenu-menu:before {
  content: '';
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s;
  transition: .3s;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .cvMenu-menu:before {
    height: 70px;
    width: 70px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-menu:before {
    height: 35px;
    width: 35px;
  }
}

.cvMenu-menu__line {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cvMenu-menu__line {
    height: 2px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-menu__line {
    height: 1px;
  }
}

.cvMenu-menu.is-mod:before {
  opacity: 1;
}

.cvMenu-menu.is-mod.is-active:before {
  opacity: 0;
}

.cvMenu-bnrArea {
  background-color: #7a6a56;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrArea {
    padding: 190px 0 150px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-bnrArea {
    padding: 120px 20px 120px;
  }
}

.cvMenu-bnrArea:before {
  border: 1px solid #d8ceb9;
  content: '';
  display: block;
  left: 50%;
  opacity: .5;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrArea:before {
    height: calc(100% - 10px);
    width: calc(100% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-bnrArea:before {
    height: calc(100% - 4px);
    width: calc(100% - 4px);
  }
}

.cvMenu-bnrArea__inner {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrGroup--main {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrGroup--main .cvMenu-bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(50% - 30px);
  }
}

.cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn {
  margin-top: 20px;
}

.cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn__link {
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
  transition: -webkit-box-shadow 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
  transition: box-shadow 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
  transition: box-shadow 0.8s cubic-bezier(0.6, 0.1, 0.36, 1), -webkit-box-shadow 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
}

.cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn__link:before {
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  content: '';
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  -webkit-transition: left 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
  transition: left 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
  width: 100%;
  will-change: left;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn__link:hover {
    -webkit-box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
  }
  .cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn__link:hover:before {
    left: 100%;
    top: 0;
  }
  .cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn__link:hover .cvMenu-btn__arrow {
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
  }
}

@media (hover: hover) and (pointer: fine) {
  .cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn__link:hover {
    -webkit-box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
  }
  .cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn__link:hover:before {
    left: 100%;
    top: 0;
  }
  .cvMenu-bnrGroup--main .cvMenu-bnr .cvMenu-btn__link:hover .cvMenu-btn__arrow {
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
  }
}

.cvMenu-bnrGroup--main .cvMenu-bnr--reserve .cvMenu-btn__link {
  background: -webkit-gradient(linear, left top, right top, from(#956C08), color-stop(30%, #B39031), to(#956C08));
  background: linear-gradient(90deg, #956C08 0%, #B39031 30%, #956C08 100%);
}

.cvMenu-bnrGroup--main .cvMenu-bnr--reserve .cvMenu-btn__link .svgIcon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.cvMenu-bnrGroup--main .cvMenu-bnr--reserve .cvMenu-btn__txt {
  color: #ffffff;
}

.cvMenu-bnrGroup--main .cvMenu-bnr--reserve .cvMenu-btn__arrow .arrowSVG__path {
  fill: #ffffff;
}

.cvMenu-bnrGroup--tel {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrGroup--tel {
    margin-top: 64px;
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-bnrGroup--tel {
    margin-top: 40px;
    padding-top: 40px;
  }
}

.cvMenu-bnrGroup--tel:before {
  background-color: #cdbe9e;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.cvMenu-bnrGroup--tel .cvMenu-bnr {
  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;
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrGroup--tel .cvMenu-bnr {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-bnrGroup--tel .cvMenu-bnr {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.cvMenu-bnrGroup--tel .cvMenu-bnr__txt {
  color: #ebebeb;
  letter-spacing: .05em;
  line-height: 1.8;
}

.cvMenu-bnrGroup--tel .cvMenu-bnr__txt:before {
  content: '';
  margin-top: calc((1 - 1.8) * .5em);
}

.cvMenu-bnrGroup--tel .cvMenu-bnr__txt:after {
  margin-bottom: calc((1 - 1.8) * .5em);
}

.cvMenu-bnrGroup--tel .cvMenu-bnr__txt:before, .cvMenu-bnrGroup--tel .cvMenu-bnr__txt:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrGroup--tel .cvMenu-bnr__txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-bnrGroup--tel .cvMenu-bnr__txt {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-bnrGroup--tel .cvMenu-bnr .cvMenu-btn {
    margin-left: 80px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-bnrGroup--tel .cvMenu-bnr .cvMenu-btn {
    margin-top: 12px;
  }
}

.cvMenu-bnrGroup--tel .cvMenu-bnr .cvMenu-btn__link {
  gap: 0;
}

@media screen and (max-width: 768px) {
  .cvMenu-bnr:not(:last-of-type) {
    margin-bottom: 60px;
  }
}

.cvMenu-bnr__txt {
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 1.8;
}

.cvMenu-bnr__txt:before {
  content: '';
  margin-top: calc((1 - 1.8) * .5em);
}

.cvMenu-bnr__txt:after {
  margin-bottom: calc((1 - 1.8) * .5em);
}

.cvMenu-bnr__txt:before, .cvMenu-bnr__txt:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

@media screen and (max-width: 768px) {
  .cvMenu-bnr__txt + .cvMenu-btn {
    margin-top: 20px;
  }
}

.cvMenu-btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cvMenu-btn {
    height: 100px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn {
    height: 80px;
  }
}

.cvMenu-btn__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#c8bb9b), color-stop(30%, #d7d1c3), to(#c8bb9b));
  background: linear-gradient(90deg, #c8bb9b 0%, #d7d1c3 30%, #c8bb9b 100%);
  color: #504e4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .cvMenu-btn__link {
    padding: 32px 40px;
    -webkit-transition: .3s;
    transition: .3s;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn__link {
    padding: 32px 20px;
  }
}

.cvMenu-btn__link .svgIcon__path {
  fill: none;
  stroke: #ffffff;
}

.cvMenu-btn__link .svgIcon--tel {
  height: auto;
  margin-right: 12px;
}


@media screen and (min-width: 768px) {
  .cvMenu-btn__link .svgIcon--tel {
    width: 24px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn__link .svgIcon--tel {
    width: 16px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-btn__link .svgIcon--request {
    width: 36px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn__link .svgIcon--request {
    width: 31px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-btn__link .svgIcon--entry {
    width: 32px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn__link .svgIcon--entry {
    width: 21px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-btn__link .svgIcon--online {
    width: 40px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn__link .svgIcon--online {
    width: 32px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-btn__link .svgIcon--reserve {
    width: 36px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn__link .svgIcon--reserve {
    width: 31px;
  }
}

.cvMenu-btn__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.6, 0.1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.6, 0.1, 0.36, 1);
}

@media screen and (min-width: 768px) {
  .cvMenu-btn__arrow {
    right: 40px;
    width: 32px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn__arrow {
    right: 20px;
    width: 24px;
  }
}

.cvMenu-btn__arrow .arrowSVG {
  display: block;
  height: auto;
  width: 100%;
}

.cvMenu-btn__txt {
  letter-spacing: .05em;
  line-height: 1.8;
}

.cvMenu-btn__txt:before {
  content: '';
  margin-top: calc((1 - 1.8) * .5em);
}

.cvMenu-btn__txt:after {
  margin-bottom: calc((1 - 1.8) * .5em);
}

.cvMenu-btn__txt:before, .cvMenu-btn__txt:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

@media screen and (min-width: 768px) {
  .cvMenu-btn__txt {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn__txt {
    font-size: 16px;
  }
}

.cvMenu-btn--tel {
  display: block;
  height: auto;
  width: auto;
}

.cvMenu-btn--tel .cvMenu-btn__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  color: #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Cormorant Infant", serif;
  padding: 0;
  line-height: 1.07692;
}

.cvMenu-btn--tel .cvMenu-btn__link:before {
  content: '';
  margin-top: calc((1 - 1.07692) * .5em);
}

.cvMenu-btn--tel .cvMenu-btn__link:after {
  margin-bottom: calc((1 - 1.07692) * .5em);
}

.cvMenu-btn--tel .cvMenu-btn__link:before, .cvMenu-btn--tel .cvMenu-btn__link:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

@media screen and (min-width: 768px) {
  .cvMenu-btn--tel .cvMenu-btn__link {
    font-size: 36px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    letter-spacing: .15em;
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn--tel .cvMenu-btn__link {
    font-size: 20px;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: .15em;
  }
}

.cvMenu-btn--tel .cvMenu-btn__schedule {
  letter-spacing: .15em;
}

@media screen and (min-width: 768px) {
  .cvMenu-btn--tel .cvMenu-btn__schedule {
    line-height: 1.6;
    font-size: 11px;
    margin-top: 5px;
  }
  .cvMenu-btn--tel .cvMenu-btn__schedule:before {
    content: '';
    margin-top: calc((1 - 1.6) * .5em);
  }
  .cvMenu-btn--tel .cvMenu-btn__schedule:after {
    margin-bottom: calc((1 - 1.6) * .5em);
  }
  .cvMenu-btn--tel .cvMenu-btn__schedule:before, .cvMenu-btn--tel .cvMenu-btn__schedule:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-btn--tel .cvMenu-btn__schedule {
    font-size: 10px;
    margin-top: 20px;
    text-align: center;
    line-height: 1.5;
  }
  .cvMenu-btn--tel .cvMenu-btn__schedule:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .cvMenu-btn--tel .cvMenu-btn__schedule:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .cvMenu-btn--tel .cvMenu-btn__schedule:before, .cvMenu-btn--tel .cvMenu-btn__schedule:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.cvMenu-corporateArea {
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateArea {
    padding: 60px 20px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateArea {
    padding: 77.5px 40px 150px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateArea__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateArea--noColumn .cvMenu-corporateArea__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cvMenu-corporateArea--noColumn .cvMenu-corporateBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cvMenu-corporateArea--noColumn .cvMenu-corporateBlock .cvMenu-corporateList {
    margin-left: 60px;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateBlock {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateBlock:not(:last-of-type) {
    margin-right: 70px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateBlock:not(:last-of-type) {
    margin-bottom: 55px;
  }
}

.cvMenu-corporateLogo__link {
  display: block;
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateLogo__image--mitsubishi {
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateLogo__image--mitsubishi {
    width: 148px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateLogo__image--mitsubishisoko {
    width: 125px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateLogo__image--mitsubishisoko {
    width: 84.5px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateLogo__image--daiei {
    width: 144px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateLogo__image--daiei {
    width: 104px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateLogo + .cvMenu-corporateList {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateLogo + .cvMenu-corporateList {
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateList__item {
    width: 215px;
  }
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateList__item:not(:last-of-type) {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateList__item:not(:last-of-type) {
    margin-bottom: 25px;
  }
}

.cvMenu-corporateList__link {
  display: block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateList__link {
    font-size: 10px;
    letter-spacing: .04em;
    padding-left: 25px;
    -webkit-transition: .3s;
    transition: .3s;
    line-height: 1.8;
  }
  .cvMenu-corporateList__link:before {
    content: '';
    margin-top: calc((1 - 1.8) * .5em);
  }
  .cvMenu-corporateList__link:after {
    margin-bottom: calc((1 - 1.8) * .5em);
  }
  .cvMenu-corporateList__link:before, .cvMenu-corporateList__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
  .cvMenu-corporateList__link:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateList__link {
    font-size: 10px;
    padding-left: 20px;
    line-height: 1.4;
  }
  .cvMenu-corporateList__link:before {
    content: '';
    margin-top: calc((1 - 1.4) * .5em);
  }
  .cvMenu-corporateList__link:after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .cvMenu-corporateList__link:before, .cvMenu-corporateList__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.cvMenu-corporateList__link .svgIcon {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.cvMenu-corporateList__link .svgIcon__path {
  fill: none;
  fill-rule: evenodd;
  stroke: #666666;
  stroke-width: 1px;
}

@media screen and (min-width: 768px) {
  .cvMenu-corporateList__link .svgIcon--external {
    width: 18px;
  }
}

@media screen and (max-width: 768px) {
  .cvMenu-corporateList__link .svgIcon--external {
    width: 12px;
  }
}

#sineCanvas2 {
  opacity: 1;
}

#gFooter {
  font-family: "源ノ明朝", serif;
}

#gFooter img {
  max-width: 100%;
}

#gFooter .meiwaLink {
  margin-top: 0;
  border-top: 1px solid #e1e1e1;
  margin-bottom: 0;
}

#gFooter .meiwaLink li {
  border: 1px solid #e1e1e1;
  border-width: 0 0 1px 0;
  width: 100%;
}

#gFooter .ftrCompanyLink {
  text-align: center;
  padding: 20px 10px 0;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 0;
}

#gFooter .ftrCompanyLink .companyLink {
  position: static;
  margin-top: 20px;
}

#gFooter .ftrCompanyLink .companyLink li {
  float: none;
  margin: 10px 0;
}

#gFooter .ftrCopy {
  text-align: center;
}

.kusitu_btn p.btn_under {
  width: 300px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
}

a.anchor {
  display: block;
  margin-top: 70px;
}

.kusitu_btn {
  width: 300px;
  margin: 40px auto;
}

.kusitu_btn .button01 {
  display: block;
  width: 300px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  background-color: #d7005b;
  color: #fff;
}

.kusitu_btn .button01:hover {
  background-color: #333;
}

.kusitu_btn .button01::before,
.kusitu_btn .button01::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.kusitu_btn .button01,
.kusitu_btn .button01::before,
.kusitu_btn .button01::after {
  box-sizing: border-box;
  transition: all 0.3s;
}

/* footer */
#footer {
  width: 100%;
  height: auto;
  background-color: #002339;
  margin-top: 40px;
}

#footer .footer_nav {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}

#footer .footer_nav li {
  display: inline-block;
  padding: 5px;
  font-size: 12px;
  color: #fff;
}

#footer .footer_nav li a {
  color: #fff;
  transition: all 0.3s ease;
}

#footer .footer_nav li a:hover {
  color: #9c7d42;
}

#footer .comapny {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 50px;
  text-align: center;
}

#footer .comapny .left {
  margin-left: 10px;
  display: inline-block;
}

#footer .comapny .right {
  color: #fff;
  font-size: 10px;
  margin-right: 10px;
}

/*==================================================================================
 pc / tablet / sp media
==================================================================================*/
@media screen and (min-width: 1025px) {
  .site-header .tools li.links {
    padding-top: 5px;
  }

  .site-header .tools li.links > div {
    line-height: 1;
  }

  .site-header .tools li.links > div:first-child {
    padding-bottom: 5px;
  }

  .site-header .title01 {
    display: none;
  }

  .site-header .title02 {
    display: inline-block;
    padding: 10px 0 0 40px;
    height: 100px;
    width: 340px;
  }

  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    padding-bottom: 105px;
  }

  .site-footer .btns {
    display: none;
  }

  .site-footer .infoes .bg {
    display: block;
    position: relative;
    padding-bottom: 430px;
    background: url("./imgs/top/footer-bg.jpg") no-repeat top center;
    background-size: cover;
  }

  .site-footer .infoes .bg .caption {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 105px;
    line-height: 20px;
    background: rgba(43, 43, 43, 0.74);
    text-align: center;
  }

  .site-footer .contact .num {
    pointer-events: none;
  }

  .site-footer .foot-navi {
    text-align: center;
    border-top: none;
    padding: 10px 0 4px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e3e3e3;
    font-feature-settings: normal;
  }

  .site-footer .foot-navi ul {
    margin: 0 auto;
    padding: 11px 0 13px;
    max-width: 1000px;
  }

  .site-footer .foot-navi ul li {
    position: relative;
    display: inline-block;
    padding-right: 18px;
    font-size: 10px;
    letter-spacing: 0;
  }

  .site-footer .foot-navi ul li:last-child {
    padding-right: 0;
  }

  .site-footer .foot-navi ul li.pc {
    display: inline-block !important;
  }

  .site-footer .foot-navi ul li a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-size: 10px;
    padding-bottom: 3px;
  }

  .site-footer .contact .number span.pc {
    display: inline-block !important;
  }

  .sp-navi {
    display: none !important;
  }

  body > .app-bnr {
    display: none !important;
  }

  .commonButton02 a:hover,
  .commonButton02 span:hover {
    letter-spacing: 2px;
    color: #3c4048;
  }

  .commonButton02 a:hover:after,
  .commonButton02 span:hover:after {
    left: 100%;
  }

  .commonButton02.pattern02:hover {
    border-color: transparent;
  }

  .commonButton02.pattern02 a:hover:after,
  .commonButton02.pattern02 span:hover:after {
    right: 0;
  }

  .commonCircleButton01 a:hover circle {
    stroke-dasharray: 0 1000;
  }

  .commonCircleButton01 a:hover .arrowArea:before {
    transform: translateX(200%);
  }

  .commonCircleButton01 a:hover .arrowArea:after {
    transform: translateX(0);
  }

  .footer-contact {
    padding: 75px 80px 80px;
    text-align: center;
  }

  .footer-contact__title {
    font-size: 16px;
    letter-spacing: 0.15em;
    line-height:2;
	  color: #000000;
	  padding-bottom: 50px;
  }

  .footer-contact__tel {
    align-items: center;
    font-size: 26px;
    justify-content: center;
    margin-top: 80px;
    pointer-events: none;
	  color: #000000!important;
  }

  .footer-contact__tel img {
    margin-right: 14px;
    width: 16px;
  }

  .footer-contact__schedule {
    line-height: 1.6;
    font-size: 16px;
    margin-top: 30px;
	  color: #000000;
  }

  .footer-contact__closed {
    line-height: 1.6;
    font-size: 10px;
    margin-top: 20px;
  }

  .footer-landline {
    margin-top: 65px;
  }

  .footer-landline__txt {
    font-size: 10px;
    letter-spacing: 0.15em;
    line-height: 1.6;
  }

  .footer-landline__tel {
    font-size: 20px;
    margin-top: 5px;
    pointer-events: none;
    line-height: 1.5;
  }

  .footer-subNav {
    margin-top: 75px;
  }

  .footer-subNav__link {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.1em;
    padding-left: 20px;
    transition: 0.3s;
    line-height: 1.5;
  }

  .footer-subNav__link:hover {
    opacity: 0.7;
  }

  .footer-subNav__link:not(:last-of-type) {
    margin-right: 35px;
  }

  .footer-subNav__icon {
    width: 11px;
  }

  .mapBlock {
    height: 720px;
  }

  .mapBlock .mapWindow {
    font-size: 13px;
  }

  .mapBlock .centerLabel__logo {
    height: 45px;
    margin-top: 10px;
    width: 68px;
  }

  .mapBtn + .mapBlock {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1024px) {
  main {
    margin-top: 0;
  }

  main img {
    width: 100%;
    height: auto;
  }

  main .wrap {
    width: 94%;
  }

  .printBtn {
    display: none !important;
  }

  .commonBannerArea {
    padding: 50px 0;
  }

  .content {
    padding-top: 92px;
  }

  .site-header .tools li.request:after,
  .site-header .title02,
  .site-header .tools li.reserve:after {
    display: none;
  }

  .pc-menu {
    top: 0;
    right: 0;
  }

  .site-header {
    position: fixed;
    height: 92px;
    border-bottom: 1px solid #cbcbcb;
    background-color: #fff;
    z-index: 99999;
  }

  .site-header .title {
    padding: 8px 10px 0;
    text-align: center;
  }

  .site-header .title .placeName {
    padding-bottom: 0;
    position: inherit;
    display: inline-block;
    width: auto;
    height: 52px;
  }

  .site-header .title img {
    display: block;
    margin: 0 auto 10px;
    max-width: 100%;
    height: 20px;
  }

  .site-header .text {
    display: none;
  }

  .site-header .tools {
    position: static;
  }

  .site-header .tools li img {
    display: none;
  }

  .site-header .tools .sp-navi li img {
    display: inline-block;
    width: auto;
  }

  .site-header .tools .sp-navi li.top img,
  .site-header .tools .sp-navi li.concept img,
  .site-header .tools .sp-navi li.equipment img,
  .site-header .tools .sp-navi li.structure img,
  .site-header .tools .sp-navi li.plan img,
  .site-header .tools .sp-navi li.outline img,
  .site-header .tools .btns li.request img,
  .site-header .tools .btns li.reserve img {
    height: 11px;
  }

  .site-header .tools .sp-navi li.design img { height: 12px; }
  .site-header .tools .sp-navi li.location img,
  .site-header .tools .sp-navi li.access img,
  .site-header .tools .sp-navi li.select img { height: 10px; }

  .site-header .menu-button {
    display: block;
  }

  .site-header .tools-base {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    z-index: 200;
  }

  .site-header .tools {
    position: absolute;
    top: auto !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 150;
    transition: opacity 0.9s;
    opacity: 0;
  }

  .site-header .tools.fadeIn {
    opacity: 1;
  }

  .site-header .tools.fixed {
    position: fixed;
  }

  .site-header .tools li {
    width: 20%;
    box-sizing: border-box;
    text-align: center;
    margin: 0;
  }

  .site-header .tools .head-btns li {
    border: none;
  }

  .site-header .tools .head-btns li.sp {
    display: block !important;
  }

  .site-header .tools li.links {
    padding-right: 0;
    text-align: center;
  }

  .site-header .tools li div.outline,
  .site-header .tools .head-btns li.webReserveBtn {
    display: none !important;
  }

  .site-header .tools .head-btns li a {
    box-sizing: border-box;
    display: block;
    width: auto;
    height: 75px;
    padding: 9px 0 6px !important;
    border: none;
    line-height: 1;
    text-indent: -10000px;
    font-size: 0;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 60px;
    overflow: hidden;
  }

  .site-header .tools li.menu-button.on {
    position: relative;
  }

  .site-header .tools li.menu-button.on:after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(#ad9a03, #6a5c34);
  }

  .site-header .tools li.menu-button.on a {
    position: relative;
    background-color: transparent;
    z-index: 1;
  }

  .site-header .tools li.links a {
    display: block;
    margin-top: 0;
    font-size: 0;
    text-indent: -10000px;
    background-image: url("./imgs/top/hdr-sp-map.png");
  }

  .site-header .tools .head-btns li.requestBtn a {
    background-image: url("./imgs/top/hdr-sp-request.png");
  }

  .site-header .tools .head-btns li.reserveBtn a {
    background-image: url("./imgs/top/hdr-sp-reserve.png");
  }

  .site-header .tools li.tel a {
    background-image: url("./imgs/top/hdr-sp-tell.png");
  }

  .site-header .tools li.menu-button a {
    background-image: url("./imgs/top/hdr-sp-menu.png");
  }

  .site-header .tools li.menu-button.on a {
    background-image: url("./imgs/top/hdr-sp-close.png");
  }

  .site-header .tools .sp-navi ul {
    margin-top: -1px;
    border-top: 1px solid #cacbcf;
  }

  .site-header .tools .sp-navi li {
    width: 100%;
    border-bottom: 1px solid #cacbcf;
  }

  .site-header .tools .sp-navi li:not(:first-child) {
    float: left;
    width: 50%;
  }

  .site-header .tools .head-btns {
    position: relative;
    z-index: 20;
    background: #fff;
  }

  .sp-navi a {
    display: block;
    padding: 16px 10px;
    color: #1a0f08;
  }

  .commonButton01 a {
    padding: 20px 20px;
  }

  .sp-navi .commonButton01 a {
    color: #fff;
    border-color: #fff;
    background: #39465c;
    position: relative;
  }

  .sp-navi .commonButton01 a::after,
  .sp-navi .commonButton01 a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 35px;
    height: 1px;
    background-color: #fff;
  }

  .sp-navi .commonButton01 a::after {
    display: none;
  }

  .sp-navi .reserveBtn a {
    background-color: #564e4b;
  }

  .sp-navi .webReserveBtn a {
    background-color: #c8a57c;
  }

  .site-header .tools .sp-navi .btns {
    clear: both;
    margin: 0 auto;
    padding: 15px 0;
    width: 70%;
    border: none;
    background: none;
  }

  .site-header .tools .sp-navi .btns li {
    float: none;
    clear: both;
    margin: 0 auto;
    padding-bottom: 10px;
    border: none;
    width: auto;
    text-align: center;
    line-height: 0;
  }

  .site-header .tools .sp-navi .btns li:last-child {
    padding-bottom: 0;
  }

  .site-header .tools .sp-navi .btns li a {
    display: block;
    box-sizing: border-box;
    width: auto;
    color: #fff;
  }

  .site-header .head-btns .requestBtn a,
  .site-header .head-btns .reserveBtn a {
    background-color: transparent;
  }

  .site-header .head-btns .requestBtn a:after,
  .site-header .head-btns .reserveBtn a:after {
    display: none !important;
  }

  .site-header .tools .sp-navi .btns a:before {
    background: none;
  }

  .site-footer .contact ul {
    width: 400px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .site-footer .contact .businessHours {
    float: none;
    text-align: center;
    padding-bottom: 10px;
  }

  .site-footer .contact ul li.logoo {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
  }

  .site-footer .contact ul li.logoo img {
    width: 60%;
  }

  .site-footer .infoes {
    margin-bottom: 0;
    text-align: center;
    padding-top: 10px;
  }

  .site-footer .infoes .infoes-base {
    height: auto;
    background: none;
  }

  .site-footer .infoes .links {
    display: none;
  }

  .site-footer .infoes .btns {
    float: none;
    margin: 0 auto;
    padding-top: 0;
    width: 70%;
  }

  .site-footer .infoes .btns li {
    float: none;
    margin-right: 0 !important;
  }

  .site-footer .infoes .btns li a {
    border: none;
    display: block;
    width: auto;
    background: linear-gradient(90deg, #a28d56, #a28d56);
    position: relative;
  }

  .site-footer .infoes .btns li a::after,
  .site-footer .infoes .btns li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 1px;
    background-color: #fff;
  }

  .site-footer .infoes .btns li a::after {
    left: auto;
    transform: translateY(-50%) rotate(90deg);
  }

  .site-footer .infoes .btns li a:hover {
    opacity: 1 !important;
    color: #fff;
  }

  .site-footer .infoes .base {
    position: static !important;
    background: none;
  }

  .site-footer .infoes .contact,
  .site-footer .contact {
    float: none;
    clear: both;
    width: 100%;
    text-align: center;
  }

  .site-footer .infoes .contact .title {
    float: none;
    width: auto;
    line-height: 1.4;
  }

  .site-footer .infoes .contact .title img {
    margin-bottom: 0;
  }

  .site-footer .infoes .contact .businessHours {
    padding-top: 0;
    float: none;
    width: auto;
  }

  .site-footer .infoes .contact .businessHours span.sp {
    display: inline !important;
  }

  .site-footer .infoes .contact .businessHours br {
    display: none;
  }

  .site-footer .contact .businessHours img {
    margin: 0 auto;
    height: auto;
  }



  .site-footer .btns {
    padding-bottom: 30px;
  }

  .site-footer .btns li {
    float: none;
    width: auto;
    height: auto;
  }

  .site-footer .btns li:not(:last-child) {
    margin-bottom: 10px;
    padding: 0;
  }

  .site-footer .btns li img {
    margin: 0 0 0 auto;
  }

  .site-footer .contact .title {
    padding-bottom: 10px;
  }

  .site-footer .contact .title .pc {
    display: none !important;
  }

  .site-footer .contact .title .sp {
    display: block !important;
  }

  .site-footer .contact .number {
    float: none;
    clear: both;
    padding: 0 0 10px;
    position: relative;
    font-size: 36px;
  }

  .site-footer .contact .number a {
    pointer-events: fill;
    box-sizing: border-box;
    padding: 18px 0 18px 28px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    background: #212933;
  }

  .site-footer .contact .number a .sp {
    display: inline-block !important;
    width: auto;
  }

  .site-footer .contact .number a:before {
    left: 50%;
    margin: -14px 0 0 -110px;
    width: 28px;
    height: 27px;
    background-image: url("./imgs/top/icon_tel.png");
    background-size: 100% auto;
  }

  .site-footer .copyright {
    text-align: center;
  }

  .site-footer .copyright p {
    width: 94%;
  }

  .site-footer .copyright img.sp {
    display: inline-block !important;
  }


  .site-footer {
    padding-bottom: 60px;
  }

  .site-footer .infoes-base .base {
    opacity: 1 !important;
  }





  .site-footer .clioNav {
    width: auto;
    padding-bottom: 20px;
  }

  .site-footer .clioNav .insta {
    max-width: 330px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .site-footer .clioNav li {
    float: none;
    clear: both;
    padding: 0;
    width: auto;
    border-bottom: 1px solid #e2e2e2;
  }

  .site-footer .clioNav li a {
    display: block;
    padding: 10px 0;
  }

  .site-footer .logoArea {
    padding-bottom: 21px;
    width: auto;
    text-align: center;
  }

  .site-footer .logoArea .statement,
  .site-footer .logoArea ul {
    float: none;
    clear: both;
    margin: 0 auto;
    text-align: center;
  }

  .site-footer .logoArea .statement {
    padding-bottom: 30px;
    width: 94%;
  }

  .site-footer .logoArea .statement img {
    width: 100%;
    max-width: 340px;
  }

  .site-footer .logoArea ul li {
    display: block;
    float: none;
    clear: both;
    text-align: left;
    margin: 0 auto 15px;
    padding: 0;
  }

  .site-footer .logoArea ul li:last-child {
    margin-bottom: 0;
  }

  .site-footer .logoArea ul li span {
    display: inline-block;
    vertical-align: baseline;
  }

  .site-footer .logoArea .privacy {
    float: none;
    padding-top: 20px;
    margin-bottom: 30px;
  }
	  .footer-contact__tel img {
    margin-right: 14px;
    width: 16px;
  }
  .footer-subNav__icon {
    width: 11px;
  }
	.footer-contact {
    padding: 60px 40px 65px;
		color: #000000;
  }

  .footer-contact__title {
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }

  .footer-contact__tel {
    align-items: center;
    font-size: 20px;
    justify-content: center;
    margin-top: 25px;
    text-align: center;
  }

  .footer-contact__tel img {
    margin-right: 11px;
    width: 15px;
  }

  .footer-contact__schedule {
    font-size: 10px;
    margin-top: 20px;
    line-height: 1.5;
  }

  .footer-contact__closed {
    font-size: 8px;
    margin-top: 20px;
    line-height: 1.625;
  }

  .footer-contact__about,
  .footer-contact .site-heading {
    display: inline-block;
  }

  .footer-landline {
    margin-top: 50px;
  }

  .footer-landline__txt {
    font-size: 8px;
    line-height: 1.625;
  }

  .footer-landline__tel {
    font-size: 20px;
    margin-top: 5px;
    line-height: 1.5;
  }

  .footer-subNav {
    margin-top: 50px;
  }

  .footer-subNav__link {
    font-size: 10px;
    justify-content: center;
    letter-spacing: 0.1em;
    padding-left: 22.5px;
    line-height: 1.4;
  }

  .footer-subNav__link:not(:last-of-type) {
    margin-bottom: 20px;
  }

  .footer-subNav__icon {
    width: 12px;
    left: 40%;
  }

.footer-contact {
  background-color: #fff;
  color: #000;
  font-family: "源ノ明朝", serif;
}

.footer-contact__tel {
  color: #000;
  display: flex;
  font-family: "EB Garamond";
  letter-spacing: 0.11em;
  line-height: 0.75;
  text-decoration: none;
  text-align: center;
}

.footer-contact__schedule {
  color: #000;
  letter-spacing: 0.15em;
  font-size: 14px;
}

.footer-contact__closed {
  color: #eb6877;
  letter-spacing: 0.15em;
}

.footer-contact__intro {
  display: block;
}

.footer-landline__txt,
.footer-landline__tel,
.footer-subNav__link {
  color: #000;
}

.footer-landline__tel {
  display: block;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.11em;
}

.footer-subNav__link {
  align-items: center;
  display: flex;
  position: relative;
}

.footer-subNav__icon {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

  .footer-contact {
    padding: 60px 40px 65px;
	  text-align: center;
  }

  .footer-contact__title {
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }

  .footer-contact__tel {
    align-items: center;
    font-size: 20px;
    justify-content: center;
    margin-top: 25px;
    text-align: center;
  }

  .footer-contact__tel img {
    margin-right: 11px;
    width: 15px;
  }

  .footer-contact__schedule {
    font-size: 10px;
    margin-top: 20px;
    line-height: 1.5;
  }

  .footer-contact__closed {
    font-size: 8px;
    margin-top: 20px;
    line-height: 1.625;
  }

  .footer-contact__about,
  .footer-contact .site-heading {
    display: inline-block;
  }

  .footer-landline {
    margin-top: 50px;
  }

  .footer-landline__txt {
    font-size: 8px;
    line-height: 1.625;
  }

  .footer-landline__tel {
    font-size: 20px;
    margin-top: 5px;
    line-height: 1.5;
  }

  .footer-subNav {
    margin-top: 50px;
  }

  .footer-subNav__link {
    font-size: 12px;
    justify-content: center;
    letter-spacing: 0.1em;
    padding-left: 22.5px;
    line-height: 1.4;
  }

  .footer-subNav__link:not(:last-of-type) {
    margin-bottom: 20px;
  }

  .footer-subNav__icon {
    width: 12px;
    left: 40%;
  }

}

.midasi_op{
	width: 100%;
	max-width: 1200px;
	text-align: center;
	padding: 30px 10px;
	background-color: #fff;
	color: #1F1E1E;
		  font-family: "Shippori Mincho", serif;
	margin: 20px auto 0px;
}

.midasi_op h2.midasi_op2{
	color: #1F1E1E;
	font-size: 32px;
	line-height: 48px;
	letter-spacing: 0.15em;
	font-weight: 300;
}

.midasi_op p.lead_op{
	font-size: 18px;
	line-height: 44px;
	font-family: "Shippori Mincho", serif;
	padding-top: 20px;
}

@media screen and (max-width: 768px) {
.midasi_op h2.midasi_op2{
	color: #1F1E1E;
	font-size: 22px;
	line-height: 38px;
	letter-spacing: 0.15em;
	font-weight: 300;
}

.midasi_op p.lead_op{
	font-size: 12px;
	line-height: 38px;
	font-family: "Shippori Mincho", serif;
	padding-top: 20px;
}
}

/* タブ
================================ */
.tabBox {
	margin-top: 80px;
	margin-bottom: 30px;
}
.tabBox .tabArea {
	width: 100%;
	margin: auto;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: flex-end;
}
.tabBox .tabArea .one_tab {
	max-width: 300px;
	width: 100%;
	display: block;
	text-decoration: none;
	transition-duration: 0.3s;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.tabBox .tabArea .one_tab .tab_inner {
	position: relative;
	display: flex;
	font-size: 20px;
	justify-content: center;
	align-items: center;
	height: 60px;
	transition-duration: 0.3s;
	background-color: #CFD5D7;
	color: #455864;
}
.tabBox .tabArea .one_tab .tab_inner::after {
	content: attr(data-text_s);
	position: absolute;
	font-size: 11px;
	letter-spacing: 0.1em;
	bottom: 2px;
}
.tabBox .tabArea .one_tab.select .tab_inner {
	background-color: #455864;
	color: #fff;
}

.contents .tab_main {
	display: none;
	transition-duration: 0.3s;
}
.tab_main.is_show {
	display: block;
}

@media only screen and (max-width:1280px) {
	.tabBox {
			margin-top: 40px;
	}
}

@media only screen and (max-width:767px) {
	.tabBox .tabArea .one_tab .tab_inner {
			height: 50px;
			font-size: 16px;
	}
	.tabBox .tabArea .one_tab .tab_inner::after {
		font-size: 10px;
		bottom: 2px;
	}
}

 .mapBlock {
    height: 720px;
  }

  .mapBlock .mapWindow {
    font-size: 13px;
  }

  .mapBlock .centerLabel__logo {
    height: 45px;
    margin-top: 10px;
    width: 68px;
  }

  .mapBtn + .mapBlock {
    margin-top: 50px;
  }
}

.btn_pane{
	width: 100%;
	max-width: 1000px;
	padding: 20px;
	text-align: center;
	margin: 20px auto;
}

.pane_Btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  height: 44px;
  margin: 0 auto;
  padding: 0 56px 0 24px;
  background: #9a8666; /* 濃いベージュ */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  box-sizing: border-box;
  transition: background-color 0.3s ease, opacity 0.3s ease;
	margin-top: 20px;
}

.pane_Btn:hover {
  background: #b8a58a; /* マウスオーバーで薄く */
}

.pane_Btn.arrow::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* スマホ */
@media screen and (max-width: 767px) {
  .pane_Btn {
    max-width: 100%;
    height: 54px;
    padding: 0 48px 0 16px;
    font-size: 14px;
  }

  .pane_Btn.arrow::after {
    right: 16px;
    width: 8px;
    height: 8px;
  }
}
/* インフォメーション */
	.lococity-info {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #111;
  font-family: "Times New Roman", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.lococity-info__title {
  margin: 0 0 36px;
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #806028;
}

.lococity-info__list {
  border-top: 1px solid #ccc;
}

.lococity-info__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}

.lococity-info__date {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lococity-info__date span {
  margin-left: 2px;
  font-size: 10px;
}

.lococity-info__content {
  font-size: 16px!important;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.lococity-info__content p {
  margin: 0 0 20px;
}

.lococity-info__content strong {
  font-weight: 700;
}

.lococity-info__banner {
  display: block;
  max-width: 700px;
}

.lococity-info__image-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lococity-info__image-item {
  margin: 0;
}

.lococity-info__image-link {
  display: block;
}

.lococity-info__image-link img {
  display: block;
  width: 100%;
  height: auto;
}

/* responsive */
@media screen and (max-width: 768px) {
  .lococity-info {
    padding: 32px 18px;
    text-align: center;
  }

  .lococity-info__title {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .lococity-info__item {
    display: block;
    padding: 22px 0;
  }

  .lococity-info__date {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    text-align: center;
  }

  .lococity-info__content {
    font-size: 18px;
    text-align: center;
  }

  .lococity-info__content p {
    margin-bottom: 14px;
  }

  .lococity-info__banner {
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .lococity-info__title {
    font-size: 30px;
  }

  .lococity-info__date,
  .lococity-info__content {
    font-size: 16px;
  }

  .lococity-info__date span {
    font-size: 11px;
  }
}
	
	@media screen and (max-width: 768px) {
  .lococity-info__image-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .lococity-info__image-list {
    grid-template-columns: 1fr;
  }
}.lococity-info__figure {
  margin: 0;
}

.lococity-info__image-link {
  display: block;
}

.lococity-info__image-link img {
  display: block;
  width: 100%;
  height: auto;
}


}.lococity-info__figure {
  max-width: 700px;
}.lococity-info__caption {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: left;
}}


/* フッター */

.katsumiFooter,
.katsumiFooter * {
  box-sizing: border-box;
}

.katsumiFooter {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "MS PMincho",
    serif;
  line-height: 1.6;
  text-align: center;
}

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

.katsumiFooter img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

.katsumiFooter__inner {
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 26px 20px 14px;
}

.katsumiFooter__lead {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.katsumiFooter__company {
  margin: 2px 0 26px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.katsumiFooter__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
}

.katsumiFooter__telIcon {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: rotate(-18deg);
}

.katsumiFooter__telNumber {
  font-size: 27px;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.katsumiFooter__hours {
  margin: 26px 0 0;
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 1.65;
}

.katsumiFooter__hours p {
  margin: 0;
}

.katsumiFooter__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin: 78px 0 0;
}

.katsumiFooter__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}

.katsumiFooter__link:hover {
  opacity: 0.65;
}

.katsumiFooter__linkIcon {
  font-size: 13px;
  line-height: 1;
}


.katsumiFooter__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 88px 0 0;
}

.katsumiFooter__logo {
  display: block;
  width: 214px;
}

.katsumiFooter__logo--wide {
  width: 288px;
}

.katsumiFooter__copyright {
  margin: 28px 0 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  line-height: 1.4;
  white-space: nowrap;
}



/* responsive */
@media (max-width: 640px) {
  .katsumiFooter__inner {
    padding: 24px 18px 16px 0px;
  }

  .katsumiFooter__company {
    margin-bottom: 22px;
  }

  .katsumiFooter__tel {
    gap: 12px;
  }

  .katsumiFooter__telNumber {
    font-size: clamp(22px, 7vw, 27px);
    letter-spacing: 0.08em;
  }

  .katsumiFooter__hours {
    margin-top: 22px;
    font-size: 13px;
  }

  .katsumiFooter__links {
    gap: 34px;
    margin-top: 58px;
  }

  .katsumiFooter__link {
    font-size: 14px;
  }

  .katsumiFooter__logos {
    flex-direction: column;
    gap: 18px;
    margin-top: 62px;
  }

  .katsumiFooter__logo {
    width: min(78vw, 214px);
  }

  .katsumiFooter__logo--wide {
    width: min(88vw, 288px);
  }

  .katsumiFooter__copyright {
    margin-top: 24px;
    font-size: 9px;
    letter-spacing: 0.14em;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .katsumiFooter__links {
    flex-direction: column;
    gap: 16px;
  }

  .katsumiFooter__copyright {
    font-size: 8px;
  }
}

.katsumiFooter {
  position: relative;
  z-index: 50;
}

.katsumiFooter__links,
.katsumiFooter__link {
  position: relative;
  z-index: 51;
  pointer-events: auto;
}


.katsumiFooter__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.katsumiFooter__linkIcon {
  display: inline-block;
  width: 1em;
  height: 1em;
  object-fit: contain;
  flex: 0 0 auto;
}







.katsumiFooter__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  line-height: 1;
}

.katsumiFooter__tel img {
  display: block;
  width: 20px;
  height: 20px;
  max-width: none;
}

.katsumiFooter__telIcon {
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  object-fit: contain;
  flex: 0 0 18px;
}

@media (max-width: 640px) {
  .katsumiFooter__tel {
    gap: 10px;
  }

  .katsumiFooter__telIcon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    max-width: 16px;
    flex-basis: 16px;
  }

  .katsumiFooter__tel img {
    width: 16px;
    height: 16px;
  }

  .katsumiFooter__telNumber {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
}
