/*
Theme Name:Salon de Sou
Theme URI:
Description:WordPressテーマ「twentytwentyfour」の自作子テーマ「Salon de Sou」です。
Template:twentytwentyfour
Author: shirakashi
Version:1.0.0
*/

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);  /* 下から50px上がってくる */
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;  /* 1.5秒かけてゆっくり変化 */
    will-change: opacity, transform;  /* パフォーマンス最適化 */
}  
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.grecaptcha-badge { visibility: hidden; }

:root {
    --gold: #C0A563;
    --light-gold: #EBE4CE;
    --black: #222222;
    --navy: #172431;
    --light-blue: #E1E4EE;
    --text-red: #AD2424;
    --back-ground-red: #9F1547;
    --white: #FFFFFF;
    --gray: #D9D9D9;
    --dark-gray: #999999;
}

/* 見出し */
.section-title {
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(2rem, 0.827rem + 1.92vw, 3.125rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
}

.content-title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    color: var(--black);
}

.btn-more {
    text-align: center;
    display: inline-block;
    padding: 20px 0;
    background: var(--gold);
    color: var(--white);
    font-weight: bold;
    height: 70px;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
    position: relative;
}
.btn-more::after {
    content: url(images/front-page/button-more.png);
    position: absolute;
    top: 35%;
    right: 0;
    margin-right: 10px;
}
.btn-more:hover {
    background: #a07b35;
}

.btn-line {
    text-align: center;
    display: inline-block;
    padding: 20px 0;
    background: var(--white);
    background-image: url(images/recruit/btn-line-frame.png);
    background-size: 100% 100%;
    background-position: top left;
    background-repeat: no-repeat;
    color: var(--gold);
    font-weight: bold;
    height: 70px;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
    position: relative;
}
.btn-line::after {
    content: url(images/recruit/btn-line.png);
    position: absolute;
    top: 30%;
    right: 0;
    margin-right: 30px;
}
.btn-line:hover {
    background-color: var(--light-gold);
}

.gold {
    color: var(--gold);
}

html {
    font-size: 100%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--black);
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

hr {
    margin: 0;
    height: 3px;
    border: none;
    background-color: var(--gold);
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media screen and (max-width: 959px)  {

    body {
        margin-top: 60px;
    }

    /* セクション見出し */
    .section-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .btn-more {
        padding: 10px 0;
        height: 50px;
        width: 250px;
        min-width: auto;
    }
    .btn-more::after {
        top: 30%;
    }

    .btn-line {
        padding: 10px 0;
        height: 50px;
        width: 250px;
        min-width: auto;
    }
    .btn-line::after {
        top: 22%;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}