@charset "utf-8";
/* *************************************************************
	Global
*************************************************************** */

html {
  font-size: 16px;
}

:root {
  --mainColor: rgb(182, 221, 225);
  --subColor: rgb(12, 97, 52);
  --accentColor01: rgb(249, 205, 116);
  --accentColor02: rgb(227, 66, 52);
  --blackColor: rgb(51, 51, 51);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100%;
}

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

.inner {
  max-width: 1010px;
  margin: 0 auto;
  padding: 40px;
  overflow: visible;
}


.red {
  color: var(--accentColor02);
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.column {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}


.h2 {
  max-height: 60px;
  margin-bottom: 50px;
  text-align: center;
}

.sp-text {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* **************************************************************
	header
*************************************************************** */
header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(rgb(0 181 209 / 0.5), rgb(0 181 209 / 0.0));
  height: 160px;
}

.pc-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-menu li {
  height: 56px;
  padding: 0 20px;
}

.pc-menu li:last-child {
  background: linear-gradient(to right, #009e93, #00aabe);
  /* 背景グラデーション */
  border: none;
  /* 枠線なしにする場合 */
  border-radius: 50px;
  /* box-shadow: 0 0 10px rgba(255, 107, 107, 0.6); */
  margin-left: 20px;
}

.pc-menu li a {
  line-height: 56px;
  color: #00999d;
}

.pc-menu li:last-child a {
  color: #fff;
}

.pc-menu li:nth-child(-n + 4) {
  position: relative;
  margin: 0 10px;
}

.pc-menu li:nth-child(-n + 4) a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #00999d;
  transition: all .5s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.pc-menu li:nth-child(-n + 4) a:hover::after {
  transform: scale(1, 1);
}

.pc-menu li:last-child:hover {
  background-color: #fff;
  transform: scale(1, 1);
  /* color: var(--blackColor); */
}

.pc-menu li:last-child:hover a {
  transform: scale(1, 1);
}

.sp-menu {
  padding-top: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: rgb(0 190 184 / 0.8);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.sp-menu li {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.sp-menu.is-active {
  pointer-events: auto;
  opacity: 1;
}

.sp-menu li a {
  color: #fff;
  position: relative;
}

.sp-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  box-shadow: 1px 1px 25px rgb(74 204 201 / 0.5);
  box-shadow: 0 0 3px rgb(25 25 25 / 0.6);
  transition: all .5s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.sp-menu li a:hover::after {
  transform: scale(1, 1);
}

/* **************************************************************
	top
*************************************************************** */
#top {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/mv_bg.jpg');
  /* ← style.cssから見た相対パスに注意 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  /* ← 背景として一番下に */
}


.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  height: auto;
  z-index: 2;
  /* タイトルはその上 */
}

/* **************************************************************
	info
*************************************************************** */
#info {
  position: relative;
  width: 100%;
  height: 785px;
  overflow: visible;
  z-index: 3;
  /* ← kv_bg よりも上に表示 */
}

.info_bgc {
  width: 100%;
  height: 100%;
  background-image: url(../img/info_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  top: -100px;
}

#info .info_bgc .column {
  align-items: flex-end;
  padding-top: 160px;
  margin-bottom: -140px;
}

#info .h2 {
  margin-left: 50px;
}

.info_left {
  width: 60%;
}

.info_left dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: #fff;
  font-weight: 300;
}

.info_left dt {
  width: 15%;
  margin-bottom: 20px;
}

.info_left dd {
  width: 85%;
  margin-bottom: 20px;
}

.info_right {
  width: 50%;
  text-align: center;
  overflow: visible;
  margin-bottom: 250px;
}


.info_right a:hover .ticket {
  transform: scale(110%);
}

.ticket {
  width: 430px;
  /* ← 任意で大きくする */
  transition: 0.3s;
  position: relative;
  right: -40px;
  /* ← はみ出させる（右へズラす）*/
}


/* **************************************************************
	pickup
*************************************************************** */

/* PC版デフォルト表示 */
.pick-bg-pc {
  display: block;
}

.pick-bg-sp {
  display: none;
}

.pick-h2 {
  display: block;
  max-height: 75px;
  margin: 0 auto 200px;
}

.pick-bg01 {
  background: url(../img/pick-bg01.jpg) no-repeat top center;
  background-size: cover;
  background-position: top center;
  width: auto;
  height: 280px;
  margin-bottom: 250px;
  position: relative;
}

