@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

/* 関連したcss */

body{
    font-family: 'Noto Serif JP', sans-serif;
    margin: 0;
    font-weight: 400;
}
img{
    width: 100%;
    height: auto;
}
a{
    text-decoration: none;
    color: inherit;
}
button{
    outline: none;
    padding: 0;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
h1{
    margin: 0;
    font-weight: initial;
}
h2,h3,h4{
    font-weight: initial;
}
li{
    list-style: none;
}


/* 共通フォント */

.text{
    font-size: 16px;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.15em;
    line-height: 2.2;
}

/* 共通flex */
.sd{
    display: flex;
    max-width: 100%;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    height: auto;
    margin: 0;
}

/* 共通flex 追従 */
.fixed{
    position: fixed;
    display: flex;
    max-width: 100%;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    height: auto;
    margin: 0;
}
/* 画像の角丸 */
.image-radius{
    border-top-left-radius: 3em;
    border-bottom-right-radius: 3em;
}
/* 共通hover */
.btn-w a:hover, button:hover{
    opacity: 0.5;
}
.btn-text a:hover{
    color: #848484;
}

/* ナビゲーション hover */
.btn-w a, .btn-text a, button{
    transition: .3s cubic-bezier(.4,.4,0,1);
}

/* ふわっとアニメーション */
 
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}
.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0)!important;
}
.fadein-only {
  opacity: 0;
  transition: opacity 1s ease;
}

.fadein-only.scrollin {
  opacity: 1;
}
.fadein-bottom{
      transform: translate(0,30px);
}
.fadein-left{
      transform: translate(-30px,0);
}
.fadein-right{
      transform: translate(30px,0);
  }


/*＝＝＝＝＝＝＝＝＝＝＝　　　 header 　　　　＝＝＝＝＝＝＝＝＝＝＝*/
.header{
    position: relative;
    z-index: 2;
}

.header-logo{
    width: 100px;
    top: 30px;
    left: 30px;
}

/* ハンバーガーメニュー */

.header-slide-nav{
    top: 30px;
    right: 30px;
    z-index: 9;
}
.header-slide-nav a{
    text-align: center;
}
.header-slide-nav button{
    margin-left: 20px;
}
.header-slide-nav p{
    font-size: 11px;
    line-height: 2.2;
    margin: -10px 0 0;
    text-align: center;
    color: #333;
    letter-spacing: 0;
}
.header-slide-nav img{
    width: 56px;
}
.black-bg {
  position: fixed;
  background: #FFFFFF;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.black-bg.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  overflow-y: scroll;
}
.menu-none{
    opacity: 0;
}
.hamb-in{
    position: relative;
    width: 56px;
    height: 64px;
}
.hamb {
  position: absolute;
  cursor: pointer;
  z-index: 300;
  left: 7px;
  top: 15px;
  transform: translate(-50%, -50%);
}
.line {
  position: absolute;
  left: 0;
  width: 42px;
  height: 1.5px;
  background-color: #333;
  top: 0px;
}
.line:nth-child(2)  {
  width: 32px;
  top: 15px;
}
.line:nth-child(3)  {
  width: 20px;
  top: 27px;
}
/* アニメーション */
.black-bg {
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
}

.animation {
  transition: all .6s;
}
.hamb-text{
    transition: all .2s;
}
#hamb.active .line:nth-child(1) {
    transform: translateY(17px) translateX(0) rotate(45deg);
}
#hamb.active .line:nth-child(2) {
    opacity: 0;
    background: #FFF;
}
#hamb.active .line:nth-child(3) {
    transform: translateY(-9px) translateX(0) rotate(-45deg);
    width: 42px;
}
/* ハンバーガーメニュー内のcss */
.overlay{
    width: 100%;
    height: 100%;
    max-width: calc(100% - 160px);
    justify-content: center;
    margin:     0px 80px 0px;
}
.hamb-logo{
    margin: 0 0 60px 0;
    width: 50%;
    text-align: center;
}
.hamb-logo img{
    width: 150px;
}
.hamb-nav{
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: -90px;
}
.hamb-nav-text{
    flex-direction: column;
}
.hamb-nav-text{
    font-size: 20px;
    align-items: flex-start;
    width: 100%;
    max-width: calc(100% - 100px);
}
.hamb-nav-text a{
    border-bottom: 1px solid #d4d4d4;
    width: 100%;
    padding: 16px 0 16px;
    justify-content: space-between;
}
.hamb-nav-text p{
    padding-left: 20px;
    margin: 0;
}
.hamb-nav-text i{
    position: relative;
}
.icon:after{
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: solid 1.5px #4b4b4b;
    border-right: solid 1.5px #4b4b4b;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    bottom: 0;
    right: 20px;
}
.hamb-nav-sns a{
    justify-content: flex-start;
}
.hamb-nav-sns{
    align-items: center;
    border-bottom: 1px solid #d4d4d4;
    width: 100%;
    max-width: calc(100% - 100px);
    padding: 16px 20px;
    justify-content: space-evenly;
}
.hamb-nav-sns img{
    margin-right: 5px;
    width: 45px;
}
.hamb-nav-sns p{
    margin: 0;
}
.hamb-nav-subtext{
    font-size: 14px;
    padding: 20px 20px 0 20px;
    width: 100%;
    text-align: center;
    max-width: calc(100% - 100px);
}
/* --------------------------------*/

