@charset "utf-8";

/*----------------------------------------
	base ベースルール
----------------------------------------*/

/* 共通した色の指定 */
:root {
    --base-color: #000;
}

/* 標準的なフォント */
@font-face {
    font-family: "AMETTHA";
    src: url("./fonts/AMETTHA.TTF") format("truetype");
    font-family: "YUMIN";
    src: url("./fonts/YUMIN.TTF") format("truetype");
}
html {
    font-size: 62.5%; /* 基準フォントサイズを10pxに揃える */
    font-family: OFL Sorts Mill Goudy TTArial, YUMIN, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--base-color);
}

/* 画像が荒くならないように対策 */
img {
    max-width: 100%;
    height: auto;
}

/* 全体の背景 */
.wrapper {
    width: 100%;
    background-color: var(--base-color);
    background-image: url(../img/background.jpg);
}

/* ヘッダー下のすべてのフォントサイズ */
header * {
    font-size: 2.5rem;
}

/* フッター下のすべてのフォントサイズ */
footer * {
    font-size: 1.4rem;
}

/*----------------------------------------
	layout レイアウトルール
----------------------------------------*/

/* main */

.main {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*header部分のレイアウト
-----------------------------------*/

.header {
    width: 100%;
    background-color: #fff;
    display: flow-root;
    position: fixed;
    z-index: 3;
}

.header_inner {
    max-width: 1040px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    float: right;
}


@media (width<993px) {
/* PC版グローバルナビゲーション非表示 */
.g_nav_pc {
    display: none;
}
.header_space {
    height: 66px;
}
}

/* PC版グローバルナビゲーション表示
PC版ハンバーガーメニュー非表示 */
@media (width>992px) {
    .header_inner {
        padding-top: 10px;
        padding-bottom:10px;
    }
    .g_nav_pc {
        display: block;
    }
    .menu_pc {
        display: flex;
        justify-content: flex-end;
        gap: 60px;
    }
    .menu_item_pc {
        padding:  4px 5px;
        position: relative;
        z-index: 1;
    }
    .menu_item_pc::before {
        background: #fec88a;
        content: "";
        display:block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform 0.5s;
        z-index:-1;
        border-radius: 100vh;
    }
    .menu_item_pc:hover {
        color:#fff;
    }
    .menu_item_pc:hover::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
    .hamburger {
        opacity: 0;
    }
    .header_space {
        height: 66px;
    }
}

/* ハンバーガーメニューイベント  */
.menu_item_sp a {
    color: #fff;
}

.menu_sp {
    padding-left: 0;
}

.menu_item_sp {
    list-style: none;
}
/*----------------------------
  * ハンバーガーメニュー
  *----------------------------*/
.hamburger {
    position: fixed;
    top: 14px;
    right: 8%;
    z-index: 3;
    width: 48px;        /* ← 広めに設定 */
    height: 48px;       /* ← 広めに設定 */
    padding: 10px;      /* ← クリックしやすく */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* spメニュー画面 *----------------------------*/
.menu_sp {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
    justify-content: center;
    background-color: var(--base-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.33s ease-in-out,visibility 0.33s ease-in-out;
}
.menu_sp.is-active{
    opacity: 1;
    visibility: visible;
}

/* WPメニューに対応させる */
.menu_sp .menu-item a {
    color: #fff;
    /* font-size: 18px; */
    display: block;
    padding: 1em;
    text-align: center;
}

/*----------------------------
  * メニュー画面のアニメーション
  *----------------------------*/

/* アニメーション前のメニューの状態 */
.menu_sp {
    transform: translateX(100vw);
    transition: all 0.5s ease-in-out;
}
/* アニメーション後のメニューの状態 */
.menu_sp.is-active {
    transform: translateX(0);
}

/*----------------------------
  * ハンバーガーメニューのパーツ
  *----------------------------*/

.hamburger span {
    position: absolute;
    left: 0;
    width: 80%;
    height: 2px;
    background-color: var(--base-color);
    border-radius: 1.5px;
    transition: all 0.3s;
    color: var(--base-color);
    z-index: 3;
}

.hamburger span:nth-of-type(1) {
    top: 0px;
}
.hamburger span:nth-of-type(2) {
    top: 13px;
}
.hamburger span:nth-of-type(3) {
    top: 25px;
}

/*----------------------------
  * ハンバーガーメニューのパーツのアニメーション
  *----------------------------*/

.hamburger.is-active span:nth-of-type(1) {
    transform:  translateY(12px) rotate(-45deg);
    background-color: #fff;
}
.hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
    background-color: #fff;
}

/*footer部分のレイアウト
-----------------------------------*/

.footer {
    width: 100%;
    height: 10%;
    background-color: var(--base-color);
    color: #fff;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer_img{
    display: flex;
    justify-content: space-evenly;
}
.thank{
    width: 80%;
    text-align: left;
    margin: 0 auto;
}
.img_coffe {
    width: 80px;
    z-index: 1;
}
.img_donuts{
    width:150px;
    z-index: 1;
}
.steamWrap {
    width: 100%;
    height: 50px;
}
.steamBox {
    position: relative;
    width: 100%;
    height:50px;
}
#steam01{
    position: absolute;
        bottom:-180%;
        right:10%;
        z-index: 2;
        opacity: 0;
}
.steam01_start{
    animation: steam_01 7s infinite linear;
}
#steam02{
    position: absolute;
        bottom:-150%;
        right: 12%;
    z-index: 2;
    opacity: 0;
}
.steam02_start{
animation: steam_02 15s infinite linear;
animation-delay: 4S;
}
.steamBox > img{
    width: 75px;
    display: block;
}
@keyframes steam_01 {
0% {
    filter: blur(16px);
    transform: scale(1, 1);
    opacity: 0;
}
33% {
    transform: rotateY(50deg);
    transform: scale(1.6, 1);
    opacity: 0.3;
}
66% {
    transform: rotateY(10deg);
    transform: scale(1.2, 1);
    opacity: 0.2;
}
100% {
    bottom: 50%;
    right: 5%;
    transform: rotateY(-60deg);
    transform: scale(2, 1.6);
    opacity: 0.1;
    }
}
@keyframes steam_02 {
0% {
    filter: blur(16px);
    transform: scale(0.6, 0.6);
    opacity: 0;
}
11% {
    opacity: 0.2;
}
33% {
    transform: rotateY(40deg);
    transform: scale(0.8, 1);
}
66% {
    transform: rotateY(20deg);
    transform: scale(1, 1.2);
    opacity: 0.3;
}
100% {
    bottom: 50%;
    right: 30%;
    filter: blur(20px);
    transform: rotateY(60deg);
    transform: scale(1.2, 1.4);
    opacity: 0.1;
    }
}
@media (width>700px) {
    .img_coffe {
    width: 140px;
}
.img_donuts{
    width:220px;
}}
@keyframes steam_01 {
0% {
    filter: blur(16px);
    transform: scale(1, 1);
    opacity: 0;
}
33% {
    transform: rotateY(50deg);
    transform: scale(1.6, 1);
    opacity: 0.3;
}
66% {
    transform: rotateY(10deg);
    transform: scale(1.2, 1);
    opacity: 0.2;
}
100% {
    bottom: 150%;
    right: 35%;
    filter: blur(20px);
    transform: rotateY(-60deg);
    transform: scale(2, 1.6);
    opacity: 0.1;
    }
}

