@charset "UTF-8";

/* Source: css/reset.css */
/* CSS Document */

/*reset
-------------------------------------------------------------------------------------*/
*{
	padding:0;
	margin:0;
}
 
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
	line-height:1.75;
    vertical-align:baseline;
    background:transparent;
	/*font-family: 'Noto Sans JP', sans-serif;*/
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
	font-size:100%;
	/*
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
    */
}

html{
	height:100%;
}
 
/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:1;
	height:100%;
	position:relative;
	-webkit-text-size-adjust: 100%;/*スマホやタブレットを横サイズにした場合に変動してしまうフォントサイズを維持（阻止）するための記述*/
}
 
/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
 
/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
    list-style:none;
}
ul li{
	list-style:none;
}

 
/*引用符の表示が出ないようにしています*/
blockquote, q {
    quotes:none;
}
 
/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

 
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	color:#fff;
    /*
	-webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
    */
	/*font-family: 'Noto Sans JP', sans-serif;*//*ゴシック*/
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
	line-height:1em;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

a img{
	border:0;
	outline:none;
}

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

a:active{
	color:#fff;
}

a:visited{
	color:#fff;
}

a:hover{
	text-decoration:none;
}
 
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
 
/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}
 
/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse:collapse;
    border-spacing:0;
	width:100%;
}
 
/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
    vertical-align:middle;
}

img {
	vertical-align: top;
	font-size:0;
	line-height: 0;
    display:block;
}

.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/* Source: css/base.css */
/* リセットここから */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1.5;
}

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

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
/* リセットここまで */

/* 変数 */
:root {

}

/* 基本設定 */
/*
html, body {
    overflow-x: hidden;
}
*/
html {
    overflow-x: hidden;
}
p {
    text-align: justify;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style-type: none;
}

/* Source: css/style.css */
body *, .gothic {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.mincho, .main #access .access-list .list-item h5, .main #access .inner-nav .navbar a *, .main #facility .floor-all .floor-map .inner-text, .main #facility .floor-all .floor-map span, .main #restaurant .list-item p, .main .menu-list .menu-item h4, .main .menu-list .menu-item h4 *, .main .info-table tbody td:first-child, .main .info-table thead th, .main .right-line, .main #spa .info-gallery .item p, .main #spa .spa-lead, .main #information .title, nav .reserve-contact p a, nav .reserve-contact p, nav .sns li, nav .navbar li p, nav .navbar li span, nav .top-menu p, nav .btn-text .close, nav .btn-text .open, header .header-inner .main-visual .main-info .wrapper .announce p, header .header-inner .main-visual .main-info .wrapper .thanks p, header .header-inner .main-visual .sub-title, header .header-inner .main-visual .hero-copy, h1, h1 *,h2, h2 *, h3, h4 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

body {
  background-image: url("../img/background.jpg");
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: scroll;
  color: #f7f7f7;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}

.defer-offscreen-rendering {
  content-visibility: hidden;
  contain-intrinsic-size: 1px 900px;
}

body * {
  font-size: 1rem;
}

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

.gtm-noscript {
  display: none;
  visibility: hidden;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1000px;
}

@media screen and (min-width: 768px) {
  .container {
    width: 100%;
  }
}
header .header-inner {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
header .header-inner .main-visual {
  position: relative;
}
header .header-inner .main-visual .logo {
  position: absolute;
  top: 3%;
  left: 5%;
  width: 55%;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.75));
}
header .header-inner .main-visual .hero-copy {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
header .header-inner .main-visual .main-logo {
  position: absolute;
  top: calc(50% - 2em);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10em;
}
header .header-inner .main-visual .sub-title {
  position: absolute;
  top: 54.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-feature-settings: "palt";
}
header .header-inner .main-visual .anime .info-time {
  position: absolute;
  bottom: 41.5%;
  right: 1.5%;
  width: 23%;
  height: auto;
}
@media screen and (min-width: 368px) {
  header .header-inner .main-visual .anime .info-time {
    bottom: 31.5%;
  }
}
header .header-inner .main-visual .anime .nologo {
  position: absolute;
  bottom: 36%;
  right: 1.5%;
  width: 23%;
  height: auto;
}
@media screen and (min-width: 368px) {
  header .header-inner .main-visual .anime .nologo {
    bottom: 23.5%;
  }
}
header .header-inner .main-visual .main-info {
  background-color: #000;
  padding-top: 1em;
  padding-bottom: 1em;
}
header .header-inner .main-visual .main-info .wrapper {
  width: 95%;
  margin: 0 auto;
}
header .header-inner .main-visual .main-info .wrapper .thanks p {
  text-align: center;
}
header .header-inner .main-visual .main-info .wrapper .announce p {
  text-align: center;
}

@media screen and (min-width: 768px) {
  header .header-inner .main-visual .logo {
    top: 10px;
    left: 30px;
    width: 16%;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.75));
  }
  header .header-inner .main-visual .hero-copy {
    top: 25%;
    font-size: 1.25rem;
  }
  header .header-inner .main-visual .main-logo {
    top: calc(50% - 2em);
    width: 13%;
  }
  header .header-inner .main-visual .sub-title {
    top: 57.5%;
  }
  header .header-inner .main-visual .anime {
    display: block;
  }
  header .header-inner .main-visual .anime .info-time {
    position: absolute;
    bottom: 35%;
    right: 1.5%;
    width: 12.5%;
    height: auto;
    animation: korokoro 1s ease 0s 1 alternate none running;
  }
  header .header-inner .main-visual .anime .nologo {
    position: absolute;
    bottom: 20%;
    right: 1.5%;
    width: 12.5%;
    height: auto;
    animation: korokoro 1s ease 0s 1 alternate none running;
    z-index: 9;
  }
  header .header-inner .main-visual .main-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8em;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0 20%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header-inner .main-visual .main-info .wrapper {
    width: 100%;
  }
  header .header-inner .main-visual .main-info .wrapper .thanks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 0.04em;
  }
  header .header-inner .main-visual .main-info .wrapper .thanks p {
    line-height: 1.25;
  }
  header .header-inner .main-visual .main-info .wrapper hr {
    margin: 0.5em 0;
  }
  header .header-inner .main-visual .main-info .wrapper .announce {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 1em;
  }
}
@keyframes korokoro {
  0% {
    right: 51.5%;
    transform: rotate(0);
    opacity: 0;
  }
  100% {
    right: 1.5%;
    transform: rotate(360deg);
    opacity: 1;
  }
}

