@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500&family=M+PLUS+Rounded+1c:wght@300&family=Poppins:wght@400;500&display=swap');

/* ----------------------------------------------------------
 base css / responsive sSettings
---------------------------------------------------------- */
html {
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size : 16px;
  font-weight: 300;
  line-height: 1.75em;
}
main {
  height: 100%;
  overflow-x: hidden;
}
p {
  line-height: 2em;
}

@media print, screen and (min-width : 767px) { /* PC */
  body {
    min-width: 1260px;
  }
  .pcoff {
    display: none !important;
  }
  .wrap {
    width: 85%;
    min-width: 1000px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  html,p {
    font-size: 4.5vw;
    line-height: 1.75em;
  }
  .smpoff {
    display: none !important;
  }
  .spwrap {
    width: 90%;
    margin: 0 auto;
  }
}


/* ----------------------------------------------------------
 opening
---------------------------------------------------------- */
.start {
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.start img {
  width: 30vw;
  max-width: 700px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .start img {
    width: 60vw;
  }
}


/* ----------------------------------------------------------
 header
---------------------------------------------------------- */
header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  background: #ffffff;
}
header nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header nav ul li {
  position: relative;
}
header nav ul li:before {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  background: #000000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header nav ul li:nth-child(1) {
  width: 22rem;
  margin-right: auto;
}
header nav ul li:nth-child(1) a {
  display: block;
  padding: 1.25rem 2rem;
}
header nav ul li:nth-child(1) a img {
  width: 100%;
  height: auto;
}
header nav ul li:nth-child(1):before,
header nav ul li:nth-child(2):before {
  content: none;
}
header nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.75em;
  transition: .3s;
}
header nav ul li a:hover {
  opacity: .5;
  transition: .3s;
}
header nav ul li a span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* Modal Window */
header nav ul li:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  font-size: 0.85rem;
  line-height: 2em;
  cursor: pointer;
  padding: 0 1rem;
  transition: .3s;
}
header nav ul li:last-child:hover {
  background: #555;
  transition: .3s;
}
header nav ul li:last-child span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: auto;
  background-color: #fff;
  z-index: 10001;
}
.div_reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}
.div_reserve h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height: 0.75em;
  margin-bottom: 0.5em;
  text-align: center;
}
.div_reserve h2 span {
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  background: linear-gradient(transparent 60%, #FAF18A 60%);
}
.div_reserve dl.out_dl {
  width: 80%;
  margin: 1rem auto;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border-bottom: 0;
}
.div_reserve dl.out_dl > dt {
  width: 25%;
  background: #efefef;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
.div_reserve dl.out_dl > dd {
  width: 75%;
  background: #fff;
  padding: 0.25rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.div_reserve dl.out_dl > dd p {
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.5em;
  margin-bottom: 0.25rem;
}
.div_reserve dl.in_dl {
  width: 80%;
  margin-bottom: 0.25rem;
}
.div_reserve dl.in_dl dt {
  width: 100%;
  font-weight: 500;
  background: linear-gradient(transparent 60%, #FAF18A 60%);
}
.div_reserve dl.in_dl dd {
  width: 100%;
  padding-left: 1em;
  margin-bottom: 0.25rem;
}
.div_reserve p.tel a {
  font-size: 1.75rem;
  font-weight: 500;
  margin-left: 0.5em;
}
.div_reserve p.web {
  margin: 1rem 0;
}
.div_reserve p.web a {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border: 1px solid #333;
  display: inline-flex;
  align-items: center;
  transition: .3s;
}
.div_reserve p.web a:hover {
  transition: .3s;
  background: #eeeeee;
}
.div_reserve p.web a:before {
  content: "";
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  margin-right: 0.75rem;
}
.div_reserve p.cancel a {
  border-bottom: 1px solid #333;
}
.div_reserve p.close {
  width: 100%;
  color: #fff;
  background: #000;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  cursor: pointer;
}
/*.div_reserve ul {
  width: 100%;
  color: #fff;
  background: #000;
  padding: 1.5rem 3rem;
  margin-top: 2rem;
}
.div_reserve ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.div_reserve ul li:before {
  content: "※";
  margin-right: 0.5rem;
}*/

@media only screen and (max-width: 768px) {
  .modal-window {
    top: 1rem;
    transform: translate(-50% , 0%);
  }
  .div_reserve {
    padding-top: 1rem;
  }
  .div_reserve h2 {
    font-size: 1.8rem;
    line-height: 0.8em;
    margin-bottom: 0.25rem;
  }
  .div_reserve h2 span {
    font-size: 3.5vw;
  }
  .div_reserve dl.out_dl {
    width: 85%;
    margin: 0.5rem auto 0 auto;
    font-size: 3.5vw;
    line-height: 1.75em;
    border: 0;
  }
  .div_reserve dl.out_dl > dt {
    width: 100%;
    padding: 0.25rem 0;
    text-align: center;
    border: 0;
    color: #fff;
    background: #000;
  }
  .div_reserve dl.out_dl > dd {
    width: 100%;
    padding: 0.25rem 0;
    text-align: center;
    border: 0;
  }
  .div_reserve dl.out_dl > dd p {
    font-size: 3.25vw;
  }
  .div_reserve dl.in_dl {
    width: 100%;
  }
  .div_reserve dl.in_dl dt {
    color: #000;
    border-bottom: 1px solid #000;
    background: none;
  }
  .div_reserve dl.in_dl dd {
    margin-bottom: 0.5rem;
  }
  .div_reserve p {
    font-size: 4vw;
    line-height: 1.75em;
  }
  .div_reserve p.tel {
    width: 85%;
    margin: 0.25rem auto 0.5rem auto;
    text-align: center;
  }
  .div_reserve p.tel a {
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border: 1px solid #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    margin: 0.5rem 0 0 0;
  }
  .div_reserve p.web {
    width: 85%;
    margin: 0 auto 0.5rem auto;
  }
  .div_reserve p.web a {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 4.5vw;
    justify-content: center;
  }
  .div_reserve .cancel {
    font-size: 3.5vw;
    line-height: 1.75em;
  }
  .div_reserve p.close {
    margin-top: 1rem;
  }
  .div_reserve ul {
    padding: 1rem;
    margin-top: 1rem;
  }
  .div_reserve ul li {
    font-size: 3.5vw;
    line-height: 1.75em;
  }
}



/* Gloval Nav
--------------------------------------------- */

@media only screen and (max-width: 768px) {
  header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header h1 {
    width: 45%;
    margin-right: auto;
  }
  header h1 a {
    display: block;
    padding: 0 0 0 0.75rem;
  }
  header h1 a img {
    width: 100%;
  }
  header button {
    height: 60px;
    color: #fff;
    background: #000;
    font-size: 3.5vw;
    padding: 0 1rem;
    border: 0;
  }
   header button span {
    display: block;
    font-size: 5vw;
   }
#nav-toggle {
  position: relative;
  top: 0;
  right: 0;
}
#nav-toggle div {
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #333333;
  position: relative;
  margin: 0;
  transition: 0.6s;
  text-align: center;
}
#nav-toggle div:hover {
  opacity: 1;
  transition: 0.6s;
}
#nav-toggle div span {
  display: block;
  width: 55%;
  height: 3px;
  position: absolute;
  left: 22.5%;
  background: #fff;
  transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle div span:nth-child(1) { top: 18px; }
#nav-toggle div span:nth-child(2) { top: 28px; }
#nav-toggle div span:nth-child(3) { top: 38px; }
#gloval-nav {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}
 #gloval-nav nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: rgba(00,00,00,0.9);
}
#gloval-nav nav h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 3rem;
}
#gloval-nav nav ul {
  list-style: none;
  width: 40%;
  background-color: transparent;
  border-left: 1px solid #ffffff;
  padding-left: 3rem;
}
#gloval-nav nav ul li {
  text-align: left;
  font-size: 1.25rem;
  width: 100%;
  margin: 0 2%;
  opacity: 0;
  transform: translateX(200px);
  transition:  transform .6s ease, opacity .2s ease;
}
#gloval-nav nav ul li:nth-child(1) { transition-delay: .15s; }
#gloval-nav nav ul li:nth-child(2) { transition-delay: .3s; }
#gloval-nav nav ul li:nth-child(3) { transition-delay: .45s; }
#gloval-nav nav ul li:nth-child(4) { transition-delay: .6s; }
#gloval-nav nav ul li:nth-child(5) { transition-delay: .75s; }
#gloval-nav nav ul li:nth-child(6) { transition-delay: .9s; }
#gloval-nav nav ul li:nth-child(7) { transition-delay: .105s; }
#gloval-nav nav ul li:nth-child(8) { transition-delay: .12s; }
#gloval-nav nav ul li:nth-child(9) { transition-delay: .130s; }
#gloval-nav nav ul li a svg {
  display: none;
}
#gloval-nav nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.75rem 0;
  text-decoration: none;
  color: #ffffff;
  transition: color .6s ease;
}

