@charset "UTF-8";

/* ========================================
   変数定義（Custom Properties）
   ======================================== */
:root {
    /* カラー */
    --color-primary-yellow: #FFDF29;
    --color-secondary-yellow: #FFC342;
    --color-accent-orange: #EF8200;
    --color-border-orange: #FFAE00;
    --color-text-brown: #563300;
    --color-background-wave: #FFBF00;
    --color-nav-dash: #FFECD1;
    --color-white: #fff;
    --color-black: #000;
    --color-shadow: rgba(0, 0, 0, 0.25);

    /* フォント */
    --font-base: "Noto Sans JP", sans-serif;
    --font-en: 'Poppins', sans-serif;

    /* ブレークポイント */
    --bp-sp: 640px;
    --bp-tab: 960px;
}

/* ========================================
   基本的なリセットと設定（Reset & Base）
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
figure,
dt,
dd {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.75;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: normal;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   サイト全体で共通のコンポーネント
   ======================================== */

body {
    font-size: 16px;
    color: var(--color-black);
    font-family: var(--font-base);
    min-width: 375px;
    position: relative;
    margin: 0 auto;
    background: var(--color-primary-yellow);
}

.en {
    font-family: var(--font-en);
}

.inner {
    padding: 0 24px;
    margin: 0 auto;
    position: relative;
}

.bd {
    width: 100%;
    height: 5px;
}

.bd_b {
    background: var(--color-black);
}

.bd_w {
    background: var(--color-white);
}

.btn_entry {
    max-width: 376px;
    margin: 0 auto;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    position: relative;
    z-index: 9999;
}

.btn_entry:hover {
    opacity: .75;
}

.btn_entry img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 670px) {
    .btn_entry {
        max-width: 282px;
    }
}

/*nav
================================================*/
#nav {
    position: fixed;
    top: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 730px;
    width: calc(100% - 12px * 2);
    box-sizing: border-box;
    padding: 16px 32px;
    border-radius: 32px;
    border: 3px solid var(--color-secondary-yellow);
    background: var(--color-white);
    box-shadow: 6px 6px 20px 0px var(--color-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#nav h1 {
    width: 93.196px;
    height: 24px;
    margin: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

#nav h1:hover {
    opacity: 0.75;
}

#nav h1 img {
    display: block;
    width: 100%;
    height: auto;
}

#nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#nav ul li {
    border-bottom: none;
}

#nav ul li a {
    color: var(--color-text-brown);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-decoration: none;
    white-space: nowrap;
    padding: 0;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

#nav ul li a:hover {
    color: var(--color-secondary-yellow);
}

#nav ul li::after {
    content: none;
}

.nav-toggle {
    display: none;
}

@media (max-width: 640px) {
    #nav {
        top: 24px;
        max-width: 368px;
        width: calc(100% - 12px * 2);
        padding: 8px 8px 8px 8px;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    #nav h1 {
        align-self: center;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #nav h1 img {
        width: 93.196px;
        height: 24px;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 8px;
        right: 8px;
        width: 48px;
        height: 48px;
        aspect-ratio: 1 / 1;
        background-color: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        z-index: 1001;
        /* 注: data URI内の色は直接CSS変数を参照できないため、ここは元のままにしとくで */
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"><path d="M24 0C10.766 0 0 10.766 0 24C0 37.234 10.766 48 24 48C37.234 48 48 37.234 48 24C48 10.766 37.234 0 24 0ZM34 34H14C12.894 34 12 33.1041 12 32.0001C12 30.8961 12.894 30.0001 14 30.0001H33.9999C35.1059 30.0001 35.9999 30.8961 35.9999 32.0001C36 33.104 35.106 34 34 34ZM34 26H14C12.894 26 12 25.104 12 24C12 22.896 12.894 22 14 22H33.9999C35.1059 22 35.9999 22.896 35.9999 24C35.9999 25.104 35.106 26 34 26ZM34 18H14C12.894 18 12 17.104 12 16C12 14.896 12.894 14.0001 14 14.0001H33.9999C35.1059 14.0001 35.9999 14.896 35.9999 16C35.9999 17.104 35.106 18 34 18Z" fill="%23563300"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: background-image 0.3s ease;
    }

    #nav.is-open .nav-toggle {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"><path d="M40.9781 40.978C31.6135 50.3407 16.384 50.3407 7.01944 40.978C-2.34111 31.6154 -2.34111 16.382 7.01944 7.01941C11.7017 2.33908 17.8507 0 23.9998 0C30.1489 0 36.2958 2.33918 40.9781 7.01941C50.3407 16.3819 50.3407 31.6154 40.9781 40.978ZM33.9026 16.9243C34.6849 16.1419 34.6849 14.8773 33.9026 14.0949C33.5124 13.7047 33.0002 13.5086 32.4878 13.5086C31.9756 13.5086 31.4633 13.7047 31.0731 14.0949L23.9997 21.1704L16.9282 14.097C16.5361 13.7068 16.0238 13.5106 15.5135 13.5106C15.0013 13.5106 14.489 13.7068 14.0988 14.097C13.3164 14.8793 13.3164 16.1459 14.0988 16.9263L21.1702 23.9998L14.0968 31.0732C13.3145 31.8555 13.3145 33.1222 14.0968 33.9025C14.8772 34.6849 16.1438 34.6849 16.9262 33.9025L23.9996 26.8291L31.073 33.9025C31.8554 34.6849 33.12 34.6849 33.9024 33.9025C34.6847 33.1222 34.6847 31.8555 33.9024 31.0732L26.829 23.9998L33.9026 16.9243Z" fill="%23563300"/></svg>');
    }

    #nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 8px 24px;
    }

    #nav.is-open ul {
        display: flex;
    }

    #nav ul li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-bottom: 2px dashed var(--color-nav-dash);
        cursor: pointer;
    }

    #nav ul li a {
        padding: 24px 0px;
        font-size: 24px;
        flex-grow: 1;
    }

    #nav ul li::after {
        content: '';
        display: block;
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34" fill="none"><circle cx="17" cy="17" r="16.4402" fill="%23EF8200" stroke="white" stroke-width="1.11964"/><path d="M9.52002 16.9537C9.11809 16.9537 8.79226 17.2795 8.79226 17.6815C8.79226 18.0834 9.11809 18.4092 9.52002 18.4092L9.52002 16.9537ZM23.6346 18.1961C23.9188 17.9119 23.9188 17.4511 23.6346 17.1669L19.0032 12.5354C18.7189 12.2512 18.2582 12.2512 17.9739 12.5354C17.6897 12.8196 17.6897 13.2804 17.9739 13.5646L22.0908 17.6815L17.9739 21.7983C17.6897 22.0825 17.6897 22.5433 17.9739 22.8275C18.2582 23.1117 18.7189 23.1117 19.0032 22.8275L23.6346 18.1961ZM9.52002 17.6815L9.52002 18.4092L23.12 18.4092L23.12 17.6815L23.12 16.9537L9.52002 16.9537L9.52002 17.6815Z" fill="white"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        transition: background-image 0.3s ease;
    }

    #nav ul li:hover a {
        color: var(--color-accent-orange);
    }

    #nav ul li:hover::after {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34" fill="none"><circle cx="17" cy="17" r="16.4402" fill="%23FFC342" stroke="white" stroke-width="1.11964"/><path d="M9.52002 16.9537C9.11809 16.9537 8.79226 17.2795 8.79226 17.6815C8.79226 18.0834 9.11809 18.4092 9.52002 18.4092L9.52002 16.9537ZM23.6346 18.1961C23.9188 17.9119 23.9188 17.4511 23.6346 17.1669L19.0032 12.5354C18.7189 12.2512 18.2582 12.2512 17.9739 12.5354C17.6897 12.8196 17.6897 13.2804 17.9739 13.5646L22.0908 17.6815L17.9739 21.7983C17.6897 22.0825 17.6897 22.5433 17.9739 22.8275C18.2582 23.1117 18.7189 23.1117 19.0032 22.8275L23.6346 18.1961ZM9.52002 17.6815L9.52002 18.4092L23.12 18.4092L23.12 17.6815L23.12 16.9537L9.52002 16.9537L9.52002 17.6815Z" fill="white"/></svg>');
    }
}

