<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
body {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
  body.js_humburgerOpen {
    height: 100%;
    overflow: hidden;
  }
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}
a.no-active {
  pointer-events: none;
  opacity: 0.6;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
}

main {
  position: relative;
  box-shadow: 0px 11px 21px 0px #9a9a9a;
  padding-bottom: 3.125em;
}
@media screen and (max-width: 768px) {
  main {
    padding-bottom: 0;
  }
}

[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.6em;
}

.footer {
  position: relative;
  z-index: 3;
  overflow-x: hidden;
}

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

.pc-block {
  display: none;
}
@media screen and (max-width: 1280px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .tab-none {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .tab-block {
    display: block;
  }
}

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

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

.elm {
  opacity: 0;
  transform: translateY(1.875em);
  transition: 0.5s ease-in-out, transform 0.5s ease-out;
  filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .elm {
    transform: translateY(2em);
  }
}
.elm.fade-in {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
}

.elm.elm2 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm2 {
    transition-delay: unset;
  }
}

.elm.elm2_2 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm2_2 {
    transition-delay: unset;
  }
}

.elm.elm3 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition-delay: unset;
  }
}

.elm_title {
  opacity: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(-1.5em);
}
@media screen and (max-width: 768px) {
  .elm_title {
    transform: translateY(-70px);
  }
}

.elm_title_en {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0.3s;
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  transition-duration: 1.8s;
  transition-timing-function: ease-in-out;
  filter: blur(6px);
}
.elm_o.fade-in {
  opacity: 1;
  filter: blur(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}
@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
.inner1000 {
  max-width: 62.5em;
  width: 90%;
  margin: 0 auto;
}

/* ローディング画面 */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../img/top/entry_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transform: translateY(-100%);
  animation: fill2 1s ease-in-out;
}

.loader-container_pt {
  display: none;
}

/* ローディングアニメーション */
@keyframes fill2 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}
.lowerTitle {
  background: #00292c;
  padding-block: 10em 6.875em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lowerTitle {
    padding-block: 8em 3.875em;
  }
}
.lowerTitle h1 {
  font-size: 1.875em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.lowerTitle .en {
  font-size: 1.25em;
  font-family: "trajan-pro-3", serif;
  color: #fff;
  font-weight: 500;
  margin-top: 0.5em;
  letter-spacing: 0.16em;
}
.lowerTitle_headline {
  position: relative;
  z-index: 2;
}
.lowerTitle_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lowerTitle_bg picture {
  width: 100%;
  height: 100%;
}
.lowerTitle_bg picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lowerMv {
  position: relative;
}
.lowerMv_headline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
}
.lowerMv_headline h1 {
  font-family: "trajan-pro-3", serif;
  font-size: 1.25em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.lowerMv_headline h2 {
  font-size: 1.875em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-top: 1.5333333333em;
}
@media screen and (max-width: 768px) {
  .lowerMv_headline h2 {
    font-size: 1.7em;
  }
}
.lowerMv picture {
  position: relative;
  z-index: 1;
}
.lowerMv picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lowerSection_title {
  font-size: 1.375em;
  font-family: "trajan-pro-3", serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
  color: #00292c;
}

.linkBtn a {
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.16em;
  padding: 0.5em 3em;
  position: relative;
  background: #f3de7e;
}
@media screen and (max-width: 768px) {
  .linkBtn a {
    font-size: 1.125em;
  }
}
.linkBtn a::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  border-left: 0.5em solid #000;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  z-index: 1;
}
.linkBtn a .ls {
  letter-spacing: 0.05em;
}
.linkBtn a.shine {
  background: linear-gradient(-45deg, #f3de7e 50%, #fcf6db 60%, #f3de7e 70%);
  background-size: 400% 100%;
  animation: shine 10s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}
.linkBtn a.shine2 {
  background: linear-gradient(-45deg, #00292c 50%, #008892 60%, #00292c 70%);
  background-size: 400% 100%;
  animation: shine 10s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}
@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}

.no-active {
  opacity: 0.5;
}
.no-active a {
  pointer-events: none;
}

.back-to-top {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 3%;
  color: #fff;
  width: 3.875em;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  z-index: 101;
  transition-duration: initial;
}
@media screen and (max-width: 768px) {
  .back-to-top {
    width: 14vw;
    bottom: 21vw;
  }
}
.back-to-top:hover {
  opacity: 1;
}
.back-to-top img {
  transition-duration: 0.3s;
}
.back-to-top img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .back-to-top img:hover {
    opacity: 1;
  }
}

picture {
  position: relative;
}
picture .caption {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  bottom: 0.1em;
  right: 0.5em;
  text-align: right;
  line-height: 1.2;
  font-size: 0.625em;
  color: #fff;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.bottomNotes {
  line-height: 1.2em;
  margin-top: 5.625em;
}
.bottomNotes p {
  font-size: 0.6875em;
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: 0;
  text-align: justify;
}

.aniLine {
  position: absolute;
  overflow: hidden;
  z-index: 1;
  transform: rotate(-50deg);
}
.aniLine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
}
.aniLine.coWhite::before {
  background-color: #fff;
}
.aniLine.coOrange::before {
  background-color: #ffb500;
}
.aniLine.coBlue::before {
  background-color: #7ac3ff;
}
.aniLine.coGreen::before {
  background-color: #00873c;
}
.aniLine.is-active::before {
  animation: lineAnimation 0.4s ease-in-out forwards;
}
.aniLine.is-active.tr01::before {
  animation: lineAnimation 0.6s ease-in-out forwards;
}
.aniLine.is-active.tr02::before {
  animation: lineAnimation 0.4s ease-in-out forwards;
}
.aniLine.is-active.tr03::before {
  animation: lineAnimation 0.4s ease-in-out forwards;
}

