@charset "UTF-8";
/* フォント定義 */
@import url('https://fonts.googleapis.com/css2?family=Zen+Antique&family=Zen+Kaku+Gothic+New&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Antique&family=Zen+Kaku+Gothic+New&display=swap');
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local('YuGothic-Medium'), local('Yu Gothic Medium'), local('YuGothic-Regular');
}
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local('YuGothic-Bold'), local('Yu Gothic');
}
body, .editor-styles-wrapper {
  font-family: 'Noto Sans JP', sans-serif !important;
}
/* リセット */
html, body {
  width: 100%;
  overflow-x: hidden; /* 横スクロールを禁止 */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  font-style: normal;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #000;
  width: 100%;
  min-height: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  background-image: url('../image/bg_img.webp');
  line-break: strict; 
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

p > img {
  border-radius: 3px;
}
img {
  border-radius: 2px;
}
hr {
	border: 0.8px solid #ccc;
}
h1 {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.2em;
padding-bottom: 20px;
}
.margin_bottom_30 {
  margin-bottom: 30px;
}
/* 全リスト共通で飛び出しを防止 */
.wp-block-list {
  list-style-position: inside;
  padding-left: 1.5em;
  margin-left: 0;
}
.photo_gallery {
	width: 280px;
	margin: 0 auto 5px;
	text-align: center;
	background-color: #FFFFFF;
	border-radius: 999px;
	border: 1px solid #005C76;
	padding: 10px 20px;
	font-size: 16px;
}
.photo_gallery a {
	text-decoration: none;
	color: #000;
}
.photo_gallery a:hover {
	text-decoration:underline;
	color: #005C76;
}

/* 投稿メイン */
.site-main {
	width: 100%;
	max-width: 1000px;
	margin: 40px auto;
	padding: 8px;
	display: flex;
	justify-content: center;
	column-gap: 20px;
}
.container {
  width: 100%;
  max-width: 1000px;
  padding: 0 8px;
  margin: 0 auto;
}
/* 投稿ビジット */
.widgets {
	width: 100%;
	max-width: 300px;
	background-color: #fff;
	padding: 8px;
}
.widgets ul {
	padding: 12px;
}
.widgets ul li {
	font-size: 0.8em;
	padding: 5px;
}
/* アーカイブCSS */
.post-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.post-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.post-item-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.post-excerpt {
  color: #555;
}

.margin_top_30 {
  margin-top: 80px;
}


/* ヘッダー固定 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  z-index: 1000;
}
/* 内部レイアウト */
header {
  font-style: italic;
  letter-spacing: 0.01em;
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
/* ロゴ */
.logo {
  margin-bottom: 8px;
}
.logo img {
  width: 200px;
  height: auto;
}
/* メニュー */
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 10px;
  padding: 0 10px;
  max-width: 100%; /* ← これが重要 */
  box-sizing: border-box;
}
.main-nav li a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.main-nav li a:hover, .main-nav li a.active {
  color: #007acc;
}
.main-nav li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 6px;
  background-image: url('../image/SVG/nav-underline.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-nav li a:hover::after, .main-nav li a.active::after {
  opacity: 1;
}
.sns-icons {
  position: absolute;
  top: 50px;
  right: 20px;
  display: flex;
  gap: 20px;
  margin-right: 20px;
}
/* 画像更新チェンジ */
.image_bg ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.image_bg ul li {
  width: 23%; /* 4列表示（100÷4=25から少し余白） */
}

.image_bg ul li img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* ビジュアルエリア */
.sns-icons img {
  width: 30px;
  height: 30px;
  display: block;
}
/* ビジュアルエリア */
.visual-wrapper {
  position: relative;
  width: 100%;
  height: clamp(400px, 50vw, 967px);
  background-color: #A0F8E4;
  overflow: hidden;
}
.visual-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
/* タブレット用画像 */
.zoom-bg-sp {
  display: none;
}
.zoom-bg-sps {
  display: none;
}
/* オーバーレイ画像 */
.overlay-content {
  width: clamp(400px, 58vw, 800px);
  position: absolute;
  top: 13%;
  left: 47%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  max-width: 100vw;
}
.overlay-content_man {
  width: clamp(400px, 40vw, 600px);
  margin: 25px auto 20px;
  z-index: 10;
}
/* 背景アニメーション */
.zoom-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 25s ease-in-out infinite;
  transition: opacity 1.2s ease; /* スムーズな切替 */
}
/* top_img 表示 → クロスフェードアウト → 再表示 */
.bg-1 {
  z-index: 1;
  animation: fadeTopCross 12s infinite ease-in-out;
}
/* sunset 表示 → クロスフェードアウト */
.bg-2 {
  z-index: 2;
  animation: fadeSunsetCross 12s infinite ease-in-out;
}
/* top_img.webp のアニメーション */
@keyframes fadeTopCross {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* sunset.webp のアニメーション */
@keyframes fadeSunsetCross {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ズームアニメーション */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* ブラー表示制御 */
.fade-seq {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease, filter 1s ease;
}
.fade-seq.show {
  opacity: 1;
  filter: blur(0);
}
.seq-1 {
  transition-delay: 0.2s;
}
.seq-2 {
  transition-delay: 0.6s;
}
/* 下部セクション */
.imgs_spot {
  background-color: #A0F8E4;
  background-image: url("../image/SVG/illust_item.svg");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center 30px;
  padding: 30px 0;
  width: 100%;
  margin-top: 0px;
}
.request {
  width: 100%;
  max-width: 600px;
  padding: 20px 8px 30px;
  margin: 0 auto;
}
.space {
  margin-top: 30px;
}
.image_bg {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0;
}
.subcopy {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.4));
  padding: 0 8px;
}
.image_bg > ul {
  width: 100%;
  max-width: 1300px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}
