@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic&family=IBM+Plex+Sans+JP&family=Kaisei+Decol&family=Lancelot&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic&display=swap');
@import url("contact.css");
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body {
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 font-weight: 400;
 font-style: normal;
 line-height: 1.6;
 color: #000;
 overflow-x: hidden;
 overflow-wrap: anywhere;
 word-break: normal;
 line-break: strict; 
}
/* ローディング画面 -----------------------------------*/
#loading {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 9999;
 opacity: 1;
 visibility: visible;
 transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
#loading.fade-out {
 opacity: 0;
 visibility: hidden;
}
#loading img {
 max-width: 150px;
 height: auto;
 animation: loading-pulse .5s ease-in-out infinite alternate;
}
@keyframes loading-pulse {
 0% {
 opacity: 0.5;
}
 100% {
 opacity: 1;
}
}
/* メインコンテンツ -----------------------------------*/
#main-content {
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.8s ease-in, visibility 0.8s ease-in;
}
#main-content.show {
 opacity: 1;
 visibility: visible;
}
/* ヘッダー・ナビゲーション -----------------------------------*/
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 padding: 20px 0;
 transition: all 0.3s ease;
 background: transparent;
}
.nav-container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}
.nav-menu {
 display: flex;
 justify-content: flex-end;
 align-items: center;
 transition: all 0.3s ease;
}
.nav-links {
 display: none;
 list-style: none;
}
/* ハンバーガーメニュー */
.hamburger {
 display: flex;
 flex-direction: column;
 cursor: pointer;
 padding: 15px;
 background: rgba(255, 255, 255, 0.9);
 border-radius: 10px;
 backdrop-filter: blur(10px);
 box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease;
 position: relative;
 z-index: 1001;
}
.header.scrolled .hamburger {
 background: rgba(255, 255, 255, 0.95);
}
/* PC用スタイル */
@media (min-width: 768px) {
.header.scrolled {
 background: rgba(255, 255, 255, 1);
 backdrop-filter: blur(10px);
 box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
 padding: 10px 0;
}
.nav-links {
 display: flex;
 gap: 13px;
 background: rgba(255, 255, 255, 0.8);
 border-radius: 5px;
 padding: 15px 30px;
 backdrop-filter: blur(10px);
 transition: all 0.3s ease;
}
.header.scrolled .nav-links {
 background: rgba(255, 255, 255, 0.95);
 border-radius: 0;
 padding: 15px 30px;
 box-shadow: none;
}
.nav-links a {
 font-family: "Zen Maru Gothic", sans-serif;
 text-decoration: none;
 color: #333;
 font-size: 13px;
 font-weight: 500;
 transition: color 0.3s ease;
}
.nav-links a:hover {
 color: #2A7A6F;
}
.hamburger {
 display: none;
}
}
/* PC用スタイル */
@media (min-width: 1020px) {
.nav-links a {
 font-size: 15px;
}
}
.hamburger span {
 width: 25px;
 height: 3px;
 background: #94987E;
 margin: 3px 0;
 transition: 0.3s;
 border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
 transform: rotate(-45deg) translate(-6px, 6px);
}
.hamburger.active span:nth-child(2) {
 opacity: 0;
}
.hamburger.active span:nth-child(3) {
 transform: rotate(45deg) translate(-6px, -6px);
}
/* モバイルメニュー */
.mobile-menu {
 font-family: "Zen Maru Gothic", sans-serif;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background: #5A9797;
 z-index: 999;
 display: none;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 text-align: center;
}
.mobile-menu.active {
 display: flex;
}
.mobile-nav-links {
 list-style: none;
 margin-bottom: 20px;
}
.mobile-nav-links li {
 margin: 0 0 40px;
}
.mobile-nav-links a {
 color: #fff;
 text-decoration: none;
 font-size: 17px;
 font-weight: 400;
 transition: color 0.3s ease;
}
.mobile-nav-links a:hover {
 color: #133933;
}
/* ボタンを横並びにするコンテナ */
.mobile-btn-container {
 display: flex;
 gap: 10px;
 justify-content: center;
}
a.mobile-btn {
 border: 2px solid #fff;
 color: #fff;
 font-size: 16px;
 padding: .5em 1.5em;
 border-radius: 50px;
 cursor: pointer;
 display: inline-block;
 transition: all 0.3s ease;
 text-decoration: none;
}
a.mobile-btn:hover {
 background: #fff;
 color: #2A7A6F;
}
/* ヘッダースライドショー -----------------------------------*/
.hero-slider {
 position: relative;
 width: 100%;
 height: 80vh;
 overflow: hidden;
 background: #999;
 margin-bottom: 50px;
}
.slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 opacity: 0;
 transition: opacity 1s ease-in-out;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}