.aniLine01 {
  width: 45.8125em;
  height: 0.2em;
  top: 5em;
  left: 25%;
  transform: translateX(-50%) rotate(-50deg);
  -webkit-transform: translateX(-50%) rotate(-50deg);
  -ms-transform: translateX(-50%) rotate(-50deg);
}
@media screen and (max-width: 768px) {
  .aniLine01 {
    width: 13.8125em;
    height: 0.2em;
    top: 8em;
    left: 19%;
  }
}

.aniLine02 {
  width: 19.5625em;
  height: 0.2em;
  bottom: 12em;
  right: 5%;
}
@media screen and (max-width: 1280px) {
  .aniLine02 {
    right: -3%;
  }
}
@media screen and (max-width: 768px) {
  .aniLine02 {
    width: 7.5625em;
    bottom: 4em;
  }
}

.aniLine03 {
  width: 19.5625em;
  height: 0.2em;
  bottom: 7em;
  right: 6%;
}
@media screen and (max-width: 1280px) {
  .aniLine03 {
    right: -2%;
  }
}
@media screen and (max-width: 768px) {
  .aniLine03 {
    width: 7.5625em;
    bottom: 2em;
  }
}

.aniLine04 {
  width: 20em;
  height: 0.2em;
  top: 9em;
  left: -6%;
}
@media screen and (max-width: 768px) {
  .aniLine04 {
    width: 10em;
    top: 9em;
    left: -13%;
  }
}

.aniLine05 {
  width: 20em;
  height: 0.2em;
  top: 12em;
  left: -5%;
}
@media screen and (max-width: 768px) {
  .aniLine05 {
    width: 10em;
    top: 11em;
    left: -14%;
  }
}

.aniLine06 {
  width: 20em;
  height: 0.2em;
  top: 25em;
  right: -7%;
}
@media screen and (max-width: 768px) {
  .aniLine06 {
    width: 10em;
    top: 31em;
    right: -14%;
  }
}

@keyframes lineAnimation {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ふわふわするアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.3em);
  }
}
@keyframes fuwafuwa2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.6em);
  }
}
.anime-fuwafuwa {
  animation: 1s fuwafuwa infinite;
}

