@charset "utf-8";
/* ◎共通部分～ */
html{
    font-size: 100%;
}
body{
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: 100;
    line-height: 1.7;
    color: rgb(84, 62, 41);
    height: 100%;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
/*レイアウト*/
.wrapper{
    max-width: 100%;
    margin: auto;
    padding: 0 1rem;
}
.align-center{
    text-align: center;
}
/*フォント*/
.font-english{
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}
.heading-large{
    font-size: 2.5rem;
    text-align: center;
}
.heading-midium{
    font-size: 1.7rem;
    text-align: center;
}
.heading-normal{
    font-size: 1.4rem;
}
p{
    font-size: .9rem;
}
/*ページヘッダー*/
.page-header{
    background-color: rgb(51, 150, 180);
    height: 104px;
    max-width: 100%;
    text-align: center;
    margin-top: 1rem;
}
.page-header h1,h2,.vertical-line{
    color: rgb(255, 255, 255);
}
.line-conteiner{
    position: relative;
    width: 10px;
    height: 20px;
    margin: -3px auto 0;
    overflow: hidden;
}
.vertical-line {
    position: absolute;
    top: -20px;
    left: 50%;
    width: 3px;
    height: 20px;
    background-color: rgb(254, 254, 254);
    transform: translateX(-50%);
  }
.page-header-wrapper{
    position: relative;
    z-index: -100;
}
.head-margin{
    height: 80px;
    width: 100%;
    background-color: rgb(255, 242, 242);
}

/* ふわっ(その場で)cssとjQuery */
.fadein{
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s ease;
}
.fadein.visible{
  opacity: 1;
  transform: translateY(0);
}
/* ～共通部分 */

/* ◎ヘッダー */
#header{
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 242, 242);
    /* 固定ヘッダーの縮小表示 */
    transition: 1.5s;
}
.logo{
    width: 250px;
    vertical-align: middle;
    transform: translateY(-3px);
}
nav ul{
    display: flex;
    gap: 0;
    list-style: none;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
    display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: rgb(188, 75, 75);
	padding: 20px 35px;
	transition: all .3s;
}
nav ul li li a{
	padding: 10px 35px;
}
nav ul li a:hover{
	color: rgb(192, 162, 162);
}
/*==矢印の設定*/
/* 2階層目を持つliの矢印の設定 */
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:20px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid rgb(143, 57, 57);
    border-right:2px solid rgb(143, 57, 57);
    transform: rotate(135deg);
}
/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background:#28BFE7;
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255, 255, 255, 0.6);
}
nav li.has-child ul li:last-child > a{
    border-bottom:none;
 }
nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#3577CA;
}

/* ◎スクロールでヘッダーの高さを調整 */
/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#header.HeightMin{
	position: fixed;
    /*最前面へ*/
    z-index: 999;
	height:50px;
}

/* ◎下線がにゅっと出てくるエフェクト */
.underline .underline-menu a {
    position: relative;
}
.underline .underline-menu a::after {
    position: absolute;
    /* 幅を縮小して中央寄せ */
    left: 50%;
    transform: translateX(-50%);
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #1dadc7;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.underline .underline-menu a:hover::after {
    /* 幅を縮小して中央寄せ */
    width: 80%;
}

/* ◎メインビジュアル */
.cover{
    background: rgb(226, 185, 124) url(../image/mainvisual.png) no-repeat center bottom /cover; 
    height: 620px;
    position: relative;
    z-index: -100;
}
.cover h2{
    transform: translateY(200PX);
    text-shadow: 3px 3px 3px rgb(171, 235, 255), -3px -3px 3px #37cefc,
                -3px 3px 3px rgb(134, 190, 207),  3px -3px 3px #1fc6f9;
    margin: 0;
}
.site-info{
    background-color: rgb(255, 242, 242,0.9);
    padding: 0 .5%;
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 1.4;
    font-size: 0.8rem;
}

