@charset "UTF-8";
/* tektur-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Tektur";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/tektur-v3-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  background-color: #F6F6F6;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

header {
  z-index: 15;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input[type=submit] {
  border-radius: 0;
}

/*===============================================
# common
=================================================*/
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  position: relative;
  font-size: 16px;
  color: #000;
  line-height: 2;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  background-color: #fff;
  font-style: normal;
  font-weight: 500;
  font-family: "montserrat", sans-serif;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-family: "lato", sans-serif;
  font-family: "noto-sans-cjk-jp", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media screen and (max-width: 1649px) {
  .container {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

a:hover {
  opacity: 1;
  transition: all 0.3s;
}

.btn {
  display: grid;
  place-items: center;
  max-width: 355px;
  width: 100%;
  height: 72px;
  margin: 0 auto;
  border: solid 1px #11315B;
  border-radius: 36px;
  background: #fff;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn {
    height: 64px;
  }
}
.btn:hover {
  background: #000;
  border: solid 1px #000;
}
.btn:hover .btn-text {
  color: #fff;
  transition: all 0.3s;
}
.btn-text {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .btn-text {
    font-size: 16px;
  }
}

.title {
  writing-mode: vertical-lr;
  line-height: 1;
  font-family: "montserrat", sans-serif;
  font-weight: 800;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 42px;
  }
}
.title-jp {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.25;
  font-family: "noto-sans-cjk-jp", sans-serif;
}
@media screen and (max-width: 767px) {
  .title-jp {
    font-size: 22px;
  }
}
.title-center {
  text-align: center;
  line-height: 1;
  font-family: "montserrat", sans-serif;
  font-weight: 800;
  font-size: 50px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .title-center {
    font-size: 42px;
  }
}
.title-black {
  color: #000;
}
@media screen and (max-width: 767px) {
  .title-sp {
    writing-mode: horizontal-tb;
    margin-bottom: 30px;
  }
}

.subtitle {
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 16px;
  }
}
.subtitle-color {
  color: #000;
}

/*===============================================
# フェードイン
=================================================*/
/*フェードインアニメ*/
/*左から右にフェードイン*/
.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 0.9s;
}

.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s;
}

.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

.down-to-top:nth-of-type(2) {
  transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}

/*===============================================
# 画像、ボタンの背景移動
=================================================*/
.mask_wrap {
  display: table;
  overflow: hidden;
  width: 0;
}

.mask-wrap .mask {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
  margin-bottom: 0;
  left: -1000%;
  overflow: hidden;
}

.mask-wrap .mask-bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

div.colorbox {
  position: relative;
  width: 80%;
  margin: 30px auto 30px;
}

div.colorbox div.color {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
}

div.colorbox img {
  display: block;
  width: 100%;
}

/*===============================================
# header
=================================================*/
.header {
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 5px 16px 5px 30px;
  }
}
.header.change-color {
  background-color: rgba(17, 49, 91, 0.8);
  transition: 0.5s;
  opacity: 1;
}
.header-logo {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 120px;
  }
}
.header-logo img {
  display: block;
}
.header-reservation {
  width: 188px;
  height: 53px;
  border: solid 2px #fff;
  display: grid;
  place-items: center;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .header-reservation {
    width: 164px;
    height: 38px;
  }
}
.header-reservation.change-color {
  visibility: visible;
}
.header-reservation:hover {
  background: #fff;
}
.header-reservation:hover .header-reservation-text {
  color: #10315B;
}
.header-reservation:hover .header-reservation-text::before {
  color: #10315B;
  background: url(../images/icon_calendar_color.png) no-repeat;
  background-size: 100%;
}
.header-reservation-text {
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-reservation-text {
    font-size: 15px;
  }
}
.header-reservation-text::before {
  position: absolute;
  content: "";
  background: url(../images/icon_calendar_white.png) no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .header-reservation-text::before {
    width: 22px;
    height: 22px;
  }
}

/*===============================================
# mv
=================================================*/
.mv {
  width: 100%;
  height: 100vh;
  position: relative;
}
.mv-sp {
  position: absolute;
  bottom: -50%;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}