/* ヘッダー */
header {
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 9998;
  position: fixed;
}
@media screen and (max-width: 768px) {
  header {
    height: 65px;
  }
}
header .headerWrap {
  padding: 0 3.125em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
}
@media screen and (max-width: 768px) {
  header .headerWrap {
    justify-content: space-between;
    padding: 0 7vw 0 5vw;
    height: 65px;
  }
}
header .headerWrap .logo_name {
  width: 18.25em;
}
header .headerWrap_menu {
  position: relative;
  padding-right: 6.25em;
}
@media screen and (max-width: 768px) {
  header .headerWrap_menu {
    padding-right: 0;
  }
}
header .headerWrap_menu .detail {
  font-size: 0.6875em;
  color: #fff;
  margin-left: 1.6em;
}
@media screen and (max-width: 768px) {
  header .headerWrap_menu .detail {
    display: none;
  }
}
header .el_humburger {
  position: fixed;
  z-index: 9999;
  position: absolute;
  top: 50%;
  right: 3.125em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 74px;
  box-sizing: border-box;
  padding-top: 0;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  header .el_humburger {
    width: 60px;
    right: 1.5em;
    top: 58%;
  }
}
header .el_humburger_wrapper {
  width: 74px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  header .el_humburger_wrapper {
    width: 60px;
  }
}
header .el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 6.5px;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
header .el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}
header .el_humburgerButton.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}
header .el_humburgerButton.el_humburgerButton__close span.el_humburger_bar.top {
  transform: translateY(5px) rotate(-45deg);
}
header .el_humburgerButton.el_humburgerButton__close span.el_humburger_bar.bottom {
  transform: translateY(-6px) rotate(45deg);
}
header .navi {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  background-color: rgba(0, 68, 67, 0.95);
  width: 36.5em;
  z-index: 3;
  padding-top: 7.5em;
  box-sizing: border-box;
  transition: all 600ms ease-in-out;
  transform: translateZ(0) translateX(100%);
  overflow: auto;
  z-index: 9998;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .navi {
    width: 100%;
    padding-top: 5em;
  }
}
header .navi a {
  color: #fff;
}
header .navi_item {
  margin-bottom: 1.5em;
  line-height: 1;
  white-space: nowrap;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .navi_item {
    font-size: 4.3vw;
    margin-bottom: 4vw;
  }
}
header .navi_item.no_active {
  opacity: 0.5;
  pointer-events: none;
}
header .navi_item.current a {
  padding-bottom: 0.125em;
  border-bottom: 0.0625em solid #fff;
}
header .navi_item:first-child .navi_item_box {
  border-left: none;
}
header .navi_item_box {
  padding-left: 0.8em;
  border-left: 0.0625em solid #fff;
}
header .navi_item_box_new {
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  margin-bottom: 0.8em;
  opacity: 0;
  display: inline-block;
  background-color: #f3de7e;
  color: #000;
  padding: 0.3em 0.6em;
}
@media screen and (max-width: 768px) {
  header .navi_item_box_new {
    font-size: 0.6em;
    padding-block: 0.1em 0.15em;
    margin-bottom: 0.5em;
  }
}
header .navi_item_box_en {
  font-size: 0.8125em;
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  header .navi_item_box_en {
    font-size: 0.6em;
    margin-bottom: 0.4em;
  }
}
header .navi_item_box_en.rc {
  letter-spacing: 0.1em;
}
header .navi_item_box_ja {
  font-size: 1.125em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  header .navi_item_box_ja {
    font-size: 0.8em;
  }
}
header .navi_item_box.new .navi_item_box_new {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  header .navi_item:last-of-type a .navi_item_box_ja {
    letter-spacing: 0;
  }
}
header .navi_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 76%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  header .navi_inner {
    width: 90%;
  }
}
header .navi_inner02 {
  width: 76%;
  margin: 3.125em auto 0;
  padding-bottom: 5em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 {
    width: 90%;
    margin-top: 1em;
    padding-bottom: 2em;
  }
}
header .navi_inner02 .navi_item_sub {
  display: flex;
  justify-content: flex-start;
}
header .navi_inner02 .navi_item_sub_item {
  font-size: 0.875em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_sub_item {
    font-size: 1em;
    width: 50%;
  }
}
header .navi_inner02 .navi_item_sub_item:first-child {
  margin-right: 1.7857142857em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_sub_item:first-child {
    margin-right: 0vw;
  }
}
header .navi_inner02 .navi_item_sub_item a {
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
header .navi_inner02 .navi_item_sub_item a span {
  width: 0.8571428571em;
  margin-right: 0.1428571429em;
  display: flex;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_sub_item a span {
    width: 4vw;
    margin-right: 1vw;
  }
}
header .navi_inner02 .navi_item_box {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25em;
  border-left: none;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_box {
    margin-top: 1.5em;
  }
}
header .navi_inner02 .navi_item_box_item {
  width: 48.6%;
}
header .navi_inner02 .navi_item_box_item a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1em 0;
  border: 0.0625em solid #fff;
  font-size: 1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_box_item a {
    font-size: 1.125em;
    padding: 0.7em 0;
  }
}
header .navi_inner02 .navi_item_tel {
  margin-top: 1.875em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel {
    margin-top: 8vw;
  }
}
header .navi_inner02 .navi_item_tel_txt {
  font-size: 0.875em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel_txt {
    font-size: 3.5vw;
  }
}
header .navi_inner02 .navi_item_tel a {
  font-size: 2.8571428571em;
  letter-spacing: 0.1em;
  margin-top: 0.3571428571em;
  pointer-events: none;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel a {
    pointer-events: all;
    font-size: 9vw;
    margin-top: 2vw;
    letter-spacing: 0.05em;
  }
}
header .navi_inner02 .navi_item_tel a span {
  width: 2.5em;
  display: flex;
  align-items: center;
  margin-right: 0.7142857143em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel a span {
    width: 9vw;
    margin-right: 2vw;
  }
}
header .navi_inner02 .navi_item_tel_time {
  font-size: 0.6875em;
  margin-top: 0.7272727273em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel_time {
    font-size: 3vw;
    margin-top: 2.5vw;
    line-height: 1.6;
  }
}
header .navi .topLink {
  position: absolute;
  left: 12%;
  top: 4em;
  font-family: "trajan-pro-3", serif;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  header .navi .topLink {
    left: 8%;
    top: 3em;
    font-size: 1.25em;
  }
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #fff;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  transform: translateX(25px);
}
@media screen and (max-width: 768px) {
  .js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
    transform: translateX(20px);
  }
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  transform: translateX(45px);
}
@media screen and (max-width: 768px) {
  .js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
    transform: translateX(38px);
  }
}
.js_humburgerOpen .navi {
  right: 0;
  transform: translateZ(0) translateX(0);
}
@media screen and (max-width: 768px) {
  .js_humburgerOpen .navi {
    height: 100%;
    overflow: scroll;
  }
}

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