.pick-bg01 .block {
  max-width: 930px;
  width: 100%;
  padding: 0 20px;
  /* スマホ時の余白確保 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.pick-bg01 .block-01 .block-image {
  width: 48%;
  margin-top: 32px;
}

.pick-bg02 {
  background: url(../img/pick-bg02.jpg) no-repeat top center;
  background-size: cover;
  background-position: top center;
  width: auto;
  height: 223px;
  margin-bottom: 250px;
  position: relative;
}

.pick-bg02 .block {
  max-width: 930px;
  width: 100%;
  padding: 0 20px;
  /* スマホ時の余白確保 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
}

.pick-bg02 .block-01 .block-image {
  width: 48%;
  margin-top: -27px;
}

.pick-bg03 {
  background: url(../img/pick-bg03.jpg) no-repeat top center;
  background-size: cover;
  background-position: top center;
  width: auto;
  height: 535px;
  margin-bottom: 250px;
  position: relative;
}

.pick-bg03 .block {
  max-width: 930px;
  width: 100%;
  padding: 0 20px;
  /* スマホ時の余白確保 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.pick-bg03 .block-01 .block-image {
  width: 48%;
  margin-top: 5px;
}

.pick-bg04 {
  background: url(../img/pick-bg04.jpg) no-repeat top center;
  background-size: cover;
  background-position: top center;
  width: auto;
  height: 465px;
  margin-bottom: 250px;
  position: relative;
}

.pick-bg04 .block {
  max-width: 930px;
  width: 100%;
  padding: 0 20px;
  /* スマホ時の余白確保 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.pick-bg04 .block-01 .block-image {
  width: 56%;
  margin-top: 2px;
}

.pick-bg04 .block-01 .block-text {
  width: 40%;
}

.pick-bg05 {
  background: url(../img/pick-bg03.jpg) no-repeat top center;
  background-size: cover;
  background-position: top center;
  width: auto;
  height: 355px;
  margin-bottom: 250px;
  position: relative;
}

.pick-bg05 .block {
  max-width: 930px;
  width: 100%;
  padding: 0 20px;
  /* スマホ時の余白確保 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.pick-bg05 .block-01 .block-image {
  width: 56%;
  margin-top: -65px;
}

.pick-bg05 .block-01 .block-text {
  width: 40%;
}

.reverse {
  flex-direction: row-reverse;
}

.no-wrap {
  white-space: nowrap;
}

.fix-indent {
  display: inline-block;
  margin-left: -0.4em;
  /* ← 適宜 -0.2em〜-0.5em くらいで調整してみてください */
}

.block-01 .block-text {
  width: 48%;
}



.block-01 .block-image img {
  width: 100%;
  border-radius: 5px;
}

.pick-number {
  width: 75px;
  margin-bottom: 25px;
}

.pick-midashi {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 15px;
}

.description {
  font-size: 16px;
  line-height: 32px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.pick01_button {
  width: 290px;
  /* 必要に応じて調整 */
  height: auto;
  display: block;
  margin-left: 20px;
}

/* **************************************************************
	bousai
*************************************************************** */

#bousai {
  position: relative;
  width: 100%;
  height: 1290px;
  overflow: visible;
  margin-bottom: 85px;
}

