@charset "utf-8";
/*===============================
全体
================================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body{
    color: #005497;
    background-color: #fff;
    max-width: 1920px;
    margin: 0 auto;
}

h2#subtitle{
    height: auto;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #005497;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2#subtitle::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 30px;
    background-image: url(lemon-site-images/Firefly_瀬戸内レモン\ 188392.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/*===============================
ヘッダー
================================*/
header{
    background-image: url(lemon-site-images/Firefly\ 20250812190724.png);
    width: 100%;
    height: auto;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 5% 50px;
    position: relative;
    margin: 0 auto;
}

header p{
    margin: 0;
    margin-top: 80px;
    font-size: 40px;
    color: #005497;
}

header h1{
    margin-top: 30px;
    font-size: 120px;
    color: #005497;
    -webkit-text-stroke: 3px #fffa5f;
}

/* ナビゲーション */
header nav{
    position: absolute;
    top: 00px;
    right: 0;
    z-index: 10;
    background-color: #fafabf; 
    padding: 12px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header nav ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

header nav ul li a{
    display: flex;
    align-items: center;

    padding: 0;
    background-color: transparent;
    color: #005497;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

header nav ul li a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(lemon-site-images/Firefly_レモン\ 692583.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


header nav ul li a:hover {
    color: #FFD700;
}

/*===============================
季節限定
================================*/
.seasonal{
    background-color: #fafabf;
    padding: 40px 5% 80px;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}

.seasonal h2#subtitle{
    height: 30px;
    font-size: 30px;
    font-weight: bold;

}


.product.image {
    display: flex;
    justify-content: center;
    gap: 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.product.image > div {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    flex-shrink: 1;
}

.product.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.seasonal > a{
    color: #005497;
    position: absolute;
    font-weight: bold;
    bottom: 15px;
    right: 1%;
}

.seasonal > a::after {
    content: " ➔";
    font-weight: bold;
}

.seasonal > a:hover{
    color: #FFD700;
}
/*===============================
生産者紹介・お知らせ
================================*/
div.two-column{
    display: flex;
    margin: 25px auto 0;
    gap: 3%;
    max-width: 1400px;
    padding: 0 5%;
    align-items: flex-start;
}


.two-column section:first-child {
    padding: 0;
    flex: 1.5;
}

.two-column section:first-child img {
    width: 100%;
    max-width: 330px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.producer-info {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    flex: 1;
}

.producer-container {
    display: flex;
    gap: 3%;
    align-items: center;
}

.producer-image {
    flex-shrink: 0;
}

.self-introduction {
    margin: 0;
    padding: 0;
    border: none;
    font-weight: bold;
    color: #005497;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}


.producer-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15px;
    color: #005497;
    font-weight: bold;
    display: block;
}

/*===============================
お知らせ
================================*/
.news{
    flex: 1;
    position: relative;
}

.news h2#subtitle{
    margin-bottom: 25px;
}
.news-back{
    background-color: #fafabf;
    padding: 30px 30px 60px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.news-item{
    padding: 15px 0;
    border-bottom: 1px solid #005497;
}

.news-item:last-of-type {
    border-bottom: none;
}

.news-item time{
    display: block;
    color: #005497;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.news-item p{
    display: block;
    color: #005497;
    line-height: 1.8;
    font-size: 14px;
}

.more-link{
    display: inline-block;
    position: absolute;
    bottom: 20px;
    right: 30px;
    color: #005497;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}

.more-link > a{

    font-weight: bold;

}

.more-link::after {
    content: " ➔";
}

.more-link:hover {
    color: #FFD700;
}

/*===============================
ビジョン
================================*/
.vision{
    margin-top: 25px;
    background-image: url(lemon-site-images/AdobeStock_563138457.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 120px 5%;
    min-height: 500px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.vision::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.vision h2,
.vision .content {
    position: relative;
    z-index: 2;
}

#main-copy {
    font-size: 65px;
    font-weight: bold;
    margin-bottom: 60px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 0.1em;
    color: #fff;
}

.vision .content {
    max-width: 900px;
    margin: 0 auto;
}

.vision .content p{
    font-size: 30px;
    line-height: 2.2;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: normal;
}

.vision .content p:last-child {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 0;
}

/*===============================
よくある質問
================================*/
.faq {
    padding: 30px 5%;
    background-color: #fff;
    max-width: 1920px;
    margin: 0 auto;
}

.faq #subtitle {
    font-size: 28px;
    color: #005497;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-weight: bold;
}

.faq #subtitle::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #005497;
    margin: 10px auto 0;
    display: none;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.question {
    background-color: #FFFACD;
    color: #333;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: bold;
}

.answer {
    padding: 25px;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.answer p {
    line-height: 1.9;
    color: #555;
    font-size: 14px;
}

.faq-item > a {
    display: inline-block;
    text-align: right;
    margin: 20px 0 0;
    padding: 0 25px 20px;
    color: #005497;
    font-weight: bold;
    text-decoration: none;
    border-bottom: none;
    font-size: 13px;
}

.other-questions {
    display: block;
    text-align: right;
    max-width: 1200px;
    margin: 20px auto 0;
    color: #005497;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
}

.other-questions::after {
    content: " ➔";
}

.other-questions:hover {
    color: #FFD700;
}
/*===============================
アクセス・お問い合わせ
================================*/
.access {
    background-color: #fff;
    padding: 20px 5%;
    max-width: 1920px;
    margin: 0 auto;
}

#contact {
    height: auto;
    font-size: 30px;
    font-weight: bold;
    background: url(lemon-site-images/Firefly_瀬戸内レモン\ 188392.png) no-repeat left center;
    background-size: 40px 30px;
    padding-left: 45px;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #005497;
    display: flex;
    align-items: center;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 4%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.map {
    flex-shrink: 0;
}

.map img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-title {
    font-size: 32px;
    color: #005497;
    margin-bottom: 30px;
    font-weight: bold;
}

address {
    font-style: normal;
    line-height: 2;
}

.label {
    color: #005497;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 16px;
}

.label-address {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

address > p.label:first-of-type {
    margin-top: 0;
}

address > p:not(.label):not(.label-address) {
    font-size: 18px;
    color: #333;
}

.contact-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 50px;
    background-color: #FFFACD;
    color: #005497;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-button:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 1;
}

/*===============================
フッター
================================*/
footer {
    background-image:  url(lemon-site-images/AdobeStock_520953628.png);
    background-color: #fafabf;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 5% 50px;
    text-align: center;
    max-width: 1920px;
    margin: 0 auto;
}


.footer-title {
    font-size: 60px;
    margin-bottom: 40px;
    color:#005497;
    font-weight: bold;
    letter-spacing: 0.05em;
}

footer nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

footer nav ul li a {
    color: #005497;
    font-size: 18px;
    padding: 5px 0;
    font-weight: bold;
}

footer nav ul li a:hover {
    color: #FFD700;
}

.footer-icon {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.footer-icon a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.footer-icon a:hover {
    transform: scale(1.1);
}

.footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:none;
}