@charset "UTF-8";

/* =========================================================
reset
========================================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

a {
  display: block;
}

/* =========================================================
base
========================================================= */
html {
  scroll-padding-top: 100px;
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

main {
  background-color: #fff;
  font: normal 14px/1.8 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-align: left;
  line-height: 1.6;
  color: #333333;
  text-align: justify;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 640px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px #333333;
}

@media screen and (max-width: 550px) {
  body {
    min-width: 100vw;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
}

.bold {
  font-weight: 700;
}

figure {
  line-height: 0;
}

a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}

.mb5 {
  margin-bottom: 5px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

/* =========================================================
layout
========================================================= */
body {
  background-color: #e5f5ff;
  background-size: cover, 100% 100%;
  background-repeat: repeat-y, no-repeat;
  background-position: center top, center;
  min-height: 100vh;
  background-attachment: fixed;
}

.cont-wrap {
  width: 93.75%;
  text-align: center;
  margin: auto;
}

@media screen and (max-width: 640px) {
  main {
    width: 100%;
  }
}

main {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;

}

/*Google Chrome、Safariへの対応*/
main::-webkit-scrollbar {
  display: none;
}

.mv p {
  margin: 5px 15px;
  line-height: 1.4;
}


/* =========================================================
header
========================================================= */

/* =========================================================
mv cta
========================================================= */

.mv img {
  width: 100%;
  display: block;
}

/* =========================================================
common parts
========================================================= */
.yellow {
  background-color: #ffad25;
  padding: 3% 0;
}

.btn_reservation {
  margin: 0 auto 5%;
}

.btn a {
  width: 90%;
  filter: drop-shadow(0px 0px 5px #5b233442);
  margin: auto;
}

.btn a:hover {
  opacity: 1 !important;
  transform: scale(0.97, 0.97);
  /* ボタンを小さくする */
  transition: transform 0.2s ease-in-out;
  /* アニメーション効果 */

}

/* ----------------------------------------------------
    フローティング
---------------------------------------------------- */
.floating_btn {
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  /* position: sticky; */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 0;
  z-index: 1000;
  opacity: 0;
  /* 初期は非表示 */
  pointer-events: none;
  /* 非表示中はクリック不可 */
  transition: opacity 0.4s ease;
}


.floating_btn .btn {
  padding: 0;
  width: 33rem;
}

/* JSで追加されるクラス */
.floating_btn.show {
  opacity: 1;
  pointer-events: auto;
}

.floating_btn a {
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 550px) {
  .floating_btn .btn {
    width: 48%;
  }
}


/* =========================================================
cta
========================================================= */

.cta_txt {
  width: 300px;
}

@media screen and (max-width: 640px) {
  .cta_txt {
    width: 50%;
  }
}

.cta2 {
  position: relative;
  margin-bottom: 30px;
}

.cta2_btn_cont {
  position: absolute;
  width: 90%;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
}

/* =========================================================
section
========================================================= */
section {
  margin-bottom: 30px;
}

.sec00 {
  margin-bottom: 20px;
}

.merit h2 {
  width: 80%;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
}


.problem {
  position: relative;
}

.problem_cont {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: auto;
}




/* =========================================================
voice
========================================================= */
.voice .slider03 {
  width: 95%;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
}

.voice .slider03 .slide-item {
  padding: 0 12px;
}

.voice .slider03 .slick-next {
  right: 0;
}

.voice .slider03 .slick-prev {
  left: 0.5%;
}

.voice .slider-for {
  margin-bottom: 16.5% !important;
}

.voice-btn {
  width: 60%;
  margin: 0 auto 10% auto;
}

/* =========================================================
voice slider03
========================================================= */
.voice h2 {
  text-align: center;
  margin: 0 auto;
  padding-top: 25px;
}

.slider03 .slick-dots li button::before {
  /* border: 1px solid #485e8b; */
  display: none;
}


.slider03 .slick-dots li.slick-current button::before,
.slider03 .slick-dots li.slick-active button::before {
  /* background: #485e8b; */
  display: none;
}

.slider03 .slick-dots li {
  margin: 0 5px;
  display: none;
}

.slider03 .slick-prev {
  /* top: 45%;
  width: clamp(32px, 4vw, 40px);
  height: clamp(32px, 4vw, 40px); */
  display: none;
}

.slider03 .slick-next {
  /* top: 45%;
  width: clamp(32px, 4vw, 40px);
  height: clamp(32px, 4vw, 40px); */
}

.slider03 .slick-prev::before {
  background-color: #ffab257a;
  display: none;
}

.slider03 .slick-next::before {
  background-color: #ffab257a;
  display: none;
}

/* =========================================================
summary
========================================================= */
.summary .cont-wrap {
  border: #0071bc solid 1px;
}

.summary h2 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin: auto;
  color: #fff;
  background-color: #0071bc;
}

.summary .item_ttl {
  width: 170px;
  background-color: #0071bc;
  text-align: left;
  margin-bottom: 10px;
}

.summary h3 {
  padding: 5px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  margin: auto;
}
.summary .cont-box {
  padding: 20px;
  text-align: left;
}

.summary .item {
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .summary h2 {
    font-size: 10vw;
  }
}

.place-ttl-wrap {
  width: 100%;
  padding: 0 0 27px 0;
}


.place-list-item {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 10px;
}

.place-list {
  margin: 30px auto;
}

.place-list-head {
  padding: 3% 4%;
  border: solid #0071bc 3px;
  border-radius: 10px;
  line-height: 1.4;
  cursor: pointer;
}

.place-list-head::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.2em;
  content: "";
}

.place-list-head::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.2em;
  content: "";
}

