@charset "UTF-8";


/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* ENDリセットCSS */


/* My CSS */

/*----------------
Default Styling
------------------*/
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #2a2a2a;
    background-color: #FAFAFA;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}


/*---------------
Reusable Classes
-----------------*/

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ボタン本体(トップページの .button と同仕様) */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 240px;
    padding: 15px 25px;
    border-radius: 50px;
    color: #2a2a2a;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background-color: #F0ECEC;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
}

.button:hover {
    background-color: #E5E0E0;
    transform: translateY(2px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.button:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.08);
}

.button-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.button-icon::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #F0ECEC;
    margin-left: 2px; /* 視覚的中心を補正 */
}

/* ボタンを中央配置するラッパー(トップページと同仕様) */
.button-wrapper {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

/* フェードインアニメーション(トップページと同仕様) */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* SP版のみ表示する改行(PCでは無視される) */
.sp-only {
    display: inline;
}


/*---------------
SP (default)
-----------------*/

/* Header */
.header {
    padding: 50px 0 30px;
    text-align: center;
}

.header-logo {
    font-family: "roboto-flex", sans-serif;
    font-weight: normal;
    font-variation-settings: "YTFI" 738, "YTDE" -203, "YTAS" 750, "YTLC" 514, "YTUC" 712, "XTRA" 468, "YOPQ" 79, "XOPQ" 96, "slnt" 0, "wdth" 100, "GRAD" 0, "wght" 400, "opsz" 14;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: #2a2a2a;
}

/* Main */
main {
    padding-bottom: 50px;
}

main p {
    font-size: 0.875rem;
    line-height: 2;
    color: #4a4a4a;
}

/* ページタイトル */
.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #2a2a2a;
    margin-top: 20px;
}

/* リード文 */
.intro-text {
    margin-top: 32px;
}

/* フォーム */
.form {
    margin-top: 50px;
}

/* ハニーポット用フィールド：画面から隠す(ボットには見える) */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-group {
    margin-top: 32px;
}

.form-group:first-child {
    margin-top: 0;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.required {
    font-weight: 300;
    color: #4a4a4a;
}

/* フォーム入力欄(共通スタイル) */
input,
textarea {
    width: 100%;
    padding: 12px;
    font-size: 0.875rem;
    font-family: inherit;
    color: #2a2a2a;
    background-color: #ffffff;
    border: 3px solid #F0ECEC;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #c8c0c0;
}

textarea {
    height: 100px;
    resize: vertical;
}

/* 送信ボタンエリア */
.form-submit {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #F0ECEC;
    color: #4a4a4a;
    margin-top: 80px;
    padding: 24px 20px;
    text-align: center;
}

.footer small {
    font-family: "roboto-flex", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}


/* ─────────────────────────────────────
   Thanks Page
   ───────────────────────────────────── */

.thanks-content {
    text-align: center;
    padding: 40px 0;
}

.thanks-content .page-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #2a2a2a;
}

.thanks-content .text-content {
    margin-top: 32px;
}

/* SP版では本文を左揃え(可読性配慮) */
.thanks-content .text-content p {
    text-align: left;
}

.thanks-content .text-content p + p {
    margin-top: 24px;
}

.thanks-content .button-wrapper {
    margin-top: 50px;
}


/*---------------
PC (1025px以上)
-----------------*/
@media (min-width: 1025px) {

    /* SP用の改行をPCでは非表示 */
    .sp-only {
        display: none;
    }

    /* Header */
    .header {
        padding: 40px 0;
    }

    .header-logo {
        font-size: 3rem;
    }

    /* Main */
    main {
        padding-bottom: 80px;
    }

    main p {
        font-size: 1rem;
    }

    /* ページタイトル */
    .page-title {
        font-size: 1.75rem;
        margin-top: 40px;
    }

    /* リード文 */
    .intro-text {
        margin-top: 40px;
    }

    /* フォーム */
    .form {
        margin-top: 80px;
    }

    .form-group {
        margin-top: 40px;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    /* フォーム入力欄 */
    input,
    textarea {
        padding: 14px;
        font-size: 1rem;
        border-width: 5px;
    }

    textarea {
        height: 240px;
    }

    /* 送信ボタン */
    .form-submit {
        margin-top: 60px;
    }

    .button {
        width: 270px;
        font-size: 1rem;
    }

    .button-wrapper {
        margin-top: 40px;
    }

    /* Footer */
    .footer {
        margin-top: 100px;
    }


    /* ─────────────────────────────────────
       Thanks Page (PC)
       ───────────────────────────────────── */

    .thanks-content {
        padding: 80px 0;
    }

    .thanks-content .page-title {
        font-size: 1.75rem;
    }

    .thanks-content .text-content {
        margin-top: 50px;
    }

    /* PC版では本文を中央揃え */
    .thanks-content .text-content p {
        text-align: center;
    }

    .thanks-content .text-content p + p {
        margin-top: 32px;
    }

    .thanks-content .button-wrapper {
        margin-top: 70px;
    }
}