/*fv
================================================*/

#fv {
    background: var(--color-primary-yellow);
    padding: 32px 0 16px;
    position: relative;
}

#fv .inner {
    width: calc(100% - 16px * 2);
    margin: 0 auto;
    padding: 0;
}

#fv h2 {
    max-width: 1238px;
    margin: 0 auto;
    position: relative;
}

#fv h2 img {
    width: 100%;
    height: auto;
}

#fig_fv01 {
    width: 93.5px;
    height: 123px;
    position: absolute;
    bottom: 20px;
    left: 0;
}

/* フワフワ動くアニメーションの定義 */
@-webkit-keyframes fluffyAnimation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fluffyAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }

    100% {
        transform: translateY(0);
    }
}

#btn_scroll {
    width: 176px;
    height: 171.605px;
    position: absolute;
    z-index: 9500;
    bottom: 74px;
    right: 90px;
    -webkit-animation: fluffyAnimation 3s ease-in-out infinite;
    animation: fluffyAnimation 3s ease-in-out infinite;
}

#btn_scroll a {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

#btn_scroll a:hover {
    opacity: .75;
}

#fig_fv01 img,
#btn_scroll img {
    width: 100%;
    height: auto;
}

#btn_scroll_s {
    max-width: 346px;
    width: calc(100% - 23px * 2);
    position: fixed;
    z-index: 9999;
    bottom: 23px;
    right: 0;
    left: 0;
    margin: auto;
    display: none;
    transition: opacity 0.4s ease;
}

#btn_scroll_s a,
#btn_scroll_s02 a {
    display: block;
    padding: 15px 40px;
    border-radius: 40px;
    border: 3px solid var(--color-white);
    background: var(--color-accent-orange);
    box-shadow: 6px 6px 0px 0px var(--color-white);
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-base);
    font-size: 25px;
    font-weight: 900;
    line-height: 100%;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    font-feature-settings: 'palt' on;
    -webkit-font-feature-settings: 'palt' on;
    -moz-font-feature-settings: 'palt' on;
    transition: box-shadow .3s, transform .3s, opacity .3s;
    -webkit-transition: box-shadow .3s, transform .3s, opacity .3s;
}

#btn_scroll_s span,
#btn_scroll_s02 span {
    display: block;
    padding: 15px 40px;
    border-radius: 40px;
    border: 3px solid var(--color-white);
    background: #C7C7C7;
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-base);
    font-size: 25px;
    font-weight: 900;
    line-height: 100%;
    font-feature-settings: 'palt' on;
    -webkit-font-feature-settings: 'palt' on;
    -moz-font-feature-settings: 'palt' on;
}

#btn_scroll_s a:hover,
#btn_scroll_s02 a:hover {
    opacity: .75;
    box-shadow: 0px 0px 0px 0px var(--color-white);
    -webkit-transform: translateY(6px) translateX(6px);
    transform: translateY(6px) translateX(6px);
}

#btn_scroll_s02 {
    max-width: 460px;
    margin: 0 auto;
}

#btn_scroll_s.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.btn_result a {
    display: flex;
    position: absolute;
    bottom: 16%;
    width: 33%;
    right: 0;
    left: 0;
    margin: auto;
    transition: opacity .3s;
    z-index: 9999;
    /* 30px */
}

.btn_result a:hover {
    opacity: .75;
}

.btn_result a img {
    width: 100%;
    height: auto;
}



@media screen and (max-width:1100px) {
    #btn_scroll {
        width: 132px;
        height: 128.7px;
        bottom: 56px;
        right: 16px;
    }


}



@media screen and (max-width:750px) {
    #btn_scroll {
        width: 99px;
        height: 96.5px;
        bottom: 48px;
        right: 16px;
    }
}

@media screen and (max-width: 640px) {
    #fig_fv01 {
        display: none;
    }

    #btn_scroll {
        display: none;
    }

    #btn_scroll_s {
        display: block;
    }

    #fv {
        padding: 32px 0 0;
        margin: 0 auto -32px;
    }

    #fv .inner {
        width: 100%;
        padding: 0;
    }

    .btn_result a {
        bottom: -0;
        transform: translateY(40%);
        width: 75%;
        /* 30px */
    }
}

/*about
================================================*/

#about {
    background: url(../img/bk_about.png) no-repeat center top;
    background-size: cover;
    margin: -196px auto 0;
    position: relative;
    width: 100%;
    padding: 160px 0 96px;
}

@media screen and (min-width:1600px) {
    #about {
        margin: -300px auto 0;
        padding: 270px 0 96px;
    }
}

@media screen and (min-width:2100px) {
    #about {
        margin: -400px auto 0;
        padding: 370px 0 96px;
    }
}

.txt_num {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 36%;
    left: 0;
    right: 0;
    margin: auto;
}

.txt_num span:first-child {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: Poppins;
    font-size: 129px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    vertical-align: text-bottom;
    display: inline-block;
    transform: translateY(14%);
}

.txt_num span:last-of-type {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    vertical-align: text-bottom;
    display: inline-block;
}

.txt_num i {
    width: 48px;
    height: 101px;
    flex-shrink: 0;
}

.tit_num {
    padding: 20px 0 12%;
    max-width: 615px;
    width: 100%;
    margin: 0 auto -16%;
    text-align: center;
    position: relative;
}

