@charset "UTF-8";
/* ======= Global ======= */
body {
  background: url(../img/bg.jpg) no-repeat;
  background-size: cover;
}

#preview-action {
  display: none;
}

html {
  scroll-behavior: smooth;
}

ul, li, div, span, section, h2, a, table, th, td, p {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-datepicker-trigger {
  width: 40px;
  margin: 0 0 5px 5px;
}

/* 日曜日のカラー設定 */
td.ui-datepicker-week-end:first-child a.ui-state-default {
  background-color: #ffecec;
  /* 背景色を設定 */
  color: #f00 !important;
  /* 文字色を設定 */
}

/* 土曜日のカラー設定 */
td.ui-datepicker-week-end:last-child a.ui-state-default {
  background-color: #eaeaff;
  /* 背景色を設定 */
  color: #00f !important;
  /* 文字色を設定 */
}

/* ホバー時の動作 */
td.ui-datepicker-week-end a.ui-state-hover {
  opacity: 0.8;
}

/* 当日を示す色はそのまま */
td.ui-datepicker-week-end a.ui-state-highlight {
  background-color: #fffa90 !important;
}

.custom-holiday a.ui-state-default {
  background-color: #00ffff;
}

input, textarea, button {
  border-radius: 2px;
  border: 0;
  padding: 9px;
  color: #333;
  border: solid 1px #ddd;
  background: #f9f9f8;
  margin: -10px 0;
}
input.name, textarea.name, button.name {
  width: 23%;
  margin: -10px 1% -10px 0;
}
input.form_bt, textarea.form_bt, button.form_bt {
  width: 300px;
  margin: 50px auto;
  padding: 10px 20px;
  text-align: center;
  display: block;
  border-top: 1px #dedede solid;
  background: #f8b62d;
  color: #fff;
}
input.re_bt, textarea.re_bt, button.re_bt {
  width: 300px;
  margin: -30px auto 50px;
  padding: 10px 20px;
  text-align: center;
  display: block;
  border-top: 1px #dedede solid;
  background: #f9f9f9;
}

select {
  border: solid 1px #ddd;
  background: #f9f9f8;
  padding: 9px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid 1px #ddd;
  background: #f8f7f7 url(../img/icon_bottom_arrow.png) 97% 50% no-repeat;
  background-size: 15px, 100%;
  margin: -10px 0;
}

.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin: 0;
}

.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}

.selectbox select {
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}

input[type="checkbox"], input[type="radio"] {
  width: auto;
  margin: 0 10px 0 0;
}
input[type="checkbox"]:hover, input[type="radio"]:hover {
  cursor: pointer;
}

input[type="submit"]:hover {
  opacity: 0.5;
}

label {
  margin: 0 20px 0 0;
}
label:hover {
  cursor: pointer;
}

select:hover {
  cursor: pointer;
}

textarea {
  height: 100px;
}

.err {
  text-align: center;
  color: #c00;
  font-weight: bold;
  font-size: 120%;
  margin: 0 0 50px;
}

.error {
  color: #c00;
  font-weight: bold;
  margin: 15px 0 -10px 0;
}

.red {
  color: #9f0000;
}

h3 {
  font-size: 130%;
  font-weight: bold;
  line-height: 150%;
}

.center {
  text-align: center;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.bt {
  width: 300px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.contact {
  width: 300px;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.contact img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

button {
  width: 300px;
  padding: 10px 50px;
  display: block;
  margin: 50px auto 0;
  background: #f8b62d;
  border-radius: 0;
  border: 0;
  color: #fff;
}
button:hover {
  opacity: 0.5;
}

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}

.open nav {
  left: 0;
  opacity: 1;
}

nav .inner {
  padding: 25px;
}

nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}

nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}

nav .inner ul li a:hover {
  background: #e4e4e4;
}

.contents {
  width: 800px;
  margin: 0 auto;
  display: block;
  background: #fff;
  padding: 50px;
  margin: 50px auto 0 auto;
  border: 1px solid #224161;
}

@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 70px;
  height: 70px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
  padding: 10px;
  background: #224161;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 20px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}

.toggle_btn span:nth-child(1) {
  top: 22px;
}

.toggle_btn span:nth-child(2) {
  top: 32px;
}

.toggle_btn span:nth-child(3) {
  bottom: 26px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #224161;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/* ======= Header ======= */
header {
  width: 100%;
  height: auto;
  min-height: auto;
  background: url(../img/header_bg.jpg) no-repeat center top;
  background-size: auto;
}
header p.reserv_bt a {
  width: 70px;
  height: 70px;
  position: fixed;
  display: block;
  background: #224161;
  color: #fff;
  text-align: center;
  line-height: 70px;
  z-index: 1;
}
header p.catch {
  width: 100%;
  height: 380px;
  position: relative;
  background: url(../img/top.jpg) no-repeat center center;
  background-size: cover;
}
header p.catch img {
  width: 100%;
}
header p.catch span {
  position: absolute;
  bottom: 50px;
  left: 35px;
  font-size: 50px;
}
header p.sns {
  width: 100px;
  position: absolute;
  top: 14px;
  right: 75px;
  z-index: 1;
}
header p.sns a {
  width: 40px;
  display: inline-block;
  margin: 0 10px 0 0;
}
header h1 {
  width: 100%;
  height: 70px;
  text-align: center;
  margin: 0 auto;
  line-height: 70px;
}
header h1 a {
  width: 500px;
  display: block;
  margin: 0 auto;
}

section {
  width: 100%;
}
section.plan img {
  width: 100%;
}
section.plan img.sakura_bn {
  margin: -60px 0 0 0;
}
section.plan p {
  display: flex;
  flex-wrap: wrap;
  padding: 2%;
  justify-content: space-between;
}
section.plan p b.sp {
  display: none;
}
section.plan a {
  width: calc(32%);
  text-align: center;
  margin-bottom: 10px;
}
section.plan a span {
  background: #E26E6E;
  padding: 5px 50px;
  margin: 10px 0;
  display: inline-block;
  border-radius: 5px;
  color: #fff;
}
section h2 {
  margin: 100px auto 0;
  padding: 10px 0;
  background: url(../img/title_bg.png) no-repeat center top;
  background-size: 200px;
  text-align: center;
  font-size: 24px;
}
section h2 span {
  display: block;
  font-size: 14px;
  margin: 20px 0;
}
section.consept p {
  background: url(../img/consept.jpg) no-repeat right center;
  background-size: contain;
  padding: 50px;
}
section.reservation div ul, section.review div ul {
  display: flex;
  padding: 0 90px;
}
section.reservation div ul li, section.review div ul li {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 10px;
  margin: 0 20px;
  position: relative;
  font-size: 14px;
  line-height: 150%;
}
section.reservation div ul li h3, section.review div ul li h3 {
  font-family: "ab-kirigirisu", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin: 0 0 10px 0;
}
section.reservation div ul li:before, section.review div ul li:before {
  content: "";
  position: absolute;
  background: url(../img/arrow.svg) no-repeat right center;
  width: 50px;
  text-align: center;
  top: 0;
  bottom: 0;
  right: -50px;
  z-index: 1;
}
section.reservation div ul li:last-child:before, section.review div ul li:last-child:before {
  background: none;
  content: none;
}
section.reservation div ul li img, section.review div ul li img {
  width: 100%;
  margin: 0 0 10px 0;
}
section.review div ul {
  padding: 0 100px;
}
section.review div ul li {
  border: none;
  width: 30%;
}
section.review div ul li h3 {
  font-family: inherit;
  padding: 10px;
  text-align: left;
}
section.review div ul li p {
  padding: 10px;
}
section.review div ul li img {
  width: 100%;
  border: 1px solid #ccc;
  padding: 3px;
  border-radius: 5px;
}
section.review div ul li:before {
  background: none;
  content: none;
}
section.introduce img {
  width: 45%;
  margin: 0 auto;
  display: block;
}
section.introduce p {
  width: 40%;
  margin: 50px auto;
}

footer {
  background: #224161;
  line-height: 60px;
  overflow: hidden;
  padding: 0 10px 0 0;
}
footer p {
  float: left;
}
footer p a {
  width: auto;
  color: #fff !important;
  padding: 0 0 0 20px;
  font-size: 12px;
  display: inherit;
  margin: 0;
}
footer a {
  display: block;
  width: 50px;
  float: right;
  padding: 0 0 0 10px;
  margin: -10px 0 0 0;
}

address {
  text-align: center;
  background: #D4C6AD;
}

@media (max-width: 850px) {
  header {
    min-width: 100%;
  }

  section.reservation div ul, section.review div ul {
    display: flex;
    padding: 0 30px;
  }
  section.review div ul {
    padding: 0 10px;
  }
  section.review div ul li {
    border: none;
    width: 30%;
  }
  section.review div ul li h3 {
    font-family: inherit;
    padding: 10px;
    text-align: left;
  }
  section.review div ul li p {
    padding: 10px;
  }
  section.review div ul li img {
    width: 100%;
    border: 1px solid #ccc;
    padding: 3px;
    border-radius: 5px;
  }
  section.review div ul li:before {
    background: none;
    content: none;
  }
}
@media (max-width: 640px) {
  .contents {
    width: 90%;
    padding: 20px;
    margin-top: 20px;
  }

  /*============
  .toggle_btn
  =============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 45px;
    height: 45px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
    padding: 10px;
    background: #224161;
  }

  .toggle_btn span {
    display: block;
    position: absolute;
    left: 9px;
    width: 27px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s;
  }

  .toggle_btn span:nth-child(1) {
    top: 12px;
  }

  .toggle_btn span:nth-child(2) {
    top: 32px;
  }

  .toggle_btn span:nth-child(3) {
    bottom: 21px;
  }

  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }

  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(0px) rotate(315deg);
    transform: translateY(0px) rotate(315deg);
  }

  body {
    background-size: 100%;
  }

  header {
    width: 100%;
    height: auto;
    min-height: auto;
    min-width: 100%;
    background: url(../img/header_bg.jpg) no-repeat center top;
    background-size: 100%;
  }
  header p.reserv_bt a {
    width: 45px;
    height: 45px;
    position: absolute;
    display: block;
    background: #224161;
    color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 10px;
  }
  header p.catch {
    width: 100%;
    height: 200px;
    position: relative;
    background: url(../img/top.jpg) no-repeat center center;
    background-size: cover;
  }
  header p.catch img {
    width: 100%;
  }
  header p.catch span {
    position: absolute;
    bottom: 20px;
    left: 15px;
    font-size: 24px;
  }
  header p.sns {
    display: none;
  }
  header h1 {
    width: 100%;
    height: 45px;
    text-align: center;
    margin: 0 auto;
    line-height: 45px;
  }
  header h1 a {
    width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 14px;
  }
  header div.catch {
    background: url(../img/catch_bg.jpg) no-repeat center 230px;
    background-size: 170%;
    height: auto;
    min-height: 650px;
  }
  header div.catch div {
    width: 100%;
    background: url(../img/catch_bg.svg) no-repeat center;
    background-size: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  header div.catch div p {
    width: 100%;
    text-align: center;
    padding: 140px 50px 0 50px;
    height: 450px;
    line-height: 200%;
    margin: 0 auto;
    font-size: 12px;
  }
  header div.catch img.title01 {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  header div.catch img.item {
    width: 100%;
  }
  header div.catch label {
    background: url(../img/bg2.jpg) repeat-y;
    background-size: 100%;
    width: 100%;
    display: block;
    height: 250px;
    display: none;
    position: absolute;
    /* margin: 140px 0 -120px 0; */
    z-index: 0;
    top: 340px;
  }

  .img_item {
    overflow: hidden;
  }
  .img_item img {
    width: 90%;
  }
  .img_item img.phone {
    width: 120%;
    margin-left: -10%;
  }
  .img_item span {
    width: 90%;
  }

  .img_item2 img {
    width: 100%;
    margin-left: 0;
  }

  .bold {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
  }

  .slider {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .d1 {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
  .d1 img {
    width: 100%;
  }

  .d2 {
    width: 80%;
    margin: 0 auto;
  }
  .d2 img {
    width: 100%;
  }

  .item04 {
    background-size: 110%;
  }

  .item05 {
    width: 100%;
    padding: 330px 0 150px 0;
    line-height: 200%;
    font-size: 14px;
  }

  .item_parts img {
    width: 40%;
  }

  .tx2 {
    width: 100%;
  }

  .yuna {
    background: #E2BFB5;
    padding: 0;
    margin-bottom: 50px;
  }
  .yuna div {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .tx4 {
    padding: 20px;
  }

  .bold2 p a {
    width: 80%;
  }

  section h2 {
    margin: 20px auto 0;
    padding: 10px 0;
    background: url(../img/title_bg.png) no-repeat center 10px;
    background-size: 50%;
    text-align: center;
    font-size: 18px;
  }
  section h2 span {
    display: block;
    font-size: 14px;
    margin: 20px 0 0 0;
  }
  section.consept p {
    background: none;
    padding: 20px;
  }
  section.consept img.sp {
    display: block;
    width: 100%;
  }
  section.plan img {
    width: 100%;
  }
  section.plan img.sakura_bn {
    margin: 0;
  }
  section.plan p {
    display: block;
    flex-wrap: inherit;
    padding: 5%;
    justify-content: inherit;
    text-align: center;
  }
  section.plan p b.sp {
    display: block;
  }
  section.plan a {
    width: auto;
    text-align: center;
    margin-bottom: 10px;
  }
  section.plan a span {
    background: #E26E6E;
    padding: 5px 50px;
    margin: 10px 0;
    display: inline-block;
    border-radius: 5px;
    color: #fff;
  }
  section.reservation div ul, section.review div ul {
    display: block;
    padding: 20px;
  }
  section.reservation div ul li, section.review div ul li {
    flex: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 10px;
    margin: 0 20px 50px 20px;
    position: relative;
    font-size: 14px;
    line-height: 150%;
  }
  section.reservation div ul li h3, section.review div ul li h3 {
    font-family: "ab-kirigirisu", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin: 0 0 10px 0;
  }
  section.reservation div ul li:before, section.review div ul li:before {
    content: "";
    position: absolute;
    background: url(../img/arrow2.svg) no-repeat right center;
    width: 20px;
    height: 50px;
    text-align: center;
    top: auto;
    bottom: -50px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 2;
  }
  section.reservation div ul li:last-child:before, section.review div ul li:last-child:before {
    background: none;
    content: none;
  }
  section.reservation div ul li img, section.review div ul li img {
    width: 100%;
    margin: 0 0 10px 0;
  }
  section.reservation div ul li {
    text-align: center;
  }
  section.review div ul {
    width: 90%;
    padding: 5%;
  }
  section.review div ul li {
    border: none;
    width: 100%;
  }
  section.review div ul li h3 {
    font-family: inherit;
    padding: 10px;
    text-align: left;
  }
  section.review div ul li p {
    padding: 10px;
  }
  section.review div ul li img {
    width: 100%;
    border: 1px solid #ccc;
    padding: 3px;
    border-radius: 5px;
  }
  section.review div ul li:before {
    background: none;
    content: none;
  }
  section.introduce img {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  section.introduce p {
    width: 90%;
    margin: 50px auto;
  }

  footer {
    width: 100%;
    background: #224161;
    line-height: 60px;
    overflow: hidden;
    padding: 0;
  }
  footer p {
    width: 50%;
    float: left;
    padding: 20px;
  }
  footer p a {
    width: 100%;
    color: #fff !important;
    padding: 0;
    font-size: 12px;
    display: block;
    margin: 0;
    height: auto;
    text-align: left;
    line-height: 300%;
    float: left;
  }
  footer a {
    display: block;
    width: 50px;
    float: right;
    padding: 0;
    margin: 20px 10px 0 0;
  }

  address {
    font-size: 10px;
  }
}