.bousai-bgc {
  width: 100%;
  height: 100%;
  background-image: url(../img/bousai_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bousai-inner {
  width: 573px;
  height: auto;
  background-image: url(../img/bousai_frame.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  padding: 90px 40px 300px;
  position: relative;
}

.bousai-title {
  font-size: 55px;
  font-weight: 300;
  font-style: normal;
  line-height: 76px;
  color: #fff;
  margin-bottom: 80px;
}

.tight {
  letter-spacing: -0.4em;
  /* 調整量は好みに応じて -0.1em〜-0.3em 程度で */
}

.tight-02 {
  letter-spacing: -0.2em;
  /* 調整量は好みに応じて -0.1em〜-0.3em 程度で */
}

.bousai-inner p {
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  line-height: 30px;
  color: #fff;
  margin: 0 auto 50px;
  width: fit-content;
  /* 内容の幅だけにする */
  text-align: left;
  /* 念のため左寄せを明示 */
}

.bousai-project_pc {
  display: flex;
  gap: 23px;
  align-items: center;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgb(0, 0, 0, 0.3);
  padding: 20px;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.bousai-project_sp {
  display: none;
}

.bousai-project_pc img {
  width: 104px;
  height: auto;
}

.bousai-project_pc p {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  font-style: normal;
  line-height: 32px;
}

/* **************************************************************
	beach-bousai
*************************************************************** */

#beach-bousai {
  width: 1080px;
  padding: 52px;
  background-image: url(../img/beachi-bousai_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  margin: 0 auto 200px;
}

.beach-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.beach-title {
  width: 62%;
  height: auto;
}

.beach-top-img {
  width: 38%;
  height: auto;
}

.beach-item-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.beach-item-box {
  width: 48%;
  background-color: #fff;
  border-radius: 30px;
  padding: 25px 35px;
  margin-bottom: 40px;
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.beach-item-box .item-top p {
  width: 50%;
  color: #3697c7;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  font-style: normal;
}

.tight-paren {
  font-size: 20px;
  white-space: nowrap;
}

.tight-paren::before {
  content: '';
  display: inline-block;
  margin-right: -0.5em; /* ← この値で調整 */
}

.item-fue {
  width: 40%;
  height: auto;
}

.item-tekagami {
  width: 68%;
  height: auto;
}

.item-genkin {
  width: 68%;
  height: auto;
}

.item-sumaho {
  width: 52%;
  height: auto;
}

.item-pori {
  width: 90%;
  height: auto;
}

.item-paracode {
  width: 100%;
  height: auto;
}

.beach-item-box p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #333;
}

.beach-item-box_furoshiki {
  width: 100%;
  background-color: #fff;
  border-radius: 30px;
  padding: 25px 35px;
}

.furoshiki-title {
  width: 100%;
  color: #3697c7;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 20px;
}

.furoshiki-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.furoshiki-item img {
  height: 200px;
  width: auto;
}

.beach-item-box_furoshiki p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #333;
}



/* **************************************************************
	tsunami
*************************************************************** */

#tsunami {
  margin-bottom: 100px;
}

.tsunami-title {
  width: 490px;
  height: auto;
  margin: 0 auto 75px;
}

.tsunami-read {
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  text-align: center;
  color: #333;
  margin-bottom: 75px;
}

.tsunami-fukidashi {
  width: 490px;
  height: auto;
  margin: 0 auto 40px;
}

.hinan-title {
  font-size: 42px;
  line-height: 56px;
  font-weight: 700;
  text-align: center;
  color: #00a99d;
  margin-bottom: 75px;
}

.hinan-container {
  width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hinan-section {
  border-top: 1px solid #00a0a0;
  padding-top: 40px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hinan-section:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.text-block {
  flex: 1;
}

.text-block h2 {
  color: #00a99d;
  font-size: 23px;
  line-height: 32px;
  margin-bottom: 15px;
}

.text-block ul li {
  list-style: none;
  position: relative;
  padding-left: 1em;
  margin-bottom: 10px;
}

.text-block ul li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #333;
}

.image-block img {
  width: 203px;
  height: auto;
}

.credit {
  text-align: right;
  font-size: 16px;
  line-height: 23px;
  margin-top: 60px;
}

.credit a {
  color: #333;
  text-decoration: none;
  /* デフォルトの下線を消す */
  border-bottom: 1px solid #333;
  /* カスタム下線 */
  padding-bottom: 2px;
  /* 下線と文字の距離を調整 */
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.credit a:hover {
  color: #00a99d;
  border-bottom-color: #00a99d;
  /* ホバー時の線の色も変化 */
}

/* **************************************************************
	whats-fb
*************************************************************** */

#whats-fb {
  position: relative;
  width: 100%;
  height: 2330px;
  overflow: visible;
  margin-bottom: 400px;
}

.whats-fb-bgc {
  width: 100%;
  height: 100%;
  background-image: url(../img/whats-fb_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.whats-fb-h2 {
  display: block;
  max-width: 595px;
  margin: 0 auto 70px;
  padding-top: 352px;
}

.whats-fb-read {
  font-size: 17px;
  font-weight: 300;
  font-style: normal;
  line-height: 32px;
  color: #fff;
  margin: 0 auto 160px;
  width: fit-content;
  text-align: center;
}

.youtube {
  display: block;
  width: 560px;
  height: 315px;
  margin: 0 auto 140px;
}

.fb-logo {
  display: block;
  width: 320px;
  height: auto;
  margin: 0 auto 140px;
}


.main-mc {
  width: 930px;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgb(0, 0, 0, 0.3);
  padding: 60px;
  margin: 0 auto 190px;
  position: relative;
}


.main-mc-photo {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 370px;
  height: auto;
}



.main-mc-title {
  width: 285px;
  height: auto;
  margin-bottom: 40px;
}

.main-mc p {
  font-size: 32px;
  line-height: 38px;
  padding-left: 10px;
  margin-bottom: 30px;
}

.main-mc p span {
  font-size: 24px;
}

.main-mc dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 2rem;
}

.main-mc dt,
.main-mc dd {
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
}

.main-mc dt {
  width: 17%;
}

.main-mc dd {
  width: 70%;
}

.main-mc dd.mc_text {
  width: 100%;
  margin-top: 0;
  /* 必要に応じて調整 */
  margin-bottom: 20px;
}

/* **************************************************************
	spo
*************************************************************** */

#spo {
  margin-bottom: 135px;
}

.spo-title {
  display: block;
  width: 280px;
  height: auto;
  margin: 0 auto 60px;
}

.spo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

/* **************************************************************
	access
*************************************************************** */
.access_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  width: 90%;
  text-align: center;
  align-items: center;
  margin: 0 auto 150px;
}

.access_title {
  display: block;
  width: 231px;
  margin: 0 auto 100px;
}

.access_p {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

/* **************************************************************
	fotter
*************************************************************** */
footer {
  width: 100%;
  height: 100%;
  background-image: url(../img/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding-bottom: 40px;
}

.footer-inner {
  width: 100%;
  height: 270px;
  overflow: visible;
  padding-top: 100px;
  text-align: center;
}

.footer-inner img {
  width: 440px;
  height: auto;
  margin-bottom: 24px;
}

.footer-inner p {
  font-weight: 300;
  color: #fff;
}