@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #ECF7FC;
  color: #707070;
  font-weight: 500;
}

ul, ol {
  list-style: none;
}

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

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
  transition: background-color 0.3s;
}
header .inner {
  width: 100%;
  height: 100%;
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
}
header .inner h1 img {
  width: 250px;
  display: block;
}
header .inner nav ul {
  display: flex;
  gap: 40px;
}
header .inner nav ul li a {
  color: #fff;
  font-size: 18px;
}
header .inner #menu_btn {
  display: none;
}
header.scrolled {
  background-color: #7DC1E0;
}

section .inner h2 {
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
section .inner h2 span {
  font-size: 120px;
  font-family: "din-2014", sans-serif;
  color: rgba(125, 193, 224, 0.3);
  position: absolute;
  z-index: -1;
}
section .inner h2.align_left {
  gap: 20px;
}
section .inner h2.align_left span {
  left: 150px;
  bottom: -18px;
}
section .inner h2.align_left::before {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #E68029;
  flex-shrink: 0;
}
section .inner h2.align_center {
  flex-direction: column;
  gap: 30px;
}
section .inner h2.align_center span {
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
}
section .inner h2.align_center::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #E68029;
}

#reservation {
  background: url(../img/reservation_bg.jpg) no-repeat center/cover;
  padding: 100px 0;
}
#reservation .inner {
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.8);
  padding: 120px 5% 70px;
}
#reservation .inner h2 {
  margin-bottom: 40px;
}
#reservation .inner h2 span {
  color: rgba(230, 128, 41, 0.3);
}
#reservation .inner .desc {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}
#reservation .inner .row {
  display: flex;
  justify-content: center;
  gap: 130px;
}
#reservation .inner .row .block h3 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
#reservation .inner .row .block .num {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 47px;
  font-weight: bold;
  font-family: "din-2014", sans-serif;
}
#reservation .inner .row .block .num::before {
  content: "";
  display: block;
  width: 31px;
  height: 40px;
  background: url(../img/icon_tel.svg) no-repeat center/contain;
}
#reservation .inner .row .block .bnr {
  text-align: center;
}
#reservation .inner .row .block .bnr img {
  width: 270px;
}
#reservation .inner .row .block .time {
  margin-top: 9px;
  font-size: 18px;
  text-align: center;
}

footer {
  background: #7DC1E0;
  color: #fff;
  padding: 70px 0;
}
footer .inner {
  max-width: 1100px;
}
footer .inner .row {
  display: flex;
  justify-content: space-between;
}
footer .inner .row .logo_sns .logo img {
  width: 250px;
}
footer .inner .row .logo_sns ul {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
}
footer .inner .row .logo_sns ul li img {
  width: 40px;
}
footer .inner .row .nav_copy {
  width: 52%;
}
footer .inner .row .nav_copy nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 40px;
}
footer .inner .row .nav_copy nav ul li a {
  font-size: 14px;
}
footer .inner .row .nav_copy nav ul li a[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../img/icon_blank.svg) no-repeat center/contain;
  width: 13px;
  height: 13px;
  margin-left: 5px;
}
footer .inner .row .nav_copy .copy {
  margin-top: 65px;
  font-family: "din-2014", sans-serif;
  text-align: right;
}

#fix_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s;
}
#fix_btn img {
  width: 210px;
}