/* ◎コンセプトセクション */
.concept-grid{
    display: grid;
    width: 80%;
    height: 690px;
    grid-template-columns: repeat(3,335px);
    grid-template-rows: 37px 190px 190px 190px 50px;
    gap: 0.5rem;
    margin-top: 60px;
    justify-content: center;
}
.concept-grid .item0 h3{
    font-size: 90%;
    color: rgb(218, 90, 90);
    text-align: left;
}
/*文字位置指定*/
.concept-grid-item h3{
    text-align: center;
    padding-bottom: 0.9rem;
}
.concept-grid p{
    padding: 0 1.5rem;
}
/*背景色指定*/
.concept-grid .item2,.concept-grid .item8{
    background-color: rgb(250, 240, 240);
}
.concept-grid .item4{
    background-color: rgb(173, 140, 132);
}
.concept-grid .item6{
    background-color: rgb(2, 105, 137);
}
/*文字色指定*/
.concept-grid .item4 h3,.concept-grid .item6 h3{
    color: rgb(255, 255, 255);
}
.concept-grid .item4 p,.concept-grid .item6 p{
    color: rgb(255, 255, 255);
}
/*背景配置と高さ指定*/
.concept-grid .item1{
    background-image: url(../image/coffeebeans.jpg);
    background-size: cover;
}
.concept-grid .item3{
    background-image: url(../image/Bottleshelf.png);
    background-size: cover;
}
.concept-grid .item5{
    background-image: url(../image/interior.png);
    background-size: cover;
}
.concept-grid .item7{
    background-image: url(../image/product_panini.png);
    background-size: cover;
}
.concept-grid .item9{
    background-image: url(../image/product_prosciutto.png);
    background-size: cover;
}
.concept-grid-item{
    display: flex;
    align-items: center;
}
/*グリッド右下テキスト*/
.outside-text{
    text-align: right;
    font-size: 0.9rem;
}
   
/* ◎ニュースセクション */
.news-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
    margin: 2.5rem 4rem 2.5rem 4rem;
}
.news-flex-item{
    display: flex;
    gap: 1.5rem;
    margin: 40px 15px;
}
.news-flex-item2{
    flex-basis: 30px;
    padding-top: 4px;
}
.news-flex-item3{
    flex-basis: 430px;
    padding-top: 6px;
}
.news-flex-item3 h3{
    font-size: 1.2rem;
}
.news-flex-item p{
    font-size: 0.8rem;
    text-align: left;
}
.news .pictogram{
    width: 30px;
}
.no-image{
    font-size: 0.8rem;
    width: 120px;
    line-height: 120px;
    background-color: rgb(219, 213, 213);
}
/* 記号テキストの折り返し */
.word-break{
    word-break: break-all;
}

/* ◎アクセスセクション */
.access-grid{
    margin: 3rem 8rem 2.3rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: .2rem;
}
.infomation .pictogram{
    width: 30px;
    height: 30px;
}
.infomation{
    border-collapse: separate;
    border-spacing: 20px 15px;
}
/*iframe*/
iframe{
    padding-top: .8rem;
    width: 100%;
    height: 470px;
}

