
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  color: #111;
  
}
/* =======================
   ハンバーガーボタン
======================= */

.menu-toggle{
  display:none;
}

.menu-toggle span{
  display:block;
  width:26px;
  height:3px;
  background:#111;
  border-radius:2px;
  transition:all .3s ease;
}

/* =======================
   モバイルナビ
======================= */

.mobile-menu{
  display:none;
}

/* =======================
   スマホ
======================= */

@media (max-width:768px){

  /* PCナビ消す */
  .menu{
    display:none !important;
  }

  /* ハンバーガー表示 */
  .menu-toggle{
    display:flex;
    position:fixed;
    top:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#fff;
    border-radius:6px;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    border:none;
    z-index:1001;
    cursor:pointer;
  }

  /* メニュー本体 */

  .mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:80%;
    max-width:320px;
    height:100vh;
    background:#f1f1f1;
    padding:100px 30px;
    display:flex;
    flex-direction:column;
    gap:30px;
    transition:right .35s ease;
    z-index:1000;
  }

  .mobile-menu a{
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    color:#111;
  }

  .mobile-menu.open{
    right:0;
  }

  /* ハンバーガー → × */

  .menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2){
    opacity:0;
  }

  .menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
  }

}




.hero {
  display: flex;
  width: 100%;
  min-height: 840px;
}

.hero-left,
.hero-right {
  flex: 0 0 50%;
  max-width: 50%;
}

.hero-left {
  box-sizing: border-box;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: stretch;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 620px;
  max-width: 100%;
  margin: 0;
}

.hero-logo {
  width: 100%;
  display: block;
  margin: 0 0 40px;
}

.hero-copy {
  margin: 0 0 40px;
  margin-left:60px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
}

.hero-copy-img {
  display: block;
  width: 50%;
  max-width: 310px;
  margin: 0 0 40px;
}

.hero-map {
  width: 260px;
  margin-left:60px;
  max-width: 100%;
  display: block;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 840px;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-photo.loaded {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left,
  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-left {
    padding: 64px 24px 40px;
  }

.hero-logo-wrap {
    margin: 0 auto;
    padding-top: 50px;
  }

  .hero-copy {
    font-size: 22px;
  }

  .hero-photo {
    min-height: auto;
    height: auto;
  }
}



.menu{
display:flex;
justify-content:center;
gap:90px;
padding:20px;
  margin: 40px 0;
  font-size: 18px;
  font-weight: 700;
  position:sticky;
  top:0;
  background:#fff;
  z-index:100;
}
.menu a{
position:relative;
text-decoration:none;
color:inherit;
padding-bottom:6px;
}

.menu a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0;
height:3px;
background:#000;
transition:width .3s ease;
}

.menu a:hover::after{
width:100%;
}

.section-fishery{
  background:#efefef;
  padding:0 0 60px;
}

/* 画像：ブラウザ幅いっぱい */
.fishery-image-full{
  width:100%;
  aspect-ratio:16/6;
  min-height:460px;
  overflow:hidden;
}
.fishery-image-full img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 45%;
}

/* テキストエリア */
.fishery-text{
  max-width:760px;
  margin:0 auto;
  padding:72px 40px 0;
  margin-bottom:0;
  box-sizing:border-box;
}

.fishery-label{
  display:block;
  margin:0 0 10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
}

.fishery-text h2{
  margin:0 0 28px;
  font-size:32px;
  font-weight:700;
  line-height:1.4;
}

.fishery-text p{
  margin:0 0 28px;
  font-size:15px;
  line-height:1.9;
}

.fishery-text p:last-child{
  margin-bottom:0 !important;
}

/* マップ */
.gyoba-map-wrap{
  max-width:900px;
  margin:40px auto 0;
  padding:0 40px;
  box-sizing:border-box;
}
.gyoba-map{
  width:100%;
  height:auto;
  display:block;
}

@media (max-width:768px){
  .section-fishery{
    padding:0 0 60px;
  }
  .fishery-image-full{
    aspect-ratio:unset;
    min-height:unset;
    max-height:260px;
  }
  .fishery-text{
    padding:48px 24px 0;
  }
  .fishery-text h2{
    font-size:24px;
    margin-bottom:20px;
  }
  .fishery-text p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:20px;
  }
  .gyoba-map-wrap{
    margin-top:48px;
    padding:0 20px;
  }
}


.fishery-methods{
    padding:0;
}

.methods-grid{
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px 0;
}

.method-card{
  display:flex;
  flex-direction:column;
}