/* SNSナビゲーション */
.header-slide-sns{
    flex-direction: column;
    width: 50px;
    height: 100vh;
    right: 0;
    top: 0;
}
.header-slide-sns p{
    font-size: 14px;
    color: #333;
    letter-spacing: 0.15em;
    line-height: 1.4;
    writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    margin: 0;
    padding-bottom: 20px;
}

.header-slide-sns a{
    position: relative;
    padding: 10px 0;
}
.header-slide-sns a img{
    width: 30px;
}
.header-slide-sns a:after{
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background: #827f7f;
    top: 0;
    left: -9px;
}

/* 追従しないナビゲーション */
.header-nav{
    flex: none;
    top: 0;
    right: 200px;
    position: absolute;
    align-items: flex-end;
    flex-direction: column;
    height: 120px;
    z-index: -1;
}

.header-nav div a{
    margin-left: 30px;
}

/*＝＝＝＝＝＝＝＝＝＝＝　　　 main スライドショー 　　　　＝＝＝＝＝＝＝＝＝＝＝*/

.main{
    position: relative;
    z-index: 1;
    height: 100vh;
}

.background-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.show {
    opacity: 1;
    z-index: 1;
}

/*＝＝＝＝＝＝＝＝＝＝＝　　　 section 　　　　＝＝＝＝＝＝＝＝＝＝＝*/
/* ボタン */
.button{
    width: fit-content;
}
.btn-text{
    font-size: 18px;
    width: auto;
    background: linear-gradient(to right, #797979 50%, #000 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
    color: transparent;
}

.btn-line{
    background: #e1dcd3;
    height: 1px;
    margin: 0px 0px 0px 10px;
    mix-blend-mode: screen;
    width: 40px;
    z-index: 1;
    max-width: calc(100% - 10px);
    flex: none;
}
.btn-circle{
    background: #1779b3;
    border-radius: 50%;
    height: 70px;
    justify-content: center;
    margin: 0px 0px 0px -20px;
    width: 70px;
    max-width: calc(100% - -20px);
    min-width: 70px;
    position: relative;
}
.btn-icon:after{
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    bottom: 0;
    right: 31px;
}

/* ボタン （hoverした時）*/
.button, .btn-line, .btn-circle{
    transition: .3s cubic-bezier(.4,.4,0,1);
}
.button:hover{
    opacity: 1;
    cursor: pointer; 
}
.button:hover .btn-text{
    background-position: 0 100%;
}
.button:hover .btn-line{
    background: #797979;
    mix-blend-mode: screen;
    transform: translate(4px, 0px);
}
.button:hover .btn-circle{
    background: #e1dcd3;
    transform: translate(8px, 0px);
}
.button:hover .btn-icon{
    transform: translate(4px, 0px);
}

/* about */
.sec-about01{
    padding: 140px 120px 150px;
    flex-direction: column;
}
.sec-about-inner01{
    align-items: flex-start;
    width: 100%;
}
.sec-about-inner01 div:nth-child(1){
    width: 50%;
    font-size: 21px;
    flex-direction: column;
    align-items: flex-start;
}
.sec-about-inner01 div:nth-child(1) img{
    width: 200px;
    margin: 30px 0px 0px -40px;
}
.about-inner01-box02{
    width: auto;
    margin: 180px 0px 0px 80px;
    flex-direction: column;
    align-items: flex-start;
}
/* about 2個目の要素*/
.sec-about02{
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.sec-about02 .sec-about02-img1{
    width: 60%;
}
.sec-about02 .sec-about02-img1 img{
    border-top-left-radius: 0em;
}
.sec-about02 .sec-about02-img3{
    width: 40%;
    justify-content: flex-end;
    padding: 0px 50px 0px 0px;
}
.sec-about02 .sec-about02-img3 img{
    width: 60%;
    margin: 0px 0px -160px 0px;
}
.sec-about02-img2{
	display: none;
}
.sec-about02-img2 img{
    border-top-left-radius: 0;
}


/* goods 商品紹介*/
.goods{
    margin: 340px 0px 0px 0px;
    flex-direction: column;
}
.goods-h2{
    margin: 0px 0px 60px 0px;
    height: 158px;
    width: 100%;
    flex-direction: column;
    position: relative;
}

.goods-h2-img{
    position: absolute;
    top: 84px;
    left: 120px;
}
.goods-h2-img img{
    width: 330px;
    z-index: 1;
}

.goods-top-img{
    width: 100vw;
    position: relative;
    z-index: -1;
}
.goods-top-img::before{
    content: "";
    background: url(https://gotoumi.com/wp-content/uploads/2025/08/nami_decoration01.png);
    background-position: center;
    width: 100%;
    height: 62px;
    position: absolute;
    bottom: 0;
    background-repeat: repeat-x;
}

.goods-top-text{
    padding: 100px 120px 150px;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}
.goods-back-img{
    background: url(https://gotoumi.com/wp-content/uploads/2025/08/nami_decoration03.png) no-repeat;
    overflow: hidden;
    background-position: top 320px right 50%;
    padding: 0 0 140px 0;
    background-size: 100% 1007px;
    width: 100%;
}
.goods-item{
    padding: 0px 0px 60px;
}
.goods-item-inner{
    position: relative;
    justify-content: space-between;
    max-width: calc(100% - 200px);
    align-items: flex-start;
    width: 960px;
}
.goods-sango-img{
    position: absolute;
    right: 16px;
    top: -144px;
}
.goods-sango-img img{
    width: 200px;
}
.goods-item-inner article{
    flex-direction: column;
    width: 40%;
}
.goods-item-inner a .text{
    line-height: 1.8;
}
.goods button{
    padding: 0 0 120px 0;
}

/*---------- 他、sectionのh2と共通-----------*/
.recipe-inner, .online-inner, .news-inner{
    align-items: flex-start;
    margin: 0 100px 0;
    max-width: 1200px;
    max-width: calc(100% - 200px);
}
.h2-box{
    width: 20%;
    flex-direction: column;
    justify-content: flex-start;
    flex: none;
}
.h2-inner{
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
}

.h2-inner h2{
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0px 16px 0px 0px;
    writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    font-size: 36px;
}
.h2-inner h2:nth-child(2){
    font-size: 12px;
}
.recipe, .online, .news{
    padding: 120px 0 140px;
}
.recipe-content > div, .online-content > div, .news-content > div{
    width: 80%;
    max-width: 940px;
    flex-direction: column;
}
/* ----------------------------------------- */


/* Arrange Recipe アレンジレシピ*/
/* .recipe{
    padding: 140px 0px;
} */
.recipe-content{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}
.recipe .recipe-content-item{
    justify-content: space-between;
    padding: 0 0 60px 0;
}
/* Online shop オンラインショップ*/
.online{
    padding: 140px 0px;
}
.online-content{
    width: 100%;
}
.online-inner-item{
    position: relative;
    padding: 0 0 60px 0;
}
.online-inner-item div:nth-child(1){
    position: absolute;
    right: 0px;
    top: -150px;
    z-index: 9;
}
.online-inner-item div:nth-child(1) img{
    width: 200px;
}
.online-inner-item div:nth-child(2) img{
    width: 100%;
}
.online .button .btn-text{
    width: auto;
}

/* news お知らせ*/
.news-content{
    flex-direction: column;
	width: 100%;
}
.news-content-inner{
    padding: 0 0 60px 0;
    margin-right: auto;
}
.news-link{
    border-bottom: solid 1px #EEEEEE;
    margin: 0px 0px 15px 0px;
	width: 100%; 
}
.news-link-date{
    margin: 0;
    color: #666666;
    font-size: 13px;
}
.news-link-text{
    margin: 0;
}
.news-link-text p{
    margin: 10px 0px 15px 0px;
    line-height: 1.4;
}
/*access アクセス*/
.access{
    background: #e3dfd8;
}
.access-map{
    width: 60%;
    height: 400px;
}
.access-map iframe{
    height: 400px;
}
.access-inner{
    flex-direction: column;
    padding: 0px 50px 0px;
    width: 40%;
    margin-bottom: 40px;
}
.access-h2{
    flex-direction: column;
    border-bottom: 1px solid #f6f6f6;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 20px;
    width: 100%;
    line-height: 1.4;
}
.access-h2 h2{
    margin: 0;
}
.access-h2 h2:nth-child(2){
    font-size: 12px;
    color: #333;
}
.access-inner-item{
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    letter-spacing: 0.08em;
}
.access-inner-item p{
    margin-bottom: 0px;
    line-height: 1.4;
}
.access-address{
    border-bottom: 1px solid #f6f6f6;
    padding: 0px 0px 20px;
    width: 100%;
    margin: 0;
}
.access-text{
    width: 100%;
    justify-content: flex-start;
    overflow-wrap: anywhere;
    align-items: flex-start;
}
.access-text p:nth-child(1){
    width: 12%;
    max-width: 12%;
    min-width: 60px;
    font-weight: 600;
}
.access-text a{
    margin-top: 16px;
}

/*footer フッター*/
.footer{
    position: relative;
    margin: 80px 0 0;
}
.footer-inner{
    max-width: calc(100% - 160px);
    margin: 0px 80px 0px;
    align-items: flex-start;
    justify-content: center;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.08em;
}
.footer-inner div{
    flex-direction: column;
    align-items: flex-start;
}
.footer-inner-box01 .footer-icon{
    width: 100%;
    text-align: center;
}
.footer-inner-box01 .footer-icon img{
    width: 150px;
}
.footer-inner-box02{
    margin-left: 100px;
    max-width: calc(100% - 100px);
}
.footer-inner-box02 a{
    margin: 10px 0px 0px 0px;
}
.footer-inner-box03{
    margin-left: 60px;
    max-width: calc(100% - 60px);
}
.footer-inner-box03 a{
    margin: 10px 0px 0px 0px;
    justify-content: flex-start;
}
.footer-inner-box04{
    border-left: 1px solid #d4d4d4;
    margin: -2px 0px 0px 60px;
    padding: 0px 0px 10px 30px;
    max-width: calc(100% - 60px);
}
.footer-inner-box04 p{
    margin: 0;
}
.footer-inner-box04 a{
    margin-top: 14px;
    font-size: 13px;
    justify-content: flex-start;
}
.footer-inner-box04 img{
    margin-right: 12px;
    width: 30px;
}
.footer-copy{
    background: url(https://gotoumi.com/wp-content/uploads/2025/08/nami_decoration04.png);
    height: 80px;
    background-position: center;
}
.footer-copy p{
    text-align: center;
    font-size: 12px;
    color: #605647;
}


/*＝＝＝＝＝＝＝＝＝＝＝　　　 mobile 　　　　＝＝＝＝＝＝＝＝＝＝＝*/

@media screen and (max-width: 840px) {
    /* 840px以下に適用されるCSS） */
    .header-logo{
        width: 70px;
        top: 20px;
        left: 20px;
    }
    .header-nav{
        display: none;
    }
    .header-slide-nav{
        top: 26px;
        right: 40px;
    }
    .header-slide-nav img{
        width: 45px;
    }
    .header-slide-nav p{
        font-size: 10px;
		margin: 0;
    }
	.header-slide-nav a p{
		margin-top: -3px;
	}

    /* ハンバーガーメニュー */
    .hamb{
        top: 7px;
    }
    .line{
        width: 35px;
    }
    .line:nth-child(2){
        width: 25px;
        top: 12px;
    }
    .line:nth-child(3){
        width: 15px;
        top: 24px;
    }
    #hamb.active .line:nth-child(3){
        transform: translateY(-7px) translateX(0) rotate(-45deg);
        width: 35px;
    }
    .header-slide-nav img{
		width: 41px;
	}
	.hamb-in{
		width: 44px;
        height: 44px;
	}
	.header-slide-nav p{
		line-height: 1.2;
	}
    /* 右側追従のsnsナビ */
    .header-slide-sns{
        display: none;
    }

    /* ハンバーガーメニュー内のcss */
    .overlay{
        flex-direction: column;
        margin: 100px 80px 70px;
    }
    .hamb-logo img{
        width: 100px;
    }
    .hamb-nav-text{
        font-size: 16px;
        max-width: 100%;
    }
    .hamb-nav{
        width: 90%;
    }
    .hamb-logo{
        margin: 0 0 20px 0;
    }
    .hamb-nav-sns{
        max-width: 100%;
        padding: 16px 10px 5px;
        font-size: 14px;
    }
    .hamb-nav-sns img{
        width: 35px;
    }
    .hamb-nav-subtext{
        max-width: 100%;
        font-size: 12px;
    }
    
    /* ごとうみについて */
    .sec-about01{
        padding: 100px 60px 100px;
    }
    .sec-about-inner01{
        flex-direction: column;
        width: auto;
        margin-left: -70px;
    }
    .sec-about-inner01 div:nth-child(1){
        width: 100%;
    }
    .about-inner01-box02{
        margin: 80px 0px 0px 0px;
        width: 100%;
    }

    /* 商品紹介 */
    .goods-h2-img{
        left: 60px;
        top: 150px;
    }
    .goods-h2-img img{
        width: 230px;
    }
    .goods-top-text{
        padding: 70px 120px 150px;
    }
    .goods-top-img::before{
        background-size: 700px 37px;
        height: 37px;
    }
    .goods-back-img{
        background: url(https://gotoumi.com/wp-content/uploads/2025/08/nami_decoration05.png) no-repeat;
        background-position: top 25rem right 0;
        background-size: 100% 900px;
    }
    .goods-item-inner{
        max-width: calc(100% - 120px);
    }
    .goods-sango-img{
        right: 0px;
        top: -110px;
    }
    .goods-sango-img img{
        width: 150px;
    }
    .goods-item-inner a{
        width: 47%;
    }

    /*------- 共通設定 -------*/
    /* （アレンジレシピ、オンラインショップ共通css） */
    .h2-box{
        width: 16%;
        align-items: flex-start;
    }
    .recipe-inner-item,.online-inner-item{
        flex-direction: column;
        width: auto;
        flex: 1;
    }
    .recipe-inner,.online-inner, .news-inner{
        margin: 0 50px 0;
        justify-content: flex-start;
        max-width: 100%;
    }
    .recipe-content > div, .online-content > div, .news-content > div{
        width: 100%;
    }
    /* -----------------------*/

    /* アレンジレシピ */
    .recipe-inner-item div{
        width: 100%;
    }
    .goods-item-inner article{
        width: 45%;
    }

    /*access アクセス*/
    .access-inner{
        padding: 0px 40px 0px;
        width: 60%;
    }

    /*footer フッター*/
    .footer-inner{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .footer-inner-box01{
        width: 100%;
        margin: 0px 0px 30px 0px;
        padding: 0px 0px 30px 0px;
        border-bottom: 1px solid #d4d4d4;
    }
    .footer-inner-box01 p, .footer-inner-box01 a{
        width: 100%;
        text-align: center;
    }
    .footer-inner-box02{
        margin: 0;
    }
}

@media screen and (max-width: 716px) {
    /* 716px以下に適用されるCSS）個別調整 */
    /* footer フッター */
    .footer-inner{
        justify-content: flex-start;
        flex-direction: column;
    }
    .footer-inner-box01{
        margin: 0px 0px 0px 0px;
    }
   .footer-inner-box02{
    width: 100%;
    max-width: 100%;
   }
   .footer-inner-box02 a, .footer-inner-box03 a{
    margin: 10px 0 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #d4d4d4;
    width: 100%;
   }
   .footer-inner div{
        max-width: 100%;
        width: 100%;
   }
   .footer-inner-box03{
    margin-left: 0;
   }
   .footer-inner-box04 {
    margin: 10px 0 0;
    padding: 0;
    border-left: 0;
    padding-top: 30px;
    max-width: 100%;
    width: 100%;
   }
   .footer-sns{
    text-align: center;
    width: 100%;
   }
   .footer-inner-box04 div{
    flex-direction: initial;
    margin: 0 auto 30px;
   }
   .footer-inner-box04 a:nth-child(1){
    border-right: 1px solid #d4d4d4;
    padding: 0 30px 0 0;
    margin-right: 30px;
   }
}


@media screen and (max-width: 540px) {
    /* 540px以下に適用されるCSS） */
    .text{
        font-size: 14px;
    }
	   .header-slide-nav{
       top: 25px;
       right: 20px;
    }
    /* 追従snsナビゲーション */
    .header-slide-sns{
        display: none;
    }
    /* ハンバーガーメニュー内のcss */
    .overlay{
        max-width: 100%;
        margin: 50px 10px 70px;
    }

    /*------- section共通設定 -------*/
    .h2-inner h2{
        margin: 0 6px 0 0;
        font-size: 24px;
    }

     /* ボタン */
    .btn-text{
        font-size: 16px;
    }
    .btn-line{
        width: 35px;
    }
    .btn-circle{
        height: 50px;
        width: 50px;
        min-width: 50px;
        margin: 0px 0px 0px -17px;
    }
    .btn-icon:after{
        border-top: solid 3px #fff;
        border-right: solid 3px #fff;
        right: 23px;
    }
    .recipe-content > div, .online-content > div, .news-content > div{
        align-items: flex-start;
    }
    .sec-btn{
        padding: 0 0 0 20px;
    }
    /* -----------------------*/

     /* ごとうみについて */
    .sec-about-inner01 div:nth-child(1){
        font-size: 18px;
    }
    .about-inner01-box02{
        margin: 30px 0px 0px 0px;
    }
    .sec-about-inner01 div:nth-child(1) img{
        margin: 15px 0px 0px -25px;
        width: 150px;
    }
	.sec-about-inner01{
		margin-left: 0;
	}
	.sec-about-inner01 h1{
		font-size: 20px;
}
    .sec-about02{
        flex-direction: column;
        align-items: flex-start;
    }
    .sec-about02 .sec-about02-img1{
        width: 80%;
    }
    .sec-about02 .sec-about02-img3{
        width: 100%;
        margin: 40px 0px 0px 0px;
        padding: 0px 30px 0px 0px;
    }
    .sec-about02 .sec-about02-img3 img{
        width: 50%;
        margin: 0;
    }
	.sec-about02-img1{
		display: none;
	}
	.sec-about02-img2{
		display: flex;
        flex: none;
        width: 80%;
        max-width: 80%;
	}

     /* 商品紹介 */
     .goods{
        margin: 120px 0px 0px 0px;
     }
    .goods-h2-img img{
        width: 200px;
    }
    .goods-h2-img{
        left: 14px;
        top: 143px;
    }
    .goods-top-img::before{
        background-position: -11% 0;
    }
    .goods-top-text{
        padding: 60px 30px;
    }
    .goods-back-img{
        background-position: top 19rem center;
        background-size: 600px 1500px;
        background-position-x: -25px;
    }
    .goods-item-inner{
        flex-direction: column;
        width: calc(100% - 60px);
        max-width: calc(100% - 60px);
    }
    .goods-item-inner a{
        width: 100%;
        margin-top: 50px;
    }
    .goods-sango-img{
        top: -66px;
    }
    .goods-item-inner article{
        width: 100%;
        padding-top: 40px;
        z-index: 999;
    }
    /*------- 共通設定 -------*/
    /* （アレンジレシピ、オンラインショップ共通css） */
    .recipe-inner,.online-inner{
        margin: 0px 0px 0px 30px;
        /* width: calc(100% - 30px);
        max-width: calc(100% - 30px); */
    }
    .recipe-inner .h2-inner, .online-inner .h2-inner{
        margin: 0;
    }
    .recipe .recipe-content-item, .online-inner-item, .news-content .fadein-bottom{
    align-items: flex-start;
    padding: 0px 0px 30px 20px;
    }
    .recipe-inner .recipe-content-item img, .online-inner .online-inner-item img{
        border-bottom-right-radius: 0;
    }

    /* -----------------------*/
    /* アレンジレシピ */
    .recipe{
        padding: 0 0 120px;
    }
   /* オンラインショップ */
   .online-inner-item div:nth-child(1) img{
        width: 170px;
   }
   /* 新着情報 */
   .news-inner{
        margin: 0 30px 0 30px;
   }
   /*access アクセス*/
   .access{
        flex-direction: column-reverse;
   }
   .access-inner{
        width: 100%;
        padding: 30px 30px 40px;
        box-sizing: border-box;
   }
   .access-h2{
        margin: 0px 0px 20px 0px;
        padding: 40px 0px 20px;
   }
   .access-map{
    width: 100vw;
    height: 250px;
   }
   .access-map iframe{
    height: 250px;
   }
   .access-address{
    margin: 0 0 6px;
   }
   .access-inner-item p:nth-child(1){
    margin-bottom: 6px;
   }

    /*footer フッター*/
    .footer-copy{
        height: 50px;
        background-position: center;
        background-size: auto 50px;
        background-repeat: repeat-x;
    }
    .footer-inner{
        max-width: 100%;
        margin: 0px 40px 0px;
    }
    
}

