@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@400;500&display=swap");
html {
  overflow-y: scroll; }

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

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

fieldset, img {
  border: 0; }

img {
  vertical-align: bottom; }

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

li {
  list-style: none; }

caption, th {
  text-align: left; }

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

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

abbr, acronym {
  border: 0;
  font-variant: normal; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit; }

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%; }

/*because legend doesn't inherit in IE */
legend {
  color: #000; }

del, ins {
  text-decoration: none; }

button {
  margin: 0;
  padding: 0; }

a {
  text-decoration: none; }



/*tablet*/
/*pc*/
body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Serif JP","YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  padding-top: 53px; }
  body *, body *:before, body *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }



/* ===================== header ===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; }
  header .head-menu {
    background: #0B0B0B;
    padding: 15px;
    transition: .4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    header .head-menu div, header .head-menu li {
      min-height: 0%; }
    header .head-menu .logo {
      width: 30%;
      text-align: left; }
      header .head-menu .logo a {
        display: inline-block; }
        header .head-menu .logo a img {
          max-width: 105px;
          height: auto; }
      header .head-menu .logo .kuro {
        display: none; }
      header .head-menu .logo .fff {
        display: inline-block; }
      header .head-menu .logo .ja {
        padding-top: 8px;
    vertical-align: text-top;
        display: inline-block;
        font-size: 9px;
        line-height: 1;
        letter-spacing: .05rem;
        color: #fff;
        margin-left: 15px;
        font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; }
    header .head-menu .trigger-box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      header .head-menu .trigger-box div, header .head-menu .trigger-box li {
        min-height: 0%; }
      header .head-menu .trigger-box .menu-trigger,
      header .head-menu .trigger-box .menu-trigger span {
        display: inline-block;
        transition: all .4s; }
      header .head-menu .trigger-box .menu-trigger {
        position: relative;
        width: 24px;
        height: 14px;
        background: none;
        border: none;
        appearance: none;
        cursor: pointer; }
        header .head-menu .trigger-box .menu-trigger span {
          position: absolute;
          left: 0;
          width: 100%;
          height: 2px;
          background-color: #fff;
          border-radius: 2px; }
          header .head-menu .trigger-box .menu-trigger span:nth-of-type(1) {
            top: 0;
            animation: menu-bar01 .75s forwards; }
          header .head-menu .trigger-box .menu-trigger span:nth-of-type(2) {
            top: 6px;
            animation: menu-bar02 .75s forwards; }
          header .head-menu .trigger-box .menu-trigger span:nth-of-type(3) {
            bottom: 0;
            animation: menu-bar02 .75s forwards; }
        header .head-menu .trigger-box .menu-trigger.active span:nth-of-type(1) {
          animation: active-menu-bar01 .75s forwards; }
        header .head-menu .trigger-box .menu-trigger.active span:nth-of-type(2) {
          opacity: 0; }
        header .head-menu .trigger-box .menu-trigger.active span:nth-of-type(3) {
          animation: active-menu-bar03 .75s forwards; }
@keyframes menu-bar01 {
  0% {
    transform: translateY(6px) rotate(45deg); }
  50% {
    transform: translateY(6px) rotate(0); }
  100% {
    transform: translateY(0) rotate(0); } }
@keyframes menu-bar02 {
  0% {
    transform: translateY(-6px) rotate(-45deg); }
  50% {
    transform: translateY(-6px) rotate(0); }
  100% {
    transform: translateY(0) rotate(0); } }
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0); }
  50% {
    transform: translateY(6px) rotate(0); }
  100% {
    transform: translateY(6px) rotate(45deg); } }
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0); }
  50% {
    transform: translateY(-6px) rotate(0); }
  100% {
    transform: translateY(-6px) rotate(-45deg); } }
    header .head-menu.open {
      background: #fff; }
      header .head-menu.open .logo .kuro {
        display: inline-block; }
      header .head-menu.open .logo .fff {
        display: none; }
      header .head-menu.open .trigger-box .menu-trigger span {
        background: #333; }
    @media (min-width: 1024px) {
      header .head-menu .trigger-box {
        display: none; } }
  header .menu-box {
    display: none;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    position: absolute;
    top: 73px;
    right: 0;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9); }
    header .menu-box ul.menu li a {
      display: block;
      text-align: center;
      border-top: solid 2px #C6C3C3;
      padding: 15px;
      font-size: 14px;
      line-height: 2.14;
      letter-spacing: .03rem;
      color: #333;
      line-height: 1; }
    header .menu-box ul.menu li:last-child a {
      border-bottom: solid 2px #C6C3C3; }
    header .menu-box ul.conv {
      margin-top: 20px; }
      header .menu-box ul.conv li {
        width: 100%; }
        header .menu-box ul.conv li a {
          font-size: 18px; }
        header .menu-box ul.conv li.toi {
          margin-top: 20px; }
    header .menu-box .tel {
      text-align: center;
      margin-top: 30px; }
      header .menu-box .tel p {
        font-size: 14px;
        letter-spacing: .03rem;
        line-height: 1.6;
        color: #333; }
      header .menu-box .tel a {
        text-align: center;
        color: #333;
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: .15rem;
        margin-top: 6px; }
      header .menu-box .tel .time {
        margin-top: 6px;
        font-size: 14px;
        letter-spacing: .03rem;
        line-height: 1.6;
        color: #333; }
    @media (min-width: 600px) {
      header .menu-box ul.menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch; }
        header .menu-box ul.menu div, header .menu-box ul.menu li {
          min-height: 0%; }
        header .menu-box ul.menu li {
          width: 48%; }
          header .menu-box ul.menu li:nth-child(3) {
            border-bottom: solid 2px #C6C3C3; }
      header .menu-box ul.conv {
        margin-top: 20px; }
        header .menu-box ul.conv li {
          width: 48%; }
          header .menu-box ul.conv li.toi {
            margin-top: 0; } }
    @media (min-width: 1024px) {
      header .menu-box {
        display: inline-block;
        width: 90%;
        max-width: 1140px;
        margin: 0 0 0 auto;
        top: -2px;
        right: 10px;
        padding: 0;
        background: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch; }
        header .menu-box div, header .menu-box li {
          min-height: 0%; }
        header .menu-box ul.menu {
          width: 70%; }
          header .menu-box ul.menu li {
            width: 16.5%;
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; }
            header .menu-box ul.menu li div, header .menu-box ul.menu li li {
              min-height: 0%; }
            header .menu-box ul.menu li:nth-child(3) {
              border-bottom: none; }
            header .menu-box ul.menu li::before {
              content: "";
              height: 2px;
              width: 0;
              background: #C6C3C3;
              position: absolute;
              bottom: 0;
              left: 0;
              transition: .4s; }
            header .menu-box ul.menu li a {
              border-top: none;
              font-size: 11px;
              line-height: 1.2;
              color: #fff; }
            header .menu-box ul.menu li:last-child a {
              border-bottom: none; }
            header .menu-box ul.menu li:hover::before {
              width: 100%; }
        header .menu-box ul.conv {
          width: 28%;
          max-width: 280px;
          margin-top: 0; }
          header .menu-box ul.conv li {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; }
            header .menu-box ul.conv li div, header .menu-box ul.conv li li {
              min-height: 0%; }
            header .menu-box ul.conv li a {
              width: 100%;
              font-size: 12px; }
header .menu-box ul.conv li.room a{
  padding: 14px 5px;
}
header .menu-box ul.conv li.room a span.fs08 {
  font-size: 80%;
}
header .menu-box ul.conv li.toi a{
padding: 14px 10px;
}

header .menu-box ul.conv li.toi a span.fs08 {
  font-size: 80%;
}

        header .menu-box .tel {
          display: none; } }

/* ===================== conversion ===================== */
ul.conv {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }
  ul.conv div, ul.conv li {
    min-height: 0%; }
  ul.conv li {
    width: 50%; }
    ul.conv li a {
      display: block;
      text-align: center;
      padding: 14px;
      color: #fff;
      font-size: 14px;
      letter-spacing: .1rem;
      line-height: 1;
      transition: .4s; }
      ul.conv li a:hover {
        opacity: .7; }
    ul.conv li.room a {
      background: #7e694a; }
    ul.conv li.room a span.fs08,
    ul.conv li.toi a span.fs08{
      font-size: 80%;
    }
    ul.conv li.toi a {
      background: #1e2e55; }
  @media (min-width: 600px) {
    ul.conv {
      margin-top: 35px; }
      ul.conv li {
        width: 48%; } }

.foot-conv {
  width: 90%;
  margin: 40px auto 0 auto; }
  .foot-conv ul.conv li {
    margin-top: 20px;
    width: 100%; }
  @media (min-width: 600px) {
    .foot-conv ul.conv li {
      width: 48%; } }

.foot-tel .tel {
  text-align: center;
  margin-top: 40px; }
  .foot-tel .tel p {
    font-size: 14px;
    letter-spacing: .03rem;
    line-height: 1.6;
    color: #333; }
  .foot-tel .tel a {
    text-align: center;
    color: #333;
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: .15rem;
    margin-top: 6px; }
  .foot-tel .tel .time {
    margin-top: 6px;
    font-size: 14px;
    letter-spacing: .03rem;
    line-height: 1.6;
    color: #333; }

.tel a {
  line-height: 1; }
.tel .img {
  display: inline-block;
  width: 40px;
  line-height: 1; }

/* ===================== footer ===================== */
footer {
  width: 100%;
  background: #0B0B0B;
  padding-top: 30px;
  padding-bottom: 60px;
  margin-top: 20px;
  color: #fff; }
  footer .rights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    footer .rights div, footer .rights li {
      min-height: 0%; }
    footer .rights .logo {
      width: 105px;
      display: inline-block;
      margin-right: 20px; }
    footer .rights .s-logo {
      width: 182px;
      display: inline-block; }
    footer .rights .cr {
      width: 100%;
      text-align: center;
      margin-top: 10px;
      font-size: 9px;
      line-height: 2.2;
      letter-spacing: .05rem;
      font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; }

/* ===================== other ===================== */
.note {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 9px;
  line-height: 1.6;
  color: #656565;
  letter-spacing: .03rem; }

section {
  width: 90%;
  max-width: 1000px;
  margin: 45px auto 0 auto; }

.pagetop {
  width: 31px;
  height: 31px;
  position: fixed;
  bottom: 10px;
  right: 10px; }
  .pagetop a {
    display: block; }
    .pagetop a img {
      width: 100%;
      height: auto; }

.sp {
  display: inline-block; }
  @media (min-width: 1024px) {
    .sp {
      display: none; } }

.pc {
  display: none; }
  @media (min-width: 1024px) {
    .pc {
      display: inline-block; } }

.aw {
  display: inline-block; }

.img {
  position: relative; }
  .img img {
    width: 100%;
    height: auto; }
  .img .cap {
    position: absolute;
    bottom: 6px;
    right: 6px;
    font-size: 9px;
    line-height: 1;
    color: #333; }
  .img .cap-l {
    right: auto;
    left: 6px; }
  .img .fff {
    color: #fff; }
  .img .cap-r {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 4px; }

/* ===================== page ===================== */
.head {
  text-align: center; }
  .head .en {
    font-family: "Times New Roman", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .15rem; }
  .head .ja {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2; }
  .head .sen {
    display: block;
    width: 1px;
    height: 40px;
    background: #0B0B0B;
    margin: 10px auto 0 auto; }
  @media (min-width: 600px) {
    .head .ja br {
      display: none; } }

.back a {
  display: block;
  width: 53px;
  margin: 30px auto 0 auto; }

section.page {
  width: 100%;
  max-width: 100%;
  padding-top: 30px; }
  section.page .page-inner {
    width: 90%;
    max-width: 1000px;
    margin: auto; }

h4.copy {
  margin-top: 15px;
  font-size: 20px;
  letter-spacing: .05rem;
  color: #0B0B0B;
  text-align: center;
  line-height: 1.5; }
  @media (min-width: 600px) {
    h4.copy {
      text-align: left; }
      h4.copy br {
        display: none; } }

.lead {
  margin-top: 15px;
  color: #0B0B0B;
  font-size: 14px;
  letter-spacing: .03rem;
  line-height: 2; }

.anchor {
  display: block;
  padding-top: 60px;
  margin-top: -60px; }
