@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-size: 62.5%;
  width: 100%;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

body {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
      display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 100%;
    min-height: 100%;
}

main {
  display: block;
  width: 100%;
  z-index: 1;
}

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

a {
  text-decoration: none;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s ease;
}

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

.sp-only {
  display: none;
}

/* header --------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 156px;
  z-index: 999;
}
.announcement-bar{
  height:49px;
  background-color: #EDEDED;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0 2rem;
  transition: transform 0.3s ease;
}
.announcement-bar p{
  font-size: 1.8rem;
  font-weight: 900;
}
.header-wrapper{
  background-color: #fff;
}
.page-width {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:2rem;
  width: 100%;
  height: 107px;
}

.header_logo {
  z-index: 3;
  max-width: 321px;
  width: 26.75%;
  min-width: 163px;
}

.header_nav {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.nav_list {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.nav_item {
  height: 100%;
  position: relative;
	display: flex;
  align-items: center;	
}

.header_link {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease;
}
.gtranslate_wrapper{
  display: flex;
  align-items: center;	
	position:relative;
}
.gt_selector{
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
	width:70px;
}
@media screen and (min-width: 768px) {
.gtranslate_wrapper:after {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        margin-left: 7px;
        background-image: url(../images/menu-arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        transition: all 0.3s;
    }
}

.nav_item:hover .header_link,
.dropdown-item a:hover,
.child_link a:hover{
  color:#006194;
}

.hamburger,
.nav-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .item-parent .link-parent:after {
      content: "";
      display: block;
      width: 12px;
      height: 12px;
      margin-left: 7px;
      background-image: url(../images/menu-arrow.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      transition: all 0.3s;
  }
  .item-parent:hover .link-parent:after {
    transform: scale(1, -1);
  }
.dropdown-wrapper {
  display: block !important;
  position: absolute;
  top: 87px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100vw;
  max-width: 300px;
  height: auto;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  border-radius: 7px;
  background-color: #fff;
  padding:2rem;
}
.dropdown-wrapper.show {
  top: 77px;
  visibility: visible;
  opacity: 1;
  transition: ease-out, 0.4s ease-out, opacity 0.4s ease-out;
}
}

.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dropdown-item a {
  font-size: 1.4rem;
  display: block;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav_sp{
  display: none;
}

/* fv -------------------------------------------------*/
.fv-section{
  position: relative;
  margin-top:310px;
}
.fv-slider{
  height:786px;
}
.fv-slider .slick-list{
  width:100%;
  height:100%;
}
.fv-slider .slick-track {
  display: flex;
  width:100%;
  height:100%;
}
.fv-img img{
  height: 100%;
  width:100%;
  object-fit:cover;
}
.fv-content{
  width:100%;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index:1;
}
.fv-txt{
  max-width:814px;
}
.fv-txt h1{
  font-size:12.7rem;
  font-weight:900;
  line-height:1.25;
  margin:0 0 4.6rem 0;
}
.fv-txt p{
  font-size:2.4rem;
  font-weight:900;
  line-height:2;
  color:#fff;
  text-shadow: 0 0 10px rgb(0, 0, 0, 0.5);
}
.fv-btn-block{
  margin-top: 4rem;
}
.btn {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    line-height: 1.8;
    background-color:#E4EDF0;
    width: 100%;
    max-width: 465px;
    transition: 0.5s;
    padding:2.3rem 3.2rem 2.3rem 5.7rem;
    display: block;
}
.btn::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 30px;
    background: #000;
    margin: auto;
    transition: 0.5s;
}
.fv-btn{
  background-color:#fff;
  font-size:2rem;
  max-width:465px;
}
.btn:hover{
  background-color:#006194;
  color:#fff;
}
.btn:hover::before {
    background:#fff;
}
/* top-achiveve -------------------------------------------------*/
.achiveve-section{
  text-align:center;
  padding:4rem 0;
}
.achive-ttl{
  font-size:2.2rem;
  line-height: 1;
}
.achive-flex{
  display:flex;
  justify-content:center;
  gap:10rem;
  align-items:center;
  margin-top:3rem;
}
.achive-txt{
  font-size:1.9rem;
  margin:0;
  line-height: 1;
}
.achive-left,
.achive-right{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.achive-right{
  gap:1.5rem;
}
.achive-acc{
  color:#006194;
  font-size:3.9rem;
  line-height:1;
  font-weight:900;
  margin:0;
}
.achive-left .achive-acc{
    font-size:8.2rem;
    font-weight:700;
}
/* top-about -------------------------------------------------*/
.top-about{
  margin-top:5rem;
  overflow: hidden;
}
.about-flex{
    display: flex;
    gap: 4.58%;
    justify-content: space-between;
    margin: auto;
}
.about-flex.reverse{
  flex-direction: row-reverse;
}
.about-info {
    width: 38.75%;
    padding: 5rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-img {
    margin-right: calc(43.33% - 50vw);
    flex: 1;
    width: 56.67%;
}
.about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-flex-height .about-img img{
  max-height: 1078px;
}
.about-flex.reverse .about-img{
  margin-right: 0;
  margin-left: calc(43.33% - 50vw);
}
.about-acc span{
      color: #006194;
    font-family: Kalam, cursive;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .01em;
    white-space: nowrap;
    display: block ;

}
.acc-l {
    font-size:10.2rem;
}
.acc-s {
    font-size: 4.2rem;
}
.top-ttl{
  font-size:4.7rem;
  font-weight: 900;
  line-height: 1.6;
}
.about-flex .top-ttl{
  margin-bottom: 3rem;
}
.about-btn-block{
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap:1.6rem;
}
/*  top-restaurant-------------------------------------------------*/
.top-restaurant{
  background-color:#E4EDF0;
  padding:8rem 0 10rem;
  overflow:hidden;
}
.rest-ttl{
  margin-left:-2rem;
  margin-right:-2rem;
}
.rest-flex{
  display:flex;
  gap:4.66%;
  align-items:center;
  margin-top:6rem;
}
.rest-img{
  width:56.58%;
}
.rest-info{
  width:38.76%;
}
.rest-head{
  font-size:2.7rem;
  font-weight:900;
  margin-bottom:1rem;
}
.rest-btn-block{
  margin-top:2rem;
}
.rest-btn {
    background-color: #fff;
}
/*  top-access-------------------------------------------------*/
.top-access{
  padding-top:18rem;
}
.access-ttl{
  font-weight: 900;
  font-size: 11.2rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 6rem;
}
.accordion-block{
  border-bottom: 1px solid #BCBCBC;
}
.accordion-header {
    padding: 2rem 5rem 2rem 2.4rem;
    transition: background .3s ease;
    cursor: pointer;
    position: relative;
    border-top: 1px solid #bcbcbc;
    font-size: 1.9rem;
    font-weight: 900;
    position:relative;
    line-height: 1.5;
}
.accordion-header:hover{
  background-color:#E4EDF0;
}
.accordion-header:after {
      content: "";
      display: inline-block;
      position:absolute;
      width: 22px;
      height: 22px;
      right:2.4rem;
      top:50%;
      transform: translateY(-50%);
      background-image: url(../images/acco-arrow.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      transition: all 0.3s;
  }
  .accordion-header.active:after {
      transform: translateY(-50%) rotate(180deg);
  }
.accordion-content {
    display: none;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.8;
    padding:1rem 2.4rem 2rem 2.4rem;
}
.access-map{
  margin-top:6rem;
}
.access-map iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 960 / 383;
}
/*  top-news-------------------------------------------------*/
.top-news{
  padding-top:7.8rem;
}
.news-list{
  display: flex;
  flex-direction: column;
    border-top: 1px solid #BCBCBC;
    margin-top:5rem;
}
.news-item{
  border-bottom: 1px solid #BCBCBC;
}
.news-link{
  padding:2rem 2.4rem;
  display: flex;
  gap:9.5rem;
}
.news-link:hover{
  background-color: #E4EDF0;
}
.news-date,
.news-ttl{
  font-size: 1.9rem;
  font-weight: 700;
}
.news-btn-block{
  margin-top:4rem;
  text-align: right;
}
.more-btn{
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    background-color:#E4EDF0;
    color:#006194;
    width: 100%;
    max-width: 137px;
    transition: 0.5s;
    padding:1.6rem 2rem;
    display: inline-block;
}
.more-btn:hover{
  background-color:#006194;
  color:#fff;
}
/*  footer-------------------------------------------------*/
.footer {
  background-color: #006194;
  margin-top:16.6rem;
  padding:1.6rem 0;
}
.footer-flex{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy{
  color:#fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.footer-link{
  display: flex;
  gap:4rem;
}
.footer-link a{
  color:#fff;
  font-size: 1.4rem;
  font-weight: 900;
}
/* float-------------------------------------------------*/
.float-btn-block {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 4;
}
.float-btn-flex{
  display:flex;
}
.float-btn-item{
  min-width:300px;
}
.float-btn-item.booking-btn{
  background-color:#E58D00;
}
.float-btn-item.contact-btn{
  background-color:#006194;
}
.float-btn-link{
  display:flex;
  align-items:center;
  gap:2rem;
  color:#fff;
  font-size:1.6rem;
  font-weight:700;
  padding:2rem 2.4rem;
  position: relative;
  vertical-align: middle;
}
.float-btn-link img{
  width:50px;
}
.float-btn-link::before,
.float-btn-link::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right:2rem;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.float-btn-link::before{
	width: 27px;
	height: 27px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
    background: rgba(0,0,0,0.2);
}

.float-btn-link::after{
	right: 30px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*  page-------------------------------------------------*/
.page-ttl{
  padding: 23.5rem 0 12.8rem;
}
.page-ttl h1{
  font-size: 4.7rem;
  font-weight: 900;
  line-height: 1.5;
}
.heading-ttl{
      font-size: 4.7rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.heading-btn{
  margin-top: 4rem;
}
/*  index-------------------------------------------------*/
.page-index{
  margin-top:12rem;
}
.page-index-width{
  max-width:900px;
}
.index-head{
  font-size:2.4rem;
  font-weight:900;
  margin-bottom:1.5rem;
  line-height: 1;
}
.index-list{
  border-top:1px solid #bcbcbc;
}
.index-item{
  border-bottom:1px solid #bcbcbc;
}
.index-link{
  display:flex;
  padding:1.5rem 6.5rem 1.5rem 2rem;
  align-items:center;
  position:relative;
}
.index-link:after {
      content: "";
      display: inline-block;
      position:absolute;
      width: 22px;
      height: 22px;
      right:2rem;
      top:50%;
      transform: translateY(-50%);
      background-image: url(../images/acco-arrow.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      transition: all 0.3s;
  }
  .index-link:hover{
  background-color:#E4EDF0;
}
.index-txt{
  font-size:1.9rem;
  font-weight:700;
  line-height: 1.5;
  display: flex;
  gap:2rem;
}
.index-txt span{
  color:#006194;
}
/*  page-restaurant-------------------------------------------------*/
.restaurant-btn-block{
  margin-top:5rem;
}
/*  page-marine-life-------------------------------------------------*/
.marine-life-list{
  display: flex;
  flex-wrap: wrap;
      gap: 6rem 4%;
    margin-top: 12rem;
}
.marine-life-item {
    width: calc((100% - 8%) / 3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.marine-life-item img {
    border-radius: 15px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.marine-life-ttl {
    color: #006194;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.5;
}
.marine-life-place {
    color: #006194;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
}
.marine-life-txt {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
}
/*  page-price-------------------------------------------------*/
.price-list {
    border-top: 1px solid #BCBCBC;
    margin: 5rem 0 12rem;
}
.price-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #BCBCBC;
    padding: 2.4rem 0;
}
.price-course,
.price-price {
    font-size: 1.9rem;
	line-height:1.5;
}
.price-course{
	width:72%;
	font-weight: 700;
}
.price-price{
	width:23%;
	font-weight:900;
}
.price-img-block {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}
.price-img{
  width:calc((100% - 5rem)/2);
}
/* page-enjoying-------------------------------------------------*/
.enjoying-img{
  margin-top:12rem;
}
.enjoy-block{
  padding-top:12.5rem;
}
.page-section-ttl{
  font-size: 4.7rem;
  font-weight: 900;
  line-height: 1.5;
}
.page-section-ttl span{
    color:#006194;
    padding-right: 2rem;
}
.page-section-txt{
  margin:2.5rem 0 6rem;
}
.enjoy-btn{
  margin-bottom:5rem;
}
.page-section-img img{
  width: 100%;
  height: 100%;
  object-fit:cover;
  aspect-ratio: 1200 / 647;
}
/* beginner-------------------------------------------------*/
.type-block{
  margin-top:12rem;
}
.type-block .type-ttl{
  font-size:3rem;
  font-weight:900;
  margin-bottom:3rem;
  line-height: 1.5;
}
.type-block .type-txt{
  margin-bottom:4rem;
}
.blue{
  color:#006194;
}
.beginner-type,
.beginner-flow,
.beginner-faq{
  padding-top:12.9rem;
}
.flow-list{
  margin-top:6rem;
  border-top:1px solid #BCBCBC;
}
.flow-item{
  display:flex;
  border-bottom:1px solid #BCBCBC;
  padding:2rem 0;
  font-size:1.9rem;
  font-weight:700;
}
.flow-time{
  width:20%;
  font-weight: 700;
  color:#006194;
}
.flow-text{
  width:80%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-item{
  margin-top:7.2rem;
}
.faq-text{
  display:flex;
  gap:2rem;
}
.faq-text.question{
  font-size:3rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom:2rem;
}
.faq-text.answer{
  padding-left:1rem;
  color:#006194;
}
.beginner-btn{
  margin-top:8rem;
}
/* page-diving-point-------------------------------------------------*/
.point-index .index-list{
  display:flex;
  flex-wrap:wrap;
  gap:0 4rem;
  border:none;
}
.point-index .index-item{
  width:calc((100% - 4rem)/2);
}
.point-index .index-item:first-child,
.point-index .index-item:nth-child(2){
   border-top:solid 1px #BCBCBC;
}
.point-content{
  margin-top:30rem;
}
.point-list{
  display:flex;
  flex-wrap:wrap;
  gap:10rem 12%;
}
.point-item{
  width:44%;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.point-num{
  color:#006194;
  font-weight:500;
  font-size:7rem;
  line-height:1;
}
.point-ttl{
  font-weight:700;
  line-height: 1.5;
  font-size:2.6rem;
  color:#006194;
}
.point-txt{
  font-size:1.6rem;
  font-weight:500;
  letter-spacing: 0.01em;
  line-height: 1.8;
}
.news-section .news-list{
	margin:0;
}
/* single-------------------------------------------------*/
.single{
	    padding-top: 23.5rem;
}
.page-width-narrow{
	max-width:750px;
}
.single-ttl{
	font-size:3.2rem;
	font-weight:900;
	line-height:1.3;
	margin-bottom:1rem;
}
.single-date{
	font-size:1.6rem;
	font-weight:700;
	color:#BCBCBC;
	line-height:1.5;
	margin-bottom:3rem;
}

.content h2{
	font-size:2.4rem;
	font-weight:900;
	line-height:1.5;
	margin:3rem 0 1rem;
}
.content p{
	font-size:1.6rem;
	font-weight:700;
	line-height:1.8;
}
.content li{
	font-size:1.6rem;
	font-weight:700;
	line-height:1.8;
}
.single-btn-block{
	margin-top:10rem;
text-align:center;
}
/* page_plan ---------------------------------*/
.plan-category{
	margin-top:14rem;
}
.plan-list{
	display:flex;
	flex-direction:column;
	gap:8rem;
	margin-top:14rem;
}
.plan-link{
	display:flex;
	gap:3%;
}
.plan-info{
	width:60%;
}
.plan-ttl{
	font-size:2.4rem;
	font-weight:900;
	line-height:1.5;
	margin-bottom:1rem;
	color:#006194;
}
.tag-list{
	display:flex;
	gap:0.5rem;
}
.tag-item {
    padding: 0.8rem 1.5rem;
    background-color: #729eb5;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.plan-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #006194;
    line-height: 1;
	margin:1rem 0;
}
.plan-txt{
	font-size:1.8rem;
	font-weight:500;
	line-height:1.8;
}
.plan-list .plan-txt{
		    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.plan-btn-block{
	margin-top:1rem;
}
.plan-img {
    width: 37%;
	border-radius:16px;
	overflow:hidden;
}
.plan-img img{
	width:100%;
	height:100%;
	object-fit:cover;
	aspect-ratio:3 / 2;
}
.single-plan{
	margin-top:23.5rem;
}
.single-plan .plan-item{
	display:flex;
	flex-direction:row-reverse;
	gap:4.5%;
}
.single-plan .plan-img {
    width: 54%;
	border-radius:0;
}
.single-plan .plan-img img{
	aspect-ratio:1 / 1;
}
.single-plan .plan-info{
	width:41.5%;
}
.single-plan .single-btn-block{
	margin-top:10rem;
}
/* page_contact ---------------------------------*/
.c-contact-form__label{
font-weight: 700;
font-size: 1.6rem;
line-height: 1.5;
	margin-top:2rem;
}
.label-first{
	margin-top:0;
}
.c-contact-form__label.-require:after {
  color:#006194;
  content: "*";
  font-size: 1.4rem;
}
.wpcf7-spinner {
	display:none!important;
}
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #EDEDED inset;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 340px;
}
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color:#B70000;
	font-size:1.4rem;
	line-height:1.5;
}
.wpcf7-response-output{
	font-size:1.4rem;
	padding-top:2rem;
	color:#B70000;
}

:focus-visible {
    outline: none;
}
.wpcf7-response-output{
	padding:0!important;
	margin:20px 0 0 0!important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border:none!important;
}
select.wpcf7-form-control.wpcf7-select,
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 1.5rem;
	margin-top: 1rem;
	border: none;
	border-radius:4px;
	font-size:1.6rem;
	line-height:1.8;
	font-weight:500;
	background-color:#EDEDED;
}
.form-btn-block{
	margin-top:5rem;
	text-align:center;
}
.form-btn{
	margin:0 auto;
	text-align:center;
	max-width:250px;
	padding:2.3rem;
}
/* sp-------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /* header --------------------------------------------*/
  .header {
    height: 76px;
  }
.announcement-bar{
  height:33px;
}
.announcement-bar p{
  font-size: 1rem;
}
  .header_inner {
    height: 43px;
  }
  .nav_list {
    display: none;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    display: inline-block;
    z-index: 3;
    width: 43px;
    height: 43px;
  }

  .hamburger span {
    position: absolute;
    transition: .3s;
  }

  .hamburger span:nth-child(1),
  .hamburger span:nth-child(2) {
    background: #000;
    height: 1px;
    right: 0;
    width: 41px;
  }

  .hamburger span:nth-child(1) {
    top: 17px;
  }

  .hamburger span:nth-child(2) {
    top: 27px;
  }
  .hamburger.bgactive span:nth-child(1) {
    transform:rotate(20deg);
    width: 38px;
    top:22px;
  }

  .hamburger.bgactive span:nth-child(2) {
    transform:rotate(-20deg);
    width: 38px;
    top:22px;
  }

  .nav_sp {
    display: block;
    position: fixed;
    top: 33px;
    left: 0;
    background:#729EB5;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
    z-index: 2;
    visibility: hidden;
    overflow-y: scroll;
  }
  .nav-sp-flex {
    position: absolute;
    top:10%;
    left:50%;
    transform: translateX(-50%);
    min-width: 270px;
  }

  .nav_list_sp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
  }

  .header_link {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
  padding: 1.7rem 0;
  display: block;
    width: 100%;
  }
	.gt_selector{
	    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
  padding: 1.7rem 0;
  display: block;	
	}
	.gtranslate_wrapper:after {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        margin-left: 7px;
        background-image: url(../images/sp-menu-arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        transition: all 0.3s;
    }
  .nav_sp.bgactive {
    opacity: 1;
    visibility: visible;
  }
 .item-parent .link-parent .toggle{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../images/sp-menu-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s;
  background-position: center;
 }  
 .item-parent .link-parent.open .toggle{
  transform: translateY(-50%) scale(1, -1);
 }
  .dropdown-wrapper{
    display: none;
  }
 
.child-link{
  display: flex;
  flex-direction: column;
  gap:1.2rem;
  padding-left:2rem;
  transition: all 0.3s ease;
 }
 .child-link li a{
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color:#fff;
  white-space: nowrap;
 }

/*  fv-------------------------------------------------*/
   .fv-section{
  margin-top:141px;
}
.fv-slider{
  height:528px;
}
.fv-content{
  top: -35px;  
}
.fv-txt h1{
  font-size:5.3rem;
  margin:0 0 2rem 0;
}
.fv-txt p{
  font-size:1.4rem;
}
.fv-btn-block{
  margin-top:2rem;
}
.btn {
  font-size: 1.4rem;
  padding: 1.2rem 2rem 1.2rem 4.3rem;
}
.btn::before {
    width: 15px;
    left: 20px;
}
.fv-btn{
  max-width: 271px;

}
  /* top-achiveve -------------------------------------------------*/
   .achiveve-section{
  padding:3rem 0;
}
.achive-ttl{
  font-size:1.6rem;
}
.achive-flex{
  gap:3rem;
  margin-top:2.6rem;
}

.achive-left{
  gap:0.5rem;
}
.achive-right{
  gap:1rem;
}
.achive-txt{
  font-size:1.2rem;
}
.achive-acc{
  font-size:2.6rem;
}
.achive-left .achive-acc{
    font-size:5.5rem;
}

/* top-about -------------------------------------------------*/
.top-about{
  margin-top:0;
}
.about-flex{
  flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top:4rem;
}
.about-flex.reverse{
  flex-direction: column;
}
.about-info {
    width: 100%;
    padding: 0;
}
.about-img,
.about-flex.reverse .about-img {
          margin: 0;
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        overflow: hidden;
}
.acc-l {
    font-size:4.2rem;
}
.acc-s {
    font-size: 2rem;
}
.top-ttl{
  font-size:3rem;
  margin-bottom:1rem;
}
.about-btn-block{
  margin-top: 2rem;
  gap:1rem;
}
/* top-rest -------------------------------------------------*/
  .top-restaurant{
  padding:3rem 0 6rem;
}
.rest-ttl{
  margin-left:-0.5rem;
  margin-right:-0.5rem;
}
.rest-flex{
  flex-direction:column;
  gap:3.5rem;
  margin-top:3rem;
}
.rest-img,
.rest-info{
  width:100%;
}
.rest-head{
  font-size:1.4rem;
}
/*  top-access-------------------------------------------------*/
.top-access{
  padding-top:4rem;
}
.access-ttl{
  font-size: 4.2rem;
  margin-bottom: 4.2rem;
}
.accordion-header {
    padding: 1.6rem 3rem 1.6rem 0;
    font-size: 1.6rem;
}
.accordion-header:after {
      width: 18px;
      height: 18px;
      right:0;
  }
.accordion-content {
    font-size: 1.2rem;
    padding:0.5rem 0 1.6rem 0;
}
.access-map{
  margin-top:4.2rem;
}
.access-map iframe {
    aspect-ratio: 1 / 1;
}
/*  top-news-------------------------------------------------*/
.top-news{
  padding-top:4.2rem;
}
.news-list{
    margin-top:1.7rem;
}
.news-link{
  padding:2rem 0;
  gap:3rem;
}
.news-date,
.news-ttl{
  font-size: 1.2rem;
}
.news-btn-block{
  margin-top:1.5rem;
}
.more-btn{
    font-size: 1.4rem;
    max-width: 101px;
    padding:1.3rem 1.8rem;
}
/*  footer-------------------------------------------------*/
.footer {
  margin-top:15rem;
  padding:2rem 0;
}
.footer-flex{
  flex-direction: column-reverse;
  gap:1rem;
}
.footer-copy{
  font-size: 1.2rem;
}
.footer-link{
  gap:1.5rem;
}
.footer-link a{
  font-size: 1.2rem;
}
/*  float-------------------------------------------------*/
.float-btn-block {
  right: 0;
  top: auto;
  bottom: 0;
  width: 100%;
}
.float-btn-item{
  width:50%;
  min-width:auto;
}
.float-btn-link{
  gap:1rem;
  font-size:1.2rem;
  padding:1.5rem;
}
.float-btn-link img{
  width:30px;
}
.float-btn-link::before,
.float-btn-link::after{
	right:1rem;
}
.float-btn-link::before{
	width: 16px;
	height: 16px;
}

.float-btn-link::after{
	right: 16px;
	width: 5px;
	height: 5px;
  	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
/*  page-------------------------------------------------*/
.page-ttl{
  padding: 12.6rem 0 3rem;
}
.page-ttl h1{
  font-size: 2.4rem;
}
.heading-ttl{
      font-size: 2.4rem;
    margin-bottom: 1rem;
}
/*  index-------------------------------------------------*/
.page-index{
  margin-top:6.5rem;
}
.index-link{
  padding:1rem 2.5rem 1rem 0;
}
.index-link:after {
      width: 15px;
      height: 15px;
      right:0;
  }
.index-txt{
  font-size:1.4rem;
  gap:1rem;
}
/*  page-restaurant-------------------------------------------------*/
.restaurant-btn-block{
  margin-top:2rem;
}
/*  page-marine-life-------------------------------------------------*/
.marine-life-list{
        gap: 6rem;
        margin-top: 3rem;
}
.marine-life-item {
        width: 100%;
        gap: 1rem;
}
.marine-life-ttl {
        font-size: 1.8rem;
}
.marine-life-place {
        font-size: 1.4rem;
}
.marine-life-txt {
        font-size: 1.2rem;
}
/*  page-price-------------------------------------------------*/
.price-list {
        margin: 3rem 0 5rem;
}
.price-item{
        padding: 1rem 0;
}
.price-course,
.price-price  {
    font-size: 1.2rem;
}
.price-img-block {
    gap: 3rem;
}
.price-img{
  width:100%;
}
/*  page-enjoying-------------------------------------------------*/
.enjoying-img{
  margin-top:6.5rem;
}
  .enjoy-block{
  padding-top:6.5rem;
}
.page-section-ttl{
  font-size: 2.4rem;
}
.page-section-ttl span{
    padding-right: 1rem;
}
.page-section-txt{
  margin:1rem 0 2rem;
}
.enjoy-btn{
  margin-bottom:4.5rem;
}
.page-section-img{
  margin-right:-2rem;
  margin-left:-2rem;
}
/* beginner-------------------------------------------------*/
.type-block{
  margin-top:4rem;
}
.type-block .type-ttl{
  font-size:2.4rem;
  margin-bottom:2rem;
}
.beginner-type,
.beginner-flow,
.beginner-faq{
  padding-top:6.5rem;
}
.flow-list{
  margin-top:2rem;
}
.flow-item{
  padding:1rem 0;
  font-size:1.4rem;
}
.flow-time{
  width:23%;
}
.flow-text{
  width:77%;
}
.flow-other{
  font-size:1.2rem;
  }
.faq-item{
  margin-top:4rem;
}
.faq-text{
  gap:1rem;
}
.faq-text.question{
  font-size:1.8rem;
  margin-bottom:1rem;
}
  .faq-text.answer{
  padding-left:0.5rem;
}
  .beginner-btn{
  margin-top:4rem;
}
/* page-diving-point-------------------------------------------------*/
.point-index .index-list{
  gap:0;
}
.point-index .index-item{
  width:100%;
}
.point-index .index-item:nth-child(2){
   border-top:none;
}
.point-content{
  margin-top:5rem;
}
.point-list{
  gap:5rem;
}
.point-item{
  width:100%;
  gap:1rem;
}
.point-num{
  font-size:4.4rem;
}
.point-ttl{
  font-size:1.8rem;
}
.point-txt{
  font-size:1.2rem;
}
	/* single-------------------------------------------------*/
.single{
	    padding-top: 12.6rem;
}
.single-ttl{
	font-size:2.4rem;
}
.single-date{
	font-size:1.4rem;
}
	.content h2{
	font-size:1.8rem;
}
.content p{
	font-size:1.4rem;
}
.content li{
	font-size:1.4rem;
}
	/* page_contact ---------------------------------*/
.c-contact-form__label{
font-size: 1.4rem;
}

select.wpcf7-form-control.wpcf7-select,
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	font-size:1.4rem;
}
.form-btn{
	margin:0 auto;
	padding:2rem;
}
	.single-btn-block{
	margin-top:5rem;
}
	/* page_plan ---------------------------------*/
.plan-category{
	margin-top:3rem;
}
.plan-list{
	gap:5rem;
	margin-top:3rem;
}
.plan-link{
	flex-direction:column-reverse;
	gap:1rem;
}
.plan-info{
	width:100%;
}
.plan-ttl{
	font-size:1.6rem;
}
.plan-price {
    font-size: 1.8rem;
}
.plan-txt{
	font-size:1.2rem;
}
.plan-img {
    width: 100%;
}
.single-plan{
	margin-top:12.6rem;
}
.single-plan .plan-item{
	flex-direction:column-reverse;
	gap:1.2rem;
}
.single-plan .plan-img {
    width: 100%;
}
.single-plan .plan-info{
	width:100%;
}
}