/* ◎カフェメニューセクション */
/* メニュー共通 */
.menu .header-background{
    width: 100%;
    height: 104px;
}
.subheading-flex img{
    width: 48px;
    transform: translateY(4px);
}
.menu-flex{
    width: 87%;
    margin: .8rem auto;
    display: flex;
    gap: 3rem;
}
.menu-flex-item1,.menu-flex-item2{
    flex-basis: 100%;
    position: relative;
    z-index: -10;
}
.align-right{
    text-align: right;
}
.menu h4{
    line-height: 1.1;
    padding: 3px 7px;
}
.menu td{
    line-height: 1.1;
    padding: 9px 7px 2px;
}
.top{
    vertical-align: top;
}
.menu table{
    width: 100%;
    border-collapse: collapse;
}
.menu .border-bottom{
    padding: 15px 0 10px;
    border-bottom: 2px solid rgb(173, 140, 132);
    position: relative;
}
.menu .border-bottom::before{
    /* 擬似要素に実体を持たせる */
    content: '';
    /* 二重線の下の線になる要素の幅を指定する */                                    
	width: 100%;
	/* 線を表示させるために1pxだけ高さを入れる */
    height: 1px;
	/* 二重線の下の線になる一本線の枠線をひく*/
    border-bottom: .8px solid rgb(173, 140, 132);
	/* 二重線の下の線の位置を自由に動かせるようにする */
    position: absolute;
	 /* 二重線の下の線の位置を、内側の線の左に揃える */
    left: 0px;
	 /* 二重線の下の線の位置を、内側の線から下に-2pxずらす */
    bottom: 3px;
}
.menu table small{
    font-size: 84%;
}
/* カフェメニュー */
#cafemenu .page-header{
    margin-top: 0;
    transform: translate(0,-112px);
    background-color: rgb(173, 140, 132,0.5);
}
#cafemenu .subheading-flex{
    display: flex;
    justify-content: space-between;
    width: 85%;
    align-items: center;
    margin: -4.3rem auto 1rem;
    padding: 1px 25px 1px;
    background-color: rgb(173, 140, 132);
    position: relative;
    z-index: -10;
}
#cafemenu table{
    background-color: rgb(252, 247, 247);
}
.colar-none{
    background-color: rgb(255, 255, 255);
}
/* バーメニュー */
#barmenu .page-header{
    margin-top: 0;
    transform: translate(0,-112px);
    background-color: rgb(2, 105, 137,0.5);
}
#barmenu .subheading-flex{
    display: flex;
    justify-content: space-between;
    width: 85%;
    align-items: center;
    margin: -4.3rem auto 1rem;
    padding: 1px 25px 1px;
    background-color: rgb(2, 105, 137);
    position: relative;
    z-index: -10;
}
#barmenu table{
    background-color: rgb(247, 249, 255);
}
.colar-none{
    background-color: rgb(255, 255, 255);
}

/* ◎コンタクトセクション */
/* コンタクト共通 */
.contact-form h2{
    color: rgb(207, 98, 55);
    position: relative;
    z-index: -10;
}
.contact .page-header{
    margin-top: 0;
}
.contact-form{
    margin: 2.5rem auto;
}
.form-area{
    width: 600px;
    margin: 1.5rem auto 0;
    max-width: 100%;
}
form p{
    font-size: 1.1rem;
    text-align: left;
    padding-left: 4px;
    padding-bottom: 2px;
}
input[type="text"]{
    background-color: rgb(207, 225, 244);
    border-radius: 3px;
    width: 600px;
    height: 40px;
    margin: 2px auto;
    font-size: 120%;
    padding: 0 15px;
}
.send{
    display: inline-block;
    font-size: 1.3rem;
    background-color: rgb(207, 225, 244);
    border-radius: 15px;
    width: 170px;
    margin-top: 2rem;
}
.text-Required{
    display: inline-block;
    text-align: center;
    font-size: .86rem;
    color: rgb(255, 255, 255);
    background-color: rgb(213, 72, 132);
    width: 45px;
}
/* 問い合わせセクション */
/* ラジオボタン */
.radio-flex{
    display: flex;
    align-items: center;
}
input{
    cursor: pointer;
}
.radio-flex-item label{
    cursor: pointer;
}
/* 内容入力 */
textarea{
    background-color: rgb(207, 225, 244);
    border-radius: 3px;
    width: 600px;
    height: 150px;
    margin: 2px auto;
    font-size: 110%;
    padding: 0 15px;
}
.text-area{
    margin-top: 1.2rem;
}
/* リクルートセクション */
input{
    margin-left: 2rem;
}
.file-area{
    margin-top: 1.3rem;
    margin-bottom: .3rem;
}
.file{
    margin-top: .4rem;
    transform: translateX(-2rem);
}
.text-ricruite{
    font-size: 1.5rem;
}
.file-area label{
    padding: 7px 35px;
    color: #ffffff;
    background-color: rgb(30, 162, 144);
    cursor: pointer;
}
input[type="file"]{
    display: none;
}
.file-area p{
    margin:6px 0 6px 0;
}

/* ◎ページトップボタン */
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:rgb(19, 129, 162);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: rgb(255, 255, 255);
	text-align: center;
	text-transform: uppercase;
    text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#page-top a:hover{
	background: #777;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/* ◎フッター */