.place-list-head p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.place-list-head-txt {
  display: inline-block;
  font-size: clamp(15px, 5vw, 20px);
  font-weight: 500;
}

.place-list-head-icon {
  display: inline;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 5%;
}

.place-list-head-icon span::before,
.place-list-head-icon span::after {
  display: inline;
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 2px;
  margin: -4% 0 0 -28%;
  vertical-align: middle;
  background: #0071bc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 640px) {

  .place-list-head-icon span::before,
  .place-list-head-icon span::after {
    margin: -4% 0 0;
  }
}

.place-list-head-icon span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.open .place-list-head-icon span::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.open .place-list-head-icon span::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.place-list-in-list-wrap {
  display: none;
  padding: 3%;
}

.venue-buttons {
  text-align: center;
  margin: auto;
}

.cta_icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;

}

.vbtn {
  width: 90%;
  border: 2px solid #009245;
  background-color: #009245;
  border-radius: 10px;
  padding: 10px 10px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: .15s ease;
  margin-top: 20px;
  font-size: 18px;
}

.vbtn:hover {
  background-color: #0092447e;
  transform: translateY(-1px);
}

/* =========================================================
 form
========================================================= */

/* *{ box-sizing:border-box; } */

.form {
  background-color: #0071bc;
  padding: 3.5% 0;
}

.card {
  border: 8px solid #0071bc;
  padding: 18px 3% 22px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, .75);
  background: #fff;
}

.form h2 {
  margin: 6px 0 8px;
  text-align: center;
  color: #0071bc;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: .02em;
}

.lead {
  text-align: center;
  font-size: 13px;
  margin: 0 0 14px;
  line-height: 1.6;
}

.field {
  margin-top: 20px;
  text-align: left;
}

.label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 17px;
}

.label-row a{
  border-bottom: #333 1px solid;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}

.badge.req {
  background: #ff4935;
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.35;
}

.choice input {
  transform: scale(1.05);
  margin-top: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: 1px solid #666666;
  background: #fcfcfc;
  padding: 10px 12px;
  font-size: 15px;
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  height: 65px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(11, 99, 168, .12);
  background: #fff;
}

.hint {
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.5;
}

.alert {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 10px;
  background: #fff2f2;
  border: 1px solid #ffc5c5;
  color: #b00020;
  font-size: 13px;
  line-height: 1.6;
}

.privacy-box {
  margin-top: 14px;
}

.submit {
  margin-top: 18px;
}

button[type="submit"] {
  width: 100%;
  height: 100px;
  border: none;
  /* border-radius: 10px; */
  background: #009245;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  transition: .15s ease;
}

button[type="submit"]:active {
  transform: translateY(1px);
}

/* =========================================================
footer
========================================================= */
.footer-content {
  padding: 2% 0;
}

.footer .logo{
  width: 120px;
  text-align: center;
  margin: 0 auto 20px;
}

.footer-info {
  text-align: center;
  font-size: clamp(13px, 3vw, 17px);
}

.footer-info a {
  text-decoration: underline;
  transition: 0.5s;
  display: inline-block;
  margin: 0 clamp(20px, 3.5vw, 25px);
}

.footer-info a:hover {
  text-decoration: none;
}

.footer-copy {
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
}




/* =========================================================
thanks
========================================================= */

.thanks{
  padding: 3%;
  background-color: #fff;
}
.thanks h1{
  font-weight: 900;
  margin-bottom: 50px;
  font-size: 30px;
  
}


@media screen and (max-width: 640px) {
.thanks h1{
  font-size: 4vw;
    margin-bottom: 30px;
  
}
}