/* ---------- 基本設定 ---------- */

html {
	font-size: calc(5px + 5 * (100vw - 800px)/1120);
    /* フォントサイズの最大が10pxで最小が4px */

}


@media screen and (max-width: 800px) {
    html {
      font-size: calc(5px + 5 * (100vw - 375px)/425);
    }
  }


body {
	font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
    line-height: 2.5rem;
    color: #753B00;
}

.wrapper {
	overflow: hidden;/*①要素からはみ出しているものは隠す、viewport設定が生きているからこそ*/
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	line-height: 0;
	vertical-align: bottom;
}

* {
	box-sizing: border-box;
}

a:hover,nav li:hover {
        transition: 0.7s;
}

/* セクションタイトル */
.title {
    padding-top: 6.3vw;
    text-align: center;
}

.title .title_en {
    font-size: 2.9rem;
    letter-spacing: 0.1em;
    color: #FF9A03;
    margin-bottom: 1.5em;
}

.title h2 {
    display: inline-block;
    font-size: 4.6rem;
    letter-spacing: 0.1em;
    position: relative;
}

@media screen and (max-width: 800px) {
    .title {
        padding-top: 15vw;
    }
    .title .title_en {
        font-size: 3rem;
        margin-bottom: 1em;
    }

    .title h2 {
        font-size: 3.7rem;
    }
}

.title .underline::after {
    background: radial-gradient(circle farthest-side, #753B00, #753B00 30%, transparent 15%, transparent);
    content: '';
    background-size: 0.6em 0.1em;
    display: inline-block;
    height: 0.1em;
    width: 110%;
    position: absolute;
    top: 1em;
    left: 50%;
    transform: translate(-50%);
}

/* ボタン２ */
.button2 {
    display: inline-block;
}

.button2 a {
    padding: 0 1.5em 0 0.5em;
    width: 100%;
    font-size: 23px;
    letter-spacing: 0.1em;
    line-height: 1em;
    text-align: left;
    position: relative;
    background-image: url(../image/arrow.png);
    background-position: 100% 35%;
    background-size: 1.2em auto;
    background-repeat: no-repeat;

}

.button2 a::after {
    background: radial-gradient(circle farthest-side, #753B00, #753B00 35%, transparent 10%, transparent);
    content: '';
    background-size: 0.4em 0.1em;
    display: inline-block;
    height: 0.1em;
    width: 100%;
    position: absolute;
    top: 1.5em;
    left: 50%;
    transform: translateX(-50%);
}


@media screen and (max-width: 1200px) {
    .button2 a{
        font-size: 19px;
    }
}

@media screen and (max-width: 800px) {
    .button2 {
        text-align: right;
    }

    .button2 a{
        font-size: 2.3rem;
    }
}

/*スマホより大きいデバイスでは反応しない*/
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/* ---------- ヘッダー部 ---------- */

header {
    width: 92%;/*1766px*/
    z-index: 100;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;

}

header nav {
    width: 30%;
}

header .menu ul {
    display: flex;
    justify-content: space-between;
    margin-top: 9%;
}

header .logo {
    text-align: center;
    width: 35%;
    aspect-ratio: 630/187;
    padding-top: 1vw;
    background: url(../image/header_img01.png);
    background-size: cover;
    background-position: center;
}

header .logo h1 {
    width: 30%;
    margin: 0 auto;
}
 
header nav ul li {
    text-align: center;
}

header .nav_en {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: #FF8206;
    padding-bottom: 0.5em;
}

header .nav_ja {
    display: block;
    font-size: 1.9rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
    header .logo {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 800px) {
    header .logo {
        width: 130%;
        padding-top: 4vw;
    }
    header .logo h1 {
        width: 25%;
    }
    header .logo img {
        width: 100%;
    }
}

/*　ハンバーガーボタン　*/
.hamburger_container {
    display: none;
}

.hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 13px;
    top   : 12px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 4px ;
    left    : 6px;
    background : #FF8206;
    border-radius: 2px;
    transition : 0.3s ease-in-out;
    z-index: 3;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    transform  : rotate(-45deg);
    z-index: 3;
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    transform : rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    background-image: url(../image/header_img01_tb.png);
    background-size: cover;
    z-index : 2;
    top  : 0;
    left : 0;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: calc(100% + 8%);
    margin: 0 -4%;
    height: auto;
    aspect-ratio: 1200/502;
    display: flex;
    align-items: center;
  }
  
  nav.globalMenuSp ul {
    padding-bottom: 20px;
    width: 100%;
  }

  nav.globalMenuSp ul .nav_en {
    font-size: 0.9rem;
  }

  nav.globalMenuSp ul .nav_ja {
    font-size: 1.6rem;
  }

  nav.globalMenuSp ul li a {
    display: block;
    padding-bottom: 2vw;
  }
  
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateY(0%);
  }

  @media screen and (max-width: 1200px) {
    .menu { display: none;}
    .hamburger_container {
        display: block;
        position: absolute;
        top: 0;
        right: 10%;
    }
  }
  @media screen and (max-width: 800px) {
    nav.globalMenuSp {
        background-image: url(../image/header_img01_sp.png);
        aspect-ratio: 375/410;
        width: calc(100% + 10%);
        margin: 0 -5%;
    }
    nav.globalMenuSp ul .nav_en {
        font-size: 8px;
    }
    
    nav.globalMenuSp ul .nav_ja {
        font-size: 14px;
    }
    nav.globalMenuSp ul li a {
        padding-bottom: 5vw;
    }

  }

/* ---------- MAINVISUAL ---------- */

.mainvisual {
    width: 100%;
    height: auto;
    aspect-ratio: 1920/1000;
    background-image: url(../image/header_background_pc.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    position: relative;
    margin-bottom: 4.1%;
}

.mainvisual h2 {
    position: absolute;
    font-size: 3rem;
    top: 25%;
    left: 28%;
    line-height: 1.3em;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.mainvisual h2 span {
    display: inline-block;
    transform: rotate(90deg);
    height: 1em;
}

.mainvisual #image02 {
    width: 47%;
    position: absolute;
    top: 29%;
    left: -17%;
}



.mainvisual #image03 {
    width: 39%;
    position: absolute;
    top: 10%;
    right: -12%;
}

.mainvisual #image04 {
    width: 9%;
    position: absolute;
    top: 28%;
    left: 13%;
}

