@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

*:focus {
  outline: none;
}

body,
html,
div,
p,
span,
blockquote,
u,
s,
i,
b,
table,
tr,
th,
td,
ul,
ol,
dl,
li,
dt,
dd,
strong,
h1,
h2,
h3,
h4,
h5,
em,
header,
footer,
nav,
aside,
section,
input,
select,
option,
textarea,
button {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: justify;
  text-justify: inter-ideograph;
  color: inherit;
}

body {
  font-weight: 400;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #1A1A1A;
  background: #F9F5F0;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

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

a {
  color: #1A1A1A;
  line-height: 1;
  text-decoration: none;
  transition-property: all;
  transition: 0.3s linear;
}

table {
  border-collapse: collapse;
}

.wrap {
  width: 100vw;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1090px;
}

.black {
  color: #1A1A1A !important;
}

.white {
  color: #fff !important;
}

.green {
  color: #768F6D !important;
}

.bg-black {
  background: #1A1A1A !important;
}

.bg-white {
  background: #fff !important;
}

.bg-green {
  background: #768F6D !important;
}

.bg-cream {
  background: #F9F5F0 !important;
}

.small {
  font-size: 0.8rem !important;
}

.normal {
  font-size: 1rem !important;
}

.big {
  font-size: 1.5rem !important;
}

.large {
  font-size: 2rem !important;
}

@media (max-width: 768px) {
  .sp-normal {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .sp-small {
    font-size: 0.8rem !important;
  }
}

.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

@media (max-width: 768px) {
  .sp-center {
    text-align: center !important;
  }
}

.bold {
  font-weight: 700 !important;
}

.en {
  font-family: sofia-pro, sans-serif;
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

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

@media (min-width: 429px) {
  .middle-pc-only {
    display: block;
  }
}
@media (max-width: 428px) {
  .middle-pc-only {
    display: none;
  }
}

.middle-only {
  display: none;
}
@media (max-width: 428px) {
  .middle-only {
    display: block;
  }
}

.sec_padi {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .sec_padi {
    padding: 80px 0;
  }
}

.sec_padi_short {
  padding: 60px 0;
}

.sec_ttl_wrap {
  margin-bottom: 80px;
  color: #fff;
  font-weight: 700;
}
.sec_ttl_wrap h2, .sec_ttl_wrap h1 {
  text-align: center;
  line-height: 1;
  font-size: 4rem;
  font-family: sofia-pro, sans-serif;
}
.sec_ttl_wrap p {
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .sec_ttl_wrap {
    margin-bottom: 60px;
  }
  .sec_ttl_wrap h1, .sec_ttl_wrap h2 {
    font-size: 3rem;
  }
}

.sec_subttl, .sec_subttl_black {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-align: center;
}
.sec_subttl::before, .sec_subttl::after, .sec_subttl_black::before, .sec_subttl_black::after {
  content: "";
  display: block;
  width: min(10%,100px);
  height: 3px;
  background: #fff;
}
.sec_subttl::before, .sec_subttl_black::before {
  margin-right: 15px;
}
.sec_subttl::after, .sec_subttl_black::after {
  margin-left: 15px;
}

.sec_subttl_black::before, .sec_subttl_black::after {
  background: #1A1A1A;
}

.button {
  position: relative;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  width: min(80%,350px);
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
}
.button p {
  text-align: center;
}

.button_white {
  color: #768F6D;
  background: #fff;
  border: 2px solid #fff;
  transition: all 0.4s;
}
.button_white::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateX(0);
  -webkit-transform: translateY(-50%) translateX(-50%);
  height: 30px;
  width: 13px;
  background-image: url(../img/arrow_right_green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s;
}
.button_white:hover {
  color: #fff;
  background: #768F6D;
}
.button_white:hover::after {
  right: 10px;
  background-image: url(../img/arrow_right_white.svg);
}
@media (max-width: 429px) {
  .button_white::after {
    right: 7px;
  }
}

.button_green {
  color: #fff;
  background: #768F6D;
  border: 2px solid #768F6D;
  transition: all 0.4s;
}
.button_green::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateX(0);
  -webkit-transform: translateY(-50%) translateX(-50%);
  height: 30px;
  width: 13px;
  background-image: url(../img/arrow_right_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s;
}
.button_green:hover {
  color: #768F6D;
  background: #fff;
}
.button_green:hover::after {
  right: 10px;
  background-image: url(../img/arrow_right_green.svg);
}
@media (max-width: 429px) {
  .button_green::after {
    right: 7px;
  }
}

.button_plain {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 10px 5px;
  width: 80%;
  text-align: center;
  color: #1A1A1A;
  font-size: 0.8rem;
  border: 2px solid #1A1A1A;
  border-radius: 30px;
  background: transparent;
  transition: all 0.4s;
}
.button_plain::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateX(0);
  -webkit-transform: translateY(-50%) translateX(-50%);
  height: 20px;
  width: 8px;
  background-image: url(../img/arrow_right_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s;
}
.button_plain:hover {
  color: #fff;
  background: #1A1A1A;
}
.button_plain:hover::after {
  right: 5px;
  background-image: url(../img/arrow_right_white.svg);
}

.google_map_button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0;
  padding: 10px 5px;
  width: 200px;
  text-align: center;
  color: #1A1A1A;
  font-size: 0.8rem;
  border: 2px solid #1A1A1A;
  border-radius: 30px;
  background: transparent;
  transition: all 0.4s;
}
.google_map_button::after {
  content: "";
  display: block;
  margin-left: 10px;
  height: 15px;
  width: 11px;
  background-image: url(../img/pin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s;
}
.google_map_button:hover {
  color: #fff;
  background: #1A1A1A;
}
.google_map_button:hover::after {
  background-image: url(../img/pin_white.svg);
}
@media (max-width: 429px) {
  .google_map_button {
    margin: 30px auto 0;
  }
}

.notfound_ttl {
  text-align: center;
  font-weight: 700;
  font-size: 4rem;
}
@media (max-width: 768px) {
  .notfound_ttl {
    font-size: clamp(30px, 8vw, 4rem);
  }
}

.option_caution_table {
  margin-top: 20px;
  font-size: 0.8rem;
}

.camp_wrap {
  margin-bottom: 80px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .camp_wrap {
    margin-bottom: 60px;
  }
}
.camp_wrap .camp_ttl {
  display: table;
  position: relative;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
}
.camp_wrap .camp_ttl::before, .camp_wrap .camp_ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 3px;
  height: 100px;
  background: #fff;
}
.camp_wrap .camp_ttl::before {
  left: -50px;
  transform: rotate(-20deg);
}
.camp_wrap .camp_ttl::after {
  right: -50px;
  transform: rotate(20deg);
}
@media (max-width: 768px) {
  .camp_wrap .camp_ttl {
    font-size: 1.4rem;
  }
  .camp_wrap .camp_ttl::before, .camp_wrap .camp_ttl::after {
    height: 70px;
  }
  .camp_wrap .camp_ttl::before {
    left: -20px;
  }
  .camp_wrap .camp_ttl::after {
    right: -20px;
  }
}
.camp_wrap p {
  margin: 20px 0 40px;
}
@media (max-width: 768px) {
  .camp_wrap p {
    margin: 20px 0;
  }
}
.camp_wrap a:hover {
  opacity: 0.6;
}

.camp_img {
  display: block;
  width: 100%;
}

.camp_text {
  margin-top: 15px;
}

.bogo-language-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.bogo-language-switcher .ja {
  order: 1;
}

.bogo-language-switcher .en-US {
  order: 2;
}
.bogo-language-switcher .en-US a {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .bogo-language-switcher .en-US a {
    margin-top: -5px;
    font-size: 1.7rem;
  }
}

.bogo-language-name a {
  color: #DBD7D3;
  font-size: 1.5rem;
}
.bogo-language-name .current {
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .bogo-language-name a {
    color: #707070;
  }
  .bogo-language-name .current {
    color: #fff;
    border-bottom: 2px solid #fff;
  }
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 15px 30px;
}
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
}

.header_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.header_menu li {
  padding-left: 15px;
}
.header_menu a {
  display: block;
}
@media (max-width: 768px) {
  .header_menu {
    width: 100%;
  }
  .header_menu li {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .header_menu li a {
    padding: 10px 0;
  }
}

.header_bars span, .header_bars_menu span {
  display: block;
  margin: 5px 0;
  width: 30px;
  height: 3px;
  background: #1A1A1A;
  border-radius: 5px;
  transition: 0.6s;
}
.header_bars:hover, .header_bars_menu:hover {
  cursor: pointer;
}

.header_bars_menu {
  position: fixed;
  top: 30px;
  right: 20px;
}

@media (max-width: 768px) {
  .header_bars_menu.active span {
    background: #fff;
  }
  .header_bars_menu.active span:nth-child(1) {
    margin-top: 15px;
    transform: rotate(40deg);
  }
  .header_bars_menu.active span:nth-child(2) {
    opacity: 0;
  }
  .header_bars_menu.active span:nth-child(3) {
    margin-top: -16px;
    transform: rotate(-40deg);
  }
}

.header_logo {
  display: block;
  width: 120px;
}
.header_logo img {
  width: 100px;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #768F6D;
    z-index: 10;
  }
}

.nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid #1A1A1A;
}
.nav_list .nav_menu {
  display: inline-block;
  margin: 0 10px;
}
.nav_list .menu_en {
  font-weight: 700;
}
.nav_list .menu_ja {
  margin-top: 8px;
  font-size: 12px;
}

