@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;
}

img {
  width: 100%;
}

.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共通ここまで***/
@media screen and (max-width: 800px) {
  .f20res {
    font-size: 4vw;
  }
  .f18res {
    font-size: 5vw;
  }
  .f22res {
    font-size: 5vw;
  }
  .f16res {
    font-size: 3.9vw;
  }
  .f14res {
    font-size: 4.2vw;
  }
}
figure.img {
  position: relative;
  top: 0;
  left: 0;
}
figure.img .img_caption {
  position: absolute;
  bottom: 4px;
  right: 4px;
  color: #fff;
}
@media screen and (max-width: 800px) {
  figure.img .img_caption {
    right: 4%;
    bottom: 6%;
    width: 91%;
    text-align: right;
  }
}

#section01 {
  width: 100%;
  padding: 0;
  background-color: #dedbd8;
  position: relative;
  top: 0;
  left: 0;
  color: #fff;
}
@media screen and (max-width: 800px) {
  #section01 {
    padding: 0;
  }
}
#section01 .section__in {
  width: 90%;
  max-width: 930px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 800px) {
  #section01 .img .img_caption {
    text-align: left;
  }
}
#section01 .titles {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
#section01 h1 {
  text-align: center;
}
#section01 h1 .eng {
  text-align: center;
  margin-bottom: 0.6em;
}
#section01 h1 .jpn {
  text-align: center;
  margin-bottom: 1em;
}
#section01 .base_text {
  text-align: center;
}

#section02 {
  width: 100%;
  padding: 84px 0 120px;
  background: repeat top/80% auto url(../images/smartlife/bg_pc.jpg);
}
@media screen and (max-width: 800px) {
  #section02 {
    padding: 56px 0 0px;
    background: repeat top/100% auto url(../images/smartlife/bg_pc.jpg);
  }
}
#section02 .intro_text {
  margin: 0 auto 38px;
  max-width: 1000px;
  width: 89%;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #section02 .intro_text .intro_top {
    font-size: 3.8vw;
  }
}
#section02 .intro_text .intro_label {
  text-align: center;
  line-height: 1em;
}
#section02 .intro_text .intro_label span {
  display: inline-block;
  padding: 10px 20px;
  background-color: #a74647;
  color: #fff;
}
#section02 .intro_text .intro--large {
  margin-top: 11px;
}
#section02 .intro_text .intro--large span {
  display: inline-block;
  font-size: 70%;
}
#section02 .intro_text .intro--text {
  margin-top: 28px;
}
@media screen and (max-width: 800px) {
  #section02 .intro_text .intro--text {
    font-size: 3.6vw;
  }
}
#section02 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 800px) {
  #section02 .section__in.section__in--sp {
    width: 100%;
  }
}
#section02 .block_nav {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 80px;
  width: 97%;
}
@media screen and (max-width: 800px) {
  #section02 .block_nav {
    justify-content: space-between;
    margin-top: 50px;
  }
}
#section02 .block_nav li {
  /*
  cursor: pointer;
  */
  color: #fff;
  text-align: center;
  padding: 12px 100px 12px;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 800px) {
  #section02 .block_nav li {
    width: 49%;
    padding: 3vw 2vw;
    font-size: 3.2vw;
  }
}
#section02 .block_nav li:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 800px) {
  #section02 .block_nav li:first-child {
    margin-right: 0;
  }
}
#section02 .block_nav li span {
  opacity: 0.85;
}
#section02 .block_nav li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
#section02 .block_nav li.nav01 {
  background-color: #00292c;
}
#section02 .block_nav li.nav02 {
  background-color: #000000;
}
#section02 .block_nav li.active span {
  opacity: 1;
}
#section02 .block {
  /*display: none;*/
  opacity: 0;
  height: 0;
  overflow: hidden;
}
#section02 .block.block--01 {
  border-top: 0px solid #00292c !important;
}
#section02 .block.block--02 {
  border-top: 0px solid #000 !important;
}
#section02 .block.block--active {
  /*display: block;*/
  height: auto;
  opacity: 1;
}
#section02 .block.block--active.block--01 {
  border-top: 12px solid #00292c !important;
}
#section02 .block.block--active.block--02 {
  border-top: 12px solid #000 !important;
}
#section02 .block .main_block {
  position: relative;
  top: 0;
  left: 0;
}
#section02 .block .main_block .main_img {
  position: relative;
  top: 0;
  left: 0;
}
#section02 .block .main_block .main_img figcaption {
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  position: absolute;
  bottom: 17px;
  right: 20px;
}
#section02 .block .main_block .nav_left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  width: 70px;
  cursor: pointer;
}
#section02 .block .main_block .nav_right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  width: 70px;
  cursor: pointer;
}
#section02 .block .nav_block {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
}
@media screen and (max-width: 800px) {
  #section02 .block .nav_block {
    display: block;
    margin-top: 0;
  }
}
#section02 .block .nav_block li {
  width: 16%;
}
@media screen and (max-width: 800px) {
  #section02 .block .nav_block li {
    width: 100%;
    margin-top: 30px;
  }
  #section02 .block .nav_block li:first-child {
    margin-top: 0;
  }
  #section02 .block .nav_block li figure {
    position: relative;
    top: 0;
    left: 0;
  }
  #section02 .block .nav_block li figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 4px 20px;
    background-color: #9e9e9f;
    width: 100%;
    mix-blend-mode: hard-light;
  }
}
#section02 .block .text--note {
  margin-top: 16px;
}
@media screen and (max-width: 800px) {
  #section02 .block .text--note {
    margin-top: 20px;
    padding: 0 5%;
  }
}
#section02 .block.block--01 {
  border-top: 12px solid #00292c;
}
#section02 .block.block--02 {
  border-top: 12px solid #000;
}
#section02 .block_bottom {
  margin-top: 88px;
}
#section02 .block_bottom .block_title {
  text-align: center;
  margin-bottom: 1em;
}
#section02 .block_bottom .block_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  #section02 .block_bottom .block_wrap {
    display: block;
  }
}
#section02 .block_bottom .block_wrap .content_left {
  width: 44%;
}
@media screen and (max-width: 800px) {
  #section02 .block_bottom .block_wrap .content_left {
    width: 100%;
  }
}
#section02 .block_bottom .block_wrap .content_right {
  width: 54.5%;
}
@media screen and (max-width: 800px) {
  #section02 .block_bottom .block_wrap .content_right {
    width: 100%;
    margin-top: 27px;
  }
}
#section02 .block_bottom .top_block {
  margin-top: 33px;
}
#section02 .block_bottom .bottom_block {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  #section02 .block_bottom .bottom_block {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 15px;
  }
  #section02 .block_bottom .bottom_block .content_right {
    margin-top: 0;
  }
  #section02 .block_bottom .bottom_block .content_left {
    margin-top: 27px;
  }
}
#section02 .btn--google {
  text-align: center;
  margin-top: 98px;
}
@media screen and (max-width: 800px) {
  #section02 .btn--google {
    margin-top: 50px;
  }
}
#section02 .btn--google a {
  display: inline-block;
  padding: 20px 46px;
  color: #fff;
  background-color: #c1272d;
}