.footerMenu {
  margin-top: 7em;
}
@media screen and (max-width: 768px) {
  .footerMenu {
    background-color: #eeeeee;
    padding-block: 1em;
    margin-top: 6em;
  }
}
.footerMenu .menuList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 1160px) {
  .footerMenu .menuList {
    width: 65%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .footerMenu .menuList {
    width: 90%;
  }
}
.footerMenu .menuList li {
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  width: auto;
  font-size: 0.625em;
  line-height: 1;
  border-right: 0.05em solid #3f3f3f;
  text-align: center;
  padding: 0 1em;
  letter-spacing: 0.05em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.footerMenu .menuList li a span {
  font-size: 1.3em;
}
.footerMenu .menuList li:last-of-type {
  border-right: none;
}
@media screen and (max-width: 1160px) {
  .footerMenu .menuList li:nth-of-type(n + 8) {
    margin-top: 3em;
  }
  .footerMenu .menuList li:nth-of-type(7) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .footerMenu .menuList li {
    width: 50%;
    border-right: none;
    border-bottom: 0.05em solid #fff;
    padding: 1.4em 0 1em 0.5em;
    text-align: left;
    font-size: 0.8125em;
    line-height: 1.4;
  }
  .footerMenu .menuList li:nth-of-type(n + 3) {
    margin-top: 0em;
  }
  .footerMenu .menuList li:nth-of-type(n + 11) {
    border-bottom: none;
  }
  .footerMenu .menuList li:last-of-type {
    letter-spacing: -0.03em;
  }
  .footerMenu .menuList li a span {
    font-size: 1.3em;
  }
  .footerMenu .menuList li a span.rc {
    letter-spacing: 0.1em;
  }
}
.footerMenu .menuList li.no-active a {
  opacity: 0.6;
  pointer-events: none;
}
.footerMenu .menuList li.new {
  position: relative;
}
.footerMenu .menuList li.new::after {
  content: "NEW";
  display: inline-block;
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 0.75em;
  padding: 0.4em 0.3em 0.1em 0.3em;
  background-color: #961c22;
  color: white;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footerMenu .menuList li.new::after {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: inline-block;
    padding: 0.5em 0.5em 0.3em;
  }
}
@media screen and (max-width: 768px) {
  .footerMenu .menuList li.new:nth-of-type(odd)::after {
    right: 2.5em;
  }
}

footer {
  width: 100%;
  position: relative;
  z-index: 100;
  padding-top: 3.125em;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 5em;
  }
}
footer .footer_fix {
  width: 100%;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer_fix {
    padding: 3vw 0 5vw;
  }
}
footer .footer_fix_inner {
  max-width: 62.5em;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
footer .footer_fix .navi_item_tel_txt {
  font-size: 0.875em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_tel_txt {
    text-align: center;
    font-size: 3vw;
    line-height: 2.6;
  }
  footer .footer_fix .navi_item_tel_txt [data-ruby]::before {
    line-height: 1.2;
  }
}
footer .footer_fix .navi_item_tel a {
  font-size: 4.375em;
  letter-spacing: 0.05em;
  margin-top: 0.02em;
  pointer-events: none;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_tel a {
    pointer-events: all;
    text-align: center;
    font-size: 3.375em;
    margin-top: 0;
  }
}
footer .footer_fix .navi_item_tel a span {
  width: 0.8em;
  display: flex;
  align-items: center;
  margin-right: 0.28em;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_tel a span {
    width: 9vw;
    margin-right: 2vw;
  }
}
footer .footer_fix .navi_item_tel_time {
  font-size: 0.8125em;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_tel_time {
    margin-top: 0.5em;
    font-size: 0.9375em;
  }
}
footer .footer_fix .navi_item_sub_item {
  font-size: 14px;
}
footer .footer_fix .navi_item_sub_item:nth-child(n+2) {
  margin-top: 10px;
}
footer .footer_fix .navi_item_sub_item a {
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
footer .footer_fix .navi_item_sub_item a span {
  width: 12px;
  margin-right: 2px;
  display: flex;
  align-items: center;
}
footer .footer_fix .navi_item_box {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2.5em;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box {
    margin-top: 0;
    background: #000;
  }
}
footer .footer_fix .navi_item_box_item {
  width: 10.625em;
}
footer .footer_fix .navi_item_box_item:nth-of-type(3) {
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box_item:nth-of-type(3) {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box_item {
    width: 25%;
  }
  footer .footer_fix .navi_item_box_item.no-active {
    opacity: 0.4;
  }
}
footer .footer_fix .navi_item_box_item a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1em 0;
  font-size: 1em;
  letter-spacing: 0.1em;
  background: #a48b51;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box_item a {
    position: relative;
    padding: 3em 0 1em 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box_item:nth-of-type(1) a {
    background: #561a19;
    background: linear-gradient(45deg, rgb(86, 26, 25) 0%, rgb(178, 63, 62) 100%);
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(1) a::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 1.8em;
    height: 1.8em;
    background: url("../../img/common/footer_icon_tel.svg") no-repeat center center/contain;
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(2) a {
    background: #253d37;
    background: linear-gradient(45deg, rgb(37, 61, 55) 0%, rgb(67, 137, 69) 100%);
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(2) a::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 1.8em;
    height: 1.8em;
    background: url("../../img/common/footer_icon_entry.svg") no-repeat center center/contain;
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(3) a {
    background: #60430e;
    background: linear-gradient(45deg, rgb(96, 67, 14) 0%, rgb(195, 161, 99) 100%);
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(3) a::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 1.8em;
    height: 1.8em;
    background: url("../../img/common/footer_icon_mail.svg") no-repeat center center/contain;
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(4) a {
    background: #333333;
    background: linear-gradient(45deg, rgb(51, 51, 51) 0%, rgb(150, 150, 150) 100%);
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(4) a::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 1.8em;
    height: 1.8em;
    background: url("../../img/common/footer_icon_map.svg") no-repeat center center/contain;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_fix_list {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
  }
}
footer .footer_fb {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 3.125em;
  padding-block: 2.5em;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  footer .footer_fb {
    flex-direction: column;
    padding: 10vw 0;
    margin-top: 2.125em;
  }
}
footer .footer_com {
  margin-right: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer_com {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  footer .footer_com:nth-of-type(n + 2) {
    margin-top: 8vw;
  }
}
footer .footer_com_work {
  font-size: 0.75em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .footer_com_work {
    font-size: 1em;
  }
}
footer .footer_com_logo {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo {
    margin-top: 3vw;
  }
}
footer .footer_com_logo.logo01 {
  width: 16.15625em;
}
@media screen and (max-width: 1100px) {
  footer .footer_com_logo.logo01 {
    width: 12em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo.logo01 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer_com_logo.logo02 {
  width: 15.9375em;
}
@media screen and (max-width: 1100px) {
  footer .footer_com_logo.logo02 {
    width: 12em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo.logo02 {
    width: 78%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer_com_logo.logo03 {
  width: 9.375em;
}
@media screen and (max-width: 1100px) {
  footer .footer_com_logo.logo03 {
    width: 9em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo.logo03 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer_com_logo.logo04 {
  width: 15.375em;
}
@media screen and (max-width: 1100px) {
  footer .footer_com_logo.logo04 {
    width: 12em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo.logo04 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer_com_logo a {
  display: block;
}
footer .footer_com:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  footer .footer_com:last-of-type {
    margin-right: auto;
  }
}
footer .cop {
  text-align: center;
  padding-block: 1em;
  background: #000;
  font-size: 0.625em;
  color: #fff;
}

img {
  width: 100%;
}

figure {
  margin: 0;
}

.test1 {
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s ease-out 0.01s;
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
main {
  letter-spacing: 0;
  overflow: hidden;
}

.mb140 {
  margin-bottom: 140px !important;
}

@media screen and (max-width: 800px) {
  .mb140 {
    margin-bottom: 70px !important;
  }
}
.mb70 {
  margin-bottom: 70px !important;
}

@media screen and (max-width: 800px) {
  .mb70 {
    margin-bottom: 35px !important;
  }
}
.mb45 {
  margin-bottom: 45px !important;
}

@media screen and (max-width: 800px) {
  .mb45 {
    margin-bottom: 22.5px !important;
  }
}
.mb35 {
  margin-bottom: 35px !important;
}

@media screen and (max-width: 800px) {
  .mb35 {
    margin-bottom: 17.5px !important;
  }
}
.mb25 {
  margin-bottom: 25px !important;
}

@media screen and (max-width: 800px) {
  .mb25 {
    margin-bottom: 12.5px !important;
  }
}
.mb15 {
  margin-bottom: 15px !important;
}

@media screen and (max-width: 800px) {
  .mb15 {
    margin-bottom: 7.5px !important;
  }
}
#base_back {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../../img/specialroom/back_img.jpg) no-repeat center;
  background-size: cover;
}

#section01 {
  width: 100%;
  position: relative;
  color: #fff;
  z-index: 2;
}

#section01 figure {
  width: 100%;
  position: relative;
}

#section01 .titles {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #section01 .titles {
    top: 60%;
  }
}

#section01 h1 {
  text-align: center;
}

#section01 h1 .eng {
  text-align: center;
  margin-bottom: 0.95em;
  text-align: center;
}

#section01 h1 .eng span {
  display: inline-block;
  padding: 0.35em 3em 0.45em 3em;
  background: linear-gradient(129.48deg, rgb(251, 239, 191) 0%, rgb(219, 198, 154) 33%, rgb(181, 148, 109) 66%, rgb(153, 112, 76) 100%);
  line-height: 100%;
  color: #000;
}

#section01 h1 .jpn {
  text-align: center;
  margin-bottom: 0em;
  line-height: 120%;
}

#section01 h1 .jpn1 {
  text-align: center;
  margin-bottom: 0.7em;
}

#section01 h1 .jpn2 {
  text-align: center;
}

#section01 .base_text {
  text-align: center;
}

#section02 {
  width: 100%;
  padding: 80px 0 100px 0;
}

@media screen and (max-width: 800px) {
  #section02 {
    padding: 60px 0 60px 0;
  }
}
#section02 .section__in1 {
  width: 90%;
  max-width: 1146px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 800px) {
  #section02 .section__in1 {
    width: 100%;
  }
}
#section02 .section__in {
  width: 90%;
  max-width: 1146px;
  margin: 0 auto;
  position: relative;
}