@media (max-width: 1400px) {
  header .inner nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 95%;
    max-height: 100vh;
    overflow: auto;
    padding: 110px 5% 60px;
    background: #7DC1E0;
    border-bottom-left-radius: 50px;
  }
  header .inner nav ul {
    flex-direction: column;
    gap: 10px;
  }
  header .inner nav ul li {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #E68029;
  }
  header .inner #menu_btn {
    display: block;
    width: 40px;
    height: 28px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
  }
  header .inner #menu_btn:hover {
    opacity: 0.7;
  }
  header .inner #menu_btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #E68029;
    position: absolute;
    transition: 0.3s;
  }
  header .inner #menu_btn span:nth-child(1) {
    top: calc(50% - 10px);
  }
  header .inner #menu_btn span:nth-child(2) {
    top: 50%;
  }
  header .inner #menu_btn span:nth-child(3) {
    top: calc(50% + 10px);
  }
  header .inner #menu_btn.open span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  header .inner #menu_btn.open span:nth-child(2) {
    top: 50%;
    opacity: 0;
  }
  header .inner #menu_btn.open span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
}
@media (max-width: 1000px) {
  #reservation .inner h2 span {
    font-size: 100px;
  }
  #reservation .inner .row {
    gap: 40px;
  }
  #reservation .inner .row .block .num {
    font-size: 40px;
  }
  #reservation .inner .row .block .bnr img {
    width: 240px;
  }
  #fix_btn img {
    width: 150px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  header {
    height: 50px;
  }
  header .inner {
    padding: 0 5%;
  }
  header .inner h1 img {
    width: 200px;
  }
  header .inner nav {
    padding: 70px 5% 50px;
  }
  section .inner h2 {
    margin-bottom: 30px;
    font-size: 19px;
  }
  section .inner h2 span {
    font-size: 70px;
  }
  section .inner h2.align_left {
    gap: 10px;
  }
  section .inner h2.align_left span {
    left: unset;
    right: -10px;
  }
  section .inner h2.align_left::before {
    margin-top: 15px;
    width: 30px;
    left: unset;
    right: -10px;
  }
  section .inner h2.align_center {
    gap: 15px;
  }
  section .inner h2.align_center span {
    bottom: 5px;
  }
  #reservation {
    padding: 50px 0;
  }
  #reservation .inner {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  #reservation .inner h2 {
    margin-bottom: 30px;
  }
  #reservation .inner h2 span {
    font-size: 50px;
  }
  #reservation .inner .desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
  #reservation .inner .row {
    flex-direction: column;
  }
  #reservation .inner .row .block h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  #reservation .inner .row .block .num {
    font-size: 33px;
  }
  #reservation .inner .row .block .num::before {
    width: 20px;
    height: 26px;
  }
  #reservation .inner .row .block .time {
    margin-top: 5px;
    font-size: 14px;
  }
  footer {
    padding: 40px 0 30px;
  }
  footer .inner .row {
    flex-direction: column;
    gap: 50px;
  }
  footer .inner .row .logo_sns {
    width: 100%;
  }
  footer .inner .row .logo_sns .logo img {
    width: 200px;
  }
  footer .inner .row .logo_sns ul {
    margin-top: 25px;
  }
  footer .inner .row .logo_sns ul li img {
    width: 30px;
  }
  footer .inner .row .nav_copy {
    width: 100%;
  }
  footer .inner .row .nav_copy nav ul {
    gap: 20px;
  }
  footer .inner .row .nav_copy .copy {
    margin-top: 40px;
    font-size: 12px;
  }
  #fix_btn {
    bottom: 10px;
    right: 10px;
  }
  #fix_btn img {
    width: 100px;
  }
}
#top #mv {
  height: 100vh;
  min-height: 500px;
  color: #fff;
  position: relative;
  z-index: 1;
}
#top #mv .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#top #mv .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #mv .bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  background-image: radial-gradient(rgba(0, 0, 0, 0.2) 30%, transparent 31%), radial-gradient(rgba(0, 0, 0, 0.2) 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}
#top #mv .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#top #mv .inner h2 img {
  width: 800px;
}
#top #mv .inner .sub_copy {
  margin-top: 50px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}
