@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

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

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

small {
  font-size: inherit;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

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

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
  padding: 0;
  border: none;
  background-color: transparent;
}

input[type=button], input[type=reset], input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
}
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.gothic {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.en {
  font-family: "Jost", sans-serif;
}

:root {
  --extend: min(calc(( 50vw - 50% ) * -1), 0px);
  --sideW: min(7.5vw, 96px);
  --headerHeight: 80px;
  --contentsWideS: 850px;
  --contentsWideM: 1220px;
  --contentsWideL: 1088px;
}

@media screen and (max-width: 768px) {
  :root {
    --sideW: 5.6vw;
    --headerHeight: 45px;
  }
}
html {
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--headerHeight);
}

body {
  font: 400 16px/1.5 "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
  color: #000;
  text-align: left;
  counter-reset: number 0;
}

.l_container_wrap {
  position: relative;
}

.l_container {
  position: relative;
}

.archive .l_container,
.single .l_container,
.page .l_container {
  background-color: #F3F0E9;
  padding: calc(var(--headerHeight) + 4em) 0 7.5em;
}
@media screen and (max-width: 768px) {
  .archive .l_container,
  .single .l_container,
  .page .l_container {
    padding: calc(var(--headerHeight) + 2.5em) 0 3.125em;
  }
}
.archive .ttl_cmn_01,
.single .ttl_cmn_01,
.page .ttl_cmn_01 {
  margin-bottom: 3.75em;
}
@media screen and (max-width: 768px) {
  .archive .ttl_cmn_01,
  .single .ttl_cmn_01,
  .page .ttl_cmn_01 {
    margin-left: var(--extend);
    margin-right: var(--extend);
    margin-bottom: 3.125em;
  }
  .archive .ttl_cmn_01 span,
  .single .ttl_cmn_01 span,
  .page .ttl_cmn_01 span {
    width: 154px;
    padding: 0;
  }
  .archive .ttl_cmn_01 span img,
  .single .ttl_cmn_01 span img,
  .page .ttl_cmn_01 span img {
    display: block;
    width: 74px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .archive .list_news,
  .single .list_news,
  .page .list_news {
    gap: 32px 6.4%;
  }
  .archive .list_news > li,
  .single .list_news > li,
  .page .list_news > li {
    width: 46.8%;
  }
}

.page-arts .l_container,
.page-lounge .l_container,
.page-domus .l_container,
.page-camera .l_container {
  background-color: #fff;
  padding: 0 0 7.5em;
}
@media screen and (max-width: 768px) {
  .page-arts .l_container,
  .page-lounge .l_container,
  .page-domus .l_container,
  .page-camera .l_container {
    padding-bottom: 3.75em;
  }
}

.page-domus .l_container,
.page-camera .l_container {
  padding-bottom: 0;
}

.inner, .page-domus .room_hero, .page-camera .room_hero, .inner_l, .inner_m, .inner_s {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}

.inner_s {
  max-width: calc(var(--contentsWideS) + var(--sideW) * 2);
}

.inner_m {
  max-width: calc(var(--contentsWideM) + var(--sideW) * 2);
}

.inner_l {
  max-width: calc(var(--contentsWideL) + var(--sideW) * 2);
}

.login h1 a {
  width: 100px !important;
  height: 100px !important;
  background: url(../images/login_logo.png) no-repeat center/contain !important;
}

.post_content {
  font-size: 0.9375em;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .post_content {
    font-size: 0.8125em;
  }
}
.post_content * {
  margin-top: 2em;
}
.post_content *:first-child {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-weight: inherit;
  line-height: 1.5;
}

label {
  cursor: pointer;
}

button {
  padding: 0;
  border: none;
  color: inherit;
}

picture {
  display: contents;
}
picture img {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
  width: auto;
}

figure {
  display: block;
  width: 100%;
}
figure img {
  display: block;
  width: 100%;
}

.opacity, .room_sec_03 .btn_faq, .room_sec_03 .btn_reserve_02, .top_sec_05 a, .top_sec_03 ul li a.txt, .wpcf7-submit {
  transition: 0.5s;
}
@media (hover: hover) {
  .opacity:hover, .room_sec_03 .btn_faq:hover, .room_sec_03 .btn_reserve_02:hover, .top_sec_05 a:hover, .top_sec_03 ul li a.txt:hover, .wpcf7-submit:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.img_only {
  display: block;
}
.img_only img {
  display: block;
  width: 100%;
}

.text_link {
  text-decoration: underline !important;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 0.75em;
  border-radius: 0;
  border: none;
  background: #fff;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: 16px !important;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0.5em 28px 0.5em 0.5em;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: url(../images/icon_tri_select.svg) no-repeat center right 10px/10px 8px #fff;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: 16px !important;
}

textarea {
  height: 15em;
}

input[type=checkbox] {
  accent-color: #55422D;
  inline-size: 2em;
  block-size: 2em;
}

input[type=radio] {
  accent-color: #55422D;
  inline-size: 1.2em;
  block-size: 1.2em;
}

.dlist_form {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.dlist_form .group {
  display: flex;
  align-items: baseline;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .dlist_form .group {
    flex-direction: column;
    gap: 0.5em;
  }
}
.dlist_form .group:not(:last-of-type) {
  margin-bottom: 30px;
}
.dlist_form .group dt {
  width: 146px;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .dlist_form .group dt {
    width: 100%;
  }
}
.dlist_form .group dt.require:after {
  content: "＊";
  color: #E3765B;
  margin-left: 10px;
}
.dlist_form .group dd {
  flex-grow: 1;
}
.dlist_form .group dd .list_kome {
  font-size: 0.875em;
  padding-top: 1em;
}

.wpcf7-response-output,
.wpcf7-spinner {
  display: none !important;
}

.wpcf7-checkbox.your-agreement {
  display: block;
  margin-top: 28px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.wpcf7-checkbox.your-agreement .wpcf7-list-item {
  margin: 0;
}
.wpcf7-checkbox.your-agreement .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wpcf7-submit {
  margin-top: 40px;
  display: block;
  width: 100%;
  max-width: 368px;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
  padding: 1em 0;
  background-color: #E3765B;
  color: #fff;
  position: relative;
}
.wpcf7-submit:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
}

.grecaptcha-badge {
  visibility: hidden;
}

@keyframes fade_in {
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
[class^=fade_anim] {
  opacity: 0;
}
[class^=fade_anim].js-active {
  animation: fade_in 1s ease-out forwards;
}

.fade_anim.js-active {
  animation: fade_in 1s ease-in forwards;
}

.fade_anim_bottom {
  transform: translate(0, 60px);
}

.fade_anim_left {
  transform: translate(-40px, 0);
}

.fade_anim_right {
  transform: translate(60px, 0);
}

.ttl_cmn_01 .en {
  position: relative;
}
.ttl_cmn_01 .en:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-top: 1px solid #F08558;
  border-bottom: 1px solid #F08558;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.ttl_cmn_01 .en span {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 55px;
  background-color: #fff;
}
.ttl_cmn_01 .ja {
  margin-top: 1.5em;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.25em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_01 .ja {
    font-size: 1em;
  }
}
.ttl_cmn_01.bg_beige .en span {
  background-color: #F3F0E9;
}
.ttl_cmn_01.mw_860 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_01.mw_860 {
    margin-left: var(--extend);
    margin-right: var(--extend);
  }
}

.ttl_cmn_02 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_02 {
    width: auto;
    max-width: unset;
    margin-left: var(--extend) !important;
    margin-right: var(--extend) !important;
  }
}
.ttl_cmn_02:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-top: 1px solid #F08558;
  border-bottom: 1px solid #F08558;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.ttl_cmn_02 span {
  position: relative;
  display: block;
  width: 100%;
  max-width: 382px;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.25em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .ttl_cmn_02 span {
    width: 230px;
    font-size: 0.875em;
  }
}
.ttl_cmn_02.bg_beige span {
  background-color: #F3F0E9;
}

