@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);
    position: relative;
}
.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(--gradientRed), var(--gradientDarkBlue));
}
/* ヘッダー
======================================================================= */
/* ロゴ */
.header {
    background: url(../images/twilight.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;
    }
    span {
        display: block;
        width: fit-content;
        &:nth-child(1) {
            font-size: clamp(1.25rem, calc(1.16rem + .37vw), 1.45rem);
        }
    }
}

/* ヘッダーコンタクト */
.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;
}
/* ハンバーガーメニュー */
.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;
    }
}
/* キャッチ画像 */
.taxiCatch {
    background: url(../images/taxiCatch.jpg) no-repeat center/cover;
    border-radius: 16px;
    border: 6px solid #0003;
    opacity: .7;
    width: 75%;
    aspect-ratio: 4/3;
    position: absolute;
    top: 3.5rem;
    right: 0;
    z-index: -100;
}
h2 {
    font-weight: bold;
    background-color: #fffe;
    box-shadow: -8px 6px 0 #ccc;
    width: fit-content;
    padding: .6em .4em .4em;
}
.concept {
    position: relative;
    div {
        background-color: #fffe;
        border: 6px solid #ccc;
        width: 60%;
        &:nth-child(2) {
            align-self: flex-end;
            translate: 0 -1.5rem;
        }
    }
    p {
        padding: .5em;
        line-height: 1.8;
    }
    &::after {
        background-color: #fff7;
        box-shadow: 0 0 8px #fff;
        border-radius: 50%;
        display: block;
        content: "";
        width: 64px;
        aspect-ratio: 1/1;
        position: absolute;
        bottom: 0;
        left: 16px;
    }
}
.targetSection {
    gap: 2rem;
    .flex {
        align-items: center;
        justify-content: space-between;
        h3 {
            color: #fff;
            background-color: #333c;
            width: 30%;
            padding: 2em 0 .5em .5em;
        }
        ul {
            width: 65%;
        }
        li {
            border-bottom: 1px dotted #333c;
            line-height: 1.8;
            padding: .5em 0 0 .2em;
        }
    }
}
.price {
    line-height: 1.8;
    h3 {
        background-color: #333c;
        color: #fff;
        padding: .5em 0 0 .5em;
    }
    p.bold {
        color: #333;
        background-color: #fff;
        box-shadow: -12px 8px 0 #ccc;
        font-size: 1.45rem;
        font-weight: bold;
        width: fit-content;
        margin: 1.5rem auto 1rem;
        padding: .5em .4em .3em;
    }
    .flex-column {
        gap: .5rem;
        translate: 0 1rem;
        text-align: center;
        .textDeco {
            text-decoration: underline solid var(--subColor) 2px;
        }
    }
}
.accessSection {
    background-color: #fffe;
    border: 6px solid #ccc;
    margin-bottom: .6em;
    padding: .6em .4em;
    position: relative;
    &::after {
        background-color: #fff7;
        box-shadow: 0 0 8px #fff;
        border-radius: 50%;
        display: block;
        content: "";
        width: 64px;
        aspect-ratio: 1/1;
        position: absolute;
        top: -7rem;
        right: 16px;
        z-index: -100;
    }
    h3 {
        border-bottom: 2px dotted var(--mainColor);
        padding-bottom: .3em;
        margin-top: 1em;
    }
    p {
        margin-bottom: 1em;
    }
    h3, p {
        text-align: center;
        line-height: 1.8;
    }
}
table {
    margin: 1.5rem auto;
}
th {
    color: #fff;
    background-color: #333c;
    box-shadow: -3px 0 0 #333c;
    border-left: 3px solid #fff;
    padding: .4em .5em .2em;
    margin: .7rem 0 .3rem;
    font-weight: normal;
    translate: -1rem 0;
}
th, td {
    line-height: 1.8;
    display: block;
    width: fit-content;
}

/* フッター================= */
footer {
    background-color: var(--black);
    color: var(--white);
}
footer small {
    display: block;
    padding: 2rem 0;
    text-align: center;
    text-transform: capitalize;
}