.tit_num>img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:960px) {
    .tit_num {
        padding: 20px 0 12%;
    }

    .txt_num {
        bottom: 32%;
    }
}

@media screen and (max-width:640px) {
    .tit_num {
        padding: 20px 0 12%;
    }

    .txt_num {
        bottom: 32%;
    }

    .txt_num span:first-child {
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: Poppins;
        font-size: 82.947px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 82.947px */
        vertical-align: text-bottom;
        display: inline-block;
        transform: translateY(14%);
    }

    .txt_num span:last-of-type {
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 45.01px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 76.517px */
        vertical-align: text-bottom;
        display: inline-block;
    }

    .txt_num i {
        width: 32px;
        height: 65px;
        flex-shrink: 0;
    }
}

@media screen and (max-width:450px) {
    .tit_num {
        padding: 20px 0 14%;
        max-width: calc(100% + 24px * 2);
        width: calc(100% + 24px * 2);
        margin-left: -24px;
        margin-right: -24px;
    }

    .txt_num {
        bottom: 26%;
    }
}

#about .inner {
    max-width: 975px;
    margin: 0 auto;
    background-size: contain;
}

.tit01 {
    font-weight: 900;
    font-feature-settings: 'palt' on;
    text-align: center;
    margin: 0 auto 40px;
}

.tit01 span:nth-of-type(1) {
    display: block;
    font-size: 100px;
    line-height: 100%;
    margin: 0 auto 8px;
}

.tit01 span:nth-of-type(2) {
    display: block;
    font-size: 22px;
    line-height: 170%;
}

#about .tit01 span:nth-of-type(1) {
    color: var(--color-text-brown);
}

#about .tit01 span:nth-of-type(2) {
    color: var(--color-text-brown);
}

#about .box {
    display: block;
    max-width: 640px;
    padding: 48px 8px;
    text-align: center;
    border-radius: 40px;
    border: 8px solid var(--color-border-orange);
    background: var(--color-white);
    margin: 0 auto;
    position: relative;
    z-index: 8888;
}

#about .box p {
    color: var(--color-text-brown);
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 22px;
    font-weight: 900;
    line-height: 170%;
}

#about .box a {
    padding-top: 17px;
    display: block;
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    /* 27.2px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

#fig_ch01 {
    width: 207px;
    height: 251.023px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -220px;
    margin: auto;
    transform: translateX(-230%);
    z-index: 8889;
}

@media screen and (max-width:1170px) {
    #fig_ch01 {
        width: 103.5px;
        height: 125.511px;
        position: absolute;
        right: auto;
        left: 7px;
        bottom: -80px;
        margin: auto;
        transform: translateX(-0%);
        z-index: 8889;
    }
}

@media screen and (max-width: 640px) {
    .tit01 {
        margin: 0 auto 38px;
    }

    .tit01 span:nth-of-type(1) {
        font-size: 54px;
    }

    .tit01 span:nth-of-type(2) {
        font-size: 18px;
    }

    #about {
        background: url(../img/bk_about_s.png) no-repeat center top;
        background-size: 100% auto;
        margin: 0 auto 0px;
        padding-top: 80px;
    }

    #about .box {
        display: block;
        width: 345px;
        padding: 36px 6px;
        text-align: center;
        border-radius: 30px;
        border: 6px solid var(--color-border-orange);
        margin: 0 auto;
    }

    #about .box p {
        font-size: 15px;
    }

    #about .box a {
        padding-top: 36px;
    }
}

/*apply
================================================*/

#apply {
    background-color: var(--color-background-wave);
    padding: 0px 0 0px;
    position: relative;
}



#fig_ch02 {
    width: 166px;
    height: 235.051px;
    position: absolute;
    right: 0;
    left: 0;
    top: 216px;
    margin: auto;
    transform: translateX(297%);
}

#fig_ch03 {
    width: 175.069px;
    height: 229px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 52px;
    margin: auto;
    transform: translateX(-290%);
    z-index: 7777;
}

#apply::after {
    content: "";
    display: block;
    width: 100%;
    height: 102px;
    background-image: radial-gradient(circle, var(--color-background-wave) 51px, transparent 51px);
    background-size: 86px 102px;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(22%);
    -webkit-transform: translateY(22%);
    z-index: 6666;
}



#apply .tit01 span:nth-of-type(1) {
    color: var(--color-white);
}

#apply .tit01 span:nth-of-type(2) {
    color: var(--color-text-brown);
}

.step_col {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 0;
    justify-content: center;
    gap: 80px;
}

.step_col>li {
    width: calc((100% - 80px) / 2);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.step_col>li h3 {
    width: 200px;
    border-radius: 100px;
    background: var(--color-text-brown);
    padding: 8px;
    margin: 0 auto 24px;
    color: var(--color-white);
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 40px;
    font-weight: 900;
    line-height: 100%;
}

.step_col>li div {
    flex-grow: 1;
    border-radius: 40px;
    border: 8px solid var(--color-border-orange);
    padding: 48px 32px;
    background: var(--color-white);
}

.step_col>li figure {
    margin: 0 auto 24px;
}

.step_col>li figure img {
    width: 100%;
    height: auto;
}

.step_col>li p {
    color: var(--color-text-brown);
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    font-weight: 700;
    line-height: 170%;
}

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


    #fig_ch02 {
        width: 83px;
        height: 117.526px;
        position: absolute;
        right: 7px;
        left: auto;
        top: 216px;
        margin: auto;
        transform: translateX(0%);
        z-index: 7777;
    }

    #fig_ch03 {
        width: 87.535px;
        height: 114.5px;
        position: absolute;
        right: auto;
        left: 7px;
        bottom: 0px;
        margin: auto;
        transform: translateX(-0%);
        z-index: 7777;
    }
}

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

    .step_col {
        max-width: 800px;
        gap: 24px;
        max-width: 100%;
    }

    .step_col>li {
        width: calc((100% - 24px) / 2);
    }
}


@media screen and (max-width: 640px) {
    #apply::after {
        height: 50px;
        background-image: radial-gradient(circle, var(--color-background-wave) 25px, transparent 25px);
        background-size: 48px 50px;
        background-repeat: repeat-x;
        transform: translateY(30%);
        -webkit-transform: translateY(30%);
    }

    .step_col {
        max-width: 270px;
        width: 100%;
        margin: 0 auto 0;
        gap: 0;
    }

    .step_col>li {
        width: 100%;
        margin: 0 0 32px;
    }

    .step_col>li:nth-last-of-type(1) {
        margin: 0;
    }

    .step_col>li h3 {
        width: 150px;
        padding: 6px;
        margin: 0 auto 18px;
        font-size: 30px;
    }

    .step_col>li div {
        border-radius: 30px;
        border: 6px solid var(--color-border-orange);
        padding: 36px 24px;
    }

    .step_col>li figure {
        margin: 0 auto 18px;
    }

    .step_col>li p {
        font-size: 13px;
    }
}


