/* =========================

   遊漁船 T-wing

   style.css

========================= */

/* リセット */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Yu Gothic","Hiragino Kaku Gothic ProN",sans-serif;

    line-height:1.8;

    color:#333;

    background:#f4f8fb;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* 共通 */

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

.section{

    padding:80px 0;

}

.gray{

    background:#eef5fb;

}

h2{

    text-align:center;

    font-size:2rem;

    margin-bottom:40px;

    color:#004b87;

}

.lead{

    text-align:center;

    max-width:900px;

    margin:0 auto 40px;

    font-size:1.1rem;

}

/* ヘッダー */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#003b73;

    z-index:999;

    box-shadow:0 3px 10px rgba(0,0,0,.2);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

.logo img{

    height:90px;

}

.nav ul{

    display:flex;

    gap:25px;

}

.nav a{

    color:#fff;

    font-weight:bold;

    transition:.3s;

}

.nav a:hover{

    color:#ffd54f;

}

/* ヒーロー */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

    margin-top:90px;

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

}

.hero-text{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    color:#fff;

    text-align:center;

    width:90%;

}

.hero-text h1{

    font-size:3rem;

    margin-bottom:20px;

}

.hero-text p{

    font-size:1.3rem;

    margin-bottom:30px;

}

/* ボタン */

.btn{

    display:inline-block;

    background:#0077cc;

    color:#fff;

    padding:14px 32px;

    border-radius:30px;

    font-weight:bold;

    transition:.3s;

}

.btn:hover{

    background:#005fa3;

    transform:translateY(-3px);

}

/* =========================

   T-wingについて

========================= */

.about-box{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:40px;

}

.about-item{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

    transition:.3s;

    text-align:center;

}

.about-item:hover{

    transform:translateY(-6px);

}

.about-item img{

    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center top;
    display: block;
}


.about-item h3{

    color:#004b87;

    margin:20px 0 10px;

    font-size:1.4rem;

}

.about-item p{

    padding:0 20px 25px;

    line-height:1.8;

}

/* =========================

   対象魚

========================= */

.target-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.target-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

    transition:.3s;

}

.target-card:hover{

    transform:translateY(-6px);

}

.target-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.target-card h3{

    margin:18px 0 10px;

    color:#004b87;

}

.target-card p{

    padding:0 18px 24px;

}

/* =========================

   料金

========================= */

.price-table{

    max-width:850px;

    margin:0 auto 40px;

}

.price-table table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.price-table th{

    background:#004b87;

    color:#fff;

    padding:18px;

    font-size:1.1rem;

}

.price-table td{

    padding:16px;

    text-align:center;

    border-bottom:1px solid #e5e5e5;

}

.price-table tr:last-child td{

    border-bottom:none;

}

.notice{

    max-width:850px;

    margin:0 auto;

    background:#fff;

    border-left:6px solid #0077cc;

    padding:25px;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.notice h3{

    color:#004b87;

    margin-bottom:15px;

}

.notice ul{

    list-style:disc;

    padding-left:20px;

}

.notice li{

    margin-bottom:10px;

}

/* =========================

   船内設備

========================= */

.equipment-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.equipment-item{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

    transition:.3s;

}

.equipment-item:hover{

    transform:translateY(-6px);

}

.equipment-item img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.equipment-item h3{

    color:#004b87;

    margin:18px 0 10px;

}

.equipment-item p{

    padding:0 18px 24px;

}

/* =========================

   ギャラリー

========================= */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:12px;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

/* =========================

   アクセス

========================= */

.access-box{

    max-width:700px;

    margin:0 auto;

    background:#fff;

    padding:35px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

}

.access-box h3{

    color:#004b87;

    margin-bottom:20px;

}

.access-box p{

    margin-bottom:15px;

}

/* =========================

   お問い合わせ

========================= */

.contact-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:30px;

}

.instagram{

    background:#E4405F;

}

.line{

    background:#06C755;

}

.fishbank{

    background:#0077cc;

}

.instagram:hover,

.line:hover,

.fishbank:hover{

    opacity:.9;

}

/* =========================

   フッター

========================= */

footer{

    background:#003b73;

    color:#fff;

    text-align:center;

    padding:50px 20px;

}

.footer-logo{

    width:120px;

    margin:0 auto 20px;

}

footer h3{

    margin-bottom:15px;

}

footer p{

    margin-bottom:8px;

}

/* =========================

   スマホ対応

========================= */

@media (max-width:768px){

    .header .container{

        flex-direction:column;

        gap:15px;

    }

    .nav ul{

        flex-wrap:wrap;

        justify-content:center;

        gap:12px;

    }

    .hero{

        height:70vh;

    }

    .hero-text h1{

        font-size:2rem;

    }

    .hero-text p{

        font-size:1rem;

    }

    h2{

        font-size:1.6rem;

    }

    .section{

        padding:60px 0;

    }

    .gallery-grid img,

    .about-item img,

    .target-card img,

    .equipment-item img{

        height:200px;

    }

    .btn{

        padding:12px 24px;

        font-size:0.95rem;

    }

}
.gallery {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    max-width: 1200px;

    margin: 30px auto;

    padding: 10px;

}