.mw_860 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.mw_800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn_cmn_01 {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 180px;
  padding-bottom: 10px;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  position: relative;
}
.btn_cmn_01:after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  border-right: 2px solid #F08558;
  border-bottom: 1px solid #F08558;
  transform: skew(45deg);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}
.btn_cmn_01:hover:after {
  width: calc(100% + 20px);
}
.btn_cmn_01.c_brown:after {
  border-color: #685744;
}

.btn_reserve {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px 0 14px;
  border: 1px solid #AFAFAF;
  letter-spacing: 0.4em;
}
.btn_reserve:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #3C2C1A;
  border-right: 0;
}
.btn_reserve:hover {
  border-color: #F08558;
  background-color: #F08558;
  color: #fff;
}
.btn_reserve:hover:before {
  border-left: 10px solid #fff;
}
@media screen and (max-width: 768px) {
  .btn_reserve {
    font-size: 0.8125em;
    border: none;
    padding: 0;
    letter-spacing: 0.3em;
  }
}

.btn_reserve_03 {
  width: 100%;
  max-width: 185px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 1px 12px 1px 14px;
  border: 1px solid #fff;
  letter-spacing: 0.4em;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.btn_reserve_03:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
}
.btn_reserve_03:hover {
  border-color: #F08558;
  background-color: #F08558;
}
@media screen and (max-width: 768px) {
  .btn_reserve_03 {
    padding: 3px 12px 3px 14px;
  }
}
.btn_reserve_03 + .btn_faq {
  margin-top: 42px;
}

.list_kome > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_kome > li:before {
  content: "※";
}

.list_dot > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_dot > li:before {
  content: "・";
}

.list_ast > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_ast > li:before {
  content: "＊";
}

.list_maru > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list_maru > li:before {
  content: "●";
}

.list_number {
  counter-reset: number 0;
}
.list_number > li {
  counter-increment: number 1;
}
.list_number > li:before {
  content: counter(number);
}

.navigation.pagination {
  margin-top: 2.5em;
}
.navigation.pagination .nav-links {
  text-align: center;
  max-width: 566px;
  margin: 0 auto;
  position: relative;
}
.navigation.pagination .nav-links .page-numbers {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-right: 0.75em;
}
.navigation.pagination .nav-links .page-numbers.prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  color: #685744;
  width: 115px;
  padding-bottom: 0.5em;
  margin-right: 120px;
}
@media screen and (max-width: 768px) {
  .navigation.pagination .nav-links .page-numbers.prev {
    width: 55px;
    font-size: 0.625em;
  }
}
.navigation.pagination .nav-links .page-numbers.prev:after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  border-left: 2px solid #685744;
  border-bottom: 1px solid #685744;
  transform: skew(-45deg);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}
@media screen and (max-width: 768px) {
  .navigation.pagination .nav-links .page-numbers.prev:after {
    height: 7px;
  }
}
.navigation.pagination .nav-links .page-numbers.next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  color: #685744;
  width: 115px;
  padding-bottom: 0.5em;
  margin-left: 120px;
}
@media screen and (max-width: 768px) {
  .navigation.pagination .nav-links .page-numbers.next {
    width: 55px;
    font-size: 0.625em;
  }
}
.navigation.pagination .nav-links .page-numbers.next:after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  border-right: 2px solid #685744;
  border-bottom: 1px solid #685744;
  transform: skew(45deg);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}
@media screen and (max-width: 768px) {
  .navigation.pagination .nav-links .page-numbers.next:after {
    height: 7px;
  }
}
.navigation.pagination .nav-links .page-numbers:last-child {
  margin-right: 0;
}
.navigation.pagination .nav-links .page-numbers.current {
  border-bottom: 1px solid #000;
}