#section02 h3 {
  width: 100%;
  margin: 0 0px;
  text-align: center;
  padding: 0 73px;
  overflow: hidden;
}

@media screen and (max-width: 800px) {
  #section02 h3 {
    padding: 0 0px;
  }
}
#section02 h3 span {
  display: inline-block;
  background-color: #00292c;
  padding: 0.5em 0 0.6em 0;
  color: #fff;
  width: 100%;
}

#section02 .slidewaku_all {
  position: relative;
}

#section02 .slidewaku {
  width: 100%;
  margin: 0 auto;
  padding: 0 73px;
  overflow: hidden;
}

@media screen and (max-width: 800px) {
  #section02 .slidewaku {
    padding: 0 0px;
  }
}
#section02 .minitext {
  width: 100%;
  max-width: 1000px;
  margin: 0.5em auto 0 auto;
}

@media screen and (max-width: 800px) {
  .ios-device .slider {
    touch-action: pan-x !important;
  }
}
@media screen and (max-width: 800px) {
  .ios-device .slider-thumbnail {
    touch-action: pan-x !important;
  }
}
.swiper-container {
  width: 100%;
}

.swiper-container.slider {
  /*height: 80vh;*/
}

.swiper-container.slider {
  touch-action: pan-y;
}

@media screen and (max-width: 800px) {
  .swiper-container.slider {
    /*touch-action: pan-x;*/
  }
}
.swiper-container.slider-thumbnail {
  touch-action: pan-y;
}

@media screen and (max-width: 800px) {
  .swiper-container.slider-thumbnail {
    /*touch-action: pan-x;*/
  }
}
.swiper-container.slider-thumbnail {
  margin-top: 35px;
}

@media screen and (max-width: 800px) {
  .swiper-container.slider-thumbnail {
    margin-top: 2.5vw;
  }
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  overflow: hidden;
}

.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide:hover {
  cursor: pointer;
}

