@charset "utf-8";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

body  {
    font-size: 1.8rem;
    line-height: 1.6;
    color:#333;
    font-style: normal;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif , "Yu Gothic", YuGothic, "Meiryo", sans-serif;
    min-width: 1200px;
}

@media screen and (max-width: 1024px) {
    body  {
        min-width: unset;
    }
}

main{
    overflow: hidden;
    margin-top: 80px; /* ヘッダーの高さ分の余白を追加 */
}

/*-----------------------------------------------
共通
-----------------------------------------------*/

/*レイアウト*/
.container{
    max-width: 1020px;
    margin: 0 auto;
}

/*Tub*/
@media screen and (max-width: 1024px) {
    .container{
        max-width: 100%;
        width: 95%;
        margin: 0 auto;
    }
}

/*ボタン：ホバー*/
a.rollover:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

/*PC表示・SP非表示*/
body .pc-item {
    display: block; 
}

body .sp-item {
    display: none; 
}

/*PC改行なし*/
.br-sp {
    display: none; 
}

/*PC改行*/
.br-pc {
    display: block; 
}

/*フォント*/
.roboto{
    font-family: "roboto", sans-serif;
    font-weight: 600;
}


/*-----------------------------------------------
ここからコンテンツ
-----------------------------------------------*/

/*-----------------------------------------------
ナビゲーションバー
-----------------------------------------------*/
.navbar {
    background: #e7e2dc;
    padding: 18px 0 18px 0;
    border-bottom: 1px solid #e7e2dc;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-container{
    max-width: 1121px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.navbar-logo{
    max-width: 185px;
}
.navbar-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.navbar-menu ul {
    display: flex;
    gap: 60px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-menu li {
    display: flex;
    align-items: center;
}

.navbar-menu a {
    color: #2d2926;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.navbar-menu a:hover {
    color: #3481B4;
}

/* ハンバーガーボタンとモバイルメニューをデスクトップでは非表示 */
.hamburger-btn,
.mobile-menu {
    display: none;
}

@media screen and (max-width: 1024px) {

    .navbar-container{
        max-width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        
    }
}

@media screen and (max-width: 800px) {

    .navbar-menu ul {
        gap: 30px;
    }

    .navbar-menu a {
        font-size: 1.6rem;
    }
    
}

/*-----------------------------------------------
メインビジュアル
-----------------------------------------------*/
.mv-section {
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.mv-img {
    width: 100%;
    height: auto;
    display: block;
}

/*-----------------------------------------------
ABOUTセクション
-----------------------------------------------*/
.about-section {
    width: 100%;
    min-height: 600px;
    background: url('../images/about-bg.webp') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 0px 140px 0px;
    box-sizing: border-box;
    text-align: center;
}

.about-section .container{
    position: relative;
}

.about-bg01{
    width: 413px;
    position: absolute;
    left: -165px;
    top: -120px;
}

.about-bg02{
    width: 480px;
    position: absolute;
    right: -200px;
    top: -100px;
}

.about-title {
    font-size: 4.5rem;
    letter-spacing: 0.12em;
    color: #2d2926;
    margin-bottom: 100px;
}

.about-logo-wrap {
    margin-bottom: 32px;
}
.about-logo {
    width: 260px;
    max-width: 90vw;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-desc {
    font-size: 1.8rem;
    color: #2d2926;
    font-weight: 500;
    margin-bottom: 48px;
    max-width: 1020px;
    line-height: 2.8;
    display: inline-block;
    padding: 12px 24px;
}

.about-btn-wrap {
    display: flex;
    justify-content: center;
}

.about-btn {
    display: inline-block;
    min-width: 400px;
    padding: 16px 0;
    background: #49413a;
    color: #fff;
    font-size: 1.7rem;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    box-shadow: none;
    outline: none;
    border: 2px solid #49413a;
    cursor: pointer;
}
.about-btn:hover {
    background: #fff;
    color: #49413a;
    border: 2px solid #49413a;
}

@media screen and (max-width: 1430px) {

}

/*Tub*/
@media screen and (max-width: 1024px) {

    .about-desc {
        font-size: 1.8rem;
        color: #2d2926;
        font-weight: 500;
        margin-bottom: 48px;
        max-width: 900px;
        line-height: 2.8;
        display: inline-block;
        padding: 12px 24px;
        z-index: 100;
    }

}

/*SP*/
@media screen and (max-width: 768px) {

    .about-bg01, .about-bg02{
        display: none;
    }
}

/*-----------------------------------------------
SWEETSセクション
-----------------------------------------------*/
.sweets-section {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 200px 0 200px 0;
    text-align: center;
}

/*Tub*/
@media screen and (max-width: 1024px) {
    .sweets-section {
        max-width: 100%;
        width: 95%;
        margin: 0 auto;
        padding: 200px 0 200px 0;
        text-align: center;
    }
}

.sweets-header {
    margin-bottom: 48px;
    text-align: center;
}
.sweets-title {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    color: #2d2926;
}
.sweets-sub {
    font-size: 2rem;
    color: #3E3A39;
    margin-bottom: 0;
}
.sweets-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}
.sweets-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.sweets-img-wrap {
    flex: 0 0 388px;
    max-width: 388px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sweets-img {
    width: 100%;
    height: auto;
    padding: 0;
    display: block;
}
.sweets-text-wrap {
    flex: 1 1 0;
    max-width: 493px;
    text-align: left;
}
.sweets-item-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #2d2926;
}
.sweets-desc {
    font-size: 1.8rem;
    color: #333;
    line-height: 2.1;
    text-align: justify;
}
.sweets-btn-wrap {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}
.sweets-btn {
    display: inline-block;
    min-width: 400px;
    padding: 16px 0;
    background: #49413a;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    box-shadow: none;
    outline: none;
    border: 2px solid #49413a;
    cursor: pointer;
}
.sweets-btn:hover {
    background: #fff;
    color: #49413a;
    border: 2px solid #49413a;
}

.sweets-list .sweets-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {

    .sweets-section {
        max-width: 980px;
        margin: 0 auto;
        padding: 200px 0 200px 0;
        text-align: center;
    }
    
}


/*-----------------------------------------------
SHOPセクション
-----------------------------------------------*/
.shop-section {
    padding: 80px 0 100px;
}

.shop-header {
    margin-bottom: 48px;
    text-align: center;
}
.shop-title {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    color: #2d2926;
}
.shop-sub {
    font-size: 2rem;
    color: #3E3A39;
    margin-bottom: 0;
}

.shop-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px; /* 要素間のスペース */
    position: relative;
}

.shop-info {
    flex-basis: 400px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/*Tub*/
@media screen and (max-width: 1024px) {
    .shop-info {
        flex-basis: 45%;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
}

.shop-image {
    flex-basis: 580px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-left: -60px; /* 左側に重ねる */
}

/*Tub*/
@media screen and (max-width: 1024px) {
    .shop-image {
        flex-basis: 55%;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        margin-left: -60px; /* 左側に重ねる */
    }
}

.shop-image img {
    width: 100%;
    height: auto;
    display: block;
}

.shop-info__name {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 35px;
    border-bottom: 1px solid #2d2926;
}

.shop-info__list {
    font-size: 1.6rem;
}

.shop-info__item {
    display: flex;
    margin-bottom: 30px;
}

.shop-info__item dt {
    width: 110px;
    flex-shrink: 0;
    font-weight: bold;
}

.shop-info__item dd {
    margin-left: 20px;
    line-height: 1.8;
}

/*-----------------------------------------------
STORYセクション
-----------------------------------------------*/
.story-section {
    padding: 80px 0 0 0;
}

.story-section .container{
    position: relative;
}

.story-bg01{
    width: 337px;
    position: absolute;
    left: -245px;
    top: 85px;
}

.story-bg02{
    width: 325px;
    position: absolute;
    right: -220px;
    top: 115px;
}

.story-header {
    margin-bottom: 100px;
    text-align: center;
}
.story-title {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    color: #2d2926;
}
.story-sub {
    font-size: 2rem;
    color: #3E3A39;
    margin-bottom: 0;
}

.story-content {
    width: 100%;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    max-width: none;
    margin: 0;
    padding-bottom: 160px;
    box-sizing: border-box;
    position: relative;
}

.story-logo {
    flex-basis: 400px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-logo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.story-text {
    flex: 1;
    max-width: 500px;
}

.story-paragraph {
    font-size: 1.7rem;
    line-height: 2.2;
    color: #2d2926;
    margin-bottom: 32px;
    font-weight: 500;
    text-align: justify;
}

.story-detail {
    margin-top: 48px;
    padding-top: 32px;
}

.story-detail-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #2d2926;
    margin-bottom: 0px;
}

.story-detail-text {
    font-size: 1.6rem;
    line-height: 2.1;
    color: #333;
    text-align: justify;
}

@media screen and (max-width: 1430px) {
    
}

/*Tub*/
@media screen and (max-width: 1024px) {
    
    .story-bg02{
        width: 325px;
        position: absolute;
        right: -55px;
        top: 195px;
    }

    .story-content {
        max-width: 960px;
        margin: 0 auto;
        min-height: 700px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 100px;
        padding-bottom: 160px;
        box-sizing: border-box;
        position: relative;
    }

    .story-logo {
        flex-basis: 300px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .story-text {
        flex: 1;
        max-width: 500px;
    }

    .story-paragraph {
        font-size: 1.6rem;
        line-height: 2.2;
        color: #2d2926;
        margin-bottom: 32px;
        font-weight: 500;
    }

    .story-detail {
        margin-top: 48px;
        padding-top: 32px;
    }

    .story-detail-title {
        font-size: 1.6rem;
        font-weight: bold;
        color: #2d2926;
        margin-bottom: 0px;
    }

    .story-detail-text {
        font-size: 1.6rem;
        line-height: 2.1;
        color: #333;
    }
}

/*-----------------------------------------------
ITOSIMA STORYセクション
-----------------------------------------------*/
.itoshima-story-content {
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0px 400px 0px;
    position: relative;
}

.itoshima-story-header {
    margin-bottom: 48px;
    text-align: center;
}
.itoshima-story-title {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    color: #2d2926;
}
.itoshima-story-sub {
    font-size: 2rem;
    color: #3E3A39;
    margin-bottom: 0;
}

.itoshima-story-img {
    position: absolute;
    width: 600px;
    height: auto;
    top: 35px;
    left: -175px;
}

.itoshima-story-bg01{
    position: absolute;
    width: 233px;
    height: auto;
    top: -195px;
    left: -250px;
}

.itoshima-story-bg02{
    position: absolute;
    width: 578px;
    top: 0px;
    right: -274px;
}

.itoshima-story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.itoshima-story-text {
    max-width: 510px;
    margin-left: auto;
}

.itoshima-story-paragraph {
    font-size: 1.6rem;
    line-height: 2.2;
    color: #2d2926;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: justify;
}

.itoshima-story-paragraph:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1366px) {

    .itoshima-story-content {
        max-width: 1020px;
        width: 100%;
        margin: 0 auto;
        padding: 80px 0px 400px 0px;
        position: relative;
        
    }

    .itoshima-story-img {
        position: absolute;
        width: 600px;
        height: auto;
        top: 35px;
        left: -155px;
    }
    
    .itoshima-story-bg01{
        position: absolute;
        width: 233px;
        height: auto;
        top: -195px;
        left: -250px;
    }
}

@media screen and (max-width: 1300px) {

    .itoshima-story-content {
        max-width: 1020px;
        width: 100%;
        margin: 0 auto;
        padding: 80px 0px 400px 0px;
        position: relative;
        
    }

    .itoshima-story-img {
        position: absolute;
        width: 600px;
        height: auto;
        top: 35px;
        left: -135px;
    }
    
    .itoshima-story-bg01{
        position: absolute;
        width: 233px;
        height: auto;
        top: -195px;
        left: -200px;
    }
}


/*Tub*/
@media screen and (max-width: 1000px) {
    .itoshima-story-content {
        max-width: 95%;
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 30px;
    }

    .itoshima-story-img {
        position: unset;
        width: 50%;
        height: auto;
    }

    .itoshima-story-bg01{
        position: absolute;
        width: 160px;
        height: auto;
        top: -90px;
        left: -50px;
    }

    .itoshima-story-bg02{
        position: absolute;
        width: 378px;
        top: 0px;
        right: -274px;
        z-index: -10;
    }
}

/*-----------------------------------------------
フッター
-----------------------------------------------*/
.footer {
    background: url('../images/footer-bg.webp') center center/cover no-repeat;
    padding: 120px 0 200px 0;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
    position: relative;
}

/*Tub*/
@media screen and (max-width: 1024px) {

    .footer-content {
        max-width: 90%;
        margin: 0 auto;
        padding: 0 20px;
        margin-bottom: 40px;
        position: relative;
    }
}

.footer-logo {
    flex-basis: 130px;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
}

.footer-nav {
    flex: 1;
    display: flex;
    padding-left: 120px;
    padding-top: 45px;
}

.footer-menu {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li {
    display: flex;
    align-items: center;
}

.footer-menu a {
    color: #2d2926;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

@media screen and (max-width: 850px) {

    .footer-nav {
        flex: 1;
        display: flex;
        padding-left: 80px;
        padding-top: 45px;
    }

    .footer-menu {
        gap: 25px;
    }

    .footer-menu a {
        font-size: 1.6rem;
    }
}

.footer-menu a:hover {
    color: #3481B4;
}

.footer-bin{
    position: absolute;
    width: 40px;
    right: 0px;
    top: 60px;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
}

.footer-copyright p {
    font-size: 13px;
    color: #2d2926;
    margin: 0;
}

