@charset "utf-8";

/*** The new CSS reset - version 1.8.4 (last updated 14.2.2023) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

a,
button {
  cursor: revert;
}

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

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* mycss */

:root,
::after,
::before {
}

body.myloding {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

html,
body {
  scroll-padding-top: 60px;
}

body {
  padding: 0;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.06rem;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
}

h2 {
  margin: 0 auto;
  text-align: center;
  color: #00bcd4;
  font-weight: normal;
  letter-spacing: 0.2rem;
  font-family: "DM Serif Display";
  font-size: 2.5em;
}

#loading {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

div#header {
  background: #fff;
  /* position: sticky; */
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 9999;
  height: 60px;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

.header_line a {
  padding: 0.2rem 0.5rem 0.3rem;
  font-size: 0.8rem;
  display: block;
  background: #52bb6a;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  min-width: 120px;
}

.header_line {
  display: flex;
  align-items: center;
  height: 100%;
}

.header_r {
  display: flex;
  gap: 15px;
}

div#menu_btn {
  display: flex;
  align-items: center;
}

#menu_btn button {
  display: block;
  cursor: pointer;
  border: none;
  background: #000;
  padding: 7px 6px;
  border-radius: 5px;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

i {
  padding: 0 0.25rem;
}

.hamburger {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-3 -6 24 24"><path fill="%23FFFFFF" d="M0 12h18v-2H0v2M0 7h18V5H0v2M0 0v2h18V0H0"/></svg>')
    no-repeat transparent center center/35px 30px;
  width: 20px;
  height: 20px;
  border: none;
  display: block;
}

.letter {
  display: inline-block;
}

.main {
  background: #fffcf5;
}

.contwrap {
  max-width: 1000px;
  margin: 0 auto;
}

.txt_cont {
  padding: 1.5rem 0;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
}

.txt_cont p {
  text-align: center;
  margin: 0 auto 1rem;
}

.miyakojima {
  background: #fff;
  text-align: center;
  padding: 20px 0;
}

.koukuken {
  background: #fff;
  text-align: center;
  padding: 0 0 1.5rem;
}

.koukuken img {
  max-width: 800px;
  width: 100%;
  height: auto;
}

.jikyuu {
  max-width: 800px;
  margin: auto;
}

.scroll {
  font-size: 1rem;
  position: absolute;
  color: #fff;
  bottom: 25%;
  left: 44%;
}

.scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  right: 55%;
  bottom: -80px;
  transform: translateX(-50%);
  width: 2px;
  height: 90px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.top_nav_wrap_movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_nav_wrap {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: -10;
  margin-bottom: 10svh;
  overflow: hidden;
}

.top_nav {
  height: 100vh;
  height: 100svh;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.top_nav_wrap1 .top_nav {
  background-image: url(../img/top.png);
  transform: scale(2);
}

.top_nav_wrap2 .top_nav {
  background-image: url(../img/img2.jpg);
}

.top_nav_wrap3 .top_nav {
  background-image: url(../img/img14.jpg);
}

.top_nav_wrap4 .top_nav {
  background-image: url(../img/img11.jpg);
}

.top_nav_desc_w {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  max-width: 900px;
  margin: auto;
}

.top_nav_wrap1 .top_nav_desc_w {
  align-items: center;
}

.top_nav_wrap2 .top_nav_desc {
  padding-right: 20px;
}

.top_nav_wrap2 .top_nav_desc_w {
  padding-top: 15%;
  justify-content: flex-end;
}

.top_nav_wrap3 .top_nav_desc_w {
  padding-top: 17%;
}

.top_nav_wrap3 .top_nav_desc {
  padding-left: 20px;
}

.top_nav_wrap4 .top_nav_desc {
  padding-right: 20px;
}

.top_nav_wrap4 .top_nav_desc_w {
  justify-content: flex-end;
  padding-top: 20%;
}

.top_logo {
  width: 70%;
}

.top_nav_desc_c {
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
}

.top_nav_desc_c_txt {
  margin-top: 20px;
  font-size: 0.85rem;
  background: #6de5e140;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 13px;
  color: #ffffff;
  line-height: 1.8;
  font-weight: 300;
}

.top_nav_desc_n_in {
  padding-left: 20px;
}

.photos {
  padding: 5em 0 5em;
}

.psec_wrap {
  padding: 5em 1.5em;
}

.line.psec_wrap {
  padding: 0 0 1.5rem;
  background: #fff;
  text-align: center;
}

.line_desc {
  background: #fdf2dc;
  color: #6f4b25;
  padding: 0.5rem 0;
  margin-bottom: 0.8rem;
}

.line.psec_wrap img {
  width: 90%;
  max-width: 600px;
  animation: linebtn 2s infinite;
}

@keyframes linebtn {
  0% {
    transform: translate(2px, 0px);
  }

  5% {
    transform: translate(-2px, 0px);
  }

  10% {
    transform: translate(2px, 0px);
  }

  15% {
    transform: translate(-2px, 0px);
  }

  20% {
    transform: translate(2px, 0px);
  }

  25% {
    transform: translate(-2px, 0px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}

.gimg_w {
  display: flex;
  flex-wrap: wrap;
  /* margin: 10px 0; */
}

.gimg_a {
  width: 33.333333%;
}

.gimg_a img {
  width: 100%;
  height: auto;
}

.evwh {
  position: relative;
}

.evwh > img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  height: 0;
  max-height: 100%;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  width: 0;
  margin: auto;
  padding: 0 !important;
  border: none !important;
  object-fit: cover;
}

.evwh23 > .sizer {
  padding-top: 66.6667%;
}

.evwh > .sizer {
  display: block;
}

.photos_adesc {
  writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.psec {
  max-width: 1000px;
  margin: auto;
}

.txt_c {
  text-align: center;
}

#tokuten .psec {
  max-width: 1200px;
}

.ryo_desc_ttl {
  text-align: center;
  font-weight: 600;
  color: #4f4f4f;
  letter-spacing: 0.2rem;
  font-size: 1.2em;
  padding: 0.5rem 0;
}

.ryo_img {
  padding: 1em 0 0;
}

/*
.g_wrap {
    padding-left: 60px;
    position: relative;
}
*/
.tokuten_c {
  background: #fff;
  box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.tokuten_c_ttl {
  color: #42c0c7;
  text-align: center;
  width: 85%;
  margin: 0.5rem auto;
  padding: 0.25rem 0;
  font-weight: 600;
  font-size: 1.1em;
  background: #fffbda;
  border-radius: 20px;
}

.tokuten_c_b {
  padding: 10px;
  text-align: center;
  background: #ddd;
  margin-top: 10px;
  font-weight: bold;
}

.main2 {
  position: relative;
  background: #fff;
  padding-top: 50px;
}

.main2::before {
  content: "";
  background: #fff;
  /*position: absolute;*/
  /* z-index: -1; */
}

.info_w {
  position: relative;
  /* margin-top: -250px; */
  /* left: 0; */
  /* right: 0; */
}

.main1 {
  /* padding-bottom: 250px; */
}

.info_img {
  margin: auto;
}

.info_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info_ttl {
  position: absolute;
  top: -1.2em;
  left: 1em;
  right: 0;
  max-width: 90vw;
  margin: auto;
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
  z-index: 2;
}

.shop_oinfo a {
  display: block;
}

dl.shop_o_c {
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #b4b4b4;
}

dl.shop_o_c:last-child {
  border: none;
}

.shop_o_t {
  font-weight: 600;
  color: #50d2dc;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1rem;
  width: 100%;
}

dt.shop_o_t {
  text-align: left;
}

.shop_o_d {
  padding: 0;
  margin: 0;
}

.shop_o_d p {
  margin: 0;
  padding: 0 0 1rem 0.5rem;
}
.shop_o_d a {
  display: inline-block;
  font-size: 0.85rem;
  color: #fff;
  background: #59cdd9;
  padding: 0 0.5rem;
  margin-left: 0.7rem;
  line-height: 1.6;
  border-radius: 2.5rem;
  text-decoration: none;
}

.shop_infos a {
  display: block;
  text-decoration: none;
  text-align: center;
}

.shop_infos span {
  color: #4b4b4b;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.shop_infos {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
  width: 90%;
  gap: 20px;
}

.info_dg {
  border-top: 1px dotted #bbbbbb;
  margin-top: 0.5rem;
  text-align: center;
}

.info_d img,
.info_dg img {
  max-width: 100%;
  height: auto;
}

.info_d p,
.info_dg p {
  padding: 5px 6px 6px;
  margin: 20px 0 5px;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  border-radius: 25px;
  background: #ffffed;
}

.info_dg .caution {
  padding: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #ef6060;
}

#faq {
  background: #f5fffb;
}

#faq .psec {
  max-width: 800px;
  padding: 3rem 1.5rem;
}

.faq_desc p {
  margin: 0;
}

.faq_cc {
  display: flex;
  align-items: flex-start;
}

.faq_w {
  margin-top: 1rem;
}

.faq_cc_label {
  padding: 0px 10px 1px;
  background: #42bcd4;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 20px;
  margin-right: 20px;
  text-align: center;
}

.faq_cq_desc {
  display: flex;
  align-items: center;
  color: #1e96ad;
}

.faq_cq_desc {
  font-weight: bold;
}

.faq_c {
  padding-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #a1d3d1;
}

.faq_cc.faq_cq {
  margin-bottom: 10px;
}

.faq_w .faq_c:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#footer {
  background: #f5f2ec;
  padding-bottom: 2rem;
}