.swiper-button-prev.custom-prev,
.swiper-button-next.custom-next {
  width: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@media screen and (max-width: 800px) {
  .swiper-button-prev.custom-prev,
  .swiper-button-next.custom-next {
    width: 4vw;
  }
}
.swiper-button-prev.custom-prev {
  left: 0;
}

@media screen and (max-width: 800px) {
  .swiper-button-prev.custom-prev {
    left: 0;
  }
}
.swiper-button-next.custom-next {
  right: 0;
}

@media screen and (max-width: 800px) {
  .swiper-button-next.custom-next {
    right: 0;
  }
}
.swiper-button-prev.custom-prev::after {
  content: none;
}

.swiper-button-next.custom-next::after {
  content: none;
}

.swiper-button-prev.custom-prev img,
.swiper-button-next.custom-next img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-slide {
  opacity: 1 !important;
  position: relative;
}

.swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.imagebox {
  width: 100%;
  max-width: 1000px;
  margin: 150px auto 0 auto;
  background-color: #00292c;
  padding: 50px 5%;
}

@media screen and (max-width: 800px) {
  .imagebox {
    padding: 7vw 5%;
    margin: 80px auto 0 auto;
  }
}
.imagebox .ttl {
  margin-bottom: 1em;
  color: #fff;
  text-align: center;
}

.imagebox ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.imagebox ul li {
  width: 31.5%;
  border: 1px solid rgb(209, 183, 71);
}

@media screen and (max-width: 800px) {
  .imagebox ul li {
    width: 100%;
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 800px) {
  .imagebox ul li.last {
    width: 100%;
    margin-bottom: 0vw;
  }
}
.imagebox ul li a {
  width: 100%;
  display: block;
}

.imagebox ul li a:hover .botanss span::after {
  left: 0em;
}

.imagebox ul li .heads {
  width: 100%;
  background: linear-gradient(45deg, rgb(255, 248, 194) 0%, rgb(248, 238, 176) 4.8%, rgb(231, 213, 128) 14.46%, rgb(203, 173, 52) 27.97%, rgb(191, 156, 20) 33.33%, rgb(209, 183, 71) 38.85%, rgb(255, 250, 198) 51.35%, rgb(253, 246, 193) 80.75%, rgb(252, 244, 190) 89.67%);
  text-align: center;
  padding: 0.25em 0;
  color: #000;
  font-weight: 500;
}

.imagebox ul li .botanss {
  width: 100%;
  background-color: #000000;
  text-align: center;
  padding: 1em 0;
}

.imagebox ul li .botanss span {
  display: inline-block;
  color: #fff;
  padding-left: 5em;
  position: relative;
}

.imagebox ul li .botanss span::before {
  content: "";
  width: 3em;
  height: 3em;
  background-color: #bcbbab;
  position: absolute;
  top: 50%;
  left: 1.75em;
  border-radius: 50%;
  transform: translate(0, -50%);
}

.imagebox ul li .botanss span::after {
  content: "";
  width: 4em;
  height: 2em;
  background: url(../../img/specialroom/icon_cv_yaji.svg) no-repeat center;
  background-size: auto;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -0.5em;
  transform: translate(0, -50%);
  z-index: 10;
  transition: all 0.3s ease-out 0.01s;
}

/**************************/
#section03 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #section03 {
    padding: 7.5vw 0;
  }
}
#section03 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#section03 .midashi {
  text-align: center;
}

#section03 .midashi .golds {
  text-align: center;
  margin-bottom: 0.95em;
  text-align: center;
  color: #00292c;
}

#section03 .midashi .golds span {
  display: inline-block;
  padding: 0.35em 1.5em 0.45em 1.5em;
  background: linear-gradient(129.48deg, rgb(251, 239, 191) 0%, rgb(219, 198, 154) 33%, rgb(181, 148, 109) 66%, rgb(153, 112, 76) 100%);
  line-height: 100%;
  color: #000;
}

#section03 .midashi .jpn {
  text-align: center;
  margin-bottom: 0.65em;
}

#section03 .midashi .jpn1 {
  text-align: center;
  margin-bottom: 1em;
}

#section03 .midashi .base_text {
  text-align: center;
  line-height: 180%;
  margin-bottom: 1em;
}

@media screen and (max-width: 800px) {
  #section03 .midashi .base_text {
    text-align: left;
  }
}
#section03 .midashi .minis {
  text-align: center;
}

#section04 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 70px 0 50px 0;
  position: relative;
  z-index: 2;
  background: url(../../img/specialroom/sec01_back_pc.jpg) no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 800px) {
  #section04 {
    padding: 7.5vw 0 5vw 0;
    background: url(../../img/specialroom/sec01_back_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section04 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#section04 .midashi {
  text-align: center;
}

#section04 .midashi .imgttl {
  width: 100%;
  max-width: 425px;
  margin: 0 auto 35px auto;
}

@media screen and (max-width: 800px) {
  #section04 .midashi .imgttl {
    margin: 0 auto 20px auto;
  }
}
#section04 .midashi .jpn {
  text-align: center;
  margin-bottom: 0.65em;
}

#section04 .midashi .jpn1 {
  text-align: center;
  margin-bottom: 1em;
}

#section04 .midashi .base_text {
  text-align: center;
  line-height: 180%;
}

#section04 .midashi .minis {
  text-align: center;
}

#section05 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #section05 {
    padding: 7.5vw 0;
  }
}
#section05 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#section05 .base_text {
  text-align: center;
  line-height: 180%;
  margin-bottom: 2em;
}

#section05 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#section05 ul li {
  width: 23.8%;
}

@media screen and (max-width: 800px) {
  #section05 ul li {
    width: 100%;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 800px) {
  #section05 ul li:last-child {
    margin-bottom: 0;
  }
}
#section05 ul li figure {
  width: 100%;
}

#section05 ul li figure {
  width: 100%;
  position: relative;
}

#section05 ul li figure div.inimg {
  position: relative;
}

#section05 ul li figure figcaption {
  position: absolute;
  line-height: 110%;
  bottom: 8px;
  right: 8px;
  color: #fff;
}

#section05 ul li figure figcaption.black {
  color: #000;
}

#section05 ul li .namses {
  text-align: center;
  padding: 0.85em 0 0.95em 0;
}

#section05 ul li .bases {
  text-align: center;
  line-height: 160%;
}

#section05 ul li .goldsbus {
  text-align: center;
  padding: 0.45em 0 0.55em 0;
  background: linear-gradient(90deg, rgb(255, 248, 194) 0%, rgb(248, 238, 176) 4.8%, rgb(231, 213, 128) 14.46%, rgb(203, 173, 52) 27.97%, rgb(191, 156, 20) 33.33%, rgb(209, 183, 71) 38.85%, rgb(255, 250, 198) 51.35%, rgb(253, 246, 193) 80.75%, rgb(252, 244, 190) 89.67%);
  margin-top: 1em;
  color: #000;
  font-weight: 500;
}