.mainvisual #image05 {
    width: 11%;
    position: absolute;
    top: 65%;
    right: 13%;
}

.mainvisual #image06 {
    width: 18%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-42%);
}

#cart {
    width: 133px;
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 1000;
}

@media screen and (max-width: 1200px) {
    #cart {
        width: 96px;
    }
}

@media screen and (max-width: 800px) {
    .mainvisual {
        aspect-ratio: 375/815;
        background-image: url(../image/header_background_sp.png);
        margin-bottom: 16%;
    }

    .mainvisual h2 {
        font-size: 3rem;
        letter-spacing: 0.1em;
        top: 17%;
        left: 10%;
        line-height: 1.3em;
    }

    .mainvisual #image02 {
        width: 80%;
        top: 65%;
        left: -30%;
    }
    .mainvisual #image03 {
        width: 62%;
        top: 11%;
        right: -18%;
        transform: rotate(10deg);
    }
    .mainvisual #image04 {
        width: 17%;
        top: 55%;
        left: 7%;
    }
    .mainvisual #image05 {
        width: 19%;
        top: 74%;
        right: 10%;
    }
    .mainvisual #image06 {
        width: 55%;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-35%);
    }
    #cart {
        width: 25%;
        max-width: 100px;
    }
}

/* ---------- CONSEPT ---------- */

#consept {
    width: 100%;
    height: auto;
    aspect-ratio: 1920/1410;
    position: relative;
    margin-bottom: 6.3%;/*121px*/
}

#consept .consept_container {
    width: 100%;
    aspect-ratio: 1920/1200;
    position: relative;
}

#consept .loop_box{
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 1920/960;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-image: url(../image/arrangegallery.png),url(../image/arrangegallery.png);
    background-repeat: no-repeat,no-repeat;
    background-position: top left,bottom right;
    background-size: 60%;
    z-index: 1;
}

#consept .loop {
    width: 100%;
    height: 36.3vw; /* 画像の高さ */
    background-image: url(../image/loop_img.png);
    background-repeat: repeat-x;
    background-size: auto 36.3vw; /* 画像の高さ */
    background-position: center;
    animation: loop 20s linear infinite;
}

@keyframes loop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -2000px 0; /* 画像のマイナス幅 */
    }
}

/* テキストフレーム */
#consept .flame {
    width: 46.8%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    position: relative;
}