.image_bg > ul > li {
  width: 100%;
  max-width: 300px;
  max-height: 193px;
  border-radius: 6px;
  overflow: hidden; /* 各画像枠内でのはみ出しも防止 */
}
.image_bg > ul > li > img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 縦横比維持しつつ、中央をトリミング */
  display: block;
}
.title_top {
  width: 100%;
  max-width: 550px;
  margin: 50px auto;
}
.news_top {
  width: 100%;
  padding: 50px 0;
  background-color: #A0F8E4;
}
.news_top_title {
  width: 100%;
  text-align: left;
  position: relative;
  background-image: url("../image/line_img.webp");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 10px;
  padding-bottom: 25px; /* 波線が隠れないように十分な余白をとる */
}
.news_top_title span {
  width: 100%;
  max-width: 510px;
  display: block;
}
.news_article {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 8px;
}
.news_box {
	width: 100%;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  padding: 20px 0;
}
.news_img {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  overflow: hidden;
}
.news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* トリミングでぴったり埋める */
  display: block;
}
.news_text{
	width: 100%;
	max-width: 680px
} 

.news_text a {
  color: #000;
}
.news_date {
  width: 200px;
  font-weight: 600;
  padding: 5px 30px 5px;
  background-color: #000000;
  color: aliceblue;
  letter-spacing: 0.2em;
  text-align: center;
}
.news_art_title {
  font-size: 20px;
  font-weight: 600;
  margin: 4px 0;
}
.news_art_content {
  font-size: 16px;
}
.news_all {
  text-align: right;
}
.news_all a {
  color: #000;
}
.menu_banner_box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.menu_banner_img {
  width: 380px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  /* transform は初期では設定しない */
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.menu_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* アニメーション時に表示される状態 */
.menu_banner_img.left-in {
  transform: translateX(-60px);
}
.menu_banner_img.right-in {
  transform: translateX(60px);
}
/* 表示時に戻る */
.menu_banner_img.animate {
  opacity: 1;
  transform: translateX(0);
}
.sky_banner {
  width: 100%;
  max-width: 780px;
  margin: 50px auto 20px;
  padding: 0 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
/* 表示時にこのクラスが付く */
.sky_banner.show {
  opacity: 1;
  transform: translateY(0);
}
.sky_banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
footer {
  position: relative;
  margin: 150px 0 0;
  background-image: url('../image/footer_bg.webp');
  background-repeat: repeat-x;
  padding: 50px;
}
.footer_sup {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 150px;
}
.footer_rogo {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
}
.footer_email {
  width: 100%;
  max-width: 280px;
  margin: 10px auto 0px;
}
.back {
  position: fixed;
  right: 10px;
  bottom: 100px;
  width: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 9999;
  pointer-events: auto;
}
.back.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back img {
  width: 60px; /* スマホなどの初期幅 */
  height: auto;
  cursor: pointer;
}

.breadcrumb {
	margin-bottom: 1em;
}
.about_title {
  width: 100%;
  max-width: 500px;
  margin: 28px auto;
}
.about_message {
  width: 100%;
  padding: 30px;
  background-color: #29ABE2;
  margin: 20px 0 50px;
  color: #FFF;
}
.about_box {
  width: 100%;
  max-width: 1000px;
  margin: 80px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  column-gap: 20px;
}
.about_box_img {
  width: 100%;
  max-width: 350px;
}
.about_box_img img {
  width: 100%;
}
.about_box_message {
  width: 100%;
  max-width: 480px;
}
.about_box_message ol li {
  margin-bottom: 30px;
}
.about_banner_img {
  width: 100%;
  max-width: 420px;
  margin-bottom: 10px;
}
.about_banner_img img {
  width: 100%;
}
.concept_title {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.concept_content {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.about_box_message_mini {
  width: 100%;
  border-radius: 999px;
  font-weight: 500;
  background-color: #8DE1FF;
  padding: 12px;
  text-align: center;
  margin-bottom: 30px;
}
.menu_ill {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.menu_ill img {
  width: 100%;
}
.menu_box {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
}
.menu_box_message {
  width: 100%;
  max-width: 480px;
}
.menu_box_img {
  width: 100%;
  max-width: 480px;
}
.menu_box_message_0 {
  text-align: left;
  font-weight: 600;
  font-size: 20px;
}
.menu_box_message_00 {
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 20px;
}
.menu_2h {
  text-align: center;
  font-size: 20px;
  padding: 30px 8px 0px;
}
.menu_box_message_1 {
  margin: 15px 20px 20px;
  text-align: left;
}
.menu_box_img img {
  width: 100%;
}
.faq_Q {
  width: 100%;
  text-align: left;
  background-color: #FBB03B;
  padding: 15px;
font-weight: 500;
}
.faq_a {
  width: 100%;
  text-align: left;
  padding: 15px;
  margin: 20px 0px;
}
.access_ill {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding-bottom: 20px;
}
.access_ill img {
	width: 100%;
}

.access_message {
	width: 100%;
  text-align: center;
  border-radius: 999px;
  padding: 12px;
  background-color: #29ABE2;
  font-size: 22px;
  color: #fff;
}

.access_map {
	width: 100%;
	height: 100%;
	margin: 80px auto 30px;
}

.access_box {
	width: 100%;
	max-width: 1000px;
	display: flex;
	justify-content:center;
	flex-wrap: wrap;
	column-gap: 20px;
	margin: 50px 0px;
}

.access_box_in {
	width: 100%;
	max-width:400px;
	margin-top: 50px;
	padding: 0 8px;
}

.access_box_title {
	width: 100%;
	max-width: 400px;
}

.access_box_img {
	width: 100%;
	max-width: 400px;
}
.access_box_img img {
	width: 100%;
}

.contact_message {
width: 100%;
  text-align: center;
  border-radius: 999px;
  padding: 12px;
  background-color: #29ABE2;
  font-size: 22px;
  color: #fff;
}

.contact_info {
	width: 100%;
	max-width: 900px;
	margin: 30px auto 50px;
}
.form-wrapper {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 30px 30px 80px;
  box-sizing: border-box;
}
input[type="submit"]:hover,
button[type="submit"]:hover {
	opacity: 0.8;
}

.form {
  display: flex;
  flex-direction: column;
}

.label {
  margin-top: 30px;
  font-weight: bold;
  font-size: 14px;
}

.required {
  color: red;
  font-size: 14px;
  margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.textarea {
  resize: vertical;
}

.small {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* ===== ラジオボタン ===== */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

/* ===== 横並び項目（大人/子供、プラン）===== */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.flex-item {
  flex: 1;
  min-width: 300px;
}

/* ===== チェックボックス同意部分 ===== */
.checkbox-row {
  margin-top: 20px;
  font-size: 14px;
}

.checkbox-row input {
  margin-right: 8px;
}
.radio-group label {
  font-size: 1.0em;  /* 例：文字サイズを1.2倍に */
  line-height: 1.6;
}
.radio-group input[type="checkbox"] {
  width: 20px;   /* 横幅 */
  height: 20px;  /* 高さ */
  vertical-align: middle;
}
/* ===== ボタンとリンク ===== */
.button {
	width: 250px;
	text-align: center;
	background-color: #1da9df;
	color: white;
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	border-radius: 25px;
	cursor: pointer;
}
.mw_wp_form .horizontal-item {
  margin-left: 10px;
}
.mw_wp_form select {
  width: 100%;         /* コンテナいっぱいに広げる */
  max-width: 400px;    /* またはお好みで幅を制限 */
  padding: 10px;       /* テキストボックスと同じくらいの余白 */
  font-size: 16px;     /* テキストサイズ統一 */
  box-sizing: border-box;
}
.checkbox-row input[type="checkbox"] {
  vertical-align: middle;
  margin: 0 5px 0 10px; /* 左に10px・右に5pxの余白で見やすく */
  transform: scale(1.2); /* チェックボックスを見やすく拡大（任意） */
}

.checkbox-row label {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

.label_center {
	width: 100%;
	text-align: center;
	margin-top: 30px;
}



.privacy {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.privacy a {
  color: #333;
  text-decoration: none;
}

.black_message {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 30px;
	background-color: #000000;
	color: #fff;
}
.post-navigation {
	margin-top: 50px;
}
.post-navigation {
      margin-bottom:50px;
}