#section_atens2 {
  background-color: #00292c;
  color: #fff;
  border-top: 1px solid #fff;
}

#section06 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 70px 0 50px 0;
  position: relative;
  z-index: 2;
  background: url(../../img/specialroom/sec02_back_pc.jpg) no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 800px) {
  #section06 {
    padding: 7.5vw 0 5vw 0;
    background: url(../../img/specialroom/sec02_back_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section06 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#section06 .midashi {
  text-align: center;
}

#section06 .midashi .imgttl {
  width: 100%;
  max-width: 425px;
  margin: 0 auto 35px auto;
}

@media screen and (max-width: 800px) {
  #section06 .midashi .imgttl {
    margin: 0 auto 20px auto;
  }
}
#section06 .midashi .jpn {
  text-align: center;
  margin-bottom: 0.65em;
}

#section06 .midashi .jpn1 {
  text-align: center;
  margin-bottom: 1em;
}

#section06 .midashi .base_text {
  text-align: center;
  line-height: 180%;
}

#section06 .midashi .minis {
  text-align: center;
}

#section07 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #section07 {
    padding: 7.5vw 0 15vw 0;
  }
}
#section07 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#section07 .base_text {
  text-align: center;
  line-height: 180%;
  margin-top: 5em;
}

@media screen and (max-width: 800px) {
  #section07 .base_text {
    margin-top: 3em;
  }
}
#section07 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#section07 ul li {
  width: 21.8%;
}

@media screen and (max-width: 800px) {
  #section07 ul li {
    width: 100%;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 800px) {
  #section07 ul li:last-child {
    margin-bottom: 0;
  }
}
#section07 ul li figure {
  width: 100%;
}

#section07 ul li figure {
  width: 100%;
  position: relative;
}

#section07 ul li figure div.inimg {
  position: relative;
}

#section07 ul li figure figcaption {
  position: absolute;
  line-height: 110%;
  bottom: 8px;
  right: 8px;
  color: #fff;
}

#section07 ul li figure figcaption.black {
  color: #000;
}

#section07 ul li .namses {
  text-align: center;
  padding: 0.85em 0 0.95em 0;
}

#section07 ul li .bases {
  text-align: center;
  line-height: 160%;
}

#section07 ul li .goldsbus {
  text-align: center;
  padding: 0.45em 0 0.55em 0;
  background: linear-gradient(90deg, rgb(255, 248, 194) 0%, rgb(248, 238, 176) 4.8%, rgb(231, 213, 128) 14.46%, rgb(203, 173, 52) 27.97%, rgb(191, 156, 20) 33.33%, rgb(209, 183, 71) 38.85%, rgb(255, 250, 198) 51.35%, rgb(253, 246, 193) 80.75%, rgb(252, 244, 190) 89.67%);
  margin-top: 1em;
  color: #000;
  font-weight: 500;
}

#section08 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 70px 0 50px 0;
  position: relative;
  z-index: 2;
  background: url(../../img/specialroom/sec03_back_pc.jpg) no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 800px) {
  #section08 {
    padding: 7.5vw 0 5vw 0;
    background: url(../../img/specialroom/sec03_back_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section08 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#section08 .midashi {
  text-align: center;
}

#section08 .midashi .imgttl {
  width: 100%;
  max-width: 425px;
  margin: 0 auto 35px auto;
}

@media screen and (max-width: 800px) {
  #section08 .midashi .imgttl {
    margin: 0 auto 20px auto;
  }
}
#section08 .midashi .jpn {
  text-align: center;
  margin-bottom: 0.65em;
}

#section08 .midashi .jpn1 {
  text-align: center;
  margin-bottom: 1em;
}

#section08 .midashi .base_text {
  text-align: center;
  line-height: 180%;
}

#section08 .midashi .minis {
  text-align: center;
}

#section09 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 50px 0 100px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #section09 {
    padding: 7.5vw 0 15vw 0;
  }
}
#section09 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#section09 .base_text {
  text-align: center;
  line-height: 180%;
  margin-top: 5em;
}

@media screen and (max-width: 800px) {
  #section09 .base_text {
    margin-top: 3em;
  }
}
#section09 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#section09 ul li {
  width: 21.8%;
}

@media screen and (max-width: 800px) {
  #section09 ul li {
    width: 100%;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 800px) {
  #section09 ul li:last-child {
    margin-bottom: 0;
  }
}
#section09 ul li figure {
  width: 100%;
}

#section09 ul li figure {
  width: 100%;
  position: relative;
}

#section09 ul li figure div.inimg {
  position: relative;
}

#section09 ul li figure figcaption {
  position: absolute;
  line-height: 110%;
  bottom: 8px;
  right: 8px;
  color: #fff;
}

#section09 ul li figure figcaption.black {
  color: #000;
}

#section09 ul li .namses {
  text-align: center;
  padding: 0.85em 0 0.95em 0;
}

#section09 ul li .bases {
  text-align: center;
  line-height: 160%;
}

#section09 ul li .goldsbus {
  text-align: center;
  padding: 0.45em 0 0.55em 0;
  background: linear-gradient(90deg, rgb(255, 248, 194) 0%, rgb(248, 238, 176) 4.8%, rgb(231, 213, 128) 14.46%, rgb(203, 173, 52) 27.97%, rgb(191, 156, 20) 33.33%, rgb(209, 183, 71) 38.85%, rgb(255, 250, 198) 51.35%, rgb(253, 246, 193) 80.75%, rgb(252, 244, 190) 89.67%);
  margin-top: 1em;
  color: #000;
  font-weight: 500;
}