#consept .flame .flame02 {
    display: none;
}

/* テキスト */
#consept .consept_text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%);
    z-index: 101;
    text-align: center;
    width: 100%;
}

#consept .consept_text h2 {
    font-size: 2.8rem;
    letter-spacing: 0.2em;
    line-height: 2.42em;/*28pxに対し行間68*/
    padding-bottom: 1em;
}

#consept .consept_text h2 span {
    color: #FF8206;
    position: relative;
}

#consept .consept_text h2 span:after {/*丸点線*/
    background: radial-gradient(circle farthest-side, #FF8206, #FF8206 15%, transparent 10%, transparent);
    content: '';
    background-size: 2em 2em;
    display: inline-block;
    height: 2em;
    width: 100%;
    position: absolute;
    top: 0.5em;
    left: 0;
}

#consept .consept_text p {
    font-size: 2.1rem;
    line-height: 2.2em;
    letter-spacing: 0.05em;
    padding-bottom: 1em;
}

/* ボタン */
.button1 a {
    display: block;
    background: #753B00;
    border-radius: 10px;
    outline: 1px solid #ffffff;
	outline-offset: -5px;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    font-size:2.1rem;
    line-height: 4em;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    padding-top: 0.25em;
}

.button1 a:hover {
    background-color: #FF8206;

}

#consept .button1 a {
    background-image: url(../image/recipe_icon_or.svg);
    background-position: 33% center;
    background-size: 2.1rem auto;
    background-repeat: no-repeat;
    padding-left: 1em;
    width: 30%;
}

#consept .button1 a:hover {
    background-image: url(../image/recipe_icon_wh.svg);
}

/* みかんのあしらい */
#consept #orange01 {
    width: 15%;
    position: absolute;
    top: 2%;
    right: 0;
}

#consept #orange02 {
    width: 15%;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (max-width: 1200px){
    #consept .consept_text {
        top: 27%;
    }
    #consept .flame {
        width: 53%;
    }
    #consept .consept_text h2 {
        font-size: 3rem;
        padding-bottom: 0em;
    }
        
    #consept .consept_text p {
        font-size: 2.3rem;
        padding-bottom: 0.5em;
    }
    #consept .button1 a {
        font-size: 2.3rem;
        background-size: 2.3rem auto;
    }
}

@media screen and (max-width: 800px) {
    #consept {
        aspect-ratio: 375/611;
        margin-bottom: 6.3%;/*121px*/
    }
    #consept .consept_container {
        aspect-ratio: 375/540;
    }
    #consept .loop_box{
        display: none;
        background-image: none;
    }
    #consept .loop {
        display: none;
    }
    #consept .flame {
        width: 100%;
    }
    #consept .flame .flame01 {
        display: none;
    }
    #consept .flame .flame02 {
        display: block;
    }
    #consept .consept_text {
        position: absolute;
        top: 30%;
    }
    
    #consept .consept_text h2 {
        font-size: 3rem;
        padding-bottom: 1em;
    }
        
    #consept .consept_text p {
        font-size: 2.4rem;
    }
    
    /* ボタン */
    #consept .button1 a {
        width: 75%;
    }

    /* みかんのあしらい */
    #consept #orange01{
        width: 20%;
        top: -1%;
    }

    #consept #orange02 {
        width: 20%;
        bottom: 4%;
    }
}

/* ---------- METHOD ---------- */

#method {
    margin-bottom: 12.2%;/*234px*/
    position: relative;
}

/* 背景 */
#method  .method_container {
    width: 90%;
    aspect-ratio: 3456/6340;
    max-width: 1730px;
    margin: 0 auto;
    background-image: url(../image/method_bg_pc.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% auto;
    position: relative;
}

/* 見出し */
#method .title .color {
    color: #FF9A03;
}

#method .title .number {
    font-size: 7.1rem
}

/* イメージ */
#method .content .method_image01 {
    width: 37%;
    position: absolute;
    top: 13%;
    left: 3%;
}

#method .content .method_image02 {
    width: 37%;
    position: absolute;
    top: 44%;
    right: 2%;
}

#method .content .method_image03 {
    width: 37%;
    position: absolute;
    top: 73%;
    left: 2%;
}

#method .text_container {
    text-align: left;
}

#method  .content_en {
    font-size: 2.3rem;
    letter-spacing: 0.05em;
    color: #FF8206;
    padding-bottom: 0.5em;
}