.single_pagination {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  max-width: 566px;
  margin: 7.5em auto 0;
  display: flex;
  align-items: center;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .single_pagination {
    margin: 2.5em auto 0;
    max-width: 324px;
  }
}
.single_pagination li.prev {
  flex-grow: 1;
}
.single_pagination li.prev a {
  display: block;
  width: 115px;
  padding-bottom: 0.5em;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .single_pagination li.prev a {
    width: 55px;
    font-size: 0.625em;
  }
}
.single_pagination li.prev a:after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  border-left: 2px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(-45deg);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}
@media screen and (max-width: 768px) {
  .single_pagination li.prev a:after {
    height: 7px;
  }
}
.single_pagination li.archive {
  flex-shrink: 0;
}
.single_pagination li.archive a {
  display: block;
  width: 134px;
  text-align: center;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .single_pagination li.archive a {
    width: 92px;
    font-size: 0.625em;
  }
}
.single_pagination li.next {
  flex-grow: 1;
}
.single_pagination li.next a {
  display: block;
  margin-left: auto;
  width: 115px;
  padding-bottom: 0.5em;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .single_pagination li.next a {
    width: 55px;
    font-size: 0.625em;
  }
}
.single_pagination li.next a:after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  border-right: 2px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(45deg);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}
@media screen and (max-width: 768px) {
  .single_pagination li.next a:after {
    height: 7px;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.loading.end {
  opacity: 0;
  visibility: hidden;
}

.hbm_btn {
  padding: 0;
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .hbm_btn {
    width: 30px;
  }
}
.hbm_btn .box {
  display: block;
  width: 90%;
  position: relative;
}
.hbm_btn .box .bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3C2C1A;
  position: absolute;
  left: 0;
  transition: 0.5s;
}

[data-hbm-bar="3"] .box {
  aspect-ratio: 54/24;
  margin: 15% 0;
}
@media screen and (max-width: 768px) {
  [data-hbm-bar="3"] .box {
    aspect-ratio: 30/10;
  }
}
[data-hbm-bar="3"] .bar:nth-child(1) {
  top: 0;
}
[data-hbm-bar="3"] .bar:nth-child(2) {
  top: 50%;
}
@media screen and (max-width: 768px) {
  [data-hbm-bar="3"] .bar:nth-child(2) {
    display: none;
  }
}
[data-hbm-bar="3"] .bar:nth-child(3) {
  top: 100%;
}
[data-hbm-bar="3"].js-active {
  z-index: 3;
}
[data-hbm-bar="3"].js-active .bar {
  background-color: #fff;
}
[data-hbm-bar="3"].js-active .bar:nth-child(1) {
  top: 50%;
  transform: rotate(160deg);
}
[data-hbm-bar="3"].js-active .bar:nth-child(2) {
  top: 50%;
  transform: rotateY(90deg);
}
[data-hbm-bar="3"].js-active .bar:nth-child(3) {
  top: 50%;
  transform: rotate(-160deg);
}

.hbm_content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.hbm_content.js-active {
  opacity: 1;
  visibility: visible;
}
.hbm_content .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hbm_content .main {
  position: relative;
  width: calc(100% - 20px);
  height: 100%;
  background-color: rgba(85, 66, 45, 0.9);
  margin-left: 20px;
  display: flex;
  align-items: center;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  .hbm_content .main {
    align-items: flex-start;
  }
}
.hbm_content .container {
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15%;
}
@media screen and (max-width: 768px) {
  .hbm_content .container {
    flex-direction: column;
    gap: 2.75em;
    font-size: 0.8125em;
    letter-spacing: 0.15em;
    padding: 4em 0 2.5em;
  }
  .hbm_content .container .box_left {
    width: 94px;
  }
}
.hbm_content .container ul > li {
  margin-bottom: 1em;
}
.hbm_content .container ul > li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .hbm_content .container ul > li:nth-child(5), .hbm_content .container ul > li:nth-child(8), .hbm_content .container ul > li:nth-child(10) {
    margin-bottom: 2.5em;
  }
}
.hbm_content .container ul > li.has-child {
  margin: 2em 0;
}
.hbm_content .container ul > li.has-child .child {
  padding-left: 1em;
}
.hbm_content .container ul > li.has-child .child > li {
  margin: 0.75em 0 0;
}
.hbm_content nav ul li a:hover {
  color: #F08558;
}
.hbm_content .btns {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.hbm_content .btns .btn_instagram {
  flex-shrink: 0;
  display: block;
  width: 38px;
}
@media screen and (max-width: 768px) {
  .hbm_content .btns .btn_instagram {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .hbm_content .btns {
    margin-top: 26px;
  }
}

.header {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .header {
    padding-top: 5px;
  }
}
.header:before {
  z-index: 2;
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #F08558;
  position: absolute;
  top: 0;
  left: 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--headerHeight);
  padding: 0 2.5% 0 3.125%;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 160px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header .btn_language {
  display: block;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 0.8125em;
  letter-spacing: 0.15em;
}
.header .btn_language:hover {
  color: #F08558;
}

.header.is-home {
  background-color: transparent;
}
.header.is-home .header__logo {
  opacity: 0;
  pointer-events: none;
}
.header.is-home .btn_reserve {
  border-color: #8E8E8E;
  color: #fff;
}
.header.is-home .btn_reserve:before {
  border-left: 10px solid #fff;
}
.header.is-home .btn_reserve:hover {
  border-color: #F08558;
}
@media screen and (max-width: 768px) {
  .header.is-home .btn_reserve {
    display: none;
  }
}
.header.is-home .btn_language {
  color: #fff;
}
.header.is-home .btn_language:hover {
  color: #F08558;
}
.header.is-home .hbm_btn .box .bar {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header.is-home .hbm_btn {
    width: 50px;
  }
  .header.is-home .hbm_btn .box {
    margin: 0;
    aspect-ratio: 2/1;
  }
  .header.is-home .hbm_btn .box .bar:nth-child(2) {
    display: block;
  }
}

.footer {
  background-color: #55422D;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  padding: 56px 0 50px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0 24px;
  }
}
.footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-color: #F08558;
  position: absolute;
  top: 0;
  left: 0;
}
.footer .txt:hover {
  color: #F08558;
}
.footer .btn_reserve {
  border-color: #fff;
  width: 185px;
  justify-content: center;
}
.footer .btn_reserve:before {
  border-left: 10px solid #fff;
}
.footer .btn_reserve:hover {
  border-color: #F08558;
  background-color: #F08558;
}
@media screen and (max-width: 768px) {
  .footer .btn_reserve {
    border: 1px solid #fff;
    font-size: 16px;
  }
}
.footer .inner, .footer .page-camera .room_hero, .page-camera .footer .room_hero, .footer .page-domus .room_hero, .page-domus .footer .room_hero {
  display: flex;
  align-items: flex-start;
  gap: 4.33%;
  max-width: calc(1038px + var(--sideW) * 2);
}
@media screen and (max-width: 768px) {
  .footer .inner, .footer .page-camera .room_hero, .page-camera .footer .room_hero, .footer .page-domus .room_hero, .page-domus .footer .room_hero {
    flex-direction: column;
  }
}
.footer .footer_logo {
  flex-shrink: 0;
  width: 11.65%;
}
@media screen and (max-width: 768px) {
  .footer .footer_logo {
    width: 94px;
    margin: 0 auto 1em;
  }
}
.footer .footer_content {
  flex-grow: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer .footer_content {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    max-width: 268px;
  }
}
.footer .footer_nav_01 {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav_01 {
    font-size: 0.8125em;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_nav_02 {
    font-size: 0.8125em;
    margin-bottom: 2.5em;
  }
}
.footer .footer_nav_02 > li {
  margin-bottom: 10px;
}
.footer .footer_nav_02 > li:last-child {
  margin-bottom: 0;
}
.footer .footer_nav_02 .between {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav_02 .between {
    flex-direction: column;
    gap: 0.75em;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_nav_03 {
    font-size: 0.8125em;
    margin-bottom: 2.5em;
  }
}
.footer .footer_nav_03 > li {
  margin-bottom: 10px;
}
.footer .footer_nav_03 > li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav_04 {
    font-size: 0.8125em;
  }
}
.footer .footer_nav_04 > li {
  margin-bottom: 10px;
}
.footer .footer_nav_04 > li:last-child {
  margin-bottom: 0;
}
.footer .footer_nav_04 > li.sp.en {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 18px;
  margin-top: 1.125em;
}
.footer .footer_nav_04 .flex {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav_04 .flex {
    margin-top: 20px;
  }
}
.footer .end {
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer .end {
    gap: 18px;
    margin-top: 24px;
  }
}
.footer .end .address {
  font-size: 0.9375em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .footer .end .address {
    font-size: 0.8125em;
  }
}
.footer .end .copyright {
  font-size: 0.8125em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .footer .end .copyright {
    width: 100vw;
    font-size: 11px;
    margin: 0 var(--extend);
    text-align: center;
  }
}

.top_hero {
  width: 100%;
  height: 100vh;
  display: grid;
  place-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_hero {
    height: 100svh;
  }
}
.top_hero .bg_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top_hero .bg_movie video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_hero .logo {
  position: relative;
  width: 153px;
}
@media screen and (max-width: 768px) {
  .top_hero .scroller {
    position: absolute;
    bottom: 40px;
    right: 20px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: #fff;
  }
  .top_hero .scroller .bar {
    display: block;
    width: 1px;
    height: 76px;
    margin: 0 0 8px auto;
    overflow: hidden;
    position: relative;
  }
  .top_hero .scroller .bar:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    margin: 0 0 8px auto;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    animation: expandBar 2s ease-in-out infinite;
  }
}

@keyframes expandBar {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.top_sec_01 {
  background-color: #F3F0E9;
  padding: 7.5em 0 4.75em;
}
@media screen and (max-width: 768px) {
  .top_sec_01 {
    padding: 1.875em 0 1.875em;
  }
}
.top_sec_01 ul li {
  display: flex;
  align-items: flex-start;
  gap: 6.61%;
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  .top_sec_01 ul li {
    flex-direction: column;
    gap: 21px;
    margin-bottom: 1.5em;
  }
}
.top_sec_01 ul li:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .top_sec_01 ul li:nth-child(even) {
    flex-direction: column;
  }
}
.top_sec_01 ul li:last-child {
  margin-bottom: 0;
}
.top_sec_01 ul li .box_image {
  flex-shrink: 0;
  width: 46.69%;
}
@media screen and (max-width: 768px) {
  .top_sec_01 ul li .box_image {
    width: 100%;
  }
}
.top_sec_01 ul li .box_text {
  flex-grow: 1;
  padding-top: 1.48%;
}
@media screen and (max-width: 768px) {
  .top_sec_01 ul li .box_text {
    padding-top: 0;
  }
}
.top_sec_01 h2 {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.375em;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .top_sec_01 h2 {
    font-size: 1em;
    margin-right: -1em;
  }
}
.top_sec_01 .para {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.08em;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .top_sec_01 .para {
    font-size: 0.875em;
    line-height: 2;
  }
}
.top_sec_01 .para p {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .top_sec_01 .para p {
    margin-top: 1.5em;
  }
}

.top_sec_02 {
  background-color: #2C1F11;
  padding: 3.75em 0;
}
@media screen and (max-width: 768px) {
  .top_sec_02 {
    padding: 2em 0;
  }
}
.top_sec_02 .video {
  width: 58.64%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top_sec_02 .video {
    width: 100%;
  }
}
.top_sec_02 .video video {
  display: block;
  width: 100%;
}

.top_sec_03 {
  background-color: #fff;
  padding: 4.5em 0;
}
@media screen and (max-width: 768px) {
  .top_sec_03 {
    padding: 1.5em 0 3.75em;
  }
}
.top_sec_03 h2 {
  margin-bottom: 2.25em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_sec_03 h2 {
    margin: 0 var(--extend) 1.5em;
  }
}
.top_sec_03 h2:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-top: 1px solid #F08558;
  border-bottom: 1px solid #F08558;
  position: absolute;
  top: 66%;
  left: 0;
}
.top_sec_03 h2 span {
  position: relative;
  display: block;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 57px;
}
@media screen and (max-width: 768px) {
  .top_sec_03 h2 span {
    padding: 0 51px;
    width: 190px;
  }
}
.top_sec_03 h2 + p {
  margin-bottom: 2em;
  text-align: center;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.08em;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .top_sec_03 h2 + p {
    font-size: 0.9375em;
    margin: 0 -1em 2em;
  }
}
.top_sec_03 ul {
  display: flex;
  align-items: flex-start;
  gap: 8.4%;
}
@media screen and (max-width: 768px) {
  .top_sec_03 ul {
    flex-direction: column;
    align-items: unset;
    gap: 3.125em;
    margin: 0 var(--extend);
  }
}
.top_sec_03 ul li {
  width: 100%;
}
.top_sec_03 ul li .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 390/460;
  position: relative;
  margin-bottom: 3em;
}
.top_sec_03 ul li .image:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #F08558;
  position: absolute;
  top: 0;
  left: 0;
}
.top_sec_03 ul li .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.top_sec_03 ul li .image:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.top_sec_03 ul li h3 {
  margin-bottom: 1em;
  position: relative;
}
.top_sec_03 ul li h3:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-top: 1px solid #F08558;
  border-bottom: 1px solid #F08558;
  position: absolute;
  top: 20%;
  left: 0;
}
.top_sec_03 ul li h3 span {
  position: relative;
  display: block;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 40px;
}
.top_sec_03 ul li a.txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid #A8A8A8;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.15em;
  padding: 16px 2.4%;
}
@media screen and (max-width: 768px) {
  .top_sec_03 ul li a.txt {
    font-size: 0.875em;
    width: 288px;
    margin: 0 auto;
    padding: 8px 2.4%;
  }
}
.top_sec_03 ul li a.txt:before {
  content: "";
  display: block;
  width: 5px;
  aspect-ratio: 5/9;
  background: url(../images/ico_arrow_right_01_black.svg) no-repeat center/contain;
  flex-grow: 0;
}
.top_sec_03 ul li figure.sp {
  margin-top: 1.25em;
  padding: 0 var(--sideW);
}
@media screen and (max-width: 768px) {
  .top_sec_03 ul li.domus h3 span img {
    width: 123px;
  }
  .top_sec_03 ul li.camera h3 span img {
    width: 136px;
  }
}
.top_sec_03 .floor_map {
  margin-top: 3.5em;
}

.top_sec_04 {
  display: block;
  overflow: hidden;
}
.top_sec_04 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_sec_04 .image_sub {
  display: flex;
}
.top_sec_04 .image_sub .image {
  width: 100%;
  display: block;
  overflow: hidden;
  aspect-ratio: 640/310;
}
.top_sec_04 .image_sub .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_sec_05 {
  background-color: #F3F0E9;
  padding: 6.25em 0;
}
@media screen and (max-width: 768px) {
  .top_sec_05 {
    padding: 2.5em 2% 3.125em;
  }
}
.top_sec_05 .list_contents {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
.top_sec_05 .list_contents > li {
  margin-bottom: 6em;
  display: flex;
  align-items: flex-start;
  gap: 1.5em 11.95%;
}
@media screen and (max-width: 768px) {
  .top_sec_05 .list_contents > li {
    flex-direction: column;
    margin-bottom: 2.5em;
  }
}
.top_sec_05 .list_contents > li:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .top_sec_05 .list_contents > li:nth-child(even) {
    flex-direction: column;
  }
}
.top_sec_05 .list_contents > li:last-child {
  margin-bottom: 0;
}
.top_sec_05 .list_contents > li .box_image {
  flex-shrink: 0;
  width: 43.9%;
}
@media screen and (max-width: 768px) {
  .top_sec_05 .list_contents > li .box_image {
    width: 100%;
  }
}
.top_sec_05 .list_contents > li .box_text {
  flex-grow: 1;
  padding-top: 3.41%;
}
@media screen and (max-width: 768px) {
  .top_sec_05 .list_contents > li .box_text {
    padding-top: 0;
    width: 100%;
  }
}
.top_sec_05 h3 {
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  .top_sec_05 h3 {
    margin-bottom: 1.75em;
  }
}
.top_sec_05 h3 + * {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.08em;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .top_sec_05 h3 + * {
    font-size: 1em;
    line-height: 1.8;
  }
}
.top_sec_05 a {
  margin-top: 2.25em;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid #A8A8A8;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.15em;
  padding: 16px 2.4%;
}
.top_sec_05 a:before {
  content: "";
  display: block;
  width: 5px;
  aspect-ratio: 5/9;
  background: url(../images/ico_arrow_right_01_black.svg) no-repeat center/contain;
  flex-grow: 0;
}
@media screen and (max-width: 768px) {
  .top_sec_05 a {
    margin-top: 10px;
    font-size: 1em;
    width: 100%;
  }
}

.top_sec_06 {
  background-color: #fff;
  padding: 7.5em 0;
}
@media screen and (max-width: 768px) {
  .top_sec_06 {
    padding: 3em 0 5em;
  }
}
.top_sec_06 .inner, .top_sec_06 .page-camera .room_hero, .page-camera .top_sec_06 .room_hero, .top_sec_06 .page-domus .room_hero, .page-domus .top_sec_06 .room_hero {
  max-width: calc(840px + var(--sideW) * 2);
}
.top_sec_06 .ttl_cmn_01 {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .top_sec_06 .ttl_cmn_01 {
    margin: 0 var(--extend) 10px;
  }
  .top_sec_06 .ttl_cmn_01 .en:before {
    top: 34%;
  }
  .top_sec_06 .ttl_cmn_01 span {
    padding: 0 18px;
    width: 236px;
  }
}

.dlist_spend {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.dlist_spend .group {
  border-bottom: 1px solid #F08558;
}
.dlist_spend dt {
  padding: 24px 0;
  font-size: 1.125em;
  letter-spacing: 0.15em;
  line-height: 1.66;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .dlist_spend dt {
    font-size: 1em;
  }
}
.dlist_spend dt:before {
  content: attr(data-num);
  display: inline-block;
  width: 50px;
  font-size: 1.33em;
}
@media screen and (max-width: 768px) {
  .dlist_spend dt:before {
    width: 44px;
    font-size: 1.25em;
  }
}
.dlist_spend dt:after {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 15/8;
  background: url(../images/ico_arrow_bottom_01_textcolor.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .dlist_spend dt:after {
    width: 10px;
  }
}
.dlist_spend dt.js-active:after {
  transform: translateY(-50%) rotate(180deg);
}
.dlist_spend dd {
  display: none;
}
.dlist_spend dd .accordion_content {
  padding: 0 20px 48px 50px;
  font-size: 1.125em;
  letter-spacing: 0.12em;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .dlist_spend dd .accordion_content {
    padding: 0 20px 48px 44px;
    font-size: 1em;
  }
}

.top_sec_07 {
  background-color: #fff;
  padding: 0 0 7.5em;
}
@media screen and (max-width: 768px) {
  .top_sec_07 {
    padding-bottom: 4em;
  }
}
.top_sec_07 .inner, .top_sec_07 .page-camera .room_hero, .page-camera .top_sec_07 .room_hero, .top_sec_07 .page-domus .room_hero, .page-domus .top_sec_07 .room_hero {
  max-width: calc(840px + var(--sideW) * 2);
}
.top_sec_07 .ttl_cmn_01 {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .top_sec_07 .ttl_cmn_01 {
    margin: 0 var(--extend) 1.25em;
  }
  .top_sec_07 .ttl_cmn_01 span img {
    width: 94px;
  }
}
.top_sec_07 .btn_cmn_01 {
  margin: 34px auto 0;
}

.list_news {
  width: 100%;
  max-width: 696px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 11.2%;
}
@media screen and (max-width: 768px) {
  .list_news {
    max-width: 320px;
  }
}
.list_news > li {
  width: 25.8666666667%;
}
@media screen and (max-width: 768px) {
  .list_news > li {
    width: 100%;
  }
}

.card_news_01 {
  display: block;
}
.card_news_01 .image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 9px;
}
.card_news_01 .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_news_01 .date {
  font-size: 0.6875em;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.card_news_01 .ttl {
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.no-post {
  text-align: center;
  font-size: 0.8125em;
  letter-spacing: 0.1em;
}

.top_sec_08 {
  background-color: #F3F0E9;
  padding: 3.75em 0 6em;
}
@media screen and (max-width: 768px) {
  .top_sec_08 {
    padding: 3.125em 0 5em;
  }
}
.top_sec_08 .inner, .top_sec_08 .page-camera .room_hero, .page-camera .top_sec_08 .room_hero, .top_sec_08 .page-domus .room_hero, .page-domus .top_sec_08 .room_hero {
  max-width: calc(1028px + var(--sideW) * 2);
}
.top_sec_08 .ttl_cmn_01 {
  margin-bottom: 5.75em;
}
@media screen and (max-width: 768px) {
  .top_sec_08 .ttl_cmn_01 {
    margin: 0 var(--extend) 10px;
  }
  .top_sec_08 .ttl_cmn_01 .en:before {
    top: 36%;
  }
  .top_sec_08 .ttl_cmn_01 span {
    padding: 0 16px;
  }
  .top_sec_08 .ttl_cmn_01 span img {
    width: 200px;
  }
}
.top_sec_08 .flex {
  display: flex;
  align-items: flex-start;
  gap: 5.44%;
}
@media screen and (max-width: 768px) {
  .top_sec_08 .flex {
    flex-direction: column;
    gap: 10px;
  }
}
.top_sec_08 .flex .left {
  flex-shrink: 0;
  width: 56%;
}
@media screen and (max-width: 768px) {
  .top_sec_08 .flex .left {
    width: auto;
    margin: 0 var(--extend);
  }
}
.top_sec_08 .flex .right {
  flex-grow: 1;
  width: 100%;
}
.top_sec_08 .btn_cmn_01 {
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  .top_sec_08 .btn_cmn_01 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .dlist_spot {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.dlist_spot .group {
  margin-bottom: 28px;
}
.dlist_spot .group:last-child {
  margin-bottom: 0;
}
.dlist_spot dt {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .dlist_spot dt {
    font-size: 0.9375em;
  }
}
.dlist_spot dd {
  padding-left: 18px;
  margin-top: 6px;
  font-size: 0.8125em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .dlist_spot dd {
    padding-left: 0;
  }
}

.room_sec_01 {
  padding: 7.5em 0 5em;
}
@media screen and (max-width: 768px) {
  .room_sec_01 {
    padding: 1.75em 0;
  }
}
.room_sec_01 .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 7.5em;
}
@media screen and (max-width: 768px) {
  .room_sec_01 .content {
    flex-direction: column;
  }
}
.room_sec_01 .box_image {
  flex-shrink: 0;
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .room_sec_01 .box_image {
    padding: 20px 0;
  }
}
.room_sec_01 .box_image:before, .room_sec_01 .box_image:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-top: 1px solid #F08558;
  border-bottom: 1px solid #F08558;
  position: absolute;
  left: 0;
}
.room_sec_01 .box_image:before {
  top: 0;
}
.room_sec_01 .box_image:after {
  bottom: 0;
}
.room_sec_01 .box_text {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
}
@media screen and (max-width: 768px) {
  .room_sec_01 .box_text {
    font-size: 1em;
  }
}
.room_sec_01 .box_text h2 {
  margin-bottom: 0.75em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .room_sec_01 .box_text h2 {
    text-align: center;
    margin-bottom: 2em;
  }
}
.room_sec_01 .box_text p {
  letter-spacing: 0.1em;
  line-height: 1.66;
}
.room_sec_01 .images {
  max-width: 1062px;
  margin: 5em auto 0;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .room_sec_01 .images {
    margin-top: 2em;
    flex-direction: column;
  }
}
.room_sec_01 .images .image {
  width: 100%;
  display: block;
  overflow: hidden;
  aspect-ratio: 520/376;
}
.room_sec_01 .images .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.room_sec_02 {
  padding: 4em 0;
  background: #F3F0E9;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .room_sec_02 {
    padding: 2.5em 0;
  }
}
.room_sec_02 .splide {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.room_sec_02 .splide__track {
  overflow: visible;
}
.room_sec_02 .splide__arrow {
  background: none;
}
.room_sec_02 .splide__arrow svg {
  display: none;
}
.room_sec_02 .splide__arrow--prev {
  background: url(../images/ico_arrow_02.svg) no-repeat center/30%;
  left: -2.5em;
}
@media screen and (max-width: 768px) {
  .room_sec_02 .splide__arrow--prev {
    left: -1.8em;
  }
}
.room_sec_02 .splide__arrow--next {
  background: url(../images/ico_arrow_01.svg) no-repeat center/30%;
  right: -2.5em;
}
@media screen and (max-width: 768px) {
  .room_sec_02 .splide__arrow--next {
    right: -1.8em;
  }
}
@media screen and (max-width: 768px) {
  .room_sec_02 .splide {
    max-width: 262px;
  }
}

.room_sec_03 {
  padding: 7.5em 0;
}
@media screen and (max-width: 768px) {
  .room_sec_03 {
    padding: 1.875em 0 2.5em;
  }
}
.room_sec_03 .content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 8px 6.27%;
}
@media screen and (max-width: 768px) {
  .room_sec_03 .content {
    flex-direction: column;
  }
}
.room_sec_03 .box_image {
  flex-shrink: 0;
  width: 56.77%;
}
@media screen and (max-width: 768px) {
  .room_sec_03 .box_image {
    width: 100%;
  }
}
.room_sec_03 .box_text {
  flex-grow: 1;
  padding-top: 8.13%;
}
@media screen and (max-width: 768px) {
  .room_sec_03 .box_text {
    padding-top: 0;
  }
}
.room_sec_03 dl {
  font-size: 0.875em;
  letter-spacing: 0.1em;
  line-height: 2.5em;
}
@media screen and (max-width: 768px) {
  .room_sec_03 dl {
    font-size: 0.75em;
    margin-right: -1em;
  }
}
.room_sec_03 dl .group {
  display: flex;
  align-items: baseline;
  gap: 2em;
}
.room_sec_03 dl dt {
  flex-shrink: 0;
}
.room_sec_03 dl dd {
  flex-grow: 1;
}
.room_sec_03 .btn_reserve_02 {
  margin-top: 40px;
  max-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 4px calc(12px + 1em) 4px 14px;
  border: 1px solid #AFAFAF;
  font-size: 1.25em;
  letter-spacing: 0.4em;
}
.room_sec_03 .btn_reserve_02:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #3C2C1A;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .room_sec_03 .btn_reserve_02 {
    font-size: 16px;
    letter-spacing: 0.3em;
    margin: 30px auto 0;
  }
}
.room_sec_03 .btn_reserve_02 + .btn_faq {
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .room_sec_03 .btn_reserve_02 + .btn_faq {
    margin: 30px auto 0;
  }
}
.room_sec_03 .btn_faq {
  font-size: 0.875em;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: block;
  padding: 0 2.5em 0.5em 1.125em;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.room_sec_03 .btn_faq:after {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  border-bottom: 1px solid #848484;
  border-right: 2px solid #848484;
  transform: skew(45deg);
  position: absolute;
  bottom: 0;
  left: -6px;
}

.room_sec_04 {
  background-color: #F3F0E9;
  padding: 4em 0;
}
@media screen and (max-width: 768px) {
  .room_sec_04 {
    padding: 2em 0 3.75em;
  }
}
.room_sec_04 ul {
  max-width: 786px;
  margin: 0 auto;
}
.room_sec_04 ul li {
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .room_sec_04 ul li {
    flex-direction: column;
    gap: 16px;
  }
}
.room_sec_04 ul li:last-child {
  margin-bottom: 0;
}
.room_sec_04 ul li .box_image {
  width: 27%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .room_sec_04 ul li .box_image {
    width: 100%;
  }
  .room_sec_04 ul li .box_image img {
    width: 100%;
    max-width: unset;
  }
}
.room_sec_04 ul li dl {
  flex-grow: 1;
}
.room_sec_04 ul li dt {
  font-size: 1.125em;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .room_sec_04 ul li dt {
    font-size: 1em;
  }
}
.room_sec_04 ul li dd {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .room_sec_04 ul li dd {
    font-size: 0.8125em;
  }
}

.page-domus .room_hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/domus_01.jpg?ver=20260618) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .page-domus .room_hero {
    background: url(../images/domus_01_sp.jpg) no-repeat center/cover;
  }
}
@media screen and (max-width: 768px) {
  .page-domus .room_sec_01 .box_image {
    width: 120px;
  }
}

.page-camera .room_hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/camera_01.jpg?ver=20260618) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .page-camera .room_hero {
    background: url(../images/camera_01_sp.jpg?ver=20260618) no-repeat center/cover;
  }
}
@media screen and (max-width: 768px) {
  .page-camera .room_sec_01 .box_image {
    width: 132px;
  }
}

@media screen and (max-width: 768px) {
  .page-lounge .ttl_cmn_01 {
    margin-left: var(--extend);
    margin-right: var(--extend);
    margin-bottom: 30px;
  }
  .page-lounge .ttl_cmn_01 .en span {
    width: 222px;
    padding: 0 30px;
  }
  .page-lounge .ttl_cmn_01 .en span img {
    width: 100%;
  }
}

.lounge_hero {
  width: 100%;
  height: 100vh;
  display: block;
  overflow: hidden;
  margin-bottom: 7.5em;
}
@media screen and (max-width: 768px) {
  .lounge_hero {
    margin-bottom: 3.75em;
  }
}
.lounge_hero img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lounge_content_text01 {
  text-align: center;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .lounge_content_text01 {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 2em;
  }
}

.lounge_content_list > li {
  display: flex;
  gap: 20px 8.15%;
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  .lounge_content_list > li {
    flex-direction: column;
    margin-bottom: 2em;
  }
}
.lounge_content_list > li:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .lounge_content_list > li:nth-child(even) {
    flex-direction: column;
  }
}
.lounge_content_list > li:last-child {
  margin-bottom: 0;
}
.lounge_content_list > li .box_image {
  flex-shrink: 0;
  width: 45.34%;
}
@media screen and (max-width: 768px) {
  .lounge_content_list > li .box_image {
    width: 100%;
  }
}
.lounge_content_list > li .box_text {
  flex-grow: 1;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  padding-top: 2.8%;
}
@media screen and (max-width: 768px) {
  .lounge_content_list > li .box_text {
    padding: 0 3%;
  }
}
.lounge_content_list > li .box_text h2 {
  font-size: 1.375em;
  letter-spacing: 0.1em;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 768px) {
  .lounge_content_list > li .box_text h2 {
    font-size: 1em;
    margin-bottom: 1em;
  }
}
.lounge_content_list > li .box_text .para {
  letter-spacing: 0.1em;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .lounge_content_list > li .box_text .para {
    font-size: 0.875em;
    line-height: 2;
  }
}
.lounge_content_list > li .box_text .para p {
  margin-top: 2.5em;
}
@media screen and (max-width: 768px) {
  .lounge_content_list > li .box_text .para p {
    margin-top: 2em;
  }
}
.lounge_content_list > li .box_text .para p:first-child {
  margin-top: 0;
}

.page-arts .ttl_cmn_01 {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .page-arts .ttl_cmn_01 {
    margin-left: var(--extend);
    margin-right: var(--extend);
    margin-bottom: 30px;
  }
  .page-arts .ttl_cmn_01 .en span {
    width: 222px;
    padding: 0 30px;
  }
  .page-arts .ttl_cmn_01 .en span img {
    width: 70px;
  }
}

.arts_hero {
  width: 100%;
  height: 100vh;
  display: block;
  overflow: hidden;
  margin-bottom: 7.5em;
}
@media screen and (max-width: 768px) {
  .arts_hero {
    margin-bottom: 3.75em;
  }
}
.arts_hero img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.arts_content_text01 {
  text-align: center;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  margin-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .arts_content_text01 {
    font-size: 1em;
    margin-bottom: 3.25em;
  }
}

.arts_gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  margin-bottom: 6.25em;
}
@media screen and (max-width: 768px) {
  .arts_gallery {
    gap: 25px;
    margin-bottom: 2em;
  }
}
.arts_gallery > li {
  width: calc((100% - 55px) / 2);
  display: block;
  overflow: hidden;
  aspect-ratio: 390/460;
}
@media screen and (max-width: 768px) {
  .arts_gallery > li {
    width: 100%;
  }
}
.arts_gallery > li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.arts_profile {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  line-height: 2.85;
  width: 100%;
  max-width: 592px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .arts_profile {
    line-height: 2;
  }
}
.arts_profile dt:before {
  content: "■";
}

.access_sec_01 {
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  .access_sec_01 {
    margin-bottom: 3.125em;
  }
}
.access_sec_01 .ttl_cmn_01 {
  margin-bottom: 1.25em;
}
@media screen and (max-width: 768px) {
  .access_sec_01 .ttl_cmn_01 span {
    padding: 0 28px;
  }
  .access_sec_01 .ttl_cmn_01 span img {
    width: 96px;
  }
}

.map {
  max-width: 1152px;
  margin: 0 auto;
  display: block;
  width: 100%;
  height: 473px;
}
@media screen and (max-width: 768px) {
  .map {
    width: auto;
    height: 290px;
    margin: 0 var(--extend);
  }
}
.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
}

.access_sec_02 {
  margin-bottom: 7.5em;
}
@media screen and (max-width: 768px) {
  .access_sec_02 {
    margin-bottom: 3em;
  }
}
.access_sec_02 .ttl_cmn_02 {
  margin-bottom: 3.125em;
}
@media screen and (max-width: 768px) {
  .access_sec_02 .ttl_cmn_02 {
    margin-bottom: 1.25em;
  }
}
.access_sec_02 figure {
  display: block;
  width: 100%;
  max-width: 773px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .access_sec_02 figure {
    margin-bottom: 20px;
  }
}
.access_sec_02 p {
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access_sec_02 p {
    font-size: 0.75em;
    text-align: left;
    width: 85%;
    margin: 0 auto;
  }
}

.access_sec_03 {
  padding-bottom: 5em;
}
@media screen and (max-width: 768px) {
  .access_sec_03 {
    padding-bottom: 2.5em;
  }
}
.access_sec_03 .ttl_cmn_02 {
  margin-bottom: 3.125em;
}
@media screen and (max-width: 768px) {
  .access_sec_03 .ttl_cmn_02 {
    margin-bottom: 1.25em;
  }
}
.access_sec_03 figure {
  display: block;
  width: 100%;
  max-width: 773px;
  margin: 0 auto 30px;
}
.access_sec_03 ul {
  width: 100%;
  max-width: 773px;
  margin: 0 auto 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 38px;
}
@media screen and (max-width: 768px) {
  .access_sec_03 ul {
    gap: 7px;
    max-width: 310px;
    margin: 0 auto;
  }
}
.access_sec_03 ul > li {
  width: calc((100% - 38px) / 2);
  font-size: 0.9375em;
  letter-spacing: 0.15em;
  border: 1px solid #707070;
  background-color: #EBE4D5;
  padding: 0.5em 4.5%;
}
@media screen and (max-width: 768px) {
  .access_sec_03 ul > li {
    width: 100%;
    font-size: 0.75em;
    padding: 0.5em 8%;
  }
}

.access_sec_04 {
  background-color: #fff;
  padding: 5em 0;
}
@media screen and (max-width: 768px) {
  .access_sec_04 {
    padding: 1.5em 0 2.5em;
  }
}
.access_sec_04 .ttl_cmn_02 {
  margin-bottom: 3.125em;
}
@media screen and (max-width: 768px) {
  .access_sec_04 .ttl_cmn_02 {
    margin-bottom: 2.5em;
  }
}

.dlist_access {
  width: 100%;
  max-width: 611px;
  margin: 0 auto;
}
.dlist_access .group {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .dlist_access .group {
    margin-bottom: 30px;
  }
}
.dlist_access .group:last-child {
  margin-bottom: 0;
}
.dlist_access dt {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.dlist_access dt span {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .dlist_access dt {
    font-size: 0.875em;
    margin-bottom: 5px;
  }
}
.dlist_access dd {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .dlist_access dd {
    font-size: 0.8125em;
  }
}

.access_sec_05 {
  padding-top: 3.75em;
}
.access_sec_05 .list_access {
  width: 100%;
  max-width: 611px;
  margin: 0 auto;
}
.access_sec_05 .list_access > li {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .access_sec_05 .list_access > li {
    gap: 14px;
  }
}
.access_sec_05 .list_access > li .box_image {
  width: 123px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .access_sec_05 .list_access > li .box_image {
    width: 64px;
  }
}
.access_sec_05 .list_access > li dl {
  flex-grow: 1;
}
.access_sec_05 .list_access > li dt {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.25em;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .access_sec_05 .list_access > li dt {
    font-size: 0.875em;
    margin-bottom: 5px;
  }
}
.access_sec_05 .list_access > li dd {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .access_sec_05 .list_access > li dd {
    font-size: 0.6875em;
  }
}
.access_sec_05 .list_access > li:last-child {
  margin-bottom: 0;
}

.page-faq .l_container {
  background-color: #fff;
}
.page-faq .ttl_cmn_01 span img {
  width: 49px;
}
@media screen and (max-width: 768px) {
  .page-faq .ttl_cmn_01 {
    margin-left: var(--extend);
    margin-right: var(--extend);
    margin-bottom: 16px;
  }
}

.dlist_faq .group {
  border-bottom: 1px solid #F08558;
}
.dlist_faq dt {
  cursor: pointer;
  padding: 34px 1.5em 24px 44px;
  font-size: 1.125em;
  letter-spacing: 0.12em;
  line-height: 1.66;
  position: relative;
}
@media screen and (max-width: 768px) {
  .dlist_faq dt {
    font-size: 0.875em;
    padding: 20px 1.5em 20px 25px;
  }
}
.dlist_faq dt:before {
  content: "Q";
  position: absolute;
  top: calc(34px - 0.3em);
  left: 0;
  font-size: 1.33em;
}
@media screen and (max-width: 768px) {
  .dlist_faq dt:before {
    top: calc(20px - 0.3em);
  }
}
.dlist_faq dt:after {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 15/8;
  background: url(../images/ico_arrow_bottom_01_textcolor.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 13px;
}
@media screen and (max-width: 768px) {
  .dlist_faq dt:after {
    font-size: 1em;
    width: 10px;
    right: 10px;
    top: 30px;
  }
}
.dlist_faq dt.js-active:after {
  transform: rotate(180deg);
}
.dlist_faq dd {
  display: none;
}
.dlist_faq .accordion_content {
  font-size: 1.125em;
  letter-spacing: 0.12em;
  line-height: 1.66;
  padding: 10px 0 40px 44px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .dlist_faq .accordion_content {
    font-size: 0.875em;
    padding: 0px 0 30px 25px;
  }
}
.dlist_faq .accordion_content:before {
  content: "A";
  position: absolute;
  top: calc(10px - 0.3em);
  left: 1px;
  font-size: 1.33em;
}
@media screen and (max-width: 768px) {
  .dlist_faq .accordion_content:before {
    top: calc(3px - 0.3em);
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .page-guideline .ttl_cmn_01 .en span {
    width: 238px;
    padding: 0 25px;
  }
  .page-guideline .ttl_cmn_01 .en span img {
    width: 100%;
  }
}

.guideline_content {
  letter-spacing: 0.1em;
  line-height: 2.1875;
}
@media screen and (max-width: 768px) {
  .guideline_content {
    font-size: 0.8125em;
  }
}

.guideline_lead {
  margin-bottom: 2.1875em;
}
.guideline_lead h2 {
  margin-bottom: 1em;
}
.guideline_lead p {
  margin-top: 2.1875em;
}
.guideline_lead p:first-child {
  margin-top: 0;
}

.guideline_list > li {
  margin-bottom: 2.1875em;
}
.guideline_list > li:last-child {
  margin-bottom: 0;
}
.guideline_list h2 {
  font-weight: 700;
  color: #00527E;
  line-height: 2.1875;
}
.guideline_list .para p {
  margin-top: 2.1875em;
}
.guideline_list .para p:first-child {
  margin-top: 0;
}

.dlist_en_01 dt {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #00527E;
  margin-bottom: 12px;
}
.dlist_en_01 dd {
  margin-bottom: 40px;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.dlist_en_01 dd:last-child {
  margin-bottom: 0;
}
.dlist_en_01 dd p {
  margin-top: 20px;
}
.dlist_en_01 dd .list_dot {
  margin-top: 20px;
  padding-left: 1.75em;
}
.dlist_en_01 dd .list_dot > li {
  margin-bottom: 0.75em;
}
.dlist_en_01 dd .list_dot > li:last-child {
  margin-bottom: 0;
}
.dlist_en_01 dd .list_dot span {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-contact .ttl_cmn_01,
  .page-thanks .ttl_cmn_01 {
    margin-bottom: 2.5em;
  }
  .page-contact .ttl_cmn_01 span,
  .page-thanks .ttl_cmn_01 span {
    padding: 0 25px;
  }
  .page-contact .ttl_cmn_01 span img,
  .page-thanks .ttl_cmn_01 span img {
    width: 160px;
  }
}

.contact_content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.contact_lead {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
  line-height: 2.1875;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .contact_lead {
    font-size: 0.8125em;
    margin-bottom: 35px;
  }
}
.contact_lead a {
  text-decoration: underline;
}

.contact_policy {
  margin-top: 50px;
}
.contact_policy dt {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-bottom: 10px;
}
.contact_policy dt.require:after {
  content: "＊";
  color: #E3765B;
  margin-left: 10px;
}
.contact_policy dd > p {
  font-size: 0.9375em;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .contact_policy dd > p {
    font-size: 0.875em;
  }
}

.policy_content {
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  line-height: 2;
}
.policy_content__wrap {
  height: 300px;
  overflow: scroll;
  border: 1px solid #707070;
  padding: 5%;
}

.thanks_content {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks_content {
    font-size: 0.875em;
  }
}

.list_cat_nav {
  max-width: 860px;
  margin: 0 auto 2.5em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em 10%;
}
.list_cat_nav li a {
  display: block;
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  min-width: 90px;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 768px) {
  .list_cat_nav li a {
    min-width: 72px;
  }
}
.list_cat_nav li a.is-current {
  border-color: #000;
}
@media (hover: hover) {
  .list_cat_nav li a:hover {
    border-color: #000;
  }
}

.article-header {
  margin-bottom: 2.75em;
}
@media screen and (max-width: 768px) {
  .article-header {
    margin-bottom: 2.5em;
  }
}
.article-header h1 {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.375em;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .article-header h1 {
    font-size: 1em;
    margin-bottom: 8px;
  }
}
.article-header .date,
.article-header .cat {
  font-size: 0.6875em;
  letter-spacing: 0.1em;
}
.article-header .date {
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  .page-english .ttl_cmn_01 span {
    padding: 0 25px;
  }
  .page-english .ttl_cmn_01 span img {
    width: 186px;
  }
}

.content_english {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.1em;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .content_english {
    font-size: 0.8125em;
  }
}
.content_english h2 {
  color: #00527E;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .content_english h2 {
    font-size: inherit;
  }
}
.content_english .list_dot > li {
  margin-bottom: 1.25em;
}
.content_english .list_dot > li:last-child {
  margin-bottom: 0;
}
.content_english .list_dot span {
  font-weight: 700;
}

.english_sec_01 {
  margin-bottom: 3em;
}
.english_sec_01 h2 {
  margin-right: var(--extend);
}

.english_sec_02 > li {
  margin-bottom: 2.5em;
}
.english_sec_02 > li:last-child {
  margin-bottom: 0;
}

.bg_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#top_slider .splide__slide .box {
  display: block;
  overflow: hidden;
  position: relative;
}
#top_slider .splide__slide .box:after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #top_slider .splide__slide .box:after {
    height: 100svh;
  }
}
#top_slider .splide__slide .box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#top_slider .splide__slide.is-active .box, #top_slider .splide__slide.is-prev .box,
#top_slider .splide__slide .box.is-prev {
  animation: scale 8s linear 0s normal both;
}

@keyframes scale {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
.error404 .section_wrap {
  padding: calc(7.5em + var(--headerHeight)) 0 7.5em;
}
.error404 .section_wrap .btn_cmn_01 {
  margin: 3.75em auto 0;
}