.method-main-image{
  display:block;
  width:100%;
  height:420px;
  object-fit:cover;
}

/* スライダー */
.method-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.method-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.method-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.method-slide.active {
  opacity: 1;
}

.method-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.method-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
}

.method-dot.active {
  background: #fff;
}

@media (max-width: 768px) {
  .method-slider {
    aspect-ratio: 4/3;
  }
}

.method-content{
  padding:48px 40px 0;
  display:flex;
  flex-direction:column;
  height:100%;
}

.method-content h3{
  margin:0 0 32px;
  font-size:20px;
  font-weight:700;
  line-height:1.5;
}

.method-body{
  display:grid;
  grid-template-columns:minmax(0,1fr) 170px;
  gap:28px;
  align-items:start;
}

.method-text p{
  margin:0 0 20px;
  font-size:15px;
  line-height:1.95;
}

.method-text p:last-child{
  margin-bottom:0;
}

.method-side{
  margin:0;
}

.method-side img{
  display:block;
  width:170px;
  height:auto;
}

.method-side figcaption{
  margin-top:10px;
  font-size:12px;
  line-height:1.7;
  color:#777;
}

/* SP */
@media (max-width:768px){
  .fishery-methods{
    padding:80px 0;
  }

  .methods-grid{
    grid-template-columns:1fr;
    gap:64px;
  }

  .method-main-image{
    height:auto;
  }

  .method-content{
    padding:28px 20px 0;
  }

  .method-content h3{
    margin-bottom:22px;
    font-size:24px;
  }

  .method-body{
    grid-template-columns:1fr;
    gap:20px;
  }

  .method-side img{
    width:100%;
    max-width:220px;
  }

  .method-side figcaption{
    max-width:220px;
  }
}




.facility-section{
  background:#f1f1f1;
  margin-top:100px;
  padding:50px 0;
}

.facility-head{
  margin-bottom:90px;
}

.facility-head-inner{
  width:1105px;
  margin:0 auto;
  display:grid;
  grid-template-columns:190px 1fr;
  column-gap:60px;
  align-items:center;
  box-sizing:border-box;
}