#method h3 {
    font-size: 3.6rem;
    letter-spacing: 0.15em;
    line-height: 1.5em;
    padding-bottom: 1em;
}

#method .text_container p {
    font-size: 1.8rem;
    line-height: 2.5em;
}

#method .method_text01 {
    width: 40%;
    position: absolute;
    top: 21%;
    right: 7%;
}

#method .method_text02 {
    width: 40%;
    position: absolute;
    top: 46%;
    left: 10%;
}

#method .method_text03 {
    width: 40%;
    position: absolute;
    top: 72%;
    right: 6%;
}

#method #orange01 {
    position: absolute;
    width: 15%;
    top: -2%;
    right: 0;
}

#method .button2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 88px;
}

@media screen and (max-width: 1200px) {
    #method .text_container p {
        font-size: 2.5rem;
        line-height: 2em;
    }

    #method .button2 {
        bottom: 3%;
    }
}

@media screen and (max-width: 800px) {
    #method  .method_container {
        width: 100%;
        /* aspect-ratio: 380/2138; */
        aspect-ratio: 751/4388;
        background-image: url(../image/method_bg_sp.png);
    }

    /* 見出し */
    #method .title .color {
        color: #753B00;
    } 

    #method .title .number {
        font-size: 3.7rem
    }

    /* イメージ */
    #method .content .method_image01 {
        width: 65%;
        top: 7%;
        left: -4%;
    }

    #method .content .method_image02 {
        width: 65%;
        top: 35%;
        right: -5%;
    }

    #method .content .method_image03 {
        width: 66%;
        top: 65%;
        left: -3%;
    }

    #method .text_container {
        text-align: left;
    }

    #method  .content_en {
        font-size: 2.5rem;
        padding-bottom: 1em;
    }

    #method h3 {
        font-size: 3.5rem;
        line-height: 1.5em;
        padding-bottom: 0.5em;
    }

    #method  .text_container p {
        font-size: 2.4rem;
        line-height: 2.5em;
    }

    #method .method_text01 {
        width: 73%;
        top: 21%;
    }

    #method .method_text02 {
        width: 73%;
        top: 49%;
        left: 8%;
    }

    #method .method_text03 {
        width: 73%;
        top: 80%;
        left: 8%;
    }
    #method #orange01 {
        width: 22%;
        top: 6%;
        right: -3%;
    }
}

/* ---------- PRODUCT ---------- */

#product {
    margin-bottom: 17%;/*327px*/
    position: relative;
}

#product .product_container {
    width: 90%;
    max-width: 1728px;
    aspect-ratio: 3456/5400;
    max-width: 1730px;
    margin: 0 auto;
    background-image: url(../image/product_bg_pc.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% auto;
    position: relative;
    text-align: center;
}


#product ul {
    width: 93%;/*1603/1730*/
    margin: 7% auto 0;
}

#product ul li {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    width: 100%;
    aspect-ratio: 1600/560;
    border-radius: 30px;
    align-items: center;
    margin-bottom: 7vw;
    position: relative;
}

#product ul li:last-of-type {
    margin-bottom: 0;
}

#product figure {
    display: block;
    width: 43%;/*635/1600?????*/
    padding-left: 3.5%;/*56/1603*/
}

#product figure img {
    width: 100%;
    border-radius: 30px;
}

#product .product_text {
    width: 50%;
    padding-right: 8%;
    text-align: center;
}

#product h3{
    font-size: 3.7rem;
    color: #FF9A03;
    padding-bottom: 1em;
    line-height: 1.2em;
}

#product h4 {
    font-size: 1.8rem;
    padding-bottom: 3.7em;
    line-height: 1.5em;
}

#product .price {
    font-size: 5.1rem;
    padding-bottom: 1em;
}

#product .price span {
     font-size: 3.9rem;
}

#product .button1 a {
    width: 70%;
    font-size: 1.8rem;
}

#product #orange02{
    position: absolute;
    width: 15%;
    top: -4%;
    left: 0;
}

#product #orange01{
    position: absolute;
    width: 13%;
    bottom: -4%;
    right: 0;
}

#product #point {
    position: absolute;
    width: 10%;
    top: -10%;
    right: -2%;
}

#product .button2 {
    margin: 10% auto 0;
}