.slide.active {
 opacity: 1;
}
.slide-content {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 color: #fff;
 z-index: 10;
 width: 100%;
 pointer-events: none;
 display: flex;
 justify-content: center;
 align-items: center;
}
.main-title {
 max-width: 35%;
 width: auto;
 height: auto;
 text-shadow: none;
}
.main-title img {
 width: 100%;
 height: auto;
 display: block;
 pointer-events: auto;
}
/* セクション内スライダー */
.section-slider {
 position: relative;
 width: 100%;
 height: 50vh;
 overflow: hidden;
 border-radius: 0;
}
.section-slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 opacity: 0;
 transition: opacity 0.6s ease-in-out;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}
.section-slide.active {
 opacity: 1;
}
/* 全幅スライダー */
.full-width-slider {
 width: 100vw;
 height: 300px;
 overflow: hidden;
 position: relative;
 margin: 0 0 40px 0;
 background: #f8f8f8;
 /* ビューポート幅いっぱいに表示するための調整 */
 margin-left: calc(50% - 50vw);
 margin-right: calc(50% - 50vw);
}
.slider-track {
 display: flex;
 height: 100%;
 transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
 will-change: transform;
}
.slider-item {
 flex: none;
 height: 300px;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 position: relative;
}
.slider-nav {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 background: rgba(0, 0, 0, 0.5);
 color: white;
 border: none;
 width: 50px;
 height: 50px;
 font-size: 20px;
 cursor: pointer;
 z-index: 10;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: background-color 0.3s ease;
}
.slider-nav:hover {
 background: rgba(0, 0, 0, 0.7);
}
.slider-nav.prev {
 left: 20px;
}
.slider-nav.next {
 right: 20px;
}
/* PC用スタイル */
@media (min-width: 768px) {
.hero-slider {
 height: 100vh;
}
.main-title {
 max-width: 25%;
}
.section-slider {
 height: 400px;
}
}
/* フェードイン アニメーション */
.fade-in {
 opacity: 0;
 transform: translateY(30px);
 transition: all 0.8s ease;
}
.fade-in.visible {
 opacity: 1;
 transform: translateY(0);
}
/* ページトップボタン */
.page-top-btn {
 position: fixed;
 bottom: 30px;
 right: 30px;
 width: 50px;
 height: 50px;
 background: #527A75;
 color: #fff;
 border: none;
 border-radius: 50%;
 cursor: pointer;
 font-size: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 0;
 visibility: hidden;
 transition: all 0.3s ease;
 z-index: 1000;
 box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.page-top-btn.visible {
 opacity: 1;
 visibility: visible;
}
.page-top-btn:hover {
 background: #297A7A;
 transform: translateY(-2px);
 box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
/* メインコンテンツ -----------------------------------*/
.main-content {
 background: #fff;
 position: relative;
 z-index: 10;
}
.intro-section {
 background: #EDF8F6;
 padding: 60px 20px;
 text-align: center;
 max-width: 100%;
 margin: 0 auto 50px;
}

.intro-title {
 font-family: "Kaisei Decol", serif;
 font-weight: 400;
 font-style: normal;
 font-size: 35px;
 margin-bottom: 30px;
 color: #333;
}
.intro-title-en {
 font-family: "Lancelot", serif;
 font-weight: 400;
 font-style: normal;
 font-size: 30px;
 margin-bottom: 0px;
 color: #333;
}
.intro-text {
 font-family: "Zen Maru Gothic", sans-serif;
 font-weight: 400;
 font-style: normal;
 font-size: 13px;
 line-height: 1.8;
 color: #666;
 margin-bottom: 20px;
}
/* PC用スタイル */
@media (min-width: 768px) {
.intro-title {
 font-size: 45px;
}
.intro-title-en {
 font-size: 35px;
}
.intro-text {
 font-size: 16px;
 max-width: 800px;
 margin: 0 auto 40px;
}
.intro-section {
 padding: 100px 40px;
}
}
/* コンテンツセクション -----------------------------------*/
.content-section {
 position: relative;
 max-width: 1200px;
 margin-left: auto;
 margin-right: auto;
 margin-bottom: 200px;
 padding: 0;
 z-index: 1;
}
.section-title {
 font-family: "Kaisei Decol", serif;
 font-weight: 400;
 font-style: normal;
 font-size: 25px;
 text-align: center;
 margin-bottom: 20px;
 color: #297A7A;
 /*background: #fff;*/
 position: relative;
 z-index: 10;
 padding: 5px 10px 20px;
}
.section-title span {
 font-size: 18px;
 margin-bottom: 20px;
 display: block;
}
/* 短い下線 */
.section-title::after {
 content: "";
 display: block;
 width: 3em; 
 height: 1px; 
 background-color: #000; 
 margin: 20px auto 0;
}
.section-title-en {
 font-family: "Lancelot", serif;
 font-weight: 400;
 font-style: normal;
 font-size: 16px;
 text-align: center;
 margin-bottom: 0px;
 color: #999;
 /*background: #fff;*/
 position: relative;
 z-index: 10;
 padding: 5px;
}
/* SNSアイコンラッパー */
.sns-icon-wrapper {
 width: 100%;
 display: flex;
 justify-content: center;
 padding: 0 20px;
}
.content-text-wrapper,
.content-text-wrapper2 {
 margin-top: 30px;
}
.section-image {
 width: 100%;
 height: 100%;
 margin-bottom: 30px;
 overflow: hidden;
}
.section-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.section-text,
.section-text-en {
 font-optical-sizing: auto;
 font-weight: 400;
 font-style: normal;
 font-size: 16px;
 line-height: 1.8;
 color: #666;
 margin-bottom: 30px;
 padding: 0 20px;
}
.section-text-title,
.section-text-title-en {
 font-size: 17px;
 margin-bottom: 5px;
}
.section-text-title-b,
.section-text-title-en-b {
 color: #5A9797;
 font-size: 18px;
 margin-bottom: 5px;
}
.section-text a {
 font-optical-sizing: auto;
 font-weight: 400;
 font-style: normal;
 font-size: 16px;
 line-height: 1.8;
 color: #666;
 display: inline-block;
 text-decoration: none;
 border-bottom: 1px dashed #666;
}
.section-text a:hover {
 color: #666;
 border-bottom: 1px solid #666;
}
.section-text p,
.section-text-en p{
 padding: 10px 0;
}
.section-text.detail::before,
.section-text.cancel::before {
 content: "\f111";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 color: #297A7A;
 display: inline-block;
 margin-right: .3em;
}
.section-text.detail span {
 display: inline-block;
 font-weight: bold;
 margin-right: .5em;
}
/* コンテンツリスト */
.content-list {
 list-style: none;
 padding-left: 0;
}
.content-list > li {
 position: relative;
 padding-left: 1.2em;
 margin-bottom: 8px;
}
.content-list > li::before {
 content: "\f111";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 color: #297A7A;
 position: absolute;
 left: 0;
 top: 0;
}
.content-list1 {
 list-style: none;
}
.content-list1 li {
 position: relative;
 padding-left: 1.2em;
 margin-bottom: 8px;
}
.content-list2 {
 list-style: none;
}
.content-list2 li {
 position: relative;
 padding-left: .2em;
 margin-bottom: 5px;
}
.content-list1 li::before {
 content: "\f068";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 color: #297A7A;
 position: absolute;
 left: 0;
 top: 0;
}
.sns-icon {
 text-align: center;
 margin-bottom: 60px;
 position: relative;
 z-index: 5;
}
.sns-icon a {
 display: inline-block;
 width: 50px;
 height: 50px;
 background: #527A75;
 color: #fff;
 border-radius: 50%;
 line-height: 50px;
 text-align: center;
 font-size: 26px;
 text-decoration: none;
 transition: all 0.3s ease;
 margin: 0 10px;
}
.sns-icon a.insta-icon {
 background: #833ab4;
 background: linear-gradient(to bottom, #833ab4,#fd1d1d,#fcb045);
}
.sns-icon a.facebook-icon {
 background: #1877f2 ;
}
.sns-icon a.event-icon {
 background: #527A75;
}
.sns-icon a.support-icon {
 background: #8882B0;
}
.sns-icon a:hover {
 transform: translateY(-2px);
}
a.moshikomi {
 display: block;
 width: fit-content;
 background: #527A75;
 color: #fff;
 padding: 15px 40px;
 border-radius: 10px;
 text-decoration: none;
 font-size: 16px;
 transition: all 0.3s ease;
 position: relative;
 z-index: 100;
 border: none;
 cursor: pointer;
 margin: 40px auto;
 visibility: visible;
 opacity: 1;
 box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
a.moshikomi:hover {
 background: #297A7A;
}
/* PC用スタイル */
@media (min-width: 768px) {
.content-section {
 margin-bottom: 100px;
 padding: 0 40px;
}
.section-title {
 font-size: 35px;
 margin-bottom: 30px;
 padding: 0 0 30px;
}
.section-title span {
 font-size: 20px;
}
.section-title-en {
 font-size: 20px;
 margin-bottom: 10px;
 padding: 30px 0 0;
}
 /* SNSアイコンラッパーのPC用スタイル */
.sns-icon-wrapper {
 max-width: 1200px;
 margin: 0 auto 30px;
 padding: 0;
}
.content-wrapper {
 display: flex;
 align-items: flex-start;
 gap: 0;
}
.section-image, .section-slider {
 width: 50%;
 margin-bottom: 0;
 flex-shrink: 0;
 border-radius: 8px;
 overflow: hidden;
 position: relative;
 z-index: 1;
}
.section-image img {
 border-radius: 8px;
}
.content-text-wrapper {
 width: 50%;
 padding-left: 20px;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 margin-top: 0;
}
.content-text-wrapper2 {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
}
.section-text,
.section-text-en {
 font-size: 16px;
 max-width: none;
 margin: 0 0 40px 0;
 padding: 0;
}
.sns-icon {
 text-align: center;
}
}
.contact-section {
 background: #f5f5f5;
 padding: 60px 20px;
 text-align: center;
 margin-top: 20px;
}
.copyright {
 margin-top: 20px;
 font-size: 12px;
 color: #999;
}
.contact-btn {
 display: inline-block;
 background: #527A75;
 color: #fff;
 padding: 12px 40px 15px;
 border-radius: 10px;
 text-decoration: none;
 font-size: 16px;
 transition: all 0.3s ease;
 position: relative;
 z-index: 100;
 border: none;
 cursor: pointer;
 margin: 20px 0;
 visibility: visible !important;
 opacity: 1 !important;
}
.contact-btn:hover {
 background: #297A7A;
 transform: translateY(-2px);
 box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* パララックス効果 -----------------------------------*/
.parallax-element {
 transform: translateZ(0);
 transition: transform 0.1s ease-out;
}
@media (min-width: 768px) {
.parallax-element .section-image,
.parallax-element .section-slider {
 margin-bottom: 20px;
}
}
/* イベント最新情報 -----------------------------------*/
.event-list-section {
 box-sizing: border-box;
 width: 100%;
 padding: 0 10px;
 margin: 0 auto;
}
.event-list {
 display: flex;
 flex-direction: column;
}
.event-item {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 border-bottom: 1px dotted #ccc;
 padding: 10px 0;
 position: relative;
}
.event-item:first-child {
 border-top: 1px dotted #ccc;
}
.event-item a {
 text-decoration: none;
 display: flex;
 align-items: center;
 flex: 1;
}
.event-date {
 font-size: 13px;
 color: #999;
 margin: 0 20px 0 5px;
 white-space: nowrap;
}
.event-title {
 color: #333;
 padding-right: 30px;
}
.event-title:hover {
 color: #999;
}
.event-item::after {
 content: "\f0a9";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 background: #39A899;
 background: linear-gradient(90deg,rgba(57, 168, 153, 1) 0%, rgba(54, 107, 161, 1) 80%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 position: absolute;
 right: 2%;
 top: 50%;
 transform: translateY(-50%);
 transition: all 0.3s ease;
 line-height: 1;
}
.event-item:hover {
 background-color: #EDF8F6;
}
/* hover時に矢印に切り替え */
.event-item:hover::after {
 content: "\f061";
 transform: translate(5px, -50%);
}
.pagination {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 0;
 margin: 40px 0;
}
.pagination a,
.pagination span {
 display: flex;
 align-items: center;
 justify-content: center;
 min-width: 40px;
 height: 40px;
 padding: 0 10px;
 text-decoration: none;
 color: #333;
 background-color: #fff;
 border: 1px solid #ddd;
 border-right: none;
 font-size: 12px;
 transition: background-color 0.3s;
}
.pagination a:hover {
 background-color: #EDF8F6;
}
.pagination .page-numbers:last-child,
.pagination a:last-child {
 border-right: 1px solid #ddd;
}
/* 現在のページ */
.pagination .current {
 background-color: #2A7A6F;
 color: #fff;
 font-weight: bold;
 border-color: #2A7A6F;
}
/* 前へ・次へボタン */
.pagination .prev,
.pagination .next {
 min-width: 70px;
 font-weight: 500;
}
/* 最初と最後の角を丸くする */
.pagination a:first-child,
.pagination span:first-child {
 border-radius: 25px 0 0 25px;
}
.pagination a:last-child,
.pagination span:last-child {
 border-radius: 0 25px 25px 0;
 border-right: 1px solid #ddd;
}
/* 現在のページが最初または最後の場合 */
.pagination .current:first-child {
 border-radius: 25px 0 0 25px;
}
.pagination .current:last-child {
 border-radius: 0 25px 25px 0;
}
/* PC用スタイル */
@media (min-width: 768px) {
.contact-section {
 padding: 60px 40px;
}
.event-list-section {
 max-width: 1200px;
 padding: 0 20px;
}
}
/* プライバシー・キャンセルポリシー -----------------------------------*/
.policy h3 {
 margin-bottom: 30px;
 text-align: center;
 color: #2A7A6F;
}
.policy > ol {
 color: #666;
 counter-reset: section;
 list-style: none;
 padding: 10px;
}
.policy > ol > li {
 margin-bottom: 40px;
 padding-bottom: 30px;
 border-bottom: 1px solid #e0e0e0;
}
.policy > ol > li:last-child {
 border-bottom: none;
}
.policy > ol > li::before {
 counter-increment: section;
 content: counter(section) ". ";
 color: #2A7A6F;
 font-weight: bold;
 margin-right: 5px;
}
.policy h4 {
 color: #2A7A6F;
 display: inline-block;
}
.policy p {
 margin: 15px 0;
}
.policy ul {
 list-style: none;
 padding-left: 0;
 margin: 15px 0 15px 10px;
}
.policy ul li {
 position: relative;
 padding-left: 1.2em;
 margin-bottom: 8px;
}
.policy ul li::before {
 content: "\f111";
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 color: #297A7A;
 position: absolute;
 left: 0;
 top: 0;
}
.policy a {
 color: #2A7A6F;
 text-decoration: underline;
}
.policy a:hover {
 opacity: 0.7;
}