#top #concept {
  padding-top: 100px;
}
#top #concept .inner .row {
  display: flex;
  justify-content: space-between;
}
#top #concept .inner .row .img {
  width: calc(41% + (100vw - 1200px) / 2);
  margin-left: calc((100vw - 1200px) / 2 * -1);
  position: relative;
}
#top #concept .inner .row .img .wave2 {
  bottom: 45px;
  left: 63px;
}
#top #concept .inner .row .txt {
  width: 53%;
  padding-top: 80px;
  position: relative;
}
#top #concept .inner .row .txt .wave1 {
  top: -44px;
  right: -41px;
}
#top #concept .inner .row .txt h2 {
  align-items: flex-start;
  margin-bottom: 50px;
  line-height: 1.5;
}
#top #concept .inner .row .txt h2::before {
  margin-top: 30px;
}
#top #concept .inner .row .txt h2 span {
  bottom: unset;
  top: -100px;
}
#top #concept .inner .row .txt ul li {
  font-size: 20px;
  line-height: 1.8;
  text-indent: -1em;
  margin-left: 1em;
}
#top #concept .inner .row .txt ul li::before {
  content: "・";
}
#top #concept .inner .row .txt ul li:not(:last-child) {
  margin-bottom: 15px;
}
#top #feature {
  padding-top: 160px;
}
#top #feature .inner {
  position: relative;
}
#top #feature .inner > .wave1 {
  top: -30px;
  left: calc(50% - 400px);
}
#top #feature .inner h2 {
  margin-bottom: 80px;
}
#top #feature .inner .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#top #feature .inner .row .img {
  width: 60%;
}
#top #feature .inner .row .txt {
  width: 34.75%;
  position: relative;
}
#top #feature .inner .row .txt .wave3 {
  top: -53px;
  right: 73px;
}
#top #feature .inner .row .txt .wave1 {
  top: -110px;
  right: -68px;
}
#top #feature .inner .row .txt h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "din-2014", sans-serif;
}
#top #feature .inner .row .txt .specifications_list {
  position: relative;
}
#top #feature .inner .row .txt .specifications_list .item {
  font-size: 20px;
  border-bottom: 1px solid #BBBBBB;
  padding: 20px 0 15px;
  display: flex;
  justify-content: space-between;
}
#top #feature .inner .row .txt .specifications_list .item .content {
  font-weight: 400;
}
#top #feature .inner .row .txt .specifications_list .wave2 {
  bottom: -57px;
  right: -118px;
}
#top #feature .inner .img_list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 44px 3.65%;
  position: relative;
}
#top #feature .inner .img_list .wave1 {
  top: 116px;
  left: -137px;
}
#top #feature .inner .img_list .img {
  width: 30.9%;
  position: relative;
}
#top #feature .inner .img_list .img img {
  width: 100%;
  aspect-ratio: 1/1;
}
#top #feature .inner .img_list .img .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #E68029;
  color: #fff;
  padding: 10px 20px;
}
#top #feature .inner .img_list .img .txt .name {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
}
#top #price {
  padding-top: 200px;
}
#top #price .inner {
  max-width: 1100px;
  position: relative;
}
#top #price .inner > .wave3 {
  top: -113px;
  left: -130px;
}
#top #price .inner > .wave1 {
  top: -107px;
  right: -100px;
}
#top #price .inner h2 {
  margin-bottom: 40px;
}
#top #price .inner .table_wrap {
  position: relative;
}
#top #price .inner .table_wrap > .wave2 {
  top: -135px;
  left: 60px;
}
#top #price .inner .table_wrap > .wave3 {
  top: -76px;
  right: 130px;
}
#top #price .inner .table_wrap table {
  background: #fff;
  width: 100%;
}
#top #price .inner .table_wrap table tr th {
  background: #E68029;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 8px;
}
#top #price .inner .table_wrap table tr th:not(:last-child) {
  border-right: 1px solid #fff;
}
#top #price .inner .table_wrap table tr td {
  line-height: 1.875;
  text-align: center;
  padding: 15px 20px;
  font-weight: 400;
}
#top #price .inner .table_wrap table tr td:not(:last-child) {
  white-space: nowrap;
  border-right: 1px dashed #E68029;
}
#top #price .inner .table_wrap table tr td:first-child {
  font-size: 18px;
  text-align: left;
}
#top #price .inner .table_wrap table tr:not(:last-child) td {
  border-bottom: 1px solid #E68029;
}
#top #price .inner .notice {
  margin-top: 20px;
  position: relative;
}
#top #price .inner .notice > .wave1 {
  top: -80px;
  left: -168px;
}
#top #price .inner .notice > .wave2 {
  bottom: -58px;
  right: -179px;
}
#top #price .inner .notice ul li {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  text-indent: -1em;
  margin-left: 1em;
}
#top #price .inner .notice ul li a {
  color: #E68029;
  text-decoration: underline;
}
#top #price .inner .notice ul li:not(:last-child) {
  margin-bottom: 5px;
}
#top #schedule {
  padding-top: 200px;
  padding-bottom: 100px;
}
#top #schedule .inner {
  position: relative;
}
#top #schedule .inner > .wave3 {
  top: -123px;
  left: 96px;
}
#top #schedule .inner > .wave1 {
  top: 25px;
  left: calc(50% + 330px);
}
#top #schedule .inner h2 {
  margin-bottom: 50px;
}
#top #schedule .inner .calender_area {
  position: relative;
}
#top #schedule .inner .calender_area > .wave2 {
  bottom: 310px;
  left: -150px;
}
#top #schedule .inner .calender_area > .wave1 {
  bottom: -69px;
  right: -132px;
}
#top #insta_feed {
  padding-bottom: 100px;
}
#top #insta_feed .inner {
  max-width: 800px;
}
#top #insta_feed .inner h2 {
  margin-bottom: 60px;
}
#top #insta_feed .inner h2 span {
  white-space: nowrap;
}
#top #fish_slider .fish_slider .slide img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #attention {
  padding-top: 200px;
}
#top #attention .inner {
  max-width: 900px;
  position: relative;
}
#top #attention .inner > .wave1 {
  top: -100px;
  left: -18px;
}
#top #attention .inner > .wave2 {
  top: -140px;
  left: 853px;
}
#top #attention .inner h2 {
  margin-bottom: 50px;
}
#top #attention .inner .attention_list {
  position: relative;
}
#top #attention .inner .attention_list > .wave3 {
  top: 50%;
  left: -130px;
}
#top #attention .inner .attention_list > .rod {
  position: absolute;
  top: 235px;
  left: calc(100% + 51px);
}
#top #attention .inner .attention_list > .rod img {
  width: 143px;
}
#top #attention .inner .attention_list .category h3 {
  display: flex;
  gap: 10px;
  font-weight: 400;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #E68029;
}
#top #attention .inner .attention_list .category h3::before {
  content: "";
  display: block;
  width: 42px;
  height: 15px;
  background: url(../img/icon_fish_orange.svg) no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 7px;
}
#top #attention .inner .attention_list .category ul li {
  font-weight: 400;
  line-height: 1.8;
  text-indent: -1em;
  margin-left: 1em;
}
#top #attention .inner .attention_list .category ul li::before {
  content: "・";
}
#top #attention .inner .attention_list .category ul li:not(:last-child) {
  margin-bottom: 15px;
}
#top #attention .inner .attention_list .category:not(:last-child) {
  margin-bottom: 30px;
}
#top #attention .inner .life_jacket {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  width: 800px;
  max-width: 100%;
  margin: 60px auto 0;
  position: relative;
}
#top #attention .inner .life_jacket > .wave2 {
  top: 30%;
  left: -170px;
}
#top #attention .inner .life_jacket > .wave1 {
  top: -400px;
  right: -220px;
}
#top #attention .inner .life_jacket h3 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
#top #attention .inner .life_jacket h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #E68029;
}
#top #attention .inner .life_jacket p {
  line-height: 1.8;
  font-weight: 400;
}
#top #attention .inner .life_jacket p a {
  color: #E68029;
  text-decoration: underline;
}
#top #attention .inner .life_jacket p:not(:last-child) {
  margin-bottom: 15px;
}
#top #calender {
  padding-top: 200px;
}
#top #calender .inner {
  max-width: 1100px;
  position: relative;
}
#top #calender .inner > .wave2 {
  top: -92px;
  left: 850px;
}
#top #calender .inner > .wave1 {
  top: -31px;
  left: 1032px;
}
#top #calender .inner h2 {
  margin-bottom: 50px;
}
#top #calender .inner .desc {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
#top #calender .inner .table_wrap > .wave2 {
  bottom: 60px;
  left: -153px;
}
#top #calender .inner .table_wrap > .wave3 {
  bottom: -152px;
  right: -124px;
}
#top #calender .inner .table_wrap table {
  width: 100%;
  background: #fff;
}
#top #calender .inner .table_wrap table tr th {
  background: #7DC1E0;
  color: #fff;
  padding: 10px;
  white-space: nowrap;
}
#top #calender .inner .table_wrap table tr th:not(:last-child) {
  border-right: 1px solid #fff;
}
#top #calender .inner .table_wrap table tr td {
  padding: 10px;
  text-align: center;
}
#top #calender .inner .table_wrap table tr td img {
  width: 51px;
}
#top #calender .inner .table_wrap table tr td img.half {
  opacity: 0.4;
}
#top #calender .inner .table_wrap table tr td:not(:first-child) {
  width: 70px;
}
#top #calender .inner .table_wrap table tr td:not(:last-child) {
  border-right: 1px solid #eee;
}
#top #calender .inner .table_wrap table tr td:nth-child(1) {
  background: #eee;
  text-align: left;
  white-space: nowrap;
}
#top #calender .inner .table_wrap table tr:not(:last-child) td {
  border-bottom: 1px solid #bbb;
}
#top #access {
  padding-top: 200px;
  padding-bottom: 120px;
}
#top #access .inner {
  max-width: 1100px;
  position: relative;
}
#top #access .inner > .wave1 {
  top: 200px;
  left: -180px;
}
#top #access .inner > .wave2 {
  bottom: 60px;
  right: 60px;
}
#top #access .inner h2 {
  margin-bottom: 50px;
}
#top #access .inner iframe {
  width: 100%;
}
#top #access .inner .btn {
  margin-top: 20px;
}
#top #access .inner .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  border-radius: 25px;
  background: #E68029;
  color: #fff;
  font-weight: bold;
  gap: 15px;
  margin: 0 0 0 auto;
}
#top #access .inner .btn a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_blank.svg) no-repeat center/contain;
}
#top #access .inner dl {
  margin-top: 40px;
}
#top #access .inner dl dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
#top #access .inner dl dd {
  font-weight: 400;
  line-height: 1.8;
}
#top #access .inner dl dd:not(:last-child) {
  margin-bottom: 20px;
}
#top #access .inner .access_area {
  display: flex;
  justify-content: center;
  gap: 50px;
}
#top #access .inner .access_area div {
  width: 50%;
}