.facility-title-box{
  background:#2f89b8;
  color:#fff;
  width:190px;
  height:180px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.facility-title-box span{
  display:block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
}

.facility-title-box h2{
  margin:0;
  font-size:18px;
  line-height:1.5;
  font-weight:700;
}

.facility-lead{
  margin:0;
  font-size:15px;
  line-height:2;
}

.facility-grid{
  width:1105px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:90px;
  row-gap:100px;
  box-sizing:border-box;
}

.facility-card{
  display:flex;
  flex-direction:column;
}

.facility-card h3{
  margin:0 0 28px;
  font-size:20px;
  line-height:1.5;
  font-weight:700;
}

.facility-card > p{
  margin:0 0 36px;
  font-size:15px;
  line-height:1.8;
}

.facility-info{
  display:grid;
  grid-template-columns:minmax(0,1fr) 110px;
  gap:28px;
  align-items:start;
}

.facility-meta p{
  margin:0 0 10px;
  font-size:13px;
  line-height:1.4;
}

.facility-meta p:last-child{
  margin-bottom:0;
}

.info-label{
  display:inline-block;
  margin-bottom:14px;
  padding:2px 14px;
  background:#f6f6f6;
  font-size:12px;
  font-weight:700;
  line-height:1.4;
}

.facility-qr img{
  display:block;
  width:110px;
  height:auto;
}

/* 1105以下 */
@media (max-width:1105px){
  .facility-head-inner,
  .facility-grid{
    width:calc(100% - 48px);
  }
}

/* SP */
@media (max-width:768px){
  .facility-section{
    padding:80px 0;
  }

  .facility-head{
    margin-bottom:60px;
  }

  .facility-head-inner{
    grid-template-columns:1fr;
    row-gap:28px;
  }

  .facility-title-box{
    width:180px;
    height:170px;
  }

  .facility-grid{
    grid-template-columns:1fr;
    row-gap:64px;
  }

  .facility-card h3{
    margin-bottom:22px;
    font-size:24px;
  }

  .facility-card > p{
    margin-bottom:28px;
  }

  .facility-info{
    grid-template-columns:1fr;
    gap:18px;
  }

  .facility-qr img{
    width:110px;
  }
}





.support-section{
 
  padding:50px 0 140px;
}

.support-head{
  margin-bottom:40px;
}

.support-head-inner{
  width:1105px;
  margin:0 auto;
  display:grid;
  grid-template-columns:190px 1fr;
  column-gap:60px;
  align-items:center;
  box-sizing:border-box;
}

.support-title-box{
  background:#c8b52d;
  color:#fff;
  width:190px;
  height:180px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.support-title-box span{
  display:block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
}

.support-title-box h2{
  margin:0;
  font-size:18px;
  line-height:1.5;
  font-weight:700;
}

.support-lead{
  margin:0;
  font-size:15px;
  line-height:2;
}

.support-target-wrap{
  width:1105px;
  margin:0 auto 50px;
  box-sizing:border-box;
  padding:20px 24px;
  border-left:4px solid #c8b52d;
  background:#faf8ee;
}

.support-card .support-target-wrap{
  width:100%;
  margin:0 0 28px;
}

.support-target-wrap .support-target{
  margin:0 0 6px;
  font-size:15px;
  font-weight:700;
}

.support-target-wrap .support-types{
  margin:0;
  font-size:14px;
  color:#555;
  line-height:1.8;
}

@media (max-width:1105px){
  .support-target-wrap{ width:calc(100% - 48px); }
}

@media (max-width:768px){
  .support-target-wrap{ width:90%; margin-bottom:40px; }
}

.support-grid{
  width:1105px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:90px;
  row-gap:100px;
  box-sizing:border-box;
}

.support-card{
  display:flex;
  flex-direction:column;
}

.support-card h3{
  margin:0 0 28px;
  font-size:20px;
  line-height:1.5;
  font-weight:700;
}

.support-body{
  display:flex;
  flex-direction:column;
}

.support-target{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.8;
}

.support-types{
  margin:0 0 28px;
  font-size:15px;
  line-height:1.8;
}

.support-block{
  margin-bottom:34px;
}

.support-block:last-child{
  margin-bottom:0;
}

.support-block h4{
  display:block;
  margin:0 0 12px;
  padding-left:10px;
  border-left:3px solid #c8b52d;
  font-size:15px;
  line-height:1.6;
  font-weight:700;
}

.support-block p{
  margin:0 0 6px;
  font-size:15px;
  line-height:1.9;
  color:#444;
}

.support-block p:last-child{
  margin-bottom:0;
}

.support-block .support-meta{
  display:inline-block;
  margin:2px 0 4px;
  padding:2px 8px;
  background:#f0ede0;
  border-left:3px solid #c8b52d;
  font-size:13px;
  line-height:1.7;
  color:#666;
}

.support-contact{
  width:1105px;
  margin:90px auto 0;
  text-align:center;
}

.support-contact-button{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-width:460px;
  height:108px;
  background:transparent;
  color:#111;
  border:2px solid #111;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  transition:opacity .25s ease;
}

.support-contact-button:hover{
  opacity:0.82;
}



@media (max-width: 768px){

  .support-head-inner{
    width:90% !important;
    grid-template-columns:1fr !important;
    row-gap:28px !important;
  }

  .support-grid{
    width:90% !important;
    grid-template-columns:1fr !important;
    row-gap:64px !important;
  }

.support-contact{
  width:100% !important;
  margin:70px auto 0 !important;
  text-align:center !important;
}

.support-contact-button{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;

  width:80% !important;
  max-width:320px !important;
  min-width:0 !important;

  height:76px !important;
  margin:0 auto !important;
  padding:0 20px !important;
  box-sizing:border-box !important;

  font-size:15px !important;
}
}



/* =======================
   お問い合わせ
======================= */

.contact-section {
  background: #f8f8f8;
  padding: 100px 0;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.contact-head {
  text-align: center;
  margin-bottom: 56px;
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.contact-head h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
}

.contact-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.contact-field {
  margin-bottom: 28px;
}

.contact-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.required {
  color: #c0392b;
  margin-left: 4px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #111;
}

.contact-field textarea {
  resize: vertical;
}

.contact-submit {
  text-align: center;
  margin-top: 40px;
}

.contact-submit button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 240px;
  height: 64px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .25s;
}

.contact-submit button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }
}

.site-footer{
  background:#111;
  color:#fff;
  padding:70px 20px;
}

.footer-inner{
  max-width:1105px;
  margin:0 auto;
  text-align:center;
}

.footer-nav{
  margin-bottom:30px;
}

.footer-nav a,
.footer-info a{
  color:#fff;
  text-decoration:none;
  opacity:.8;
}

.footer-nav a{
  margin:0 12px;
  font-size:14px;
}