@keyframes steam_02 {
0% {
    filter: blur(16px);
    transform: scale(0.6, 0.6);
    opacity: 0;
}
11% {
    opacity: 0.2;
}
33% {
    transform: rotateY(40deg);
    transform: scale(0.8, 1);
}
66% {
    transform: rotateY(20deg);
    transform: scale(1, 1.2);
    opacity: 0.3;
}
100% {
    bottom: 150%;
    right: 15%;
    filter: blur(20px);
    transform: rotateY(60deg);
    transform: scale(1.2, 1.4);
    opacity: 0;
    }
}
@media (width>1200px) {
    .img_coffe {
    width: 180px;
}
    .img_donuts{
    width:260px;
}
.thank{
    text-align: center;
}
    #steam01{
    position: absolute;
    bottom:-180%;
    right:20%;
}
    #steam02{
    position: absolute;
    bottom:-100%;
    right: 30%;
}
    }

/*トップに戻るボタン
-----------------------------------*/
#pagetop {
    height: 70px;
    width: 70px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    opacity: 0.7;
    border: solid 2px gray;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden; /* 初期状態で非表示 */
    opacity: 0;
}
/* スクロールしたときに表示  */
#pagetop.show {
    visibility: visible;
    opacity: 1;
}
#pagetop_arrow {
    height: 20px;
    width: 20px;
    border-top: 2px solid var(--base-color);
    border-right: 2px solid var(--base-color);
    transform: translateY(20%) rotate(-45deg);
}
@media (width<1300px) {
    #pagetop {
        height: 50px;
        width: 50px;
        right: 15px;
        bottom: 30px;
    }
    #pagetop_arrow {
        height: 10px;
        width: 10px;
    }
}

/*スライダー
-----------------------------------*/
.slider {
    visibility: hidden;
}
.slider.slick-initialized {
    visibility: visible;
}
.slider img {
    margin: 0 auto;
}

/*パンくずリスト
-----------------------------------*/
.breadcrumb_inner span{
    font-size: 1rem;
    margin-left: 5px;
}