/*prize
================================================*/

#prize {
    background-color: var(--color-primary-yellow);
    padding: 128px 0 128px;
    position: relative;
}

#prize::after {
    content: "";
    display: block;
    width: 100%;
    height: 102px;
    background-image: radial-gradient(circle, var(--color-primary-yellow) 51px, transparent 51px);
    background-size: 86px 102px;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(22%);
    -webkit-transform: translateY(22%);
    z-index: 6666;
}

#prize01 {
    background-image: url(../img/bk_prize.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
}

#prize01 .tit02 {
    max-width: 709px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 9000;
}

#prize01 .tit02 img {
    width: 100%;
    height: auto;
}

#fig_ch04 {
    display: block;
    width: 190px;
    height: 227.088px;
    position: absolute;
    right: 0;
    left: 0;
    top: -34px;
    margin: auto;
    transform: translateX(247%);
}

#fig_ch05 {
    display: block;
    width: 247.513px;
    height: 352.891px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 217px;
    margin: auto;
    transform: translateX(-187%);
}

#fig_ch06 {
    display: block;
    width: 250.72px;
    height: 299px;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -194px;
    margin: auto;
    transform: translateX(184%);
}

@media screen and (max-width: 1180px) {
    #fig_ch04 {
        display: block;
        width: 95px;
        height: 113.544px;
        position: absolute;
        right: 0;
        left: auto;
        top: 56px;
        margin: auto;
        transform: translateX(0%);
    }

    #fig_ch05 {
        display: block;
        width: 141.229px;
        height: 552.446px;
        position: absolute;
        right: auto;
        left: 0;
        bottom: -23px;
        margin: auto;
        transform: translateX(0);
    }

    #fig_ch06 {
        display: block;
        width: 103px;
        height: 222px;
        flex-shrink: 0;
        position: absolute;
        right: 0;
        left: auto;
        bottom: -132px;
        margin: auto;
        transform: translateX(0%);
    }

    #fig_ch04 img,
    #fig_ch05 img,
    #fig_ch06 img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 960px) {
    #fig_ch04 {
        display: block;
        width: 95px;
        height: 113.544px;
        position: absolute;
        right: 0;
        left: auto;
        top: 140px;
        margin: auto;
        transform: translateX(0%);
    }
}

@media screen and (max-width: 460px) {
    #fig_ch04 {
        display: block;
        width: 95px;
        height: 113.544px;
        position: absolute;
        right: 0;
        left: auto;
        top: 56px;
        margin: auto;
        transform: translateX(0%);
    }

}

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

.box02 {
    display: flex;
    max-width: 640px;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 40px;
    border: 8px solid #FFAE00;
    background: #FFF;
    margin: 0 auto 44px;
}

.box02 h3 span {
    display: block;
}

.box02 h3 span:nth-of-type(1) {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 170%;
}

.box02 h3 span:nth-of-type(2) {
    color: #E95532;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
}

.box02 figure {
    max-width: 350px;
    margin: 0 auto;
}

.box02 figure img {
    width: 100%;
    height: auto;
}

.box02 .btn {
    width: 100%;
}

.box02 .btn a {
    display: block;
    width: 100%;
    border-radius: 32px;
    background: #EF8200;
    padding: 12px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 100%;
    transition: .3s;
}

.box02 .btn span {
    display: block;
    width: 100%;
    border-radius: 32px;
    background: #C7C7C7;
    padding: 12px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 100%;
}

.box02 .btn a:hover {
    opacity: .75;
}

#prize02 {
    position: relative;
    background: url(../img/bk_more.png) no-repeat center top 311px;
    position: relative;
}

#prize02 .tit03 {
    max-width: 224px;
    margin: 0 auto 40px;
}

#prize02 .tit03 img {
    width: 100%;
    height: auto;
}

#prize02 h3 span {
    display: block;
}

#prize02 h3 span:nth-of-type(1) {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 170%;
    margin: 0 0 8px;
}

#prize02 h3 span:nth-of-type(2) {
    color: #E95532;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
    margin: 0 0 45px;
}

#prize02 h4 {
    max-width: 454px;
    margin: 0 auto 40px;
}

#prize02 h4 img {
    width: 100%;
    height: auto;
}

.fig_s {
    background: url(./img/);
}

#fig_prize {
    width: 265.767px;
    height: 321.771px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    transform: translateX(-150%);
}

#fig_ch07 {
    width: 207px;
    height: 246.806px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 180px;
    transform: translateX(-250%);
}

#fig_ch08 {
    width: 187.036px;
    height: 240px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -130px;
    transform: translateX(270%);
    z-index: 8888;
}

@media screen and (max-width: 1212px) {
    #fig_ch07 {
        width: 103.5px;
        height: 123.403px;
        position: absolute;
        right: auto;
        left: 0;
        margin: auto;
        bottom: 24%;
        transform: translateX(-0%);
    }

    #fig_ch08 {
        width: 93.518px;
        height: 120px;
        position: absolute;
        right: 0;
        left: auto;
        margin: auto;
        bottom: -120px;
        transform: translateX(0%);
        z-index: 8888;
    }

}

@media screen and (max-width: 1180px) {
    #prize02 {
        position: relative;
        background: url(../img/bk_more.png) no-repeat center top 614px;
    }

    #fig_prize {
        width: 265.767px;
        height: 321.771px;
        position: static;
        left: auto;
        right: auto;
        margin: -24px auto 0;
        top: auto;
        transform: translateX(-0%);
    }
}

@media screen and (max-width: 1030px) {
    #fig_ch07 {
        width: 103.5px;
        height: 123.403px;
        position: absolute;
        right: auto;
        left: 0;
        margin: auto;
        bottom: 36%;
        transform: translateX(-0%);
    }

}