.footer-nav a:hover{
  opacity:1;
}

.footer-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:18px;
}

.footer-info{
  font-size:14px;
  line-height:2;
  opacity:.8;
  margin-bottom:26px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-links-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: .5;
  margin: 0 0 12px;
}

.footer-links-caption {
  font-size: 11px;
  color: #fff;
  opacity: .5;
  margin: -6px 0 14px;
  line-height: 1.6;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 8px;
}

.footer-links-list a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  opacity: .7;
}

.footer-links-list a:hover {
  opacity: 1;
}

.footer-digitalbook {
  margin: 0 0 12px;
}

.footer-digitalbook a {
  color: #fff;
  font-size: 13px;
  opacity: .7;
  text-decoration: none;
}

.footer-digitalbook a:hover {
  opacity: 1;
}

.footer-copy{
  font-size:12px;
  opacity:.55;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}

/* ページトップボタン */

.page-top{
  position:fixed;
  right:24px;
  bottom:24px;
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:#111;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(0,0,0,.2);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s;
}

.page-top.show{
  opacity:1;
  pointer-events:auto;
}

/* スマホ */

@media (max-width:768px){

  .footer-nav{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .footer-nav a{
    margin:0;
    font-size:15px;
  }

}





/* =======================
   施設カード：TEL表示
======================= */

.facility-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: -18px 0 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #111;
  text-decoration: underline dotted;
  text-underline-offset: 4px;
}

.facility-tel a {
  color: inherit;
  text-decoration: none;
}

.facility-tel::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.facility-card h3 a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.facility-card h3 a:hover {
  opacity: 0.7;
}

/* =======================
   漁法カード：リンク・会社情報
======================= */

.method-body--full {
  grid-template-columns: 1fr !important;
}

.method-companies {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.method-companies p {
  margin: 0 0 8px !important;
  font-size: 14px !important;
}

.method-companies a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.method-companies a:hover {
  opacity: 0.7;
}

/* =======================
   支援制度：問い合わせ先
======================= */

.support-contact-info {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.support-contact-info p {
  margin: 0 0 6px;
}

.support-contact-info .facility-tel {
  margin: 0;
}

/* =======================
   キャッチコピー（漁業セクション）
======================= */

.fishery-catchcopy {
  font-size: 22px !important;
  font-weight: 700;
  margin-bottom: 28px !important;
}

/* =======================
   西ノ島について（下部セクション）
======================= */

.about-section {
  background: #fff;
  padding: 100px 0;
}

/* タブ（FISHERYセクション内） */
.about-tabs-wrap {
  max-width: 760px;
  margin: 60px auto 0;
  padding: 0 40px;
  box-sizing: border-box;
}

.about-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #ccc;
  margin-bottom: 40px;
}

.about-tab {
  background: none;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.05em;
  transition: color .2s;
}

.about-tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
  opacity: 0;
  transition: opacity .2s;
}

.about-tab.active {
  color: #111;
}

.about-tab.active::after {
  opacity: 1;
}

/* パネル */
.about-panel {
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
}

.about-panel.active {
  display: block;
  opacity: 1;
}

.about-panel p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 2;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-tabs-wrap {
    padding: 0 24px;
    margin-top: 48px;
  }
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.about-block {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #ddd;
}

.about-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.about-label {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f89b8;
}

.about-block p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 2;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-block a {
  color: inherit;
}

.about-block--contact p {
  font-size: 15px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

  .about-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}

/* =======================
   西ノ島町リンク集
======================= */

.links-section {
  background: #f1f1f1;
  padding: 80px 0;
}

.links-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.links-group-title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2f89b8;
}

.links-desc {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.links-list li {
  margin-bottom: 12px;
}

.links-list a {
  font-size: 15px;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.links-list a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .links-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact{
text-align:center;
}

.contact-button{
background:black;
color:white;
padding:20px 40px;
text-decoration:none;
display:inline-block;
}

.fade{
opacity:0;
transform:translateY(40px);
transition:opacity .8s ease, transform .8s ease;
}

.fade.show{
opacity:1;
transform:translateY(0);
}

html{
scroll-behavior:smooth;
}

@media(max-width:768px){

.hero{
flex-direction:column;
}

.hero-left{
width:100%;
padding:60px 20px;
}

.hero-right{
width:100%;
}

.hero-photo{
height:auto;
}

.two-col{
grid-template-columns:1fr;
}

.grid2{
grid-template-columns:1fr;
}




}
