/*アニメーション*/
/* =========================
   ファーストビュー
========================= */
.fv {
    position: relative;
}

/* メイン画像 */
.fv_pc,.fv_sp {
   
    /* ページ表示後すぐにポンッと出現 */
    animation: fvMainPop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}

/* サブ文言 */
.fv_sub {
    position: absolute;

    /*
     * 既存の配置指定がある場合は、
     * top / left / width などはそのまま残してください
     */

    z-index: 2;

    /*
     * 最初は小さくして、
     * 少し下側・奥側に隠しておく
     */
    opacity: 0;

    /*
     * 下側を起点にして上方向へ伸びる
     */
    transform-origin: center bottom;

    transform:
        translateY(80px)
        scaleX(0.45)
        scaleY(0.15);

    /*
     * 0.5秒待ってから、
     * にゅーんと伸びて出現
     */
    animation:
        fvSubStretch 1s
        cubic-bezier(0.22, 1.35, 0.36, 1)
        0.85s
        forwards;
}


/* =========================
   メイン画像：ポンッと登場
========================= */
@keyframes fvMainPop {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    65% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fvSubStretch {
    0% {
        opacity: 0;

        transform:
            translate3d(0, 55px, 0)
            scale3d(0.72, 0.3, 1);
    }

    60% {
        opacity: 1;

        transform:
            translate3d(0, -4px, 0)
            scale3d(0.98, 1.04, 1);
    }

    100% {
        opacity: 1;

        transform:
            translate3d(0, 0, 0)
            scale3d(1, 1, 1);
    }
}



/* 動きを減らす設定の端末ではアニメーションを無効化 */
@media (prefers-reduced-motion: reduce) {
    .fv_pc,
    .fv_sub {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/*ヘッダーここから*/

.fixed-header{
    display:flex;
    flex-direction: column;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1800px;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.fixed-header.is-show{
    opacity: 1;
    visibility: visible;
    
}

.fixed-header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    gap: 25px;
}
.header-inner-right
{
    display:flex;
}
.header-inner-left
{
    width:25%;
    max-width:300px;
    padding:15px 0 15px 50px;
    box-sizing: border-box;
}
.fixed-header-logo{
    display:flex;
    
    
}

.fixed-header-logo img{
    max-width:100%;
}

.fixed-header-fontsize{
    text-align: center;
    width:15%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fontsize-btns{
    display: flex;
    gap: 5px;
    margin-top: 5px;
    justify-content: center;
}

.fontsize-btns button{
    border: 0;    
    background: #efefef;
    width:35%;
    aspect-ratio: 6 / 3;
}
.fontsize-btns .is-normal{
    border-radius: 20px 0 0 20px;
    background: #D8E9DB;
    color: #333;
}
.fontsize-btns .is-large{
    border-radius: 0 20px 20px 0;
    background: #7DC749;
    color: #fff;
}
.fixed-header-nav
{
    width:65%;
    height: 80px;
    margin:10px 0;
}
.fixed-header-nav ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
.fixed-header-nav li {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}

/* 最後のシミュレーションだけ広くする */
.fixed-header-nav li:last-child {
    flex: 1.8;
}
.fixed-header-nav li:before
{
    content:"";
    width:2px;
    height:100%;
    background: linear-gradient(
        0deg,
        #257E95 0%,
        #77BC50 100%
    );
    position: absolute;
    left:0;
}
.fixed-header-nav a{
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 700;
}

.fixed-header-contact{
    min-width: 220px;
    width:20%;
    height:100px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;

    background: linear-gradient(
        90deg,
        #257E95 0%,
        #77BC50 100%
    );
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-inner-right
{
    width:65%;
    height: 100%;
    min-width:880px;
}
.header-menu-sp {
    display: none;
}
@media (max-width: 1200px){
/* */
.fixed-header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    z-index: 9999;
}

.fixed-header-inner {
    position: relative;
    padding: 10px 15px;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.header-inner-left {
    position: relative;
    z-index: 10003;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    max-width: none;
}

.fixed-header-logo {
    width: 180px;
    z-index: 10003;
}

.fixed-header-logo img {
    width: 100%;
    display: block;
}

.hamburger {
    position: relative;
    z-index: 10004;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 60px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg, #257E95 0%, #77BC50 100%);
    line-height: 0.5;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: .3s;
}

.hamburger.is-open {
    background: none;
    color: #333;
}

.hamburger.is-open span {
    background: #333;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* PC繝｡繝九Η繝ｼ縺ｯSP縺ｧ髱櫁｡ｨ遉ｺ */
.header-menu-pc {
    display: none;
}

/* SP繝｡繝九Η繝ｼ */
.header-menu-sp {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    padding: 90px 28px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #ddff98;
    z-index: 10001;
    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.header-menu-sp.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-menu-sp > * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease;
}

.header-menu-sp.is-open > * {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .25s;
}

.header-menu-sp .fixed-header-nav,
.header-menu-sp .menu-small-buttons,
.header-menu-sp .menu-simulation,
.header-menu-sp .fixed-header-contact {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: fit-content;
}

.header-menu-sp .fixed-header-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu-sp .fixed-header-nav li {
    border-bottom: 2px dashed #f5c400;
}

.header-menu-sp .fixed-header-nav li::before {
    content: none;
}

.header-menu-sp .fixed-header-nav a {
    display: block;
    padding: 16px 0;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

.menu-small-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.menu-small-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    text-decoration: none;
}

.menu-simulation,
.header-menu-sp .fixed-header-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 16px 0 24px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
}

.menu-simulation {
    background: linear-gradient(90deg, #3187bd 0%, #77bc50 100%);
    box-shadow: 0 6px 0 rgba(90, 160, 80, .35);
}

.header-menu-sp .fixed-header-contact {
    background: #ffc400;
    box-shadow: 0 6px 0 rgba(230, 160, 0, .35);
}

.menu-simulation::after,
.header-menu-sp .fixed-header-contact::after {
    content: "→";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #fff;
    border-radius: 50%;
}
      .header-inner-right
        {
            min-width:0;
        }
}

/*ヘッダーここまで*/


.fixed-header
{
    opacity: 1;
    visibility: visible;
}
body
{
    background-image: url(../images/20261011/bg_70.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Zen Kaku Gothic New","Noto Sans JP", sans-serif;
}

body::before
{
    content: none;
}

@supports (-webkit-touch-callout: none) {
    body
    {
        position: relative;
        background-image: none;
        background-attachment: scroll;
    }

    body::before
    {
        content: "";
        position: fixed;
        inset: 0;
        background-image: url(../images/20261011/bg_70.jpg);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        pointer-events: none;
        z-index: 0;
    }

    .seminar-20261011
    {
        position: relative;
        z-index: 1;
    }
}
.seminar-20261011
{
    width: 100%;
    max-width: none;
    margin: 0;
}
.seminar-20261011 section
{
    padding-left: 0;
    padding-right: 0;
}
.seminar-20261011 .fv_inner,
.seminar-20261011 .detail > *,
.seminar-20261011 .quest-section-inner,
.seminar-20261011 > section > h2
{
    width: min(90%, 1100px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    
    
}
section
{
    margin: 0;
    padding: 50px 5%;
    box-sizing: border-box;
    background-color: #f2f5cb;
    position: relative;
}
.sec-inner
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:90%;
    max-width: 1100px;
    margin: 0 auto;
}
section h2
{
     color: unset;
     margin-bottom: 0;
}
section h2>strong
{
     color: unset;
     font-size: 1.25em;
     color: #c93e4e;
     
}
.lower-page-inner
{
    padding: 0;
}
.fv
{
    line-height: 0;
/*    height: calc(100vh - 180px );*/
    max-height: calc(1080px - 180px );
    margin-top: 180px;
    position: relative;
    
}
.fv_inner
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 130px 0 50px;
    box-sizing: border-box;
    position: relative;
}
.fv_pc
{
    width:100%;
    z-index: 10;
}
.fv_sub
{
    position: absolute;
    top: -5%;
    left: 0;
    width:50%;
}
.fv:after
{
    content: "";
    width: 100vw;
    height: 100px;
    background-image: url(../images/20261011/fv_after_1.png); 
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -1px;
}
.fv_after
{
    position: absolute;
    bottom: 0;
    left: 0;
    width:50%;
}

.place
{
    width:100%;
    max-width: 900px;
    margin: 0 auto;
}
.place_after
{
    width:20%;
/*    max-width: 800px;
    min-width: 500px;*/
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    font-size: 1.4em;
}
.place_after img {
    width:100%;
}

.place_after>div
{
/*    width:100%;*/
    background: linear-gradient(
    to bottom,
    #3B2A5A 0%,
    #3B2A5A 45%,
    #46295d 100%
);
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.3em;
    padding:  10px;
    
}
.place_after>div>p
{
    margin: 0;
}
.place_after>div> p:last-child {
    font-size: 1.6em;
    margin-left: 20px;
    line-height: 1;
    position: relative;
    top: -2px;
}
.download {
    min-height: 88px;
    margin: 30px auto;
    padding: 12px 65px 12px 40px;
    box-sizing: border-box;
    max-width: 600px;
    width:90%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    color: #fff;
    background: linear-gradient(
        180deg,
        #ff811c 0%,
        #f56a08 55%,
        #ee6200 100%
    );

    border: 4px solid #fff;
    border-radius: 50px;
    box-shadow:
        0 3px 0 rgba(131, 77, 22, 0.55),
        0 5px 8px rgba(0, 0, 0, 0.25);

    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}
.download i {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);

    font-size: 28px;
    color: #fff;
}

/* ========================================
   スペシャルセミナー
======================================== */
.special-seminar
{
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.headline>h5
{
    background-image: url(../images/20261011/guest_bg.png);
    width:100%;
    max-width: 250px;
    padding: 20px;
    box-sizing: border-box;
    aspect-ratio: 36/11;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2em;
    margin: 0 auto;
}
.headline>h2
{
    
    font-size: 2.25em;
    text-align: center;
    margin: 0 auto;
    color: #000000;
    border-bottom: 1px solid #d85c54;
}
.headline>p
{
    font-size: 2em;
    margin: 0 auto;
    color: #d85c54;
    width:fit-content;
}
.description
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.description>img
{
    width:100%;
    max-width: 500px;
}
.description>h3
{
    text-align: center;
    color: #d85c54;
    font-size: 2.25em;
    margin: 0;
}
.description>h3 .aban
{
    font-size: 0.5em;
    color: #000000;

}
.description>h3 .border
{
    
    display: flex;
    flex-direction: column;
    border-top:  2px solid #d85c54;
    border-bottom:  2px solid #d85c54;
    margin: 10px 0 5px;    
}
.description>p
{
    margin: 0;
}
.guest-intro
{
    display: flex;
    align-items: stretch;
    gap: 25px;
}
.guest-intro > img
{
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
}
.guest-intro-text
{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.guest-intro-text > h3 {
    margin: 0;
    font-size: 1.25em;
    position: relative;
    padding-bottom: 10px;
}

.guest-intro-text > h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;

    background-image: radial-gradient(circle, #f6ca46 1.5px, transparent 1.6px);
    background-size: 10px 4px;
    background-repeat: repeat-x;
    background-position: left center;
}
.guest-intro-text div
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.guest-intro-text div>*
{
    margin: 0;
}
.guest-intro-text div>h5
{
    font-size: 1.25em;
}
.guest-intro-text div>h5>span
{
    font-weight: bolder;
    margin-left: 10px;
}
.guest-intro-text div>p
{
    line-height: 1.6;
}
/* ========================================
   4つのクエスト
======================================== */

.quest-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(31, 71, 126, 0.7) 0,
            rgba(7, 35, 73, 0) 48%
        ),
        linear-gradient(
            135deg,
            #071d3c 0%,
            #0b2b57 50%,
            #061934 100%
        );
}

/* 背景の細かな模様 */
.quest-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08) 0,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px,
            transparent 7px
        );
}

.quest-section-inner {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    
}


/* 見出し */
.quest-heading {
    margin: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    color: #fff;
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-align: center;
}
.quest-title
{
    color: #c93e4e;
    font-size: 1.35em;
}
.quest-speaker
{
    font-size: 1.35em;
}
.quest-heading-icon {
    margin-right: 14px;
    color: #f5bb31;
    font-size: 0.9em;
    transform: rotate(-12deg);
}

.quest-heading-number {
    color: #f9c634;
}

.quest-heading strong {
    margin-left: 0.1em;
    color: #e84b3f;
    font-size: 1.08em;
    -webkit-text-stroke: 1px #fff;
    paint-order: stroke fill;
}


/* カード一覧 */
.quest-list {
    display: grid;
    gap: 25px;
}


/* 各カード */
.quest-card {
    padding: 30px 28px 20px 135px;
    box-sizing: border-box;

    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #fffdf8 0%,
            #f8f2e6 100%
        );

    border: 5px solid #f6ad3c;
}

/* カード内側の装飾線 */
.quest-card::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(180, 139, 61, 0.35);
    border-radius: 3px;
    pointer-events: none;
}