.nav_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 20px;
}
.nav_sns a {
  display: table;
  margin: 0 10px;
}

.nav_lang {
  padding: 0 15px;
}
.nav_lang a {
  margin: 0 3px;
  font-size: 1.2rem;
  font-weight: 700;
}

.reserve_button {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: 10px;
  padding: 20px 30px;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 30px 0 0 30px;
}
.reserve_button .reserve_button_text {
  margin-left: 20px;
}
.reserve_button .reserve_button_text .reserve_button_en {
  font-size: 14px;
}
.reserve_button .reserve_button_text .reserve_button_ja {
  margin-top: 10px;
  font-size: 12px;
}
.reserve_button .reserve_button_text p {
  color: #fff;
  text-align: center;
}

.sp-menu {
  display: none;
}

.sp-menu_wrap .logo {
  display: block;
  margin: 0 auto 40px;
  width: 200px;
}
.sp-menu_wrap .language_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.sp-menu_wrap .language_wrap a {
  display: inline-block;
  padding: 5px;
  font-weight: 700;
}
.sp-menu_wrap .menu_list {
  margin: 0 auto;
  max-width: 300px;
}
.sp-menu_wrap .menu_list li:nth-child(1) {
  border-top: 1px solid #fff;
}
.sp-menu_wrap .menu_list a {
  display: block;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #fff;
}
.sp-menu_wrap .button {
  margin: 40px auto;
}
.sp-menu_wrap .sns_wrap_sp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.sp-menu_wrap .sns_wrap_sp a {
  display: inline-block;
}
.sp-menu_wrap .sns_wrap_sp a:nth-child(1) {
  margin-right: 10px;
}
.sp-menu_wrap .sns_wrap_sp a:nth-child(2) {
  margin-left: 10px;
}