.mv-item {
  position: absolute;
  z-index: 2;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .mv-item {
    padding: 0 30px;
    top: 70%;
  }
}
.mv-copy {
  width: 390px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv-copy {
    max-width: 312px;
    width: 100%;
  }
}
.mv-btn {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .mv-btn {
    margin-top: 24px;
  }
}
.mv-01 {
  background: url(../images/mv_01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .mv-01 {
    background: url(../images/mv_sp_01.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.mv-02 {
  background: url(../images/mv_02.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .mv-02 {
    background: url(../images/mv_sp_02.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.mv-03 {
  background: url(../images/mv_03.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .mv-03 {
    background: url(../images/mv_sp_03.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.mv-04 {
  background: url(../images/mv_04.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .mv-04 {
    background: url(../images/mv_sp_04.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.mv .swiper {
  width: 100%;
  height: 100%;
}
.mv .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*===============================================
# concept
=================================================*/
.concept {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .concept {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.concept-wrap {
  display: flex;
}
.concept-inner {
  margin-left: 130px;
}
@media screen and (max-width: 1279px) {
  .concept-inner {
    margin-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .concept-inner {
    margin-left: 20px;
  }
}
.concept-text {
  font-size: 20px;
  line-height: 1.8;
  margin-top: 24px;
  max-width: 738px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .concept-text {
    font-size: 16px;
  }
}
.concept-images {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .concept-images {
    margin-top: 50px;
  }
}
.concept-img {
  width: calc((100% - 160px) / 3);
  margin-right: 80px;
}
@media screen and (max-width: 1279px) {
  .concept-img {
    width: calc((100% - 80px) / 3);
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .concept-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.concept-img:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .concept-img:nth-last-child(1) {
    margin-bottom: 0;
  }
}

/*===============================================
# tent
=================================================*/
.tent {
  background: #F0F0F0;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .tent {
    padding: 60px 0;
  }
}
.tent-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .tent-wrap {
    display: block;
  }
}
.tent-inner {
  margin-left: 137px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .tent-inner {
    margin-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .tent-inner {
    margin-left: 0px;
  }
}
.tent-text {
  font-weight: bold;
  margin-top: 5px;
}
.tent-btn {
  max-width: 261px;
  height: 53px;
  margin-left: 0;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .tent-btn {
    margin: 20px auto 0;
  }
}
.tent-item {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
@media screen and (max-width: 1023px) {
  .tent-item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tent-item {
    margin-top: 30px;
  }
}
.tent-content {
  max-width: 422px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .tent-content {
    max-width: none;
  }
}
.tent-content-number {
  font-family: "Tektur";
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .tent-content-number {
    font-size: 30px;
  }
}
.tent-content-title {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 0 12px;
  margin-bottom: 24px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .tent-content-title {
    font-size: 18px;
  }
}
.tent-img {
  max-width: 458px;
  width: 100%;
  margin-left: 40px;
}
@media screen and (max-width: 1023px) {
  .tent-img {
    max-width: none;
    margin-left: 0;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .tent-img {
    margin-top: 30px;
  }
}
.tent .swiper {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin-top: 80px;
}
@media screen and (max-width: 1023px) {
  .tent .swiper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .tent .swiper {
    margin-top: 30px;
  }
}
.tent .swiper-button-prev,
.tent .swiper-button-next {
  height: 20px;
  width: 20px;
}
.tent .swiper-button-prev,
.tent .swiper-button-next {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 18px;
  margin: auto;
  width: 10px;
  top: 40%;
}
@media screen and (max-width: 767px) {
  .tent .swiper-button-prev,
  .tent .swiper-button-next {
    width: 8px;
    height: 16px;
    top: 35%;
  }
}
.tent .swiper-button-prev {
  background-image: url(../images/prev.png);
  left: 0;
}
.tent .swiper-button-next {
  background-image: url(../images/next.png);
  right: 0;
}
.tent .swiper-pagination {
  width: 100%;
  position: static;
  margin-top: 10px;
}
.tent .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 2px;
  background: rgba(17, 49, 91, 0.6);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .tent .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.tent .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .tent .swiper-pagination-bullet-active {
    width: 24px;
  }
}
@media screen and (max-width: 767px) {
  .tent-pc {
    display: none;
  }
}
.tent-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .tent-sp {
    display: flex;
  }
}
.tent-sp-inner {
  margin-left: 20px;
}

/*===============================================
# point
=================================================*/
.point {
  background: #CB8645;
  padding-top: 100px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .point {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.point-wrap {
  display: flex;
  flex-wrap: wrap;
}
.point-item {
  width: calc((100% - 80px) / 2);
  margin-right: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .point-item {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
  }
}
.point-item:nth-child(even) {
  margin-right: 0;
}
.point-number {
  font-family: "Tektur";
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .point-number {
    font-size: 48px;
  }
}
.point-text {
  color: #fff;
  padding: 0 38px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .point-text {
    padding: 0 22px;
    margin-top: 20px;
  }
}

/*===============================================
# plan
=================================================*/
.plan {
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
}
@media screen and (max-width: 767px) {
  .plan {
    padding: 60px 0 40px;
  }
}
.plan-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .plan-wrap {
    display: block;
  }
}
.plan-inner {
  margin-left: 137px;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .plan-inner {
    margin-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .plan-inner {
    margin-left: 0px;
  }
}
.plan-subtitle {
  color: #000;
  text-align: left;
}
.plan-content {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 1023px) {
  .plan-content {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .plan-content {
    margin-top: 40px;
  }
}
.plan-item {
  max-width: 648px;
  width: 100%;
  margin-right: 40px;
}
@media screen and (max-width: 1023px) {
  .plan-item {
    margin-right: 0;
  }
}
.plan-item-day {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: #000;
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .plan-item-day {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 8px;
  }
}
.plan-item-wrap {
  display: flex;
}
.plan-item-inner {
  position: relative;
}
.plan-item-btn {
  max-width: 261px;
  height: 53px;
  position: absolute;
  top: 208px;
  left: 179px;
}
@media screen and (max-width: 858px) {
  .plan-item-btn {
    top: 24.24vw;
    left: 20.86vw;
  }
}
@media screen and (max-width: 767px) {
  .plan-item-btn {
    top: 29vw;
    left: 25vw;
    max-width: 36vw;
    height: 35px;
  }
}
@media screen and (max-width: 550px) {
  .plan-item-btn {
    top: 27vw;
    left: 23vw;
  }
}
@media screen and (max-width: 767px) {
  .plan-item-btn .btn-text {
    font-size: 3vw;
  }
}
.plan-images {
  width: calc(100% - 648px);
}
@media screen and (max-width: 1023px) {
  .plan-images {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .plan-images {
    display: block;
    margin-top: 20px;
  }
}
.plan-images-top {
  margin-top: 88px;
}
@media screen and (max-width: 1023px) {
  .plan-images-top {
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .plan-images-top {
    margin-top: 20px;
  }
}
.plan-img {
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .plan-img {
    width: 48%;
  }
}
@media screen and (max-width: 550px) {
  .plan-img {
    width: 100%;
    margin-bottom: 20px;
  }
}

/*===============================================
# dog
=================================================*/
.dog {
  background: url(../images/bg_dog.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .dog {
    padding: 60px 0;
  }
}
.dog-wrap {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 27px;
  padding: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .dog-wrap {
    padding: 40px 20px;
  }
}
.dog-title {
  background-image: linear-gradient(0deg, #f0c431 18px, transparent 18px);
  font-size: 36px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .dog-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .dog-title {
    font-size: 5vw;
    background-image: linear-gradient(0deg, #f0c431 10px, transparent 10px);
  }
}
.dog-subtitle {
  font-size: 18px;
  margin-top: 35px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .dog-subtitle {
    font-size: 14px;
    margin-top: 20px;
  }
}
.dog-item {
  max-width: 493px;
  width: 100%;
  margin: 0 auto 12px;
  border: solid 1px #707070;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  line-height: 1.1;
}
.dog-item-text {
  width: 133px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .dog-item-text {
    width: 100px;
  }
}
.dog-item-text::before {
  position: absolute;
  content: "";
  background: url(../images/icon_check.png) no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  left: -15px;
}
.dog-item-description {
  width: calc(100% - 133px);
  text-align: left;
  border-left: solid 1px #707070;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .dog-item-description {
    width: calc(100% - 100px);
    padding-left: 8px;
  }
}
.dog-item-description-bold {
  font-weight: bold;
}
.dog-item-description-small {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .dog-item-description-small {
    font-size: 12px;
  }
}
.dog-text {
  font-size: 14px;
  line-height: 1.71;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .dog-text {
    font-size: 12px;
    text-align: left;
  }
}
.dog-text-link {
  color: #2BA4BB;
  border-bottom: solid 1px #2BA4BB;
  opacity: 1;
}
.dog-text-link:hover {
  opacity: 0.7;
}

/*===============================================
# reserve
=================================================*/
.reserve {
  background: #2BA4BB;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .reserve {
    padding: 60px 0;
  }
}
.reserve-subtitle {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .reserve-subtitle {
    margin-bottom: 40px;
  }
}
.reserve-item {
  border: solid 1px #707070;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 40px;
  padding: 24px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .reserve-item {
    display: block;
    padding: 20px;
    margin-bottom: 30px;
  }
}
.reserve-item:nth-child(1) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .reserve-item:nth-child(1) {
    margin-top: 40px;
  }
}
.reserve-item-left {
  display: flex;
  align-items: center;
  width: 312px;
}
@media screen and (max-width: 767px) {
  .reserve-item-left {
    width: 100%;
  }
}
.reserve-item-step {
  font-family: "montserrat", sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .reserve-item-step {
    margin-right: 20px;
  }
}
.reserve-item-step-number {
  font-family: "Tektur";
  font-size: 40px;
  font-weight: bold;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .reserve-item-step-number {
    font-size: 30px;
  }
}
.reserve-item-title {
  font-size: 20px;
  font-weight: bold;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .reserve-item-title {
    font-size: 16px;
    padding-right: 0;
  }
}
.reserve-item-text {
  border-left: solid 1px #707070;
  padding-left: 40px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  width: calc(100% - 312px);
}
@media screen and (max-width: 767px) {
  .reserve-item-text {
    width: 100%;
    margin-top: 20px;
    border-left: none;
    border-top: solid 1px #707070;
    padding-top: 20px;
    padding-left: 0;
  }
}
.reserve-btn {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .reserve-btn {
    margin-top: 50px;
  }
}

/*===============================================
# faq
=================================================*/
.faq {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
}
.faq-subtitle {
  text-align: center;
  margin-top: 12px;
}

.accordion-area {
  width: 100%;
  border-top: solid 1px #CBCBCB;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .accordion-area {
    margin-top: 40px;
  }
}

.accordion-area section {
  border-bottom: solid 1px #CBCBCB;
}

/*アコーディオンタイトル*/
.accordion-title {
  position: relative;
  cursor: pointer;
  padding: 27px 89px 27px 98px;
  transition: all 0.5s ease;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.33;
  color: #000;
}
@media screen and (max-width: 767px) {
  .accordion-title {
    font-size: 15px;
    padding: 12px 29px 12px 47px;
  }
}
.accordion-title::before {
  position: absolute;
  content: "Q";
  font-family: "noto-sans", sans-serif;
  font-weight: bold;
  font-size: 28px;
  color: #fff;
  background: #CB8645;
  border-radius: 50%;
  left: 24px;
  top: 19px;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .accordion-title::before {
    font-size: 14px;
    left: 5px;
    top: 8px;
    width: 30px;
    height: 30px;
  }
}

/*アイコンの＋と×*/
.accordion-border::before {
  background-color: #CB8645;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  display: block;
  position: absolute;
  content: "";
  right: 60px;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .accordion-border::before {
    right: 10px;
    width: 12px;
    height: 2px;
  }
}

.accordion-border::after {
  background-color: #CB8645;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  right: 60px;
  transform: rotate(90deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .accordion-border::after {
    right: 10px;
    width: 12px;
    height: 2px;
  }
}

.accordion-title.close .accordion-border::after {
  transform: rotate(180deg);
  transition: 0.3s;
}

/*アコーディオンで現れるエリア*/
.accordion-box {
  display: none;
  padding: 18px 89px 27px 98px;
  line-height: 1.33;
  font-size: 18px;
  letter-spacing: 0.2em;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .accordion-box {
    font-size: 15px;
    padding: 9px 29px 12px 47px;
  }
}
.accordion-box::before {
  position: absolute;
  content: "A";
  font-family: "noto-sans", sans-serif;
  font-weight: bold;
  font-size: 28px;
  color: #fff;
  background: #2BA4BB;
  border-radius: 50%;
  left: 24px;
  top: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .accordion-box::before {
    font-size: 14px;
    width: 30px;
    height: 30px;
    left: 5px;
    top: 5px;
  }
}

/*===============================================
# reserve02
=================================================*/
.reserve02 {
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reserve02 {
    padding: 60px 0;
  }
}
.reserve02-text {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .reserve02-text {
    text-align: left;
  }
}
.reserve02-images {
  display: flex;
}
@media screen and (max-width: 767px) {
  .reserve02-images {
    flex-wrap: wrap;
  }
}
.reserve02-img {
  margin-right: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 1023px) {
  .reserve02-img {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .reserve02-img {
    margin-top: 20px;
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .reserve02-img:nth-child(2) {
    margin-right: 0;
  }
}
.reserve02-img:nth-last-child(1) {
  margin-right: 0;
}
.reserve02-btn {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .reserve02-btn {
    margin-top: 40px;
  }
}

/*===============================================
# about
=================================================*/
.about {
  padding-top: 100px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.about-wrap {
  display: flex;
}
.about-inner {
  display: flex;
  justify-content: space-between;
  margin-left: 137px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .about-inner {
    margin-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  .about-inner {
    margin-left: 20px;
    display: block;
  }
}
.about-content {
  max-width: 366px;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .about-content {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-content {
    max-width: none;
    margin-right: 0;
  }
}
.about-map {
  max-width: 513px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about-map {
    max-width: none;
    height: 300px;
    margin-top: 40px;
  }
}
.about-map iframe {
  width: 100%;
  height: 100%;
}
.about-name {
  margin-bottom: 16px;
}
.about-address {
  margin-bottom: 16px;
}
.about-time {
  margin-bottom: 16px;
}
.about-item {
  display: flex;
}
.about-item-last {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .about-item-last {
    margin-top: 6px;
  }
}
.about-item-icon {
  width: 70px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .about-item-icon {
    width: 50px;
  }
}
.about-item-text {
  width: 280px;
  line-height: 1.5;
  font-size: 14px;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .about-item-text {
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
  }
}
.about-item-text-bold {
  font-weight: bold;
  display: block;
  font-size: 16px;
}
.about-notes {
  padding-left: 38px;
  margin-top: 16px;
  font-size: 20px;
  border-bottom: solid 1px #000;
  position: relative;
}
.about-notes::before {
  position: absolute;
  content: "";
  background: url(../images/icon_tent.png) no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-notes-text {
  font-size: 14px;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .about-notes-text {
    font-size: 12px;
  }
}

/*===============================================
# footer
=================================================*/
.footer {
  background: #10315B;
  padding-top: 80px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 60px;
  }
}
.footer-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .footer-wrap {
    display: block;
    text-align: center;
  }
}
.footer-inner {
  max-width: 742px;
  width: 100%;
  border-right: solid 1px #fff;
  height: 100%;
  padding-bottom: 39px;
  padding-top: 39px;
}
@media screen and (max-width: 1023px) {
  .footer-inner {
    max-width: none;
    border-right: none;
  }
}
.footer-logo {
  width: 360px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .footer-logo {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 40px;
  }
}
.footer-address {
  color: #fff;
  margin-bottom: 40px;
}
.footer-link {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .footer-link {
    display: block;
  }
}
.footer-sns {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .footer-sns {
    justify-content: center;
  }
}
.footer-sns-icon {
  display: block;
  width: 40px;
  margin-right: 24px;
}
.footer-sns-icon:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .footer-sns-icon {
    margin: 0 14px;
  }
}
.footer-btn {
  margin-left: 69px;
}
@media screen and (max-width: 1023px) {
  .footer-btn {
    margin: 40px auto 0;
  }
}
.footer-nav {
  margin-left: 87.5px;
}
@media screen and (max-width: 1023px) {
  .footer-nav {
    margin-left: 0;
  }
}
.footer-nav-item-link {
  color: #fff;
  font-weight: bold;
  display: block;
  margin-bottom: 14px;
}
.footer-nav-item-link:hover {
  opacity: 0.7;
}
.footer-copyright {
  text-align: center;
  margin-top: 80px;
  color: #fff;
  background: #000;
  font-weight: 400;
  font-family: "lato", sans-serif;
  font-size: 12px;
  padding: 13px;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    margin-top: 60px;
  }
}

/*===============================================
# 404
=================================================*/
#content > .inner {
  display: block;
}

.entry-404 {
  padding-bottom: 240px;
  padding-top: 180px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entry-404 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.entry-404-head {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .entry-404-head {
    font-size: 40px;
  }
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .entry-404-lead {
    font-size: 20px;
  }
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  line-height: 2.1;
}

.entry-404-btn {
  margin-top: 58px;
}

.entry-404-btn .btn {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */