@charset "UTF-8";
:root {
  --cc-w: #F5F4F2;
  --cc-blue01: #151D4A;
  --cc-blue02: #304358;
  --cc-blue03: #161B23;
  --cc-gold01: #A48135;
  --cc-gold02: #A18E5F;
  --cc-gray: #DAD2BA;
  --cc-line:#DBD5C5;
  --ff-min:"Sawarabi Mincho";
  --pc-min-size:1120px;
  --bg-blue:url(../images/common/darkblue_bg400.jpg);
  --bg-kinari:url(../images/common/kinari_bg.jpg);
}

@media all and (min-width: 769px) {
  .-sp {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .-pc {
    display: none !important;
  }
}
.-enFont {
  font-family: "";
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  transform: translate3d(0, 0, 0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 950px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 20px;
  background: #000;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  border: 5px solid #000;
  background: #fff;
}

#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc;
}

#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc;
}

#cboxLoadingGraphic {
  background: url(../images/libs/colorbox/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}

#cboxPrevious {
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -32px;
  background: url(../images/libs/colorbox/controls.png) no-repeat top left;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: bottom left;
}

#cboxNext {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -32px;
  background: url(../images/libs/colorbox/controls.png) no-repeat top right;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: bottom right;
}

#cboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: url(../images/libs/colorbox/controls.png) no-repeat top center;
  width: 38px;
  height: 19px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: bottom center;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/libs/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: left;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #FFF;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
}

button {
  cursor: pointer;
}

select, input, button, textarea {
  font-size: 1.6rem;
  font-family: arial, sans-serif;
}

ol, ul, li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

h1, h2, h3, h4 {
  line-height: 1;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  padding: 0px;
}

td {
  padding: 0px;
}

a:link {
  text-decoration: none;
  color: #dad2ba;
}

a:hover {
  text-decoration: none;
  color: #fff;
}

a:active {
  text-decoration: none;
  color: #e8e8e8;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

.txt_r {
  text-align: right;
}

/* よく使うCSS start

img {
	max-width:100%;
}

table {
	width:100%;
}

a,a:hover {
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

a img:hover {
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}

よく使うCSS end -----
時々使うCSS3 start ---

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

ボックスシャドウ {
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

ボックスシャドウ内側 {
	-moz-box-shadow: inset 1px 1px 3px #000;
	-webkit-box-shadow: inset 1px 1px 3px #000;
	box-shadow: inset 1px 1px 3px #000;
}

角丸 {
	border-radius: 8px; 
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px; 
}

トランジション {
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-o-transition: 1.5s;
	transition: 1.5s;
}

透明 {
	filter: alpha(opacity=25);
	-moz-opacity:0.25;
	opacity:0.25;
}

背景のみ透明 {
	background-color:rgba(255,255,255,0.2);
}

グラデーション {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
	background-image: -moz-linear-gradient(top, #ffffff, #000000);
	background-image: -ms-linear-gradient(top, #ffffff, #000000);
	background-image: -o-linear-gradient(top, #ffffff, #000000);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#000000));
	background-image: -webkit-linear-gradient(top, #ffffff, #000000);
	background-image: linear-gradient(top, #ffffff, #000000);
}

スマホ対応
@media screen and (max-width: 480px){

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

}

時々使うCSS3 end */
/* CSS Document */
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #dad2ba;
  background-color: #151d27;
}

#wrapper {
  width: 100%;
}

/*PCナビゲーションメニュー*/
/* ========= パンくず ========= */
.bread {
  background-color: #212F41;
  padding: 3px 0 5px 0;
}

.breadcrumb li {
  display: inline;
  font-size: 1.3rem;
}

.breadcrumb li:after {
  content: ">";
  padding: 0 3px;
  color: #fff;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.inner {
  position: relative;
  z-index: 1;
  width: 1120px;
  margin: 0 auto;
}

.content {
  background-image: url(../images/darkblue_bg400.jpg);
}

.content .inner .pc_tit {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 35px;
  text-align: center;
  font-family: "Sawarabi Mincho", sans-serif;
  line-height: 1.5;
}

.content .inner .pc_tit b {
  font-size: 1.4rem;
  margin: 0 5px;
}

.content .inner .pc_tit span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 2;
}

.content .inner .pc_tit img {
  width: 139px;
  display: block;
  margin: 10px auto 0;
}

.content .inner .subcopy {
  width: 736px;
  margin: 0 auto 50px;
}

.subcontent h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #304358;
  font-family: "Sawarabi Mincho", sans-serif;
}

.content h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin: 15px 0;
  color: #dad2ba;
  font-family: "Sawarabi Mincho", sans-serif;
  position: relative;
  letter-spacing: 0.1em;
}

.content h3 span {
  font-family: serif;
  letter-spacing: 0.05em;
}

.content h3 span b {
  font-size: 1.3rem;
}

.content h3::before {
  content: "";
  position: absolute;
  top: -1em;
  left: 0;
  width: 1em;
  height: 1px;
  background-color: #a18e5f;
}

.content .sub_tit {
  color: #304358;
}

.body-text {
  margin-bottom: 30px;
}

.bodycopy-m {
  color: #151d27;
}

.subcontent {
  overflow: hidden;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #304358;
  background-image: url(../images/kinari_bg.jpg);
}

.subcontent .subcontent-inner {
  width: 1120px;
  margin: 0 auto;
}

.subcontent .subcontent-inner li {
  line-height: 1.4em;
  float: left;
  width: 159px;
  margin-right: 1px;
  text-align: center;
}

/*共通コンタクトエリア*/
.contact-area {
  padding: 40px 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #d8d8d8;
  background-color: #e7e7e7;
}

.contact-area .contact-inner {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  margin-right: auto;
  margin-left: auto;
  color: #151d4a;
}

.contact-area .contact-inner img {
  width: 40px;
  margin-bottom: 10px;
}

.contact-area .contact-inner a {
  color: #151d4a;
}

.contact-area .contact-inner a:hover {
  color: #039;
}

.contact-area .contact-inner .contact {
  width: 49%;
  text-align: center;
  border-right: 1px solid #151d4a;
}

.contact-area .contact-inner .contact a {
  display: block;
}

.contact-area .contact-inner .contact:last-child {
  border-right-style: none;
}

.subcontent .comment-inner {
  width: 1024px;
  margin: 0 auto;
  padding: 48px;
  background-image: url("../images/messe_bg-min.jpg");
  background-color: #FFFFFF;
  background-position: top center;
  background-size: cover;
}

/*各ページ共通*/
.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

section {
  width: 100%;
  padding: 70px 0;
}

.inner_con {
  position: relative;
  z-index: 1;
  width: 1120px;
  margin: 0 auto;
}

.sp-br {
  display: none;
}

.pc-br {
  display: block;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

/*コメントメッセージ部分*/
.flex-box {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.caption {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 8px;
}

.clearfix::after, .row::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
}

/*nako*/
.row-flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  align-items: flex-start;
}

/*nako*/
.col2 {
  width: 14.285%;
}

.col3 {
  width: 22.857%;
}

.col4 {
  width: 31.428%;
}

.col5 {
  width: 40%;
}

.col6 {
  width: 48.571%;
}

.col7 {
  width: 57.142%;
}

.col8 {
  width: 65.714%;
}

.col9 {
  width: 74.286%;
}

.col10 {
  width: 82.857%;
}

.col11 {
  width: 91.696%;
}

.col12 {
  width: 100%;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.margin-bottom-5 {
  margin-bottom: 5px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-bottom-15 {
  margin-bottom: 15px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.margin-bottom-25 {
  margin-bottom: 25px !important;
}

.margin-bottom-30 {
  margin-bottom: 30px !important;
}

.margin-bottom-40 {
  margin-bottom: 40px !important;
}

.margin-bottom-50 {
  margin-bottom: 50px !important;
}

.margin-bottom-60 {
  margin-bottom: 60px !important;
}

.margin-bottom-70 {
  margin-bottom: 70px !important;
}

.margin-bottom-80 {
  margin-bottom: 80px !important;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-20 {
  padding-bottom: 20px;
}

#wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* height: 100vh; */
}

#slider-list {
  width: 100%;
  margin: 0 auto 20px;
}

#slider-list-sub {
  width: 100%;
  margin: 0 auto 20px;
}

.slide-item img {
  width: 100%;
  height: auto;
}

#thumbnail-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/*
#thumbnail-list li {
  height: 80px;
}
#thumbnail-list li img {
  height: 80px;
}
*/
#thumbnail-list-sub {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

#thumbnail-list-sub li {
  height: 98px;
}

.thumbnail-item {
  width: 18%;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  margin: 0 10px 10px 0;
}

.thumbnail-item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

/*
.thumbnail-item {
  flex: 0 1 18%;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  margin: 0 5px 10px;
}
*/
.thumbnail-item img {
  width: 100%;
  margin: 0 auto;
}

.thumbnail-item::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s opacity linear;
}

.thumbnail-item.thumbnail-current::after {
  opacity: 0;
}

/* 画像・テキスト変更 */
.name {
  font-size: 2rem;
  font-family: "Sawarabi Mincho", sans-serif;
}

.name span {
  display: block;
  font-size: 1.4rem;
}

.name b {
  font-size: 1.4rem;
  margin-right: 10px;
}

.sub_name {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: bold;
  font-family: "Sawarabi Mincho", sans-serif;
  letter-spacing: 0.05em;
}

.sub_name span {
  font-size: 1.6rem;
  margin-left: 5px;
}

.sub_name b {
  font-family: serif;
}

/*h2*/
.d_lead {
  font-size: 2.4rem;
  font-weight: 300;
  font-family: "Sawarabi Mincho", sans-serif;
  margin-bottom: 60px;
  line-height: 1.5;
}

.single {
  display: block;
  padding: 10px 0;
  margin: 10px 0;
  text-align: center;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #4b4f50 !important;
  background-color: #c4bfac;
  font-family: "Sawarabi Mincho", sans-serif;
  border-radius: 3px;
  position: relative;
}

.single i {
  color: #3b61a8;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}

.booking_btn {
  display: block;
  padding: 10px 0;
  color: #fff !important;
  background-color: #A48135;
  text-align: center;
  font-family: "Sawarabi Mincho", sans-serif;
  border-radius: 3px;
}

/*youtube*/
#wrapper .video .inner ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#wrapper .video .inner ul li {
  width: 48%;
}

#wrapper .video .topics {
  line-height: 1;
  width: 180px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  padding-top: 9px;
  padding-right: 7px;
  padding-bottom: 8px;
  padding-left: 7px;
  text-align: center;
  color: #dad2ba;
  border: 1px solid #dad2ba;
}

/*youtube*/
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*FlaxBox順番*/
.first {
  order: 1;
}

.second {
  order: 2;
}

.third {
  order: 3;
}

/*共通メインビジュアル*/
#main-visual {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: flex;
  align-items: center;
  height: 50vh;
}

/*客室のご案内*/
.rooms #main-visual {
  background-image: url("../../room/images/room_pc.jpg");
}

.oce #main-visual {
  background-image: url("../../room/images/oce_pc.jpg");
}

.prem #main-visual {
  background-image: url("../../room/images/208main.jpg");
}

.pres #main-visual {
  background-image: url("../../room/images/pres_pc.jpg");
}

.luxury #main-visual {
  background-image: url("../../room/images/205main.jpg");
}

.pool #main-visual {
  background-image: url("../../room/images/105main.jpg");
}

.dx #main-visual {
  background-image: url("../../room/images/107main.jpg");
}

.relax #main-visual {
  background-image: url("../../room/images/relax_pc.jpg");
}

.mais #main-visual {
  background-image: url("../../room/images/mais_pc.jpg");
}

/*お料理*/
.dish #main-visual {
  background-image: url("../../dish/images/dish_pc.jpg");
}

/*温泉*/
.spa #main-visual {
  background-image: url("../../spa/images/spa_pc.jpg");
}

/*エステ*/
.esthe #main-visual {
  background-image: url("../../esthe/images/esthe_pc.jpg");
}

/*館内案内*/
.public #main-visual {
  background-image: url("../../public/images/publ_pc.jpg");
}

/*リラクゼーション*/
.chiro #main-visual {
  background-image: url("../../public/images/chiro_pc.jpg");
}

/*マリアージュ*/
.mariage #main-visual {
  background-image: url("../../mariage/images/mari_pc.jpg");
}

.marage-sub_tit {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: "Sawarabi Mincho", sans-serif;
}

/*演出家たち*/
.concept #main-visual {
  background-image: url("../../concept/images/con_pc.jpg");
}

/*交通*/
.access #main-visual {
  background-image: url("../../access/images/acc_pc.jpg");
}

/*スタッフ紹介*/
.staff #main-visual {
  background-image: url("../../staff/images/stt_pc.jpg");
}

/*スタッフ紹介*/
.faq #main-visual {
  background-image: url("../../faq/images/faq_pc.jpg");
}

/*遊歩道*/
.promenade #main-visual {
  background-image: url("../../promenade/images/promenade_pc.jpg");
}

.prome ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.prome ul li {
  width: calc(25% - 32px);
  margin: 0 16px;
}

.prome li img {
  margin-bottom: 15px;
}

.prome li h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.prome .trekking li {
  width: calc(50% - 32px);
  margin: 0 16px;
}

.prome .trekking li p {
  margin-bottom: 25px;
}

.prome .trekking li:last-child, .prome .trekking li p:last-child {
  margin-bottom: 0;
}

/*イベント情報・問い合わせ・ご利用・個人情報*/
.event #main-visual, .inq #main-visual, .guide #main-visual, .policy #main-visual, .not #main-visual {
  background-image: url("../images/eve_pc.jpg");
}

/*ｈ1ホワイトタイトル共通*/
#main-visual h1 span {
  display: block;
}

.rooms #main-visual h1, .dish #main-visual h1, .spa #main-visual h1, .public #main-visual h1, .mariage #main-visual h1, .concept #main-visual h1, .access #main-visual h1, .staff #main-visual h1, .event #main-visual h1, .inq #main-visual h1, .guide #main-visual h1, .faq #main-visual h1, .esthe #main-visual h1, .promenade #main-visual h1 {
  font-size: 2.4rem;
  font-family: "Sawarabi Mincho", sans-serif;
  padding: 10px 40px;
  border-bottom: solid 1px #fff;
  width: 180px;
  text-align: center;
}

#main-visual h1 span {
  display: block;
  line-height: 1.6;
}

.chiro #main-visual h1, .policy #main-visual h1, .not #main-visual h1, .environment #main-visual h1 {
  font-size: 2.4rem;
  font-family: "Sawarabi Mincho", sans-serif;
  padding: 10px 40px;
  border-bottom: solid 1px #fff;
  width: 230px;
  text-align: center;
}

.concept #main-visual h1, .staff #main-visual h1, .faq #main-visual h1, .promenade #main-visual h1, .environment #main-visual h1 {
  text-shadow: 0 0 4px #000, 0 0 6px #000, 0 0 10px #000;
}

.esthe #main-visual h1 {
  text-shadow: 0 0 2px #555555, 0 0 4px #555555, 0 0 4px #555555;
}

/*よくあるご質問*/
.accordion_dl {
  margin-bottom: 40px;
}

.accordion_dl:last-child {
  margin-bottom: 0;
}

.faq h5 {
  margin-bottom: 10px;
}

.faq dt {
  position: relative;
  margin-bottom: 1px;
  padding-top: 10px;
  padding-right: 24px;
  padding-bottom: 10px;
  padding-left: 24px;
  cursor: pointer;
  color: #e3decc;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #333768;
  background-color: #383d72;
}

.faq dt:before {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  content: "";
  transform: rotate(45deg);
  background-color: #e3decc;
}

.faq dt:after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -13px;
  content: "";
  transform: rotate(45deg);
  background-color: #383d72;
}

.faq dt.active:before {
  margin-top: -2px;
}

.faq dt.active:after {
  margin-top: 3px;
}

.faq dd {
  padding-top: 10px;
  padding-right: 24px;
  padding-bottom: 10px;
  padding-left: 24px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #666;
  background-color: #333;
}

/*お問い合わせ*/
.inq_frame {
  margin-bottom: 10px;
  display: flex;
  line-height: 1;
}

.inq_frame-left {
  background-color: #244367;
  width: 25%;
  padding: 15px;
}

.inq_frame-right {
  width: 75%;
  padding: 10px;
  background-color: #dad2ba;
}

.inq_frame-right .text_box {
  padding: 13px 10px 15px 10px;
  border-radius: 0px;
  border: 1px solid #ddd;
  line-height: 1;
}

.inq_box {
  display: flex;
  padding-top: 10px;
}

.inq_box .submit_btn {
  width: 50%;
  padding: 14px 0;
  font-size: 1.5rem;
  border-radius: 3px;
  background-color: #383C70;
  color: #FFFFFF;
  border: none;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  margin-right: 8px;
  cursor: pointer;
}

.inq_box .reset_btn {
  width: 50%;
  padding: 14px 0;
  font-size: 1.5rem;
  border-radius: 3px;
  background-color: #FFFFFF;
  color: #333333;
  border: solid 1px #CCCCCC;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  margin-left: 8px;
  cursor: pointer;
}

.submit_btn:hover, .reset_btn:hover {
  opacity: 0.8;
}

.inq .other {
  line-height: 2.5;
  text-align: center;
}

input[type=text] {
  width: 50%;
  box-sizing: border-box;
  color: #8F8F8F;
}

textarea {
  width: 100%;
  box-sizing: border-box;
}

input::-webkit-input-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}

input:-moz-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}

input:-ms-input-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}

textarea::-webkit-input-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}

textarea:-moz-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}

textarea:-ms-input-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}

/*pagetopボタン*/
#page_top {
  width: 44px;
  height: 44px;
  position: fixed;
  right: 10px;
  bottom: 15px;
  background: #888888;
  opacity: 0.6;
  z-index: 100000;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  text-decoration: none;
  border-radius: 50%;
}

#page_top a::after {
  content: "▲";
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*404*/
.nottxt {
  font-size: 2rem;
  margin-bottom: 20px;
}

.not .menu {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.not .menu ul {
  width: 33.333%;
}

.not .menu ul li {
  font-size: 1.8rem;
  line-height: 2.4;
}

/*お知らせGoTo*/
.outlink {
  margin-bottom: 30px;
}

.outlink a {
  text-decoration: underline;
}

.news-top h3 {
  font-size: 2rem;
}

.news-top ol {
  counter-reset: number; /*数字をリセット*/
  margin-bottom: 10px;
}

.news-top ol li {
  position: relative;
  line-height: 2em;
  padding: 0.5em 0.5em 0.8em 32px;
}

.news-top ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #014A99;
  color: #FFFFFF;
  font-family: "Avenir", "Arial", sans-serif;
  font-size: 14px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
}

.note {
  color: #F4B1B2;
}

/*QRコード用*/
.map-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.map-list_item {
  margin: 30px 0;
  width: 90%;
}

.map-list_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1em 2em;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  background-color: #DFDFDF;
  transition: 0.3s;
}

.map-list_item a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  transform: rotate(45deg);
}

.map-list_item a:hover {
  text-decoration: none;
  background-color: #bbbbbb;
}

/*環境*/
.environment #main-visual {
  background-image: url("../../promenade/images/promenade_pc.jpg");
}

.commit {
  margin-bottom: 30px;
}

.commit .commit-item {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.commitment {
  text-align: right;
}

.commitment span {
  display: block;
  font-size: 1.6rem;
}

.project {
  display: flex;
  margin-bottom: 20px;
}

.project-copy {
  width: 50%;
  margin-right: 20px;
}

.project-photo {
  width: 25%;
  margin-right: 10px;
}

.project-photo:last-child {
  margin-right: 0;
}

.sdgs .sdgs-tit {
  font-size: 2.4rem;
  font-weight: 300;
  font-family: "Sawarabi Mincho", sans-serif;
  margin-bottom: 40px;
}

.sdgs .sdgs-sub_tit {
  line-height: 1.6;
}

.sdgs ul li {
  margin-bottom: 40px;
}

.sdgs-smalllist {
  display: flex;
  flex-wrap: wrap;
}

.youtube-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 40px;
}

.youtube-wrap iframe {
  width: 100%;
  height: 100%;
}

.translation {
  display: flex;
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #CCC;
}

.translation-txt {
  width: 50%;
  margin-right: 40px;
}

.translation-txt:last-child {
  margin-right: 0;
}

.sdgs-smalllist_item {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
  display: flex;
  flex-direction: column;
}

.sdgs-smalllist_item:last-child {
  margin-right: 0;
}

.sdgs-smalllist_item p {
  margin-bottom: 30px;
}

.sdgs-smalllist_item .diagram {
  display: block;
  margin-top: auto;
}

.diagram {
  margin-bottom: 80px;
}