.language-switch {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: stretch;
  padding: 4px;
  border: 1px solid rgba(132, 100, 44, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  font-size: 11px;
  line-height: 1;
}
.language-switch a,
.language-switch span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 24px;
  padding: 3px 6px;
  border: 1px solid #cfc7b8;
  border-radius: 5px;
  background: #fff;
  color: #2b2720;
  text-decoration: none;
  white-space: nowrap;
}
.language-switch span {
  border-color: #2b2720;
  background: #2b2720;
  color: #fff;
}
.language-switch a:hover {
  background: #f7f0e4;
}
.language-switch a:focus {
  outline: 2px solid #84642c;
  outline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .language-switch {
    top: auto;
    right: 6px;
    bottom: 6px;
    max-width: 34vw;
    max-height: 46vh;
    overflow-y: auto;
    padding: 3px;
    font-size: 10px;
  }
  .language-switch a,
  .language-switch span {
    min-width: 62px;
    min-height: 22px;
    padding: 2px 5px;
  }
}
nav .menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 99;
  background-color: rgba(24, 24, 24, 0.8);
  border: 1px solid #eee;
}
nav .menu-btn span, nav .menu-btn span::before, nav .menu-btn span::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 25px;
  border-radius: 3px;
  background-color: #eee;
}
nav .menu-btn span {
  top: 20px;
}
nav .menu-btn span:before {
  bottom: 8px;
}
nav .menu-btn span:after {
  top: 8px;
}
nav #menu-btn-check {
  display: none;
}
nav #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
nav #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
nav #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
nav .btn-text {
  position: fixed;
  top: 54px;
  right: 7px;
  transform: translate(-50%, -50%);
  z-index: 99;
}
nav .btn-text .open {
  display: block;
  font-size: 0.8rem;
}
nav .btn-text .close {
  display: none;
  font-size: 0.8rem;
}
nav #menu-btn-check:checked ~ .btn-text .open {
  display: none;
}
nav #menu-btn-check:checked ~ .btn-text .close {
  display: block;
}
nav .nav-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100vw;
  min-height: 100vh;
  max-height: 100vh;
  background-color: rgba(24, 24, 24, 0.75);
  transition: all 0.25s;
  overflow-y: auto;
  z-index: 50;
}
nav #menu-btn-check:checked ~ .nav-menu {
  left: 0;
}
nav .menu-logo {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.75));
  z-index: 199;
}
nav .top-menu {
  margin: 0 0.5em;
  padding-top: 2em;
  z-index: 199;
}
nav .top-menu p {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.25rem;
  border-bottom: 1px solid #b59f51;
}
nav .navbar {
  z-index: 80;
}
nav .navbar a {
  color: #eee;
}
nav .navbar > li {
  position: relative;
  border-bottom: 1px solid #b59f51;
  margin: 0 0.5em;
}
nav .navbar > li p, nav .navbar > li span {
  font-size: 1.25rem;
}
nav .navbar > li p {
  padding-left: 1.5em;
  text-align: left;
  line-height: 2.5;
}
nav .navbar > li p span {
  display: none;
  background-color: #d8d3cc;
  color: #897b66;
  border-bottom: 2px solid #3a2400;
}
nav .navbar > li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.25em;
  vertical-align: middle;
  color: #c3ab55;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(45deg);
}
nav .sns {
  margin: 1em 0.5em 0;
}
nav .sns li > a {
  display: flex;
  flex-flow: row;
  padding-left: 1.5em;
  align-items: center;
  font-size: 1.25rem;
  line-height: 2.5;
}
nav .sns li > a img {
  width: 2em;
  height: auto;
  margin-right: 1em;
}
nav .reserve-contact {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 1em);
  height: 9em;
  margin: 1em auto 0;
  background-color: #dacfa8;
}
nav .reserve-contact p {
  text-align: center;
  color: #000;
}
nav .reserve-contact p a {
  font-size: 1.75em;
  color: #000;
}