/* STEPリボン */
.quest-step {
    width: 80px;
    padding: 13px 8px 18px;
    box-sizing: border-box;
    position: absolute;
    top: -5px;
    left: 25px;
    z-index: 3;
    color: #fff;
    background:
        linear-gradient(
            135deg,
             #c93e4e 0%,
            #c93e4e 100%
        );

    text-align: center;
    filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.25));
}

.quest-step::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;

    border-left: 40px solid #c93e4e;
    border-right: 40px solid #c93e4e;
    border-bottom: 15px solid transparent;
    z-index: -1;
}

.quest-step span {
    display: block;
    position: relative;
    z-index: 1;

    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.quest-step strong {
    display: block;
    margin-top: 3px;
    position: relative;
    z-index: 1;

    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}


/* テキスト部分 */
.quest-card-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.quest-time {
    width: fit-content;
    min-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3d2f3c;
    background:
        linear-gradient(
            135deg,
             #f6ad3c 0%,
             #e09600 30%,
            #f7d39f 60%,
            #f6ad3c 100%
        );
    border: 1px solid #d5cbb8;

    font-size: 1.35em;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.double-border-text {
	position: relative;
	font-weight: bold;
	color: #f6ca46;
}

.double-border-text::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	color: #f6ca46;
}

/* イラスト */
.quest-image {
    position: absolute;
    right: 15px;
    bottom: 10px;
    z-index: 1;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.quest-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.quest-image--speaker {
    width: 110px;
    left: 12px;
    right: auto;
    bottom: 6px;
}

.quest-image--quiz {
    width: 145px;
    right: 12px;
    top: 20px;
    bottom: auto;
}

.quest-image--treasure {
    width: 145px;
    left: 5px;
    right: auto;
    bottom: 0;
}

.quest-image--house {
    width: 180px;
    right: 4px;
    bottom: 0;
}

.quest-wrap
{
    display: flex;
    gap: 15px;
}
.quest-wrap>img
{
    height: 3.5em;
}
.soudan-wrap
{
    background-color: unset;
}
/*相談コーナー*/
div.soudan
{
    width: 100%;
    margin: 0 auto;
    border: 5px solid #f6ad3c;
    color: #3d2f3c;
    padding: 50px 0;
    position: relative;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f6ad3c 0%, #e09600 30%, #f7d39f 60%, #f6ad3c 100%);
}
div.soudan > div,
div.soudan > ul
{
    width: 85%;
    margin: 0 auto;
}
div.soudan h3
{
    color: #3d2f3c;
    font-size: 2.5em;
    text-align: center;
    margin: 0;
}
div.soudan h3 span
{
    font-size: 30px;
    padding: 0 5px;
}
div.soudan p
{
    padding-bottom: 20px;
    border-bottom: 4px dotted #774a2c;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
}
div.soudan h4
{
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 600;
    padding-top: 20px;
    font-size: 26px;
    line-height: 30px;
}
div.soudan h4 span.bg
{
    background: #774a2c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px 0 10px 0;
    font-size: 20px;
    margin-right: 10px;
    letter-spacing: 1px;
}
div.soudan h4 span.thin
{
    font-weight: 400;
    font-size: 16px;
    position: relative;
    /* bottom: -5px; */
}

.limited
{
    width:100%;
    display: flex;
    justify-content: flex-end;
}
.limited>img
{
    width:50%;
    max-width:150px;
}
@media screen and (min-width: 950px){
    .limited
    {
            position: absolute;
                bottom: 0;
    }
}

@media screen and (min-width: 769px) {
    .download:hover {
        color: #fff;
        filter: brightness(1.08);
        transform: translateY(-2px);
        box-shadow:
            0 5px 0 rgba(131, 77, 22, 0.55),
            0 8px 12px rgba(0, 0, 0, 0.25);
    }

    .download:active {
        transform: translateY(2px);
        box-shadow:
            0 1px 0 rgba(131, 77, 22, 0.55),
            0 3px 5px rgba(0, 0, 0, 0.2);
    }
    
}
@media screen and (max-width: 1200px) {
    .fv
    {
        max-height: 100vh;
        height: 100vh;
        margin-top: 50px;
    }
    .fv_inner
    {
        max-width: 750px;
        position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 768px) {
    main
    {
        padding-top: 50px;
    }
    .download {
        width: 90%;
        min-height: 64px;
        padding: 10px 52px 10px 25px;
        border-width: 3px;
        font-size: 20px;
    }

    .download i {
        right: 22px;
        font-size: 22px;
    }
    .fv
    {
        margin-top: 0;
    }
    .fv_sp
    {
        max-width: 100%;
        z-index: 10;
    }
    .fv_sub
    {
        width:70%;
        top: -2%;
    }
    .fv_inner
    {
        padding: 120px 0 50px;
        max-width: 500px;
        
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
    }
    .fv:after
    {
            background-image: url(../images/20261011/fv_after_sp.svg);
                background-size: contain;
            background-repeat: repeat-x;
            background-position: center;
            position: absolute;
            bottom: -1px;
    }
    
    .place_after
    {
        width: 35%;
        margin-top: 15px;
        min-width: auto;
/*        flex-direction: column;
        gap: 15px;*/
    }
    .place_after>div
    {
        border-radius: 10px;
        padding: 5px;
        font-size: 4vw;
    }
    .place_after>div>p {
        line-height: 1;
    }
    .place_after>div>p:last-child {
        font-size: 5vw;
/*        top: 0;*/
        margin-left: 10px;
    }
    .headline>h5
    {
        max-width: 200px;
        font-size: 1.25em;
    }
    .headline>h2
    {
        font-size: 2em;
    }
    .description>p.sp
    {
        text-align: center;
    }
    .description>h3
    {
        margin-top: -25px;
        text-align: left;
        font-size: 1.3em;
    }
     .guest-intro
    {
        flex-direction: column;
        align-items: center;
    }

    .guest-intro > img
    {
        width: 100%;
        max-width: 150px;
        height: auto;
    }
    .guest-intro-text
    {
        width:100%;
    }
    .quest-wrap
    {
        flex-direction: column;
    }
    .quest-card
    {
      padding: 100px 5% 5%;
      box-sizing: border-box;
    }
    
    div.soudan h3
    {
        font-size: 1.5em;
    }
    .quest-label
    {
        height: 2.5em;
        position: absolute;
        top: 5%;
        right: 5%;
    }
    .quest-step
    {
        width:70px;
    }
    .quest-step span
    {
        font-size: 0.8em;
    }
    .quest-step strong
    {
        font-size: 2em;
    }
    .quest-step::after
    {
        bottom: -12px;
        border-left: 35px solid #c93e4e;
        border-right: 35px solid #c93e4e;
        border-bottom: 12px solid transparent;
    }
    .quest-description{
        word-break: break-all;
    }
}