#goldobi {
  width: 100%;
  text-align: center;
  padding: 0.85em 0 0.95em;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, rgb(251, 239, 191) 0%, rgb(219, 198, 154) 5%, rgb(181, 148, 109) 11.87%, rgb(153, 112, 76) 17.91%, rgb(135, 90, 56) 22.79%, rgb(129, 82, 49) 25.92%, rgb(131, 84, 51) 46.34%, rgb(136, 92, 58) 55.83%, rgb(146, 104, 69) 63.05%, rgb(159, 123, 85) 69.13%, rgb(177, 146, 107) 74.49%, rgb(199, 176, 133) 79.35%, rgb(224, 210, 163) 83.72%, rgb(250, 245, 195) 87.44%, rgb(247, 240, 190) 89.28%, rgb(237, 227, 175) 91.5%, rgb(221, 204, 151) 93.91%, rgb(199, 173, 117) 96.46%, rgb(170, 133, 74) 99.09%, rgb(159, 118, 57) 100%);
  position: relative;
  z-index: 2;
}

#section10 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 100px 0 0 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #section10 {
    padding: 7.5vw 0 0vw 0;
  }
}
#section10 .section__in {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}

#section10 .titles {
  text-align: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 0 auto;
  border: 1px solid #fff;
  padding: 0.45em 0 0.5em 0;
  margin-bottom: 80px;
}

@media screen and (max-width: 800px) {
  #section10 .titles {
    margin-bottom: 2em;
  }
}
#section10 .base_text {
  text-align: center;
  line-height: 180%;
  margin-top: 5em;
}

@media screen and (max-width: 800px) {
  #section10 .base_text {
    margin-top: 3em;
  }
}
#section10 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#section10 ul li {
  width: 25%;
}

@media screen and (max-width: 800px) {
  #section10 ul li {
    width: 100%;
    margin-bottom: 10vw;
  }
}
@media screen and (max-width: 800px) {
  #section10 ul li:last-child {
    margin-bottom: 0;
  }
}
#section10 ul li.wide {
  width: 30%;
}

@media screen and (max-width: 800px) {
  #section10 ul li.wide {
    width: 100%;
    margin-bottom: 10vw;
  }
}
#section10 ul li.wide figure {
  padding: 15% 0;
}

@media screen and (max-width: 800px) {
  #section10 ul li.wide figure {
    padding: 0% 0;
  }
}
#section10 ul li figure {
  width: 100%;
  position: relative;
}

#section10 ul li figure div.inimg {
  position: relative;
}

#section10 ul li figure figcaption {
  position: absolute;
  line-height: 110%;
  bottom: 8px;
  right: 8px;
  color: #fff;
}

#section10 ul li figure figcaption.black {
  color: #000;
}

#section10 ul li .namses {
  text-align: center;
  padding: 0.85em 0 0.95em 0;
}

#section10 ul li .bases {
  text-align: left;
  line-height: 160%;
}

#section11 {
  width: 100%;
  background-color: #00292c;
  color: #fff;
  padding: 100px 0 150px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #section11 {
    padding: 15vw 0 15vw 0;
  }
}
#section11 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#section11 .section__in .items {
  width: 47.5%;
}

@media screen and (max-width: 800px) {
  #section11 .section__in .items {
    width: 100%;
  }
}
#section11 .titles {
  text-align: center;
  width: 100%;
  margin: 0 auto 0 auto;
  border: 1px solid #fff;
  padding: 0.45em 0 0.5em 0;
  margin-bottom: 50px;
}

@media screen and (max-width: 800px) {
  #section11 .titles {
    margin-bottom: 2em;
  }
}
#section11 .base_text {
  text-align: center;
  line-height: 180%;
  margin-top: 5em;
}

@media screen and (max-width: 800px) {
  #section11 .base_text {
    margin-top: 3em;
  }
}
#section11 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#section11 ul li {
  width: 46%;
}

@media screen and (max-width: 800px) {
  #section11 ul li {
    width: 100%;
    margin-bottom: 10vw;
  }
}
#section11 ul li figure {
  width: 100%;
  position: relative;
}

#section11 ul li figure div.inimg {
  position: relative;
}

#section11 ul li figure figcaption {
  position: absolute;
  line-height: 110%;
  bottom: 8px;
  right: 8px;
  color: #fff;
}

#section11 ul li figure figcaption.black {
  color: #000;
}

#section11 ul li .namses {
  text-align: center;
  padding: 0.85em 0 0.95em 0;
}

#section11 ul li .namses span {
  font-size: 80%;
}

#section11 ul li .bases {
  text-align: left;
  line-height: 160%;
}

.bottomNotes {
  position: relative;
  z-index: 2;
}

footer {
  background-color: #fff;
}

.mmcens {
  padding: 0.5em 73px 0 73px;
  text-align: right;
}

@media screen and (max-width: 800px) {
  .mmcens {
    padding: 0.5em 0.5em 0 0px;
  }
}
sup {
  vertical-align: 0em;
  font-size: 75%;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

#section_atens2 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#section_atens2 {
  width: 100%;
  padding: 30px 0;
  background-color: #00292c;
  color: #fff;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 2;
}

#section_atens2 .base_text {
  line-height: 160%;
}

.f11res {
  font-size: 11px;
  line-height: 125%;
}

@media screen and (max-width: 800px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .sam_waku {
    width: 90%;
    margin: 0 auto;
  }
  #section_atens2 {
    padding: 1.5em 0;
  }
  .f11res {
    font-size: 2.3vw;
  }
} /*# sourceMappingURL=specialroom.css.map */</pre></body></html>