.access_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 429px) {
  .access_wrap {
    flex-direction: column-reverse;
  }
}

.access_info {
  width: 46%;
}
.access_info dl:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 429px) {
  .access_info {
    margin-top: 20px;
    width: 100%;
  }
}

.googlemap {
  width: 50%;
}
@media (max-width: 429px) {
  .googlemap {
    width: 100%;
    height: 300px;
  }
}

footer {
  padding: 80px 0;
  background: #768F6D;
}

.footer_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto;
  max-width: 900px;
}
@media (max-width: 429px) {
  .footer_wrap {
    justify-content: center;
  }
}

.footer_logo {
  max-width: 200px;
}
@media (max-width: 429px) {
  .footer_logo {
    display: block;
    margin: 0 auto;
  }
}

.footer_yamano_logo {
  margin-top: 20px;
  max-width: 200px;
}

.footer_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 40px;
}
.footer_info li, .footer_info a {
  color: #fff;
}
.footer_info .footer_info_left ul:nth-child(n+2) {
  margin-top: 20px;
}
.footer_info .footer_info_right {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .footer_info .footer_info_right {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 768px) {
  .footer_info {
    display: block;
  }
}

.footer_sns li:nth-child(n+2) {
  margin-top: 8px;
}
.footer_sns a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.footer_sns a::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer_sns .footer_insta::after {
  background-image: url(../img/insta_white.svg);
}
.footer_sns .footer_facebook::after {
  background-image: url(../img/facebook_white.svg);
}
.footer_sns .footer_youtube::after {
  background-image: url(../img/youtube.svg);
}
.footer_sns .footer_tiktok::after {
  background-image: url(../img/tiktok.svg);
}

.footer_menu_wrap {
  padding: 50px 0 40px;
}
.footer_menu_wrap a {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
.footer_menu_wrap a:nth-child(2) {
  margin: 0 30px;
}
@media (max-width: 429px) {
  .footer_menu_wrap {
    padding: 50px 0;
  }
}

.footer_button_wrap a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 0 0 auto;
  padding: 20px;
  width: 200px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  border: 2px solid #fff;
  border-radius: 30px;
  background: #768F6D;
  transition: all 0.4s;
}
.footer_button_wrap a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  display: block;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  transition: all 0.4s;
}
.footer_button_wrap a:hover {
  color: #768F6D;
  background: #fff;
}
.footer_button_wrap a:hover:nth-child(1)::before {
  background-image: url(../img/calendar_green.svg);
}
.footer_button_wrap a:hover:nth-child(2)::before {
  background-image: url(../img/surfing_green.svg);
}
.footer_button_wrap a:nth-child(1)::before {
  background-image: url(../img/calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer_button_wrap a:nth-child(2) {
  margin-top: 20px;
}
.footer_button_wrap a:nth-child(2)::before {
  width: 25px;
  height: 25px;
  background-image: url(../img/surfing.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 429px) {
  .footer_button_wrap a {
    margin: 0 auto;
  }
}

.totop {
  display: table;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.totop img {
  width: 25px;
}
.totop:hover {
  cursor: pointer;
}

.searchform {
  position: relative;
  width: 327px;
}
.searchform input {
  width: 100%;
  padding: 12px 59px 12px 12px;
  border: 1px solid #1A1A1A;
}
.searchform button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
}
.searchform button:hover {
  cursor: pointer;
}
.searchform button img {
  width: 25px;
}

.breadcrumb {
  padding: 6px 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb ul li::after {
  content: "»";
  margin: 0 10px;
}
.breadcrumb ul li:last-child::after {
  display: none;
}

article h2 {
  margin-top: 100px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.5rem;
}
article h3 {
  margin-top: 60px;
  padding: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}
article h4 {
  margin-top: 40px;
  font-weight: 700;
}
article p {
  margin-top: 30px;
  line-height: 2;
}
article a {
  text-decoration: underline;
}
article a:hover {
  text-decoration: none;
}
article .wp-block-table {
  margin-right: 10px;
  margin-left: 10px;
}
article table {
  min-width: 100%;
  border-bottom: 2px solid #dfdfdf;
}
article table tr:nth-child(odd) {
  background: #dfdfdf;
}
article table th, article table td {
  padding: 10px;
}
article table th {
  font-weight: 700;
  color: #fff;
  background: #acacac;
}
article strong {
  font-weight: 700;
  font-style: normal;
}
article em {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(transparent 60%, #acacac 60%);
}
article ul, article ol {
  margin-top: 30px;
  padding: 15px 10px 15px 40px;
  background: #dfdfdf;
}
article ul li, article ol li {
  padding-top: 10px;
}
article ul li:first-child, article ol li:first-child {
  padding-top: 0;
}
article ul {
  list-style-type: disc;
}
article ol {
  list-style-type: decimal;
}
article dl {
  margin-top: 30px;
}
article dl dt {
  padding-top: 10px;
}
article dl dt:first-child {
  padding-top: 0;
}
article dl dd {
  padding: 3px 0 3px 20px;
}
article input[type=text],
article input[type=tel],
article input[type=email],
article textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #acacac;
}
article input[type=submit] {
  display: table;
  margin: 0 auto;
  padding: 5px 40px;
  color: #1A1A1A;
  background: #acacac;
  border: 2px solid #acacac;
}
article input[type=submit]:hover {
  color: #1A1A1A;
  background: #fff;
}
article input[type=submit]:active {
  color: #1A1A1A;
  background: #fff;
}
article blockquote {
  position: relative;
  margin-top: 30px;
  padding: 40px;
  background: #dfdfdf;
}
article blockquote p:first-child {
  margin-top: 0;
}
article blockquote::before, article blockquote::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
article blockquote::before {
  top: 10px;
  left: 10px;
  background-image: url("../img/icon_quote1.svg");
}
article blockquote::after {
  right: 10px;
  bottom: 10px;
  background-image: url("../img/icon_quote2.svg");
}
article blockquote cite {
  padding-top: 20px;
  font-style: normal;
  font-size: 0.8rem;
  color: #acacac;
}

.toc {
  display: table;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #acacac;
}

.toc_title {
  margin-top: 0;
  text-align: center;
  font-weight: 700;
}

.toc_list {
  counter-reset: dt;
}
.toc_list dt, .toc_list dd {
  text-decoration: underline;
}
.toc_list dt:hover, .toc_list dd:hover {
  cursor: pointer;
  text-decoration: none;
}
.toc_list dt {
  counter-increment: dt;
  counter-reset: dd;
  padding: 20px 0 0 20px;
}
.toc_list dt::before {
  content: counter(dt) ". ";
  margin-left: -20px;
}
.toc_list dd {
  counter-increment: dd;
  padding-left: 47px;
}
.toc_list dd::before {
  content: counter(dt) "-" counter(dd) ". ";
  margin-left: -34px;
}

.main_vis {
  padding: 20px 0 60px;
}

.main_vis_wrap {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1280px;
}

.slide_wrap {
  position: absolute;
  top: 60px;
  right: min(30vw,30%);
  width: min(65vw,75%);
  height: 640px;
  border-radius: 30px;
  z-index: 1;
}
.slide_wrap li {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.slide_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .slide_wrap {
    position: static;
    width: 100%;
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .slick-list, .slick-track {
    height: 100%;
  }
}

.main_vis_content {
  padding-top: 90px;
}
@media (max-width: 768px) {
  .main_vis_content {
    padding: 0;
  }
}

.main_vis_name {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 4rem;
  font-family: noto-serif;
  font-style: italic;
  font-weight: 700;
  z-index: 2;
  text-align: right;
}
@media (max-width: 768px) {
  .main_vis_name {
    position: static;
    width: 100%;
    text-align: center;
    font-size: clamp(20px, 9vw, 4rem);
  }
}

.main_vis_tategaki {
  margin: 30px 0 50px auto;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .main_vis_tategaki {
    position: absolute;
    bottom: -30px;
    right: 20px;
    writing-mode: initial;
    font-size: clamp(16px, 3vw, 1.5rem);
  }
  .main_vis_tategaki span {
    padding: 5px;
    line-height: 2;
    background: #F9F5F0;
  }
}

.main_vis_tategaki_en {
  display: table;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .main_vis_tategaki_en {
    display: none;
  }
}

.facility {
  padding: 150px 0 120px;
}
@media (max-width: 768px) {
  .facility {
    padding: 80px 0;
  }
}

.facility_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.facility_item {
  position: relative;
  width: 47%;
}
.facility_item:first-child {
  width: 100%;
}
.facility_item:first-child .ja {
  font-size: 2.1rem;
}
.facility_item:nth-child(n+2) {
  margin-top: 40px;
}
.facility_item img {
  border-radius: 50px;
}
.facility_item p {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .facility_item {
    width: 100%;
  }
  .facility_item:first-child {
    width: 100%;
  }
  .facility_item:first-child .ja {
    font-size: 3vw;
  }
  .facility_item:first-child p {
    bottom: 4vw;
    right: 4vw;
    font-size: 3vw;
  }
  .facility_item p {
    bottom: 20px;
    font-size: max(3vw, 1rem);
  }
}

.facility_info_item {
  margin: 120px 0 100px;
}
.facility_info_item table, .facility_info_item .facility_rule {
  margin-top: 60px;
  color: #fff;
}
@media (max-width: 768px) {
  .facility_info_item table, .facility_info_item .facility_rule {
    margin-top: 40px;
  }
}
.facility_info_item tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid #fff;
}
.facility_info_item th, .facility_info_item td {
  padding: 10px;
}
.facility_info_item th {
  white-space: nowrap;
  min-width: 200px;
  font-weight: 700;
}
.facility_info_item td {
  flex: 1;
}
@media (max-width: 768px) {
  .facility_info_item th {
    min-width: 110px;
  }
}

@media (max-width: 768px) {
  .facility_info_item_en tr {
    display: block;
  }
  .facility_info_item_en th, .facility_info_item_en td {
    display: block;
  }
  .facility_info_item_en th {
    text-align: center;
    font-size: 1.2rem;
    white-space: normal;
  }
  .facility_info_item_en .short {
    text-align: center;
  }
  .facility_info_item_en td {
    padding-top: 0;
  }
}

.facility_rule_item:nth-child(n+2) {
  margin-top: 20px;
}
.facility_rule_item dl {
  padding: 15px 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  cursor: pointer;
}
.facility_rule_item dl:focus {
  outline: none;
}
.facility_rule_item dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  transition: 0.6s;
}
.facility_rule_item dt::after {
  content: "";
  display: block;
  margin: 3px 0 0 20px;
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
  background-image: url(../img/icon_up_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.2s;
}
.facility_rule_item dt:focus {
  outline: none;
}
.facility_rule_item dt.active::after {
  transform: rotate(0);
}
.facility_rule_item dd {
  display: none;
  margin: 15px 0;
  padding: 15px;
  color: #1A1A1A;
  border-radius: 30px;
  background: #F9F5F0;
}
.facility_rule_item dd li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
}
.facility_rule_item dd li::before {
  content: "・";
  color: #1A1A1A;
}
@media (max-width: 768px) {
  .facility_rule_item dd li {
    text-align: left;
  }
}

.stay_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
}
.stay_item:nth-child(n+3) {
  margin-top: 100px;
}
.stay_item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.stay_item dl {
  width: 40%;
}
.stay_item dl dt {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
}
.stay_item dl dd {
  margin-top: 10px;
  text-align: left;
}
.stay_item img {
  display: block;
  width: 55%;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .stay_item {
    display: block;
  }
  .stay_item:nth-child(n+3) {
    margin-top: 60px;
  }
  .stay_item dl {
    margin-top: 20px;
    width: 100%;
  }
  .stay_item img {
    width: 100%;
  }
}

.activity_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .activity_wrap {
    margin-top: 80px;
  }
}

.activity_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 46%;
}
.activity_item:nth-child(odd) {
  margin-top: 150px;
}
.activity_item:nth-child(even) {
  margin-top: 50px;
}
.activity_item img {
  display: block;
  width: 40%;
}
.activity_item dl {
  width: 55%;
}
.activity_item dl dt {
  font-weight: 700;
}
.activity_item dl dd {
  margin-top: 10px;
  text-align: left;
}
.activity_item a {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .activity_item {
    width: 100%;
  }
  .activity_item:nth-child(odd) {
    margin-top: 0;
  }
  .activity_item:nth-child(n+2) {
    margin-top: 40px;
  }
}
@media (max-width: 429px) {
  .activity_item:nth-child(n+2) {
    margin-top: 60px;
  }
  .activity_item img {
    margin: 0 auto 20px;
    width: min(100%,250px);
  }
  .activity_item dl {
    width: 100%;
  }
}

.peter_pan_wrap {
  padding: 120px 0 0;
}
.peter_pan_wrap .option_caution {
  display: table;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .peter_pan_wrap {
    padding: 80px 0 0;
  }
}

.sns_ttl {
  text-align: center;
  font-size: 2rem;
  line-height: 1;
}
.sns_ttl::after {
  content: "";
  display: block;
  margin: 20px auto;
  width: 2px;
  height: 50px;
  background: rgba(26, 26, 26, 0.7);
}
@media (max-width: 429px) {
  .sns_ttl {
    font-size: 1.5rem;
  }
}

.sns_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.sns_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 150px;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sns_item:nth-child(1) {
  background-image: url(../img/instagram_info.jpg);
}
.sns_item:nth-child(2) {
  background-image: url(../img/facebook_info.jpg);
}
.sns_item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(26, 26, 26, 0.5);
}
.sns_item p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 80%;
  height: 100px;
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 3vw, 2rem);
  font-weight: 200;
  line-height: 100px;
  border: 1px solid #fff;
  z-index: 2;
}

.another_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.another_item img {
  width: 45%;
  border-radius: 30px;
}
.another_item dl {
  width: 50%;
  color: #fff;
}
.another_item dt {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 700;
}
.another_item .google_map_button {
  margin: 30px auto 0;
  color: #fff;
  border: 2px solid #fff;
}
.another_item .google_map_button::after {
  background-image: url(../img/youtube.svg);
  width: 15px;
  height: 15px;
}
.another_item .google_map_button:hover {
  border: 2px solid #1A1A1A;
}
@media (max-width: 768px) {
  .another_item img {
    width: 100%;
  }
  .another_item dl {
    margin-top: 20px;
    width: 100%;
  }
}