@media screen and (min-width: 768px) {
  nav .menu-btn {
    display: none;
  }
  nav .menu-logo {
    display: none;
  }
  nav .btn-text {
    display: none;
  }
  nav .nav-menu {
    position: unset;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    width: auto;
    min-height: auto;
  }
  nav .nav-menu .top-menu {
    display: none;
  }
  nav .reserve-contact {
    display: none;
  }
  nav .navbar {
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1px;
  }
  nav .navbar a {
    display: block;
    padding: 0;
    text-decoration: none;
  }
  nav .navbar > li {
    margin: 0;
  }
  nav .navbar > li p, nav .navbar > li span {
    font-size: 0.85rem;
    text-align: center;
  }
  nav .navbar > li p {
    line-height: 2;
    padding-left: 0;
    padding-top: 0.5em;
    color: #351f00;
    font-weight: bold;
    background-color: #fff;
  }
  nav .navbar > li p span {
    display: block;
    line-height: 2;
    padding-bottom: 0.5em;
    border-bottom: none;
  }
  nav .navbar > li:after {
    display: none;
  }
  nav .sns {
    display: none;
  }
}
.main #trail {
  display: block;
}
.main #trail ul {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  margin-top: 0.5em;
  margin-bottom: 2em;
}
.main #trail ul li, .main #trail ul a {
  font-size: 0.75rem;
}
.main #trail ul li a {
  text-decoration: underline;
}
.main #trail ul li:not(:last-child)::after {
  content: "»";
  margin-left: 0.75em;
  margin-right: 0.75em;
}
.main #information {
  padding: 2.5em 0 3em;
}
.main #information .title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  font-size: 1.5rem;
}
.main #information .title::before, .main #information .title::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #cdc7be;
}
.main #information .title::before {
  margin-right: 1.5em;
}
.main #information .title::after {
  margin-left: 1.5em;
}
.main #information .texts {
  width: 100%;
  padding: 1em 0;
  background-color: #2e1d00;
}
.main #information .texts dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1em;
  width: 90%;
  margin: 0 auto;
}
.main #information .texts dl dt, .main #information .texts dl dd {
  line-height: 1.25;
}
.main h1 {
  display: grid;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.main h1 span {
  border-top: 1px solid #cdc7be;
  padding-top: 0.2em;
  display: block;
  font-size: 1.25rem;
  font-weight: normal;
}
.main h2 {
  display: grid;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.main h2 span {
  border-top: 1px solid #cdc7be;
  padding-top: 0.2em;
  display: block;
  font-size: 1.25rem;
  font-weight: normal;
}
.main .inner-container {
  width: 100%;
}
.main .info-table {
  margin: 2em calc(50% - 50vw) 0;
  color: #372000;
  width: 100vw;
}
.main .info-table thead {
  background-color: #b8b0a3;
}
.main .info-table thead th {
  font-size: 1.15rem;
  line-height: 2.5;
}
.main .info-table tbody {
  background-color: #fff;
}
.main .info-table tbody tr {
  border-top: 1px solid #b8b0a3;
}
.main .info-table tbody tr td:first-child {
  background-color: #d8d3cc;
  width: 20%;
  text-align: center;
  vertical-align: middle;
}
.main .info-table tbody tr td:nth-child(2) {
  padding: 1em;
  vertical-align: middle;
}
.main #about h2 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1em calc(50% - 50vw);
  width: 100vw;
}
.main #about h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1em calc(50% - 50vw);
  width: 100vw;
}
.main #about .info {
  margin-bottom: 3em;
}
.main #about .gallery {
  margin: 0 calc(50% - 50vw);
}
.main #about .gallery .item {
  background-color: #2e1d00;
  margin-bottom: 2em;
}
.main #about .gallery .item img {
  width: 100vw;
}
.main #about .gallery .item .text {
  width: 90%;
  margin: 0 auto;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.main #about .gallery .item .text h3 {
  width: auto;
  margin: 0;
  overflow-wrap: anywhere;
}
.main #about .gallery .item .text h4 {
  font-size: 1.5rem;
}
.main #about .gallery .item .text p {
  margin-top: 1em;
}
.main .info-view {
  margin: 0 calc(50% - 50vw) 2em;
  width: 100vw;
  height: 40vh;
  object-fit: cover;
}
.main #spa h3 {
  text-align: center;
  font-size: 1.35rem;
  font-weight: bold;
  margin: 1em calc(50% - 50vw);
  width: 100vw;
}
.main #spa #spa-block {
  margin: 0 calc(50% - 50vw) 3em;
}
.main #spa .sp-gallery {
  background-color: #000;
  margin: 0 calc(50% - 50vw);
  padding-top: 1em;
  width: 100vw;
  height: auto;
}
.main #spa .sp-gallery .spa-gallery {
  margin-bottom: 2em;
}
.main #spa .info-gallery .item {
  display: flex;
  flex-flow: column-reverse;
  margin-bottom: 2em;
}
.main #spa .info-gallery .item p {
  text-align: center;
  font-size: 1.25em;
}
.main #spa .info-gallery .item img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: auto;
}



