/*
Theme Name:永江製粉
Theme URI:
Version: 1.0
Author: takami
Author URI: https://yoshida-designbu.com/
License: takami
*/


/*--------------
    common
--------------*/

html{
    font-size: 62.5%;
}

body{
    font-size: 1.6rem;
    font-family: 'Zen Kaku Gothic New','Shippori Mincho',"游ゴシック", YuGothic ,Yu Gothic ,Hiragino Mincho ProN,"ヒラギノ明朝 ProN",sans-serif;
    font-weight: 500;
    line-height: 2;
	letter-spacing: 0.1em;
    color: #003d6c;
    margin: 0;
    padding: 0;
    position: relative;
}

ul,li,dl,dt,dd,td,p{
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    text-transform: uppercase;
}

h1{
    font-size: 6.4rem;
}

h2{
    font-size: 4.27rem;
}

h3{
    font-size: 2.56rem;
    line-height: 1.6;
}

h4{
    font-size: 1.83rem;
    line-height: 1.6;
}

h5{
    font-size: 1.6rem;
}

small{
    font-size: 1.28rem;
}

li{
    list-style: none;
}

a{
    margin: 0;
    padding: 0;
	text-decoration:none;
    color: #003d6c;
    transition: all 0.4s;
    font-weight: 700;
    font-family: 'Shippori Mincho', serif;
}

img{
    width:100%;
    height: auto;
    box-sizing: border-box;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
}

table{
    clear: both;
    border-collapse: collapse;
    width: 100%;
}

th,tr{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sectionWrapper{
    margin-bottom: 160px;
}

.pageWrapper{
    margin-bottom: 120px;
}

.contentWrapper {
    margin: 0px auto;
    width: 90%;
    z-index: 1;
    max-width: 1140px;
}

.page-articleWrapper{
    margin-top: 112px;
}

.page-articleWrapper:first-of-type{
    margin-top: 0;
}

.page-articleWrapper h3{
    padding-bottom: 24px;
}

.page-articleWrapper h4{
    padding-bottom: 8px;
}

.contentTitle{
    text-align: center;
    margin-bottom: 24px;
}

.contentTitle-sub{
    margin-bottom: 16px;
}

.contentTitle-sub span{
    color: #fefefe;
    background: #003d6c;
    border-radius: 20px;
    padding: 4px 20px;
}

.linkBox span {
    position: relative;
    border: solid 1px #003d6c;
    padding: 8px 20px;
}

.linkBox span:after{
    content: "";
    position: absolute;
    background: #003d6c;
    width: 50px;
    height: 1px;
    top: 50%;
    right: -38px;
    transition: all .4s;
}

.linkBox span:hover:after{
    right: -34px;
}

.grayBg{
    background: #f4f4f4;
}

.grayBg .redLine{
    display: inline-block;
    border-right: solid 2px #e73828;
}

.shippori{
    font-family: 'Shippori Mincho', serif;
}

.paymentMethod{
    padding-top: 32px;
}


/*----- animation -----*/

.blur{
	animation-name:blurAnime;
	animation-duration:2.2s;
	animation-fill-mode:forwards;
}

.KV-copy .blur{
    animation-delay: 4s;
    animation-duration:1.8s;
}

.blur2{
	animation-name:blurAnime;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}

.blurTrigger,
.blurTrigger2{
    opacity: 0;
}

.fade-in {
    opacity: 0;
    animation-delay: 600ms;
    transition-duration: 1000ms;
    transition-property: opacity, transform;
  }

.fade-in-up {
    transform: translate(0, 30px);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}


.fadeIn {
    animation-name: fadeInAnime;
    animation-duration:2s;
    animation-delay: 1.6s;
    animation-fill-mode:forwards;
    opacity: 0;
}

.fadeIn2{
    animation-name: fadeInAnime;
    animation-duration:2s;
    animation-delay: 6s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeInAnime{
    0% {
    opacity: 0;
    }

    100% {
    opacity: 1;
    }
}


/*スクロールダウン全体の場所*/
.scrolldown1{
    position: absolute;
    right: 4%;
    top: 8%;
    height: 50px;
}

.scrolldown1 span{
    position: absolute;
    left: -10px;
    top: -50px;
    writing-mode: tb;
}

.scrolldown1::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #003d6c;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}


/*----- slider ----*/
 .slider img {
    width:100%;
    height:auto;
 }

 .slider .slick-slide {
    margin:0 10px;
 }

 .slick-prev, 
 .slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    height: 15px;
    width: 15px;
 }
 
 .slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
 }
 
 .slick-next {
    right: -1.5%;
    transform: rotate(45deg);
 }

 .slick-dots {
    text-align:center;
    margin:32px 0 0 0;
 }
 
 .slick-dots li {
    display:inline-block;
    margin:0 5px;
 }
 
 .slick-dots button {
    color: transparent;
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 50%;
    background: #fefefe;
    border: solid 1px #003d6c;
 }

 .slick-dots .slick-active button{
    background: #003d6c;
 }


/*----- Google map youtube -----*/
.googleMap{
    position: relative;
    padding-bottom: 30.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

.googleMap iframe, .googleMap object, .googleMap embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

/*----- breadcrumbs/pageTop -----*/
.breadcrumbs{
    margin: 20px auto;
    max-width: 90%;
}

.breadcrumbs span{
padding: 0 2px;
}

.breadcrumbs a{
    color: #e73828;
}

#page-top {
    bottom: 20px;
    text-align: right;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

#page-top a img{
    transition: all 0.3s;
    position: relative;
    top: 8px;
}

/*----- loading -----*/
#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fefefe;
    text-align: center;
  }

#loading_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading .kvArea {
width: 100%;
}

#loading .kvArea .img_box {
text-align: center;
}

#loading .kvArea img {
    max-width: 300px;
    height: auto;
}

/*----- banner -----*/
.bannerArea {
    padding-right: 8vw;
    padding-left: 20vw;
    padding-top: 120px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: min(14px, 2vw);
}

.bannerArea img{
    display: block;
    margin: auto;
    max-width: 1140px;
    transition: ease .5s;
}

.bannerArea a:hover img{
    opacity: 0.6;
}

.bannerArea a{
    width: 100%;
}

@media screen and (min-width:768px) {
    .bannerArea {
        gap: 20px 2vw;
    }

    .bannerArea a{
        /* width: calc((100% - calc(min(14px, 2vw) * 2)) / 3); */
        width: 48%;
    }
}

@media screen and (min-width:1024px) {
    .bannerArea{
        gap: 20px 1.3vw;
    }

    .bannerArea a{
        /* width: calc((100% - calc(min(14px, 2vw) * 2)) / 3); */
        width: 32%;
    }
}

/*--------------
    header
--------------*/
header{
    max-width: 1600px;
    width: 94%;
    margin: 24px auto 24px;
    position: relative;
}

header h1 a{
    display: block;
}

header h1 a:hover,
.headerWrapper-sns a:hover{
    opacity: 0.6;
}

header ul li{
    font-size: 1.6rem;
}

.topHeader{
    position: absolute;
    z-index: 1;
    top: 4vw;
    left: 2vw;
}

.topHeader h1{
    max-width: 120px;
}

.topHeader nav li{
    padding-bottom: 16px;
}

.topHeader-sns img{
    width: 46px;
}

.topHeader-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 84vh;
    max-height: 950px;
    position: fixed;
    animation-duration:1s;
    animation-delay: 7s;
    animation-name: leftFade;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes leftFade{
    0% {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

.topHeader-sns li{
    padding-bottom: 8px;
}

.topHeader-sns li a:hover{
    opacity: 0.8;
}

.headerWrapper{
    margin: 0 auto;
    position: relative;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
}

.headerWrapper h1{
    width: 148px;
    line-height: 0;
    z-index: 1;
}

.headerWrapper-menu{
    width: 76%;
    max-width: 930px;
}

.headerWrapper-menu ul{
    display: flex;
    justify-content: space-between;
}

.headerWrapper-sns{
    display: flex;
    justify-content: space-between;
    width: 10%;
}

.headerWrapper-sns li{
    width: 30%;
}

.headerMenu ul li a{
    position: relative;
}

.headerMenu ul li a::before {
    background: #003d6c;
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }

  .headerMenu ul li a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  #js-fixedHeader {
    position: fixed;
    top: -156px;
    left: 0;
    width: 100%;
    background: #fefefe;
    box-sizing: border-box;
    transition: .5s;
    padding: 16px 0;
    z-index: 2;
  }

  #js-fixedHeader.is-show {
    top: 0;
  }

  #js-fixedHeader .headerWrapper{
    width: 94%;
  }