.price_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.price_wrap p {
  color: #fff;
  font-size: 1.5rem;
}
.price_wrap p span {
  font-size: 3rem;
  font-weight: 700;
}
.price_wrap p:nth-child(1) {
  margin-right: 20px;
}
.price_wrap p:nth-child(2) {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .price_wrap p {
    font-size: 1rem;
  }
  .price_wrap p span {
    display: inline-block;
    margin: 0 -3px 0 0px;
    font-size: 1.5rem;
  }
}

.price_caution {
  margin: 30px 0;
  text-align: center;
  color: #fff;
}

.price_catch {
  margin: 0 auto;
  padding: 20px 0;
  width: min(100%,500px);
  text-align: center;
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.price_box_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 30px 0;
}
.price_box_wrap .price_box {
  padding: 25px;
  border-radius: 30px;
  background: #fff;
}
.price_box_wrap .price_box p {
  line-height: 1;
}
.price_box_wrap .price_box p:nth-child(1) {
  font-size: 1.2rem;
  font-weight: 700;
}
.price_box_wrap .price_box p:nth-child(n+2) {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
}
.price_box_wrap .price_box:nth-child(1) {
  margin-right: 10px;
}
.price_box_wrap .price_box:nth-child(2) {
  margin-left: 10px;
}

@media (max-width: 508px) {
  .price_box_wrap_en .price_box:nth-child(2) {
    margin-top: 20px;
  }
}