.main #fee {
  padding-top: 3em;
}
.main #fee h2 {
  text-align: center;
  font-size: 1.35rem;
  font-weight: bold;
  margin: 1em calc(50% - 50vw);
  width: 100vw;
}
.main .right-line {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.main .right-line::after {
  content: "";
  margin-left: 1em;
  height: 1px;
  flex-grow: 1;
  background-color: #cdc7be;
}
.main .info-white {
  color: #fff;
  padding: 1.5em;
}
.main .info-white h2 {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
.main .info-table {
  margin-bottom: 5em;
}


.main .menu-list {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
.main .menu-list .menu-item {
  position: relative;
  width: 100%;
  background-color: #2e1d00;
  padding-bottom: 4rem;
  margin-bottom: 2em;
}
.main .menu-list .menu-item h3 {
  position: absolute;
  bottom: 1rem;
  left: 2em;
  font-size: 1.25rem;
}
.main .menu-list .menu-item p {
  position: absolute;
  bottom: 1rem;
  right: 5%;
  font-size: 1.25rem;
}
.main .menu-list .menu-item .long-name {
  bottom: 2.25em;
  transform: translateY(50%);
}
.main .menu-list .menu-item .long-price {
  bottom: 1em;
  transform: translateY(50%);
}
.main .menu-list .menu-item .small-header {
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  bottom: 0.3em;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main .menu-list .menu-item .small-price {
  font-size: 1rem;
  bottom: 0.05em;
  right: 50%;
  transform: translateX(50%);
}

.menu-list-text{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5%;
  margin-left: calc(50% - 40vw);
  margin-right: calc(50% - 40vw);
  width: 80vw;
  margin-bottom: 5em;
}
.menu-list-text .menu-item{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5%;
  margin-left: calc(50% - 40vw);
  margin-right: calc(50% - 40vw);
  width: 80vw;
  margin-bottom: 5em;
}






.main #restaurant {
  margin-bottom: 3em;
}
.main #restaurant h2 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1em auto 1.5em;
}
.main #spa .spa-lead {
  font-weight: bold;
}
.main #restaurant h2.right-line {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: normal;
  text-align: left;
}
.main #restaurant .rice-note {
  padding-bottom: 3em;
}
.main #restaurant #drink-menu {
  margin: 0 calc(50% - 50vw);
  background-color: #fff;
  color: #3d2805;
}
.main #restaurant #drink-menu h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #b8b0a3;
  line-height: 3;
  text-align: center;
}
.main #restaurant #drink-menu ul {
  width: 80%;
  margin: 0 auto;
  padding-top: 2em;
}
.main #restaurant #drink-menu ul li {
  line-height: 3;
}
.menu-item-wrap{
	width: 100%;
	margin-bottom: 5em;
}

.menu-item-wrap .menu-item{
	width:  100%;
	margin-bottom: 1rem;
	background-color: #2e1d00;
}
.menu-item-wrap .menu-item picture{
	width:  100%;
}
.menu-item-wrap .menu-item picture img{
	width:  100%;
}
.menu-item-wrap .menu-item dl.menu-item-txt{
	width:  100%;
	padding: 1rem;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.menu-item-wrap .menu-item dl.menu-item-txt dt,.menu-item-wrap .menu-item dl.menu-item-txt dd{
	color: #fff;
	font-size: 1.0rem;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.menu-item-wrap .menu-item dl.menu-item-txt dt{
	text-align: right;
}
.menu-item-wrap .menu-item dl.menu-item-txt dd{
	text-align: right;
}
.menu-item-wrap .menu-item dl.menu-item-txt dd::after,.menu-item-wrap .menu-item dl.text-only dd::after{
	content: "（税込）";
	color: #fff;
	font-size: 1.0rem;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.menu-item-wrap .menu-item p.menu-item-txt-bottom{
	background-color: #2e1d00;
	text-align:left;
	color: #fff;
	font-size: 1.0rem;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	word-break:keep-all;
}
.menu-item-wrap .menu-item dl.text-only{
	display: flex;
	justify-content:space-between;
	align-items: center;
	flex: 1 1;
	gap: 5%;
	margin-bottom: 2rem;
}
.menu-item-wrap .menu-item dl.text-only dt,.menu-item-wrap .menu-item dl.text-only dd{
	color: #fff;
	font-size: 1.0rem;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.menu-item-wrap .menu-item dl.text-only dt{
	text-align: left;
}
.menu-item-wrap .menu-item dl.text-only dd{
	text-align: right;
}
.menu-item-wrap .menu-item .single-item-ttl{
	margin-bottom: 1rem;
	padding: 1rem;
	background-color: #2e1d00;
	text-align: center;
	color: #fff;
	font-size: 1.0rem;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.menu-item-wrap .menu-item .small{
	color: #fff;
	font-size: 1.0rem;
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
	.menu-item-wrap .text-only-wrap{
		padding: 2rem 1rem;
}

.main #facility .floor-all {
  margin-bottom: 3em;
}
.main #facility .floor-all h2 {
  text-align: center;
  font-size: 1.35rem;
  font-weight: bold;
  margin: 1em auto;
}
.main #facility .floor-all .floor-map {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background-color: #fff;
}
.main #facility .floor-all .floor-map .inner-text {
  padding-top: 0.75em;
  padding-bottom: 0.5em;
  background-color: #d8d3cc;
  color: #382200;
  font-size: 1.35rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.main #facility .floor-all .floor-map span {
  font-weight: normal;
  letter-spacing: 0.16em;
}
.main #facility .floor-all .floor-map img {
  padding: 1em 2.5% 3em;
}
.main #facility .menu-item {
  display: flex;
  flex-flow: column;
  padding-bottom: 1.5em;
}
.main #facility .menu-item h3 {
  order: 2;
  position: unset;
  padding: 1em 5% 0.5em;
}
.main #facility .menu-item p {
  order: 3;
  position: unset;
  padding: 0 5%;
  font-size: 1rem;
}
.main #facility .lheight h3 {
  margin-top: -6em;
}
.main #access h3 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1em auto 1.5em;
}
.main #access p {
  text-align: center;
  margin-bottom: 3em;
}
.main #access .access-map {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.main #access .access-map iframe {
  display: block;
  border: 0;
  width: 100%;
  aspect-ratio: 640/450;
}
.main #access .inner-nav {
  margin: 3em calc(50% - 50vw) 5em;
}
.main #access .inner-nav .navbar > li > a {
  text-align: center;
  background-color: #fff;
  color: #3a2401;
  font-weight: bold;
  line-height: 2;
}
.main #access .inner-nav .navbar > li > a span {
  display: block;
  background-color: #d8d3cc;
  color: #897b66;
  padding: 0;
}
.main #access .access-list .list-item {
  margin-bottom: 3em;
}
.main #access .access-list .list-item h3 {
  border-bottom: 1px solid #8e816d;
  text-align: center;
  margin-bottom: 1.5em;
  font-size: 1.2rem;
}
.main #access .access-list .list-item h4 {
  font-size: 1rem;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.main #access .access-list .list-item dl {
  display: grid;
  grid-template-columns: 2.5em 1fr;
}
.main #access .access-list .list-item dl * {
  font-size: 1rem;
}
.main #access .access-list .list-item dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main #access .access-list .list-item dl dt img {
  width: 1.6em;
  height: auto;
}
.main #access .access-list .list-item dl dd {
  line-height: 2.5;
}
.main #access .link-button {
  width: 60%;
  margin: 2em auto 3em;
}
.main #access p {
  margin: 0;
}
.main #access #by-car .road-text {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 3em;
}
.main #access #by-train .train-text {
  margin: 1em calc(50% - 50vw) 3em;
}
.main #access #by-airplane .airplane-text {
  margin: 1em calc(50% - 50vw) 3em;
  width: 100vw;
}

@media screen and (min-width: 768px) {
  .main #trail {
    display: block;
  }
  .main #trail ul {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    margin-top: 0.5em;
    margin-bottom: 2em;
  }
  .main #trail ul li, .main #trail ul a {
    font-size: 0.8rem;
  }
  .main #trail ul li a {
    text-decoration: underline;
  }
  .main #trail ul li:not(:last-child)::after {
    content: "»";
    margin-left: 0.75em;
    margin-right: 0.75em;
  }
  .main #information .title {
    margin-bottom: 3em;
    padding-top: 5em;
    font-size: 1rem;
  }
  .main #information .texts {
    width: 80%;
    margin: 0 auto;
  }
  .main #information .texts dl {
    gap: 0.5em;
    width: 80%;
  }
  .main #information .texts dl dt, .main #information .texts dl dd {
    line-height: 1.5;
  }
  .main h2 span {
    padding-top: 0.2em;
    font-size: 1.2rem;
  }
  .main #about {
    padding-top: 3em;
    margin-bottom: 0;
  }
  .main #about h2 {
    font-size: 1.75rem;
    margin: 2em auto;
    width: 100%;
  }
  .main #about .info {
    margin-bottom: 3em;
  }
  .main #about .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px;
    margin: 0;
  }
  .main #about .gallery .item {
    position: relative;
    margin-bottom: 0;
    background-color: #1e1200;
  }
  .main #about .gallery .item .img {
    width: 100%;
    height: auto;
  }
  .main #about .gallery .item .simg {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main #about .gallery .item .text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 0;
  }
  .main #about .gallery .item .text h3 {
    width: auto;
    margin: 0;
    font-size: clamp(0.95rem, 0.55rem + 0.9vw, 1.2rem);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .main #about .gallery .item .text h4 {
    font-size: clamp(0.8rem, 0.545rem + 0.95vw, 1.2rem);
  }
  .main #about .gallery .item .text p {
    margin-top: 1.5em;
    font-size: clamp(0.75rem, 0.545rem + 0.65vw, 1rem);
  }
  .main .inner-container {
    width: 72.5%;
    margin: 0 auto;
  }
  .main .info-view {
	width: 60vw;
    height: 50vh;
    margin: 0 calc(50% - 30vw) 2em;
    object-fit: cover;
  }
  .main #spa h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 2em auto;
    width: 100%;
  }
  .main #spa .info-white {
    margin-bottom: 0;
  }
  .main #spa .info-white h3 {
    font-size: 1.5rem;
    text-align: left;
  }
  .main #spa .info-white .spa-lead {
    font-size: 1.5rem;
    text-align: left;
  }
  .main #spa .info {
    margin-bottom: 5em;
  }
  .main #spa .pc-gallery .spa-gallery {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    height: auto;
  }
  .main #spa .sp-gallery {
    padding-bottom: 3em;
    margin-top: 5em;
  }
  .main #spa .gallery-img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5em;
  }
  .main #spa .gallery-img5 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 0.5em;
  }
  .main #spa .info-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 5em;
  }
  .main #spa .info-gallery .item {
    display: block;
  }
  .main #spa .info-gallery .item img {
    margin: 0;
    width: 100%;
  }
  .main #spa .info-gallery .item p {
    margin-top: 0.5em;
    font-size: 1em;
  }
  .main #spa #spa-block {
    margin: 0;
    padding-top: 3em;
  }
  .main #spa #uchiyu-block {
    padding-top: 3em;
  }
  .main #spa #roten-block {
    padding-top: 3em;
  }
  .main #spa #efficancy-block {
    padding-top: 3em;
  }
  .main .right-line {
    margin-bottom: 2em;
  }
  .main .info-table {
    margin: 2em auto 0;
    width: 100%;
  }
  .main .info-table tbody tr {
    border-top: 1px solid #b8b0a3;
  }
  .main .info-table tbody tr td:first-child {
    font-size: 1.08rem;
    font-weight: bold;
    line-height: 2.5;
  }
  .main .info-table tbody tr td:nth-child(2) {
    line-height: 1.5;
    font-size: 0.9rem;
    width: 60%;
  }
	
	
	
  .main #fee {
    padding-top: 3em;
  }
  .main #fee h2 {
    text-align: center;
    margin-top: 2em;
  }
	
	
	
  .main .menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5%;
    margin-left: calc(50% - 40vw);
    margin-right: calc(50% - 40vw);
    width: 80vw;
    margin-bottom: 5em;
  }
  .main .menu-list .menu-item {
    position: relative;
    padding-bottom: 0;
  }
  .main .menu-list .menu-item .long-name {
    bottom: unset;
    transform: translateY(-50%);
  }
  .main .menu-list .menu-item .long-price {
    bottom: 5%;
    transform: translateY(0);
  }
  .main .menu-list .menu-item .small-header {
    font-size: 0.8rem;
    text-align: center;
    bottom: unset;
    top: 8%;
  }
  .main .menu-list .menu-item .small-price {
    font-size: 1.25rem;
    transform: unset;
    bottom: 4%;
  }
  .main .menu-list .menu-item h3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    position: absolute;
    bottom: unset;
    top: clamp(17px, 15px + 0.5vw, 24px);
    left: 0;
    transform: translateX(0) translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: clamp(0.85rem, 0.545rem + 0.85vw, 1.2rem);
    line-height: 1.2;
  }
  .main .menu-list .menu-item h3 span {
    line-height: 1.1;
  }
  .main .menu-list .menu-item p {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 5%;
    right: unset;
    left: 0;
    line-height: 1.5;
  }
  .main #restaurant {
    padding-top: 3em;
  }
  .main #restaurant h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 2em auto;
  }
  .main #restaurant h2.right-line {
    margin: 0 0 2em;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
  }
  .main #restaurant .info-table {
    margin-bottom: 3em;
  }
  .main #restaurant .menu-list .menu-item {
    aspect-ratio: 1/1;
  }
  .main #restaurant .menu-list .menu-item h3 {
    top: clamp(1.25em, 1em + 0.001vw, 2em);
  }
  .main #restaurant .menu-list .menu-item img {
    margin-top: clamp(2.35em, 2.35em + 0.005vw, 3.5em);
  }
  .main #restaurant .menu-list .menu-item .small-header {
    top: 7%;
  }
  .main #restaurant .rice-note {
    width: 100%;
    margin-top: -5em;
    margin-bottom: 5em;
    padding: 0;
  }
  .main #restaurant #drink-menu {
    width: 70vw;
    background-color: inherit;
    margin-left: calc(50% - 35vw);
    margin-right: calc(50% - 35vw);
  }
  .main #restaurant #drink-menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2%;
    width: 100%;
    background-color: #fff;
    padding: 1em 5% 2em;
  }
  .main #restaurant #drink-menu ul li {
    font-size: clamp(0.8rem, 0.545rem + 0.55vw, 0.9rem);
    line-height: 1.5;
  }

	.menu-item-wrap{
		display: flex;
        justify-content: center;
        gap: 5%;
        margin-left: calc(50% - 40vw);
        margin-right: calc(50% - 40vw);
        width: 80vw;
        margin-bottom: 5em;
	}
	
	.menu-item-wrap .menu-item{
		width:  100%;
		max-width: 600px;
	}
	.menu-item-wrap .menu-item picture{
		width:  100%;
	}
	.menu-item-wrap .menu-item picture img{
		width:  100%;
	}
	.menu-item-wrap .menu-item dl.menu-item-txt{
		width:  100%;
		display: flex;
		padding: 2rem;
		justify-content: space-between;
		align-items:flex-start;
		background-color: #2e1d00;
	}
	.menu-item-wrap .menu-item dl.menu-item-txt dt,.menu-item-wrap .menu-item dl.menu-item-txt dd{
		color: #fff;
		text-align: right;
	    font-size: 1.2rem;
		font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	}
	.menu-item-wrap .menu-item p.menu-item-txt-bottom{
		padding:0 1rem 1rem;
		background-color: #2e1d00;
		text-align: left;
		color: #fff;
	    font-size: 1.0rem;
		font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	}
	.menu-item-wrap .menu-item dl.text-only{
		display: flex;
        justify-content:space-between;
        align-items: center;
        flex: 1 1;
        gap: 5%;
	}
	.menu-item-wrap .menu-item dl.text-only dt,.menu-item-wrap .menu-item dl.text-only dd{
		color: #fff;
	    font-size: 1.2rem;
		font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	}
	.menu-item-wrap .menu-item .single-item-ttl{
		padding: 1rem;
		background-color: #2e1d00;
		text-align: center;
		color: #fff;
	    font-size: 1.5rem;
		font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	}
	
	
  .main #facility {
    padding-top: 3em;
  }
  .main #facility .floor-all {
    margin-bottom: 0;
  }
  .main #facility .floor-all h2 {
    font-size: 1.75rem;
    margin: 2em auto;
  }
  .main #facility .floor-all .floor-map .inner-text {
    padding-top: 1em;
    padding-bottom: 0;
    line-height: 1.7;
  }
  .main #facility .floor-all .floor-map .inner-text span {
    padding-top: 0.35em;
    border-top: 1px solid #80715a;
  }
  .main #facility .floor-all .floor-map .inner-text img {
    padding: 0;
  }
  .main #facility .floor-all .floor-map img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .main #facility .menu-list {
    margin-bottom: 5em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .main #facility .menu-item {
    position: relative;
    display: block;
    padding-bottom: 0;
    background-color: #180e00;
    aspect-ratio: 519/677;
  }
  .main #facility .menu-item h3 {
    order: unset;
    position: absolute;
    top: 6.5%;
    padding: 0;
  }
  .main #facility .lheight h3 {
    margin-top: 0;
  }
  .main #facility .menu-item .simg {
    position: absolute;
    top: 14%;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1.3019231;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main #facility .menu-item .oxyrium {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .main #facility .menu-item p {
    order: unset;
    position: absolute;
    top: 82.5%;
    left: 0;
    transform: translateY(-50%);
    text-align: left;
    font-size: clamp(0.65rem, 0.495rem + 0.4vw, 1rem);
    letter-spacing: 0;
  }
  .main #facility .sheight {
    aspect-ratio: 520/677;
  }
  .main #facility #floor-1, .main #facility #floor-2 {
    padding-top: 3em;
  }
	
	
	
  .main #access {
    padding-top: 3em;
    margin-bottom: 3em;
  }
  .main #access h3 {
    font-size: 1.75rem;
    margin: 2em auto;
  }
  .main #access .access-map {
    margin: 3em calc(50% - 50vw);
  }
  .main #access .access-map iframe {
    margin: 0 auto;
    width: 640px;
    height: 450px;
  }
  .main #access .inner-nav {
    width: 100%;
    margin: 0 auto;
  }
  .main #access .inner-nav .navbar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
  }
  .main #access .inner-nav .navbar a {
    display: block;
    width: 100%;
    line-height: 2;
    padding-top: 0.5em;
  }
  .main #access .inner-nav .navbar > li {
    width: 100%;
  }
  .main #access .inner-nav .navbar a span {
    line-height: 2;
    padding-bottom: 0.5em;
  }
  .main #access .access-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
  }
  .main #access .access-list .list-item {
    letter-spacing: 0.075em;
    margin-bottom: 0;
  }
  .main #access .access-list .list-item h3 {
    margin-bottom: 1.5em;
    font-size: clamp(0.9rem, 0.545rem + 0.75vw, 1rem);
  }
  .main #access .access-list .list-item h4 {
    margin-bottom: 1em;
    font-size: clamp(0.65rem, 0.545rem + 0.6vw, 0.9rem);
  }	
  .main #access .access-list .list-item dl * {
    font-size: clamp(0.8rem, 0.545rem + 0.5vw, 1rem);
  }
  .main #access .link-button {
    margin: 2em auto 3em;
    width: 75%;
  }
  .main #access #by-car {
    padding-top: 3em;
  }
  .main #access #by-car .road-text {
    width: 80%;
    margin: 1em auto 3em;
  }
  .main #access #by-train {
    padding-top: 3em;
  }
  .main #access #by-train .train-text {
    width: 100%;
    margin: 1em auto 3em;
    text-align: center;
  }
  .main #access #by-airplane {
    margin-bottom: 3em;
    padding-top: 3em;
  }
  .main #access #by-airplane .airplane-text {
    width: 100%;
    margin: 1em auto 3em;
    text-align: center;
  }
}
footer .banners .banners-wrapper {
  margin: 0 auto;
}
footer .banners .jalan {
  width: 63%;
  margin: 0 auto 2em;
}
footer .banners .certify {
  width: 63%;
  margin: 0 auto 2em;
}
footer .banners .wide-banner {
  width: 85%;
  margin: 0 auto 2em;
}
footer .banners .arden {
  margin-bottom: 2em;
}
footer .banners .tabiiro {
  margin-bottom: 2em;
  aspect-ratio: 14/5;
  display: none;
}
footer .banners .icons {
  display: flex;
  justify-content: right;
  align-items: center;
}
footer .banners .icons a {
  width: 20%;
  margin-left: 1rem;
}
footer .links {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background-color: #000;
}
footer .links .links-wrapper {
  width: 85%;
  margin: 0 auto;
  padding-top: 3em;
  padding-bottom: 3em;
}
footer .links .links-wrapper .address {
  background-image: url("../img/back-wave.webp");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 7em;
  background-color: #fff;
  color: #372100;
  padding: 1em;
  margin-bottom: 3em;
  border-radius: 12px;
}
footer .links .links-wrapper .address .adrs-inner {
  width: 100%;
  margin: 0 auto;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
}
footer .links .links-wrapper .address .adrs-inner * {
  font-size: 1rem;
}
footer .links .links-wrapper .address .adrs-inner .logo {
  margin-bottom: 1.5em;
}
footer .links .links-wrapper .address .adrs-inner .logo img {
  width: 90%;
  height: auto;
  margin: 0 auto;
}
footer .links .links-wrapper .address .adrs-inner p {
  font-weight: bold;
}
footer .links .links-wrapper .address .adrs-inner p a {
  color: #372100;
}
footer .links .links-wrapper .link-menu {
  width: 15em;
  margin: 0 auto;
}
footer .links .links-wrapper .link-menu * {
  font-size: 1rem;
}
footer .links .links-wrapper .link-menu .link-menu-item {
  padding: 1em 0;
}
footer .links .links-wrapper .link-menu .link-menu-item .item-title {
  margin-bottom: 1em;
}
footer .links .links-wrapper .link-menu .link-menu-item ul {
  margin-left: 2em;
  border-left: 1px solid #c0c0c0;
}
footer .links .links-wrapper .link-menu .link-menu-item ul li::before {
  content: "・";
  padding-left: 0.5em;
}
footer .copyright {
  padding-top: 1em;
  padding-bottom: 1em;
}
footer .copyright p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 1em;
  font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
  footer .footer-container {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
  footer .banners {
    width: 100vw;
  }
  footer .banners .banners-wrapper {
    width: 80%;
    padding: 2em 0;
    display: grid;
    grid-template-columns: 20% 20% 26% 26%;
    gap: 4%;
  }
  footer .banners .banners-wrapper .jalan {
    width: auto;
    margin: 0;
  }
  footer .banners .banners-wrapper .certify {
    width: auto;
    margin: 0;
  }
  footer .banners .banners-wrapper .wide-banner {
    width: auto;
    margin: 0;
  }
  footer .banners .banners-wrapper .arden {
    margin-bottom: 6%;
  }
  footer .banners .banners-wrapper .tabiiro {
    display: block;
    margin-bottom: 8%;
  }
  footer .banners .banners-wrapper .icons a {
   max-width: 320px;
   width: 15%;
   margin-left: 2rem;
  }
  footer .links {
    margin: 0;
  }
  footer .links .links-wrapper {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 2.5%;
  }
  footer .links .links-wrapper .address {
    margin-bottom: 0;
  }
  footer .links .links-wrapper .address .adrs-inner * {
    font-size: clamp(0.8rem, 0.545rem + 0.4vw, 1rem);
  }
  footer .links .links-wrapper .address .adrs-inner .logo {
    margin-bottom: 1.5em;
  }
  footer .links .links-wrapper .address .adrs-inner p {
    padding: 0 1em;
  }
  footer .links .links-wrapper .link-menu {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5%;
  }
  footer .links .links-wrapper .link-menu * {
    font-size: clamp(0.8rem, 0.545rem + 0.45vw, 1rem);
  }
  footer .links .links-wrapper .link-menu .link-menu-item {
    padding: 1.5em 0;
  }
  footer .links .links-wrapper .link-menu .link-menu-item .item-title {
    margin-bottom: 1.5em;
  }
  footer .links .links-wrapper .link-menu .link-menu-item ul li::before {
    content: "・";
    padding-left: 0.5em;
  }
}