footer{
    background-color: rgb(250, 240, 240);
    height: 80px;
}
.footer-flex{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 9.8px;
}
.footer-flex-item1 span{
    font-size: 117%;
}
.footer-flex-item1{
    line-height: 1.4;
}
.footer-flex-item2 small{
    font-size: 122%;
    line-height: 1.3;
}
.footer-flex-item1 a:hover3,.footer-flex-item2 a:hover{
    opacity: 0.4;
}

/* ◇レスポンシブ対応◇ */
/* ==800px以下の形状 */

@media screen and (max-width:800px){
    
    /* 共通部分 */
    /*フォント*/
    .heading-large{
        font-size: 2.3rem;
        text-align: center;
    }
    .heading-midium{
        font-size: 1.5rem;
        text-align: center;
    }
    .heading-normal{
        font-size: 1.2rem;
    }
    p{
        font-size: .9rem;
    }
    /*ページヘッダー*/
    .page-header{
        height: 96px;
    }

    /* ◎右から流れるグローバルメニュー */
    /*========= ナビゲーションのためのCSS ===============*/
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
	    top:0;
        right: -120%;
	    width:100%;
        height: 100vh;/*ナビの高さ*/
	    background:rgb(229, 251, 241);
        /*動き*/
	    transition: all 1s;
    }
    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        right: 0;
    }
    nav{
        padding: 0;
    }
    nav ul{
        display: block;
        text-align: center;
    }
    nav li.has-child ul{
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        /*JSで制御するため一旦表示*/
        visibility:visible;
        /*JSで制御するため一旦表示*/
        opacity: 1;
        /*JSのslidetoggleで表示させるため非表示に*/
        display: none;
        /*JSで制御するためCSSのアニメーションを切る*/
        transition: none;
    }
    nav ul li a{
        color: rgb(30, 162, 144);
        font-weight: bold;
        border-bottom:1px dotted rgb(19, 129, 162);
    }
    /*矢印の位置と向き*/
    nav ul li.has-child::before{
        left:30px;
    }
    nav ul li.has-child.active::before{
        transform: rotate(-45deg);
    }
    
    /* ◎下線がにゅっと出てくるエフェクト */
    .underline .underline-menu a:hover::after {
        /* 幅を縮小して中央寄せ */
        width: 25%;
    }

    /* ◎メニューボタン */
    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn{
        /*ボタン内側の基点となるためrelativeを指定。
        追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
        position: fixed;
        top: 10px;
        right: 15px;
        background:rgb(19, 129, 162);
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
        z-index: 9999;
    }
    /*ボタン内側*/
    .openbtn span{
        display: inline-block;
        /*アニメーションの設定*/
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: rgb(255, 255, 255);
        width: 45%;
    }
    .openbtn span:nth-of-type(1) {
        top: 13px;
    }
    .openbtn span:nth-of-type(2) {
        top: 19px;
    }
    .openbtn span:nth-of-type(3) {
        top: 25px;
    }
    .openbtn span:nth-of-type(3)::after {
        /*3つ目の要素のafterにMenu表示を指定*/
        content:"Menu";
        position: absolute;
        top: 5px;
        left: -2px;
        color: rgb(255, 255, 255);
        font-size: 0.6rem;
        text-transform: uppercase;
    }
    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn.active span:nth-of-type(3){
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    .openbtn.active span:nth-of-type(3)::after {
        /*3つ目の要素のafterにClose表示を指定*/
        content:"Close";
        transform: translateY(0) rotate(-45deg);
        top:5px;
        left:4px;
    }

    /* ◎ヘッダー */
    .logo{
        width: 250px;
        vertical-align: middle;
        transform: translate(-3px,-3px);
    }
    /* ◎メインビジュアル */
    .cover{
        height: 590px;
    }
    .cover h2{
        font-size: 1.7rem;
    }
    .site-info p{
        font-size: 0.83rem;
    }
    /* ◎コンセプトセクション */
    .concept-grid{
        display: grid;
        width: 97%;
        height: 1740px;
        grid-template-columns: 1fr;
        grid-template-rows: 37px 11rem 11rem 11rem 11rem 11rem 11rem 11rem 11rem 11rem 50px;
        margin-top: 35px;
    }
    .concept-grid .item0 h3{
        transform: translateY(8px);
        position: relative;
        z-index: -100;
    }
    .item0{
        order: 1;
    }
    .item01{
        order: 2;
    }
    .item03{
        order: 3;
    }
    .item1{
        order: 6;
    }
    .item2{
        order: 5;
    }
    .item3{
        order: 8;
    }
    .item4{
        order: 7;
    }
    .item5{
        order: 4;
    }
    .item6{
        order: 9;
    }
    .item7{
        order: 10;
    }
    .item8{
        order: 11;
    }
    .item9{
        order: 12;
    }
    .item03{
        order: 13;
    }
    .item04{
        order: 14;
    }
    .item10{
        order: 15;
    }
    .item01,.item02,.item03,.item04{
        display: none;
    }
    /*文字位置調整*/
    .concept-g1rid-item h3{
        padding: 2.1rem 0 0.9rem;
    }
    .concept-grid p{
        padding: 0 1.8rem;
    }   
    /* ◎ニュースセクション */
    .news-grid{
        display: grid;
        grid-template-columns: 1fr;
        margin: .5rem 0;
    }
    .news-grid-item2{
        margin-top: -4rem;
    }
    .news-flex-item{
        display: flex;
        gap: .8rem;
        margin: 44px 5px;
    }
    .news-flex-item3 h3{
        font-size: 1rem;
    }
    .no-image{
        font-size: 0.7rem;
        width: 100px;
        line-height: 100px;
    }
    /* ◎アクセスセクション */
    .access-grid{
        display: grid;
        grid-template-columns: 1fr;
        margin: 1.3rem auto 4.5rem;
    }
    .infomation .pictogram{
        width: 25px;
        height: 28px;
    }
    .infomation{
        margin-left: .3rem;
    }
    /*iframe*/
    iframe{
        height: 400px;
    }
    /* ◎メニューセクション */
    /* メニュー共通 */
    .menu .header-background{
        height: 96px;
    }
    .subheading-flex img{
        width: 42px;
    }
    .subheading-flex h2{
        font-size: 1.15rem;
    }
    .menu-flex p{
        font-size: 13px;
    }
    .menu-flex{
        width: 100%;
        margin: -.6rem auto .7rem;
        display: block;
    }
    .menu h4{
        font-size: .93rem;
    }
    .menu table small{
        font-size: 80%;
    }
    .padding-adjust{
        padding-top: 2px;
    }
    .tr-none{
        display: none;
    }
    /* カフェメニュー */
    #cafemenu .page-header{
        transform: translate(0,-103px);
    }
    #cafemenu .subheading-flex{
        width: 95%;
        margin: -5.2rem auto 1rem;
        padding: 1px 13px 1px;
    }
    .bottom-margin{
        height: 15px;
    }
    /* バーメニュー */
    #barmenu .page-header{
        transform: translate(0,-103px);
    }
    #barmenu .subheading-flex{
        width: 95%;
        margin: -5.2rem auto 1rem;
        padding: 1px 13px 1px;
    }
    .display-none{
       display: none;
    }
    /* ◎コンタクトセクション */
    /* コンタクト共通 */
    .contact-form{
        margin: 1.5rem auto;
    }
    .form-area{
        width: 320px;
        text-align: center;
    }
    form p{
        font-size: 1rem;
        padding-bottom: 1px;
    }
    input[type="text"]{
        width: 320px;
        height: 35px;
        margin: 1px auto;
        font-size: 100%;
        padding: 0 10px;
    }
    .send{
        font-size: 1.2rem;
        width: 150px;
        margin: 2.5rem auto 1.5rem;
    }
    .text-Required{
        font-size: .8rem;
        width: 43px;
        transform: translateY(-3px);
        position: relative;
        z-index: -10;
    }
    /* ラジオボタン */
    .radio-flex{
        gap: 2px;
    }
    .radio-flex-item{
        font-size: 0.9rem;
    }
    input[type="radio"]{
        margin-left: 7px;
    }
    /* 内容入力 */
    textarea{
        width: 320px;
        height: 130px;
        margin: 1px auto;
        font-size: 100%;
        padding: 0 10px;
    }
    /* リクルートセクション */
    .file-area{
        text-align: left;
    }
}