.price_special {
  display: table;
  margin: 50px auto 80px;
  color: #fff;
}

.price_plan_catch, .price_plan_catch_black {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: nowrap;
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.price_plan_catch::before, .price_plan_catch::after, .price_plan_catch_black::before, .price_plan_catch_black::after {
  content: "";
  display: block;
  width: 3px;
  height: 50px;
  background: #fff;
}
.price_plan_catch::before, .price_plan_catch_black::before {
  margin: 10px 20px 0 0;
  transform: rotate(-30deg);
}
.price_plan_catch::after, .price_plan_catch_black::after {
  margin: 10px 0 0 10px;
  transform: rotate(30deg);
}
@media (max-width: 429px) {
  .price_plan_catch, .price_plan_catch_black {
    font-size: 1.5rem;
  }
}

.price_plan_catch_black {
  margin-top: 80px;
}
.price_plan_catch_black::before, .price_plan_catch_black::after {
  background: #1A1A1A;
}

.price_plan_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px 0 100px;
}

.price_plan_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
}
.price_plan_item dt, .price_plan_item dd {
  color: #768F6D;
  text-align: center;
  font-weight: 700;
}
.price_plan_item dt {
  font-size: 1.2rem;
}
.price_plan_item dd {
  font-size: 2rem;
}
.price_plan_item:nth-child(2) {
  margin: 0 40px;
}
@media (max-width: 768px) {
  .price_plan_item {
    margin: 0 10px;
  }
  .price_plan_item:nth-child(2) {
    margin: 0 10px;
  }
}
@media (max-width: 429px) {
  .price_plan_item {
    margin: 0;
  }
  .price_plan_item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.option_content {
  display: table;
  margin: 0 auto;
}

.option_wrap dl:nth-child(n+2) {
  margin-top: 40px;
}
.option_wrap dt {
  font-size: 1.5rem;
  font-weight: 700;
}
.option_wrap ul {
  margin-top: 10px;
}
.option_wrap li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  text-align: left;
}
.option_wrap li::before {
  content: "・";
}
.option_wrap li:nth-child(n+2) {
  margin-top: 5px;
}
.option_wrap:nth-child(n+2) {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .option_wrap:nth-child(n+2) {
    margin-top: 80px;
  }
}