.footer_acc {
  padding: 20px;
  max-width: 1200px;
  text-align: center;
  margin: auto;
}

.shop_desc_ttl {
  text-align: center;
  font-weight: 600;
  color: #4f4f4f;
  letter-spacing: 0.2rem;
  font-size: 1.2em;
  padding: 0.5rem 0;
}

.shop_info_w .shop_info_cw:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.shop_info_cw {
  /* border-bottom: solid 1px #333; */
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.link_btn a {
  display: inline-block;
  text-decoration: none;
  padding: 0.2rem 1.5rem 0.3rem;
  text-align: center;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #333;
  border: 1px solid #333;
  margin: 0.5rem 0.5rem 1rem;
}

.g_wrap .link_btn {
  text-align: center;
}

.shop_info_ttl {
  font-weight: bold;
  text-align: center;
  max-width: 440px;
  font-size: 1.2em;
  color: #fff;
  padding: 0.3rem 0;
  margin: 0 auto;
  border-radius: 15px 15px 0 0;
  background: #79c6d5;
}

.shop_info {
  text-align: left;
  max-width: 440px;
  margin: 0 auto;
  /* border: solid 1px #333; */
  padding: 10px;
  background: #fff;
}

.shop_info img {
  padding-bottom: 0.5rem;
}

.shop_info span {
  display: block;
  font-size: 0.9em;
  padding: 0.3rem;
  margin-bottom: 0.3rem;
  background: #d9f3f2;
  color: #2aa8c1;
  font-weight: bold;
}

.h2_desc {
  margin-bottom: 15px;
}

.gmap_u::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.gmap_u {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 10px auto 30px;
}

.gmap_u iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

#side_nav {
  color: var(--side-nav-color, #000);
  background: var(--side-nav-bg-color, #fff);
}

#side_nav ul {
  margin: 0;
  padding: 0;
}

#side_nav li a {
  border-bottom: 1px solid var(--side-nav-border-color, #dadada);
  color: var(--side-nav-color, #000);
  text-decoration: none;
  padding: 14px 0 14px 9px;
  display: block;
}

#side_nav nav {
  min-width: 210px;
  font-size: 14px;
}

.contact {
  text-align: center;
  margin: 1rem auto;
}

.contact p {
  background: #ffe4f1;
  border-radius: 1.5rem;
  color: #ff6394;
  max-width: 90%;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  margin: 0 auto 1rem;
}

.contact span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.contact a:nth-of-type(1) {
  color: #44c367;
}

.contact a:nth-of-type(2) {
  color: #414141;
}

.contact a:nth-of-type(3) {
  color: #51c0f7;
}

.m_company {
  font-size: 0.8rem;
  text-align: left;
  line-height: 1.5;
  padding: 0.75rem;
  margin: 2rem auto 0;
  width: 90%;
  background: #fbf9f1;
}

.m_company a {
  color: #3d95f3;
}

.m_company span {
  display: inline-block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

body,
html {
  height: auto !important;
}

html {
  overflow-x: hidden !important;
}

.sc_dis {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

.go_link {
  /* margin-top: -60px; */
  /* padding-top: 60px; */
  /* pointer-events: none; */
  /* visibility: hidden; */
}

.evo_side {
  display: block;
  position: fixed !important;
  top: 0;
  max-height: 100vh !important;
  height: 100vh;
  max-width: 80vw;
  background-color: #efefef;
  min-width: 250px !important;
  outline: none;
  z-index: 2147483647;
  will-change: transform;
  overflow-y: scroll;
}

.evo_side[side="right"] {
  right: 0 !important;
  -webkit-transform: translateX(100%) !important;
  transform: translateX(100%) !important;
}

.evo_side[side] {
  -webkit-transition: -webkit-transform 233ms cubic-bezier(0, 0, 0.21, 1);
  transition: -webkit-transform 233ms cubic-bezier(0, 0, 0.21, 1);
  transition: transform 233ms cubic-bezier(0, 0, 0.21, 1);
  transition: transform 233ms cubic-bezier(0, 0, 0.21, 1),
    -webkit-transform 233ms cubic-bezier(0, 0, 0.21, 1);
}

.evo_side[side][open] {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

.sb_mask {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  opacity: 0.2;
  background-image: none !important;
  background-color: #000;
  z-index: 2147483646;
}

.shop_oinfo_ttl {
  font-size: 30px;
  margin-bottom: 15px;
}

footer {
  line-height: 1;
  padding: 15px 0;
  background-color: #333;
  /* line-height: 1; */
}

footer p {
  padding: 0;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 0.7rem;
  margin: 0;
}

.top_nav_wrap_movie > div {
  width: 100vw;
  height: 100vh;
}

.company {
  color: #575250;
  width: 90%;
  margin: 0 auto;
  padding: 1rem 1.5rem 1.25rem;
  background: #ffffff;
}

.company h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  margin: 0 0 1rem;
}

.company a {
  color: #45a6c0;
  font-weight: 600;
}

.company p {
  margin: 0.5rem auto 0;
}

.lp_link {
  text-align: center;
  margin: 2rem auto 3rem;
  padding: 1rem 0;
  background: linear-gradient(#fffae9, #effdff);
  box-shadow: 0px 0px 5px #e5d8ce;
}

.lp_link > a {
  display: block;
  width: 80%;
  max-width: 400px;
  padding: 0 0.5rem 0.25rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 0 5px #e5d8ce;
}

.lp_link span {
  color: #ff80b3;
  font-size: 1rem;
}

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

  .sp {
    display: none;
  }

  .ryo_w {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: row-reverse; */
  }

  .ryo_desc {
    width: 50%;
    padding: 10px 20px;
    margin: 0;
  }

  .ryo_img {
    width: 50%;
  }

  .ryo_img img {
    width: 100%;
    height: auto;
  }

  .tokuten_w {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .tokuten_c {
    width: calc(50% - 15px);
  }

  .shop_ow {
    max-width: 1000px;
    padding: 30px 15px 40px;
    margin: auto;
  }

  .shop_o {
    max-width: 80%;
    margin: 0 auto;
  }

  .shop_o_c {
    display: flex;
  }

  .shop_o_c dt.shop_o_t {
    width: 25%;
  }

  .shop_o_d {
    width: 75%;
  }

  /*
    .g_wrap {
        padding-left: 80px;
    }
    */

  .photos_adesc {
    width: 80px;
  }

  .info_img {
    width: 600px;
  }

  .main2::before {
    top: 250px;
  }

  .faq_cc {
    display: flex;
  }

  .shop_info_w {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .shop_info_cw {
    width: calc(50% - 10px);
  }

  .shop_infos .info_d {
    flex: 1;
  }

  .shop_infos .info_dg {
    width: 100%;
  }

  .info_dg .banline {
    width: 500px;
    margin: 0 auto;
  }

  .top_nav_desc_c_txt {
    max-width: 80%;
  }

  .scroll {
    bottom: 20%;
  }
}

@media (min-width: 1000px) {
  .gimg_a {
    width: 20%;
  }

  .shop_info_w {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .shop_info_cw {
    width: calc(50% - 20px);
  }
}

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

  .sp {
    display: block;
  }

  .psec p,
  .photos_desc p {
    margin: 0 auto;
  }

  .tokuten_desc p {
    margin: 0 0 15px;
  }

  .tokuten_w .tokuten_c:last-child {
    margin-bottom: 0;
  }

  .tokuten_c {
    margin-bottom: 30px;
  }

  .tokuten_w .tokuten_c:nth-child(odd) {
    /* margin-left: -15px; */
    /* margin-right: 20px; */
  }

  .tokuten_w .tokuten_c:nth-child(even) {
    /* margin-right: -15px; */
    /* margin-left: 20px; */
  }

  .shop_ow {
    padding-bottom: 10px;
  }

  .psec_wrap {
    padding: 2em 1.5em;
  }

  .photos {
    padding: 2.5em 0 1.5em;
  }

  .top_nav_wrap2 .top_nav_desc_w {
    padding-top: 30%;
  }

  .top_nav_wrap3 .top_nav_desc_w {
    padding-top: 35%;
  }

  .top_nav_wrap4 .top_nav_desc_w {
    justify-content: flex-end;
    padding-top: 40%;
  }

  dl.shop_o_c {
    margin: 0 0 15px;
    padding-bottom: 15px;
  }

  .shop_o {
    margin: 15px 20px;
  }

  .faq_cc_label {
    margin-bottom: 5px;
  }
}
