@charset "UTF-8";


/* -----------------------------
変数定義
----------------------------- */
:root {
    /* カラー */
    --color-main: #c9decf;
    --color-sub: #f9f6ef;
    --color-text: #2b2317;
    --color-link: #006ad6;
    --color-white: #fff;
    --color-gray: #959595;
    --color-footer: #4c3f3f;
    
    /* レイアウト */
    --width-content: 960px;
    --width-narrow: 770px;
    --space-unit: 15px;
    --space-section: 100px;
    
    /* その他 */
    --duration: 0.7s;
}



/* ー-----------------
フォント
------------------- */
body {
    font-family: 'noto sans jp','ヒラギノ角ゴ Pro W3', sans-serif;
    overflow-x: hidden;
    color: var(--color-text);
}

.en-font {
    font-family:'DIN Alternate';
    color: var(--color-text);
}

.jp-font {
    font-family: 'noto sans jp','ヒラギノ角ゴ Pro W3', sans-serif;
}

.kiwi-maru-regular {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
}

.font-m {
    font-size: 24px;
}

.font-l {
    font-size: 40px;
}

.font-xl {
    font-size: 96px;
}
@media (max-width: 600px){
    body {
        font-size:16px
    }
}
/* --------------------
画像
-------------------- */
img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* -----------------------------
レイアウト
----------------------------- */
.wrapper {
    width: var(--width-content);
    margin: 0 auto;
    position: relative;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}
.f-box {
    --flex-gap: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--flex-gap);
    flex-wrap: wrap;
}
.col-02 > * {
    width: calc((100% - var(--flex-gap)) / 2);
}
.col-03 > * {
    width: calc((100% - 2 * var(--flex-gap)) / 3);
}

@media (max-width: 600px){
    .wrapper {
        width: 100%;
    }

    .col-02 > * {
        width: calc((100%) / 1);
    }

    .col-03 > * {
        width: calc((100%) / 1);
}
}

/* -----------------------------
共通コンポーネント
----------------------------- */
p {
    line-height: 1.5;
    margin-bottom: 0.5em;
}

.sec-ttl {
    font-size: 40px;
    font-weight: normal;
    text-align: center;
    padding-bottom: var(--space-unit);
    padding-top: var(--space-unit);
}

.sec1-ttl {
    font-size: 40px;
    font-weight: bold;
    padding-bottom: var(--space-section);
}

.lead {
    font-size: 16px;
    line-height: calc(26 / 14);
    padding-bottom: var(--space-section);
}

.top-ttl {
    font-size: 40px;
    text-align: center;
    padding: 128px 0;
}

.tac {
    text-align: center;
}
/* ボタン共通 */
.btn {
    display: block;
    text-align: center;
    font-weight: bold;
    transition: all var(--duration);
    margin: 0 auto;
}

/* プライマリーボタン */
.btn-primary {
    width: 290px;
    height: 55px;
    line-height: 55px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 5px;
}

/* セカンダリーボタン */
.btn-secondary {
    width: 150px;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    box-shadow: 0px 2px 3.6px 2.4px rgba(0, 0, 0, 0.16);
    font-size: 15px;
    color: var(--color-text);
}
/* ページトップボタン */
.pagetop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
}

.pagetop a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--color-text);
    border-radius: 50%;
    opacity: 1;
}

.pagetop a:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-top: 3px solid var(--color-white);
    border-right: 3px solid var(--color-white);
    translate: 0 20%;
    rotate: -45deg;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
}

.pagetop a:hover {
    transition: all var(--duration);
}

/* ホバー制御 */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .pagetop a:hover {
        opacity: 0.7;
    }
}

@media (hover: none) or (pointer: coarse) {
    /* タッチデバイスでの即時反応 */
    .btn-primary:active,
    .btn-secondary:active,
    .pagetop a:hover {
        opacity: 1;
    }
}

/* アニメーション関連のCSS */
.f-up {
    opacity: 0;
}

.f-up.fadeup {
    animation: fadeupanime 1.8s forwards;
}

@keyframes fadeupanime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.anim-box.poyopoyo {
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
}
@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
            transform: scale(1.0);
    }
    50%, 70% {
    transform: scale(0.95);
    }
}
.anim-box.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.anim-box.kiran::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.anim-box.kiran:hover::before {
    animation: kiran 0.5s linear;
}

@keyframes kiran {
    0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
    }
    20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
    }
    40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
    }
    80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
    }
    100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
    }
}


.fuwafuwa {
animation: fuwafuwa 3s ease-in-out infinite alternate;
/* background: url(../img/ico-apple.svg) no-repeat center center / 60px auto; */
display: inline-block;
transition: 1.5s ease-in-out;
width: 150px;
height: 150px;
margin-top: 15px;
}

@keyframes fuwafuwa {
0% {
    transform:translate(0, 0) rotate(-7deg);
}
50% {
    transform:translate(0, -7px) rotate(0deg);
}
100% {
    transform:translate(0, 0) rotate(7deg);
}
}