/**************************************/
/*******************/
.slider {
  padding: 0 0px;
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .slider {
    padding: 0 0px;
  }
}

.slider-area {
  overflow: hidden;
  max-width: 1040px;
  width: 100%;
  margin: auto;
}
.slider-area img {
  max-width: 100%;
  display: block;
  height: auto;
}

.thumnail .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  .thumnail .slick-track {
    justify-content: center !important;
  }
}

.slider-item {
  position: relative;
  padding: 0 0px;
}
.slider-item figure {
  position: relative;
}
.slider-item figure figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .slider-item figure figcaption {
    font-size: 2.75vw;
    bottom: 6px;
    right: 6px;
    line-height: 100%;
  }
}
.slider-item figure figcaption.text02 {
  right: 51%;
}
.slider-item figure figcaption.text03 {
  right: 26%;
}

.thumnail .slick-slide {
  display: block !important;
  float: none !important;
  flex: 0 0 16.66%;
  padding: 0 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .thumnail .slick-slide {
    flex: 0 0 23.9%;
    padding: 0 4px;
    margin-bottom: 2.25vw;
  }
}
.thumnail .slick-slide:hover {
  cursor: pointer;
}
.thumnail .slick-slide.slick-current figure {
  position: relative;
}
.thumnail .slick-slide.slick-current figure::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 800px) {
  .thumnail .slick-slide:nth-child(1) {
    margin-left: 12%;
  }
}
@media screen and (max-width: 800px) {
  .thumnail .slick-slide:nth-child(3) {
    margin-right: 12%;
  }
}

.prev2 {
  width: 50px;
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 15;
  transition: all 0.4s ease-out 0.01s;
}
@media screen and (max-width: 800px) {
  .prev2 {
    width: 7.5vw;
    position: absolute;
    top: 50%;
    left: 2.5vw;
    z-index: 15;
    transition: all 0.4s ease-out 0.01s;
  }
}
.prev2 img {
  width: 100%;
}
.prev2:hover {
  cursor: pointer;
  opacity: 0.7;
}

.next2 {
  width: 50px;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 15;
  transition: all 0.4s ease-out 0.01s;
}
@media screen and (max-width: 800px) {
  .next2 {
    width: 7.5vw;
    position: absolute;
    top: 50%;
    right: 2.5vw;
    z-index: 15;
    transition: all 0.4s ease-out 0.01s;
  }
}
.next2 img {
  width: 100%;
}
.next2:hover {
  cursor: pointer;
  opacity: 0.7;
}

/************************/
.slider_sp {
  width: 100%;
  display: none;
}
@media screen and (max-width: 800px) {
  .slider_sp {
    display: block;
  }
}
.slider_sp .slider-item_sp {
  position: relative;
  padding: 0 0px;
  margin-bottom: 2.5vw;
}
.slider_sp .slider-item_sp figure {
  position: relative;
}
.slider_sp .slider-item_sp figure figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .slider_sp .slider-item_sp figure figcaption {
    font-size: 2.75vw;
    bottom: 6px;
    right: 6px;
    line-height: 100%;
  }
}
.slider_sp .slider-item_sp figure figcaption.text02 {
  right: 51%;
}
.slider_sp .slider-item_sp figure figcaption.text03 {
  right: 26%;
}

.slider2 {
  padding: 0 0px;
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .slider2 {
    padding: 0 0px;
  }
}

.slider-area2 {
  overflow: hidden;
  max-width: 1040px;
  width: 100%;
  margin: auto;
}
.slider-area2 img {
  max-width: 100%;
  display: block;
  height: auto;
}

.thumnail2 .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  .thumnail2 .slick-track {
    justify-content: center !important;
  }
}
.thumnail2 .slick-slide {
  display: block !important;
  float: none !important;
  flex: 0 0 16.66%;
  padding: 0 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .thumnail2 .slick-slide {
    flex: 0 0 23.9%;
    padding: 0 4px;
    margin-bottom: 2.25vw;
  }
}
.thumnail2 .slick-slide:hover {
  cursor: pointer;
}
.thumnail2 .slick-slide.slick-current figure {
  position: relative;
}
.thumnail2 .slick-slide.slick-current figure::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 800px) {
  .thumnail2 .slick-slide:nth-child(1) {
    margin-left: 12%;
  }
}
@media screen and (max-width: 800px) {
  .thumnail2 .slick-slide:nth-child(3) {
    margin-right: 12%;
  }
}

/************************/
.map03 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 35px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .map03 {
    margin-bottom: 5vw;
  }
}
.map03 .left {
  width: 59.45%;
}
@media screen and (max-width: 800px) {
  .map03 .left {
    width: 100%;
    margin-bottom: 5vw;
  }
}
.map03 .right {
  width: 38.1%;
}
@media screen and (max-width: 800px) {
  .map03 .right {
    width: 100%;
  }
}

.map04 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 75px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.map04.sp-block {
  display: none;
}
@media screen and (max-width: 800px) {
  .map04 {
    margin-bottom: 5vw;
    flex-direction: column-reverse;
  }
  .map04.sp-block {
    display: block;
  }
}
.map04 .left {
  width: 51.8%;
}
@media screen and (max-width: 800px) {
  .map04 .left {
    width: 100%;
    order: 2;
    margin-bottom: 5vw;
  }
}
.map04 .right {
  width: 45.6%;
}
@media screen and (max-width: 800px) {
  .map04 .right {
    width: 100%;
    order: 1;
  }
}

.bt_google2 {
  text-align: center;
  margin-top: 50px;
}

.botanmap2 {
  display: block;
  width: 90%;
  max-width: 280px;
  margin: 0 auto 50px auto;
  padding: 1.25em 0 1.3em 0;
  background-color: #c1272d;
  text-align: center;
  color: #fff !important;
}/*# sourceMappingURL=modelroom.css.map */