@media screen and (max-width: 640px) {
    #fig_ch07 {
        width: 103.5px;
        height: 123.403px;
        position: absolute;
        right: auto;
        left: 0;
        margin: auto;
        bottom: 24%;
        transform: translateX(-0%);
    }

    #prize {
        padding: 96px 0 96px;
    }

    #prize::after {
        height: 50px;
        background-image: radial-gradient(circle, var(--color-primary-yellow) 25px, transparent 25px);
        background-size: 48px 50px;
        background-repeat: repeat-x;
        transform: translateY(30%);
        -webkit-transform: translateY(30%);
    }

    #prize01 .tit02 {
        width: calc(100%);
        margin: 0 auto 32px;
    }

    #prize01 {
        background-image: url(../img/bk_prize_s.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        padding: 0 24px;

    }

    .box02 {
        max-width: 270px;
        padding: 19.2px;
        gap: 14.4px;
        border-radius: 24px;
        border: 4.8px solid #FFAE00;
        margin: 0 auto 65px;
    }


    .box02 h3 span:nth-of-type(1) {
        font-size: 14px;
    }

    .box02 h3 span:nth-of-type(2) {
        font-size: 25px;
    }


    .box02 .btn a {
        padding: 7.2px;
        font-size: 20px;
    }

    .box02 .btn a:hover {
        opacity: .75;
    }

    #prize02 {
        position: relative;
        background: url(../img/bk_more.png) no-repeat center top 614px;
        background-size: contain;
    }

    #prize02 .tit03 {
        max-width: 142px;
        margin: 0 auto 40px;
    }

    #prize02 .tit03 img {
        width: 100%;
        height: auto;
    }

    #prize02 h3 span {
        display: block;
    }

    #prize02 h3 span:nth-of-type(1) {
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 900;
        line-height: 170%;
        margin: 0 0 8px;
    }

    #prize02 h3 span:nth-of-type(2) {
        color: #E95532;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 25px;
        font-style: normal;
        font-weight: 900;
        line-height: 140%;
        margin: 0 0 45px;
    }

    #prize02 h4 {
        max-width: 454px;
        margin: 0 auto 40px;
    }

    #prize02 h4 img {
        width: 100%;
        height: auto;
    }
}

/*character
================================================*/

#character {
    background: #fff url(../img/bk_ch.png) center top 64px no-repeat;
    background-size: 90% auto;
    padding: 128px 0 60px;
}

#character .tit01 span:nth-of-type(1) {
    color: #FFAE00;
}

#character .tit01 span:nth-of-type(2) {
    color: #563300;
}



.ch_box {
    display: flex;
    flex-wrap: wrap;
    max-width: 1056px;
    margin: 0 auto 0;
    gap: 32px;
}

.ch_box>li {
    display: flex;
    flex-direction: column;
    width: calc((100% - 32px * 3) / 4);
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 40px;
    border: 8px solid #FFAE00;
    background: #FFF;
    position: relative;
}

.ch_box>li::before {
    content: "";
    display: block;
    width: 63px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    border-radius: 100%;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: Poppins;
    font-size: 46px;
    font-style: normal;
    font-weight: 900;
    /* 46px */
    position: absolute;
    left: -24px;
    top: -24px;
}

.ch_box>li:nth-of-type(1):before {
    content: "1";
    background: #000000;
}

.ch_box>li:nth-of-type(2):before {
    content: "2";
    background: #595757;
}

.ch_box>li:nth-of-type(3):before {
    content: "3";
    background: #EA5533;
}

.ch_box>li:nth-of-type(4):before {
    content: "4";
    background: #118CCF;
}

.ch_box>li:nth-of-type(5):before {
    content: "5";
    background: #F8B73B;
}

.ch_box>li:nth-of-type(6):before {
    content: "6";
    background: #8DC556;
}

.ch_box>li:nth-of-type(7):before {
    content: "7";
    background: #F08200;
}

.ch_box>li:nth-of-type(8):before {
    content: "8";
    background: #EC7aac;
}

.ch_box h3 {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    position: relative;
    padding-bottom: 16px;
}

.ch_box h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: #FFAE00;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.ch_box figure {
    height: 160px;
    width: auto;
}

.ch_box figure img {
    height: 100%;
    width: auto;
}

.ch_box .prof {
    color: #858585;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 170%;
    /* 30.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.ch_box .btn_ch {
    width: 100%;
}

.ch_box .btn_ch>a {
    display: block;
    width: 100%;
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 32px;
    background: #CC1220;
}

.ch_box .btn_ch>span {
    display: block;
    width: 100%;
    border-radius: 32px;
    background: #C7C7C7;
    padding: 12px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 100%;
}

.ch_box .btn_ch>a>span,
.ch_box .btn_ch>span>span {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 24px */
}

.ch_box .btn_ch a i,
.ch_box .btn_ch span i {
    display: none;
}

@media screen and (max-width: 1040px) {
    .ch_box {
        gap: 24px;
    }

    .ch_box>li {
        width: calc((100% - 24px * 1) / 2);
    }
}

@media screen and (max-width: 640px) {
    #character {
        background: #fff url(../img/bk_ch_s.png) center top no-repeat;
        background-size: contain;
        padding: 96px 0 0px;
    }

    .ch_box {
        gap: 20px;
    }

    .ch_box>li {
        padding: 21px 16px;
        border: 6px solid #FFAE00;
    }

    .ch_box h3 {
        font-size: 17px;
    }

    .ch_box h3::after {
        width: 26.983px;
        height: 2.698px;
    }

    .ch_box figure {
        height: 108px;
    }

    .ch_box .prof {
        font-size: 12.142px;
    }

    .ch_box .btn_ch {
        width: 100%;
    }

    .ch_box .btn_ch a {
        padding: 8.904px;
        gap: 6px;
    }

    .ch_box .btn_ch a span {
        font-size: 17.809px;
    }

    .ch_box .btn_ch a i {
        width: 15px;
        height: 15px;
    }

    .ch_box .btn_ch a i img {
        width: 100%;
        height: auto;
    }

    .ch_box>li::before {
        content: "";
        display: block;
        width: 63px;
        height: 63px;
        line-height: 63px;
        text-align: center;
        border-radius: 100%;
        color: #FFF;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: Poppins;
        font-size: 46px;
        font-style: normal;
        font-weight: 900;
        /* 46px */
        position: absolute;
        left: -24px;
        top: -24px;
    }

    .ch_box>li::before {
        content: "";
        width: 42.5px;
        height: 42.5px;
        line-height: 42.5px;
        font-size: 31px;
        left: -16px;
        top: -16px;
    }

    .ch_box>li:nth-of-type(1):before {
        content: "1";
        background: #000000;
    }

    .ch_box>li:nth-of-type(2):before {
        content: "2";
        background: #595757;
    }

    .ch_box>li:nth-of-type(3):before {
        content: "3";
        background: #EA5533;
    }

    .ch_box>li:nth-of-type(4):before {
        content: "4";
        background: #118CCF;
    }

    .ch_box>li:nth-of-type(5):before {
        content: "5";
        background: #F8B73B;
    }

    .ch_box>li:nth-of-type(6):before {
        content: "6";
        background: #8DC556;
    }

    .ch_box>li:nth-of-type(7):before {
        content: "7";
        background: #F08200;
    }

    .ch_box>li:nth-of-type(8):before {
        content: "8";
        background: #858585;
    }


}

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

    .ch_box>li {
        width: calc((100%));
    }
}

/*details
================================================*/
#details {
    background: url(../img/bk_details.png) no-repeat top center;
    background-size: cover;
    padding: 128px 0 128px;
}