@media screen and (max-width: 800px) {
    #product .product_container {
        width: 100%;
        aspect-ratio: 751/3463;
        background-image: url(../image/product_bg_sp.png);
    }
    
    #product ul {
        width: 90%;/*1603/1730*/
        margin: 13vw auto 0;
    }
    
    #product ul li {
        display: block;
        border-radius: 15px;
        margin-bottom: 17vw;
    }
    
    #product figure {
        width: 85%;
        padding: 0;
        margin: 0 auto;
        padding: 7% 0 7%;
    }

    #product figure img {
        width: 100%;
        border-radius: 15px;
    }
    
    #product .product_text {
        width: 80%;
        margin: 0 auto;
        padding: 0 0 7%;
    }
    
    #product h3{
        font-size: 3.8rem;
    }
    
    #product h4 {
        font-size: 1.8rem;
        padding-bottom: 2.8em;
    }
    
    #product .price {
        font-size: 4rem;
        padding-bottom: 0.8em;
    }
    
    #product .price span {
         font-size: 3rem;
    }
    
    #product .button1 a {
        font-size: 2rem;
    }
    #product #orange02{
        width: 20%;
        top: -3%;
        left: 0;
    }
    
    #product #orange01{
        width: 20%;
        bottom: -2%;
        right: 0;
    }
    #product #point {
        width: 25%;
        top: -6%;
        right: -2%;
    }

    #product .button2 {
        margin: 15% auto 0;
    }
}



/* ---------- BUY ---------- */
#buy {
    width: 100%;
    margin-bottom: 17%;/*244px*/
}

#buy .buy_container {
    width: 83%;/*1588px*/
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#buy .banner {
    width:45%;/*縦の時は60*/
    position: relative;
    overflow: hidden;
    transition:1s all;
    border-radius: 30px;
    z-index: 1;
}

#buy .banner img {
    height: auto;
    transition: .6s ease;
}

#buy .banner:hover img {
    border-radius: 30px;
    transform: scale(1.1);
}

#buy .banner p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    color: #ffffff;
    text-shadow: 0 3px 9px #FF5700;
    font-size: 3.9rem;
    line-height: 1.5em;
}

#buy .banner:nth-of-type(2) p{
    text-shadow: 0 3px 9px #1293D6;
}

#buy .button4 {
    width: 29.1%;
    display: block;
    position: absolute;
    top: 60%;
    right: 5%;
    text-align: center;
    background: #ffffff;
    border-radius: 55px;
    align-items: center;
    font-size: 1.5rem;
    line-height: 3.4em;
    color: #753B00;
    padding-top: 0.25em;
}

@media screen and (max-width: 1200px) {
    #buy .buy_container {
        width: 50%;
        display: block;
    }
    
    #buy .banner {
        width:100%;/*縦の時は60*/
        margin-bottom: 6.7vw;
    }
}

@media screen and (max-width: 800px) {
    #buy .buy_container {
        width: 90%;
        display: block;
    }
    
    #buy .banner {
        width:100%;/*縦の時は60*/
        margin-bottom: 6.7vw;
        border-radius: 20px;
    }

    #buy .banner p {
        left: 7%;
        font-size: 3.5rem;
    }

    #buy .button4 {
        width: 30%;
        font-size: 1.5em;
        line-height: 3.5em;
        color: #753B00;
    }
}


/* ---------- NEWS ---------- */

#news {
    /* font-size: calc(8px + 2 * (100vw - 800px)/1120); */
    width: 90%;
    margin: 0 auto 170px;
    text-align: right;
}

#news .news_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    text-align: left;
}

#news .title {
    text-align: left;
    padding: 0;
}

#news .title .title_en {
    font-size: 29px;
}

#news .title h2 {
    font-size: 50px;
}

#news .news_content {
    width: 65%;
    padding: 50px 0 0;
}

#news .news_content ul li {
    position: relative;
}

#news .news_content ul li a{
    display: flex;
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 1.5em;
    padding-bottom: 5em;
}

#news .news_content ul li a::after {
    background: radial-gradient(circle farthest-side, #FF8206, #FF8206 20%, transparent 1%, transparent);
    content: '';
    background-size: 10px 10px;
    display: inline-block;
    height: 10px;
    width: 100%;
    position: absolute;
    top: 3.5em;
    left: 50%;
    transform: translate(-50%);
}