.pageHeader span{
    border-bottom: solid 2px #e73828;
}

.pageHeader{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 16vw;
    min-height: 210px;
}

.pageHeader-Wrapper{
    max-width: 90%;
    margin: 0 auto;
}

.pageHeader-Wrapper .contentTitle{
    margin-bottom: 0;
}


/*--------------
 KV
--------------*/
.KV{
    height: 52vw;
}

.KV-wrapper{
    background: url(img/KV-bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    height: 52vw;
    width: 90%;
    margin: 0 0 0 auto;
    border-radius: 60px 0 0 60px;
}

.KV-copy{
    font-weight: 700;
    font-size: 2.56rem;
    writing-mode: tb;
    position: absolute;
    right: 50vw;
    top: 6vw;
}

.KV-copy span{
    display: block;
}

.KV-image{
    position: absolute;
    max-width: 200px;
    width: 12vw;
    right: 30vw;
    bottom: 18vw;
}

.KV-image2{
    position: absolute;
    width: 320px;
    max-width: 20vw;
    right: 42vw;
    bottom: 6vw;
}

.KV-logo{
    position: absolute;
    max-width: 450px;
    width: 30vw;
    right: 12vw;
    bottom: 6vw;
}


/*--------------
contact
--------------*/
.page-contact_textList{
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
}

.page-contact_textList li{
    text-indent: -1.6rem;
    padding-left: 16px;
    padding-bottom: 6px;
}


/*----- contact form7 -----*/
.wpcf7 .red{
    color: #fefefe;
    background: #e73828;
    border-radius: 4px;
    margin-left: 8px;
    padding: 2px 6px;
}

.wpcf7 .gray{
    background: #aaa;
    border-radius: 4px;
    margin-left: 8px;
    padding: 2px 6px;
}

.wpcf7 table{
    margin: 0 auto 60px;
    max-width: 880px;
}

.wpcf7 table th,
.wpcf7 table td{
    padding: 12px 0;
    text-align: left;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7 table th{
    padding: 20px 0 0;
}

span.wpcf7-list-item {
    display: block;
    margin: 0;
}

.wpcf7-textbox{
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Zen Kaku Gothic New',sans-serif;
    box-sizing: border-box;
    padding: 8px 10px;
    border: solid 1px #003d6c;
    font-size: 1.6rem;
    font-weight: 500;
}

.wpcf7-textarea{
    width: 100%;
    border-radius: 10px;
    border: solid 1px #003d6c;
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Zen Kaku Gothic New',sans-serif;
    box-sizing: border-box;
    padding: 10px;
    font-size: 1.6rem;
    font-weight: 500;
}

.wpcf7-submit{
    background: #003d6c;
    color: #fefefe;
    font-weight: 500;
    font-size: 2.24rem;
    display: block;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    padding: 12px 0;
    border: none;
    border-radius: 10px;
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Zen Kaku Gothic New',sans-serif;
    transition: all .3s;
    cursor: pointer;
}

.wpcf7-submit:hover{
    opacity: 0.6;
}

.wpcf7 .add span {
    display: inline-block;
    padding: 0 3px;
}

span.wpcf7-not-valid-tip {
    color: #ff6464;
    font-size: 1.4rem;
    font-weight: 500;
    display: block;
    padding-top: 6px;
}

div.wpcf7-validation-errors {
    border: 2px solid #fff99d;
    text-align: center;
}

div.wpcf7-mail-sent-ok{
    text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output{
    box-sizing: border-box;
    border-color: #fefefe;
    background: #47c152;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 8px;
    color: #fefefe;
    font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    box-sizing: border-box;
    border-color: #fefefe;
    background: #ffb900;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 8px;
    color: #fefefe;
    font-weight: 600;
}


/*--------------
　post
--------------*/
.topicsArea{
    padding: 112px 0 162px;
}

.topicsArea a:hover{
    opacity: 0.6;
}

.topicsArea h3{
    padding-bottom: 16px;
}

.topicsArea li{
    padding: 24px 12px;
    list-style: none;
    position: relative;
    box-sizing: border-box;
    border-bottom: solid 1px #003d6c;
    display: flex;
    align-items: center;
    gap: 16px;
}

.topicsArea li span{
    width: 94px;
}

.topicsArea li p{
    width: calc(100% - 94px);
}

.topics-category{
    border: solid 1px #003a6c;
    border-radius: 16px;
    padding: 2px 10px;
    line-height: 1.5;
    text-align: center;
}

.topicsArea .topicsArea-wrapper{
    padding-right: 8vw;
    padding-left: 20vw;
}

.topicsArea-pickup_content:first-of-type{
    padding-bottom: 32px;
}

.topicsArea-news{
    display: flex;
    justify-content: space-between;
}

.topicsArea-news h3{
    width: 16%;
}

.topicsArea-news_inner{
    width: 80%;
}

.topicsArea-news_inner .topicsLinks{
    text-align: right;
}

.topicsLinks{
    padding-top: 40px;
}

.thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 85.25%;
}

.thumbnail img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 120%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.thumbnail img:hover{
    width: 110%;
}

.category-topics .postWrapper{
    display: block;
}


/*----- single archive page -----*/
.postWrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.single-contents{
    padding-top: 80px;
}

.sideBar{
    width: 24%;
}

.singleWrapper{
    width: 72%;
}

.postWrapper:has(.page-singleContent){
    display: block;
}

.page-singleContent{
    width: 100%;
}

.singleWrapper .topicsTitle{
    border-bottom: solid 1px #003d6c;
}

.sidebarWrapper-content{
    padding-bottom: 32px;
}

.sidebarWrapper-content a:hover{
    opacity: 0.6;
}

.sidebarWrapper-content h4{
    border-bottom: solid 1px #003d6c;
    margin-bottom: 24px;
}

.sidebarWrapper-content ul li{
    padding-bottom: 8px;
}

.sidebarWrapper-content ul li h5{
    padding-top: 6px;
}

.single-textArea{
    padding: 48px 0;
}

.single-textArea p{
    padding-bottom: 16px;
}
.single-textArea p a{
    text-decoration: underline;
}

.single-textArea a:hover{
    opacity: 0.7;
}

.singleWrapper .topicsLinks{
    text-align: center;
}

.singleWrapper .recipeWrapper-list{
    padding: 0;
    justify-content: space-between;
}

.singleWrapper .recipeWrapper-list .recipeWrapper-item{
    width: 48%;
    padding: 0 0 32px;
}

.singleWrapper .topicsArea{
    padding: 0;
}

.tagWrapper{
    padding-top: 80px;
}



/*--------------
 flours
--------------*/
.flours{
    padding: 112px 0 162px;
}

/*----- concept mainMenu -----*/
.floursConcept{
    text-align: center;
    max-width: 920px;
    width: 90%;
    margin: 0 auto;
    padding: 0 0 162px;
}

.floursConcept h3{
    border-bottom: solid 2px #e73828;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.floursConcept-textArea p{
    font-size: 1.83rem;
}

.floursConcept-textArea span{
    display: block;
}

.floursMain h2{
    font-size: 12.8rem;
    letter-spacing: 0.3rem;
    font-weight: 400;
    writing-mode: tb;
    line-height: 1.4;
    text-transform: none;
    z-index: 1;
}

.floursMain h2 .redText{
    display: block;
    color: #e73828;
    font-size: 1.6rem;
}

.floursMain-kome h2{
    right: calc(100% - 48%);
    position: absolute;
    top: 5%;
}

.floursMain-soba h2{
    left: calc(100% - 48%);
    position: absolute;
    top: 5%;
}

.floursMain-content{
    position: relative;
    margin-bottom: 92px;
}

.floursMain-content:last-of-type{
    margin-bottom: 0;
}

.floursMain-content_bg{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 626px;
}

.floursMain-content_bg1{
    background-image: url(img/flours-bg.jpg);
    border-radius: 0 32px 32px 0;
    margin-right: calc(100% - 50%);
}

.floursMain-content_bg2{
    background-image: url(img/flours-bg.jpg);
    border-radius: 32px 0px 0px 32px;
    margin-left: calc(100% - 50%);
}

.floursMain-content_textArea{
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 30%;
    top: 0;
}

.floursMain-content_textArea p{
    padding-bottom: 32px;
    font-size: 1.83rem;
}

.floursMain-content_textArea p span{
    display: block;
}

.floursMain-kome .floursMain-content_textArea{
    right: calc(100% - 85%);
}

.floursMain-soba .floursMain-content_textArea{
    left: calc(100% - 76%);
}

.floursMain-content_image{
    position: absolute;
    width: 20vw;
    max-width: 360px;
    bottom: 10%;
}

.floursMain-content_image2{
    position: absolute;
    width: 40vw;
    max-width: 626px;
    bottom: 2%;
}

.floursMain-kome .floursMain-content_image{
    left: calc(100% - 82%);
    z-index: 1;
}

.floursMain-kome .floursMain-content_image2{
    left: calc(100% - 72%);
}

.floursMain-soba .floursMain-content_image{
    right: calc(100% - 80%);
    z-index: 1;
    width: 14vw;
}

.floursMain-soba .floursMain-content_image2{
    right: calc(100% - 66%);
    bottom: 0vw;
    max-width: 720px;
    width: 45vw;
}

/*----- obsession -----*/
.obsessionMain{
    padding-top: 162px;
}

.obsessionMain-textArea{
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.obsessionMain-textArea h2{
    writing-mode: tb;
    letter-spacing: 0.3em;
    line-height: 1.6;
}

.obsessionMain-textArea h2 span{
    display: block;
}

.obsessionMain-textArea_explanation{
    width: 60%;
}

.obsessionMain-textArea_explanation p{
    padding-bottom: 16px;
}

.obsessionMain-textArea_explanation span{
    display: block;
}

.obsessionMain-imageArea{
    display: flex;
}

.obsessionMain-image{
    width: 50%;
}

.obsessionAbout-imageArea{
    background: url(img/matsue-bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    height: 40vw;
    color: #fefefe;
}

.obsessionAbout-imageArea_text{
    position: absolute;
    writing-mode: tb;
    right: 10vw;
    top: 60px;
    display: flex;
    justify-content: space-between;
}

.obsessionAbout-imageArea_text span{
    display: block;
}

.obsessionAbout-imageArea_text h2{
    writing-mode: tb;
    margin: 0 auto;
    line-height: 1.4;
    letter-spacing: 0.2em;
}

.obsessionAbout-imageArea_text h2 span{
    font-size: 2.56rem;
}

.obsessionAbout-imageArea_text p{
    writing-mode: tb;
    margin: 0 auto;
    padding-top: 20px;
    line-height: 1.8;
}

.obsessionAbout-textArea{
    padding-top: 162px;
    padding-bottom: 162px;
    padding-right: 8vw;
    padding-left: 20vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: auto;
}

.obsessionAbout-textArea_explanation p{
    padding-bottom: 12px;
}

.obsessionAbout-textArea_text{
    width: 63%;
}

.obsessionAbout-textArea_text p{
    padding-bottom: 16px;
}

.obsessionAbout-textArea_text span{
    display: block;
}

.obsessionAbout-textArea_linkBox{
    width: 36%;
    text-align: left;
    font-size: 2.56rem;
}

.obsessionAbout-textArea_linkBox a:hover{
    opacity: 0.6;
}

.obsessionAbout-textArea_linkBox span{
    position: relative;
}

.obsessionAbout-textArea_linkBox span::after{
    position: absolute;
    content: "";
    background: #003d6c;
    width: 100px;
    height: 2px;
    top: 50%;
    right: -50%;
}

.obsessionOther .obsessionOther-wrapper{
    display: flex;
    justify-content: space-between;
    padding-right: 8vw;
    padding-left: 20vw;
    box-sizing: border-box;
}

.obsessionOther-content{
    width: 48%;
    text-align: center;
}

.obsessionOther-content h3{
    padding-top: 16px;
}

.obsessionOther-content h3 span{
    border-bottom: solid 2px #003d6c;
}

.obsessionOther-content p{
    padding: 20px 0 32px;
}

.obsessionOther-content p span{
    display: block;
}


/*--------------
 米粉・そば粉 ページ
--------------*/
.mainContent-header{
    position: relative;
}

.mainContent-header_title{
    position: relative;
    height: 680px;
}

.mainContent-header_titleInner{
    position: relative;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mainContent-header_title .floursMain{
    padding-top: 4%;
}

.mainContent-header_titleImage{
    width: 28vw;
    max-width: 288px;
    position: absolute;
    right: 28vw;
    bottom: 130px;
}

.mainContent-soba .mainContent-header_titleImage{
    width: 24vw;
    max-width: 226px;
}

.mainContent-header_bgImage{
    position: absolute;
    z-index: -1;
}

.mainContent-header_bgImage1{
    left: 0;
    top: 42%;
    width: calc(100% - 74%);
    max-width: 410px;
}

.mainContent-soba .mainContent-header_bgImage1 {
    width: calc(100% - 58%);
}

.mainContent-header_bgImage2 {
    right: 0;
    top: -30%;
    width: calc(100% - 68%);
    max-width: 630px;
}

.mainContent-soba .mainContent-header_bgImage2{
    width: calc(100% - 68%);
}

.mainContent-header_explanation{
    max-width: 780px;
    width: 90%;
    margin: 0 auto;
}

.mainContent-header_explanation h2{
    writing-mode: tb;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.2em;
}

.mainContent-header_explanation h2 span{
    display: block;
}

.mainContent-header_explanation h2 span .redLine{
    border-right: solid 2px #e73828;
    display: initial;
}

.mainContent-header_explanation-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.explanation-content{
    width: 44%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.explanation-content img{
    margin: 16px auto;
    max-width: 200px;
}

.explanation-content p{
    text-align: left;
}

.explanation-content p a{
    text-decoration: underline;
    transition: ease .5s;
}

.explanation-content p a:hover{
    opacity: 0.6;
}


.mainContent-imageArea{
    padding: 112px 0 0;
}

.mainContent-imageArea ul{
    display: flex;
    flex-wrap: wrap;
}

.mainContent-imageArea ul li{
    width: calc(100% / 4);
}

.mainContent-lineUp{
    padding: 112px 0;
}

.mainContent-lineUp .mainContent-lineUp_title{
    text-align: center;
    border-bottom: solid 2px #e73828;
    padding-bottom: 16px;
    margin-bottom: 42px;
}

.mainContent-lineUp .mainContent-lineUp_title span{
    display: block;
    font-size: 1.6rem;
}

.mainContent-lineUp_category {
    width: fit-content;
    margin: 0 auto 50px;
    border-radius: 30px;
    padding: 6px 100px;
    background-color: #003d6c;
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    color: #fff;
}

.mainContent-lineUp_list{
    text-align: center;
    margin-bottom: 64px;
}

.mainContent-lineUp_list .contentTitle-sub{
    padding-bottom: 8px;
    margin-bottom: 0;
}

.mainContent-lineUp_listWrapper{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 24px;
}

.mainContent-sp{
    display: none;
}

.mainContent-pc{
    display: block;
}

.mainContent-lineUp_list__sobaTitle{
    margin: 24px auto 40px;
    color: #fefefe;
    background: #003a6c;
    position: relative;
    max-width: 950px;
    width: 100%;
}

.mainContent-lineUp .obsessionOther-content{
    margin: 0 auto;
}

.mainContent-lineUp .obsessionOther-content h3{
    padding-bottom: 0;
}

.productItem{
    width: 26%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 16px;
    position: relative;
}

.mainContent-pc .productItem{
    width: 91%;
}

.mainContent-lineUp_list__soba .productItem::before{
    content: "";
    position: absolute;
    left: 49%;
    top: -48px;
    width: 20px;
    height: 20px;
    border-top: 3px solid #003a6c;
    border-right: 3px solid #003a6c;
    -webkit-transform: rotate(136deg);
    transform: rotate(136deg);
}

.productItem h4{
    padding-bottom: 8px;
}

.productItem h4 a:hover{
    opacity: 0.5;
}

.productItem h4 span{
    border: solid 2px #003d6c;
    padding: 2px 20px;
    border-radius: 20px;
}

.mainContent-lineUp_list__soba .productItem h4 span{
    display: block;
    line-height: 1.6;
}

.productItem img{
    width: 70%;
    margin: 16px auto;
}

.productItem-inner{
    position: relative;
    padding-top: 56px;
}

.productItem-inner::before{
    content: "";
    position: absolute;
    left: 49%;
    top: 18px;
    width: 14px;
    height: 14px;
    border-top: 2px solid #003a6c;
    border-right: 2px solid #003a6c;
    -webkit-transform: rotate(136deg);
    transform: rotate(136deg);
}

.lineUp__pageButton {
    margin-top: 15px;
}

.lineUp__pageButton a {
    font-family: 'Zen Kaku Gothic New', 'Shippori Mincho', "游ゴシック", YuGothic, Yu Gothic, Hiragino Mincho ProN, "ヒラギノ明朝 ProN", sans-serif;
    font-weight: 600;
    text-decoration: underline;
}

.lineUp__pageButton a:hover {
    opacity: 0.5;
}

.supplementary{
    background: #fefefe;
    box-sizing: border-box;
    padding: 40px;
}

.supplementary-content{
    padding-bottom: 24px;
}

.supplementary-content:last-of-type{
    padding-bottom: 0;
}

.supplementary-content h4{
    border-bottom: solid 1px #003d6c;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.mainContent-lineUp_list__soba .supplementary{
    padding: 16px;
    margin-top: 16px;
}

.contactList h4{
    text-align: center;
}

.contactList p{
    text-align: center;
    padding-bottom: 32px;
    font-weight: 500;
}

.triviaTitle{
    display: flex;
    width: 60%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.triviaTitle .point span{
    font-size: 2.56rem;
    height: 110px;
    width: 110px;
}

.triviaTitle h2{
    padding-bottom: 0;
    padding-left: 16px;
}

.triviaTitle h2 span{
    font-size: 1.83rem;
    padding-left: 16px;
}

.point span{
    background: #e73828;
    color: #fefefe;
    border-radius: 50%;
    font-size: 1.83rem;
    display: block;
    text-align: center;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.triviaTitle-wrapper{
    display: flex;
    margin-left: calc(100% - 90%);
    justify-content: space-between;
}

.triviaTitle-wrapper:not(:has(.triviaTitle-image)) .triviaTitle{
    width: 90%;
    text-align: center;
    margin: 0 auto;
}

.trivia-buckwheat .triviaTitle-wrapper{
    margin: 0 auto;
}

.triviaTitle-image{
    width: 34%;
}

.triviaWrapper{
    margin-top: 80px;
}

.triviaList{
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}

.triviaList-item{
    padding-bottom: 32px;
    display: flex;
    justify-content: space-between;
}

.triviaList-item:last-of-type{
    padding-bottom: 0;
}

.triviaList-item p{
    width: 140px;
}

.triviaList-item_inner{
    width: 80%;
}

.triviaList-item_inner p{
    width: 100%;
}

.triviaList-item_inner h3{
    padding-bottom: 8px;
}

.triviaList-item_inner h4{
    padding-bottom: 8px;
}

.triviaList-item_inner .grayBg{
    box-sizing: border-box;
    padding: 24px;
    margin-top: 16px;
}

.trivia-buckwheat .triviaList:last-of-type{
    margin-top: 80px;
}

.trivia-buckwheat_explanation{
    padding-bottom: 48px;
}

.triviaList-item:has(.triviaList-item_imageArea) .triviaList-item_inner,
.triviaList-item .triviaList-item_imageArea{
    width: 48%;
}

.trivia-linkArea{
    text-align: right;
    padding-top: 16px;
}

.trivia-linkArea a{
    color: #e73828;
    position: relative;
}

.trivia-linkArea a::before{
    position: absolute;
    content: "";
    background: #003d6c;
    height: 2px;
    width: 118%;
    left: 0;
    bottom: -4px;
}

.trivia-linkArea a::after{
    position: absolute;
    content: "";
    background: #003d6c;
    height: 2px;
    width: 12px;
    transform: rotate(45deg);
    right: -19%;
    bottom: 0;
}



/*--------------
 recipe
--------------*/
.recipe{
    padding: 162px 0;
    text-align: center;
}

.recipeWrapper{
    padding-right: 8vw;
    padding-left: 16vw;
    padding-top: 32px;
    padding-bottom: 64px;
}

.recipeWrapper-list{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 24px;
    padding-bottom: 40px;
}

.recipeWrapper-item {
    width: 24%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0px 32px;
}

.recipeWrapper-item .tagList{
    padding-top: 8px;
}

.recipe-textArea{
    text-align: left;
    padding-top: 8px;
}

.recipe-textArea h4 a:hover{
    opacity: 0.6;
}

.tagList li{
    display: inline-block;
    padding-right: 4px;
    padding-bottom: 4px;
}

.tagList li a{
    position: relative;
    padding: 0px 8px 0px 18px;
    border-radius: 20px;
    border: solid 1px #003d6c;
    display: block;
    font-size: 1.2rem;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.tagList li a:hover{
    opacity: 0.6;
}

.tagList li span{
    position:relative;
}

.tagList li span::before{
    position: absolute;
    content: "#";
    top: -2px;
    left: 10px;
}

/*----- recipe post -----*/
.recipeFlow-introduction{
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
}

.recipeFlow-introduction_image{
    width: 50%;
}

.recipeFlow-introduction_textArea{
    width: 46%;
}

.recipeFlow-introduction_textArea h3{
    padding-bottom: 16px;
    line-height: 1.75;
}

.recipeFlow-introduction .tagList {
    padding-top: 4px;
}

.recipeFlow-introduction_textArea-comment{
    padding-bottom: 48px;
}

.recipeFlow-contents{
    padding-bottom: 40px;
}

.recipeFlow-contents li{
    padding-bottom: 8px;
    display: flex;
    align-items: center;
}

.recipeFlow-contents:has(.recipeFlow-contents_howTo) li{
    justify-content: space-between;
}

.recipeFlow-contents .recipeFlow-contents_howTo li{
    padding-bottom: 12px;
}

.recipeFlow-contents_material li{
    position: relative;
    padding-left: 22px;
}

.recipeFlow-contents_material li::before{
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #003a6c;
    width: 12px;
    height: 12px;
    top: 8px;
    left: 0;
}

.recipeFlow-contents_howTo .recipeFlow-number{
    width: 32px;
    display: flex;
    margin-right: 10px;
}

.recipeFlow-contents_howTo p{
    width: 100%;
    line-height: 1.75;
}

.pickUp-content{
    padding-top: 92px;
    margin-bottom: 112px;
}

.pickUp-content h3{
    padding-bottom: 16px;
}

.pickUp-content_inner{
    box-sizing: border-box;
    border: solid 2px #003a6c;
    border-radius: 10px;
    padding: 48px;
}

.recipeFlow-links{
    text-align: center;
    background: #f4f4f4;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 32px 24px;
}

.recipeFlow-links p{
    padding-bottom: 16px;
}

.recipeFlow-links a{
    color: #fefefe;
    background: #003d6c;
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    font-size: 1.83rem;
    text-align: center;
    padding: 12px 10px;
    box-sizing: border-box;
    border-radius: 50px;
}



/*--------------
 Instagram
--------------*/
.instagram{
    padding: 112px 0;
    padding-right: 8vw;
    padding-left: 16vw;
}


/*--------------
 Online shop / Company
--------------*/
.onlineCompany{
    background: #003d6c;
    color: #fefefe;
    padding: 82px 0;
}

.onlineCompany a{
    color: #fefefe;
}

.onlineCompany .contentWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onlineCompany-online,
.onlineCompany-company{
    width: 48%;
}

.companyInformation-wrapper{
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
}

.companyInformation-textArea{
    width: 56%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.companyInformation-textArea p span{
    display: block;
}

.companyInformation-textArea img{
    width: 80%;
}

.companyInformation-image{
    width: 40%;
}

.onlineCompany-online{
    text-align: center;
}

.onlineCompany-online h2{
    padding-bottom: 32px;
}

.onlineCompany-online h2 span{
    position: relative;
    padding-left: 66px;
}

.onlineCompany-online h2 span::before{
    position: absolute;
    content: "";
    background: url(img/cart-white.png) no-repeat center;
    background-size: 100%;
    width: 56px;
    height: 56px;
    top: 6px;
    left: 0;
}

.onlineCompany .linkBox span{
    border: solid 1px #fefefe;
}

.onlineCompany .linkBox span:after {
    background: #fefefe;
}

/*--------------
 Information
--------------*/
.information{
    padding: 82px 0;
    background: #fefefe;
}

.information .contentWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
}

.information-textArea,
.information-contact{
    width: 48%;
}

.information-textArea p{
    font-size: 1.83rem;
}

.information-contact span{
    position: relative;
    font-size: 3.2rem;
    font-weight: 400;
    padding-left: 60px;
}

.information-contact .information-tel span::before{
    background-image: url(img/tel.png);
}

.information-contact .information-contact span::before{
    background-image: url(img/mail.png);
}

.information-contact span::before{
    content: "";
    position: absolute;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
}

.information-contact li:first-of-type{
    padding-bottom: 8px;
}

.information-contact li a:hover{
    opacity: 0.8;
}

/*--------------
 about us
--------------*/
.page-id-10{
    background: #f4f4f4;
}

.aboutBg{
    background: url(img/about-top.jpg) no-repeat center;
    background-size: cover;
    height: 22vw;
}

.page-about h3{
    border-bottom: solid 2px #fefefe;
    margin-bottom: 32px;
    padding-bottom: 8px;
}

.page-about h3 span{
    display: block;
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
    text-align: left;
}

.page-about_textArea{
    padding-top: 24px;
}

.page-about_textArea h4{
    margin-bottom: 0;
}

.page-about_content li{
    text-indent: -1.6rem;
    padding-left: 16px;
}

.about-concept{
    padding: 72px 0;
    max-width: 840px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-concept h2{
    width: 48%;
    border-bottom: 0;
}

.about-concept h2 span,
.about-concept p span{
    display: block;
}

.about-concept_textArea{
    width: 48%;
}

.about-concept_textArea p{
    border-left: solid 8px #003d6c;
    padding-left: 16px;
    line-height: 2.4;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
}

.page-id-53{
    background: #f4f4f4;
}

.page-about_list{
    max-width: 840px;
    width: 90%;
    margin: 56px auto 0;
    font-size: 1.6rem;
}

.page-about_list th{
    padding: 16px;
    border-bottom: solid 2px #003d6c;
    text-align: left;
}

.page-about_list td{
    padding: 16px;
    border-bottom: solid 1px #003d6c;
}

.page-about_information .contentWrapper{
    max-width: 840px;
}

.page-about_address{
    max-width: 840px;
    width: 90%;
    margin: 0 auto;
}

.page-about_address-inner{
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    align-items: center;
}

._address-recruit{
    flex-wrap: wrap;
    justify-content: center;
}

.page-about_address-image,
.page-about_address-textArea{
    width: 48%;
}

.page-about_address-textArea ul{
    font-size: 1.83rem;
}

.page-about_address-textArea ul span{
    font-size: 1.6rem;
    padding-right: 12px;
}

p.recruit-notes{
    text-align: center;
    padding-bottom: 8px;
}

.company-image{
    display: flex;
    flex-wrap: wrap;
    padding: 80px 0 0;
}

.company-image li{
    width: calc(100% / 4);
    text-indent: 0%;
    padding-left: 0;
}


/*--------------
 委託加工/セレクトプロダクト
--------------*/
.wanted{
    padding-top: 40px;
    font-weight: 500;
}

.contactList ul li{
    text-align: center;
    padding-bottom: 24px;
}

.contactList ul li:last-of-type{
    padding-bottom: 0;
}

.contactList li a{
    color: #fefefe;
    background: #003d6c;
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    font-size: 2.13rem;
    text-align: center;
    padding: 12px 10px;
    box-sizing: border-box;
    border-radius: 50px;
}

.contactList li a:hover{
    opacity: 0.8;
}

.contactList li a span{
    position: relative;
    padding-left: 60px;
}

.contactList li .form span::before{
    background-image: url(img/mail.png);
}

.contactList li .tel span::before{
    background-image: url(img/tel.png);
}

.contactList li .cart span::before{
    background-image: url(img/cart.png);
}

.contactList li a span::before{
    position: absolute;
    content: "";
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 54px;
    height: 54px;
    top: -11px;
    left: 0;
}

.selectProduct-top{
    padding: 92px 0;
}

.selectProduct-top h2{
    writing-mode: tb;
}

.selectProduct-top h2 span{
    display: block;
}

.selectProduct-top .contentWrapper{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.selectProduct-textArea{
    width: 60%;
}

.selectProduct-textArea p{
    padding-top: 24px;
}

.selectProduct-content_inner{
    padding-bottom: 32px;
}

.selectProduct-content_inner:last-of-type{
    padding-bottom: 0;
}

.selectProduct-content_inner p a{
    text-decoration: underline;
}

.selectProduct-list{
    max-width: 1000px;
    margin: 0 auto;
}

.selectProduct-linkBox{
    display: block;
    position: relative;
    border: solid 2px #003d6c;
    border-radius: 30px;
    padding: 8px 10px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.75;
    background: #fefefe;
}

.selectProduct-linkBox:hover{
    opacity: 0.6;
}

.selectProduct-linkBox:after{
    content: "";
    position: absolute;
    background: url(img/arrow.png) no-repeat center;
    background-size: 100%;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 5%;
    transform: translate(-5%, -50%);
    transition: all .4s;
}

.selectProduct-linkBox:hover:after{
    right: 3%;
}

.tab{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: solid 2px #003d6c;
}

.tab li{
    width: 33%;
    text-align: center;
}

.tab li a{
	display: block;
	background:#003d6c;
    border-top: solid 2px #003d6c;
    border-left: solid 2px #003d6c;
    border-right: solid 2px #003d6c;
    color: #fefefe;
	padding:10px 20px;
    border-radius: 10px 10px 0 0;
    text-transform: uppercase;
}

.tab li.active a{
	background:#fff;
    color: #003d6c;
    text-transform: uppercase;
}

.area {
	display: none;
	opacity: 0;
	background: #fff;
	padding:40px 0px 0;
}

.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.area ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.area ul li{
    width: 32%;
    padding-bottom: 16px;
}


/*----- modal -----*/
.modal{
    display: none;
}

.fancybox__content{
    line-height: 1.75;
    width: 94%;
    max-width: 880px;
    padding: 40px;
    text-align: center;
    color: #003d6c;
}

.fancybox__backdrop{
    background: rgba(0,61,108,0.6);
}

.modalWrapper-inner{
    background: #f4f4f4;
    border-top: solid 2px #003d6c;
    border-bottom: solid 2px #003d6c;
    padding: 32px;
    margin: 24px 0 32px;
}

.modalWrapper-inner ul{
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 66%;
    text-align: left;
    margin: 0 auto 32px;
}

.modalWrapper-inner ul li{
    width: 48%;
    padding-bottom: 12px;
    text-indent: -1.6rem;
    padding-left: 16px;
}

.modalWrapper-inner .selectProduct-linkBox{
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.modalWrapper-textArea{
    text-align: left;
    padding-bottom: 32px;
}

.modalWrapper-textArea h4{
    border-bottom: solid 1px #003d6c;
    margin-bottom: 8px;
    padding-bottom: 4px;
}

.modalWrapper-textArea p{
    line-height: 1.75;
}

.modalWrapper-textArea p a{
    text-decoration: underline;
    border: none;
}

.fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: 0!important;
    right: 0!important;
    background: #003d6c!important;
    border-radius: inherit!important;
    width: 50px;
    height: 50px;
}


/*--------------
 個人情報保護方針/特定商取引の表記
--------------*/
.privacyPolicy a{
    text-decoration: underline;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.privacyPolicy-item{
    padding-bottom: 32px;
}

.privacyPolicy-item:last-of-type{
    padding-bottom: 0;
}

.privacyPolicy-item_inner{
    padding-top: 16px;
}

.privacyPolicy-item_inner h5{
    padding-bottom: 4px;
}

.privacyPolicy table{
    max-width: 800px;
    margin-bottom: 24px;
}

.privacyPolicy table tr{
    border-bottom: solid 1px #003d6c;
}

.privacyPolicy table th,
.privacyPolicy table td{
    box-sizing: border-box;
    padding:16px 12px;
    text-align: left;
}

.privacyPolicy ul li{
    text-indent: -1.6rem;
    padding-left: 16px;
}

/*--------------
 footer
--------------*/
footer{
    padding: 80px 0 20px;
}

footer a:hover{
    opacity: 0.6;
}

footer .contentWrapper{
    display: flex;
    justify-content: space-between;
    padding-bottom: 56px;
}

.footerInformation{
    width: 48%;
}

.footerInformation img{
    width: 48%;
    max-width: 400px;
}

.footerInformation-company{
    margin-top: 24px;
}

.footerInformation-company li{
    font-size: 1.83rem;
}

.footerInformation-company li span{
    font-size: 1.6rem;
    padding-right: 12px;
}

.company-telFax{
    display: inline-block;
    padding-right: 12px;
}

.footerInformation-company .company-telFax span{
    padding-right: 0;
}

.footerMenu{
    width: 48%;
    display: flex;
    justify-content: space-between;
}

.footerMenu ul{
    width: 48%;
    position: relative;
}

.footerMenu ul:first-of-type::before{
    content: "";
    position: absolute;
    background: #e73828;
    height: 100%;
    width: 2px;
    top: 0;
    left: -24px;
}

.footerMenu li{
    padding-bottom: 8px;
}

.footerMenu li:last-of-type{
    padding-bottom: 0;
}

.footerMenu li ul{
    width: 100%;
}

.footerMenu li ul li{
    font-size: 1.28rem;
    padding-left: 20px;
    padding-bottom: 4px;
}

.footerMenu li ul li a{
    position: relative;
}
.footerMenu li ul li a::before{
    position: absolute;
    content: "";
    background: #003d6c;
    height: 1px;
    width: 10px;
    top: 10px;
    left: -16px;
}

footer small{
    display: block;
    font-weight: 700;
    text-align: center;
}

/*--------------
responsive
--------------*/
.pc{
    display:block;
}

.mobile{
    display: none!important;
}

nav.globalMenuSp{
    display: none;
}

.sp-icon{
    width: 44px;
    height: 44px;
    position: fixed;
    top: 70px;
    right: 16px;
    z-index: 1;
    display: none;
}


@media screen and (min-width:1800px){
    .KV-wrapper,
    .KV{
        height: 790px;
    }
}


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

/*--------------
 header
--------------*/
header{
    margin: 0 auto;
}

.topHeader{
    display: none;
}

.headerWrapper h1{
    width: 142px;
    position: fixed;
    top: 30px;
    left: 10px;
}

.headerWrapper-menu,
.headerWrapper-sns{
    display: none;
}

#js-fixedHeader{
    display: none;
}

/*--------------
 KV
--------------*/
.KV-wrapper,
.KV{
    height: 62vw;
}

/*----- hamburger -----*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 4;
    right: 13px;
    top: 12px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    background: #003d6c;
    color: #fefefe;
    border-radius: 50%;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 10px;
    background: #fefefe;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 16px;
  }
  .hamburger span:nth-child(2) {
    top: 24px;
  }
  .hamburger span:nth-child(3) {
    top: 32px;
  }

  .hamburger.active span:nth-child(1) {
    top : 24px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }

  .hamburger.active span:nth-child(2){
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }

  nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    color: #fefefe;
    background:#003d6c;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
    overflow-x: auto;
  }

  nav.globalMenuSp h1{
    max-width: 120px;
    width: 28%;
    margin: 0 auto;
  }

  nav.globalMenuSp a{
    color: #fefefe;
    font-size: min(2.24rem, 4.2vw);
  }

  .globalMenuSp-menu{
    padding-bottom: 24px;
  }


  .globalMenuSp-wrapper{
    padding: min(88px, 28vw) 8vw 6vw;
  }

  nav.globalMenuSp ul li{
    padding-bottom: 24px;
  }

  nav.globalMenuSp ul.headerMenu-innerMenu{
    margin: 0;
    padding-top: 6px;
  }

  nav.globalMenuSp ul.headerMenu-innerMenu li{
    padding-bottom: 4px;
  }

  nav.globalMenuSp ul.headerMenu-innerMenu li a{
    font-size: min(1.83rem, 3.8vw);
  }

  nav.globalMenuSp ul.headerMenu-innerMenu li a span{
    position: relative;
    padding-left: 18px;
  }

  nav.globalMenuSp ul.headerMenu-innerMenu li a span::before{
    position: absolute;
    content: "";
    background: #fefefe;
    width: 12px;
    height: 2px;
    top: 50%;
    left: 0;
  }

  nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
  }

  .sp-icon{
    display: block;
}


.bannerArea{
    padding-right: 4vw;
    padding-left: 4vw;
    padding-top: 82px;
}


/*--------------*/
/*  topics
/*--------------*/
.topicsArea {
    padding: 112px 0 132px;
}

.topicsArea .topicsArea-wrapper{
    padding-left: 4vw;
    padding-right: 4vw;
}

.topicsArea-news{
    padding-bottom: 44px;
    display: block;
}

.topicsArea-news h3{
    width: 100%;
}

.topicsArea-news_inner{
    width: 100%;
}

.topicsArea-news_inner .topicsLinks{
    text-align: center;
}

.sideBar {
    width: 30%;
}

.postWrapper{
    display: block;
}

.sideBar{
    width: 100%;
}

.singleWrapper{
    width: 100%;
    padding-bottom: 24px;
}

.sidebarWrapper-content{
    padding-top: 40px;
    padding-bottom: 0;
}

/*--------------*/
/*  main
/*--------------*/
/*----- flours -----*/
.floursConcept{
    padding: 0px 0 132px;
}

.floursMain h2{
    font-size: 8.8rem;
}

.floursMain-content_bg{
    height: 410px;
}

.floursMain-content_textArea{
    width: 44%;
}

.floursMain-kome .floursMain-content_textArea {
    right: calc(100% - 98%);
}

.floursMain-soba .floursMain-content_textArea {
    left: calc(100% - 96%);
}

/*----- obsession -----*/
.obsessionMain{
    padding-top: 132px;
}

.obsessionMain-textArea_explanation {
    width: 68%;
}

.obsessionAbout-imageArea{
    height: 66vw;
}

.obsessionAbout-textArea{
    padding-right: 4vw;
    padding-left: 4vw;
    padding-top: 132px;
    padding-bottom: 132px;
    display: block;
}

.obsessionAbout-textArea_text{
    width: 80%;
    margin: 0 auto 16px;
}

.obsessionAbout-textArea_linkBox{
    width: 80%;
    text-align: left;
    margin: 0 auto;
}

.obsessionOther .obsessionOther-wrapper{
    padding-right: 4vw;
    padding-left: 4vw;
    display: block;
}

.obsessionOther-content{
    width: 80%;
    margin: 0 auto 64px;
}

/*----- recipe -----*/
.recipe{
    padding: 132px 0;
}

.recipeWrapper{
    padding-right: 4vw;
    padding-left: 4vw;
    padding-bottom: 32px;
}

.recipeWrapper-item{
    width: 30%;
    padding: 0 8px 32px;
}


/*----- instagram -----*/
.instagram{
    padding-right: 4vw;
    padding-left: 4vw;
}


/*--------------
 米粉・そば粉 ページ
--------------*/
.mainContent-header_title{
    height: 480px;
}

.mainContent-header_bgImage1 {
    width: calc(100% - 70%);
}

.mainContent-header_bgImage2 {
    width: calc(100% - 58%);
    top: -24%;
}

.mainContent-header_titleImage {
    right: 0;
    bottom: 70px;
}

.mainContent-soba .mainContent-header_titleImage{
    width: 20vw;
}

.mainContent-soba .mainContent-header_bgImage1{
    width: calc(100% - 66%);
}

.productItem{
    width: 32%;
    /* padding-bottom: 24px; */
    margin: 0 4px;
}

.triviaTitle-wrapper{
    display: block;
    margin: auto;
}

.triviaTitle{
    width: 100%;
    text-align: center;
}

.triviaTitle h2 span{
    display: block;
}

.triviaTitle-image{
    display: none;
}

/*--------------
 about us
--------------*/
.about-concept{
    display: block;
    padding: 56px 0 0;
}

.about-concept h2,
.about-concept_textArea{
    width: 100%;
}

.about-concept h2 span{
    width: 100%;
}

.about-concept_textArea p {
    border-top: solid 4px #003d6c;
    border-left:  none;
    padding-left: 0px;
    padding-top: 24px;
    margin-top: 16px;
}

/*--------------
 Online shop / Company
--------------*/
.selectProduct-top .contentWrapper{
    display: block;
}

.selectProduct-mainCopy h2{
    margin: 0 auto;
}

.selectProduct-textArea{
    width: 100%;
    padding-top: 32px;
}


/*--------------
 Online shop / Company
--------------*/
.onlineCompany .contentWrapper{
    display: block;
    text-align: center;
}

.onlineCompany-online{
    width: 100%;
    padding-bottom: 112px;
}

.onlineCompany-company{
    width: 80%;
    margin: 0 auto;
    text-align: left;
}


/*--------------
 Information
--------------*/
.information-textArea p{
    font-size: 1.6rem;
}


/*--------------*/
/*  footer
/*--------------*/
footer .contentWrapper{
    display: block;
}

.footerInformation{
    width: 100%;
    padding-bottom: 32px;
}

.footerInformation-company{
    margin-top: 16px;
}

.footerMenu{
    width: 60%;
}

.footerMenu ul:first-of-type::before {
    left: -10px;
}

}

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

/*--------------*/
/*  common
/*--------------*/
    body{
        font-size: 1.4rem;
    }

    h1{
        font-size:5.6rem;
    }

    h2{
        font-size: 3.75rem;
        line-height: 1.6;
    }

    h3{
        font-size: 2.24rem;
        line-height: 1.6;
    }

    h4{
        font-size: 1.6rem;
        line-height: 1.6;
    }

    small{
        font-size: 1.02rem;
    }

    .contentTitle{
        margin-bottom: 16px;
    }

    .page-articleWrapper{
        margin-top: 72px;
    }

    .page-articleWrapper h3{
        padding-bottom: 16px;
    }

    .scrolldown1 {
        right: auto;
        top: 4.5%;
        left: 4%;
    }

    .breadcrumbs{
        font-size: 1.02rem;
    }


/*--------------*/
/*  header
/*--------------*/
#loading .kvArea img{
    max-width: 200px;
}

/*----- hamburger -----*/
nav.globalMenuSp .globalMenuSp-other li{
    display: block;
    width: 100%;
}

nav.globalMenuSp .globalMenuSp-other{
    display: block;
}

nav.globalMenuSp ul li {
    padding-bottom: 16px;
}

/*--------------*/
/*  KV
/*--------------*/
.KV {
    height: 500px;
}

.KV-wrapper{
    border-radius: 30px 0 0 30px;
    height: 500px;
}

.KV-copy{
    font-size: 1.83rem;
    right: 52vw;
    top: 26vw;
}

.KV-logo {
    width: 67%;
    right: 6vw;
    bottom: 14vw;
}

.KV-image {
    width: 26%;
    right: 20vw;
    bottom: 52vw;
}

.KV-image2 {
    max-width: 33%;
    right: 42vw;
    bottom: 30vw;
}


/*--------------*/
/*  topics
/*--------------*/
.topicsArea{
    padding: 72px 0;
}

.topicsArea li{
    display: block;
    padding: 16px 8px;
}

.topicsArea li p{
    padding-top: 8px;
    width: 100%;
}

.topicsArea-pickup_content:first-of-type{
    padding-bottom: 16px;
}

.topicsLinks {
    padding-top: 30px;
}

.topicsWrapper .topicsArea{
    padding: 0;
}

.topics-category{
    font-size: 1.24rem;
}

/*----- sideBar -----*/
.sidebarWrapper-content ul li {
    padding-bottom: 6px;
}

/*--------------*/
/* main
/*--------------*/
.flours{
    padding: 64px 0;
}

/*----- flours -----*/
.floursConcept{
    padding:0px 0 64px;
}

.floursConcept h3 span{
    display: block;
}

.floursConcept-textArea p{
    font-size: 1.4rem;
}

.floursMain h2{
    font-size: 6.4rem;
}

.floursMain h2 .redText{
    font-size: 1.4rem;
}

.floursMain-kome h2 {
    right: calc(100% - 38%);
}

.floursMain-soba h2 {
    left: calc(100% - 38%);
}

.floursMain-content{
    height: 480px;
    margin-bottom: 62px;
}

.floursMain-content_textArea{
    width: 94%;
    bottom: 0;
    top: auto;
}

.floursMain-content_textArea p{
    font-size: 1.4rem;
}

.floursMain-content_bg{
    height: 300px;
}

.floursMain-content_bg1 {
    margin-right: calc(100% - 86%);
}

.floursMain-content_bg2 {
    margin-left: calc(100% - 86%);
}

.floursMain-content_image {
    width: 38vw;
    bottom: 44%;
}

.floursMain-content_image2 {
    bottom: 30%;
    width: 60vw;
}

.floursMain-kome .floursMain-content_image2 {
    left: calc(100% - 64%);
}

.floursMain-soba .floursMain-content_image {
    right: calc(100% - 66%);
    width: 24vw;
    bottom: 52%;
}

.floursMain-soba .floursMain-content_image2 {
    right: calc(100% - 63%);
    bottom: 32%;
    width: 64vw;
}

/*----- obsession -----*/
.obsessionMain{
    padding-top: 88px;
}

.obsessionMain-textArea{
    display: block;
}

.obsessionMain-textArea h2{
    margin: 0 auto;
}

.obsessionAbout-textArea_text{
    width: 90%;
}

.obsessionMain-textArea_explanation{
    padding-top: 24px;
    width: 100%;
}

.obsessionMain-textArea_explanation span{
    display: inline;
}

.obsessionAbout-imageArea{
    height: 300px;
}

.obsessionAbout-imageArea_text{
    top: 25px;
    right: auto;
    left: 20px;
}

.obsessionAbout-imageArea_text h2{
    writing-mode: horizontal-tb;
    margin: unset;
}

.obsessionAbout-imageArea_text h2 span{
    font-size: 2.24rem;
}

.obsessionAbout-imageArea_text p{
    writing-mode: horizontal-tb;
    padding-top: 8px;
    margin: unset;
}

.obsessionAbout-textArea{
    padding: 64px 0px;
    display: block;
}

.obsessionAbout-textArea_linkBox{
    width: 90%;
    font-size: 2.24rem;
    text-align: left;
}

.obsessionAbout-textArea_linkBox span::after{
    width: 80px;
}

.obsessionOther .contentWrapper{
    display: block;
}

.obsessionOther-content{
    width: 100%;
    margin-bottom: 56px;
}

.obsessionOther-content:last-of-type{
    margin-bottom: 0;
}

.mainContent-lineUp .obsessionOther-content h3 span{
    font-size: 2.24rem;
}

/*--------------
 米粉・そば粉 ページ
--------------*/
.mainContent-header_bgImage1 {
    width: calc(100% - 65%);
}

.mainContent-header_bgImage2{
    top: -16%;
}

.mainContent-header_bgImage2{
    width: calc(100% - 50%);
}

.mainContent-soba .mainContent-header_bgImage2 {
    width: calc(100% - 56%);
}

.mainContent-header_titleImage {
    left: 76%;
    top: 60%;
    width: 24vw;
    transform: translate(-45%, -76%);
}

.mainContent-kome .mainContent-header_titleImage{
    width: 34vw;
}

.mainContent-header_title .floursMain {
    padding-top: 30%;
}

.mainContent-header_explanation-wrapper{
    display: block;
    padding-top: 32px;
}

.mainContent-sp{
    display: block;
}

.mainContent-pc{
    display: none;
}

.mainContent-lineUp_category {
    width: fit-content;
    padding: 4px 50px;
    font-size: 1.8rem;
}

.mainContent-lineUp_list__sobaTitle{
    margin: 24px auto 30px;
}

.mainContent-lineUp .mainContent-lineUp_list__sobaTitle span{
    font-size: 2.24rem;
}

.mainContent-lineUp_list__sobaTitle::before {
    bottom: -26px;
    width: 14px;
    height: 14px;
}

.explanation-content{
    width: 100%;
    padding-bottom: 24px;
}

.explanation-content img {
    margin: 8px auto;
    max-width: 108px;
}

.mainContent-imageArea{
    padding: 80px 0 0;
}

.mainContent-imageArea ul li{
    width: calc(100% / 2);
}

.mainContent-lineUp{
    padding: 80px 0;
}

.mainContent-lineUp h3 span{
    font-size: 1.4rem;
}

.productItem{
    width: 100%;
    padding-bottom: 24px;
}

.productItem:last-child {
    padding-bottom: 0;
}

.mainContent-lineUp_list__soba .productItem::before{
    display: none;
}

.productItem img {
    width: 60%;
}

.productItem-inner {
    padding-top: 32px;
}

.productItem-inner::before{
    top: 0;
}

.mainContent-lineUp_list {
    margin-bottom: 48px;
}

.mainContent-lineUp_list__sobaTitle::before{
    content: "";
    position: absolute;
    left: 46%;
    bottom: -32px;
    width: 20px;
    height: 20px;
    border-top: 3px solid #003a6c;
    border-right: 3px solid #003a6c;
    -webkit-transform: rotate(136deg);
    transform: rotate(136deg);
}

.supplementary{
    padding: 20px;
}

.supplementary-content{
    padding-bottom: 16px;
}

.contactList li a{
    font-size: 1.6rem;
}

.contactList li a span{
    padding-left: 50px;
}

.contactList li a span::before {
    width: 42px;
    height: 42px;
    top: -8px;
}

.triviaTitle{
    display: block;
    width: 90%;
    margin: 0 auto;
}

.triviaTitle h2{
    padding-left: 0;
}

.triviaTitle h2 span{
    font-size: 1.6rem;
    padding-left: 0;
    padding-top: 8px;
}

.triviaTitle .point span{
    font-size: 1.83rem;
    height: 80px;
    width: 80px;
}

.triviaWrapper {
    margin-top: 40px;
}

.triviaList-item{
    display: block;
}

.triviaList-item_inner{
    width: 100%;
}

.triviaList-item_inner h3{
    text-align: center;
    padding-top: 8px;
}

.triviaList-item p{
    margin: 0 auto;
}

.point span {
    background: #e73828;
    font-size: 1.6rem;
    width: 70px;
    height: 70px;
}

.triviaList-item:has(.triviaList-item_imageArea) .triviaList-item_inner{
    width: 100%;
}

.triviaList-item .triviaList-item_imageArea{
    width: 100%;
    padding-top: 24px;
}

.trivia-buckwheat_explanation{
    padding-bottom: 32px;
}

.triviaList-item_imageArea p{
    width: 100%;
}

.trivia-buckwheat .triviaList:last-of-type{
    margin-top: 40px;
}

.trivia-linkArea{
    text-align: center;
}

/*--------------
 recipe
--------------*/
.recipe{
    padding: 64px 0;
}

.recipeWrapper-item{
    width: 48%;
    padding: 0 0 24px;
    margin: 0 auto;
}

.recipe-textArea ul li a,
.recipe-textArea ul li span::before{
    font-size: 1.12rem;
}

.tagList li span::before{
    top: 0;
}

/*----- recipe post -----*/
.recipeFlow-introduction{
    display: block;
    padding-bottom: 40px;
}

.recipeFlow-introduction_image{
    width: 100%;
    padding-bottom: 16px;
}

.recipeFlow-introduction_textArea{
    width: 100%;
}

.recipeFlow-contents {
    padding-bottom: 24px;
}

.recipeFlow-contents li{
    align-items: flex-start;
}

.pickUp-content_inner{
    padding: 24px;
}

.recipeFlow-links a{
    font-size: 1.6rem;
}

/*--------------
 instagram
--------------*/
.instagram{
    padding: 64px 0;
}


/*--------------
 Online shop / Company
--------------*/
.onlineCompany{
    padding: 64px 0;
}

.onlineCompany-online{
    padding-bottom: 82px;
}

.onlineCompany-online h2 span::before {
    width: 50px;
    height: 50px;
    transform: translate(-50%, 0%);
    top: -6%;
    left: 50%;
}

.onlineCompany-online h2 span {
    padding-left: 0px;
    display: block;
    padding-top: 40px;
    font-size: 2.83rem;
}

.companyInformation-textArea{
    font-size: 1.2rem;
    line-height: 1.75;
    width: 48%;
}

.companyInformation-textArea p:first-of-type{
    padding-bottom: 12px;
}

.onlineCompany-company{
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.companyInformation-image{
    width: 48%;
}

.companyInformation-textArea img {
    width: 100%;
    padding-bottom: 6px;
}


/*--------------*/
/*  Information
/*--------------*/
.information {
    padding: 64px 0;
}

.information .contentWrapper{
    display: block;
}

.information-textArea{
    width: 100%;
    padding-bottom: 24px;
}

.information-textArea p{
    font-size: 1.4rem;
    text-align: center;
}

.information-contact{
    width: 100%;
    text-align: center;
}

.information-contact span{
    font-size: 2.24rem;
    padding-left: 40px;
}

.information-contact span::before{
    width: 34px;
    height: 34px;
}

/*--------------
 about us
--------------*/
.aboutBg{
    height: 46vw;
}

.page-about_list{
    font-size: 1.4rem;
    margin: 32px auto 0;
}

.page-about_list th{
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 16px 6px 0;
}

.page-about_list td{
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 6px 16px;
}

.page-about_address-inner{
    display: block;
}

.page-about_address-image{
    width: 100%;
}

.page-about_address-textArea{
    width: 100%;
    padding-top: 16px;
}

.page-about_address-textArea ul{
    font-size: 1.6rem;
}

.company-image {
    padding: 40px 0 0;
}

.company-image li{
    width: calc(100% / 2);
}

/*--------------*/
/*  委託加工/セレクトプロダクト
/*--------------*/
.contactList p{
    text-align: left;
}

.modalWrapper-inner ul{
    width: 100%;
    display: block;
    font-size: 1.4rem;
    margin: 0;
}

.modalWrapper-inner ul li{
    width: 100%;
}

.area{
    padding: 20px 0;
}

.area ul li {
    width: 100%;
    margin: 0 auto;
}

.modalWrapper-textArea{
    padding-bottom: 24px;
}

.tab li{
    width: 50%;
}

.tab li:last-of-type{
    width: 100%;
}

.tab li:last-of-type a{
    border-radius: 0;
}

/*--------------*/
/*  個人情報保護方針/特定商取引
/*--------------*/

.privacyPolicy-item {
    padding-bottom: 24px;
}

.privacyPolicy table th{
    display: block;
    width: 100%;
    padding: 16px 6px 0;
}

.privacyPolicy table td{
    display: block;
    width: 100%;
    padding: 6px 6px 16px;
}

.threeColumn table th{
    display: revert;
    width: 27%;
    padding: 16px 6px 16px;
}

.threeColumn table th:first-of-type{
    width: 40%;
}

.threeColumn table td{
    display: revert;
    width: auto;
    padding: 16px 6px;
}

.modalWrapper-inner{
    padding: 32px 14px;
}

.fancybox__content {
    padding: 40px 16px;
}

.selectProduct-linkBox{
    font-size: 1.4rem;
}

.selectProduct-linkBox:after{
    width: 12px;
    height: 12px;
}

/*--------------*/
/*  footer
/*--------------*/
.footerInformation-company li {
    font-size: 1.6rem;
}

.footerInformation-company li span{
    font-size: 1.4rem;
}

.footerInformation img{
    width: 66%;
}

.footerMenu{
    width: 100%;
}

.footerMenu ul li span{
    display: block;
}

}