@charset "UTF-8";

* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
html {
    scroll-behavior: smooth;
}
body {
    font-feature-settings: "palt";
}
a, button {
    cursor: pointer;
}

:root {
    --mainColor: #0bd;
    --subColor: #0bd4;
    --white: #fefefe;
    --gray: #9f9f9f;
    --black: #3f3f3f;
    --harfBlack: #3f3f3f3a;
    --gradientRed: #fff0ef;
    --gradientBlue: #f6fffd;
    --gradientDarkBlue: #dde3eb;
    --mainWidth: 800px;
    --subWidth: 320px;
    --btnWidth: 10rem;
    --containerWidth: 92vw;
    @media (width < 600px) {
        --containerWidth: 97vw;
    }
}

/* コンテナー */

.mainBox {
    display: flex;
    flex-direction: column;
    gap: calc(var(--mainWidth) / 10);
    padding-top: calc(var(--mainWidth) / 10);
}
.topContainer {
    width: var(--containerWidth);
    max-width: calc(var(--mainWidth) * 1.4);
    margin-inline: auto;
    padding-inline: min(3vw, 2rem);
}
.flex {
    display: flex;
}
.flex-reverse {
    flex-direction: row-reverse;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
/* スマホ改行 */
br.mobile {
    @media (600px <= width) {
        display: none;
    }
}
br.notebook {
    @media (width < 600px) {
        display: none;
    }
}
/* 全体のグラデーション */
body {
    background-image: linear-gradient(var(--gradientBlue), var(--gradientRed));
}
/* ヘッダー
======================================================================= */
/* ロゴ */
.header {
    background: url(../images/daytime.png) no-repeat bottom center/cover;
    box-shadow: -80px 16px 0px var(--harfBlack);
    width: min(1280px, 84vw); 
    aspect-ratio: 2/1;
    margin-inline: auto 0;
    position: relative;
    @media (760px < width) {
        margin-inline: auto;
        padding: 0 min(3vw, 2rem);
    }
    a {
        z-index: 300;
    }
}
.header > .flex-column {
    @media (760px < width) {
        flex-direction: row;
        justify-content: space-between;
    }
    a {
        display: block;
        width: fit-content;
        height: fit-content;
    }
}
/* h1 */
.h1 {
    background-color: var(--harfBlack);
    border-radius: 0 0 .6em 1em;
    padding: 1.6em .6em .3em 1.2em;
    display: flex;
    width: fit-content;
    height: fit-content;
    gap: .5rem;
    flex-direction: column;
    position: relative;
    @media (760px < width) {
        padding: 2em 1.2em .5em 1.8em;
        translate: 16px 0;
    }
    .fz-small, .incName {
        display: block;
        width: fit-content;
    }
}

/* ヘッダーコンタクト */
.contactBox {
    translate: -16px 32px;
    justify-content: space-between;
    gap: 1.7rem;
    @media (760px < width) {
        translate: 0 16px;
        flex-direction: column;
    }
}
.headerContact {
    background-color: var(--gradientBlue);
    box-shadow: 0 0 6px var(--harfBlack);
    border-radius: .3em;
    width: fit-content;
    height: fit-content;
    padding: .5em .7em;
    @media (760px < width) {
        translate: 15% 0;
    }
}
.contactBox .flex-column {
    justify-content: space-between;
    @media (760px < width) {
        flex-direction: row-reverse;
        justify-content: left;
        gap: 2rem;
        align-items: end;
    }
/* お問い合わせボタン */
    .icon {
        background-color: var(--mainColor);
        box-shadow: 0 0 6px var(--harfBlack);
        display: block;
        padding: .8em .6em .6em;
        border-radius: .3em;
    }
}
/* Instagramロゴ */
.contactBox .instaBox {
    translate: 0 -1rem;
    @media (760px < width) {
        translate: 0 0;
    }
}
.instaSize {
    --iconSize: 42px;
    --borderSize: .15rem;
    width: var(--iconSize);
    aspect-ratio: 1/1;
    position: relative;
    a {
        color: var(--white);
        width: 100%;
        height: 100%;
        position: absolute;
        top: -1.2em;
        left: -.3em;
        z-index: 10;
        font-size: .8rem;
        letter-spacing: .01em;
        text-transform: capitalize;
    }
}
.insta {
    background: linear-gradient(160deg, #427eff 0%, #f13f79 55%) no-repeat;
    box-shadow: 0 0 8px #333;
    width: 100%;
    height: 100%;
    border-radius: 20%;
    overflow: hidden;
    position: relative;
    &::before{/*グラデーションを重ねるため*/
        content: '';
        position: absolute;
        top: 35%;
        left: -35%;
        width: 120%;
        height: 120%;
        background: radial-gradient(#ffd610 5%, rgba(255, 142, 90, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
    }
}
.istaInner {
    display: inline-block;
    width: 32%;
    aspect-ratio: 1/1;
    border: var(--borderSize) solid #fff;
    border-radius: 50%;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
    &::after {
        display: inline-block;
        content: "";
        width: 45%;
        aspect-ratio: 1/1;
        background-color: #fff;
        border-radius: 50%;
        position: absolute;
        top: -6px;
        right: -6px;
    }
}
.instaOuter {
    display: inline-block;
    width: 75%;
    aspect-ratio: 1/1;
    border: var(--borderSize) solid #fff;
    border-radius: 28%;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 1;
}

/* ヘッダーナビ */
.headerNav {
    --burgerWid: clamp(42px, 7vw, 72px);
    width: min(1400px, 92vw);
    /* width: fit-content; */
    position: fixed;
    top: 3rem;
    left: 50%;
    translate: -50% 0;
    z-index: 200;
    /* @media (2400px < width) {
        left: 15%;
    } */
}
/* ハンバーガーメニュー */
.burger {
    --opacity: 1;
    --rotate: 0;
    --translate: .5rem;
    background-color: var(--gray);
    box-shadow: 0 0 6px var(--harfBlack);
    border-radius: 50%;
    display: grid;
    place-items: center;
    width: var(--burgerWid);
    aspect-ratio: 1/1;
    margin-bottom: 2rem;
    &.is-active {
        --opacity: 0;
        --rotate: 135deg;
        --translate: 0;
    }
    span {
        background-color: var(--gradientBlue);
        display: block;
        width: calc(var(--burgerWid) * 0.4);
        height: 3px;
        grid-area: 1/1/-1/-1;
        transition: opacity .5s ease-in-out, rotate .5s ease-in-out, translate .5s ease-in-out;
    }
    span:nth-child(1) {
        opacity: var(--opacity);
    }
    span:nth-child(2) {
        translate: 0 calc(var(--translate) * -1);
        rotate: var(--rotate);
    }
    span:nth-child(3) {
        translate: 0 var(--translate);
        rotate: calc(var(--rotate) * -1);
    }
}

/* メニュー */
.headerNav .menu {
    opacity: 0;
    height: 0;
    pointer-events: none;
    justify-content: space-between;
    transition: opacity .3s ease-in-out;
    @media (760px < width) {
        justify-content: left;
        gap: 3rem;
    }
    &.is-active {
        opacity: 1;
        height: 100%;
        pointer-events: auto;
    }
    > li {
        padding: .8em .6em;
    }
}
.headerNav .menu li {
    background-color: var(--white);
    box-shadow: 0 0 6px var(--gray);
    height: fit-content;
    margin-bottom: .5em;
    a {
        display: block;
        padding: .8em .6em;
    }
    .btn {
        padding: .8em .6em;
        &::after {
            background-color: var(--gray);
            display: inline-block;
            content: "";
            width: 12px;
            aspect-ratio: 1/1;
            clip-path: polygon(0 10%, 100% 10%, 50% 100%);
        }
    }
}
.junnbityuu {
    text-decoration: line-through solid #333 2px;
}

/* メイン 
=================================================================*/
/* フォントカラー blue */
.fc-blue {
    color: var(--mainColor);
    font-weight: bold;
}
/* ビックリマーク 装飾 */
.exclamationDeco {
    display: inline-block;
    width: fit-content;
    position: relative;
    translate: 6px -3px;
    &::before {
        background-color: var(--mainColor);
        content: "";
        display: inline-block;
        position: absolute;
        width: 18px;
        aspect-ratio: 4/3;
        clip-path: polygon(
            0 0, 5% 0, 100% 45%, 100% 55%, 5% 100%, 0 100%
        );
        rotate: 108deg;
        top: -8px;
        left: 0;
    }
}
/* キャッチテキスト */
.catch {
    color: #fff;
    background: url(../images/kokuban.jpg) no-repeat center/120%;
    border: 6px solid #3333;
    border-radius: 16px;
    display: grid;
    place-items: center;
    width: min(700px, 100%);
    margin-inline: auto;
    aspect-ratio: 4/3;
    font-size: 1rem;
    letter-spacing: .15em;
    line-height: 1.5;
    text-shadow: 0 0 3px #fff;
    @media (760px < width) {
        font-size: 1.85rem;
    }
    .fz {
        font-size: 1.45rem;
        text-transform: uppercase;
        @media (760px < width) {
            font-size: 2.45rem;
        }
    }
    .exclamationDeco {
        font-size: 1rem;
    }
}
.h2-box {
    background-image:
    repeating-linear-gradient(
        30deg, 
        #fff 0 2%, 
        color-mix(in srgb, var(--mainColor), white 50%) 2% 4%, 
        #fff 4% 6%, 
        color-mix(in srgb, var(--mainColor), white 50%) 6% 8%);
padding-bottom: 6px;
}
h2 {
    background-color: #fff;
    text-align: center;
    line-height: 1.8;
    padding: .8em 0;
}
.concept {
    text-align: center;
    line-height: 1.8;
}
/* コンテンツ枠組み */
.flex.relative {
    justify-content: space-between;
    align-items: start;
    &:nth-child(odd) {
        flex-direction: row-reverse;
    }
}
/* タイトル下の斜めグラデーション */
.h3-box {
    background-image:
        repeating-linear-gradient(
            30deg, 
            #fff 0 2%, 
            color-mix(in srgb, var(--mainColor), white 50%) 2% 4%, 
            #fff 4% 6%, 
            color-mix(in srgb, var(--mainColor), white 50%) 6% 8%);
    box-shadow: 3px 0 0 #0003;
    padding-bottom: 6px;
}
h3 {
    color: #333;
    background-color: #fff;
    padding: .3em 0 0 .5em;
    font-weight: bold;
}
/* 説明文 */
.textBox {
    width: 65%;
    line-height: 1.8;
}
.textBox p {
    background-color: #fff5;
    box-shadow: -3px 0 0 #0003;
    border-radius: 0 0 24px 12px;
    padding: .3em .3em .7em .7em;
    margin: .7em 0 0 .3em;
    position: relative;
    &::after {
        border-bottom: 3px solid #0003;
        border-right: 3px solid #0003;
        border-radius: 0 0 24px 12px/0 0 20px 12px;
        display: inline-block;
        content: "";
        width: 100%;
        height: 1lh;
        position: absolute;
        bottom: 0;
        right: 0;
    }
} 
/* 説明イメージ */
.asobi-images {
    background-color: #ccc;
    width: 30%;
    aspect-ratio: 1/1;
}
.asobi-images.A {
    background: url(../images/syo-gi.jpg) no-repeat center/cover;
    border-radius: 16px 16px 56px 16px;
    box-shadow: 5px 5px 0 var(--harfBlack);
}
.asobi-images.B {
    background: url(../images/ma-jan.jpg) no-repeat center/cover;
    border-radius: 16px 16px 16px 56px;
    box-shadow: -5px 5px 0 var(--harfBlack);
}
.asobi-images.C {
    background: url(../images/osero.jpg) no-repeat center/cover;
    border-radius: 16px 16px 56px 16px;
    box-shadow: 5px 5px 0 var(--harfBlack);
}
.asobi-images.D {
    background: url(../images/cafemenu.jpg) no-repeat center/cover;
    border-radius: 16px 16px 16px 56px;
    box-shadow: -5px 5px 0 var(--harfBlack);
}
/* アクセス */
.accessBox {
    width: fit-content;
    margin: 0 auto 1rem;
    padding: .5em;
    background-image:
    repeating-linear-gradient(
        30deg, 
        #fff 0 2%, 
        color-mix(in srgb, var(--mainColor), white 50%) 2% 4%, 
        #fff 4% 6%, 
        color-mix(in srgb, var(--mainColor), white 50%) 6% 8%);
    p {
        background-color: #fff;
        padding: .8em 1.6em;
        line-height: 1.8;
    }
    span {
        font-size: .9rem;
        margin-right: 1em;
    }
}

/* フッター================= */
footer {
    background-color: var(--black);
    color: var(--white);
}
footer small {
    display: block;
    padding: 2rem 0;
    text-align: center;
    text-transform: capitalize;
}