#news .news_content ul li .date {
    letter-spacing: 0.1em;
    color: #FF8206;
    padding-right: 76px;
}


@media screen and (max-width: 1200px) {
    #news {
        margin: 0 auto 134px;
        width: 85%;
    }
    #news .news_container {
        display: block;
    }
    #news .news_content {
        width: 100%;
    }
    #news .title .title_en {
        font-size: 19px;
    }
    #news .title h2 {
        font-size: 34px;
    }
    #news .news_content ul li a{
        display: flex;
        font-size: 18px;
        letter-spacing: 0.2em;
    }
}

@media screen and (max-width: 800px) {
    #news {
        margin: 0 auto 31%;
    }
    #news .title .title_en {
        font-size: 2.5rem;
    }

    #news .title h2 {
        font-size: 4.5rem;
    }

    #news .news_content {
        width: 100%;
        padding: 11vw 0 0;
    }

    #news .news_content ul li a{
        display: block;
        font-size: 2.5rem;
        letter-spacing: 0.2em;
        line-height: 1.5em;
        padding-bottom: 2.5em;
    }


    #news .news_content ul li .date {
        font-size: 2.3rem;
        padding-bottom: 0.5em;
    }
}

/* ---------- FOOTER ---------- */

footer {
    width: 100%;
    background-color: #E1B696;
    text-align: center;
    position: relative;
}

footer .footer_container{
    display: inline-block;
    padding: 50px 0 100px;
    margin: 0 auto;
}

footer .logo {
    width: 200px;
    padding-bottom: 45px;
    margin: 0 auto;
}

footer ul {
    display: flex;
    font-size: 16px;
}

footer ul li  {
    padding: 0 40px;
    border-left: 1px solid #753B00;
}

footer ul li:last-of-type {
    border-right: 1px solid #753B00;
}

footer .copyright {
    font-size: 1.2rem;
    width: 100%;
    background-color: #ffffff;
    padding: 22px 0;
}

footer .scroll_top {
    background-color: #753B00;
    border-radius: 50%;
    width: 89px;
    height: 89px;
    position: absolute;
    top: -40px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .scroll_top p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2em;
    padding-top: 0.25em;
}

@media screen and (max-width: 1200px) {
    footer .footer_container{
        padding: 45px 0 90px;
    }
    
    footer .logo {
        width: 180px;
    }
    
    footer ul {
        font-size: 13px;
    }
    
    footer ul li  {
        padding: 0 35px;
    }
}

@media screen and (max-width: 800px) {
    footer .footer_container{
        padding: 25px 0 40px;
    }
    
    footer .logo {
        width: 150px;
        padding-bottom: 37px;
    }
    
    footer ul {
        display: block;
        font-size: 10px;
    }
    
    footer ul li  {
        padding: 0 0 20px 0;
        border-left: none;
    }

    footer ul li:last-of-type {
        border-right: none;
    } 
    
    footer .copyright {
        font-size: 1px;
        padding: 20px 0;
    }
    footer .scroll_top {
        width: 61px;
        height: 61px;
        top: -31.5px;
        right: 15px;
    }
    footer .scroll_top p {
        font-size: 10px;
    }
}


/* -----------------------買い物ページ----------------------- */

#shop_page {
    background: url(../image/shop_bg.png);
}

/* ---------- HEADER ---------- */

.header_container {
    width: 100%;
    aspect-ratio: 1920/200;
    margin-bottom: 7.3vw;/*140px*/
    position: relative;
}

@media screen and (max-width: 800px) {
    .header_container {
        aspect-ratio: 375/127;
    }
}

/* ---------- SHOP_PRODUCT ---------- */

#shop_product {
    width: 85%;/*1640px*/
    margin: 0 auto 18.9%;/*310px*/
    display: flex;
    justify-content: space-between;
}

/* ギャラリー */
.gallery_area {
    width: 45%;
    aspect-ratio: 735/474;
    position: relative;
}

.gallery{
    margin:0 0 6.3% 0;/*46px*/
}

.gallery  li img {
    border-radius: 30px;
}

.gallery_area #point {
    position: absolute;
    width: 18%;
    top: -3%;
    left: -2%;
}

/*選択するサムネイル画像の設定*/

.choice-btn {
    width: 60%;
}

.choice-btn li {
    margin: 0 5%;
}

.choice-btn li img{
    opacity: 0.5;
}

.choice-btn li img:hover {
    opacity: 1;
}

.choice-btn li.slick-current img{
    opacity: 1;/*選択されているものは透過しない*/
}

@media screen and (max-width: 800px) {
    #shop_product {
        display: block;
        margin: 0 auto 25%;
    }

    .gallery_area {
        width: 100%;
        margin-bottom: 5vw;
        aspect-ratio: 735/474;
    }

    .gallery{
        margin:0 0 10% 0;/*46px*/
    }

    .choice-btn {
        width: 100%;
    }

    .choice-btn li{
        margin-right: 0;
        padding-right: 7%;
    }
}

/* 注文詳細 */
.shop_description {
    width: 40%;/*667px*/
}

.shop_description_body {
    margin-bottom: 15%;/*100px*/
}

#shop_page .shop_description h2 {
    font-size: 4.4rem;
    padding: 1.5em 0;
}

#shop_page .shop_description h3 {
    font-size: 3rem;
    line-height: 1.5em;
    padding-bottom: 1em;
}

#shop_page .shop_description .about {
    font-size: 1.7rem;
    line-height: 2.2em;
    padding-bottom: 1em;
}

.sp_br {
    display: none;
}

#shop_page .shop_description .note {
    font-size: 1.9rem;
}

/* フォーム */
#shop_page .shop_description .form {
    width: 100%;
    border-radius: 30px;
    background-color: #ffffff;
    margin-bottom: 15%;/*100px*/
    display: flex;
    justify-content: center;
    align-items: center;
}

#shop_page .shop_description .form_body {
    width: 78%;
    padding: 7% 0;
}

#shop_page .shop_description .price {
    font-size: 4.9rem;
    line-height: 1em;
    padding-bottom: 0.5em;
}

#shop_page .shop_description .price span {
    font-size: 3.3rem;
}

#shop_page .shop_description .order_number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12.2%;/*81.3px*/
}

#shop_page .shop_description .order_number p {
    font-size: 4.4rem;
}

/** input/スピンボタンのラップ要素 **/
.number-spinner-wrap{
    display: flex;
    justify-content: space-between;
    width: 30% !important;
    height: auto;
    aspect-ratio: 156/54;
    align-items: center;
}
/** デフォルトのスピンボタンを隠す **/
 .number-spinner-wrap input::-webkit-outer-spin-button,
 .number-spinner-wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/** input要素 **/
 .number-spinner-wrap input{
    width: 2em; 
    height: 2em;
    font-size: 3.1rem;
    text-align: center;
    display: block;
    border: solid 1px #753B00;
}
/** スピンボタン要素 **/
 .number-spinner-wrap .spinner{
  display: block;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

/* ボタン */
.button3 a {
    display: block;
    text-align: center;
    background: #FF9A03;
    border-radius: 55px;
    align-items: center;
    margin: 0 auto;
    width: 95%;
    font-size:2.0rem;
    font-weight: 400;
    line-height: 4.5em;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    padding-left: 1.5em;
    padding-top: 0.25em;
}

.button3 a {
    background-image: url(../image/cart_icon.png);
    background-position: 33% center;
    background-size: 2.1rem auto;
    background-repeat: no-repeat;
}

.button3 a:hover {
    background-color: #753B00;
}

@media screen and (max-width: 800px) {
    .shop_description {
        width: 100%;
    }

    .shop_description_body {
        text-align: center;
        margin-bottom: 15%;
    }

    #shop_page .shop_description h2 {
        font-size: 4rem;
    }
    
    #shop_page .shop_description .about {
        font-size: 2.2rem;
        padding-bottom: 2em;
    }
    

    #shop_page .shop_description .form {
        margin-bottom: 30%;
    }

}

/* 注意書き */
.cautions {
    position: relative;
    width: 100%;
}

.cautions_container {
    width: 90%;
    margin: 0 auto;
}

.cautions H4 {
    font-size: 2.4rem;
    padding-bottom: 1em;
}

.cautions p {
    font-size: 1.8rem;
    line-height: 1.5em;
    padding-bottom: 1em;
}

.cautions::before {
    background: radial-gradient(circle farthest-side, #753B00, #753B00 38%, transparent 20%, transparent);
    content: '';
    background-size: 1.7em 0.4em;
    display: inline-block;
    height: 0.4em;
    width: 100%;
    position: absolute;
    top: -4em;
    left: 50%;
    transform: translate(-50%);
}
.cautions::after {
    background: radial-gradient(circle farthest-side, #753B00, #753B00 40%, transparent 20%, transparent);
    content: '';
    background-size: 1.7em 0.4em;
    display: inline-block;
    height: 0.4em;
    width: 100%;
    position: absolute;
    bottom: -4em;
    left: 50%;
    transform: translate(-50%);
}

@media screen and (max-width: 800px) {
    .cautions {
        letter-spacing: 0.2em;
    }

    .cautions H4 {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }
    
    .cautions p {
        font-size: 2.3rem;
        /* line-height: 2em;
        letter-spacing: 0.2em; */
    }
    
    .cautions::before {
        background: radial-gradient(circle farthest-side, #753B00, #753B00 25%, transparent 20%, transparent);
        background-size: 3em 0.4em;
        height: 0.4em;
        top: -7em;
    }
    
    .cautions::after {
        background: radial-gradient(circle farthest-side, #753B00, #753B00 25%, transparent 20%, transparent);
        background-size: 3em 0.4em;
        height: 0.4em;
        bottom: -3em;

 
    }
}

/* ---------- RECCOMEND ---------- */
#reccomend {
    margin: 0 auto 14%;/*230px*/
    text-align: right;
    width: 70%;
}

#reccomend .inner {
    width: 100%;
    text-align: center;
}

#reccomend h2 {
    font-size: 4.0rem;
    line-height: 1em;
    margin-bottom: 70px;
}

#reccomend .image_container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

#reccomend .image_container figure {
    width: 24%;
    margin-bottom: 2.6vw;
}

#reccomend .image_container figcaption {
    font-size: 2.5rem;
}

#reccomend .image_container figure img {
    padding-bottom: 3em;
}

#shop_page .button2  a{
    font-size: 18px;
}

@media screen and (max-width: 1200px) {
    #shop_page .button2  a{
        font-size: 14px;
    }
}

@media screen and (max-width: 800px) {
    #reccomend {
        width: 85%;
    }

    #reccomend {
        margin-bottom: 26%;
    }

    #shop_page .button2  a{
        font-size: 13px;
    }

    #reccomend h2 {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }

    #reccomend .image_container {
        width: 100%;
    }

    #reccomend .image_container figure {
        width: 26%;
        margin-bottom: 10vw;
    }

    #reccomend .image_container figcaption {
        font-size: 2rem;
    }
} 

/* -----------------------お知らせページ----------------------- */

#news_page section {
    width: 58.69%;
    margin: 0 auto;
}

#news_page .news_top {
    width: 100%;
    height: auto;
    aspect-ratio: 1127/311;
    background-image: url(../image/news_top_img.jpg);
    background-size: cover;
    position: relative;
    margin-bottom: 10vw;/*16.32%*/
}

#news_page .news_top h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 5.5rem;
}

#news_page .news_content {
    width: 100%;
}

#news_page .news_content li {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 97px;
    position: relative;
}

#news_page .news_content li::before {
    background: radial-gradient(circle farthest-side, #FF8206, #FF8206 20%, transparent 1%, transparent);
    content: '';
    background-size: 10px 10px;
    display: inline-block;
    height: 10px;
    width: 100%;
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translate(-50%);
}

#news_page .news_content li .info {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

#news_page .news_content li .info .date {
    color: #FF8206;
    padding-right: 6%;
    letter-spacing: 0.1em;
    font-size: 15px;
}

#news_page .news_content li .info .category {
    font-size: 9px;
    font-weight: 400;
    color: #ffffff;
    width: 71px;
    align-items: center;
    background-color: #753B00;
    border-radius: 7px;
    text-align: center;
    line-height: 2em;
    padding-top: 0.25em;
}

@media screen and (max-width: 1200px) {
    #news_page .news_top {
        margin-bottom: 12vw;
    }
}

@media screen and (max-width: 800px) {
    #news_page section {
        width: 78%;
    }

    #news_page .news_top {
        margin-bottom: 21vw;
    }

    #news_page .news_top h2 {
        font-size: 4rem;
    }

    #news_page .news_content li {
        font-size: 15px;
        margin-bottom: 60px;
    }

    #news_page .news_content li::before {
        top: -38px;
    }

    #news_page .news_content li .info .date {
        font-size: 12px;
    }

    #news_page .news_content li .info .category {
        line-height: 1.8em;
    }
}