/*new予約サーチ*/
.page_tit {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page_subtit {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

#booking {
  text-align: center;
  margin: 0 auto;
}

#booking section {
  padding: 10px 0;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .room_guide {
    display: none;
  }
  .sp-room-gallery {
    display: block;
  }
  .pc_data {
    display: none;
  }
  .sp_data {
    display: block !important;
  }
  .pc-br {
    display: none;
  }
  .headerbar {
    display: block;
  }
  .inner {
    width: 100%;
  }
  .content {
    background-image: none;
  }
  .content .inner .subcopy {
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    margin-bottom: 40px;
  }
  .subcontent .inner {
    width: 96%;
    margin: 0 auto;
  }
  .contact-area {
    display: none;
  }
  section {
    width: 100%;
    padding: 40px 0;
  }
  .inner_con {
    width: 94%;
  }
  .subcontent .comment-inner {
    padding: 30px 0;
    width: 100%;
    box-sizing: border-box;
    background-repeat: repeat;
  }
  /*nako*/
  .row-flex {
    padding: 0 15px;
    flex-direction: column;
  }
  /*nako*/
  .col-s2 {
    width: 14.285%;
  }
  .col-s3 {
    width: 22.857%;
  }
  .col-s4 {
    width: 31.428%;
  }
  .col-s5 {
    width: 40%;
  }
  .col-s6 {
    width: 48.571%;
  }
  .col-s7 {
    width: 57.142%;
  }
  .col-s8 {
    width: 65.714%;
  }
  .col-s9 {
    width: 74.286%;
  }
  .col-s10 {
    width: 82.857%;
  }
  .col-s11 {
    width: 91.696%;
  }
  .col-s12 {
    width: 100%;
  }
  .sp_mb-0 {
    margin-bottom: 0 !important;
  }
  .sp_mb-5 {
    margin-bottom: 5px !important;
  }
  .sp_mb-10 {
    margin-bottom: 10px !important;
  }
  .sp_mb-15 {
    margin-bottom: 15px !important;
  }
  .sp_mb-20 {
    margin-bottom: 20px !important;
  }
  .sp_mb-25 {
    margin-bottom: 25px !important;
  }
  .sp_mb-30 {
    margin-bottom: 30px !important;
  }
  .sp_mb-40 {
    margin-bottom: 40px !important;
  }
  .sp_mb-50 {
    margin-bottom: 50px !important;
  }
  .sp_mb-60 {
    margin-bottom: 60px !important;
  }
  .single {
    width: 50%;
  }
  /*h2*/
  .d_lead {
    text-align: center;
  }
  /*FlaxBox順番*/
  .first {
    order: 0;
  }
  .second {
    order: 0;
  }
  .third {
    order: 0;
  }
  .person {
    margin: 40px auto 0;
  }
  .messe {
    margin: 40px auto 0;
  }
  /*youtube*/
  #wrapper .video .inner ul li {
    width: 90%;
    margin: 0 auto;
  }
  /*共通メインビジュアル*/
  #main-visual {
    height: 30vh;
  }
  /*客室のご案内*/
  .rooms #main-visual {
    background-image: url("../../room/images/room_sp.jpg");
  }
  .oce #main-visual {
    background-image: url("../../room/images/oce_sp.jpg");
  }
  .pres #main-visual {
    background-image: url("../../room/images/pres_sp.jpg");
  }
  .prem #main-visual {
    background-image: url("../../room/images/208main_sp.jpg");
  }
  .pool #main-visual {
    background-image: url("../../room/images/105main_sp.jpg");
  }
  .luxury #main-visual {
    background-image: url("../../room/images/205main_sp.jpg");
  }
  .dx #main-visual {
    background-image: url("../../room/images/107main_sp.jpg");
  }
  .relax #main-visual {
    background-image: url("../../room/images/relax_sp.jpg");
  }
  .mais #main-visual {
    background-image: url("../../room/images/mais_sp.jpg");
  }
  /*温泉*/
  .spa #main-visual {
    background-image: url("../../spa/images/spa_sp.jpg");
  }
  /*お料理*/
  .dish #main-visual {
    background-image: url("../../dish/images/dish_sp.jpg");
  }
  /*エステ*/
  .esthe #main-visual {
    background-image: url("../../esthe/images/esthe_sp.jpg");
  }
  /*館内案内*/
  .public #main-visual {
    background-image: url("../../public/images/publ_sp.jpg");
  }
  /*リラクゼーション*/
  .chiro #main-visual {
    background-image: url("../../public/images/chiro_sp.jpg");
  }
  /*マリアージュ*/
  .mariage #main-visual {
    background-image: url("../../mariage/images/mari_sp.jpg");
  }
  /*演出家*/
  .concept #main-visual {
    background-image: url("../../concept/images/con_sp.jpg");
  }
  /*交通*/
  .access #main-visual {
    background-image: url("../../access/images/acc_sp.jpg");
  }
  /*スタッフ*/
  .staff #main-visual {
    background-image: url("../../staff/images/stt_sp.jpg");
  }
  /*スタッフ*/
  .faq #main-visual {
    background-image: url("../../faq/images/faq_sp.jpg");
  }
  /*イベント情報・問い合わせ・ご利用・個人情報*/
  .event #main-visual, .inq #main-visual, .guide #main-visual, .policy #main-visual, .not #main-visual {
    background-image: url("../images/eve_sp.jpg");
  }
  /*遊歩道*/
  .promenade #main-visual {
    background-image: url("../../promenade/images/promenade_sp.jpg");
  }
  /*環境*/
  .environment #main-visual {
    background-image: url("../../promenade/images/promenade_sp.jpg");
  }
  .prome {
    padding: 0 15px;
  }
  .prome ul {
    margin: 0 -15px;
  }
  .prome ul li {
    width: calc(50% - 30px);
    margin: 0 15px 40px;
  }
  .prome li:nth-child(n+3) {
    margin-bottom: 0;
  }
  .prome .trekking li {
    width: 100%;
    margin-bottom: 20px;
  }
  /*h1ホワイトタイトル*/
  .rooms #main-visual .inner_con h1, .dish #main-visual .inner_con h1, .spa #main-visual .inner_con h1, .public #main-visual .inner_con h1, .mariage #main-visual .inner_con h1, .concept #main-visual .inner_con h1, .access #main-visual .inner_con h1, .staff #main-visual .inner_con h1, .event #main-visual .inner_con h1, .inq #main-visual .inner_con h1, .faq #main-visual .inner_con h1, .promenade #main-visual .inner_con h1 {
    font-size: 1.8rem;
    width: 130px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .chiro #main-visual .inner_con h1, .guide #main-visual .inner_con h1, .policy #main-visual .inner_con h1, .not #main-visual .inner_con h1, .environment #main-visual .inner_con h1 {
    font-size: 1.8rem;
    width: 170px;
    padding-left: 20px;
    padding-right: 20px;
  }
  /*h1ブラックタイトル*/
  .esthe #main-visual .inner_con h1 {
    font-size: 2rem;
    width: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }
  /*ワインマリアージュ・スタッフページ*/
  .mariage .content .inner .row-flex, .mariage .content .inner .flex-box, .staff .content .inner .flex-box {
    flex-direction: row;
    display: flex;
  }
  .mariage .d_lead {
    margin-bottom: 40px;
    font-size: 2rem;
  }
  .mariage .subcontent .d_lead {
    text-align: center;
  }
  /*お問い合わせ*/
  .inq_frame {
    flex-direction: column;
  }
  .inq_frame-left, .inq_frame-right {
    width: auto;
  }
  .inq_frame-right .text_box {
    width: 100%;
  }
  /*プライバシーポリシー*/
  .policy {
    margin-bottom: 30px;
  }
  /*404*/
  .not .menu ul li {
    font-size: 1.6rem;
  }
  /*お知らせGoTo*/
  .news-top h3 {
    line-height: 1.6;
  }
  /*環境*/
  .translation {
    padding-bottom: 40px;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .translation-txt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .translation-txt:last-child {
    margin-bottom: 0;
  }
  .project {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .project-copy {
    width: 100%;
  }
  .project-photo {
    width: 100%;
    margin-bottom: 10px;
  }
  .project-photo:last-child {
    margin-bottom: 0;
  }
  .sdgs .sdgs-tit {
    line-height: 1.8;
  }
  .sdgs-smalllist_item {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }
  .sdgs-smalllist_item:nth-of-type(even) {
    margin-right: 0;
  }
  .sdgs-smalllist_item p {
    margin-bottom: 20px;
  }
  .diagram {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  /*nako*/
  .col-xs3 {
    width: 22.857%;
  }
  .col-xs4 {
    width: 31.428%;
  }
  .col-xs5 {
    width: 40%;
  }
  .col-xs6 {
    width: 48.571%;
  }
  .col-xs7 {
    width: 57.142%;
  }
  .col-xs8 {
    width: 65.714%;
  }
  .col-xs9 {
    width: 74.286%;
  }
  .col-xs10 {
    width: 82.857%;
  }
  .col-xs11 {
    width: 91.696%;
  }
  .col-xs12 {
    width: 100%;
  }
  .col-xs12:last-child {
    margin-bottom: 0;
  }
  .content h4 img {
    width: 60%;
  }
  .sp-br {
    display: block;
  }
  /*h2*/
  .content .inner .pc_tit, .d_lead {
    font-size: 2rem;
  }
  .content .inner .pc_tit b {
    display: block;
  }
  /*コメントメッセージ部分*/
  .flex-box {
    display: block;
  }
  .thumbnail-item {
    width: 30%;
  }
  .single {
    width: 60%;
  }
  /*ワインマリアージュページ*/
  .mariage .subcontent .comment-inner .col-xs8, .mariage .subcontent .comment-inner .col-s8 {
    margin: 0 auto;
  }
  /*コンセプト*/
  .concept .subcontent .sub_name {
    margin-bottom: 30px;
  }
  .inq .other {
    text-align: left;
  }
  /*404*/
  .not .menu {
    flex-direction: column;
  }
  .not .menu ul {
    width: 100%;
  }
  .not .menu ul li {
    line-height: 2;
  }
  /*遊歩道*/
  .prome ul li {
    width: 100%;
  }
  .prome ul li:nth-child(3) {
    margin-bottom: 40px;
  }
}
body {
  -webkit-font-smoothing: antialiased;
}

.content_main {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .content_main {
    margin-top: 70px;
  }
}

.newsList {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .newsList {
    gap: 24px;
  }
}
.newsList li {
  border-bottom: solid 1px var(--cc-line);
  padding-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .newsList li {
    padding-bottom: 24px;
  }
}
.newsList .newsTh {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .newsList .newsTh {
    align-items: center;
  }
}
.newsList .newsTh__img {
  overflow: hidden;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .newsList .newsTh__img {
    width: 120px;
  }
}
.newsList .newsTh__img img {
  border-radius: 3px;
  width: 100%;
}
.newsList .newsTh__txtarea {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 769px) {
  .newsList .newsTh__txtarea {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 768px) {
  .newsList .newsTh__txtarea {
    width: calc(100% - 135px);
    gap: 10px;
  }
}
.newsList .newsTh__txtarea .info {
  color: var(--cc-blue01);
  display: flex;
  align-items: center;
  font-family: var(--ff-min);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .newsList .newsTh__txtarea .info {
    font-size: 10px;
    gap: 15px;
  }
}
.newsList .newsTh__txtarea .info .cat {
  background: var(--cc-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  padding: 11px 15px;
}
@media screen and (max-width: 768px) {
  .newsList .newsTh__txtarea .info .cat {
    padding: 5px 12px;
  }
}
.newsList .newsTh__txtarea .ttl {
  color: var(--cc-blue01);
  font-size: 15px;
  font-weight: 500;
  line-height: 180%; /* 27px */
}
@media screen and (max-width: 768px) {
  .newsList .newsTh__txtarea .ttl {
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  .newsList .newsTh .ttl {
    transition: color 0.3s;
  }
  .newsList .newsTh__img img {
    transition: transform 0.5s;
  }
  .newsList .newsTh:hover .ttl {
    color: var(--cc-gold02);
  }
  .newsList .newsTh:hover .newsTh__img img {
    transform: scale(1.05);
  }
}

a:visited {
  color: inherit;
}

.header {
  background: var(--cc-blue03);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  transition: height 0.6s, background 0.6s;
}
@media screen and (min-width: 769px) {
  .header {
    height: 100px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }
}
.header__hvrarea {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header__hvrarea {
    display: none;
  }
}
.-scrlIndexTop .header {
  background: transparent;
}
.-scrlIndexTop .header .header__hvrarea {
  bottom: 40px;
}
@media screen and (min-width: 769px) {
  .-scrlIndexTop .header {
    height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .-scrlIndexTop .header {
    height: 118px;
  }
}
.-spMenuOpen .header {
  background: transparent;
}
@media screen and (min-width: 769px) {
  .-spMenuOpen .header {
    height: 100px;
  }
}
@media screen and (max-width: 768px) {
  .-spMenuOpen .header {
    height: 70px;
  }
}
.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .header__in {
    position: relative;
    max-width: 1440px;
  }
}
@media all and (min-width: 769px) and (max-width: 1600px) {
  .header__in {
    width: 90vw;
    min-width: 940px;
  }
}
@media screen and (max-width: 768px) {
  .header__in {
    padding: 0 16px;
  }
}
.header__nav {
  font-family: var(--ff-min);
  display: flex;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  transform: translateX(-50%);
  left: 50%;
  height: 100%;
  justify-content: center;
  gap: 30px;
}
@media all and (min-width: 769px) and (max-width: 1279px) {
  .header__nav {
    margin-left: -80px;
    gap: 1.875vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav li {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__nav li a {
  color: var(--cc-w);
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .header__nav li a {
    transition: color 0.3s;
  }
  .header__nav li a:hover {
    color: var(--cc-gold02);
  }
}
.header__nav li.js-subNavHover {
  position: relative;
}
.header__nav li.-hasSub {
  position: relative;
}
.header__right {
  display: flex;
  align-items: center;
}
.header__right .lang {
  font-family: var(--ff-min);
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  gap: 16px;
}
@media all and (min-width: 769px) and (max-width: 1600px) {
  .header__right .lang {
    gap: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .header__right .lang {
    gap: 10px;
    font-size: 12px;
  }
}
.header__right .lang a {
  color: var(--cc-w);
}
@media screen and (min-width: 769px) {
  .header__right .lang a {
    transition: color 0.3s;
  }
  .header__right .lang a:hover {
    color: var(--cc-gold02);
  }
}
.header__right .lang .-cr {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid rgba(218, 213, 197, 0.2);
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .header__right .lang .-cr {
    width: 30px;
    height: 30px;
  }
}
.header__right .reserveBtn {
  margin-left: 48px;
}
@media all and (min-width: 769px) and (max-width: 1600px) {
  .header__right .reserveBtn {
    margin-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .header__right .reserveBtn {
    display: none;
  }
}
.header__right .reserveBtn a {
  color: var(--cc-w);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  border-radius: 3px;
  background: var(--cc-gold01);
}
@media screen and (min-width: 769px) {
  .header__right .reserveBtn a {
    transition: background 0.3s;
  }
  .header__right .reserveBtn a:hover {
    background: var(--cc-gold02);
  }
}
.header__right .spMenuBtn {
  border: none;
}
@media screen and (max-width: 768px) {
  .header__right .spMenuBtn {
    background: url(../images/common/icon-menu.svg) center center no-repeat;
    width: 40px;
    height: 10px;
    margin-left: 24px;
  }
}
.-spMenuOpen .header__right .spMenuBtn {
  background-image: url(../images/common/icon-menu-close.svg);
}
.header .logo img {
  width: 144px;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    width: 118px;
  }
}

.roomNavPc {
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  left: 0;
  top: 0;
  position: fixed;
  transition: opacity 0.3s;
  width: 100%;
  height: 381px;
  background: var(--cc-blue03);
}
.-scrlIndexTop .roomNavPc {
  height: 450px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.-scrlIndexTop .roomNavPc .roomNavPc__in {
  margin-top: 140px;
}
.roomNavPc__in {
  margin: 100px auto 0;
  border-top: solid 1px rgba(219, 213, 197, 0.1);
  padding-top: 32px;
  width: 1040px;
  display: flex;
  justify-content: space-between;
}
.roomNavPc__in ul {
  display: flex;
  flex-direction: column;
  padding-top: 5px;
  width: 320px;
  gap: 20px;
}
.roomNavPc__in ul li a {
  position: relative;
  display: flex;
  justify-content: space-between;
  line-height: 1;
  color: var(--cc-w);
  font-size: 14px;
  padding-bottom: 20px;
  border-bottom: solid 1px rgba(219, 213, 197, 0.1);
  transition: color 0.3s;
}
.roomNavPc__in ul li a::after {
  position: relative;
  content: "";
  background: url(../images/common/icon-arw.svg) center center/100% auto no-repeat;
  width: 10px;
  height: 8px;
  transition: background 0.3s;
  top: 3px;
}
.roomNavPc__in ul li a:before {
  content: "";
  background: #A18E5F;
  position: absolute;
  height: 1px;
  left: 0;
  bottom: 0;
  width: 0%;
  transition: width 0.3s;
}
.roomNavPc__in ul li a:hover {
  color: var(--cc-gold01);
}
.roomNavPc__in ul li a:hover:after {
  background-image: url(../images/common/icon-arw-gold.svg);
}
.roomNavPc__in ul li a:hover:before {
  width: 100%;
}
.roomNavPc__in .imgBlock {
  position: relative;
  width: 320px;
}
.roomNavPc__in .imgBlock img {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.roomNavPc__in .imgBlock .base {
  opacity: 1;
  position: relative;
}
.roomNavPc__in .imgBlock[data-roomimg=pre] .-pre {
  opacity: 1;
}
.roomNavPc__in .imgBlock[data-roomimg=rela] .-rela {
  opacity: 1;
}
.roomNavPc__in .imgBlock[data-roomimg=po] .-po {
  opacity: 1;
}
.roomNavPc__in .imgBlock[data-roomimg=lux] .-lux {
  opacity: 1;
}
.roomNavPc__in .imgBlock[data-roomimg=dx] .-dx {
  opacity: 1;
}
.roomNavPc__in .imgBlock[data-roomimg=prm] .-prm {
  opacity: 1;
}
.roomNavPc__in .imgBlock[data-roomimg=oce] .-oce {
  opacity: 1;
}
.roomNavPc__in .imgBlock[data-roomimg=mais] .-mais {
  opacity: 1;
}
.-roomSubPcNav .roomNavPc {
  pointer-events: initial;
  opacity: 1;
}

.-roomSubPcNav .header__hvrarea {
  pointer-events: initial;
}

.spNav {
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  left: 0;
  top: 0;
  position: fixed;
  transition: opacity 0.3s;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: var(--cc-blue03);
}
@media screen and (min-width: 769px) {
  .spNav {
    display: none;
  }
}
.spNav__in {
  padding: 100px 16px 60px;
}
.spNav__in .navList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
}
.spNav__in .navList > li {
  padding-bottom: 15px;
  border-bottom: solid 1px #304358;
}
.spNav__in .navList > li > a {
  padding-bottom: 15px;
}
.spNav__in .-hasSubNav {
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.spNav__in .-hasSubNav .subNavTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: solid 1px #304358;
}
.spNav__in .-hasSubNav .subNavTop .ico {
  background: url(../images/common/icon-acd-open.svg) center center/cover no-repeat;
  height: 11px;
  width: 11px;
}
.spNav__in .-hasSubNav.-open .subNavTop .ico {
  background-image: url(../images/common/icon-acd-close.svg);
}
.spNav__in .subNav {
  display: none;
}
.spNav__in .subNav li {
  margin-bottom: 10px;
}
.spNav__in .subNav li:first-child {
  padding-top: 15px;
}
.spNav__in .subNav li:last-child {
  margin-bottom: 0;
}
.spNav .reserveBtn {
  margin-top: 35px;
}
.spNav .reserveBtn a {
  color: var(--cc-w);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 3px;
  background: var(--cc-gold01);
  font-size: 16px;
}
.-spMenuOpen .spNav {
  opacity: 1;
  pointer-events: inherit;
}

.c-bottomLinks {
  background: #fff;
  padding: 100px 0;
}
@media screen and (min-width: 769px) {
  .c-bottomLinks {
    min-width: var(--pc-min-size);
  }
}
@media screen and (max-width: 768px) {
  .c-bottomLinks {
    padding: 60px 0;
  }
}
.c-bottomLinks__in {
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-bottomLinks__in {
    max-width: 1440px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-bottomLinks__in {
    flex-direction: column;
    padding: 0 16px;
    gap: 16px;
  }
}
.c-bottomLinks__in .item {
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-bottomLinks__in .item {
    overflow: hidden;
  }
  .c-bottomLinks__in .item img {
    transition: transform 0.5s;
  }
  .c-bottomLinks__in .item:hover img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 768px) {
  .c-bottomLinks__in .item {
    overflow: hidden;
    border-radius: 3px;
    height: 160px;
  }
  .c-bottomLinks__in .item img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.c-bottomLinks__in .item__txt {
  color: var(--cc-w);
  position: absolute;
  width: 100%;
  font-family: var(--ff-min);
  font-weight: 400;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.c-bottomLinks__in .item__txt .txtJ {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .c-bottomLinks__in .item__txt .txtJ {
    font-size: 22px;
  }
}
.c-bottomLinks__in .item__txt .txtE {
  line-height: 1;
  margin-top: 1em;
  margin-bottom: -1em;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .c-bottomLinks__in .item__txt .txtE {
    font-size: 10px;
    margin-top: 0.4em;
    margin-bottom: -0.4em;
  }
}

.c-reservationSec {
  background: url(../images/common/kinari_bg.jpg);
  padding: 85px 0;
}
@media screen and (min-width: 769px) {
  .c-reservationSec {
    min-width: var(--pc-min-size);
  }
}
@media screen and (max-width: 768px) {
  .c-reservationSec {
    padding: 50px 0 60px;
  }
}
.c-reservationSec__head {
  text-align: center;
  font-family: var(--ff-min);
  color: var(--cc-blue01);
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-reservationSec__head {
    margin-bottom: 20px;
  }
}
.c-reservationSec__head .txtJ {
  font-weight: 400;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .c-reservationSec__head .txtJ {
    font-size: 18px;
  }
}
.c-reservationSec__head .txtE {
  line-height: 1;
  font-size: 12px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .c-reservationSec__head .txtE {
    font-size: 10px;
    margin-top: 10px;
  }
}
.c-reservationSec__cnt {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .c-reservationSec__cnt {
    width: 1040px;
  }
}

.c-ftContactSec {
  box-sizing: border-box;
  background: #fff;
  color: var(--cc-blue01);
  font-family: var(--ff-min);
}
@media screen and (min-width: 769px) {
  .c-ftContactSec {
    min-width: var(--pc-min-size);
    padding: 80px;
  }
}
@media screen and (max-width: 768px) {
  .c-ftContactSec {
    padding: 60px 15px;
  }
}
.c-ftContactSec__cnt {
  background: url(../images/common/kinari_bg.jpg);
  padding: 115px 0 100px;
}
@media screen and (max-width: 768px) {
  .c-ftContactSec__cnt {
    padding: 75px 25px 60px;
  }
}
.c-ftContactSec__head {
  text-align: center;
}
.c-ftContactSec__head .txtJ {
  font-weight: 400;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .c-ftContactSec__head .txtJ {
    font-size: 28px;
  }
}
.c-ftContactSec__head .txtE {
  line-height: 1;
  font-size: 16px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .c-ftContactSec__head .txtE {
    font-size: 12px;
    margin-top: 10px;
  }
}
.c-ftContactSec__links {
  display: flex;
  justify-content: center;
  margin-top: 47px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .c-ftContactSec__links {
    flex-direction: column;
    margin-top: 35px;
    gap: 10px;
  }
}
.c-ftContactSec__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-w);
  border-radius: 3px;
  height: 80px;
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .c-ftContactSec__links a {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .c-ftContactSec__links a {
    font-size: 16px;
    height: 60px;
  }
}
.c-ftContactSec__links a.-plan {
  background: var(--cc-gold01);
}
@media screen and (min-width: 769px) {
  .c-ftContactSec__links a.-plan {
    transition: background 0.3s;
  }
  .c-ftContactSec__links a.-plan:hover {
    background: var(--cc-gold02);
  }
}
.c-ftContactSec__links a.-contact {
  background: var(--cc-blue01);
}
@media screen and (min-width: 769px) {
  .c-ftContactSec__links a.-contact {
    transition: background 0.3s;
  }
  .c-ftContactSec__links a.-contact:hover {
    background: #304358;
  }
}
.c-ftContactSec .tel {
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
  font-size: 24px;
  margin-top: 40px;
}
.c-ftContactSec .tel a {
  color: inherit;
}
@media screen and (min-width: 769px) {
  .c-ftContactSec .tel a {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .c-ftContactSec .tel {
    margin-top: 20px;
    font-size: 16px;
  }
  .c-ftContactSec .tel a {
    text-decoration: underline;
  }
}

.c-relSec {
  background: #fff;
  color: var(--cc-blue01);
  font-family: var(--ff-min);
  padding-top: 10px;
  padding-bottom: 100px;
}
@media screen and (min-width: 769px) {
  .c-relSec {
    min-width: var(--pc-min-size);
  }
}
.c-relSec__head {
  text-align: center;
  margin-bottom: 40px;
}
.c-relSec__head .txtJ {
  font-weight: 400;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .c-relSec__head .txtJ {
    font-size: 18px;
  }
}
.c-relSec .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .c-relSec .list {
    margin: 0 auto;
    max-width: 876px;
  }
}
@media screen and (max-width: 768px) {
  .c-relSec .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
    padding: 0 16px;
  }
}

.footer {
  background: var(--bg-blue);
  color: var(--cc-gray);
  padding: 100px 0;
}
@media screen and (min-width: 769px) {
  .footer {
    min-width: var(--pc-min-size);
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 16px;
  }
}
.footer a {
  color: inherit;
}
.footer__in {
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer__in {
    max-width: 1440px;
  }
}
.footer__cnt {
  display: flex;
}
@media screen and (min-width: 769px) {
  .footer__cnt {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .footer__cnt {
    flex-direction: column;
  }
}
.footer__top .logo img {
  width: 210px;
}
@media screen and (max-width: 768px) {
  .footer__top .logo img {
    width: 172px;
  }
}
.footer__top .infoBlock {
  position: relative;
  font-size: 15px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .footer__top .infoBlock {
    font-size: 12px;
    margin-top: 35px;
  }
}
.footer__top .infoBlock .gmap {
  font-family: var(--ff-min);
  font-size: 12px;
  margin-top: 10px;
}
.footer__top .infoBlock .gmap a {
  border-bottom: solid 1px var(--cc-gray);
  padding-bottom: 0.4em;
}
@media screen and (min-width: 769px) {
  .footer__top .infoBlock .gmap a {
    transition: color 0.3s, border-color 0.3s;
  }
  .footer__top .infoBlock .gmap a:hover {
    color: var(--cc-gold02);
    border-color: var(--cc-gold02);
  }
}
.footer__top .infoBlock .tel {
  margin-top: 33px;
  font-family: var(--ff-min);
}
@media screen and (max-width: 768px) {
  .footer__top .infoBlock .tel {
    margin-top: 30px;
  }
}
.footer__top .infoBlock .sns {
  font-family: var(--ff-min);
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.8;
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .footer__top .infoBlock .sns a {
    transition: color 0.3s;
  }
  .footer__top .infoBlock .sns a:hover {
    color: var(--cc-gold02);
  }
}
@media screen and (max-width: 768px) {
  .footer__top .infoBlock .sns {
    font-size: 14px;
  }
}
.footer__top .lang {
  font-family: var(--ff-min);
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .footer__top .lang {
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .footer__top .lang {
    position: absolute;
    top: 8px;
    right: 0;
    font-size: 12px;
    gap: 10px;
  }
}
.footer__top .lang a {
  color: var(--cc-gray);
}
@media screen and (min-width: 769px) {
  .footer__top .lang a {
    transition: color 0.3s;
  }
  .footer__top .lang a:hover {
    color: var(--cc-gold02);
  }
}
.footer__top .lang .-cr {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid var(--cc-blue02);
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .footer__top .lang .-cr {
    width: 30px;
    height: 30px;
  }
}
.footer__nav {
  display: flex;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .footer__nav {
    padding-top: 125px;
    width: 960px;
    gap: 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .footer__nav {
    justify-content: space-between;
    width: calc(100% - 270px);
    gap: 45px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    font-size: 14px;
    gap: 40px;
    margin-top: 50px;
  }
}
.footer__nav .nav__ttl {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .footer__nav .nav__ttl {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav .nav__ttl {
    padding-bottom: 15px;
    border-bottom: solid 1px #304358;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer__nav .nav__ttl::after {
    content: "";
    background: url(../images/common/icon-acd-open-gry.svg) center center/cover no-repeat;
    width: 11px;
    height: 11px;
  }
}
.footer__nav .nav__list {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .footer__nav .nav__list {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav .nav__list {
    display: none;
  }
}
.footer__nav .nav__list ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  .footer__nav .nav__list ul {
    padding-top: 15px;
    gap: 10px;
  }
}
@media screen and (min-width: 769px) {
  .footer__nav .nav a {
    transition: color 0.3s;
  }
  .footer__nav .nav a:hover {
    color: var(--cc-gold02);
  }
}
@media screen and (max-width: 768px) {
  .footer__nav .nav.-open .nav__ttl:after {
    background-image: url(../images/common/icon-acd-close-gry.svg);
  }
}
.footer__bottom {
  display: flex;
}
@media screen and (min-width: 769px) {
  .footer__bottom {
    justify-content: space-between;
    margin-top: 48px;
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    margin-top: 50px;
  }
}
.footer__bottom .contact a {
  font-family: var(--ff-min);
  color: var(--cc-blue01);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cc-w);
  border-radius: 3px;
  width: 320px;
  height: 80px;
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .footer__bottom .contact a {
    transition: color 0.3s, background 0.3s;
  }
  .footer__bottom .contact a:hover {
    color: #F5F4F2;
    background: #304358;
  }
}
@media screen and (max-width: 1300px) {
  .footer__bottom .contact a {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom .contact a {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}
.footer__bottom .bottom {
  display: flex;
  border-top: solid 1px #304358;
  padding-top: 25px;
}
@media screen and (min-width: 769px) {
  .footer__bottom .bottom {
    justify-content: space-between;
    align-items: center;
    width: 960px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .footer__bottom .bottom {
    justify-content: space-between;
    width: calc(100% - 270px);
    gap: 45px;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom .bottom {
    flex-direction: column;
    margin-top: 50px;
    padding-top: 16px;
  }
}
.footer__bottom .bottom .links {
  display: flex;
  gap: 50px;
}
@media screen and (min-width: 769px) {
  .footer__bottom .bottom .links a {
    transition: color 0.3s;
  }
  .footer__bottom .bottom .links a:hover {
    color: var(--cc-gold02);
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom .bottom .links {
    gap: 30px;
    font-size: 14px;
  }
}
.footer__bottom .bottom .copy {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer__bottom .bottom .copy {
    margin-top: 15px;
    font-size: 10px;
  }
}

.indexPage {
  background: var(--cc-w);
}
@media screen and (min-width: 769px) {
  .indexPage {
    min-width: var(--pc-min-size);
  }
}
.indexPage .kvBlock {
  position: relative;
  overflow: hidden;
  height: calc(var(--vh) * 100);
}
@media screen and (min-width: 769px) {
  .indexPage .kvBlock {
    min-height: 1000px;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) and (max-width: 1279px) {
  .indexPage .kvBlock {
    min-height: 745px;
    height: 745px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock {
    min-height: 768px;
  }
}
.indexPage .kvBlock .videoBox {
  position: relative;
  width: 100%;
  height: 100%;
}
.indexPage .kvBlock .videoBox__bgLayer {
  overflow: hidden;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.indexPage .kvBlock .videoBox__bgLayer div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.indexPage .kvBlock .videoBox__bgLayer div.l1 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 78.65%);
}
.indexPage .kvBlock .videoBox__bgLayer div.l2 {
  opacity: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.indexPage .kvBlock .videoBox__bgLayer div.l3 {
  background: rgba(0, 0, 0, 0.5);
}
.indexPage .kvBlock .videoBox__bgLayer .smoke {
  top: 0;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .videoBox__bgLayer .smoke {
    top: 230px;
  }
}
.indexPage .kvBlock .videoBox__bgLayer .smoke img {
  mix-blend-mode: screen;
  max-width: -moz-fit-content;
  max-width: fit-content;
  opacity: 0;
  width: 2076px;
  animation: steamMove 6s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .videoBox__bgLayer .smoke img {
    width: 746px;
  }
}
@keyframes steamMove {
  0% {
    transform: translateY(0) scale(0.9);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-120px) scale(1.1);
    opacity: 0;
  }
}
.indexPage .kvBlock .videoBox video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.indexPage .kvBlock .kvTxtBlock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.indexPage .kvBlock .kvTxtBlock .ttlBlock {
  position: relative;
  opacity: 0;
  transition: opacity 1s;
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .kvTxtBlock .ttlBlock {
    width: 110px;
  }
}
@media all and (min-width: 769px) and (max-width: 1279px) {
  .indexPage .kvBlock .kvTxtBlock .ttlBlock .ttl {
    display: block;
    width: 97.5px;
    margin: 0 auto;
  }
}
.indexPage .kvBlock .kvTxtBlock .ttlBlock .copy {
  position: absolute;
  width: 19px;
  bottom: -18px;
  right: -68px;
}
@media all and (min-width: 769px) and (max-width: 1279px) {
  .indexPage .kvBlock .kvTxtBlock .ttlBlock .copy {
    width: 12.35px;
    bottom: -11.7px;
    right: -44.2px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .kvTxtBlock .ttlBlock .copy {
    width: 15px;
    bottom: -38px;
    right: -50px;
  }
}
.indexPage .kvBlock .kvTxtBlock .btn {
  width: 150px;
  margin-top: 70px;
  opacity: 0;
  transform: translateX(-15%);
  transition: all 1s 0.6s;
}
@media all and (min-width: 769px) and (max-width: 1279px) {
  .indexPage .kvBlock .kvTxtBlock .btn {
    width: 97.5px;
    margin-top: 45.5px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .kvTxtBlock .btn {
    width: 110px;
    margin-top: 95px;
  }
}
.indexPage .kvBlock .kvTxtBlock .btn button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: var(--cc-w);
  font-family: var(--ff-min);
  font-size: 15px;
  padding: 0;
  border: none;
  padding-bottom: 6px;
  border-bottom: solid 1px var(--cc-w);
}
@media all and (min-width: 769px) and (max-width: 1279px) {
  .indexPage .kvBlock .kvTxtBlock .btn button {
    font-size: 9.75px;
    padding-bottom: 3.9px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .kvTxtBlock .btn button {
    font-size: 12px;
  }
}
.indexPage .kvBlock .kvTxtBlock .btn button:after {
  content: "";
  background: url(../images/index/icon-movie.svg) center center/cover no-repeat;
  width: 12px;
  height: 8px;
}
.indexPage .kvBlock .kvNews {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--gold02, #A18E5F);
}
@media screen and (min-width: 769px) {
  .indexPage .kvBlock .kvNews {
    border-radius: 0 3px 0 0;
    padding: 27px 40px;
    position: fixed;
  }
  .-fixedNews .indexPage .kvBlock .kvNews {
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .kvNews {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 40px;
  }
}
.indexPage .kvBlock .kvNews a {
  color: var(--cc-w);
  display: flex;
  align-items: center;
  gap: 19px;
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .kvNews a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}
.indexPage .kvBlock .kvNews .date {
  font-family: var(--ff-min);
  font-size: 12px;
}
.indexPage .kvBlock .kvNews .txt {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .indexPage .kvBlock .kvNews .txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* 2行まで表示 */
    overflow: hidden;
    text-overflow: ellipsis; /* 省略記号を表示（オプション） */
    line-height: 1.8;
    font-size: 14px;
  }
}
.indexPage .kvBlock.-init .kvTxtBlock .ttlBlock {
  opacity: 1;
}
.indexPage .kvBlock.-init .kvTxtBlock .btn {
  opacity: 1;
  transform: translateX(0);
}
.indexPage .conceptSec {
  padding: 140px 0 150px;
}
@media screen and (max-width: 768px) {
  .indexPage .conceptSec {
    padding: 70px 0;
  }
}
.indexPage .conceptSec__in {
  display: flex;
  margin: 0 auto;
  max-width: 1440px;
}
@media screen and (max-width: 768px) {
  .indexPage .conceptSec__in {
    flex-direction: column;
  }
}
.indexPage .conceptSec .imgBox {
  position: relative;
}
@media screen and (min-width: 769px) {
  .indexPage .conceptSec .imgBox {
    width: 50%;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .conceptSec .imgBox {
    margin: 0 16px 30px;
    padding-bottom: 13%;
  }
}
.indexPage .conceptSec .imgBox .-img1 {
  position: relative;
  overflow: hidden;
  transition-delay: 0.5s;
  border-radius: 3px;
  width: 83.34%;
  transition: opacity 1s 0.5s;
}
@media screen and (max-width: 768px) {
  .indexPage .conceptSec .imgBox .-img1 {
    width: 74.34%;
  }
}
.indexPage .conceptSec .imgBox .-img2 {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  transition-delay: 1s;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 41.67%;
  transition: opacity 1s 1s;
}
@media screen and (max-width: 768px) {
  .indexPage .conceptSec .imgBox .-img2 {
    width: 38.67%;
  }
}
.indexPage .conceptSec .imgBox .-img1, .indexPage .conceptSec .imgBox .-img2 {
  opacity: 0;
}
.indexPage .conceptSec .imgBox .-img1 img, .indexPage .conceptSec .imgBox .-img2 img {
  transition: transform 5s;
  transform: scale(1.2);
}
.indexPage .conceptSec .imgBox.-viewed .-img1, .indexPage .conceptSec .imgBox.-viewed .-img2 {
  transform: translateY(0px);
  opacity: 1;
}
.indexPage .conceptSec .imgBox.-viewed .-img1 img, .indexPage .conceptSec .imgBox.-viewed .-img2 img {
  transform: scale(1);
}
@media screen and (min-width: 769px) {
  .indexPage .conceptSec .txtBlock {
    width: 50%;
    display: flex;
    justify-content: center;
    padding-top: 100px;
  }
}
.indexPage .conceptSec .txtBlock__in {
  color: var(--cc-blue01);
  font-family: var(--ff-min);
  display: flex;
  flex-direction: column;
  font-weight: 400;
  line-height: 250%; /* 50px */
  gap: 25px;
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .indexPage .conceptSec .txtBlock__in {
    padding-left: 5%;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .conceptSec .txtBlock__in {
    margin: 0 40px;
    line-height: 2;
    gap: 15px;
    font-size: 16px;
  }
}
.indexPage .conceptSec .txtBlock .js-iv p {
  transition: opacity 2s;
  opacity: 0;
}
.indexPage .conceptSec .txtBlock .js-iv.-viewed p {
  opacity: 1;
}
.indexPage .conceptSec .txtBlock .js-iv.-viewed p:nth-child(1) {
  transition-delay: 0s;
}
.indexPage .conceptSec .txtBlock .js-iv.-viewed p:nth-child(2) {
  transition-delay: 0.5s;
}
.indexPage .conceptSec .txtBlock .js-iv.-viewed p:nth-child(3) {
  transition-delay: 1.5s;
}
.indexPage .conceptSec .txtBlock .js-iv.-viewed p:nth-child(4) {
  transition-delay: 2s;
}
.indexPage .conceptSec .txtBlock .js-iv.-viewed p:nth-child(5) {
  transition-delay: 2.5s;
}
.indexPage .inKv {
  position: relative;
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
  height: 700px;
}
.indexPage .inKv__img {
  z-index: -1;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .indexPage .inKv__img {
    position: fixed;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .inKv.-kv1 {
    height: 234px;
  }
  .indexPage .inKv.-kv2 {
    height: auto;
  }
}
.indexPage .c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cc-gold02);
  border-radius: 3px;
  color: var(--cc-w);
  width: 200px;
  height: 50px;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .indexPage .c-btn {
    transition: background 0.3s;
  }
  .indexPage .c-btn:hover {
    background: var(--cc-gold01);
  }
}
@media screen and (max-width: 768px) {
  .indexPage .c-btn {
    font-size: 14px;
    height: 40px;
  }
}
.indexPage .secHead {
  color: var(--cc-blue01);
  text-align: center;
  line-height: 1;
  font-family: var(--ff-min);
}
.indexPage .secHead__ttl {
  font-weight: 400;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .indexPage .secHead__ttl {
    font-size: 28px;
  }
}
.indexPage .secHead__txtE {
  font-size: 16px;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .indexPage .secHead__txtE {
    font-size: 12px;
  }
}
.indexPage .roomSec {
  background: var(--bg-kinari);
  overflow: hidden;
  padding: 135px 0 140px;
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec {
    padding: 55px 0 70px;
  }
}
.indexPage .roomSec__cnt {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .indexPage .roomSec__cnt {
    margin-top: 65px;
    width: 1470px;
  }
  .indexPage .roomSec__cnt:before, .indexPage .roomSec__cnt:after {
    background: var(--bg-kinari);
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 15px;
    z-index: 1;
  }
  .indexPage .roomSec__cnt:before {
    left: 0;
  }
  .indexPage .roomSec__cnt:after {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__cnt {
    width: 933px;
    margin-top: 30px;
  }
}
.indexPage .roomSec__cnt .slick-slider {
  margin-bottom: 0;
}
.indexPage .roomSec__cnt .slick-arrow {
  width: 60px;
  height: 60px;
  background: center center/cover no-repeat;
  top: 130px;
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__cnt .slick-arrow {
    width: 40px;
    height: 40px;
    top: 96px;
  }
}
.indexPage .roomSec__cnt .slick-arrow:before {
  display: none;
}
.indexPage .roomSec__cnt .slick-arrow.slick-prev {
  z-index: 1;
  background-image: url(../images/index/ico-room-arw-l.svg);
  left: 15px;
}
@media screen and (min-width: 769px) {
  .indexPage .roomSec__cnt .slick-arrow.slick-prev {
    transition: background 0.2s;
  }
  .indexPage .roomSec__cnt .slick-arrow.slick-prev:hover {
    background-image: url(../images/index/ico-room-arw-l-hvr.svg);
  }
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__cnt .slick-arrow.slick-prev {
    left: 50%;
    margin-left: -150px;
  }
}
.indexPage .roomSec__cnt .slick-arrow.slick-next {
  z-index: 1;
  background-image: url(../images/index/ico-room-arw-r.svg);
  right: 15px;
}
@media screen and (min-width: 769px) {
  .indexPage .roomSec__cnt .slick-arrow.slick-next {
    transition: background 0.2s;
  }
  .indexPage .roomSec__cnt .slick-arrow.slick-next:hover {
    background-image: url(../images/index/ico-room-arw-r-hvr.svg);
  }
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__cnt .slick-arrow.slick-next {
    right: 50%;
    margin-right: -150px;
  }
}
.indexPage .roomSec__cnt .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.indexPage .roomSec__cnt .slick-dots li {
  display: inline-block !important;
  margin: 0;
  width: 8px;
  height: 8px;
}
.indexPage .roomSec__cnt .slick-dots li button {
  border-radius: 50%;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--cc-gray);
}
.indexPage .roomSec__cnt .slick-dots li button:before {
  display: none;
}
.indexPage .roomSec__cnt .slick-dots li.slick-active button {
  background: var(--cc-gold02);
}
.indexPage .roomSec__cnt .slideItem__link {
  display: block;
  color: var(--cc-blue01);
  box-sizing: border-box;
  padding: 0 15px;
  width: 490px;
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__cnt .slideItem__link {
    width: 311px;
    padding: 0 8px;
  }
}
.indexPage .roomSec__cnt .slideItem .img img {
  border-radius: 3px;
}
.indexPage .roomSec__cnt .slideItem .ttl {
  font-family: var(--ff-min);
  font-size: 24px;
  font-weight: 400;
  line-height: 250%; /* 60px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 20px;
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__cnt .slideItem .ttl {
    line-height: normal;
    font-size: 20px;
  }
}
.indexPage .roomSec__cnt .slideItem .ttl:after {
  content: "";
  background: url(../images/index/ico-room-btn.svg) center center/cover no-repeat;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__cnt .slideItem .ttl:after {
    width: 20px;
    height: 20px;
  }
}
.indexPage .roomSec__cnt .slideItem .txt {
  font-size: 15px;
  font-weight: 500;
  line-height: 180%; /* 27px */
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__cnt .slideItem .txt {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .indexPage .roomSec__cnt .slideItem .img {
    overflow: hidden;
  }
  .indexPage .roomSec__cnt .slideItem .img img {
    transition: transform 0.5s;
  }
  .indexPage .roomSec__cnt .slideItem:hover .img img {
    transform: scale(1.05);
  }
}
.indexPage .roomSec__cnt .slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.indexPage .roomSec__cnt .slider-dots button {
  margin: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cc-gray);
  border: none;
  padding: 0;
  display: block;
}
.indexPage .roomSec__cnt .slider-dots button.-active {
  background: var(--cc-gold02);
}
.indexPage .roomSec__btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .indexPage .roomSec__btn {
    margin-top: 40px;
  }
}
.indexPage .hcSec {
  padding: 135px 0 160px;
}
@media screen and (max-width: 768px) {
  .indexPage .hcSec {
    padding: 80px 0 70px;
  }
}
.indexPage .hcSec__cnt {
  display: flex;
  margin: 65px auto 0;
}
@media screen and (min-width: 769px) {
  .indexPage .hcSec__cnt {
    justify-content: space-between;
    max-width: 1440px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .hcSec__cnt {
    flex-direction: column;
    margin: 35px 16px 0;
    gap: 16px;
  }
}
.indexPage .hcSec__cnt .item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .indexPage .hcSec__cnt .item {
    width: calc(50% - 15px);
  }
}
.indexPage .hcSec__cnt .item__txtBlock {
  color: var(--cc-blue01);
  background: var(--bg-kinari);
  padding: 50px 80px 70px;
}
@media screen and (max-width: 768px) {
  .indexPage .hcSec__cnt .item__txtBlock {
    padding: 30px 44px 50px;
  }
}
.indexPage .hcSec__cnt .item__txtBlock .ttl {
  font-family: var(--ff-min);
  line-height: 250%; /* 60px */
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .indexPage .hcSec__cnt .item__txtBlock .ttl {
    font-size: 18px;
  }
}
.indexPage .hcSec__cnt .item__txtBlock .txt {
  font-size: 15px;
  font-weight: 500;
  line-height: 180%; /* 27px */
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .indexPage .hcSec__cnt .item__txtBlock .txt {
    font-size: 14px;
  }
}
.indexPage .hcSec__cnt .item__txtBlock .btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .indexPage .hcSec__cnt .item__txtBlock .btn {
    margin-top: 20px;
  }
}
.indexPage .hcSec__cnt .item__img {
  overflow: hidden;
}
.indexPage .hcSec__cnt .item__img img {
  transition: transform 1s;
  transform: scale(1.1);
}
.indexPage .hcSec__cnt .item__img.-viewed img {
  transform: scale(1);
}
.indexPage .expSec {
  background: var(--bg-kinari);
  padding: 155px 0 220px;
}
@media screen and (max-width: 768px) {
  .indexPage .expSec {
    padding: 75px 0 80px;
  }
}
.indexPage .expSec__cnt {
  display: flex;
  flex-direction: column;
  margin: 85px auto 0;
  max-width: 1600px;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .indexPage .expSec__cnt {
    gap: 60px;
    margin-top: 50px;
  }
}
.indexPage .expSec .item {
  display: flex;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .indexPage .expSec .item {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .expSec .item {
    flex-direction: column;
  }
}
.indexPage .expSec .item__img {
  transition: opacity 1s;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .indexPage .expSec .item__img {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .expSec .item__img {
    padding-right: 40px;
    margin-bottom: 20p;
  }
}
.indexPage .expSec .item__img.-viewed {
  opacity: 1;
}
.indexPage .expSec .item__img img {
  border-radius: 0 3px 3px 0;
}
.indexPage .expSec .item__txtBlock {
  color: var(--cc-blue01);
}
@media screen and (min-width: 769px) {
  .indexPage .expSec .item__txtBlock {
    box-sizing: border-box;
    width: 45%;
    padding: 0 80px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .expSec .item__txtBlock {
    padding: 30px 40px 0;
  }
}
.indexPage .expSec .item__txtBlock .ttl {
  font-family: var(--ff-min);
  line-height: 1;
  font-weight: 400;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .indexPage .expSec .item__txtBlock .ttl {
    font-size: 20px;
  }
}
.indexPage .expSec .item__txtBlock .txt {
  font-size: 15px;
  font-weight: 500;
  line-height: 180%; /* 27px */
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .indexPage .expSec .item__txtBlock .txt {
    font-size: 14px;
    margin-top: 23px;
  }
}
.indexPage .expSec .item__txtBlock .btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .indexPage .expSec .item__txtBlock .btn {
    margin-top: 23px;
  }
}
@media screen and (min-width: 769px) {
  .indexPage .expSec .item:nth-child(2) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .expSec .item:nth-child(2) .item__img {
    padding-right: 0px;
    padding-left: 40px;
  }
}
.indexPage .expSec .item:nth-child(2) .item__img img {
  border-radius: 3px 0 0 3px;
}
.indexPage .aboutSec {
  overflow: hidden;
  padding: 0;
  position: relative;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .indexPage .aboutSec {
    height: 350px;
  }
}
.indexPage .aboutSec__sld {
  position: relative;
}
.indexPage .aboutSec__sld .slditem {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  animation: marq 100s linear infinite;
}
.indexPage .aboutSec__sld .slditem img {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 800px;
}
@media screen and (max-width: 768px) {
  .indexPage .aboutSec__sld .slditem img {
    width: 465px;
  }
}
.indexPage .aboutSec:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  z-index: 2;
}
.indexPage .aboutSec__cnt {
  position: relative;
  z-index: 3;
  padding-top: 185px;
}
@media screen and (max-width: 768px) {
  .indexPage .aboutSec__cnt {
    padding-top: 70px;
  }
}
.indexPage .aboutSec__cnt .secHead {
  color: var(--cc-w);
}
.indexPage .aboutSec__cnt .txt {
  color: var(--cc-w);
  text-align: center;
  font-family: var(--ff-min);
  font-size: 36px;
  margin: 40px 0 25px;
}
@media screen and (max-width: 768px) {
  .indexPage .aboutSec__cnt .txt {
    line-height: 1.8;
    font-size: 18px;
  }
}
.indexPage .aboutSec .btn {
  display: flex;
  justify-content: center;
}
@keyframes marq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.indexPage .newsSec {
  padding: 155px 0 140px;
}
@media screen and (max-width: 768px) {
  .indexPage .newsSec {
    padding: 80px 0px 70px;
  }
}
.indexPage .newsSec__in {
  display: flex;
  margin: 67px auto 0;
}
@media screen and (min-width: 769px) {
  .indexPage .newsSec__in {
    max-width: 1040px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .newsSec__in {
    flex-direction: column;
    padding: 0 16px;
    margin-top: 35px;
  }
}
.indexPage .newsSec .catList {
  font-family: var(--ff-min);
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .indexPage .newsSec .catList {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .newsSec .catList {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    margin-bottom: 25px;
  }
}
.indexPage .newsSec .catList a, .indexPage .newsSec .catList button {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-blue01);
  width: 200px;
  height: 50px;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .indexPage .newsSec .catList a, .indexPage .newsSec .catList button {
    transition: background 0.3s;
  }
  .indexPage .newsSec .catList a:hover, .indexPage .newsSec .catList button:hover {
    background: var(--background, #E7E2D7);
  }
}
@media screen and (max-width: 768px) {
  .indexPage .newsSec .catList a, .indexPage .newsSec .catList button {
    width: 100%;
    font-size: 12px;
    height: 30px;
  }
}
.indexPage .newsSec .catList a.-cr, .indexPage .newsSec .catList button.-cr {
  pointer-events: none;
  background: var(--background, #E7E2D7);
}
@media screen and (min-width: 769px) {
  .indexPage .newsSec__cnt {
    width: 760px;
  }
}
.indexPage .newsSec__cnt .newsListBlock {
  display: none;
}
.indexPage .newsSec__cnt .newsListBlock:first-child {
  display: block;
}
.indexPage .newsSec .btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .indexPage .newsSec .btn {
    margin-top: 30px;
  }
}
.indexPage .accessSec {
  background: var(--bg-kinari);
  padding: 135px 0 140px;
}
@media screen and (max-width: 768px) {
  .indexPage .accessSec {
    padding: 70px 0 60px;
  }
}
.indexPage .accessSec__cnt {
  margin: 60px auto 0;
  max-width: 1440px;
  display: flex;
}
@media screen and (min-width: 769px) {
  .indexPage .accessSec__cnt {
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .accessSec__cnt {
    flex-direction: column;
    padding: 0 16px;
    margin-top: 35px;
  }
}
.indexPage .accessSec__map {
  transition: opacity 1s;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .indexPage .accessSec__map {
    width: 45%;
    max-width: 640px;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .accessSec__map {
    margin-bottom: 30px;
  }
}
.indexPage .accessSec__map.-viewed {
  opacity: 1;
}
.indexPage .accessSec__map img {
  mix-blend-mode: multiply;
}
@media screen and (min-width: 769px) {
  .indexPage .accessSec__txtBlock {
    width: 50%;
  }
}
.indexPage .accessSec__txtBlock .list {
  display: flex;
  flex-direction: column;
}
.indexPage .accessSec__txtBlock .item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--cc-blue01);
  border-bottom: solid 1px var(--cc-line);
  padding-bottom: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .indexPage .accessSec__txtBlock .item {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
.indexPage .accessSec__txtBlock .item__label {
  font-family: var(--ff-min);
  border-radius: 2px;
  background: var(--cc-blue01);
  color: var(--cc-w);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 80px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .indexPage .accessSec__txtBlock .item__label {
    width: 50px;
  }
}
.indexPage .accessSec__txtBlock .item__val {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 500;
  line-height: 220%; /* 33px */
}
@media screen and (min-width: 769px) {
  .indexPage .accessSec__txtBlock .item__val .tel {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .indexPage .accessSec__txtBlock .item__val {
    width: calc(100% - 140px);
  }
}
@media screen and (max-width: 768px) {
  .indexPage .accessSec__txtBlock .item__val {
    width: calc(100% - 82px);
    line-height: 2;
    font-size: 14px;
  }
}
.indexPage .accessSec__txtBlock .btn {
  padding-top: 5px;
}
.indexPage .linkSec {
  padding: 160px 0;
}
@media screen and (max-width: 768px) {
  .indexPage .linkSec {
    padding: 80px 16px;
  }
}
.indexPage .linkSec__in {
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
}
@media screen and (min-width: 769px) {
  .indexPage .linkSec__in {
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .linkSec__in {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 769px) {
  .indexPage .linkSec__txtBlock {
    width: 45%;
    max-width: 640px;
  }
}
.indexPage .linkSec__txtBlock ul {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .indexPage .linkSec__txtBlock ul {
    gap: 23px;
  }
}
.indexPage .linkSec__txtBlock ul li {
  padding-bottom: 35px;
  border-bottom: solid 1px var(--cc-line);
}
@media screen and (max-width: 768px) {
  .indexPage .linkSec__txtBlock ul li {
    padding-bottom: 23px;
  }
}
.indexPage .linkSec__txtBlock ul li a {
  font-family: var(--ff-min);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cc-blue01);
  line-height: 1;
  font-size: 28px;
}
@media screen and (min-width: 769px) {
  .indexPage .linkSec__txtBlock ul li a {
    transition: color 0.3s;
  }
  .indexPage .linkSec__txtBlock ul li a:hover {
    color: var(--cc-gold02);
  }
  .indexPage .linkSec__txtBlock ul li a:hover:after {
    background-image: url(../images/index/ico-link-arw-gold.svg);
  }
}
@media screen and (max-width: 768px) {
  .indexPage .linkSec__txtBlock ul li a {
    font-size: 20px;
  }
}
.indexPage .linkSec__txtBlock ul li a .txtE {
  margin-left: 20px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .indexPage .linkSec__txtBlock ul li a .txtE {
    font-size: 10px;
    margin-left: 15px;
  }
}
.indexPage .linkSec__txtBlock ul li a::after {
  content: "";
  background: url(../images/index/ico-link-arw.svg) center center/100% auto no-repeat;
  width: 10px;
  height: 10px;
  transition: background 0.3s;
}
@media screen and (min-width: 769px) {
  .indexPage .linkSec__img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .indexPage .linkSec__img {
    margin-bottom: 35px;
  }
}
.indexPage .linkSec__img img {
  width: 100%;
}

.remodal-close {
  position: absolute;
  top: 0px;
  right: 0;
  width: 45px;
  height: 44px;
  background: url(../img/menu_btn-close.svg) center center/100% auto no-repeat;
}
.remodal-close:before {
  display: none;
}

.remodal {
  max-width: 1200px;
  padding: 80px 0;
}

.mdlmovieCnt {
  position: relative;
}
.mdlmovieCnt .movBox {
  position: relative;
  padding-top: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
}
.mdlmovieCnt .movBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mdlmovieCnt .remodal-close {
  position: absolute;
  left: auto;
  right: 0;
  top: -50px;
  width: 20px;
  height: 20px;
  background: url(../images/common/mdl-close_icon.svg) center center/100% auto no-repeat;
}
.mdlmovieCnt .remodal-close:before {
  display: none;
}

@media screen and (min-width: 769px) {
  .newsIndex {
    min-width: 1120px;
  }
}
.newsIndex #main-visual {
  background-image: url(../images/news/kv.jpg);
}
.newsIndex #main-visual h1 {
  font-size: 2.4rem;
  font-family: "Sawarabi Mincho", sans-serif;
  padding: 10px 0px;
  border-bottom: solid 1px #fff;
  width: 240px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .newsIndex #main-visual h1 {
    font-size: 1.8rem;
    width: 170px;
    line-height: 1.2;
  }
}
.newsIndex .pageCnt {
  background: url(../images/common/kinari_bg.jpg);
  padding: 109px 0 90px;
}
@media screen and (max-width: 768px) {
  .newsIndex .pageCnt {
    padding: 48px 0;
  }
}
@media screen and (min-width: 769px) {
  .newsIndex .pageCnt__in {
    margin: 0 auto;
    width: 1040px;
  }
}
@media screen and (max-width: 768px) {
  .newsIndex .pageCnt__in {
    margin: 0 16px;
  }
}
.newsIndex .pageCnt .catList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .newsIndex .pageCnt .catList {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
  }
}
.newsIndex .pageCnt .catList li {
  color: var(--blue01);
  text-align: center;
  font-family: var(--ff-min);
  font-size: 15px;
  font-weight: 400;
  line-height: 180%; /* 27px */
}
@media screen and (max-width: 768px) {
  .newsIndex .pageCnt .catList li {
    font-size: 12px;
  }
}
.newsIndex .pageCnt .catList li a {
  color: var(--cc-blue01);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .newsIndex .pageCnt .catList li a {
    height: 30px;
  }
}
.newsIndex .pageCnt .catList li a.-cr {
  background: var(--cc-gray);
}
@media screen and (min-width: 769px) {
  .newsIndex .pageCnt .catList li a {
    transition: background 0.3s;
  }
  .newsIndex .pageCnt .catList li a:hover {
    background: var(--cc-gray);
  }
}
.newsSingle .kvBlock {
  background-image: var(--bg-blue);
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock {
    padding: 50px 0;
  }
}
.newsSingle .kvBlock__in {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .newsSingle .kvBlock__in {
    width: 1040px;
  }
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock__in {
    margin-left: 16px;
    margin-right: 16px;
  }
}
.newsSingle .kvBlock__img {
  margin: 65px auto 0;
}
@media screen and (min-width: 769px) {
  .newsSingle .kvBlock__img {
    width: 640px;
  }
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock__img {
    margin: 30px 24px 0;
  }
}
.newsSingle .kvBlock__img img {
  border-radius: 3px;
  width: 100%;
}
.newsSingle .kvBlock .cat {
  font-family: var(--ff-min);
  display: flex;
  gap: 10px;
  font-weight: 400;
  line-height: 180%; /* 21.6px */
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock .cat {
    margin-bottom: 20px;
  }
}
.newsSingle .kvBlock .cat p {
  color: var(--cc-blue01);
  background: var(--cc-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border-radius: 2px;
  font-size: 12px;
  padding: 9px 16px;
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock .cat p {
    font-size: 10px;
    padding: 5px 10px;
  }
}
.newsSingle .kvBlock .ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock .ttl {
    font-size: 20px;
  }
}
.newsSingle .kvBlock .date {
  font-family: var(--ff-min);
  display: flex;
  gap: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock .date {
    gap: 30px;
    margin-top: 15px;
  }
}
.newsSingle .kvBlock .date dl {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock .date dl {
    gap: 10px;
  }
}
.newsSingle .kvBlock .date dl dt {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock .date dl dt {
    font-size: 10px;
  }
}
.newsSingle .kvBlock .date dl dd {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .newsSingle .kvBlock .date dl dd {
    font-size: 10px;
  }
}
@media screen and (min-width: 769px) {
  .newsSingle .bread .inner_con {
    width: 1040px;
  }
}
.newsSingle .pageCnt {
  background: url(../images/common/kinari_bg.jpg);
  padding: 80px 0 80px;
}
@media screen and (max-width: 768px) {
  .newsSingle .pageCnt {
    padding: 48px 16px 35px;
  }
}
@media screen and (min-width: 769px) {
  .newsSingle .pageCnt__in {
    margin: 0 auto;
    width: 1040px;
  }
}
.newsSingle .dynamic-headingSec {
  width: auto;
  color: var(--cc-blue01);
  background: var(--cc-gray);
  padding: 50px 60px;
}
@media screen and (max-width: 768px) {
  .newsSingle .dynamic-headingSec {
    padding: 35px 24px;
  }
}
.newsSingle .dynamic-headingSec__ttl {
  font-family: var(--ff-min);
  font-size: 15px;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .newsSingle .dynamic-headingSec__ttl {
    margin-bottom: 20px;
  }
}
.newsSingle .dynamic-headingSec a {
  color: inherit;
}
.newsSingle .dynamic-headingSec ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsSingle .dynamic-headingSec li {
  text-indent: -1em;
  padding-left: 1em;
}
.newsSingle .dynamic-headingSec li p {
  text-decoration: underline;
  display: inline;
}
.newsSingle .postSec {
  color: var(--cc-blue01);
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
  padding: 75px 200px 100px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .newsSingle .postSec {
    padding: 60px 24px 60px;
    font-size: 14px;
  }
}
.newsSingle .postSec h2 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%; /* 36px */
  padding-bottom: 30px;
  padding-top: 100px;
}
.newsSingle .postSec h2:after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 1040px;
  height: 1px;
  background: #DBD5C5;
}
@media screen and (min-width: 769px) {
  .newsSingle .postSec h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .newsSingle .postSec h2:after {
    width: calc(100% + 48px);
    left: -24px;
  }
}
@media screen and (max-width: 768px) {
  .newsSingle .postSec h2 {
    padding-bottom: 25px;
    padding-top: 60px;
    font-size: 16px;
  }
}
.newsSingle .postSec h2:first-child {
  padding-top: 0 !important;
}
.newsSingle .postSec figure {
  padding: 40px 0 0;
}
@media screen and (min-width: 769px) {
  .newsSingle .postSec figure {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
  }
}
@media screen and (max-width: 768px) {
  .newsSingle .postSec figure {
    padding: 25px 0 0;
  }
}
.newsSingle .postSec img {
  border-radius: 3px;
  width: 100%;
}
.newsSingle .postSec h3, .newsSingle .postSec h4, .newsSingle .postSec h5, .newsSingle .postSec h6 {
  font-weight: bold;
  line-height: 220%;
}
@media screen and (min-width: 769px) {
  .newsSingle .postSec h3, .newsSingle .postSec h4, .newsSingle .postSec h5, .newsSingle .postSec h6 {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .newsSingle .postSec h3, .newsSingle .postSec h4, .newsSingle .postSec h5, .newsSingle .postSec h6 {
    padding-top: 25px;
  }
}
.newsSingle .postSec p {
  font-weight: 500;
  line-height: 220%;
}
@media screen and (min-width: 769px) {
  .newsSingle .postSec p {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .newsSingle .postSec p {
    padding-top: 25px;
  }
}
.newsSingle .postSec p a {
  color: inherit;
  text-decoration: underline;
}
.newsSingle .postSec strong, .newsSingle .postSec b {
  font-weight: 700;
}
.newsSingle .postSec .wp-block-list {
  padding-top: 40px;
  padding-left: 1.3em;
}
@media screen and (max-width: 768px) {
  .newsSingle .postSec .wp-block-list {
    padding-top: 25px;
  }
}
.newsSingle .postSec .wp-block-list li {
  list-style: disc;
}
.newsSingle .toList a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-min);
  color: var(--cc-w);
  background: var(--cc-gold01);
  border-radius: 3px;
  width: 200px;
  height: 50px;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .newsSingle .toList a {
    transition: background 0.3s;
  }
  .newsSingle .toList a:hover {
    background: var(--cc-gold02);
  }
}
@media screen and (max-width: 768px) {
  .newsSingle .toList a {
    height: 40px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */