/* base */
html {
  color: #fff;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  width: 100%;
  color: #fff;
  font-family: 'Times New Roman', 'Noto Serif JP', serif;
  font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-font-smoothing: antialiased;
  -moz-text-size-adjust: 100%;
  -ms-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -o-font-smoothing: antialiased;
  -o-text-size-adjust: 100%;
  font-weight: 200;
  font-size: 1.4rem;
  line-height: 2.2;
  text-align: justify;
  background-color: #040511;
}
@media screen and ( min-width: 1025px ) {
  body {
    min-width: 1040px;
  }
}
body.fixed {
  height: 100vh;
  overflow: hidden;
}
.top .wrapper {
  height: 100vh;
  overflow: hidden;
  opacity: 0;
}
.content_wrap {
  background-color: #040511;
}
/* common */
.inview {
  opacity: 0;
  transform: translateY(30px);
}
.inview.is_done {
  opacity: 1;
  transform: translateY(0);
  transition: 1.2s ease-out;
}
.item_head {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: .1em;
  text-align: left;
}
.align_right {
  text-align: right;
}
.align_right .body_text {
  text-align: justify;
}
.flex_end {
  align-items: flex-end;
}
.flex_reverse {
  flex-direction: row-reverse;
}
.body_text:not(:first-of-type) {
  margin-top: 24px;
}
.btn_basic {
  display: block;
  margin: 0 auto;
  color: #000;
  font-weight: bold;
  letter-spacing: .1em;
  text-align: center;
  background: #fff;
}
.btn_frame {
  display: block;
  position: relative;
  text-align: center;
  border: 1px solid #fff;
}
.btn_frame::before {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: 1.6rem;
}
@media screen and ( min-width: 1025px ) {
  .content_inner {
    width: 900px;
    margin: 0 auto;
  }
  .item_head {
    padding-left: 16px;
    font-size: 2.4rem;
    line-height: 1.4;
    border-left: 8px solid #f00;
  }
  .btn_basic {
    width: 536px;
    font-size: 1.8rem;
    line-height: 6rem;
    border: 1px solid #fff;
    transition: all .3s;
  }
  .btn_basic:hover {
    color: #fff;
    background: transparent;
  }
  .btn_frame {
    width: 264px;
    font-size: 2.2rem;
    line-height: 4rem;
    transition: all .3s;
  }
  .btn_frame:hover {
    color: #040511;
    background: #fff;
  }
  .more_link {
    margin-top: 48px;
  }
  .more_link .btn_frame {
    width: 160px;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .more_link .btn_frame::before {
    right: 16px;
    font-size: 1.2rem;
  }
}
@media screen and ( max-width: 1024px ) {
  .item_head {
    padding-left: 8px;
    font-size: 1.8rem;
    line-height: 1.4;
    border-left: 4px solid #f00;
  }
  .btn_basic {
    font-size: 1.5rem;
    line-height: 4.8rem;
  }
  .btn_frame {
    width: 50%;
    font-size: 1.6rem;
    line-height: 3rem;
  }
  .more_link {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
  }
}
/* header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background: rgb(0 0 0 / 80%);
  transition: all .5s;
  z-index: 9999;
}
.header.is_transparent {
  background: transparent;
}
.header_inner {
  display: flex;
}
.header_logo {
  aspect-ratio: auto 185 / 52;
  width: 100%;
}
/* header_menu */
.global_navi a {
  display: block;
}
@media screen and ( min-width: 1025px ) {
  .header_inner {
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
  }
  /* header_menu */
  .header_menu .menu_wrap {
    display: flex;
    justify-content: end;
  }
  .global_navi li:not(.item_child > li) {
    display: inline-block;
    padding: 0 12px;
    font-size: 1.8rem;
    line-height: 4rem;
  }
  .global_navi .item_parent {
    position: relative;
    cursor: pointer;
  }
  .global_navi .item_parent a {
    display: inline-block;
  }
  .global_navi .parent_text::after {
    content: "";
    display: inline-block;
    margin-left: 4px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
  }
  .global_navi .item_child {
    width: 180%;
    position: absolute;
    left: 32px;
    font-size: 1.4rem;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
  }
  .global_navi .item_parent:hover .item_child {
    visibility: visible;
    opacity: 1;
  }
  .global_navi .item_child::before,
  .global_navi .item_child::after {
    content: "";
    position: absolute;
    left: -12px;
    transition: all .3s;
  }
  .global_navi .item_child::before {
    height: 0px;
    width: 8px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .global_navi .item_child::after {
    width: 8px;
    top: 20px;
    border-top: 1px solid #fff;
  }
  .global_navi .item_parent:hover .item_child::before {
    height: 60px;
  }
  .header_reserve {
    width: 165px;
    height: 40px;
    margin-left: 12px;
    border: 1px solid #ccc;
  }
  .header_reserve a {
    display: block;
    font-size: 1.4rem;
    line-height: 40px;
    text-align: center;
    transition: all .3s;
  }
  .header_reserve a:hover {
    color: #040511;
    background: #fff;
  }
}
@media screen and ( max-width: 1024px ) {
  .header {
    padding: 18px 15px;
  }
  .header_inner {
    justify-content: space-between;
    align-items: center;
  }
  .header h1 {
    width: 148px;
  }
  .sp_link_reserve {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .04em;
  }
  .sp_link_reserve a {
    text-decoration: underline;
  }
  .header_menu {
    visibility: hidden;
    width: 100%;
    height: 100%;
    padding-top: 72px;
    position: fixed;
    top: 0;
    left: 0;
    font-size: 1.8rem;
    line-height: 56px;
    text-align: center;
    background: #000;
    overflow: auto;
    opacity: 0;
    transition: all .8s;
  }
  .header_menu.open {
    visibility: visible;
    opacity: 1;
  }
  .header_menu .menu_wrap {
    margin-top: 20px;
    transition: all 1s;
  }
  .header_menu.open .menu_wrap {
    margin-top: 0;
  }
  /*
  .header_menu .parent_text::after {
    content: "+";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    font-size: 1.1rem;
    line-height: 1;
    vertical-align: middle;
    border: 1px solid #fff;
  }
  */
  .header_menu .item_child {
    display: none;
    background: #333;
  }
  .header_menu .item_child li,
  .header_menu .header_reserve {
    font-size: 1.6rem;
  }
  .menu_trigger,
  .menu_trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu_trigger {
    position: relative;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    z-index: 9999;
  }
  .menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
  }
  .menu_trigger span:nth-of-type(1) {
    top: -1px;
    animation: menu-bar01 .75s forwards;
  }
  .menu_trigger span:nth-of-type(2) {
    top: 9px;
    transition: all .25s .25s;
    opacity: 1;
  }
  .menu_trigger span:nth-of-type(3) {
    bottom: 0;
    animation: menu-bar03 .75s forwards;
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(10px) rotate(45deg);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar03 {
    0% {
      transform: translateY(-10px) rotate(-45deg);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  .menu_trigger.active span:nth-of-type(1) {
    animation: active-menu-bar01 .75s forwards;
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(10px) rotate(45deg);
    }
  }
  .menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu_trigger.active span:nth-of-type(3) {
    animation: active-menu-bar03 .75s forwards;
  }
  @keyframes active-menu-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

}
/* main_image */
.main_image {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
}
.main_image img {
  object-fit: cover;
  aspect-ratio: 24 / 13;
}
.main_image_wrap {
  width: 100%;
  overflow: hidden;
}
.main_image_wrap._top {
  height: 100vh;
}
.main_image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_image_text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  text-shadow: 0 3px 8px rgb(0 0 0 / 70%);
  z-index: 999;
}
@media screen and ( min-width: 1025px ) {
  .main_image_wrap {
    height: auto;
  }
  .main_image img {
    width: 100%;
    height: auto;
  }
  .main_image_text {
    transform: translate(-50%, calc( -50% + 46px) );
    font-size: 3rem;
    line-height: 1.5;
  }
}
@media screen and ( max-width: 1024px ) {
  .main_image_wrap {
    height: 100vh;
  }
  .main_image_wrap.image_square {
    height: 100vw;
  }
  .main_image img {
    width: 100%;
    height: 100%;
  }
  .main_image_text {
    transform: translate(-50%, -50%);
    font-size: 2rem;
    line-height: 1.6;
  }
  .main_image_text.page_title {
    font-size: 3.3rem;
  }
  .main_image_text.page_title.bottom_text {
    top: unset;
    bottom: 8%;
    transform: translateX(-50%);
  }
}
/* outline */
.outline {
  background-image: url(../images/common/bg-typo.png);
  background-repeat: no-repeat;
}
.outline .content_inner {
  display: flex;
  position: relative;
}
.outline_head {
  letter-spacing: .02em;
  writing-mode: vertical-rl;
}
.outline dt {
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid #fff;
}
@media screen and ( min-width: 1025px ) {
  .outline {
    background-position: calc(50% - -240px) 240px;
  }
  .outline_head {
    position: absolute;
    top: 75px;
    right: 80px;
    font-size: 2.5rem;
    line-height: 1.8;
  }
  .outline_head.room2 {
    font-size: 2.2rem;
  }
  .outline_head .period_text {
    display: inline-block;
    margin: 0 -.6em .6em 0;
    vertical-align: 0.6em;
  }
  .outline dl {
    align-self: center;
    width: 460px;
    margin-left: 100px;
  }
  .outline dt {
    margin-bottom: 40px;
    padding-bottom: 16px;
    font-size: 2.5rem;
  }
  .outline dd:not(:first-of-type) {
    margin-top: 24px;
  }
  .outline ._top {
    height: 610px;
  }
  .outline ._about {
    height: 620px;
  }
  .outline ._room {
    height: 600px;
  }
}
@media screen and ( max-width: 1024px ) {
  .outline {
    background-size: 298px;
    background-position: center;
  }
  .outline .content_inner {
    flex-direction: column;
    align-items: center;
    padding: 0 15px 52px;
  }
  .outline_head {
    padding: 110px 0;
    font-size: 2.2rem;
    line-height: 2.2;
  }
  .outline dt {
    margin-bottom: 16px;
    padding: 0 10px 6px;
    font-size: 2.6rem;
  }
  .outline dd {
    padding: 0 10px;
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .outline dd:not(:first-of-type) {
    margin-top: 24px;
  }
}
/* registration */
.registration {
  background: #333;
}
@media screen and ( min-width: 1025px ) {
  .registration {
    padding: 20px 0;
  }
}
@media screen and ( max-width: 1024px ) {
  .registration {
    padding: 20px 16px;
  }
  .footer .registration {
    padding: 0;
  }
}
/* pagination */
.pagination {
  display: flex;
  letter-spacing: .04em;
}
.pagination .separator {
  padding: 0 1em;
}
@media screen and ( min-width: 1025px ) {
  .pagination {
    margin-top: 80px;
    font-size: 1.8rem;
  }
}
@media screen and ( max-width: 1025px ) {
  .pagination {
    margin-top: 56px;
    font-size: 1.5rem;
  }
}
/* top about */
.about {
  position: relative
}
.about_bg {
  position: absolute;
  overflow: hidden;
}
.about_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .list_feature li {
  display: flex;
}
.about .feature_image img {
  width: 100%;
  height: auto;
  aspect-ratio: 170 / 109;
}
@media screen and ( min-width: 1025px ) {
  .about_bg {
    width: 100%;
    height: 660px;
  }
  .about .content_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 660px;
    padding: 104px 0 48px;
  }
  .about_head {
    margin-bottom: 24px;
    font-size: 3rem;
    line-height: 1.5;
  }
  .about .body_text {
    width: 410px;
  }
  .about .list_feature {
    width: 1040px;
    margin: 0 auto;
    padding: 48px 0 112px;
  }
  .about .list_feature li {
    gap: 40px;
  }
  .about .list_feature li:not(:first-child) {
    margin-top: 64px;
  }
  .about .feature_image {
    width: 510px;
  }
  .about .feature_content {
    width: 420px;
  }
}
@media screen and ( max-width: 1024px ) {
  .about {
    background-size: auto 290px;
    background-position: left -100px top;
  }
  .about_bg {
    width: 100%;
    height: 290px;
  }
  .about .content_inner {
    padding: 24px 28px;
  }
  .about_head {
    margin-bottom: 224px;
    font-size: 2rem;
    line-height: 1.5;
  }
  .about .body_text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .about .about_link {
    display: flex;
    justify-content: center;
    margin-top: 36px;
  }
  .about .list_feature {
    padding: 56px 0;
  }
  .about .list_feature li {
    flex-wrap: wrap;
  }
  .about .list_feature li:first-child .feature_item {
    margin: -90px 30px 0 auto;
  }
  .about .list_feature li:last-child {
    margin-top: 60px;
  }
  .about .list_feature li:last-child .feature_item {
    margin: -100px auto 0 30px;
  }
  .about .feature_image {
    width: 80%;
  }
  .about .feature_item {
    width: 75%;
  }
}


/* page about */
.about_section1 {
  background-image: url(../images/about/bg-section1.jpg);
  background-repeat: no-repeat;
}
.about_section1 .list_factor {
  display: flex;
}
.about_section1 .list_factor li {
  background: #060c1f;
  background-image: url(../images/about/bg-list_factor.png);
  background-repeat: no-repeat;
  background-position: top 10px right 5px;
}
.about_section1 .list_factor dt {
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.about_section1 .list_factor dd {
  word-break: break-all;
}
.about_section2 .content_inner {
  text-align: center;
}
.about_section2 .content_head {
  line-height: 1;
  letter-spacing: .1em;
}
.about_section2 .about2_image img {
  aspect-ratio: 752 / 357;
}
.about_section2 .content_subhead {
  letter-spacing: .1em;
}
.about_section2 .line_adjust {
  display: block;
}
.about_section2 .list_feature {
  letter-spacing: .04em;
}
.about_section2 .list_feature li {
  display: flex;
}
.about_section2 .feature1 .feature_image img {
  aspect-ratio: 208 / 137;
}
.about_section2 .feature1 .feature_text {
  background: #141918;
}
.about_section2 .feature1 .feature_text dt {
  font-weight: 500;
  line-height: 1;
}
.about_section2 .feature1 .feature_text dd {
  letter-spacing: .1em;
}
.about_section2 .feature2 .feature_image:first-child img {
  aspect-ratio: 317 / 204;
}
.about_section2 .feature2 .feature_image:last-child img {
  aspect-ratio: 275 / 389;
}
.about_section2 .feature3 .feature_image img {
  aspect-ratio: 632 / 403;
}
.about_section2 .feature4 .feature_image img {
  aspect-ratio: 300 / 193;
}
.about_section3 .room_head {
  letter-spacing: .1em;
  text-align: left;
}
.about_section3 .body_text {
  font-size: 1.5rem;
  letter-spacing: .04em;
}
.about_section3 .room_link {
  display: flex;
  justify-content: center;
}
@media screen and ( min-width: 1025px ) {
  .about_section1 {
    background-size: 100%;
  }
  .about_section1 .content_inner {
    padding: 56px 0 0;
  }
  .about_section1 .content_head {
    margin-bottom: 32px;
    font-size: 3.4rem;
    line-height: 1.4;
  }
  .about_section1 .body_text {
    width: 670px;
    font-size: 1.6rem;
    line-height: 2.25;
  }
  .about_section1 .list_factor {
    gap: 24px;
    justify-content: space-between;
    margin: 168px -24px 0;
  }
  .about_section1 .list_factor li {
    width: 100%;
    padding: 32px 24px 24px;
  }
  .about_section1 .list_factor dt {
    font-size: 2.4rem;
  }
  .about_section1 .list_factor .num {
    font-size: 3.8rem;
  }
  .about_section1 .list_factor .small {
    font-size: 1.8rem;
  }
  .about_section1 .list_factor dd {
    margin-top: 24px;
    font-size: 1.3rem;
    line-height: 2.25;
  }
  .about_section2 .content_inner {
    padding: 110px 0 0;
  }
  .about_section2 .content_head {
    font-size: 3.7rem;
  }
  .about_section2 .about2_image {
    margin-top: 70px;
    height: 357px;
  }
  .about_section2 .about2_image img {
    width: auto;
    height: 100%;
  }
  .about_section2 .content_subhead {
    margin-top: 80px;
    font-size: 3rem;
    line-height: 1.6;
  }
  .about_section2 .line_adjust {
    margin-top: 32px;
  }
  .about_section2 .room_image {
    margin-top: 128px;
  }
  .about_section2 .list_feature {
    width: 1200px;
    margin: 56px auto 0;
    font-size: 1.5rem;
    line-height: 2.2;
  }
  .about_section2 .feature1 .feature_image {
    height: 411px;
  }
  .about_section2 .feature1 .feature_image img {
    width: auto;
    height: 100%;
  }
  .about_section2 .feature1 .feature_text {
    display: inline-block;
    margin: -24px 0 0 80px;
    padding: 32px 32px 24px 32px;
  }
  .about_section2 .feature1 .feature_text dt {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }
  .about_section2 .feature1 .feature_text dd {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .about_section2 .feature1 .feature_item {
    width: 400px;
    margin: 40px 0 0 80px;
    text-align: justify;
  }
  .about_section2 .feature1 .item_head {
    margin-bottom: 48px;
  }
  .about_section2 .feature2 {
    margin-top: 160px;
  }
  .about_section2 .feature2 .feature_image_wrap {
    text-align: right;
  }
  .about_section2 .feature2 .feature_image:first-child {
    height: 408px;
  }
  .about_section2 .feature2 .feature_image:first-child img {
    width: auto;
    height: 100%;
  }
  .about_section2 .feature2 .feature_image:last-child {
    height: 389px;
    margin: -24px 96px 0 0;
  }
  .about_section2 .feature2 .feature_image:last-child img {
    width: auto;
    height: 100%;
  }
  .about_section2 .feature2 .feature_item {
    width: 384px;
    margin: 40px 80px 0 0;
  }
  .about_section2 .feature2 .item_head {
    margin-bottom: 88px;
  }
  .about_section2 .feature3 {
    margin-top: 64px;
  }
  .about_section2 .feature3 .feature_image {
    height: 403px;
  }
  .about_section2 .feature3 .feature_image img {
    width: auto;
    height: 100%;
  }
  .about_section2 .feature3 .feature_item {
    width: 392px;
    margin: 40px 0 0 64px;
  }
  .about_section2 .feature4 {
    margin-top: 80px;
  }
  .about_section2 .feature4 .feature_image {
    height: 411px;
  }
  .about_section2 .feature4 .feature_image img {
    width: auto;
    height: 100%;
  }
  .about_section2 .feature4 .feature_item {
    width: 376px;
    margin: 0 0 0 80px;
  }
  .about_section3 .content_inner {
    width: 1040px;
    padding-bottom: 160px;
  }
  .about_section3 .about3_image {
    margin: 64px 0 0 -80px;
  }
  .about_section3 .about3_image img {
    aspect-ratio: 1039 / 607;
  }
  .about_section3 .about3_subimage {
    width: 420px;
    margin: -40px 0 0 auto;
    padding-bottom: 40px;
    position: relative;
  }
  .about_section3 .about3_subimage img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .about_section3 .content_body {
    width: 464px;
    margin: -176px 0 0 32px;
  }
  .about_section3 .room_head {
    font-size: 3rem;
    line-height: 1.6;
  }
  .about_section3 .body_text {
    line-height: 2.2;
  }
  .about_section3 .room_link {
    gap: 64px;
    margin-top: 136px;
  }
}
@media screen and ( max-width: 1024px ) {
  .about_section1 {
    background-size: 120%;
    background-position: top center;
  }
  .about_section1 .content_inner {
    padding: 30px 25px 0;
  }
  .about_section1 .content_head {
    margin-bottom: 180px;
    font-size: 1.6rem;
    line-height: 2;
  }
  .about_section1 .body_text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .about_section1 .list_factor {
    gap: 35px;
    flex-direction: column;
    margin-top: 40px;
  }
  .about_section1 .list_factor li {
    padding: 40px 16px 24px;
  }
  .about_section1 .list_factor dt {
    font-size: 2.2rem;
  }
  .about_section1 .list_factor .num {
    font-size: 2.9rem;
  }
  .about_section1 .list_factor .small {
    font-size: 1.7rem;
  }
  .about_section1 .list_factor dd {
    margin-top: 16px;
    font-size: 1.5rem;
    line-height: 2;
  }
  .about_section2 .content_inner {
    padding: 64px 15px 0;
  }
  .about_section2 .content_head {
    font-size: 2.1rem;
  }
  .about_section2 .about2_image {
    margin-top: 48px;
  }
  .about_section2 .about2_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 752 / 357;
  }
  .about_section2 .content_subhead {
    margin-top: 60px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .about_section2 .line_adjust {
    margin-top: 30px;
  }
  .about_section2 .room_image {
    margin-top: 54px;
  }
  .about_section2 .list_feature {
    position: relative;
    margin: auto;
    font-size: 1.5rem;
    line-height: 2;
    z-index: 1;
  }
  .about_section2 .list_feature li {
    flex-direction: column;
  }
  .about_section2 .feature1 .feature_image_wrap {
    order: 2;
  }
  .about_section2 .feature1 .feature_image:first-child {
    margin: 0 -25px;
  }
  .about_section2 .feature1 .feature_image:last-child {
    width: 70%;
    margin: -25px 0 -60px -25px;
  }
  .about_section2 .feature1 .feature_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about_section2 .feature1 .feature_text {
    margin: 30px 30px 0;
    padding: 20px 30px 15px;
  }
  .about_section2 .feature1 .feature_text dt {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  .about_section2 .feature1 .feature_text dd {
    padding-left: 1em;
    font-size: 1.4rem;
    line-height: 2;
    text-indent: -1em;
  }
  .about_section2 .feature1 .feature_item {
    padding: 0 25px;
    order: 1;
  }
  .about_section2 .feature1 .item_head {
    margin-bottom: 32px;
  }
  .about_section2 .list_feature .feature2 {
    flex-direction: column;
    margin-top: 66px;
  }
  .about_section2 .feature2 .feature_image:first-child {
    width: 85%;
  }
  .about_section2 .feature2 .feature_image:first-child img {
    width: 100%;
    height: auto;
  }
  .about_section2 .feature2 .feature_image:last-child {
    width: 36%;
    margin: -75px 0 0 auto;
  }
  .about_section2 .feature2 .feature_image:last-child img {
    width: 100%;
    height: auto;
  }
  .about_section2 .feature2 .feature_item {
    padding: 0 25px;
    margin-top: -70px;
  }
  .about_section2 .feature2 .item_head {
    margin-bottom: 16px;
  }
  .about_section2 .feature3 {
    margin-top: 58px;
  }
  .about_section2 .feature3 .feature_image {
    width: 85%;
    margin-left: auto;
  }
  .about_section2 .feature3 .feature_image img {
    width: 100%;
    height: auto;
  }
  .about_section2 .feature3 .feature_item {
    margin-top: 32px;
    padding: 0 25px;
  }
  .about_section2 .feature3 .item_head {
    margin-bottom: 16px;
  }
  .about_section2 .list_feature .feature4 {
    flex-direction: column;
    margin-top: 58px;
  }
  .about_section2 .feature4 .feature_image {
    width: 85%;
  }
  .about_section2 .feature4 .feature_image img {
    width: 100%;
    height: auto;
  }
  .about_section2 .feature4 .feature_item {
    padding: 0 25px;
    margin-top: 40px;
  }
  .about_section3 .content_inner {
    padding-bottom: 60px;
  }
  .about_section3 .about3_image {
    margin-top: 40px;
    overflow: hidden;
  }
  .about_section3 .about3_image img {
    width: 140%;
    height: auto;
    object-position: -110px;
  }
  .about_section3 .about3_subimage {
    width: 70%;
    margin: -25px 0 0 auto;
  }
  .about_section3 .about3_subimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about_section3 .content_body {
    margin-top: 32px;
    padding: 0 25px;
  }
  .about_section3 .room_head {
    font-size: 2rem;
    line-height: 1.4;
  }
  .about_section3 .body_text {
    line-height: 2;
  }
  .about_section3 .room_link {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 52px;
  }

}
/* about common */
.list_feature li:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and ( max-width: 1024px ) {

}
/* top room */
.room_image .swiper-wrapper {
  transition-timing-function: linear;
}
/*
.room_image li:not(.swiper-slide-active) {
  opacity: .3;
}
*/
.room_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #536e9f;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 2px;
  font-size: 0;
}
.room .content_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.room_head {
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
}
@media screen and ( min-width: 1025px ) {
  .room_image {
    padding-bottom: 64px;
  }
  .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
  }
  .room .content_inner {
    padding: 56px 0 84px;
  }
  .room_head {
    margin-bottom: 24px;
    font-size: 3rem;
  }
  .room_link {
    margin-top: 88px;
  }
}
@media screen and ( max-width: 1024px ) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
  .room .content_inner {
    padding: 24px;
  }
  .room_head {
    margin-bottom: 28px;
    font-size: 2.1rem;
  }
  .room_link {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 36px;
  }
}
/* top room information */
.indoor_image {
  position: relative;
}
.indoor_image img {
  width: 100%;
}
.indoor_image .room_name {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 10px rgb(0 0 0 / 70%);
}
.room_information_head {
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
}
.room_information .room_detail_header {
  display: flex;
}
.room_information .room_detail_head {
  line-height: 1;
  letter-spacing: 0;
}
.room_information .room_num {
  display: block;
}
.room_information .room_detail_item ul {
  line-height: 1;
  text-align: left;
}
.room_information .room_detail_item dl {
  font-size: 2rem;
  line-height: 2;
}
.room_information .room_detail_item dt {
  min-width: 3em;
  margin-right: 1em;
  font-weight: 500;
}
.room_information .room_detail_item dt,
.room_information .room_detail_item dd {
  display: inline-block;
}
.room_information .price {
  margin-top: 64px;
}
.room_information .price_head {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .1em;
}
.room_information .price_table {
  display: flex;
  margin-top: 24px;
}
.room_information .price_table th,
.room_information .price_table td {
  height: 60px;
}
.room_information .price_table .price_detail {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.room_information .price_table .price_num {
  font-size: 2.4rem;
}
.room_information .price_table .supplement {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
}
.room_information .price .caption {
  margin-top: 12px;
  line-height: 1.8;
}
@media screen and ( min-width: 1025px ) {
  .indoor_image .room_name {
    font-size: 2.4rem;
  }
  .room_information .content_inner {
    width: 760px;
    padding-block: 64px;
  }
  .room_information_head {
    margin-bottom: 24px;
    font-size: 3rem;
  }
  .room_information .room_detail {
    margin-top: 80px;
  }
  .room_information .room_overview {
    padding-inline: 24px;
  }
  .room_information .room_detail_header {
    justify-content: space-between;
    align-items: flex-start;
  }
  .room_information .room_detail_head {
    padding-left: 16px;
    font-size: 3rem;
    border-left: 8px solid #f00;
  }
  .room_information .room_num {
    margin-bottom: 24px;
    font-size: 2rem;
  }
  .room_information .room_detail_item ul {
    font-size: 2rem;
  }
  .room_information .room_detail_item {
    margin-top: -8px;
  }
  .room_information .price_table {
    gap: 4px;
  }
  .room_information .price_table_head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 auto;
    width: 140px;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
    background: rgb(0 0 0 / 30%);
    border: 1px solid #595959;
  }
  .room_information .price_table_head .brackets {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
  }
  .room_information .price .caption {
    padding-inline: 1em;
    font-size: 1.3rem;
  }
}
@media screen and ( max-width: 1024px ) {
  .indoor_image .room_name {
    font-size: 2rem;
  }
  .room_information .content_inner {
    padding: 24px 24px 58px;
  }
  .room_information_head {
    margin-bottom: 28px;
    font-size: 2.1rem;
  }
  .room_information .room_detail {
    margin-top: 40px;
  }
  .room_information .room_detail_header {
    flex-direction: column;
    gap: 34px;
  }
  .room_information .room_detail_head {
    padding-left: 20px;
    font-size: 2.5rem;
    border-left: 10px solid #f00;
  }
  .room_information .room_num {
    margin-bottom: 12px;
    font-size: 1.9rem;
  }
  .room_information .room_detail_item dl {
    font-size: 1.8rem;
  }
  .room_information .price_head {
    text-align: center;
  }
  .room_information .price_head .small {
    display: block;
    margin-top: 8px;
    font-size: 80%;
  }
  .room_information .price_table {
    flex-direction: column;
    gap: 4px;
  }
  .room_information .price_table table {
    width: 100%;
  }
  .room_information .price_table table th {
    font-size: 1.8rem;
    background: #172034;
  }
  .room_information .price .caption {
    font-size: 1.4rem;
  }
}
.room_information .price .notes {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.room_information .price .notes_text {
  font-size: 1.3rem;
  line-height: 1.8;
}
.room_information .price .notes_text a {
  text-decoration: underline;
}
.room_information .room_detail .room_link {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.room_information .room_detail .room_link .small {
  font-size: 80%;
}
/* page room */
.room_section .item_head {
  line-height: 1;
  letter-spacing: 0;
}
.room_section .room_num {
  display: block;
}
.room_section .content_body {
  display: flex;
}
.room_section dt,
.room_section dd {
  display: inline-block;
}
.room_section dt {
  min-width: 3em;
  margin-right: 1em;
  font-weight: 500;
}
.room_section .room_link {
  display: flex;
  justify-content: center;
}
@media screen and ( min-width: 1025px ) {
  .room_section:not(:last-of-type) {
    padding-bottom: 88px;
  }
  .room_section:last-of-type {
    padding-bottom: 160px;
  }
  .room_section .room_image {
    width: 100%;
    padding-bottom: 72px;
  }
  .room_section .item_head {
    font-size: 3rem;
  }
  .room_section .room_num {
    margin-bottom: 24px;
    font-size: 2rem;
  }
  .room_section .content_body {
    justify-content: space-between;
    margin-top: 24px;
  }
  .room_section ul {
    font-size: 2rem;
    line-height: 1;
  }
  .room_section dl {
    font-size: 2rem;
    line-height: 2;
  }
  .room_section .text_wrap {
    width: 448px;
    font-size: 1.6rem;
    line-height: 2.2;
  }
  .room_section .reserve_info {
    margin-top: 72px;
  }
  .room_section .reserve_info_head {
    font-size: 2.4rem;
    line-height: 1;
    text-align: center;
  }
  .room_section .reserve_info_body {
    display: flex;
    margin-top: 32px;
    font-size: 2.2rem;
    text-align: left;
  }
  .room_section .reserve_info_body ul {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    line-height: 2;
  }
  .room_section .reserve_info_body .time li {
    width: 50%;
    text-align: center;
  }
  .room_section .reserve_info_body .text {
    display: flex;
    flex-direction: column;
    padding-left: 48px;
    border-left: 1px solid #FFF;
  }
  .room_section .room_link {
    margin-top: 96px;
  }
}
@media screen and ( max-width: 1024px ) {
  .room_section:not(:last-of-type) {
    padding-bottom: 70px;
  }
  .room_section:last-of-type {
    padding-bottom: 48px;
  }
  .room_section .room_image {
    height: 80vw;
    padding-bottom: 52px;
    overflow: hidden;
  }
  .room_section .content_inner {
    padding: 0 25px;
  }
  .room_section .item_head {
    margin: 0;
    font-size: 2.5rem;
    padding-left: 20px;
    border-left: 10px solid #f00;
  }
  .room_section .room_num {
    margin-bottom: 12px;
    font-size: 1.9rem;
  }
  .room_section .content_body {
    margin-top: 22px;
    flex-direction: column;
  }
  .room_section dl {
    font-size: 1.8rem;
    line-height: 2;
  }
  .room_section .text_wrap {
    margin-top: 34px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .room_section .reserve_info {
    margin-top: 40px;
  }
  .room_section .reserve_info_head {
    font-size: 1.8rem;
  }
  .room_section .reserve_info_body {
    margin-top: 16px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .room_section .reserve_info_body .time {
    display: flex;
    flex-wrap: wrap;
    font-size: 2rem;
  }
  .room_section .reserve_info_body .time li {
    width: 50%;
    line-height: 2;
    text-align: center;
  }
  .room_section .reserve_info_body .text {
    margin-top: 24px;
  }
  .room_section .room_link {
    margin-top: 68px;
  }
}
/* page room child */
.floor .content_inner {
  text-align: center;
}
.floor .floor_head {
  line-height: 1;
}
.floor .floor_body {
  text-align: left;
}
.floor .floor_item {
  display: flex;
}
.floor .item_head {
  line-height: 1;
  letter-spacing: 0;
}
.floor .room_num {
  display: block;
}
.floor .item_body dl {
  line-height: 2;
}
.floor .item_body dt,
.floor .item_body dd {
  display: inline-block;
}
.floor .item_body dt {
  min-width: 3em;
  margin-right: 1em;
  font-weight: 500;
}
.floor .item_other dt {
  font-weight: 500;
  line-height: 1;
}
.floor .reserve_info_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.floor .reserve_info_body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.floor_guide .floor_guide_head {
  line-height: 1;
}
.floor_guide .body_text {
  font-size: 1.5rem;
  line-height: 2;
}
.floor_guide .usage_head {
  margin: 0 auto;
  position: relative;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 1;
}
.floor_guide .usage_head .letter {
  width: 3em;
  position: absolute;
  line-height: 1;
  text-align: left;
}
.floor_guide .usage_image:first-child img {
  width: 100%;
  height: auto;
  aspect-ratio: 170 / 109;
}
.floor_guide .image_sub img {
  width: 100%;
  height: auto;
  aspect-ratio: 83 / 53;
}
.floor_guide .usage_item .body_text {
  margin: 0;
  letter-spacing: .04em;
}
.floor_guide .usage.amenity .usage_wrap {
  margin: 0;
}
.floor_guide .usage.amenity .usage_item {
  width: auto;
  padding: 0;
}
.floor_guide .room_link {
  display: flex;
  justify-content: center;
}
@media screen and ( min-width: 1025px ) {
  .floor .content_inner {
    width: 720px;
    margin: 80px auto 0;
  }
  .floor .floor_head {
    font-size: 3.5rem;
  }
  .floor .floor_image {
    margin-top: 56px;
  }
  .floor .floor_body {
    margin-top: 72px;
    text-align: center;
  }
  .floor .floor_item {
    justify-content: space-between;
    align-items: flex-start;
  }
  .floor .item_head {
    font-size: 3rem;
  }
  .floor .room_num {
    margin-bottom: 24px;
    font-size: 2rem;
  }
  .floor .item_body {
    display: flex;
    justify-content: space-between;
    margin-top: -8px;
  }
  .floor .item_body ul {
    font-size: 2rem;
    line-height: 1;
    text-align: left;
  }
  .floor .item_body dl {
    font-size: 2rem;
  }
  .floor .item_other {
    display: inline-block;
    margin-top: 40px;
    font-size: 1.8rem;
    text-align: left;
  }
  .floor .item_other dd {
    margin-top: 16px;
    line-height: 1.8;
  }
  .floor .reserve_info {
    margin-top: 72px;
  }
  .floor .reserve_info_head {
    font-size: 2.4rem;
    line-height: 1;
  }
  .floor .reserve_info_body {
    margin-top: 32px;
    text-align: left;
  }
  .floor .reserve_info_body ul {
    gap: 0 80px;
    padding-inline: 64px;
    font-size: 2.4rem;
  }
  .floor .reserve_info_body .text {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .floor_guide .content_inner {
    width: 752px;
    margin: 128px auto 120px;
  }
  .floor_guide .floor_guide_head {
    font-size: 3rem;
  }
  .floor_guide .body_text {
    margin-top: 24px;
  }
  .floor_guide .list_usage {
    width: 976px;
    margin: 136px auto 80px;
  }
  .floor_guide .usage:not(:first-child) {
    margin-top: 96px;
  }
  .floor_guide .usage_head {
    width: 148px;
    font-size: 7rem;
    line-height: 148px;
  }
  .floor_guide .usage_head .letter {
    bottom: 44px;
    left: 108px;
    font-size: 3rem;
  }
  .floor_guide .usage_wrap {
    display: flex;
    justify-content: space-between;
  }
  .floor_guide .usage_wrap:first-of-type {
    margin-top: -32px;
  }
  .floor_guide .usage_wrap:not(:first-of-type) {
    margin-top: 48px;
  }
  .floor_guide .usage_image:first-child {
    width: 510px;
  }
  .floor_guide .image_sub {
    width: 250px;
    margin: -56px 0 0 286px;
  }
  .floor_guide .usage_item {
    width: 420px;
    padding-top: 72px;
  }
  .floor_guide .usage_item .body_text {
    font-size: 1.4rem;
    line-height: 2.2;
  }
  .floor_guide .usage.amenity {
    margin-top: 88px;
    padding-left: 24px;
  }
  .floor_guide .usage.amenity .usage_wrap {
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }
  .room2.floor_guide .usage.amenity .usage_wrap {
    flex-direction: row-reverse;
  }
  .floor_guide .usage.amenity .usage_image img {
    width: 100%;
    height: auto;
  }
  .floor_guide .room_link {
    margin-top: 80px;
  }
}
@media screen and ( max-width: 1024px ) {
  .floor .content_inner {
    margin: 52px auto 0;
    padding: 0 25px;
  }
  .floor .floor_head {
    font-size: 2.5rem;
    line-height: 1.6;
  }
  .floor .floor_image {
    margin-top: 40px;
  }
  .floor .floor_image img {
    width: 100%;
    height: auto;
  }
  .floor .floor_body {
    margin-top: 60px;
  }
  .floor .floor_item {
    flex-direction: column;
  }
  .floor .item_head {
    font-size: 2.5rem;
    padding-left: 20px;
    border-left: 10px solid #f00;
  }
  .floor .room_num {
    margin-bottom: 12px;
    font-size: 1.9rem;
  }
  .floor .item_body {
    margin-top: 10px;
  }
  .floor .item_body dl {
    font-size: 1.8rem;
  }
  .floor .item_other {
    margin-top: 30px;
    padding: 20px 20px 15px;
    font-size: 1.4rem;
    line-height: 2;
    background: #141918;
  }
  .floor .item_other dd {
    margin-top: 16px;
    line-height: 1.8;
  }
  .floor .reserve_info {
    margin-top: 40px;
  }
  .floor .reserve_info_head {
    font-size: 1.8rem;
  }
  .floor .reserve_info_body {
    margin-top: 16px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .floor .reserve_info_body ul {
    gap: 16px 40px;
    padding-inline: 24px;
    font-size: 2rem;
  }
  .floor_guide .content_inner {
    margin: 46px auto 36px;
    padding: 0 25px;
  }
  .floor_guide .floor_guide_head {
    font-size: 2.1rem;
  }
  .floor_guide .body_text {
    margin-top: 24px;
  }
  .floor_guide .list_usage {
    margin: 62px auto 0;
    padding-bottom: 47px;
  }
  .floor_guide .usage:not(:first-child) {
    margin-top: 40px;
  }
  .floor_guide .usage_head {
    width: 86px;
    font-size: 4.1rem;
    line-height: 86px;
  }
  .floor_guide .usage_head .letter {
    bottom: 26px;
    left: 64px;
    font-size: 1.7rem;
  }
  .floor_guide .usage_wrap:first-of-type {
    flex-direction: column;
    justify-content: unset;
    margin-top: -16px;
  }
  .floor_guide .usage_wrap:not(:first-of-type) {
    margin-top: 48px;
  }
  .floor_guide .usage:first-child .usage_image:first-child {
    width: 70%;
  }
  .floor_guide .image_sub {
    width: 45%;
    margin: -50px 0 -20px auto;
  }
  .floor_guide .usage_item {
    padding: 32px 25px 0;
    text-align: initial;
  }
  .floor_guide .usage_item .body_text {
    font-size: 1.5rem;
    line-height: 2;
  }
  .floor_guide .usage.amenity {
    margin-top: 48px;
  }
  .floor_guide .usage.amenity .usage_image {
    padding: 0 25px;
  }
  .floor_guide .usage.amenity .usage_item {
    padding: 32px 25px 0;
  }
  .floor_guide .room_link {
    margin-top: 68px;
  }
}
/* amenitie list */
.amenities {
  background: #172034;
  text-align: left;
}
@media screen and ( min-width: 1025px ) {
  .amenities {
    margin: 64px 24px 0;
    padding: 24px 40px;
  }
}
@media screen and ( max-width: 1024px ) {
  .amenities {
    margin-top: 48px;
    padding: 12px 16px;
  }
  .amenities .small {
    font-size: 85%;
  }
}
/* top news */
.news {
  background-image: url(../images/top/bg-news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.news .content_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news_head {
  line-height: 1;
}
.list_news {
  letter-spacing: .1em;
}
.date_release {
  display: inline-block;
}
.news_title {
  display: inline-block;
  word-break: break-all;
}
.news_content {
  margin-top: 24px;
}
.news_content a {
  text-decoration: underline;
}
@media screen and ( min-width: 1025px ) {
  .news .content_inner {
    margin: 30px auto 0;
    padding: 40px 0;
  }
  .news_head {
    font-size: 4rem;
  }
  .list_news {
    margin-top: 40px;
    font-size: 1.8rem;
  }
  .list_news li:not(:first-child) {
    margin-top: 16px;
  }
  .news_title {
    margin-left: 40px;
  }
}
@media screen and ( max-width: 1024px ) {
  .news .content_inner {
    margin: 0 auto;
    padding: 36px 34px 30px;
  }
  .news_head {
    font-size: 3rem;
  }
  .list_news {
    margin-top: 30px;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
  }
  .list_news li:not(:first-child) {
    margin-top: 32px;
  }
}
/* page news */
.news_all {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.news_all .content_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news_all .pagename {
  line-height: 1;
  text-align: center;
}
.news_all .list_news {
  letter-spacing: .04em;
}
@media screen and ( min-width: 1025px ) {
  .news_all {
    background-image: url(../images/news/bg-news_pc.jpg);
  }
  .news_all .content_inner {
    padding: 200px 0 100px;
  }
  .news_all .pagename {
    font-size: 3.6rem;
  }
  .news_all .list_news {
    min-height: 152px;
    font-size: 1.8rem;
  }
}
@media screen and ( max-width: 1024px ) {
  .news_all {
    background-image: url(../images/news/bg-news_sp.jpg);
  }
  .news_all .content_inner {
    padding: 155px 0 36px;
  }
  .news_all .pagename {
    font-size: 3.3rem;
  }
  .news_all .list_news {
    padding: 0 25px;
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .news_all .news_title {
    text-align: justify;
  }
}
/* news detail */
.news_detail .news_image img {
  width: 100%;
  height: auto;
}
.news_detail .content_bodywrap {
  background-color: #0c1220;
}
.news_detail .news_header {
  font-size: 1.8rem;
  letter-spacing: .04em;
}
.news_detail .post_date {
  display: block;
  line-height: 1;
}
.news_detail .pagination {
  justify-content: center;
}
@media screen and ( min-width: 1025px ) {
  .news_detail .content_inner {
    display: flex;
    width: auto;
    margin: 0 auto;
  }
  .news_detail .content_headerwrap {
    flex: 1 1 400px;
    padding: 176px 40px 0;
    text-align: right;
    background: #040511;
  }
  .news_detail .content_header {
    display: inline-block;
  }
  .news_detail .content_title {
    font-size: 3.6rem;
    line-height: 1;
    text-align: left;
  }
  .news_detail .news_image {
    width: 288px;
    margin: 40px 0 126px;
  }
  .news_detail .content_bodywrap {
    flex: 2 1 800px;
    padding: 176px 0 0;
  }
  .news_detail .content_body {
    width: 560px;
    margin-left: 96px;
  }
  .news_detail .news_title {
    margin: 12px 0 0;
    line-height: 2.2;
  }
  .news_detail .news_text {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 2.2;
  }
  .news_detail .pagination {
    margin: 126px 0 48px;
  }
}
@media screen and ( max-width: 1024px ) {
  .news_detail .content_bodywrap {
    padding: 40px 25px 35px;
  }
  .news_detail .news_title {
    margin: 8px 0 0;
    line-height: 1.6;
  }
  .news_detail .news_image {
    margin-top: 20px;
  }
  .news_detail .news_text {
    margin-top: 25px;
    padding: 0 8px;
    font-size: 1.5rem;
    line-height: 2;
  }
}
/* page price */
.price .content_head {
  line-height: 1;
  letter-spacing: .1em;
}
.price th,
.price td {
  font-weight: 200;
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
  vertical-align: middle;
}
.price th,
.price td {
  background-color: rgb(0 0 0 / 20%);
  border: 1px solid #595959;
}
.price .emptyfield {
  background-color: transparent;
  border: none;
}
.price .option {
  display: block;
  margin-top: 8px;
}
.price .option_multiple {
  display: block;
  margin-top: 8px;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.2;
}
.price .option_multiple::before {
  content: "（";
  left: 16px;
}
.price .option_multiple::after {
  content: "）";
  right: 16px;
}
.price .option_multiple::before,
.price .option_multiple::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}
.price .option_small {
  display: block;
  margin-top: 8px;
}
.price .small {
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: .1em;
}
.price .number {
  display: block;
  margin-bottom: 2px;
  font-size: 1.5rem;
}
.price .usage {
  margin-top: 24px;
}
.price .service {
  margin-top: 24px;
}
.price .service th {
  font-size: 1.4rem;
  letter-spacing: .02em;
}
.price .other td {
  width: 40%;
}
.supplement {
  line-height: 1.8;
  letter-spacing: .1em;
}
.other .supplement {
  margin: 2em 0 1em;
  padding-left: 1.1em;
  text-indent: -1.1em;
}
.benefits .content_head {
  line-height: 1;
  letter-spacing: .1em;
}
.benefits .list_benefits_wrap {
  display: flex;
}
.benefits .list_benefits {
  display: flex;
}
.benefits .item_benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #192644;
  border-radius: 10px;
}
.benefits .title {
  margin-bottom: 8px;
}
.benefits .item_benefits .body_text:nth-child(3)::before {
  content: "↓";
  display: block;
}
.benefits .head {
  line-height: 1;
}
.benefits .title {
  display: block;
  line-height: 1;
}
.benefits .body_text {
  font-size: 1.5rem;
  line-height: 1.3;
}
.benefits .line_text {
  display: block;
  text-decoration: underline;
}
.link_terms {
  letter-spacing: .1em;
  text-align: center;
}
.link_terms a {
  text-decoration: underline;
}
@media screen and ( min-width: 1025px ) {
  .price .content_inner {
    padding: 120px 0 0;
  }
  .price  .content_head {
    font-size: 3.6rem;
  }
  .price .head {
    padding-left: 12px;
    font-size: 3.6rem;
  }
  .price table {
    width: 100%;
  }
  .price th,
  .price td {
    height: 75px;
  }
  .price th {
    font-size: 1.6rem;
  }
  .price td {
    width: 20%;
    font-size: 1.7rem;
  }
  .price .usage td,
  .price .other td {
    height: 88px;
  }
  .price .option {
    font-size: 1.3rem;
  }
  .price .option_small {
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: .08em;
  }
  .initial {
    width: 100%;
    margin-top: 32px;
  }
  .supplement {
    margin-top: 16px;
    font-size: 1.3rem;
  }
  .benefits .content_inner {
    padding: 128px 0 0;
  }
  .benefits .content_head {
    font-size: 3.2rem;
  }
  .benefits .list_benefits_wrap {
    /* gap: 24px; */
    gap: unset;
    margin-top: 48px;
  }
  .benefits .list_benefits {
    flex-wrap: wrap;
    gap: 24px;
  }
  .benefits .item_benefits {
    /* width: 284px; */
    width: 438px;
    padding: 24px 20px;
  }
  .benefits .item_benefits.text_l {
    align-items: flex-start;
  }
  .benefits .text_l .head {
    margin-top: 16px;
    font-size: 4rem;
  }
  .benefits .text_l .title {
    font-size: 2.6rem;
  }
  .benefits .text_m .head {
    font-size: 3.8rem;
  }
  .benefits .text_m .title {
    font-size: 2.5rem;
  }
  .benefits .text_s .head {
    font-size: 3.2rem;
  }
  .benefits .text_s .title {
    font-size: 2.1rem;
  }
  .benefits .body_text {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .benefits .item_benefits .body_text:nth-child(3)::before {
    text-indent: 3em;
  }
  .link_terms {
    padding: 64px 0 72px;
    font-size: 1.9rem;
    line-height: 1;
  }
}
@media screen and ( max-width: 1024px ) {
  .price .content_inner {
    padding: 60px 25px 0;
  }
  .price .content_head {
    font-size: 2.6rem;
  }
  .table_container {
    overflow-x: scroll;
  }
  .price table {
    width: 780px;
  }
  .price th,
  .price td {
    height: 60px;
    font-size: 1.4rem;
  }
  .price td {
    width: 20%;
  }
  .price .usage td,
  .price .other td {
    height: 72px;
  }
  .price .option,
  .price .small,
  .price .option_small {
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: .08em;
  }
  .initial {
    width: 100%;
    margin-top: 5px;
  }
  .supplement {
    margin-top: 10px;
    font-size: 1.1rem;
  }
  .benefits .content_inner {
    padding: 60px 25px 0;
  }
  .benefits .content_head {
    font-size: 2.2rem;
  }
  .benefits .list_benefits_wrap {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
  .benefits .list_benefits {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .benefits .item_benefits {
    padding: 20px 24px;
  }
  .benefits .item_benefits.text_l {
    align-items: center;
  }
  .benefits .head {
    font-size: 3.6rem;
  }
  .benefits .title {
    font-size: 2.2rem;
  }
  .benefits .body_text {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .link_terms {
    padding: 48px 0 60px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
/* page access */
.access .salon_map {
  position: relative;
  text-align: center;
}
.access .salon_map img {
  aspect-ratio: 656 / 491;
}
.access .map_link {
  line-height: 1;
  text-decoration: underline;
}
.access .salon_guide {
  text-align: center;
}
@media screen and ( min-width: 1025px ) {
  .access .content_inner {
    padding: 200px 0 72px;
  }
  .access .pagename {
    font-size: 3.6rem;
    line-height: 1;
    text-align: center;
  }
  .access .content_image {
    width: 100%;
    margin-top: 48px;
  }
  .access .content_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 890 / 501;
  }
  .access .salon_map {
    height: 491px;
    margin-top: 88px;
  }
  .access .salon_map img {
    width: auto;
    height: 100%;
  }
  .access .map_link {
    position: absolute;
    top: 50%;
    right: 120px;
    font-size: 1.9rem;
    z-index: 1;
  }
  .access .salon_guide {
    margin-top: 64px;
  }
  .access .address {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .access .salon_guide li {
    margin-top: 48px;
  }
  .access .salon_guide dt {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .access .salon_guide dd {
    font-size: 1.3rem;
    line-height: 2.2;
  }
  .access .salon_guide .notice {
    margin-top: 32px;
    line-height: 1.8;
  }
}
@media screen and ( max-width: 1024px ) {
  .access .content_inner {
    padding: 60px 30px 36px;
  }
  .access .pagename {
    font-size: 2.2rem;
    line-height: 1;
    text-align: center;
  }
  .access .pagename .small {
    display: block;
    margin-bottom: 4px;
    font-size: 1.9rem;
    line-height: 1;
  }
  .access .salon_map {
    margin-top: 40px;
  }
  .access .salon_map img {
    width: 100%;
    height: auto;
  }
  .access .map_link {
    display: block;
    margin-top: 30px;
    font-size: 1.5rem;
  }
  .access .salon_guide {
    margin-top: 36px;
  }
  .access .address {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  .access .salon_guide li {
    margin-top: 42px;
  }
  .access .salon_guide dt,
  .access .salon_guide dd {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
  }
  .access .salon_guide .notice {
    margin-top: 42px;
    font-size: 1.5rem;
    line-height: 2;
  }
}
/* page safety */
.safety .overview dt {
  font-weight: normal;
  line-height: 1;
  text-align: center;
}
.safety .overview dd {
  margin-top: 32px;
}
@media screen and ( min-width: 1025px ) {
  .safety .content_inner {
    padding: 200px 0 72px;
  }
  .safety .pagename {
    font-size: 3.6rem;
    line-height: 1;
    text-align: center;
  }
  .safety .content_image {
    width: 100%;
    margin-top: 48px;
  }
  .safety .content_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 890 / 501;
  }
  .safety .overview {
    margin: 48px auto 0;
    padding: 0 100px;
  }
  .safety .overview dt {
    font-size: 3rem;
  }
  .safety .overview dd {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .safety .safety_content {
    margin-top: 80px;
  }
  .safety .list_feature li {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: center;
  }
  .safety .list_feature li:not(:first-child) {
    margin-top: 64px;
  }
  .safety .list_feature li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .safety .feature_image {
    width: 325px;
  }
  .safety .body_text {
    font-size: 1.4rem;
    line-height: 2.2;
  }
  .safety .content_bottom {
    margin-top: 80px;
  }
  .safety .bottom_image {
    margin: 0 -50px;
  }
  .safety .bottom_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .safety .bottom_text {
    margin-top: 48px;
    padding: 0 100px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and ( max-width: 1024px ) {
  .safety .content_inner {
    padding: 60px 30px 36px;
  }
  .safety .pagename {
    font-size: 2.2rem;
    line-height: 1;
    text-align: center;
  }
  .safety .overview dt {
    font-size: 2.1rem;
  }
  .safety .overview dd {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .safety .safety_content {
    margin-top: 60px;
  }
  .safety .list_feature li:not(:first-child) {
    margin-top: 40px;
  }
  .safety .feature_item {
    margin-top: 40px;
  }
  .safety .body_text {
    font-size: 1.4rem;
    line-height: 2.2;
  }
  .safety .content_bottom {
    margin-top: 60px;
  }
  .safety .bottom_image {
    height: 200px;
    margin: 0 -30px;
    overflow: hidden;
  }
  .safety .bottom_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .safety .bottom_text {
    margin-top: 32px;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
/* page reserve */
.reserve .room_guide dt {
  font-size: 3rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
}
.reserve .room_guide_image {
  margin-top: 32px;
}
.reserve .room_guide_image img {
  width: 100%;
}
.reserve .room_users {
  margin-top: 24px;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: center;
}
.reserve .room_users_max {
  display: block;
  font-size: 1.8rem;
}
@media screen and ( min-width: 1025px ) {
  .reserve .content_inner {
    padding: 200px 0 72px;
  }
  .reserve .pagename {
    font-size: 3.6rem;
    line-height: 1;
    text-align: center;
  }
  .reserve .content_image {
    width: 100%;
    margin-top: 48px;
  }
  .reserve .content_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 890 / 501;
  }
  .reserve .reserve_text {
    margin-top: 40px;
    padding: 0 100px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .reserve .room_guide {
    margin-top: 80px;
    padding: 0 64px;
  }
  .reserve .room_guide ul {
    display: flex;
    justify-content: space-between;
  }
  .reserve .reserve_table {
    width: 100%;
    height: 190px;
    margin-top: 24px;
    line-height: 1.8;
  }
  .reserve .reserve_table th {
    font-size: 1.7rem;
    font-weight: normal;
    text-align: center;
  }
  .reserve .reserve_table td {
    height: 40px;
    font-size: 2rem;
    text-align: center;
  }
  .reserve .room_notes {
    margin-top: 32px;
    padding: 32px;
    font-size: 1.6rem;
    line-height: 1.8;
    border-top: 1px solid #FFF;
    box-sizing: border-box;
  }
  .reserve .reserve_button {
    margin-top: 32px;
  }
}
@media screen and ( max-width: 1024px ) {
  .reserve .content_inner {
    padding: 60px 30px 36px;
  }
  .reserve .pagename {
    font-size: 2.2rem;
    line-height: 1;
    text-align: center;
  }
  .reserve .reserve_text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .reserve .room_guide {
    margin-top: 60px;
  }
  .reserve .room_guide li:not(:first-child) {
    margin-top: 80px;
  }
  .reserve .reserve_table {
    width: 100%;
    margin-top: 24px;
    line-height: 1.8;
  }
  .reserve .reserve_table th {
    font-size: 1.7rem;
    font-weight: normal;
    text-align: center;
  }
  .reserve .reserve_table td {
    height: 40px;
    font-size: 2rem;
    text-align: center;
  }
  .reserve .room_notes {
    margin-top: 32px;
    padding: 24px;
    font-size: 1.5rem;
    line-height: 1.8;
    border-top: 1px solid #FFF;
    box-sizing: border-box;
  }
}
/* page contact */
.contact .body_text {
  text-align: justify;
  border: 1px solid #fff;
}
.contact .notice {
  text-align: justify;
}
.contact .line_text {
  margin-top: 30px;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: .04em;
  text-align: center;
}
.form_wrap {
  margin: 0 auto;
  text-align: center;
}
.form_wrap dl {
  display: flex;
  text-align: left;
  letter-spacing: .1em;
}
.form_wrap dt {
  font-weight: 500;
}
.form_wrap dd {
  display: flex;
}
.form_wrap .required::after {
  content: "必須";
  padding: 0 4px;
  color: #f00;
  font-family: sans-serif;
  letter-spacing: .1em;
  border: 1px solid #f00;
  border-radius: 2px;
}
.form_wrap .input_half {
  width: 42%;
  position: relative;
}
.form_wrap .input_half label {
  width: 2.2em;
  position: absolute;
  top: 4px;
  left: -48px;
  text-align: right;
}
.form_wrap span {
  width: 100%;
}
.form_wrap input,
.form_wrap textarea {
  width: 100%;
  padding: 2px 16px;
  color: #000;
  font-size: 1.6rem;
  letter-spacing: .1em;
  background: #bbbbbf;
}
.form_wrap .privacy_link {
  line-height: 1;
  letter-spacing: .1em;
  text-decoration: underline;
}
@media screen and ( min-width: 1025px ) {
  .contact .content_inner {
    padding: 200px 0 72px;
  }
  .contact .pagename {
    font-size: 3.6rem;
    line-height: 1;
    text-align: center;
  }
  .contact .content_image {
    width: 100%;
    margin-top: 48px;
  }
  .contact .content_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 890 / 501;
  }
  .contact .text_wrap {
    margin-top: 56px;
    text-align: center;
  }
  .contact .body_text {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.4rem;
    line-height: 2;
  }
  .contact .notice {
    display: inline-block;
    margin: 96px 0 80px;
    font-size: 1.6rem;
    line-height: 2.2;
  }
  .form_wrap {
    width: 680px;
  }
  .form_wrap dl {
    padding: 0 20px;
  }
  .form_wrap dl:not(:first-child) {
    margin-top: 30px;
  }
  .form_wrap dt {
    width: 35%;
    margin-top: 4px;
  }
  .form_wrap dd {
    justify-content: space-between;
    width: 55%;
    position: relative;
  }
  .form_wrap .required::after {
    position: absolute;
    top: 8px;
    right: -60px;
    font-size: 1.2rem;
    line-height: 20px;
  }
  .form_wrap .privacy_link {
    margin-top: 72px;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .form_wrap .submit .btn_basic {
    width: 240px;
    margin-top: 40px;
  }
}
@media screen and ( max-width: 1024px ) {
  .contact .content_inner {
    padding: 44px 30px 50px;
  }
  .contact .body_text {
    padding: 15px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .contact .notice {
    margin: 27px 0 40px;
    font-size: 1.6rem;
    line-height: 2;
  }
  .contact .line_qr a {
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: .04em;
    text-decoration: underline;
  }
  .form_wrap dl {
    flex-direction: column;
  }
  .form_wrap dl:not(:first-child) {
    margin-top: 30px;
    padding: 0 8px;
  }
  .form_wrap dt {
    padding-left: 8px;
    font-size: 1.5rem;
    line-height: 1;
  }
  .form_wrap dd {
    flex-direction: column;
    margin-top: 14px;
  }
  .form_wrap .required::after {
    display: inline-block;
    margin-left: 8px;
    font-size: 1rem;
    line-height: 16px;
    vertical-align: 2px;
    background: #fff;
  }
  .form_wrap .privacy_link {
    margin-top: 62px;
    font-size: 1.5rem;
  }
  .form_wrap .submit .btn_basic {
    width: 70%;
    margin-top: 36px;
  }
}
/* privacy */
.privacy {
  display: none;
}
.privacy .content_inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  background:  url(../images/contact/pattern_flower.png) #000 repeat;
  border: 1px solid #fff;
  border-radius: 10px;
  overflow-y: scroll;
}
.privacy .content_title {
  line-height: 1;
  letter-spacing: .1em;
}
.privacy .content_title .text_ja {
  display: block;
}
.privacy .item_secondary {
  padding-left: 2em;
}
.privacy .item_secondary li {
  margin: 0;
  list-style-type: lower-alpha;
}
.privacy .contact_link {
  text-decoration: underline;
}
@media screen and ( min-width: 1025px ) {
  .privacy .content_inner {
    width: 1000px;
    height: 80vh;
    padding: 100px 132px 64px;
  }
  .privacy .content_title {
    font-size: 3rem;
    text-align: center;
  }
  .privacy .content_title .text_ja {
    margin-top: 16px;
    font-size: 1.8rem;
  }
  .privacy li {
    margin-top: 24px;
  }
  .privacy dt,
  .privacy dd {
    font-size: 1.4rem;
    line-height: 2.2;
  }
  .privacy .contact_info {
    margin-top: 40px;
  }
  .privacy .close_anchor {
    margin-top: -32px;
    position: absolute;
    right: 132px;
    text-decoration: underline;
    cursor: pointer;
  }
}
@media screen and ( max-width: 1024px ) {
  .privacy .content_inner {
    width: 90vw;
    height: 90vh;
    padding: 35px 15px;
  }
  .privacy .content_title {
    font-size: 2rem;
    text-align: right;
  }
  .privacy .content_title .text_ja {
    margin-top: 8px;
    font-size: 1.6rem;
  }
  .privacy li {
    margin-top: 28px;
  }
  .privacy dt,
  .privacy dd {
    font-size: 1.4rem;
    line-height: 2;
  }
  .privacy .contact_info {
    margin-top: 40px;
    padding: 0 12px;
  }
  .privacy .close_anchor {
    width: 35px;
    position: fixed;
    top: 20px;
    right: 10px;
    font-size: 3rem;
    line-height: 35px;
    text-align: center;
    border: 1px solid #fff;
    background: #040617;
    border-radius: 50%;
    z-index: 10001;
  }
}
/* footer */
.footer_info {
  display: inline-block;
  letter-spacing: .1em;
}
.footer_open dt {
  font-weight: 500;
}
.footer_close dt,
.footer_close dd {
  display: inline-block;
  font-weight: 500;
}
.footer-copyright {
  text-align: center;
}
@media screen and ( min-width: 1025px ) {
  .footer {
    background-color: #0c1220;
  }
  .footer_inner {
    display: flex;
  }
  .footer_infowrap {
    flex: 1 1 400px;
    padding: 24px;
    line-height: 1;
    text-align: right;
    background: #172034;
  }
  .footer_info {
    text-align: left;
  }
  .footer_name {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .footer_address {
    margin-top: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .footer_map {
    display: inline-block;
    margin-top: 24px;
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: underline;
  }
  .footer_tel {
    margin-top: 40px;
    font-size: 2.2rem;
    line-height: 1;
    pointer-events: none;
  }
  .footer_open {
    margin-top: 32px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .footer_open .room {
    margin-right: 12px;
  }
  .footer_close {
    margin-top: 16px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
  }
  .footer_close dt,
  .footer_close dd {
    display: inline-block;
    font-weight: 500;
  }
  .footer_close dt {
    margin-right: 5px;
  }
  .footer_menuwrap {
    display: flex;
    flex: 2 1 800px;
    padding: 32px;
    background-image: url(../images/common/bg-typo.png);
    background-repeat: no-repeat;
    background-position: calc(50% - -40px) 90px;
  }
  .footer_menu {
    align-self: flex-end;
    width: 520px;
    margin: 0 auto;
    text-align: right;
  }
  .footer_navi {
    margin-top: 24px;
    position: relative;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: .1em;
    text-align: right;
  }
  .footer_navi li {
    margin-top: 40px;
  }
  .footer_navi li:not(.member) {
    display: inline-block;
  }
  .footer_navi li:not(:first-child) {
    margin-left: 40px;
  }
  .footer_navi .privacy_link {
    cursor: pointer;
  }
  .footer_sns {
    position: absolute;
    left: 8px;
    bottom: -8px;
  }
  .footer_sns .sns_text,
  .footer_sns .list_sns {
    display: inline-block;
    vertical-align: middle;
  }
  .footer_sns .list_sns li {
    margin: 0 0 0 16px;
  }
  .footer-copyright {
    font-size: 1.1rem;
    line-height: 2.5rem;
    background: #000;
  }
}
@media screen and ( max-width: 1024px ) {
  .footer {
    background: #2d2d2d;
  }
  .footer_image img {
    width: 100%;
    height: auto;
    aspect-ratio: 150 / 101;
  }
  .footer_inner {
    padding: 20px 16px;
  }
  .footer_infowrap {
    margin-top: 20px;
    text-align: center;
    background-color: #040617;
    background-image: url(../images/common/bg-typo.png);
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: right 8px bottom 8px;
  }
  .footer_info {
    padding: 24px 0 16px;
  }
  .footer_name {
    font-size: 2rem;
    line-height: 1.4;
  }
  .footer_address {
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .footer_address .zipcode {
    font-size: 1.3rem;
  }
  .footer_tel,
  .footer_fax {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .footer_open {
    margin-top: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .footer_open .room {
    margin-right: 10px;
  }
  .footer_close {
    margin-top: 12px;
    font-size: 1.2rem;
    line-height: 1;
  }
  .footer_close dt {
    margin-right: 8px;
  }
  .footer-copyright {
    color: #fff;
    font-size: 1rem;
    line-height: 3.5rem;
    background: #040617;
  }

}
@media screen and ( min-width: 1025px ) {
  .sp_only {
    display: none!important;
  }
}
@media screen and ( max-width: 1024px ) {
  .pc_only {
    display: none!important;
  }
}