@media (max-width: 1333px) {
  #top #concept .inner .row .img {
    width: calc(41% + 5vw);
    margin-left: -5vw;
  }
}
@media (max-width: 1000px) {
  #top #concept .inner .row {
    flex-direction: column;
    gap: 40px;
  }
  #top #concept .inner .row .img {
    width: 95vw;
    order: 2;
  }
  #top #concept .inner .row .img .wave2 {
    left: 30px;
    bottom: 20px;
  }
  #top #concept .inner .row .txt {
    width: 100%;
    order: 1;
  }
  #top #concept .inner .row .txt h2 {
    font-size: 30px;
  }
  #top #concept .inner .row .txt ul li {
    font-size: 16px;
  }
  #top #feature .inner .row .txt h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  #top #feature .inner .row .txt .specifications_list .item {
    font-size: 16px;
    padding: 15px 0 10px;
  }
  #top #feature .inner .img_list .img .txt {
    padding: 7px 15px;
  }
  #top #feature .inner .img_list .img .txt .name {
    font-size: 16px;
  }
  #top #price .inner .table_wrap table tr th {
    font-size: 16px;
  }
  #top #price .inner .table_wrap table tr td {
    font-size: 14px;
  }
  #top #price .inner .table_wrap table tr td:first-child {
    font-size: 16px;
  }
  #top #price .inner .table_wrap table tr td:last-child {
    text-align: left;
  }
  #top #calender .inner .table_wrap {
    overflow: auto;
  }
  #top #calender .inner .table_wrap table {
    white-space: nowrap;
    width: auto;
  }
  #top #calender .inner .table_wrap table tr td img {
    width: 40px;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  #top #mv .inner .sub_copy {
    margin-top: 30px;
    font-size: 24px;
  }
  #top #concept {
    padding-top: 60px;
  }
  #top #concept .inner .row {
    gap: 20px;
  }
  #top #concept .inner .row .txt {
    padding-top: 0;
  }
  #top #concept .inner .row .txt .wave1 {
    top: -40px;
    right: -10px;
  }
  #top #concept .inner .row .txt h2 {
    font-size: 19px;
    margin-bottom: 30px;
  }
  #top #concept .inner .row .txt h2 span {
    top: -55px;
  }
  #top #concept .inner .row .txt ul li {
    font-size: 14px;
  }
  #top #feature {
    padding-top: 80px;
  }
  #top #feature .inner h2 {
    margin-bottom: 20px;
  }
  #top #feature .inner .row {
    flex-direction: column;
    gap: 20px;
  }
  #top #feature .inner .row .img {
    width: 100%;
  }
  #top #feature .inner .row .txt {
    width: 100%;
  }
  #top #feature .inner .row .txt .wave3 {
    top: 7px;
  }
  #top #feature .inner .row .txt .wave1 {
    top: -20px;
    right: -18px;
  }
  #top #feature .inner .row .txt h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  #top #feature .inner .row .txt .specifications_list .item {
    font-size: 14px;
    padding: 10px 0 5px;
  }
  #top #feature .inner .row .txt .specifications_list .wave2 {
    display: none;
  }
  #top #feature .inner .img_list {
    margin-top: 20px;
    gap: 15px 4%;
  }
  #top #feature .inner .img_list .img {
    width: 48%;
  }
  #top #feature .inner .img_list .img .txt {
    padding: 5px 10px;
  }
  #top #feature .inner .img_list .img .txt .name {
    font-size: 12px;
  }
  #top #price {
    padding-top: 80px;
  }
  #top #price .inner > .wave3 {
    left: 0;
    top: unset;
  }
  #top #price .inner > .wave1 {
    top: 30px;
    right: -10px;
  }
  #top #price .inner h2 {
    margin-bottom: 30px;
  }
  #top #price .inner .table_wrap {
    overflow: auto;
  }
  #top #price .inner .table_wrap .wave2 {
    display: none;
  }
  #top #price .inner .table_wrap .wave3 {
    display: none;
  }
  #top #price .inner .table_wrap table tr th {
    font-size: 14px;
    padding: 10px 12px;
  }
  #top #price .inner .table_wrap table tr td {
    font-size: 14px;
    padding: 10px 12px;
  }
  #top #price .inner .table_wrap table tr td:first-child {
    font-size: 14px;
  }
  #top #price .inner .table_wrap table tr td:last-child {
    white-space: nowrap;
  }
  #top #price .inner .notice ul li {
    font-size: 11px;
  }
  #top #price .inner .notice ul li:not(:last-child) {
    margin-bottom: 3px;
  }
  #top #price .inner .notice > .wave1 {
    left: 0;
    top: unset;
    bottom: -40px;
  }
  #top #price .inner .notice > .wave2 {
    display: none;
  }
  #top #schedule {
    padding-top: 90px;
    padding-bottom: 20px;
  }
  #top #schedule .inner > .wave3 {
    top: 50px;
    left: unset;
    right: 20px;
  }
  #top #schedule .inner h2 {
    margin-bottom: 20px;
  }
  #top #schedule .inner .calender_area iframe {
    height: 400px;
  }
  #top #insta_feed {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #top #insta_feed .inner h2 {
    margin-bottom: 20px;
  }
  #top #insta_feed .inner h2 span {
    font-size: 55px;
  }
  #top #attention {
    padding-top: 70px;
  }
  #top #attention .inner > .wave1 {
    top: -50px;
  }
  #top #attention .inner > .wave2 {
    top: 60px;
    right: 0;
    left: unset;
  }
  #top #attention .inner h2 {
    margin-bottom: 40px;
  }
  #top #attention .inner .attention_list .category h3 {
    font-size: 16px;
  }
  #top #attention .inner .attention_list .category ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  #top #attention .inner .life_jacket {
    padding: 20px;
    margin-top: 30px;
  }
  #top #attention .inner .life_jacket h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  #top #calender {
    padding-top: 70px;
  }
  #top #calender .inner > .wave2 {
    top: -30px;
    right: 0;
  }
  #top #calender .inner > .wave1 {
    display: none;
  }
  #top #calender .inner h2 {
    margin-bottom: 30px;
  }
  #top #calender .inner .desc img {
    width: 40px;
  }
  #top #access {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  #top #access .inner h2 {
    margin-bottom: 30px;
  }
  #top #access .inner iframe {
    height: 300px;
  }
  #top #access .inner dl {
    margin-top: 30px;
  }
  #top #access .inner > .wave2 {
    bottom: -30px;
    right: 10px;
  }
  #top #access .inner .access_area {
    flex-direction: column;
  }
  #top #access .inner .access_area div {
    width: 100%;
  }
}
.wave {
  animation: wave 3s ease-in-out infinite;
  position: absolute;
}
.wave img {
  max-width: none;
  width: 60px;
}
.wave.wave1 {
  animation-delay: 1s;
}
.wave.wave2 {
  animation-delay: 2s;
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}/*# sourceMappingURL=style.css.map */