#details section {
    margin: 0 auto 56px;
}


#details section#details01 {
    padding-bottom: 56px;
    position: relative;
}

#details .bd {
    display: block;
    width: 120px;
    height: 4px;
    background: #FFF;
    margin: 56px auto;
}

#details .box03,
#shear .box03 {
    display: flex;
    max-width: 800px;
    margin: 0 auto 56px;
    padding: 48px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 40px;
    border: 8px solid #FFAE00;
    background: #FFF;
}

#details .box03 h2,
#shear .box03 h2 {
    max-width: 363px;
    margin: 0 auto;
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
    /* 47.6px */
    align-self: stretch;
}

#details .box03 h2 img,
#shear .box03 h2 img {
    width: 100%;
    height: auto;
}

#details .box03 p,
#shear .box03 p {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 170%;
    /* 30.6px */
}

#details .box03 dl,
#shear .box03 dl {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

#details .box03 dl dt,
#shear .box03 dl dt {
    width: 272px;
    display: flex;
    flex-direction: column;
}

#details .box03 dl dt span,
#shear .box03 dl dt span {
    display: block;
    width: 100%;
    border-radius: 8px;
    background: #563300;
    padding: 10px;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-align: center;
}

#details .box03 dl dd,
#shear .box03 dl dd {
    width: calc(100% - 272px - 16px);
    display: flex;
    flex-direction: column;
    /* 22.5px */
    color: #563300;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding-bottom: 1em;
}

#details .box03 ul,
#shear .box03 ul {
    padding-left: 1.25em;
    color: #563300;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

#details .box03 ul li,
#shear .box03 ul li {
    list-style-type: disc;
}


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

    #details .box03 dl dt,
    #shear .box03 dl dt {
        width: 320px;
        margin: 0 auto;
    }

    #details .box03 dl dd,
    #shear .box03 dl dd {
        width: 100%;
        text-align: center;
    }

    #details .box03 dl dd ul,
    #shear .box03 dl dd ul {
        text-align: left;
    }
}

@media screen and (max-width:640px) {
    #details {
        background: url(../img/bk_details.png) no-repeat top center;
        background-size: cover;
        padding: 96px 0 96px;
    }

    #details section {
        margin: 0 auto 32px;
    }


    #details section#details01 {
        padding-bottom: 32px;
        position: relative;
    }

    #details .bd {
        margin: 32px auto;
    }

    #details .box03,
    #shear .box03 {
        padding: 29px 19px;
        gap: 14px;
        border-radius: 24px;
        border: 4.8px solid #FFAE00;
        background: #FFF;
    }

    #details .box03 h2,
    #shear .box03 h2 {
        font-size: 20px;
    }


    #details .box03 p,
    #shear .box03 p {
        font-size: 13px;
    }

    #details .box03 dl,
    #shear .box03 dl {
        gap: 10px;
    }

    #details .box03 dl dt,
    #shear .box03 dl dt {
        width: 228px;
    }

    #details .box03 dl dt span,
    #shear .box03 dl dt span {
        padding: 8.4px;
        font-size: 13px;
    }

    #details .box03 dl dd,
    #shear .box03 dl dd {
        font-size: 12px;
    }

    #details .box03 ul,
    #shear .box03 ul {
        font-size: 12px;
    }

}

/*prof
================================================*/

#prof {
    background: var(--color-primary-yellow) url(../img/bk_page.png) no-repeat center bottom;
    background-size: contain;
    padding: 24px 0 0;
    position: relative;
}

@media screen and (min-width:1250px) {
    #prof {
        background: var(--color-primary-yellow) url(../img/bk_page.png) no-repeat center bottom;
        background-size: cover;
        position: relative;
    }

}

#bk_o {
    background: #FFBF00;
    padding-top: 60px;
}

#nav_page h1 {
    max-width: 155px;
    position: absolute;
    left: 150px;
    top: 36px;
}

#nav_page h2 {
    max-width: 446px;
    margin: 0 auto;
}

#bk_prof {
    max-width: 839.608px;
    height: 532.09px;
    background: url(../img/bk_prof.png) no-repeat center center;
    background-size: contain;
    margin: 0 auto;
    padding: 32px 16px;
}

#bk_prof h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 44px;
}

#bk_prof h3 span {
    display: flex;
    flex-direction: column;
}

#bk_prof h3 span:nth-of-type(1) {
    width: 63px;
    height: 63px;
    background: #000;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: Poppins;
    font-size: 46px;
    font-weight: 900;
    line-height: 63px;
    border-radius: 50%;
}

#bk_prof h3 span:nth-of-type(2) {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 32px */
}

#bk_prof figure {
    height: 284px;
    width: 100%;
    text-align: center;
    margin: 0 auto 55px;
}

#bk_prof figure img {
    display: block;
    margin: 0 auto;
    height: 100%;
    width: auto;
}

#bk_prof h4 {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: Poppins;
    font-size: 44px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    margin: 0 auto 16px;
}

#prof #box {
    display: flex;
    max-width: calc(640px);
    width: calc((100% - 24px * 2));
    padding: 48px 24px;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin: 0 auto 0;
    border-radius: 40px;
    border: 8px solid #FFAE00;
    background: #FFF;
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 170%;
}

#btn_back a {
    display: block;
    color: #563300;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 170%;
    padding: 56px;
    /* 30.6px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

#tit_thank01 {
    max-width: 530px;
    width: calc(100% - 24px * 2);
    margin: 0 auto 32px;
}

#tit_thank02 {
    margin: 0 auto 8px !important;
}

#tit_thank03 {
    color: #E95532;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
    /* 47.6px */
    margin: 0 auto 56px !important;
}

#fig_thank {
    margin: 0 auto 80px !important;
}

#bk_prof.bk_prof_th {
    margin: 0 auto 80px !important;
}

#shear {
    padding-bottom: 120px;
    margin-top: -80px;
}

#tit_shear {
    max-width: 697px;
    margin: 60px auto 60px;
}

#txt_shear {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
    margin: 0 auto 76px;
}

#btn_shear a {
    display: flex;
    /* 親要素をFlexコンテナにする */
    flex-wrap: wrap;
    max-width: 460px;
    width: calc(100% - 24px * 2);
    padding: 15px 40px;
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    gap: 10px;
    /* アイコンとテキストの間隔 */
    border-radius: 40px;
    border: 5px solid #FFF;
    background: #EF8200;
    box-shadow: 6px 6px 0px 0px #FFF;
    transition: .3s;
    margin: 0 auto 60px;
}

#btn_shear a:hover {
    box-shadow: 0px 0px 0px 0px #FFF;
    transform: translateX(6px) translateY(6px);
    -webkit-transform: translateX(6px) translateY(6px);
}

#btn_shear i {
    display: flex;
    width: 32px;
    height: 32px;
}