/* Source: css/topics.css */
#set_list_topics{width:100%;padding:1em 0;background-color:#2e1d00;margin-bottom:2em}#set_list_topics .no-contents{width:90%;margin:0 auto;text-align:center;padding:1em 0;color:#cdc7be}#set_list_topics dl{width:90%;margin:0 auto}#set_list_topics dl dt{display:grid;grid-template-columns:auto 1fr;gap:1em;margin-bottom:.5em;align-items:start}#set_list_topics dl dt .topic-date{color:#cdc7be;font-size:.95rem;white-space:nowrap}#set_list_topics dl dt .topic-title{font-size:.95rem;line-height:1.5}#set_list_topics dl dt .topic-title a.topic-link{color:#f7f7f7;text-decoration:none;display:flex;justify-content:space-between;align-items:center}#set_list_topics dl dt .topic-title a.topic-link:hover{text-decoration:underline}#set_list_topics dl dt .topic-title a.topic-link .topic-icon{font-size:.75rem;margin-left:.5em;transition:transform .3s ease}#set_list_topics dl dt .topic-title a.topic-link.active .topic-icon{transform:rotate(180deg)}#set_list_topics dl dd.topic-content{padding-left:2em;margin-bottom:1.5em;display:none;font-size:.9rem;line-height:1.6;color:#f7f7f7}#set_list_topics dl dd.topic-content.is-open{display:block}#set_list_topics dl dd.topic-content a{color:#cdc7be;text-decoration:underline}#set_list_topics dl dd.topic-content a:hover{text-decoration:none}@media screen and (min-width: 768px){#set_list_topics{width:80%;margin:0 auto 3em}#set_list_topics .no-contents{width:80%;font-size:1rem}#set_list_topics dl{width:80%}#set_list_topics dl dt{gap:2em;margin-bottom:.75em}#set_list_topics dl dt .topic-date{font-size:1rem}#set_list_topics dl dt .topic-title{font-size:1rem}#set_list_topics dl dd.topic-content{padding-left:2em;margin-bottom:2em;font-size:.95rem}}