.gallery img {

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    background: #fff;

    border: 4px solid #1e88e5;

    border-radius: 15px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    transition: all 0.3s ease;

}

.gallery img:hover {

    transform: scale(1.05);

    border-color: #00bfff;

    box-shadow: 0 12px 25px rgba(0,0,0,0.35);

}

@media (max-width: 768px) {

    .gallery {

        grid-template-columns: repeat(2, 1fr);

    }

}

.info-box {

    background: #fff;

    border: 2px solid #0b6fb8;

    border-radius: 12px;

    padding: 20px;

    margin-top: 20px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}

.info-box h3 {

    margin-top: 0;

    color: #0b6fb8;

    text-align: center;

}

.info-box p {

    margin: 8px 0;

    text-align: center;

}
#about,

#target,

#price,

#equipment,

#rental,

#gallery,

#access,

#contact {

    background-color: #F4FBFF;

}
.hero {

    width: 100%;

    height: 75vh;

    min-height: 500px;

    background-size: cover;

    background-position: center;

}
#notice ul {

    margin: 0;

    padding-left: 20px;

}

#notice li {

    margin: 0;

    padding: 0;

    line-height: 1.4;

}
.gallery-item {
    text-align: center;
}

.gallery-item p {
    margin-top: 8px;
    font-weight: bold;
    color: #004b87;
}
.btn {
    display: inline-block;
    padding: 20px 70px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 15px;
}

@media (max-width:768px){
    .btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.hero-button {
    display: inline-block;
    padding: 15px 35px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.hero-button:hover {
    background: #e56d00;
}

.hero-button.instagram {
    background: #E1306C;
}

.hero-button.instagram:hover {
    background: #C13584;
}
.hero-button.price {
    background: #0077cc;
}

.hero-button.price:hover {
    background: #005fa3;
}
.hero-button.price {
    background: #0077cc !important;
    color: #ffffff !important;
}
/* ===== スマホ表示調整 ===== */
@media (max-width:768px){

.hero{
    min-height:100vh;
    padding:140px 20px 80px;
}

.hero h2{
    font-size:2rem;
    line-height:1.3;
}

.hero p{
    font-size:1.2rem;
}

.hero-button{
    width:90%;
    max-width:340px;
    font-size:1.4rem;
    white-space:nowrap;
}

.nav-links{
    gap:12px;
}

.nav-links a{
    font-size:1rem;
}
}
（今あるstyle.cssの最後）

・・・・・・
・・・・・・


/* ===== スマホ表示調整 ===== */
@media (max-width:768px){

.hero{
    min-height:100vh;
    padding:140px 20px 80px;
}

.hero h2{
    font-size:2rem;
    line-height:1.3;
}

.hero p{
    font-size:1.2rem;
}

.hero-button{
    width:90%;
    max-width:340px;
    font-size:1.4rem;
    white-space:nowrap;
}

.nav-links{
    gap:12px;
}

.nav-links a{
    font-size:1rem;
}
}
/* ===== オレンジボタン統一 ===== */

.fishbank-button,
.contact-button,
.btn{
    background:#f28c00;
    color:#fff;
    border:none;
}

.fishbank-button:hover,
.contact-button:hover,
.btn:hover{
    background:#d97700;
}
@media (max-width:768px){

.hero-button{
    width:90%;
    max-width:340px;
    font-size:1.2rem;
    white-space:normal;
    padding:15px 10px;
}

}
/* 今あるstyle.cssの最後 */

・・・・・・・・
・・・・・・・・


/* ===== スマホ背景画像調整 ===== */
@media (max-width:768px){


}
/* ===== スマホトップ画像調整 ===== */
@media (max-width:768px){

.hero{
    height:100vh;
    min-height:600px;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

}
/* ===== トップ画像スマホ修正 ===== */
@media (max-width:768px){

.hero{
    height:100vh;
    min-height:650px;
    padding:0;
    overflow:hidden;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
}

.hero-text{
    width:90%;
}

}
/* ボタン色の修正 */

.hero-button.instagram {
    background:#e1306c;
}

.hero-button.line {
    background:#06c755;
}

.contact-button {
    background:#0077b6;
}
/* お問い合わせボタン色修正 */

.contact-buttons .instagram {
    background:#E1306C;
    color:white;
}

.contact-buttons .line {
    background:#06C755;
    color:white;
}

.contact-buttons .fishbank-btn {
    background:#0077B6;
    color:white;
}
/* FishBankボタン文字をオレンジ */
.contact-buttons .fishbank-btn {
    color: orange;
}

.contact-buttons .fishbank-btn:visited {
    color: orange;
}
/* FishBankボタン */
.contact-buttons .fishbank-btn {
    background: orange;
    color: white;
}

.contact-buttons .fishbank-btn:visited {
    color: white;
}