#btn_shear i img {
    width: 100%;
    height: auto;
}

#btn_shear span {
    display: flex;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 30px */
}

#shear_step {
    margin: 0 auto 60px;
}

@media screen and (max-width:1090px) {
    #nav_page h1 {
        max-width: 155px;
        position: static;
        left: auto;
        top: auto;
        margin: 0 auto 16px;
    }

    #nav_page h2 {
        max-width: 446px;
        width: calc(100% - 24px * 2);
        margin: 0 auto;
    }
}

@media screen and (max-width:640px) {
    #prof {
        background: var(--color-primary-yellow) url(../img/bk_page.png) no-repeat center bottom;
        background-size: contain;
        padding: 24px 0 0;
        position: relative;
    }

    #bk_o {
        background: #FFBF00;
        padding-top: 32px;
    }

    #nav_page h1 {
        max-width: 94px;
        margin: 0 auto 16px;
        position: relative;
        z-index: 10;
    }

    #nav_page h2 {
        max-width: 446px;
        width: calc(100% - 24px * 2);
        margin: 0 auto 16px;
        position: relative;
        z-index: 10;
    }

    #bk_prof {
        max-width: 100%x;
        height: auto;
        background: none;
        margin: 0 auto;
        padding: 0;
    }


    #bk_prof h3 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin: 0 auto -8%;
        position: relative;
        z-index: 10;
    }

    #bk_prof h3 span {
        display: flex;
        flex-direction: column;
    }

    #bk_prof h3 span:nth-of-type(1) {
        width: 63px;
        height: 63px;
        background: #000;
        color: #FFF;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: Poppins;
        font-size: 46px;
        font-weight: 900;
        line-height: 63px;
        border-radius: 50%;
    }

    #bk_prof h3 span:nth-of-type(2) {
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 32px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 32px */
    }

    #bk_prof figure {
        height: auto;
        width: 100%;
        text-align: center;
        margin: 0 auto -24%;
        display: block;
    }

    #bk_prof figure img {
        display: block;
        margin: 0 auto;
        height: auto;
        width: 100%;
    }

    #bk_prof h4 {
        font-size: 54px;
        margin: 0 auto 16px;
    }

    #prof #box {
        display: flex;
        max-width: 100%;
        width: 345px;
        padding: 36px 6px;
        justify-content: center;
        align-items: center;
        gap: 36px;
        border-radius: 30px;
        border: 6px solid #FFAE00;
        background: #FFF;
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 15px;
        font-style: normal;
        font-weight: 900;
        line-height: 170%;
        /* 25.5px */
        position: relative;
        z-index: 10;
    }

    #btn_back a {
        display: block;
        color: #563300;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 170%;
        padding: 56px;
        /* 30.6px */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    #tit_thank01 {
        max-width: 530px;
        width: calc(100% - 32px * 2);
        margin: 0 auto -4%;
        position: relative;
        z-index: 10;
    }

    #tit_thank02 {
        margin: 0 auto 16px !important;
    }

    #tit_thank03 {
        font-size: 26px;
        /* 47.6px */
        margin: 0 auto 32px !important;
    }

    #fig_thank {
        margin: 0 auto -24% !important;
    }

    #bk_prof.bk_prof_th {
        margin: 0 auto 16px !important;
    }


    #shear {
        padding-bottom: 96px;
        margin-top: -64px;
    }

    #tit_shear {
        max-width: 697px;
        margin: 60px auto 24px;
    }

    #txt_shear {
        font-size: 20px;
        margin: 0 auto 32px;
    }

    #btn_shear a {
        display: flex;
        /* 親要素をFlexコンテナにする */
        flex-wrap: wrap;
        max-width: 460px;
        width: calc(100% - 24px * 2);
        padding: 15px 40px;
        justify-content: center;
        /* 水平方向の中央揃え */
        align-items: center;
        /* 垂直方向の中央揃え */
        gap: 10px;
        /* アイコンとテキストの間隔 */
        border-radius: 40px;
        border: 5px solid #FFF;
        background: #EF8200;
        box-shadow: 6px 6px 0px 0px #FFF;
        transition: .3s;
        margin: 0 auto 32px;
    }

    #btn_shear a:hover {
        box-shadow: 0px 0px 0px 0px #FFF;
        transform: translateX(6px) translateY(6px);
        -webkit-transform: translateX(6px) translateY(6px);
    }

    #btn_shear i {
        display: flex;
        width: 26px;
        height: 26px;
    }

    #btn_shear i img {
        width: 100%;
        height: auto;
    }

    #btn_shear span {
        display: flex;
        color: #FFF;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 25px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 30px */
    }

    #shear_step {
        margin: 0 auto 32px;
    }

    #shear #details02.box03 {
        margin: 0 auto 32px !important;
    }
}


/*footer
================================================*/
#footer {
    padding: 40px 10px;
    background: var(--color-white);
}

#footer .inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-black);
}

#footer ul {
    margin: 0 auto 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
}

#footer ul li {
    display: flex;
    flex-direction: column;
    margin: 0 0 40px;
}

#footer li img {
    height: 50px;
    width: auto;
}

#footer div {
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    padding: 16px 0;
    margin: 0 0 16px;
}

#footer div p:nth-of-type(1) {
    margin: 0 0 16px;
    font-size: 14px;
}

#footer div p:nth-of-type(2) {
    font-size: 12px;
}

#footer .inner>p {
    font-size: 12px;
}

.txt_sp {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: 170%;
    /* 57.8px */
}

@media screen and (max-width: 670px) {
    .txt_sp {
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 25.5px;
        font-style: normal;
        font-weight: 900;
        line-height: 170%;
        /* 43.35px */
    }
}

.list_result {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 996px;
    width: 100%;
    margin: 0 auto 56px;
}

.list_result>li {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18.523px;
    border-radius: 18.523px;
    border: 4.631px solid #FFC342;
    background: #FFF;
}

.list_result>li>figure {
    display: flex;
    height: 118px;
    width: 100%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.list_result>li>figure img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}


.list_result>li>p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8.233px;
    align-self: stretch;
}