.option_caution {
  margin-top: 10px;
  font-size: 0.8rem;
}

.option_button {
  margin-top: 100px;
}

.cancel ul {
  display: table;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cancel li {
    text-align: left;
    font-size: 1rem;
  }
}

.cancel_content {
  margin: 0 auto;
}

.surfing_concept {
  color: #fff;
}
.surfing_concept p {
  text-align: center;
}

.surfing_intro_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 50px;
}
.surfing_intro_item .surfing_intro_img {
  width: 45%;
  height: 300px;
}
.surfing_intro_item .surfing_intro_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.surfing_intro_item dl {
  width: 50%;
}
.surfing_intro_item dl img {
  width: 50%;
}
.surfing_intro_item dt {
  margin-bottom: 20px;
}
.surfing_intro_item dd {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .surfing_intro_item .surfing_intro_img {
    width: 100%;
  }
  .surfing_intro_item dl {
    margin-top: 20px;
    width: 100%;
  }
  .surfing_intro_item dl img {
    display: block;
    margin: 0 auto;
    width: 50%;
    min-width: 300px;
  }
  .surfing_intro_item dt {
    margin-bottom: 10px;
  }
}

.delivery_wrap {
  margin: 0 auto;
  max-width: 800px;
}
.delivery_wrap div::after {
  content: "↓";
  display: table;
  margin: 5px auto 10px;
  font-size: 4rem;
  line-height: 1;
}
.delivery_wrap div:last-of-type::after {
  display: none;
}

.delivery_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-align: left;
}
.delivery_item span {
  display: inline-block;
  margin-right: 30px;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .delivery_item {
    font-size: 1rem;
  }
}

.delivery_caution {
  margin-top: 40px;
}

.product_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
}

.product_item {
  width: min(45%,350px);
}
.product_item .product_item_name {
  margin-top: 20px;
}
.product_item p {
  font-weight: bold;
  font-size: 1.2rem;
}
.product_item p span {
  display: inline-block;
  margin: 0 5px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .product_item {
    width: 100%;
  }
  .product_item img {
    display: block;
    height: 400px;
    margin: 0 auto;
  }
  .product_item:nth-child(n+2) {
    margin-top: 40px;
  }
}