/* open */
.open { overflow: hidden; }
.open #nav-toggle {
  z-index: 999;
}
.open #nav-toggle div:after {
  display: none;
  transition: 0.6s;
}
.open #nav-toggle div span { background: #ffffff; }
.open #nav-toggle div span:nth-child(1) {
  top: 28px;
  transform: rotate(45deg);
}
.open #nav-toggle div span:nth-child(2) {
  display: none;
}
.open #nav-toggle div span:nth-child(3) {
  top: 28px;
  transform: rotate(-45deg);
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav nav ul li {
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}

}

@media only screen and (max-width: 768px) { 
  #gloval-nav nav {
    flex-direction: column;
  }
  #gloval-nav nav h2 {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  #gloval-nav nav ul {
    width: 90%;
    margin: 0 auto;
    border-left: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
  }
  header nav ul li a span {
    font-size: 5.5vw;
  }
  header nav ul li:last-child span {
    font-size: 5.5vw;
    margin-bottom: 0;
  }
  #gloval-nav nav ul li a {
    text-align: center;
    font-size: 4vw;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
  }
  #gloval-nav nav ul li:last-child {
    font-size: 4vw;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
  }
}





/* ----------------------------------------------------------
 footer
---------------------------------------------------------- */
footer {
  color: #fff;
  background: #000;
  border-top: 3px solid #333;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
}
footer a {
  color: #fff;
  transition: .3s;
}
footer a:hover {
  opacity: .5;
  transition: .3s;
}
footer div h1 {
  width: 20vw;
  margin-bottom: 2rem;
}
footer div h1 img {
  width: 100%;
}
footer div p.des {
  margin-bottom: 2rem;
}
footer div.right {
  text-align: right;
}
footer div ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
footer div ul li a {
  display: block;
  padding: 0 1em;
  position: relative;
}
footer div ul li a:after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.5em;
  background: #fff;
}
footer div ul li:last-child a:after {
  content: none;
}
footer div.right p a {
  margin-top: 2rem;
  padding: 0.5rem 3rem;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
footer div.right p a:before {
  content: "";
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-right: 0.75rem;
}

@media only screen and (max-width: 768px) {
  footer {
    flex-direction: column;
    padding: 0;
  }
  footer .right {
    order: 1;
  }
  footer .right ul {
    display: none;
  }
  footer .right p {
    text-align: center;
  }
  footer .right p a {
    width: 75%;
  }
  footer .left {
    order: 2;
  }
  footer div h1 {
    width: 55%;
    margin: 1.5rem auto;
  }
  footer .left p {
    display: none;
  }
  small {
    display: block;
    font-size: 80%;
    text-align: center;
    background: #333;
    padding: 0.5rem 0;
  }
}


/* ----------------------------------------------------------
 common
---------------------------------------------------------- */
.en { font-family: 'Poppins', sans-serif; }
.r { font-family: 'M PLUS Rounded 1c', sans-serif; }
.des {
  font-size: 0.9rem;
  margin-bottom: 1em;
}
span.yellow { background:linear-gradient(transparent 60%, #FAF18A 60%); }

h2.title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1em;
}
h2.title span {
  display: table;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 1rem;
  background:linear-gradient(transparent 60%, #FAF18A 60%);
}
p.button { margin-top: 2rem; }
p.button a {
  color: #fff;
  background: #000;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
p.button a:last-child:hover {
  background: #555;
  transition: .3s;
}
p.button a:before {
  content: "";
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-right: 0.75rem;
}

ul.square {
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
ul.square li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.square li:before {
  content: "■";
  font-size: 0.75rem;
  margin-right: 0.5rem;
}

/* swiper */
.swiper-container img {
  width: 100% !important;
}
.swiper-button-next,
.swiper-button-prev {
  width: 2rem !important;
  height: 2rem !important;
  background-size: contain !important;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url(images/nav-right.svg) !important;
  right: -1rem !important;
  left: auto !important;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url(images/nav-left.svg) !important;
  left: -1rem !important;
  right: auto !important;
}


@media only screen and (max-width: 768px) { 
  h2.title {
    line-height: 1em;
    margin-bottom: 0.5em;
  }
  h2.title span {
    margin-top: 0;
  }
  p.button {
    margin-top: 2rem;
    text-align: center;
  }
  p.button a {
    width: 100%;
    padding: 1rem;
  }
}

/* ----------------------------------------------------------
 top
---------------------------------------------------------- */
.sec_slide {
  position: relative;
  margin-bottom: 80px;
  width: calc(100% - 1rem);
  margin-right: 1rem;
  overflow: hidden;
}
.sec_slide:before {
  content: "";
  display: block;
  width: 5px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -50px;
  background: #000;
}
.sec_slide .mainSlider {
  position: relative;
  z-index: 1;
  width: 70vw;
  margin-left: 30vw;
}
.sec_slide .left h2 {
  position: relative;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.75em;
}
.sec_slide .left h2:before {
  content: "";
  display: block;
  width: calc(30vw - 3rem);
  height: 100%;
  background: #fff;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}
.sec_slide .left h2 span.balloon {
  display: inline-block;
  color: #fff;
  background: #000;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1em;
  border-radius: 0.25rem;
  position: relative;
  text-align: center;
}
.sec_slide .left h2 span.balloon:before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: #000 transparent;
  border-width: 12px 12px 0 12px;
  bottom: -12px;
  left: 50%;
  margin-left: -12px;
}
.sec_slide .left h2 img {
  width: 40vw;
  margin: 2rem 0;
  mix-blend-mode: exclusion;
}
.sec_slide .left p {
  width: calc(30vw - 4rem);
}
.sec_slide .left p:nth-of-type(2) {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.sec_slide .left p:nth-of-type(2) img {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
}
@media print, screen and (min-width : 767px) { /* PC */
  .sec_slide .left {
    position: absolute;
    z-index: 2;
    left: 3rem;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .sec_slide {
    width: 100%;
    margin-right: 0;
  }
  .sec_slide:before {
    content: none;
  }
  .sec_slide .swiper-container {
    overflow: initial;
  }
  .sec_slide .mainSlider {
    width: 95vw;
    margin-left: 15vw;
  }
  .sec_slide .mainSlider:before {
    content: "";
    display: block;
    width: 5px;
    height: 3rem;
    position: absolute;
    left: -15vw;
    top: 50%;
    margin-top: -1.5rem;
    background: #000;
  }
  .sec_slide .left {
    width: 90%;
    margin: -2rem auto 0 auto;
    position: relative;
    z-index: 1;
  }
  .sec_slide .left h2 {
    font-size: 1rem;
  }
  .sec_slide .left h2:before {
    width: 100%;
    height: 70%;
  }
  .sec_slide .left h2 img {
    width: 74%;
    margin: 1.5rem 0 2rem 0;
  }
  .sec_slide .left p {
    width: 100%;
  }
}

/* information */
.home .sec_info {
  width: 70%;
  max-width: 1000px;
  margin: 2rem auto 4rem auto;
  text-align: center;
}
.home .sec_info article {
  margin-bottom: 2rem;
  border: 2px solid #000;
}
.home .sec_info article h2 {
  padding: 1rem 0;
  border-bottom: 1px solid #cccccc;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  color: #ffffff;
  background-color: #000000;
}
.home .sec_info article h3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem 1rem 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.home .sec_info article h3 span {
  margin-bottom: 0.5rem;
  padding: 0 1em 0.5rem 1em;
  border-bottom: 1px solid #000;
}
.home .sec_info article p {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
}
.home .sec_info article + p {
  padding: 0.75rem 1rem 1rem 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  /* information */
  .home .sec_info {
    width: 90%;
    max-width: initial;
    text-align: left;
  }
  .home .sec_info h2 {
    text-align: center;
  }
  .home .sec_info article p {
    padding: 0 1em;
  }
}


/* about */
.sec_about {
  display: flex;
  width: 95%;
  margin-left: 5%;
  padding: 3rem 0 4rem 0;
  position: relative;
}
.sec_about:before {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  background: #F8F5CD;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}
.sec_about figure {
  width: 40% !important;
}
.sec_about figure img {
  width: 100%;
  height: auto;
}
.sec_about .right {
  width: 60%;
  padding: 0 2rem;
}

@media only screen and (max-width: 768px) {
  .sec_about {
    background: #F8F5CD;
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 2rem 5%;
  }
  .sec_about:before {
    content: none;
  }
  .sec_about figure {
    width: 100% !important;
    margin-bottom: 2rem;
  }
  .sec_about .right {
    width: 100%;
    padding: 0;
  }
}

/* room */
.sec_room {
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0 4rem 0;
  position: relative;
}
.sec_room .left {
  width: 40%;
}
.sec_room div.slide {
  width: calc(60% - 4rem);
  margin-left: 4em;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .sec_room {
    flex-direction: column;
  }
  .sec_room .left {
    order: 2;
    width: 100%;
  }
  .sec_room div.slide {
    order: 1;
    width: 100%;
    margin-left: 0;
    margin-bottom: 2rem;
  }
}

/* service */
.sec_service {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 3rem 5% 4rem 5%;
  position: relative;
}
.sec_service:before {
  content: "";
  display: block;
  width: 90%;
  height: 85%;
  background: #F8F5CD;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}
.sec_service .slide {
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}
.sec_service .left {
  width: 25%;
}
.sec_service .right {
  width: 65%;
}

@media only screen and (max-width: 768px) {
  .sec_service {
    background: #F8F5CD;
  }
  .sec_service:before {
    content: none;
  }
  .sec_service .slide {
    margin-bottom: 2rem;
  }
  .sec_service .left {
    width: 100%;
  }
  .sec_service .right {
    width: 100%;
  }
}

/* restaurant */
.sec_restaurant {
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0 5rem 0;
  position: relative;
}
.sec_restaurant div.slide {
  width: calc(60% - 4rem);
  margin-right: 4em;
  position: relative;
}
.sec_restaurant .right {
  width: 40%;
}

@media only screen and (max-width: 768px) {
  .sec_restaurant {
    flex-direction: column;
  }
  .sec_restaurant div.slide {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .sec_restaurant .right {
    width: 100%;
  }
}

/* reserve */
.sec_reserve {
  color: #fff;
  background: #000;
  text-align: center;
  padding: 4rem 0;
}
.sec_reserve a {
  color: #fff;
}
.sec_reserve h2.title {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 0.5em;
}
.sec_reserve h2.title span {
  color: #FAF18A;
  background: none;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.sec_reserve dl.out_dl {
  display: flex;
  flex-wrap: wrap;
  width: 800px;
  margin: 1rem auto;
  color: #000;
  border: 1px solid #ccc;
  border-bottom: 0;
}
.sec_reserve dl.out_dl > dt {
  width: 25%;
  background: #efefef;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
.sec_reserve dl.out_dl > dd {
  width: 75%;
  background: #fff;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.sec_reserve dl.out_dl > dd p {
  width: 100%;
}
.sec_reserve dl.in_dl {
  width: 80%;
  margin-bottom: 0.5rem;
}
.sec_reserve dl.in_dl dt {
  width: 100%;
  font-weight: 500;
  background: linear-gradient(transparent 60%, #FAF18A 60%);
}
.sec_reserve dl.in_dl dd {
  width: 100%;
  padding-left: 1em;
  margin-bottom: 0.5rem;
}
.sec_reserve p.tel {
  font-size: 1.2rem;
}
.sec_reserve p.tel a {
  font-size: 1.75rem;
  font-weight: 500;
  margin-left: 1em;
}
.sec_reserve p.online {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1rem auto;
}
.sec_reserve p.online a {
  display: block;
  padding: 1rem 2rem;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.sec_reserve p.online a:hover {
  background: #333;
  transition: .3s;
}
.sec_reserve p.online a:before {
  content: "";
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-right: 0.75rem;
}
.sec_reserve p.check a {
  border-bottom: 1px solid #fff;
}
.sec_reserve ul {
  width: 100%;
  min-width: 800px;
  margin: 2rem auto 0 auto;
  padding: 2rem 0;
  background: #333;
}
.sec_reserve ul li {
  width: 80%;
  min-width: 800px;
  margin: 0 auto;
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
}
.sec_reserve ul li:before {
  content: "※";
  margin-right: 0.5rem;
}

@media only screen and (max-width: 768px) {
  .sec_reserve {
    padding: 0;
  }
  .sec_reserve div {
    padding: 4rem 5% 2rem 5%;
  }
  .sec_reserve dl.out_dl {
    width: 85%;
    margin: 0.5rem auto 1rem auto;
    line-height: 1.75em;
    border: 0;
    font-size: 4vw;
  }
  .sec_reserve dl.out_dl > dt {
    width: 100%;
    padding: 0.25rem 0;
    text-align: center;
    border: 0;
  }
  .sec_reserve dl.out_dl > dd {
    width: 100%;
    padding: 0.25rem 0.5rem;
    text-align: center;
  }
  .sec_reserve dl.out_dl > dd p {
    font-size: 4vw;
  }
  .sec_reserve dl.in_dl {
    width: 100%;
  }
  .sec_reserve dl.in_dl dt {
    color: #000;
    border-bottom: 1px solid #000;
    background: none;
  }
  .sec_reserve dl.in_dl dd {
    margin-bottom: 0.5rem;
    padding-left: 0;
  }
  .sec_reserve p.tel a {
    display: block;
    width: 90%;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    margin: 0.5rem auto;
  }
  .sec_reserve p.online {
    width: 90%;
    margin: 1rem auto;
  }
  .sec_reserve p.online a {
    width: 100%;
    padding: 0.75rem 0;
  }
  .sec_reserve ul {
    padding: 1rem 0;
    min-width: initial !important;
  }
  .sec_reserve ul li {
    min-width: initial !important;
  }
}

/* access */
.sec_access {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec_access iframe {
  width: 100% !important;
  margin-top: 4rem;
}
.sec_access h2.title span {
  display: inline-block;
}
.sec_access ul {
  width: 80%;
  min-width: 800px;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  margin: 1rem auto;
  border:  1px solid #ccc;
}
.sec_access ul li {
  width: 50%;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .sec_access ul {
    width: 100%;
    min-width: initial;
  }
  .sec_access ul li {
    width: 100%;
  }
}

/* sub */
.sec_sub {
  background: #efefef;
  padding: 3rem 0 4rem 0;
}
.sec_sub .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_sub h2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec_sub .sec_line {
  text-align: center;
}
.sec_sub .sec_line a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem auto;
}
.sec_sub .sec_line a img {
  width: 150px;
  height: auto;
}
.sec_sub .sec_line a span {
  display: inline-block;
  color: #FFFFFF;
  background-color: #06C755;
  margin-top: 0.5rem;
  padding: 0.25rem 2em;
  border-radius: 3em;
}
.sec_sub .sec_sns {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem 2rem 2rem 2rem;
  background-color: #FFFFFF;
}
.sec_sub .sec_sns h2 {
  font-size: 1.5rem;
}
.sec_sub .sec_sns ul {
  display: flex;
}
.sec_sub .sec_sns ul li {
  margin: 0 1rem;
}
.sec_sub .sec_sns ul li a {
  display: flex;
  align-items: center;
}
.sec_sub .sec_sns ul li a img {
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.25rem;
}
.sec_sub .sec_sns ul li a span {
  line-height: 1em;
}

@media only screen and (max-width: 768px) {
  .sec_sub {
    background: #efefef;
    padding: 3rem 0 1rem 0;
  }
  .sec_sub .sec_sns {
    margin-bottom: 3rem;
  }
  .sec_sub .sec_sns h2 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  } 
  .sec_sub .sec_sns ul {
    flex-direction: column;
  }
  .sec_sub .sec_sns ul li:first-child {
    margin-bottom: 1rem;
  }
}


/* ----------------------------------------------------------
 page common
---------------------------------------------------------- */
.div_title {
  padding: 100px 2rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: left;
}
.div_title:after {
  content: "";
  display: block;
  width: 80%;
  height: 100%;
  background-image: url(images/title-about.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  right: 2rem;
  top: 0;
}
.div_title h2 {
  display: inline-block;
  width: 30vw;
  color: #fff;
  background: #000;
  padding: 2rem 4rem 5rem 1rem;
}
.div_title h2 span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height: 1.25em;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #fff;
}
h3.title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
h3.title span {
  /*display: table;*/
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 2rem;
  background:linear-gradient(transparent 60%, #FAF18A 60%);
}
.sec_first {
  text-align: center;
  margin-bottom: 2rem;
}
.sec_first h3 {
  margin-bottom: 1em;
  font-weight: 500;
}
.sec_first h3 span {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.75em;
  margin-top: 1rem;
}

@media only screen and (max-width: 768px) { 
  .div_title {
    padding: 120px 0 0 0;
  }
  .div_title:after {
    width: 100%;
    height: 70%;
    right: 0;
  }
  .div_title h2 {
    width: 85vw;
    margin-left: 7.5vw;
    padding: 1rem;
  }
  .div_title h2 span {
    font-size: 1.75rem;
  }
  .sec_first h3 {
    text-align: left;
  }
  .sec_first h3 + p {
    text-align: left;
  }
}


/* ----------------------------------------------------------
 page about
---------------------------------------------------------- */
.about .div_title:after {
  background-image: url(images/title-about.jpg);
  background-position: left 20%;
}
.about .sec_first figure {
  width: 600px;
  margin: 2rem auto 1rem auto;
}
.about .sec_first figure img {
  width: 100%;
  height: auto;
}
.about .sec_first ul {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.about .sec_first p.gray {
  display: inline-block;
  background: #efefef;
  padding: 1rem;
  margin-top: 1em;
  border-radius: 0.5rem;
}
.about .sec_first p.gray a {
  display: block;
}
.about .sec_first ul li {
  width: 31%;
  margin: 1rem;
  padding: 1rem;
  border: 1px solid #ccc;
}
.about .sec_first ul li h4 {
  width: 80%;
  color: #fff;
  background: #000;
  font-size: 1.35rem;
  letter-spacing: 0.5em;
  padding: 0.5em 0 0.5em 1em;
  margin: -2em auto 1em auto;
  position: relative;
}
.about .sec_first ul li h4:before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: #000 transparent;
  border-width: 12px 12px 0 12px;
  bottom: -12px;
  left: 50%;
  margin-left: -12px;
}

.about .sec_first ul li p {
  text-align: left;
}
.about .sec_first ul li figure,
.about .sec_first ul li figure img {
  width: 100%;
}
.about .sec_second {
  width: 95%;
  margin-left: 5%;
  padding: 2rem;
  background: #F8F5CD;
}
.about .sec_second h3 {
  display: inline-block;
  color: #fff;
  background: #000;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5em;
  margin-left: -3rem;
  position: relative;
  text-align: center;
  font-size: 1.35rem;
}
.about .sec_second h3:before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: #000 transparent;
  border-width: 12px 12px 0 12px;
  bottom: -12px;
  left: 5rem;
}
.about .sec_second > div {
  display: flex;
}
.about .sec_second .left {
  width: 30%;
}
.about .sec_second .right {
  width: 70%;
  position: relative;
}
.about .sec_second .right img {
  width: 35%;
  position: absolute;
  top: -40px;
  right: 2rem;
}
.about .sec_second .left p:nth-of-type(1) span {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  display: block;
  position: relative;
}
.about .sec_second .left p:nth-of-type(1) span:after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about .sec_second h4 {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.75em;
  margin-bottom: 1rem;
}
.about .sec_third {
  width: 95%;
  margin-left: 5%;
  padding: 2rem;
}
.about .sec_third h3 {
  display: inline-block;
  color: #fff;
  background: #000;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5em;
  margin-left: -3rem;
  position: relative;
  text-align: center;
  font-size: 1.35rem;
}
.about .sec_third h3:before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: #000 transparent;
  border-width: 12px 12px 0 12px;
  bottom: -12px;
  left: 5rem;
}
.about .sec_third > div {
  display: flex;
  max-width: 1300px;
}
.about .sec_third .left {
  width: 65%;
  padding-right: 2rem;
}
.about .sec_third .left p:nth-of-type(1) span {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  display: block;
  position: relative;
}
.about .sec_third .left p:nth-of-type(1) span:after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about .sec_third .left h4 {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.75em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.about .sec_third .right {
  width: 35%;
  max-width: 350px;
}
.about .sec_third .right figure {
  width: 100%;
}
.about .sec_third .right figure img {
  width: 100%;
  margin-bottom: 1rem;
}
.about .sec_third > div + p {
  font-size: 1.35rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1em;
}
.about .sec_fourth {
  display: flex;
  background: #efefef;
  padding: 2rem 2rem 3rem 2rem;
  margin-bottom: 4rem;
  border-radius: 0.5rem;
}
.about .sec_fourth figure {
  width: 30%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .sec_fourth figure img {
  width: 85%;
}
.about .sec_fourth div {
  width: calc(70% - 2rem);
  margin-left: 2rem;
}
.about .sec_fourth div h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 768px) { 
  .about .sec_first figure {
    width: 100% !important;
  }
  .about .sec_first ul {
    flex-direction: column;
  }
  .about .sec_first ul li {
    width: 100%;
    margin: 0 0 3rem 0;
  }
  .about .sec_first ul li:last-child {
    margin-bottom: 0;
  }
  .about .sec_second {
    width: 100%;
    margin-left: 0;
  }
  .about .sec_second h3 {
    width: 90vw;
    padding-left: 1rem;
    margin-left: -1rem;
    font-size: 5vw;
  }
  .about .sec_second h3:before {
    left: 50%;
    margin-left: -12px;
  }
  .about .sec_second > div {
    flex-direction: column;
  }
  .about .sec_second .left {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }
  .about .sec_second .left p:nth-of-type(1) span:after {
    left: 50%;
    margin-left: -1rem;
  }
  .about .sec_second .right {
    width: 100%;
  }
  .about .sec_second .right img {
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    top: 0;
    right: 0;
  }
  .about .sec_third {
    width: 100%;
    margin-left: 0;
  }
  .about .sec_third h3 {
    width: 90vw;
    padding-left: 1rem;
    margin-left: -1rem;
    font-size: 5vw;
  }
  .about .sec_third h3:before {
    left: 50%;
    margin-left: -12px;
  }
  .about .sec_third > div {
    flex-direction: column;
  }
  .about .sec_third .left {
    width: 100%;
    margin-bottom: 2rem;
  }
  .about .sec_third .left p:nth-of-type(1) {
    text-align: center;
  }
  .about .sec_third .left p:nth-of-type(1) span:after {
    left: 50%;
    margin-left: -1rem;
  }
  .about .sec_third .left h4 {
    text-align: left;
  }
  .about .sec_third .right {
    width: 100%;
  }
  .about .sec_third > div + p {
    font-size: 5vw;
  }
  .about .sec_fourth {
    display: block;
    margin-bottom: 0;
  }
  .about .sec_fourth figure {
    width: 100%;
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
  .about .sec_fourth div {
    width: 100%;
    margin-left: 0;
  }
}


/* ----------------------------------------------------------
 page room
---------------------------------------------------------- */
.room .div_title:after {
  background-image: url(images/title-room.jpg);
  background-position: left bottom 10%;
}
.room .sec_second {
  width: 100%;
  margin: 100px 0 2rem 0;
  padding: 2rem 2rem 2rem 5%;
  position: relative;
}
.room .sec_second:before {
  content: "";
  display: block;
  width: 95%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #F8F5CD;
}
.room .sec_second .flex {
  display: flex;
  margin-bottom: 1rem;
}
.room .sec_second .left {
  width: 45%;
  padding-top: 2rem;
  padding-right: 2rem;
}
.room .sec_second .left h3 span {
  display: table;
}
.room .sec_second .left ul {
  padding-bottom: 1rem;
  border-bottom: 0;
}
.room .sec_second .left h4 {
  color: #fff;
  background: #000;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}
.room .sec_second .right {
  width: 55%;
  margin-top: -4rem;
  position: relative;
}
.room .sec_second .right .swiper-button-next,
.room .sec_second .right .swiper-button-prev {
  margin-top: -4rem;
}
.room .sec_second .flex + div {
  width: 90%;
  background: #fff;
  padding: 1rem;
}
.room .sec_second .flex + div h4 {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}
.room .sec_third {
  width: 900px;
  margin: 4rem auto 6rem auto;
  display: flex;
  border: 1px solid #ccc;
  padding: 2rem;
}
.room .sec_third figure {
  width: 25%;
}
.room .sec_third figure img {
  width: 100%;
}
.room .sec_third div {
  width: 75%;
  padding-left: 2rem;
}
.room .sec_third div h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.room .sec_third div h3 + p {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.room .sec_third div ul {
  padding-bottom: 0;
  border-bottom: 0;
}
.room .sec_fourth {
  width: 90%;
  margin: 1rem auto 4rem auto;
  display: flex;
}
.room .sec_fourth .left {
  width: 25%;
}
.room .sec_fourth .left h3 span {
  display: table;
}
.room .sec_fourth .right {
  width: 75%;
}
.room .sec_fourth .right table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-bottom: 1rem;
}
.room .sec_fourth .right table thead th {
  width: calc(100% / 7);
  background: #000;
  font-size: 0.9rem;
  color: #FFF;
  padding: 0.5rem 0;
  border-right: #FFF solid 1px;
  border-bottom: #FFF solid 1px;
}
.room .sec_fourth .right table tbody th {
  padding:10px 15px;
  border-bottom: #000 solid 1px;
  vertical-align:top;
  font-weight: 300;
}
.room .sec_fourth .right table tbody tr:last-child th {
  border-bottom: #000 solid 1px;
}
.room .sec_fourth .right table tbody td {
  background: #FFF;
  border-bottom: #000 solid 1px;
  vertical-align: middle;
  font-size: 1.1rem;
  position: relative;
}
.room .sec_fourth .right ul {
}
.room .sec_fourth .right ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.room .sec_fourth .right ul li:before {
  content: "■";
  margin-right: 0.25rem;
}
.room .sec_fourth .right .gray {
  background: #efefef;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
}
.room .sec_fourth .right .gray h4 {
  font-size: 1.35rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.room .sec_fourth .right .gray div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room .sec_fourth .right .gray div p.button {
  margin-top: 0;
}
.room .sec_fourth .right .gray + h4 {
  font-size: 1.35rem;
  margin-bottom: 2rem;
}
.room .sec_fourth .right dl {
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
}
.room .sec_fourth .right dl dt {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
}
.room .sec_fourth .right dl dd {
  padding-top: 0.5rem;
}

@media print, screen and (min-width : 767px) { 
  .room .sec_fourth .right table tbody td:before {
    content: "";
    display: block;
    width: 1px;
    height: 70%;
    position: absolute;
    left: 0;
    top: 15%;
    background: #000;
  }
}

@media only screen and (max-width: 768px) {
  .room .sec_second {
    padding: 2rem 5%;
    margin: 5rem 0 2rem 0;
    background: #F8F5CD;
  }
  .room .sec_second:before {
    content: none;
  }
  .room .sec_second .flex {
    flex-direction: column;
  }
  .room .sec_second .right {
    order: 1;
    width: 100%;
  }
  .room .sec_second .right .swiper-button-next,
  .room .sec_second .right .swiper-button-prev {
    margin-top: -22px;
  }
  .room .sec_second .left {
    order: 2;
    width: 100%;
    padding-right: 0;
  }
  .room .sec_second .flex + div {
    width: 100%;
  }
  .room .sec_third {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    padding: 1rem 0;
    border: 0;
  }
  .room .sec_third div {
    order: 1;
    width: 100%;
    padding-left: 0;
  }
  .room .sec_third div h3 {
    line-height: 1em;
  }
  .room .sec_third div ul.square {
    margin-bottom: 2rem;
  }
  .room .sec_third figure {
    order: 2;
    width: 90%;
    margin: 0 auto;
  }
  .room .sec_fourth {
    flex-direction: column;
    margin: 2rem auto;
    padding-top: 3rem;
    border-top: 1px solid #ccc;
  }
  .room .sec_fourth .left {
    width: 100%;
  }
  .room .sec_fourth .right {
    width: 100%;
  }
  .room .sec_fourth .right table {
    margin-bottom: 0;
  }
  .room .sec_fourth .right table thead {
    display:none;
  }
  .room .sec_fourth .right table tbody th {
    display:block;
    color: #fff;
    background: #000;
    font-size: 5vw;
    font-weight: 500;
  }
  .room .sec_fourth .right table tbody td {
    display:block;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    display: flex;
    justify-content: space-between;
  }
  .room .sec_fourth .right table tbody td::before {
    content: attr(label);
    float: left;
    clear:both;
  }
  .room .sec_fourth .right table tbody td:last-of-type {
    margin-bottom: 2rem;
  }
  .room .sec_fourth .right table tbody td p {
    padding-left:6em;
  }
  .room .sec_fourth .right .gray div {
    display: block;
  }
  .room .sec_fourth .right .gray + h4 {
    text-align: center;
  }
}


/* ----------------------------------------------------------
 page service
---------------------------------------------------------- */
.service .div_title:after {
  background-image: url(images/title-ammenity.jpg);
  background-position: left bottom;
}
.service .sec_first {
  margin-bottom: 5rem;
}

/* ラウンジ */
.service .sec_lounge h3 {
  text-align: center;
}
.service .sec_lounge h3 + p {
  text-align: center;
}
.service .sec_lounge .yellow {
  width: 100%;
  margin: 1rem 0 2rem 0;
  padding: 2rem 2rem 2rem 5%;
  position: relative;
}
.service .sec_lounge .yellow:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 5rem);
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #F8F5CD;
}
.service .sec_lounge .slide {
  position: relative;
}
.service .sec_lounge .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 90%;
  margin: 1rem auto;
}
.service .sec_lounge .flex h4 {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.service .sec_lounge .flex h4 span {
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  margin-left: 1em;
  background: linear-gradient(transparent 60%, #FAF18A 60%);
}
.service .sec_lounge .flex p.des {
  margin-bottom: 0;
}
.service .sec_lounge .flex-breakfast figure {
  width: 45%;
}
.service .sec_lounge .flex-breakfast figure img {
  width: 100%;
}
.service .sec_lounge .flex-breakfast .right {
  width: calc(55% - 2rem);
  padding: 2rem;
  margin-left: 2rem;
  background-color: #fff;
}
.service .sec_lounge .flex-comics figure {
  width: 35%;
}
.service .sec_lounge .flex-comics figure img {
  width: 100%;
}
.service .sec_lounge .flex-comics .left {
  width: calc(65% - 2rem);
  padding: 2rem;
  margin-right: 2rem;
  background-color: #fff;
}
.service .sec_lounge div.loungewear {
  display: flex;
  border: 1px solid #000;
  margin: 6rem auto;
  padding: 2rem;
  text-align: left;
}
.service .sec_lounge div.loungewear .left {
  width: calc(65% - 2rem);
  margin-right: 2rem;
}
.service .sec_lounge div.loungewear h3 {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}
.service .sec_lounge div.loungewear h3 span {
  display: inline;
  margin: 0 0 0 1em;
}
.service .sec_lounge div.loungewear p {
  text-align: left;
}
.service .sec_lounge div.loungewear figure {
  width: 35%;
}
.service .sec_lounge div.loungewear figure img {
  width: 100%;
}

/* パウダールーム */
.service .sec_powder {
  padding-bottom: 3rem;
  text-align: center;
}
.service .sec_powder > h3 span {
  display: initial !important;
}
.service .sec_powder p.gray {
  display: inline-block;
  background: #efefef;
  padding: 1rem;
  margin-top: 1em;
  border-radius: 0.5rem;
}
.service .sec_powder .flex {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}
.service .sec_powder .flex section {
  width: 49%;
}
.service .sec_powder .slider {
  margin-bottom: 3px;
}
.service .sec_powder .swiper-slide img {
  width: 100%;
}
.service .sec_powder .thumbnail {
  margin-bottom: 1rem;
}
@media all and (-ms-high-contrast: none) {
  .service .sec_powder .thumbnail {
    display: none;
  }
}
.service .sec_powder .flex section h4 {
  color: #fff;
  background: #000;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}

/* サービスコーナー */
.service .sec_servicecorner {
  position: relative;
  padding: 5rem 0;
}
.service .sec_servicecorner:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F8F5CD;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}
.service .sec_servicecorner .flex {
  display: flex;
}
.service .sec_servicecorner .flex1 {
  margin-bottom: 3rem;
}
.service .sec_servicecorner .flex1 h3 span {
  display: table;
}
.service .sec_servicecorner .flex1 > div {
  width: 55%;
  padding-right: 2rem;
}
.service .sec_servicecorner .flex1 div.white {
  background: #fff;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  display: flex;
}
.service .sec_servicecorner .flex1 div.white div {
  width: calc(65% - 1rem);
  margin-right: 1rem;
}
.service .sec_servicecorner .flex1 div.white p:nth-of-type(1) {
  border-bottom: 1px solid #ccc;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}
.service .sec_servicecorner .flex1 div.white figure {
  width: 35%;
  display: flex;
  align-items: center;
}
.service .sec_servicecorner .flex1 div.white figure img {
  width: 100%;
}
.service .sec_servicecorner .flex1 figure {
  width: 45%;
}
.service .sec_servicecorner .flex1 figure img {
  width: 100%;
}
.service .sec_servicecorner .flex2 {
  align-items: center;
}
.service .sec_servicecorner .flex2 > figure {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service .sec_servicecorner .flex2 > figure img {
  width: calc(50% - 0.5rem);
  margin-bottom: 1rem;
  align-self: flex-start;
}
.service .sec_servicecorner .flex2 > div {
  width: 42%;
  padding-left: 2rem;
}
.service .sec_servicecorner .flex2 div.white {
  background: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  margin-top: 1rem;
}
.service .sec_servicecorner .flex2 div.white p {
  width: 40%;
  padding-right: 1rem;
  margin-bottom: 0;
}
.service .sec_servicecorner .flex2 div.white figure {
  width: 60%;
}
.service .sec_servicecorner .flex2 div.white figure img {
  width: 100%;
  margin-bottom: 0;
  align-self: flex-start;
}
.service .sec_servicecorner .bottom {
  width: 90%;
  margin: 2rem auto;
  background: #fff;
  padding: 1rem;
}
.service .sec_servicecorner .bottom h4 {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}

/* ミニショップ */
.service .sec_store {
  position: relative;
  padding: 5rem 0 3rem 0;
  margin-bottom: 5rem;
}
.service .sec_store .flex {
  display: flex;
}
.service .sec_store .flex figure {
  width: 45%;
  position: relative;
}
.service .sec_store .flex figure img {
  width: 100%;
}
.service .sec_store .flex figure img.drink {
  position: absolute;
  left: -2em;
  bottom: 2.5em;
  width: 10em;
  height: auto;
  aspect-ratio: 1 / 1;
}
.service .sec_store .flex div {
  width: 55%;
  padding-left: 2rem;
}
.service .sec_store .flex div h3 span {
  display: table;
}
.service .sec_store .flex div ul.square {
  padding-bottom: 1rem;
  border-bottom: 0;
}
.service .sec_store .flex div .white {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border: 1px solid #cccccc;
  padding: 0.5rem;
  display: flex;
}
.service .sec_store .white figure {
  width: 30%;
}
.service .sec_store .white figure img {
  width: 100%;
}



@media only screen and (max-width: 768px) {
  .service .sec_first {
    margin-bottom: 0;
  }
  .service .sec_lounge .yellow {
    padding: 2rem 5%;
  }
  .service .sec_lounge h3 {
    font-size: 10vw;
    width: 90%;
    margin: 0 auto 0.5em auto;
  }
  .service .sec_lounge h3 + p {
    text-align: left;
  }
  .service .sec_lounge .flex {
    flex-direction: column;
    width: 100%;
    padding-top: 1rem;
    background-color: #fff;
  }
  .service .sec_lounge .flex figure {
    width: 100%;
  }
  .service .sec_lounge .flex h4 {
    flex-direction: column;
  }
  .service .sec_lounge .flex .right {
    width: 100%;
    margin-left: 0;
  }
  .service .sec_lounge .flex-comics figure {
    order: 1;
    width: 90% !important;
  }
  .service .sec_lounge .flex .left {
    order: 2;
    width: 100%;
    margin-right: 0;
  }
  .service .sec_lounge div.loungewear {
    display: block;
    width: 90%;
    margin: 2rem auto;
  }
  .service .sec_lounge div.loungewear .left {
    width: 100%;
    margin-right: 0;
  }
  .service .sec_lounge div.loungewear h3 {
    display: block;
    text-align: center;
    font-size: 2rem;
  }
  .service .sec_lounge div.loungewear figure {
    width: 100%;
    margin-top: 1rem;
  }
  .service .sec_servicecorner {
    padding: 3rem 5%;
    background: #F8F5CD;
  }
  .service .sec_servicecorner:before {
    content: none;
  }
  .service .sec_servicecorner .flex1 {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .service .sec_servicecorner .flex1 > figure {
    order: 1;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .service .sec_servicecorner .flex1 > div {
    width: 100%;
    padding-right: 0;
    order: 2;
  }
  .service .sec_servicecorner .flex1 > div h3.title {
    font-size: 9vw;
    text-align: center;
  }
  .service .sec_servicecorner .flex1 h3 span {
    display: initial;
  }
  .service .sec_servicecorner .flex1 div.white {
    display: block;
    padding: 1rem;
    margin: 1rem 0;
  }
  .service .sec_servicecorner .flex1 div.white div {
    width: 100%;
    margin-right: 0;
  }
  .service .sec_servicecorner .flex1 div.white figure {
    width: 100%;
  }
  .service .sec_servicecorner .flex2 {
    flex-direction: column;
  }
  .service .sec_servicecorner .flex2 > figure {
    width: 100%;
  }
  .service .sec_servicecorner .flex2 > div {
    width: 100%;
    padding-left: 0;
  }
  .service .sec_servicecorner .flex2 div.white {
    display: block;
  }
  .service .sec_servicecorner .flex2 div.white p {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
  .service .sec_servicecorner .flex2 div.white figure {
    width: 100%;
    margin-bottom: 1rem;
  }
  .service .sec_servicecorner .bottom {
    width: 100%;
  }
  .service .sec_store {
    padding: 2rem 5%;
    margin-bottom: 0;
  }
  .service .sec_store:before {
    content: none;
  }
  .service .sec_store .flex {
    flex-direction: column;
  }
  .service .sec_store .flex figure {
    width: 100%;
    margin-bottom: 2rem;
  }
  .service .sec_store .flex figure img.drink {
    left: -1em;
    bottom: -1.5em;
    width: 7em;
  }
  .service .sec_store .flex div {
    width: 100%;
    padding-left: 0;
  }
  .service .sec_store .flex div h3 {
    font-size: 9vw;
    line-height: 1em;
    text-align: center;
  }
  .service .sec_store .flex div h3 span {
    display: initial;
  }
  .service .sec_store .flex div ul.square {
    margin-bottom: 0;
  }
  .service .sec_store .flex div .white {
    display: block;
    padding: 0.5rem 1rem;
  }
  .service .sec_store .flex div .white figure {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .service .sec_powder {
    padding-top: 3rem;
  }
  .service .sec_powder h3 + p.des {
    text-align: center;
  }
  .service .sec_powder .flex {
    flex-direction: column;
  }
  .service .sec_powder .flex section {
    width: 100%;
  }
  .service .sec_powder div.lounge {
    display: block;
  }
  .service .sec_powder div.lounge .left {
    width: 100%;
    margin-right: 0;
  }
  .service .sec_powder div.lounge h3 {
    display: block;
    text-align: center;
    font-size: 2rem;
  }
  .service .sec_powder div.lounge figure {
    width: 100%;
    margin-top: 1rem;
  }
}


/* ----------------------------------------------------------
 page restaurant
---------------------------------------------------------- */
.restaurant .div_title:after {
  background-image: url(images/title-restaulant2024.jpg);
  background-position: left 90%;
}
.restaurant .sec_suzuran {
  position: relative;
  margin: 100px 0 2rem 0;
  padding: 2rem 2rem 2rem 5%;
}
.restaurant .sec_suzuran:before {
  content: "";
  display: block;
  width: 95%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: #F8F5CD;
}
.restaurant .sec_suzuran .flex {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.restaurant .sec_suzuran .left {
    width: 45%;
    padding-right: 4rem;
}
.restaurant .sec_suzuran .left h3 {
  width: 80%;
  margin: 1rem 0 2rem 0;
}
.restaurant .sec_suzuran .left h3 img {
  width: 100%;
  max-width: 350px;
}
.restaurant .sec_suzuran .left h3 + .des {
  padding-bottom: 1em;
  border-bottom: 1px dashed #ccc;
}
.restaurant .sec_suzuran .left .address {
  padding-left: 1.5em;
  position: relative;
}
.restaurant .sec_suzuran .left .address:before {
  content: "";
  display: block;
  width: 1em;
  height: 2em;
  background-image: url(images/icon-map.svg);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.restaurant .sec_suzuran .left h4 {
  color: #fff;
  background: #000;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
}
.restaurant .sec_suzuran .left dl {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.restaurant .sec_suzuran .left dl dt {
  width: 25%;
  padding: 0.25rem 0.5rem;
  border-bottom: 1px dotted #ccc;
}
.restaurant .sec_suzuran .left dl dd {
  width: 75%;
  padding: 0.25rem 0.5rem;
  border-bottom: 1px dotted #ccc;
}
.restaurant .sec_suzuran .left ul {
  margin-bottom: 1rem;
}
.restaurant .sec_suzuran .left ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.9rem;
}
.restaurant .sec_suzuran .left ul li:before {
  content: "※";
}
.restaurant .sec_suzuran .left p.button {
  width: 300px;
  margin: 0.5rem 0;
}
.restaurant .sec_suzuran .left p.button a {
  width: 100%;
  justify-content: flex-start;
}
.restaurant .sec_suzuran .right {
  width: 55%;
  position: relative;
}
.restaurant .sec_suzuran .right .slidebox {
  position: relative;
}
.restaurant .sec_suzuran .right .fbbox {
  text-align: center;
  margin: 2rem 0;
}

.restaurant .sec_okasan {
  position: relative;
  margin: 4rem 0;
  padding: 2rem 5% 2rem 2rem;
}
.restaurant .sec_okasan:before {
  content: "";
  display: block;
  width: 95%;
  height: 100%;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  background: #F8F5CD;
}
.restaurant .sec_okasan .flex {
    display: flex;
    margin-bottom: 1rem;
}
.restaurant .sec_okasan .left {
  width: 55%;
  position: relative;
}
.restaurant .sec_okasan .left .slidebox {
  position: relative;
}
.restaurant .sec_okasan .left .fbbox {
  text-align: center;
  margin: 2rem 0;
}
.restaurant .sec_okasan .right {
    width: 45%;
    padding-left: 4rem;
}
.restaurant .sec_okasan .right h3 {
  width: 80%;
  margin: 1rem 0 2rem 0;
}
.restaurant .sec_okasan .right h3 img {
  width: 100%;
  max-width: 350px;
}
.restaurant .sec_okasan .right h3 + .des {
  padding-bottom: 1em;
  border-bottom: 1px dashed #ccc;
}
.restaurant .sec_okasan .right .address {
  padding-left: 1.5em;
  position: relative;
}
.restaurant .sec_okasan .right .address:before {
  content: "";
  display: block;
  width: 1em;
  height: 2em;
  background-image: url(images/icon-map.svg);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.restaurant .sec_okasan .right h4 {
  color: #fff;
  background: #000;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
}
.restaurant .sec_okasan .right dl {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.restaurant .sec_okasan .right dl dt {
  width: 25%;
  padding: 0.5rem;
  border-bottom: 1px dotted #ccc;
}
.restaurant .sec_okasan .right dl dd {
  width: 75%;
  padding: 0.5rem;
  border-bottom: 1px dotted #ccc;
}
.restaurant .sec_okasan .right dl dd ul.caution {
  margin: 0.5rem 0;
  padding: 0.25em 0.5em;
  background: #efefef;
}
.restaurant .sec_okasan .right dl dd ul.caution li {
  padding-right: 0;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.75em;
}
.restaurant .sec_okasan .right ul {
  margin-bottom: 1rem;
  padding-left: 1em;
}
.restaurant .sec_okasan .right ul li {
  padding-right: 1em;
  text-indent: -1em;
  font-size: 0.9rem;
}
.restaurant .sec_okasan .right ul li:before {
  content: "※";
}
.restaurant .sec_okasan .right p.button {
  width: 300px;
  margin: 0.5rem 0;
}
.restaurant .sec_okasan .right p.button a {
  width: 100%;
  justify-content: flex-start;
}

.restaurant .sec_info {
  width: 80%;
  border: 1px solid #000;
  padding: 2rem;
  margin: 3rem auto 5rem auto;
  text-align: left;
}
.restaurant .sec_info h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.restaurant .sec_info h3 span {
  font-size: 1.5rem;
  margin-right: 1em;
}
.restaurant .sec_info ul {
  padding-left: 1rem;
}
.restaurant .sec_info ul li {
  padding-right: 1em;
  text-indent: -1em;
  font-size: 0.9rem;
}
.restaurant .sec_info ul li:before {
  content: "■";
}

@media only screen and (max-width: 768px) {
  .sec_first h3 {
    width: 90%;
    margin: 0 auto;
  }
  .restaurant .sec_suzuran,
  .restaurant .sec_okasan {
    background: #F8F5CD;
    margin: 3rem auto;
    padding: 2rem 5%;
  }
  .restaurant .sec_okasan {
    margin-bottom: 0;
  }
  .restaurant .sec_suzuran:before,
  .restaurant .sec_okasan:before {
    content: none;
  }
  .restaurant .sec_suzuran .flex,
  .restaurant .sec_okasan .flex {
    flex-direction: column;
    text-align: center;
  }
  .restaurant .flex .left,
  .restaurant .flex .right {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .restaurant .sec_suzuran .flex .right {
    order: 1;
  }
  .restaurant .sec_suzuran .flex .left {
    order: 2;
  }
  .restaurant .sec_suzuran .right .slidebox,
  .restaurant .sec_okasan .left .slidebox {
    margin-bottom: 1rem;
  }
  .restaurant .sec_suzuran .flex h3,
  .restaurant .sec_okasan .flex h3 {
    text-align: center;
    width: 100%;
  }
  .restaurant h3 img {
    width: 90% !important;
  }
  .restaurant p.button {
    width: 100% !important;
  }
  .restaurant .sec_suzuran .left .address:before,
  .restaurant .sec_okasan .right .address:before {
    left: initial;
  }
  .restaurant .sec_suzuran .left dl dt,
  .restaurant .sec_okasan .right dl dt {
    width: 100% !important;
    padding: 0.5rem 0 0 0;
    border-bottom: 0;
  }
  .restaurant .sec_suzuran .left dl dd,
  .restaurant .sec_okasan .right dl dd {
    width: 100% !important;
    padding: 0 0 0.5rem 0;
  }
  .restaurant .sec_okasan .right dl dd ul.caution {
    width: 90%;
    margin: 0.5rem auto;
  }
  .restaurant .sec_okasan .right dl dd ul.caution li {
    text-align: left;
  }
  .restaurant .fbbox,
  .restaurant .fbbox iframe {
    width: 100% !important;
    text-align: center;
  }
  .restaurant .sec_info {
    width: 90%;
    padding: 1rem;
  }
  .restaurant .sec_info h3 {
    text-align: center;
  }
}


/* ----------------------------------------------------------
 page access
---------------------------------------------------------- */
.access .div_title:after {
  background-image: url(images/title-access.jpg);
  background-position: left 20%;
}
.access .sec_second {
  text-align: center;
  margin-bottom: 3rem;
}
.access .sec_second h3 {
  line-height: 1em;
}
.access .sec_second h3 span {
  display: initial !important;
}
.access .sec_second ul {
  width: 80%;
  min-width: 800px;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  margin: 1rem auto 2rem auto;
  border: 1px solid #ccc;
}
.access .sec_second ul li {
  width: 50%;
  text-align: left;
}
.access .sec_second iframe {
  width: 100% !important;
}
.access .sec_third {
  text-align: center;
  margin-bottom: 3rem;
}
.access .sec_third h3 {
  line-height: 1em;
}
.access .sec_third h3 span {
  display: initial !important;
}
.access .sec_third div {
  width: 70%;
  margin: 1rem auto;
  padding: 1rem;
  background: #efefef;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.access .sec_third ul {
  padding: 1rem;
}
.access .sec_third ul li {
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .access .sec_second ul {
    width: 100%;
    min-width: initial;
    display: block;
  }
  .access .sec_second ul li {
    width: 100%;
  }
  .sec_third p {
    text-align: left;
  }
  .access .sec_third div {
    width: 100%;
  }
}


/* ----------------------------------------------------------
 page franchise
---------------------------------------------------------- */
.franchise .div_title + p {
  margin-bottom: 10rem;
}
.franchise .sec_second {
  width: 95%;
  margin-left: 5%;
  padding: 3rem 2rem 2rem 2rem;
  background: #F8F5CD;
}
.franchise .sec_second .flex {
  display: flex;
}
.franchise .sec_second .flex .left {
  padding-right: 2rem;
}
.franchise .sec_second h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
.franchise .sec_second h3 + p {
  display: inline-block;
  border-top: 2px solid;
}
.franchise .sec_second p.des + p {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.75em;
    margin-bottom: 1rem;
}

/* ----------------------------------------------------------
 page contact
---------------------------------------------------------- */
  .contact #wrapper {
    margin: 3rem auto;
  }
  .contact table {
    width: 90%;
    margin: 2rem auto;
    border-collapse: collapse;
  }
  .contact table input, 
  .contact table textarea {
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0.25rem;
    box-sizing: border-box;
    background-color: #f9fafb;
    border: 1px solid #cccccc;
    font-size: 1rem;
  }
  .contact table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .contact table th {
    width: 20%;
    display: block;
    border-bottom: 1px solid #cccccc;
    border-collapse: collapse;
    padding: 2rem 1rem;
    text-align: left;
    font-size: 1rem;
    font-weight: normal;
  }
  .contact table th span.red {
    color: #cc0000;
  }
  .contact table td {
    width: 80%;
    display: block;
    border-bottom: 1px solid #cccccc;
    border-collapse: collapse;
    padding: 2rem 1rem;
    text-align: left;
    font-size: 1rem;
    font-weight: normal;
  }
  .button_box input[type="submit"] {
    font-weight: 300;
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    width: 300px;
    color: #fff;
    background: #000;
    border: 0;
    padding: 1.5rem 2rem;
    transition: .3s;
    cursor: pointer;
  }
  .button_box input[type="submit"]:hover {
    background: #333;
    transition: .3s;
  }
  .button_box div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }
  .button_box div:before {
    content: "";
    display: block;
    width: 0.65rem;
    height: 0.65rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 1rem;
  }
  div.red_txt {
    color: #cc0000 !important;
    font-weight: bold;
  }
  div.caution {
    text-align: left;
    width: 90%;
    margin: 4rem auto 2rem auto;
  }
  div.caution h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }
  div.caution p {
    font-size: 0.9rem;
  }
  div.caution ul li {
    font-size: 0.9rem;
    padding-left: 1em;
    text-indent: -1em;
  }
  div.caution ul li:before {
    content: "※";
  }
  .contact footer .right ul + p {
    display: none;
  }

@media only screen and (max-width: 768px) {
  .contact #main {
    width: 90%;
    margin: 0 auto;
  }
  .contact table tr {
    display: block;
  }
  .contact table tr th {
    width: 100%;
    border-bottom: 0;
    padding: 1rem 0 0 0;
  }
  .contact table tr td {
    width: 100%;
    padding: 0.5rem 0 1.5rem 0;
  }
  div.caution h3 {
    width: 100%;
  }
}