.list_result>li>p>span:nth-of-type(1) {
    width: 32.416px;
    height: 32.416px;
    flex-shrink: 0;
    background: #563300;
    border-radius: 100%;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: Poppins;
    font-size: 23.669px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 23.669px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_result>li>p>span:nth-of-type(2) {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 21.61px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 21.61px */
}

@media screen and (max-width: 1100px) {
    .list_result {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .list_result>li {
        width: calc((100% - 32px) / 3);
        min-width: 200px;
    }
}

@media screen and (max-width: 640px) {
    .list_result {
        gap: 12px;
    }

    .list_result>li {
        border-radius: 16.671px;
        border: 4.168px solid #FFC342;
        background: #FFF;
        width: calc((100% - 12px) / 2);
        min-width: 140px;
    }


    .list_result>li>p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8.233px;
        align-self: stretch;
    }

    .list_result>li>p>span:nth-of-type(1) {
        width: 29.174px;
        height: 29.174px;
        flex-shrink: 0;
        background: #563300;
        border-radius: 100%;
        color: #FFF;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: Poppins;
        font-size: 21.302px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 21.302px */
        /* 23.669px */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list_result>li>p>span:nth-of-type(2) {
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 19.449px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 19.449px */
        /* 21.61px */
    }
}

@media screen and (max-width: 420px) {
    .list_result>li>p>span:nth-of-type(1) {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    .list_result>li>p>span:nth-of-type(2) {
        font-size: 16px;
    }
}

#result {
    background: url(../img/bk_result.png) no-repeat center top 90px;
    background-size: auto;
    padding: 90px 0 0;
    position: relative;
}

.list_top3 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 50px;
    max-width: 920px;
    width: 100%;
    margin: 0 auto 116px;
}

.list_top3>li {
    background: url(../img/bk_top3.png) no-repeat center center;
    background-size: contain;

}

.list_top3>li:nth-child(1) {
    order: 2;
    width: 35%;
}

.list_top3>li:nth-child(2) {
    order: 1;
}

.list_top3>li:nth-child(3) {
    order: 3;
}

.list_top3>li:nth-child(2),
.list_top3>li:nth-child(3) {
    width: calc((100% - 35% - 100px) / 2);
    transform: translateY(60px);
}

.list_top3>li h3 {
    text-align: center;
    margin-bottom: 21px;
}

.list_top3>li h3 span:nth-of-type(1),
.list_top3>li h3 span:nth-of-type(3) {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 55.573px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 55.573px */
}

.list_top3>li h3 span:nth-of-type(2) {
    color: #563300;
    font-feature-settings: 'palt' on;
    font-family: Poppins;
    font-size: 104px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
}

.list_top3>li figure {
    margin-bottom: 60px;
}

.list_top3>li:nth-child(1) figure {
    height: 284px;
    width: 100%;
}

.list_top3>li:nth-child(2) figure,
.list_top3>li:nth-child(3) figure {
    height: 211px;
    width: 100%;
}

.list_top3>li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.list_top3>li .info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 11px;
}

.list_top3>li .info span:nth-of-type(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 63px;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: Poppins;
    font-size: 46px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    border-radius: 100%;
    /* 46px */
}


.list_top3>li .info span:nth-of-type(2) {
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 42px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 42px */
}

.list_top3>li .hyo {
    display: flex;
    max-width: 140px;
    width: 100%;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 3px solid #563300;
    background: #FFF;
    gap: 8px;
    color: #563300;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: "Noto Sans JP";
    font-size: 25.422px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    margin: 0 auto;
    /* 25.422px */
}

.list_top3>li h4 {
    display: none;
}

@media screen and (max-width: 960px) {
    .list_top3 {
        display: block;
    }

    .list_top3>li:nth-child(1) {
        order: 1;
        margin-bottom: -16px !important;
    }

    .list_top3>li:nth-child(2) {
        order: 2;
        margin-bottom: 32px !important;
    }

    .list_top3>li:nth-child(3) {
        order: 3;
    }

    .list_top3>li:nth-child(1),
    .list_top3>li:nth-child(2),
    .list_top3>li:nth-child(3) {
        display: block;
        width: 100%;
        max-width: 328px;
        margin: 0 auto;
    }

    .list_top3>li:nth-child(2),
    .list_top3>li:nth-child(3) {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0px;
        background-position: left bottom;
    }

    .list_top3>li:nth-of-type(2) h3,
    .list_top3>li:nth-of-type(3) h3 {
        display: none;
    }

    .list_top3>li h4 {
        display: block;
        text-align: center;
    }

    .list_top3>li h4 span:nth-of-type(1),
    .list_top3>li h4 span:nth-of-type(3) {
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 30.989px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 30.989px */
    }

    .list_top3>li h4 span:nth-of-type(2) {
        color: #563300;
        font-feature-settings: 'palt' on;
        font-family: Poppins;
        font-size: 63.92px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
    }


    .list_top3>li:nth-child(2) div:nth-of-type(1),
    .list_top3>li:nth-child(3) div:nth-of-type(1) {
        display: flex;
        width: 45%;
    }

    .list_top3>li:nth-child(2) div:nth-of-type(2),
    .list_top3>li:nth-child(3) div:nth-of-type(2) {
        display: flex;
        flex-direction: column;
        width: 55%;
    }


    .list_top3>li .info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10.88px;
        margin-bottom: 12px;
    }

    .list_top3>li .info span:nth-of-type(1) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42.84px;
        height: 42.84px;
        flex-shrink: 0;
        color: #FFF;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: Poppins;
        font-size: 31.28px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 31.28px */
        border-radius: 100%;
        /* 46px */
    }


    .list_top3>li .info span:nth-of-type(2) {
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 28.56px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 28.56px */
        /* 42px */
    }


    .list_top3>li:nth-of-type(2) .hyo,
    .list_top3>li:nth-of-type(3) .hyo {
        display: flex;
        width: 140px;
        padding: 8px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        border: 3px solid #563300;
        background: #FFF;
        color: #563300;
        text-align: center;
        font-feature-settings: 'palt' on;
        font-family: "Noto Sans JP";
        font-size: 25.422px;
        font-style: normal;
        font-weight: 900;
        line-height: 100%;
        /* 25.422px */
    }

    .list_top3>li:nth-child(2) figure,
    .list_top3>li:nth-child(3) figure {
        height: 169px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        padding-bottom: 24px;
    }

    .list_top3>li:nth-child(2) figure img,
    .list_top3>li:nth-child(3) figure img {
        display: flex;
        align-items: start;
        transform: translateX(10%);
    }

}

@media screen and (max-width: 640px) {
    #result {
        background: url(../img/bk_result_s.png) no-repeat center top 90px;
        background-size: 100% auto;
    }
}




/* ========================================
   ユーティリティクラス（Utility）
   ======================================== */

@media screen and (min-width:1000px) {}

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

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --- レイアウト --- */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

/* --- テキスト関連 --- */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.font-bold {
    font-weight: bold;
}

.font-normal {
    font-weight: normal;
}

/* --- マージン（例：10px, 20px, 40px） --- */
.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

/* --- パディング（例） --- */
.pt-10 {
    padding-top: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

/* --- レスポンシブ表示切替 --- */
@media (min-width: 641px) {

    /* PCの開始幅 */
    .sp-only {
        display: none !important;
    }
}

@media (max-width: 640px) {

    /* SPの終了幅 */
    .pc-only {
        display: none !important;
    }
}