.option_caution_product {
  margin: 20px 0 80px;
}

.contact_table {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
.contact_table th {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 10px 10px 10px 0;
  color: #1A1A1A;
  font-weight: bold;
}
.contact_table th::before {
  content: "";
  display: block;
  margin: 7px 10px 0 0;
  width: 13px;
  height: 13px;
  background: #768F6D;
}
.contact_table td {
  width: 70%;
  padding: 10px 0 10px 10px;
}
.contact_table td span {
  display: inline-block;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .contact_table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .contact_table th, .contact_table td {
    width: 100%;
  }
  .contact_table th {
    padding-bottom: 0;
    padding-right: 10px;
  }
  .contact_table td {
    padding-top: 5px;
    padding-left: 0;
  }
}
.contact_table textarea {
  height: 250px;
}
.contact_table input[type=text],
.contact_table input[type=tel],
.contact_table input[type=email],
.contact_table input[type=number],
.contact_table textarea {
  padding: 5px 10px;
  width: 100%;
  -webkit-appearance: none;
  border: none;
  border-radius: 5px;
}
.contact_table label:hover {
  cursor: pointer;
}
.contact_table input[type=checkbox] + label {
  position: relative;
  padding-right: 20px;
}
.contact_table input[type=checkbox] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #1A1A1A;
}
.contact_table input[type=checkbox]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: -4px;
  left: 4px;
  width: 0.4em;
  height: 1em;
  border-right: 3px solid #1A1A1A;
  border-bottom: 3px solid #1A1A1A;
  transform: rotate(45deg);
}
.contact_table input[type=radio] + label {
  position: relative;
  padding-right: 20px;
}
.contact_table input[type=radio] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #1A1A1A;
  border-radius: 50%;
}
.contact_table input[type=radio]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: 3px;
  left: 4px;
  width: 0.6em;
  height: 0.6em;
  background: #1A1A1A;
  border-radius: 50%;
}

.confirm_table td {
  color: #fff;
}

.contact_error {
  display: none;
  padding-top: 5px;
  color: red;
}

.contact_error_all {
  display: none;
  margin-top: 30px;
  text-align: center;
  color: red;
}

.contact_submit button {
  display: table;
  margin: 80px auto 0 auto;
  padding: 10px 50px;
  width: min(100%,360px);
  font-weight: 700;
  text-align: center;
  background: #768F6D;
  -webkit-appearance: none;
  cursor: pointer;
}
.contact_submit button:active {
  color: #1A1A1A;
  background: #fff;
}
.contact_submit a {
  display: table;
  margin: 10px auto 0 auto;
  padding: 10px 50px;
  color: #fff;
  background: rgba(26, 26, 26, 0.5);
  border: 2px solid rgba(26, 26, 26, 0.5);
}

input[type=date], input[type=time], input[type=datetime-local] {
  display: inline-block;
  color: #1A1A1A;
  background: #fff;
}

input[type=datetime-local] {
  width: 180px;
  height: 27px;
}

.check_date {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.check_date input:nth-child(n+2) {
  margin-left: 20px;
}

.select_item {
  display: inline-block;
  line-height: 1.3;
}
.select_item:nth-child(n+2) {
  margin-left: 20px;
}
.select_item label {
  font-weight: bold;
}
@media (max-width: 400px) {
  .select_item {
    display: block;
  }
  .select_item:nth-child(n+2) {
    margin: 10px 0 0 0;
  }
}

.en_item .select_item {
  display: block;
}
.en_item .select_item:nth-child(n+2) {
  margin-top: 10px;
  margin-left: 0;
}

select {
  -webkit-appearance: none;
  appearance: none;
  padding: 1px 30px 1px 10px;
  border: none;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}

.select_box {
  display: inline-block;
  position: relative;
  border-radius: 5px;
}
.select_box::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  height: 12px;
  width: 12px;
  background-image: url(../img/arrow_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

input[type=date],
input[type=time],
input[type=datetime-local] {
  cursor: pointer;
  border: none;
}

.return_button {
  margin-top: 80px;
}

.google-calendar {
  display: block;
  margin: 0 auto 80px;
  width: min(100%,700px);
}
@media (max-width: 768px) {
  .google-calendar {
    max-height: 400px;
  }
}

.google_calendar_button {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .google_calendar_button {
    margin-bottom: 100px;
  }
}

.text_short input[type=text] {
  text-align: center;
  width: 80px;
}/*# sourceMappingURL=style.css.map */