@charset "utf-8";
/* -----------------------------------------
common.css
サイト共通設定用css

＜class名ルール＞
このファイルで使用するclassには以下の接頭語を付加する。
（他のcssファイルでは不要）
・汎用クラス、モジュール：「.c_xxx」（common）
・フレームモジュール：「.f_xxx」（frame）
・モジュール：「.m_xxx」（module）
・モジュール内のパーツ：「.p_xxx」（parts）
・モジュールの状態：「.s_xxx」（state）
※JSのみで使用：「.js_xxx」
----------------------------------------- */


/* reset
----------------------------------------- */

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,input,textarea,table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,
menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0px;
    padding: 0px;
}

h1,h2,h3,h4,h5,h6,th,input,textarea,select {
    font-family: inherit;
    font-size: 100%;
    font-weight: normal;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

table,th,td {
    text-align: left;
    border: none;
}

ol,ul,li {
    list-style: none;
}

img {
    border: none;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
    color: inherit;
    font-family: inherit;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
}

select::-ms-expand{
    display:none;
}

/* 初期設定
----------------------------------------- */

html {
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    min-width: 320px;
    text-align: left;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, Osaka, "ＭＳ Ｐゴシック", MS PGothic, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    font-feature-settings: "palt";
    color: #222;
    line-height: 1.3;
    -webkit-text-size-adjust: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.57;
}

em, strong {
    font-weight: bold;
}

sub, sup {
    white-space: nowrap;
}

div::after {
    display: inline-block;
    height: auto;
    visibility: visible;
}

*,
*:before,
*:after{
    box-sizing: border-box;
}
/* 汎用クラス
----------------------------------------- */

.c_fontL  { font-size: 1.6rem !important; }
.c_fontLL { font-size: 1.8rem !important; }
.c_fontXL { font-size: 2.0rem !important; }
.c_fontM { font-size: 1.4rem !important; }
.c_fontS  { font-size: 1.2rem !important; }
.c_fontSS  { font-size: 1.1rem !important; }
.c_fontXS { font-size: 1.0rem !important; }
.c_fontXXS { font-size: 0.9rem !important; }

.c_fontBold { font-weight: bold !important; }
.c_fontNormal { font-weight: normal !important; }
.c_colorRed { color: #cc0000 !important; }
.c_colorBk  { color: #333333 !important; }
.c_colorGr  { color: #379000 !important; }
.c_colorWh  { color: #ffffff !important; }
.c_colorBlue { color: rgb(0,112,192) !important; }

.c_clearfix { zoom: 1; }
.c_clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0.01px;
}
.c_floatL { float: left; }
.c_floatR { float: right; }
.c_ofHidden { overflow: hidden; }

.c_taLeft { text-align: left !important; }
.c_taCenter { text-align: center !important; }
.c_taRight { text-align: right !important; }
@media screen and (max-width: 767px){
    .c_spTaLeft { text-align: left !important; }
    .c_spTaCenter { text-align: center !important; }
    .c_spTaRight { text-align: right !important; }
}

.c_tdNon { text-decoration: none !important; }
.c_tdUnder { text-decoration: underline !important; }
.c_tdOver { text-decoration: line-through !important; }

.c_vaTop { vertical-align: top !important; }
.c_vaMdl { vertical-align: middle !important; }
.c_vaBtm { vertical-align: bottom !important; }

.c_bder0  { border-width: 0 !important; }
.c_bderT0 { border-top-width: 0 !important; }
.c_bderL0 { border-left-width: 0 !important; }
.c_bderR0 { border-right-width: 0 !important; }
.c_bderB0 { border-bottom-width: 0 !important; }

.c_bgWh { background-color: #fff !important; }
.c_bgOr { background-color: #ef8715 !important; }
.c_bgYe { background-color: #ffffeb !important; }
.c_bgGy { background-color: #eee !important; }
.c_bgDk { background-color: #5a5a5a !important; }

.c_bgErr { background-color: #f4dcdc !important; }
.c_bgNone { background: none !important; }

.c_maxW500 { max-width: 500px;}
.c_minW320 { min-width: 320px;}

.c_borW3px { border-width: 3px !important; }

@media screen and (max-width: 767px){
    .c_spMinW767 { min-width: 767px;}
    .c_spMinW700 { min-width: 700px;}
    .c_spMinW600 { min-width: 600px;}
    .c_spMinW500 { min-width: 500px;}
    .c_spMinWauto { min-width: auto !important;}
    .c_spWauto { width: auto !important;}
    .c_spWliquid { width: 100% !important;}
}

.c_mt0  { margin-top:  0px !important; }
.c_mt3  { margin-top:  3px !important; }
.c_mt5  { margin-top:  5px !important; }
.c_mt10 { margin-top: 10px !important; }
.c_mt15 { margin-top: 15px !important; }
.c_mt20 { margin-top: 20px !important; }
.c_mt25 { margin-top: 25px !important; }
.c_mt30 { margin-top: 30px !important; }
.c_mt35 { margin-top: 35px !important; }
.c_mt40 { margin-top: 40px !important; }
.c_mt45 { margin-top: 45px !important; }
.c_mt50 { margin-top: 50px !important; }
.c_mt60 { margin-top: 60px !important; }
.c_mt70 { margin-top: 70px !important; }
.c_mt80 { margin-top: 80px !important; }
.c_mt90 { margin-top: 90px !important; }

.c_ml0  { margin-left:  0px !important; }
.c_ml3  { margin-left:  3px !important; }
.c_ml5  { margin-left:  5px !important; }
.c_ml10 { margin-left: 10px !important; }
.c_ml15 { margin-left: 15px !important; }
.c_ml20 { margin-left: 20px !important; }
.c_ml25 { margin-left: 25px !important; }
.c_ml30 { margin-left: 30px !important; }
.c_ml35 { margin-left: 35px !important; }
.c_ml40 { margin-left: 40px !important; }
.c_ml45 { margin-left: 45px !important; }
.c_ml50 { margin-left: 50px !important; }
.c_ml60 { margin-left: 60px !important; }
.c_ml70 { margin-left: 70px !important; }
.c_ml80 { margin-left: 80px !important; }
.c_ml90 { margin-left: 90px !important; }

.c_mr0  { margin-right:  0px !important; }
.c_mr3  { margin-right:  3px !important; }
.c_mr5  { margin-right:  5px !important; }
.c_mr10 { margin-right: 10px !important; }
.c_mr15 { margin-right: 15px !important; }
.c_mr20 { margin-right: 20px !important; }
.c_mr25 { margin-right: 25px !important; }
.c_mr30 { margin-right: 30px !important; }
.c_mr35 { margin-right: 35px !important; }
.c_mr40 { margin-right: 40px !important; }
.c_mr45 { margin-right: 45px !important; }
.c_mr50 { margin-right: 50px !important; }
.c_mr60 { margin-right: 60px !important; }
.c_mr70 { margin-right: 70px !important; }
.c_mr80 { margin-right: 80px !important; }
.c_mr90 { margin-right: 90px !important; }

.c_mb0  { margin-bottom:  0px !important; }
.c_mb3  { margin-bottom:  3px !important; }
.c_mb5  { margin-bottom:  5px !important; }
.c_mb10 { margin-bottom: 10px !important; }
.c_mb15 { margin-bottom: 15px !important; }
.c_mb20 { margin-bottom: 20px !important; }
.c_mb25 { margin-bottom: 25px !important; }
.c_mb30 { margin-bottom: 30px !important; }
.c_mb35 { margin-bottom: 35px !important; }
.c_mb40 { margin-bottom: 40px !important; }
.c_mb45 { margin-bottom: 45px !important; }
.c_mb50 { margin-bottom: 50px !important; }
.c_mb60 { margin-bottom: 60px !important; }
.c_mb70 { margin-bottom: 70px !important; }
.c_mb80 { margin-bottom: 80px !important; }
.c_mb90 { margin-bottom: 90px !important; }

@media screen and (max-width:767px) {
    .c_spMt0  { margin-top:  0px !important; }
    .c_spMt3  { margin-top:  3px !important; }
    .c_spMt5  { margin-top:  5px !important; }
    .c_spMt10 { margin-top: 10px !important; }
    .c_spMt15 { margin-top: 15px !important; }
    .c_spMt20 { margin-top: 20px !important; }
    .c_spMt25 { margin-top: 25px !important; }
    .c_spMt30 { margin-top: 30px !important; }
    .c_spMt35 { margin-top: 35px !important; }
    .c_spMt40 { margin-top: 40px !important; }
    .c_spMt45 { margin-top: 45px !important; }
    .c_spMt50 { margin-top: 50px !important; }
    .c_spMt60 { margin-top: 60px !important; }
    .c_spMt70 { margin-top: 70px !important; }
    .c_spMt80 { margin-top: 80px !important; }
    .c_spMt90 { margin-top: 90px !important; }

    .c_spMl0  { margin-left:  0px !important; }
    .c_spMl3  { margin-left:  3px !important; }
    .c_spMl5  { margin-left:  5px !important; }
    .c_spMl10 { margin-left: 10px !important; }
    .c_spMl15 { margin-left: 15px !important; }
    .c_spMl20 { margin-left: 20px !important; }
    .c_spMl25 { margin-left: 25px !important; }
    .c_spMl30 { margin-left: 30px !important; }
    .c_spMl35 { margin-left: 35px !important; }
    .c_spMl40 { margin-left: 40px !important; }
    .c_spMl45 { margin-left: 45px !important; }
    .c_spMl50 { margin-left: 50px !important; }
    .c_spMl60 { margin-left: 60px !important; }
    .c_spMl70 { margin-left: 70px !important; }
    .c_spMl80 { margin-left: 80px !important; }
    .c_spMl90 { margin-left: 90px !important; }

    .c_spMr0  { margin-right:  0px !important; }
    .c_spMr3  { margin-right:  3px !important; }
    .c_spMr5  { margin-right:  5px !important; }
    .c_spMr10 { margin-right: 10px !important; }
    .c_spMr15 { margin-right: 15px !important; }
    .c_spMr20 { margin-right: 20px !important; }
    .c_spMr25 { margin-right: 25px !important; }
    .c_spMr30 { margin-right: 30px !important; }
    .c_spMr35 { margin-right: 35px !important; }
    .c_spMr40 { margin-right: 40px !important; }
    .c_spMr45 { margin-right: 45px !important; }
    .c_spMr50 { margin-right: 50px !important; }
    .c_spMr60 { margin-right: 60px !important; }
    .c_spMr70 { margin-right: 70px !important; }
    .c_spMr80 { margin-right: 80px !important; }
    .c_spMr90 { margin-right: 90px !important; }

    .c_spMb0  { margin-bottom:  0px !important; }
    .c_spMb3  { margin-bottom:  3px !important; }
    .c_spMb5  { margin-bottom:  5px !important; }
    .c_spMb10 { margin-bottom: 10px !important; }
    .c_spMb15 { margin-bottom: 15px !important; }
    .c_spMb20 { margin-bottom: 20px !important; }
    .c_spMb25 { margin-bottom: 25px !important; }
    .c_spMb30 { margin-bottom: 30px !important; }
    .c_spMb35 { margin-bottom: 35px !important; }
    .c_spMb40 { margin-bottom: 40px !important; }
    .c_spMb45 { margin-bottom: 45px !important; }
    .c_spMb50 { margin-bottom: 50px !important; }
    .c_spMb60 { margin-bottom: 60px !important; }
    .c_spMb70 { margin-bottom: 70px !important; }
    .c_spMb80 { margin-bottom: 80px !important; }
    .c_spMb90 { margin-bottom: 90px !important; }
}

.c_pt0 { padding-top: 0 !important; }
.c_pl0 { padding-left: 0 !important; }
.c_pr0 { padding-right: 0 !important; }
.c_pb0 { padding-bottom: 0 !important; }
.c_pb10 { padding-bottom: 10px !important; }

@media screen and (min-width: 768px){
    .c_pcMt0 { margin-top: 0px !important; }
}
@media screen and (max-width:767px) {
    .c_spMl25 { margin-left: 25px !important; }
}

.c_hide { display: none !important; }
.c_iBlock { display: inline-block; }

.c_liquid { width: 100%; }
.c_liquidH { height: 100%; }

.c_breakall {
    word-wrap: break-word;
    word-break: break-all;
}
.c_wordNormal {
    word-wrap: normal;
    word-break: normal;
}
.c_nowrap { white-space: nowrap; }
.c_bracket { text-indent: -0.5em; }

.c_over {
    transition: opacity 0.2s;
}
.c_over:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px){
    .c_overLink:hover { color: #0070c0;}
}
.c_cursorDef { cursor: default !important; }
.c_cursorPoi { cursor: pointer !important; }

@media screen and (max-width: 1100px){ .c_ov1100 { display: none !important; } }
@media screen and (max-width: 1000px){ .c_ov1000 { display: none !important; } }
@media screen and (max-width: 900px){ .c_ov900 { display: none !important; } }
@media screen and (max-width: 800px){ .c_ov800 { display: none !important; } }
@media screen and (max-width: 767px){ .c_ov767 { display: none !important; } }
@media screen and (max-width: 700px){ .c_ov700 { display: none !important; } }
@media screen and (max-width: 600px){ .c_ov600 { display: none !important; } }
@media screen and (max-width: 500px){ .c_ov500 { display: none !important; } }
@media screen and (max-width: 400px){ .c_ov400 { display: none !important; } }
@media screen and (max-width: 374px){ .c_ov374 { display: none !important; } }
@media screen and (min-width: 1101px){ .c_ud1100 { display: none !important; } }
@media screen and (min-width: 1001px){ .c_ud1000 { display: none !important; } }
@media screen and (min-width: 901px){ .c_ud900 { display: none !important; } }
@media screen and (min-width: 801px){ .c_ud800 { display: none !important; } }
@media screen and (min-width: 768px){ .c_ud767 { display: none !important; } }
@media screen and (min-width: 701px){ .c_ud700 { display: none !important; } }
@media screen and (min-width: 601px){ .c_ud600 { display: none !important; } }
@media screen and (min-width: 501px){ .c_ud500 { display: none !important; } }
@media screen and (min-width: 401px){ .c_ud400 { display: none !important; } }
@media screen and (min-width: 375px){ .c_ud374 { display: none !important; } }


/* カラー設定
----------------------------------------- */

body {
    --main-color: #6fba40;
    --sub-color: #0b52ae;
}
body.s_attend {
    --main-color: #98191e;
    --sub-color: #98191e;
}


/* モジュール
----------------------------------------- */

html.s_noScroll {
    overflow: hidden;
}
html.s_noScroll body {
    overflow-y: scroll;
}

.m_frame {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
}
.m_frame .p_frameInner {
    max-width: 960px;
    margin: 0 auto;
}
@media screen and (max-width: 767px){
    .m_frame {
        padding: 0px 15px;
    }
}

.m_header {
    border-top: 5px solid #3a6297;
    padding: 20px;
}
body.s_attend .m_header {
    border-top: 5px solid #98191e;
    padding: 15px 20px;
}
.m_header .p_inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.m_header .p_logo {
    width: 266px;
}
body.s_attend .m_header .p_logo {
    width: 325px;
}
.m_header .p_fontsize {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.m_header .p_fontsize ul {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.m_header .p_fontsize li {
    cursor: pointer;
    transition: opacity 0.2s;
}
.m_header .p_fontsize li:hover {
    opacity: 0.7;
}
.m_header .p_link a {
    position: relative;
    display: block;
    padding-left: 18px;
    font-weight: bold;
}
.m_header .p_link a::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(45deg);
}
.m_header .p_link a + a {
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
    .m_header {
        padding: 10px 15px;
    }
    .m_header .p_logo {
        width: 240px;
    }
    .m_header .p_fontsize {
        display: none;
    }
}
@media screen and (max-width: 600px) {
    body.s_attend .m_header .p_logo {
        width: 55%;
    }
    .m_header .p_link a {
        padding-left: 3.6vw;
        font-size: 2.8vw;
    }
    .m_header .p_link a::before {
        top: 0.5vw;
        width: 1.8vw;
        height: 1.8vw;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
    }
    .m_header .p_link a + a {
        margin-top: 2vw;
    }
}

.m_pageTitle {
    margin-bottom: 40px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 16px 20px 14px;
}
.m_pageTitle h1 {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 3.6rem;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .m_pageTitle {
        margin-bottom: 20px;
        padding: 10px 15px;
    }
    .m_pageTitle h1 {
        font-size: 1.8rem;
    }
}

.m_stepList {
    margin: 0 0 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 90px;
}
.m_stepList li {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d8d8d8;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    line-height: 40px;
}
.m_stepList li + li::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -90px;
    width: 90px;
    height: 2px;
    margin: auto 0;
    background-color: #d8d8d8;
}
.m_stepList li.s_cur {
    width: 66px;
    height: 66px;
    border: 3px solid #fff;
    background-color: var(--main-color);
    padding-top: 13px;
    font-size: 1.5rem;
    line-height: 1.1;
}
.m_stepList li + li.s_cur::before {
    left: -93px;
    background-color: #4686d6;
}
body.s_attend .m_stepList li + li.s_cur::before {
    background-color: #535353;
}
.m_stepList li.s_cur span {
    display: block;
    font-size: 2.2rem;
}
.m_stepList li.s_cur p {
    position: absolute;
    top: 70px;
    left: 30px;
    color: var(--main-color);
    font-size: 1.5rem;
    white-space: nowrap;
    line-height: 1.2;
    transform: translateX(-50%);
}
.m_stepList li.s_done {
    background-color: #4686d6;
}
body.s_attend .m_stepList li.s_done {
    background-color: #535353;
}
.m_stepList li.s_done::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 16px;
    width: 7px;
    height: 12px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
}
.m_stepList li + li.s_done::before {
    background-color: #4686d6;
}
@media screen and (max-width: 1000px) {
    .m_stepList {
        gap: 0 60px;
    }
    .m_stepList li + li::before {
        left: -60px;
        width: 60px;
    }
    .m_stepList li + li.s_cur::before {
        left: -63px;
    }
}
@media screen and (max-width: 767px) {
    .m_stepList {
        margin: 20px 0 50px;
        gap: 25px;
    }
    .m_stepList li {
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 26px;
    }
    .m_stepList li + li::before {
        left: -25px;
        width: 25px;
    }
    .m_stepList li.s_cur {
        width: 44px;
        height: 44px;
        border: 2px solid #fff;
        padding-top: 8px;
        font-size: 10px;
    }
    .m_stepList li + li.s_cur::before {
        left: -27px;
    }
    .m_stepList li.s_cur span {
        font-size: 15px;
    }
    .m_stepList li.s_cur p {
        top: 50px;
        left: 20px;
        font-size: 10px;
    }
    .m_stepList li.s_done::after {
        top: 6px;
        left: 9px;
        width: 5px;
        height: 8px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
}
@media screen and (max-width: 390px) {
    .m_stepList li.s_cur:first-child p {
        left: 0;
        transform: translateX(0);
    }
    .m_stepList li.s_cur:last-child p {
        left: auto;
        right: 0;
        transform: translateX(0);
    }
}
@media screen and (max-width: 350px) {
    .m_stepList {
        gap: 18px;
    }
    .m_stepList li + li::before {
        left: -18px;
        width: 18px;
    }
}

.m_sectionTitle {
    margin: 50px 0 30px;
    border-left: 3px solid #4686d6;
    padding: 7px 0 5px 18px;
    font-size: 2.4rem;
    font-weight: bold;
}
body.s_attend .m_sectionTitle {
    border-color: var(--main-color);
}
@media screen and (max-width: 767px) {
    .m_sectionTitle {
        margin: 50px 0 20px;
        padding: 6px 0 5px 13px;
        font-size: 1.6rem;
    }
}

.m_maintenance {
    margin: 20px 0 40px;
    display: flex;
    gap: 15px;
    line-height: 1.5;
    font-size: 1.4rem;
}
.m_maintenance .p_title {
    border-right: 1px solid #ccc;
    padding-right: 15px;
    white-space: nowrap;
}
.m_maintenance p {
    line-height: inherit;
}
@media screen and (max-width: 767px) {
    .m_maintenance {
    display: flex;
        gap: 10px;
        font-size: 1rem;
    }
    .m_maintenance .p_title {
        padding-right: 10px;
    }
}

.m_errorBox {
    margin: 20px 0 40px;
    border: 2px solid #fbbdc6;
    background-color: #fffafb;
    padding: 25px 30px;
    color: #dd1111;
    font-size: 1.4rem;
}
.m_errorBox p + p {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .m_errorBox {
        margin: 15px 0 20px;
        padding: 10px 15px;
        font-size: 1rem;
    }
    .m_errorBox p + p {
        margin-top: 5px;
    }
}

.m_titleBox h2 {
    background-color: var(--main-color);
    padding: 11px;
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}
body.s_attend .m_titleBox h2 {
    background: linear-gradient(to bottom, #98191e 0%, #e4726f 100%);
}
.m_titleBox .p_body {
    border: 2px solid var(--main-color);
    border-top: none;
    padding: 25px 30px 30px;
    font-size: 1.4rem;
}
body.s_attend .m_titleBox .p_body {
    border-color: #e4726f;
}
.m_titleBox h3 {
    margin: 15px 0 5px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .m_titleBox h2 {
        padding: 8px;
        font-size: 1.5rem;
    }
    .m_titleBox .p_body {
        padding: 12px 14px;
        font-size: 1.2rem;
    }
    .m_titleBox h3 {
        margin: 10px 0 2px;
    }
}

.m_payment {
    margin-top: 10px;
    font-size: 1.4rem;
}
.m_payment tr {
    border-bottom: 2px solid #fff;
}
.m_payment th {
    background-color: #f5f5f5;
    padding: 10px 15px;
    font-weight: bold;
}
.m_payment td {
    padding: 5px 15px;
}
@media screen and (max-width: 767px) {
    .m_payment tr {
        border-bottom: none;
    }
    .m_payment th {
        display: block;
        padding: 5px 15px;
    }
    .m_payment td {
        display: block;
        padding: 10px 0 15px;
    }
}

.m_lineTitle {
    position: relative;
    margin: 30px 0 0 !important;
    border-bottom: 3px solid #ccc;
    padding-bottom: 12px;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_lineTitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 160px;
    height: 3px;
    background-color: #333;
}
@media screen and (max-width: 767px) {
    .m_lineTitle {
        margin: 20px 0 0 !important;
        padding-bottom: 5px;
        font-size: 1.5rem;
    }
}

.m_inputArea {
    padding: 20px;
}
.m_inputArea.s_error {
    background-color: #fff5f7;
}
@media screen and (max-width: 767px) {
    .m_inputArea {
        margin: 0 -15px;
        padding: 15px;
    }
}

.m_calendarInput {
    position: relative;
    margin: 30px 0;
}
.m_calendarInput .p_mainArea {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.m_calendarInput .p_prevBtn,
.m_calendarInput .p_nextBtn {
    position: relative;
    width: 30px;
    flex-shrink: 0;
    background-color: #222;
    cursor: pointer;
    transition: opacity 0.2s;
}
.m_calendarInput .p_prevBtn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 11px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform-origin: left top;
    transform: rotate(-45deg);
}
.m_calendarInput .p_nextBtn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 11px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: right top;
    transform: rotate(45deg);
}
.m_calendarInput .p_prevBtn:hover,
.m_calendarInput .p_nextBtn:hover {
    opacity: 0.7;
}
.m_calendarInput .p_prevBtn.s_disabled,
.m_calendarInput .p_nextBtn.s_disabled {
    background-color: #e1e1e1;
    opacity: 1;
    cursor: default;
}
.m_calendarInput .p_calendar {
    width: 50%;
}
.m_calendarInput.s_col1 .p_calendar + .p_calendar {
    display: none;
}
.m_calendarInput .p_title {
    margin: 0 0 15px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_calendarInput table {
    width: 100%;
    font-size: 1.4rem;
}
.m_calendarInput th {
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    padding: 10px 0;
    text-align: center;
    font-weight: inherit;
}
.m_calendarInput td {
    padding: 11px 0;
    text-align: center;
    cursor: pointer;
}
.m_calendarInput th.s_sun,
.m_calendarInput td.s_sun,
.m_calendarInput td.s_holiday {
    color: #e60000;
}
.m_calendarInput th.s_sat,
.m_calendarInput td.s_sat {
    color: #0b52ae;
}
.m_calendarInput td.s_disabled,
.m_calendarInput td.s_inactive {
    color: #222;
    opacity: 0.3;
    cursor: default;
}
.m_calendarInput td.s_beforeSelected {
    background-color: #ffe9d6;
}
.m_calendarInput td div {
    position: relative;
}
.m_calendarInput td.s_selected div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    bottom: 0;
    background-color: #dcecff;
}
body.s_attend .m_calendarInput td.s_selected div::before {
    background-color: #ffe0e3;
}
.m_calendarInput td.s_start div::before {
    left: 50%;
}
.m_calendarInput td.s_end div::before {
    right: 50%;
}
.m_calendarInput td.s_oneday div::before {
    display: none;
}
.m_calendarInput td span {
    position: relative;
    display: inline-block;
    padding: 11px 0;
    width: 40px;
}
.m_calendarInput td.s_oneday span,
.m_calendarInput td.s_start span,
.m_calendarInput td.s_end span {
    background-color: var(--sub-color);
    border-radius: 50%;
    padding: 11px 0;
    color: #fff;
}
.m_calendarInput .p_optionArea {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}
.m_calendarInput .p_clearBtn {
    position: relative;
    display: inline-block;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #fff;
    padding: 10px 40px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.m_calendarInput .p_clearBtn:hover {
    opacity: 0.7;
}
.m_calendarInput .p_selectDate {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_calendarInput .p_selectDate .p_date {
    display: flex;
}
.m_calendarInput .p_selectDate .p_date > span {
    display: inline-block;
    min-width: 60px;
    text-align: right;
}
@media screen and (max-width: 1000px) {
    .m_calendarInput .p_optionArea {
        position: static;
        margin-top: 15px;
        justify-content: flex-end;
    }
}
@media screen and (max-width: 767px) {
    .m_calendarInput {
        margin: 10px 0;
    }
    .m_calendarInput .p_mainArea {
        position: relative;
        padding: 8px 5px 0;
    }
    .m_calendarInput .p_prevBtn,
    .m_calendarInput .p_nextBtn {
        position: absolute;
        top: 0;
        width: 40px;
        height: 40px;
        border-radius: 3px;
    }
    .m_calendarInput .p_prevBtn {
        left: 0;
    }
    .m_calendarInput .p_nextBtn {
        right: 0;
    }
    .m_calendarInput .p_prevBtn::after {
        left: 16px;
    }
    .m_calendarInput .p_nextBtn::after {
        right: 16px;
    }
    .m_calendarInput .p_calendar {
        width: 100%;
    }
    .m_calendarInput .p_calendar + .p_calendar {
        display: none;
    }
    .m_calendarInput .p_title {
        margin: 0 0 25px;
        font-size: 1.5rem;
    }
    .m_calendarInput td {
        padding: 5px 0;
    }
    .m_calendarInput .p_optionArea {
        justify-content: space-between;
        font-size: 1.4rem;
    }
    .m_calendarInput .p_selectDate {
        margin-top: 15px;
        font-size: 1.5rem;
    }
    .m_calendarInput .p_selectDate .p_date > span {
        min-width: 40px;
    }
}

.m_period {
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    min-height: 50px;
}
.m_period dl {
    width: 260px;
    border-bottom: 2px solid #333;
    padding-bottom: 6px;
}
.m_period dt {
    color: var(--sub-color);
    font-weight: bold;
}
.m_period dd {
    margin-top: 5px;
    font-size: 2rem;
    font-weight: bold;
}
.m_period > span {
    padding: 0 20px;
    font-size: 1.8rem;
}
.m_period .p_count {
    margin-left: auto;
    width: 200px;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #333;
    padding-bottom: 4px;
    font-size: 2rem;
}
.m_period .p_count span + span {
    font-weight: bold;
    font-size: 2.2rem;
    white-space: nowrap;
}
@media screen and (max-width: 1000px) {
    .m_period dl {
        width: 230px;
    }
    .m_period .p_count {
        width: 160px;
    }
}
@media screen and (max-width: 767px) {
    .m_period {
        margin-top: 10px;
        min-height: 43px;
        flex-wrap: wrap;
    }
    .m_period dl {
        width: 45%;
    }
    .m_period dt {
        font-size: 1.2rem;
    }
    .m_period dd {
        font-size: 1.3rem;
    }
    .m_period > span {
        width: 8%;
        padding: 0;
        text-align: center;
        font-size: 1.5rem;
    }
    .m_period .p_count {
        margin-top: 15px;
        width: 40%;
        font-size: 1.4rem;
    }
    .m_period .p_count span + span {
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 350px) {
    .m_period dt {
        font-size: 1.1rem;
    }
    .m_period dd {
        font-size: 1.3rem;
    }
}

.m_errorText {
    margin-top: 15px;
    color: #dd1111;
}
@media screen and (max-width: 767px) {
    .m_errorText {
        margin-top: 10px;
        font-size: 1rem;
    }
}

.m_attentionArea {
    margin: 55px auto 50px;
    max-width: 960px;
    background-color: #dcecff;
    padding: 35px 40px 40px;
}
body.s_attend .m_attentionArea {
    background-color: #f7e9e9;
}
.m_attentionArea h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}
.m_attentionArea p {
    margin-bottom: 25px;
    font-size: 1.4rem;
}
.m_attentionArea ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 4.4%;
}
.m_attentionArea ul li {
    width: 47.8%;
}
@media screen and (max-width: 1000px) {
    .m_attentionArea {
        padding: 25px 20px 20px;
    }
}
@media screen and (max-width: 700px) {
    .m_attentionArea {
        margin: 30px auto;
        padding: 12px 15px 15px;
    }
    .m_attentionArea h3 {
        margin-bottom: 12px;
        font-size: 1.4rem;
    }
    .m_attentionArea ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .m_attentionArea ul li {
        width: auto;
    }
}

.m_checkBtnList {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.m_checkBtnList.s_col3 {
    gap: 20px 2%;
}
.m_checkBtnList.s_col3 li {
    width: 32%;
}
.m_checkBtnList label {
    cursor: pointer;
}
.m_checkBtnList input {
    opacity: 0;
}
.m_checkBtnList input + span {
    position: relative;
    display: flex;
    align-items: center;
    height: 90px;
    border: 1px solid #333;
    background-color: #fff;
    padding: 10px 10px 10px 60px;
    font-size: 1.8rem;
}
.m_checkBtnList input:checked + span {
    border-color: var(--sub-color);
    background-color: var(--sub-color);
    color: #fff;
    font-weight: bold;
}
body.s_attend .m_checkBtnList input:checked + span {
    border: 4px solid var(--main-color);
    background-color: #fff;
    padding: 7px 7px 7px 57px;
    color: var(--main-color);
}
.m_checkBtnList input:disabled + span {
    background-color: #eee;
    color: #888;
    cursor: default;
}
.m_checkBtnList input + span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    width: 22px;
    height: 22px;
    margin: auto 0;
    border: 1px solid #333;
    background-color: #fff;
}
body.s_attend .m_checkBtnList input:checked + span::before {
    left: 17px;
    border-color: var(--main-color);
}
.m_checkBtnList input:checked + span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    bottom: 3px;
    width: 10px;
    height: 18px;
    margin: auto 0;
    border-right: 4px solid var(--sub-color);
    border-bottom: 4px solid var(--sub-color);
    transform: rotate(45deg);
}
body.s_attend .m_checkBtnList input:checked + span::after {
    left: 23px;
}
@media screen and (max-width: 767px) {
    .m_checkBtnList.s_col3 {
        gap: 10px 2.8%;
    }
    .m_checkBtnList.s_col3 li {
        width: 48.6%;
    }
    .m_checkBtnList input + span {
        height: 70px;
        padding: 10px 10px 10px 50px;
        font-size: 1.5rem;
    }
    body.s_attend .m_checkBtnList input:checked + span {
        padding: 7px 7px 7px 47px;
    }
}

.m_checkList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
}
@media screen and (max-width: 767px) {
    .m_checkList {
        gap: 15px 30px;
    }
}

.m_checkbox input {
    display: none;
}
.m_checkbox input + span {
    position: relative;
    padding: 0 0 0 32px;
    cursor: pointer;
}
.m_checkbox input + span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 22px;
    margin: auto 0;
    border: 1px solid #333;
    background-color: #fff;
}
.m_checkbox input:checked + span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 6px;
    bottom: 3px;
    width: 10px;
    height: 18px;
    margin: auto 0;
    border-right: 4px solid var(--sub-color);
    border-bottom: 4px solid var(--sub-color);
    transform: rotate(45deg);
}

.m_selectDestination {
    margin-top: 15px;
    display: flex;
    gap: 35px;
}
.m_selectDestination .p_search {
    position: relative;
    width: 41.7%;
}
.m_selectDestination input {
    width: 100%;
    height: 50px;
    border: 1px solid #333;
    background-color: #fff;
    padding: 10px 20px;
}
.m_selectDestination .p_search ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    border: 1px solid #666;
    border-top: none;
    background-color: #fff;
    max-height: 200px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.m_selectDestination .p_search li {
    display: none;
    padding: 7px 10px;
    cursor: pointer;
}
.m_selectDestination .p_search li.s_show {
    display: block;
}
.m_selectDestination .p_search li.s_selected {
    background-color: #dcdcdc;
}
.m_selectDestination .p_search li.s_focus {
    background-color: #5996fb;
    color: #fff;
}
.m_selectDestination .p_area {
    position: relative;
    width: 58.3%;
    display: flex;
    gap: 10px;
}
.m_selectDestination .p_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    bottom: 0;
    border-left: 15px solid #a2bde6;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    height: 0;
    margin: auto 0;
}
body.s_attend .m_selectDestination .p_area::before {
    border-left-color: #cb878a;
}
.m_selectDestination button {
    width: 148px;
    height: 50px;
    border: 1px solid #4b9b19;
    border-radius: 5px;
    background-color: #6fba40;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.2s;
}
body.s_attend .m_selectDestination button {
    border-color: #222;
    background-color: #222;
}
.m_selectDestination button:hover {
    opacity: 0.8;
}
@media screen and (max-width: 767px) {
    .m_selectDestination {
        flex-wrap: wrap;
        gap: 25px;
    }
    .m_selectDestination .p_search {
        width: 100%;
    }
    .m_selectDestination .p_search input {
        font-size: 1.4rem;
    }
    .m_selectDestination .p_area {
        width: 100%;
    }
    .m_selectDestination .p_area::before {
        top: -20px;
        left: 0;
        right: 0;
        bottom: auto;
        border-top: 15px solid #a2bde6;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: none;
        width: 0;
        margin: 0 auto;
    }
    body.s_attend .m_selectDestination .p_area::before {
        border-top: 15px solid #cb878a;
        border-left: 10px solid transparent;
    }
    .m_selectDestination button {
        width: 27%;
        font-size: 1.5rem;
    }
}

.m_selectTable {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}
.m_selectTable li {
    width: 33.33%;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
}
.m_selectTable .p_select span {
    margin-left: 5px;
}
.m_selectTable .m_selectbox {
    width: 100px;
}
@media screen and (max-width: 900px) {
    .m_selectTable li {
        width: 50%;
    }
}
@media screen and (max-width: 550px) {
    .m_selectTable li {
        width: 100%;
    }
}

.m_checkList01 {
    padding: 0 20px;
}
.m_checkList01 li {
    display: none;
}
.m_checkList01 li + li {
    margin-top: 15px;
}
.m_checkList01 input {
    display: none;
}
.m_checkList01 input ~ span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #222;
    min-height: 90px;
    padding: 10px 90px 10px 60px;
    font-size: 1.8rem;
    line-height: 1.7;
    cursor: pointer;
}
.m_checkList01 input + span + span {
    display: none;
    background-color: #222;
    color: #fff;
}
.m_checkList01 input:disabled + span {
    background-color: #f2f2f2;
    opacity: 0.6;
    cursor: default;
}
.m_checkList01 input:checked + span {
    display: none;
}
.m_checkList01 input:checked + span + span {
    display: flex;
}
.m_checkList01 input ~ span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 19px;
    bottom: 0;
    width: 22px;
    height: 22px;
    margin: auto 0;
    border: 1px solid #333;
    background-color: #fff;
}
.m_checkList01 input + span + span::before {
    border: none;
    background-color: transparent;
    background-image: url(/Itinerary/images/2025/check_bg_on.png);
}
.m_checkList01 input ~ span::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    bottom: -2px;
    width: 90px;
    background: url(/Itinerary/images/2025/check_bg_off.png) no-repeat 50% 50%;
    background-size: 90px 100%;
}
.m_checkList01 input + span + span::after {
    background-image: url(/Itinerary/images/2025/check_bg_on_02.png);
}
.m_checkList01 input + span + span strong {
    color: #ff9710;
}
.m_checkList01 .p_link {
    margin: 10px 0 15px;
    text-align: right;
}
.m_checkList01 img {
    vertical-align: middle;
}
.m_checkList01 .list {
    margin: 0px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
    line-height: 1.1;
}

.m_checkList01 .list span {
    padding-left: 18px;
    background: url(/Itinerary/images/2025/check_text_ng.png) no-repeat 0 0px;
    background-size: 13px 13px;
    font-size: 1.5rem;
    color: #4686d6;
}

.m_checkList01 .p_note_a1 {
    font-size: 1.3rem;
    margin-top: 2px;
    display: block;
}

.m_checkList01 input:checked ~ span .list span {
    background: url(/Itinerary/images/2025/check_text_ok.png) no-repeat 0 0px;
    background-size: 14px 14px;
    color: #ff9710;
}
@media screen and (max-width: 767px) {
    .m_checkList01 {
        padding: 0;
    }
    .m_checkList01 input ~ span {
        gap: 5px;
        min-height: 110px;
        padding: 10px 55px 10px 50px;
        font-size: 1.5rem;
        line-height: 1.4;
    }
    .m_checkList01 input ~ span::before {
        left: 15px;
    }
    .m_checkList01 input + span + span::before {
        background-image: url(/Itinerary/images/2025/check_bg_on_sp.png);
        background-size: contain;
    }
    .m_checkList01 input ~ span::after {
        width: 60px;
        background-image: url(/Itinerary/images/2025/check_bg_off_sp.png);
        background-size: 60px 100%;
    }
    .m_checkList01 input + span + span::after {
        background-image: url(/Itinerary/images/2025/check_bg_on_02_sp.png);
    }
    .m_checkList01 .p_link {
        font-size: 1.2rem;
    }
    .m_checkList01 .list {
        gap: 5px 15px;
    }
    .m_checkList01 .list span {
        background-position: 0 0;
        font-size: 1.3rem;
    }
     .m_checkList01 .p_note_a1 {
        background-position: 0 0;
        font-size: 1.0rem;
    }
    .m_checkList01 input:checked ~ span .list span {
        background-position: 0 0;
    }
}

.m_markerLink {
    position: relative;
    text-decoration: underline;
    padding-left: 1.2em;
}
.m_markerLink::before {
    content: '';
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 0.65em;
    height: 0.65em;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(45deg);
}
.m_markerLink:hover {
    text-decoration: none;
    opacity: 1;
}
.m_markerLink.s_disabled {
    opacity: 0.6;
    text-decoration: none;
    cursor: default;
}

.m_blankLink {
    text-decoration: underline;
}
.m_blankLink:hover {
    text-decoration: none;
    opacity: 1;
}
.m_blankLink::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    width: 12px;
    height: 12px;
    background: url(/Itinerary/images/2025/icon_blank.png) no-repeat 50% 50%;
    background-size: contain;
    vertical-align: -1px;
}

.m_helpIcon {
    margin-left: 5px;
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #6fba40;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    line-height: 14px;
    vertical-align: 1px;
}
body.s_attend .m_helpIcon {
    background-color: #981a1e;
}
.m_helpIcon.s_inline {
    margin: 0 3px;
}

.m_planArea {
    position: relative;
    margin-top: 50px;
    background-color: #b2d5ff;
    padding: 60px 20px 40px;
}
body.s_attend .m_planArea {
    background-color: transparent;
    padding: 0 20px;
}
.m_planArea > .p_inner {
    max-width: 960px;
    margin: 0 auto;
}
body.s_attend .m_planArea > .p_inner {
    max-width: 1000px;
}
.m_planArea + .m_frame {
    margin-top: 50px;
}
.m_planArea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    margin: 0 auto;
    border-top: 16px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
body.s_attend .m_planArea::before {
    display: none;
}
.m_planArea .p_box {
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px 0 0;
}
body.s_attend .m_planArea .p_box {
    padding: 0 0 30px;
    border: 1px solid #d8d8d8;
}
.m_planArea .m_sectionTitle {
    margin: 0 30px 20px;
}
body.s_attend .m_planArea .m_sectionTitle {
    margin: 0 0 30px;
}
.m_planArea .p_topNote {
    margin: 0 30px 30px;
    font-size: 1.4rem;
}
body.s_attend .m_planArea .p_topNote {
    margin: 0 20px 30px;
}
.m_planArea .p_priceArea {
    border-top: 1px solid #dcecff;
}
body.s_attend .m_planArea .p_priceArea {
    border-top: none;
}
.m_planArea .p_detailArea {
    border-top: 1px solid #dcecff;
    padding: 35px 30px 30px;
    display: flex;
    justify-content: space-between;
}
.m_planArea .p_detailArea .p_col {
    width: 47.5%;
}
.m_planArea .p_detailArea h3 {
    margin: 35px 0 15px;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_planArea .p_detailArea h3:first-child {
    margin-top: 0;
}
.m_planArea .p_pict {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0.8%;
}
.m_planArea .p_pict li {
    width: 32.8%;
}
.m_planArea .p_pict span {
    display: block;
    margin-bottom: 3px;
    text-align: center;
    color: #0B52AE;
    font-size: 1.2rem;
}
body.s_attend .m_planArea .p_pict span {
    color: #981a1e;
}
.m_planArea .p_detailList li {
    margin-bottom: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 2px solid #4686d6;
    padding: 2px 8px 2px 10px;
    font-size: 1.1rem;
}
body.s_attend .m_planArea .p_detailList li {
    border-left-color: #98191e;
}
.m_planArea .p_detailList li.s_lower {
    margin-left: 14px;
}
.m_planArea .p_detailList li.s_sizeL {
    padding: 6px 8px 6px 10px;
    font-size: 1.6rem;
}
.m_planArea .p_detailList li.s_blue {
    background-color: #dcecff;
}
.m_planArea .p_detailList li.s_red {
    background-color: #f7e9e9;
}
.m_planArea .p_detailList li.s_orange .p_label {
    color: #ff9710;
    font-weight: bold;
}
.m_planArea .p_detailList .p_amount {
    font-weight: bold;
    white-space: nowrap;
}
.m_planArea li .m_helpIcon {
    margin-left: 12px;
    vertical-align: -3px;
}
.m_planArea li.s_sizeL .m_helpIcon {
    vertical-align: 0;
}
.m_planArea .p_btnArea {
    margin: 20px 0 40px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
body.s_attend .m_planArea .p_btnArea {
    margin: 0 30px 0 0;
}
.m_planArea .p_btnArea .p_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0 45px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
}
.m_planArea .p_btnArea .p_btn:hover {
    opacity: 0.7;
}
.m_planArea .p_btnArea .p_btn::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 12px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(45deg);
}
.m_planArea .p_btnArea .p_btn.s_print {
    background: url(/Itinerary/images/2025/icon_print.png) no-repeat 50% 50% #fff;
    width: 40px;
    padding: 0;
}
.m_planArea .p_btnArea .p_btn.s_print::before {
    display: none;
}
.m_planArea .p_btnArea .p_btn.s_line {
    background: url(/Itinerary/images/2025/icon_line.png) no-repeat 95% 50% #fff;
    padding: 0 55px;
}
@media screen and (max-width: 767px) {
    .m_planArea {
        margin-top: 40px;
        padding: 40px 15px;
    }
    .m_planArea .p_box {
        padding: 20px 0 0;
    }
    .m_planArea .m_sectionTitle {
        margin: 0 20px 10px;
    }
    .m_planArea .p_topNote {
        margin: 0 20px 20px;
        font-size: 1.1rem;
    }
    .m_planArea .p_detailArea {
        padding: 15px 20px 20px;
        flex-direction: column;
        gap: 20px;
    }
    .m_planArea .p_detailArea .p_col {
        width: 100%;
    }
    .m_planArea .p_detailArea h3 {
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    .m_planArea .p_pict {
        gap: 5px 1.25%;
    }
    .m_planArea .p_pict li {
        width: 32.5%;
    }
    .m_planArea .p_detailList li {
        padding: 2px 8px 2px 6px;
    }
    .m_planArea .p_detailList li.s_sizeL {
        padding: 6px 8px 6px 6px;
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 600px) {
    .m_planArea .p_btnArea {
        margin: 15px 0 20px;
        gap: 10px;
    }
    .m_planArea .p_btnArea .p_btn {
        height: 32px;
        padding: 0 32px;
        font-size: 1.2rem;
    }
    .m_planArea .p_btnArea .p_btn::before {
        top: 11px;
        left: 9px;
    }
    .m_planArea .p_btnArea .p_btn.s_print {
        width: 32px;
    }
    .m_planArea .p_btnArea .p_btn.s_line {
        padding: 0 36px;
    }
}
@media screen and (max-width: 370px) {
    .m_planArea .p_btnArea {
        gap: 8px;
    }
    .m_planArea .p_btnArea .p_btn {
        padding: 0 12px 0 20px;
    }
    .m_planArea .p_btnArea .p_btn::before {
        left: 6px;
    }
    .m_planArea .p_btnArea .p_btn.s_line {
        padding: 0 35px 0 20px;
    }
}

.m_priceSum {
    position: relative;
    padding: 16px 30px;
    text-align: center;
    font-weight: bold;
}
.m_priceSum .p_logo {
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    height: 50px;
    margin: auto 0;
}
.m_priceSum .p_logo_kakaku {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    height: 99px;
    margin: auto 0;
}
.m_priceSum .p_price {
    font-size: 2.8rem;
}
.m_priceSum .p_price strong {
    color: #981a1e;
    font-size: 4.6rem;
}
.m_priceSum .p_price small {
    font-size: 1.8rem;
}
.m_priceSum .p_detailBtn {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.m_priceSum .p_detailBtn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 6px;
    padding-left: 10px;
    cursor: pointer;
}
.m_priceSum .p_detailBtn a::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 12px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .m_priceSum {
        padding: 50px 30px 15px;
    }
    .m_priceSum .p_logo {
        top: 20px;
        left: 20px;
        bottom: auto;
    }
    .m_priceSum .p_detailBtn {
        position: static;
        text-align: right;
        transform: translateY(0);
    }
    .m_priceSum .p_detailBtn a {
        display: inline-block;
        vertical-align: top;
        width: auto;
        height: auto;
        padding: 10px 20px 10px 40px;
        border: none;
    }
}
@media screen and (max-width: 600px) {
    .m_priceSum {
        padding: 50px 20px 10px;
        font-size: 1.2rem;
    }
    .m_priceSum .p_logo {
        top: 15px;
        width: 110px;
        height: auto;
    }
    .m_priceSum .p_price {
        margin-bottom: 5px;
        font-size: 2rem;
    }
    .m_priceSum .p_price strong {
        font-size: 3.6rem;
    }
    .m_priceSum .p_price small {
        font-size: 1.5rem;
    }
    .m_priceSum .p_detailBtn {
        margin-top: 5px;
    }
    .m_priceSum .p_detailBtn a {
        padding: 5px 10px 5px 30px;
        font-size: 1.3rem;
    }
    .m_priceSum .p_detailBtn a::after {
        top: 9px;
    }
}

.m_optionArea {
    background-color: #dcecff;
    padding: 50px 0;
}
@media screen and (max-width: 767px) {
    .m_optionArea {
        padding: 40px 0 35px;
    }
}

.m_compareArea {
    border: 10px solid #4686d6;
    padding: 50px 0;
}
.m_compareArea + .m_frame {
    margin-top: 50px;
}

.m_checkList02 {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
}
.m_checkList02 .p_col {
    width: 23.5%;
}
body.s_attend .m_checkList02 .p_col {
    width: 31.25%;
}
.m_checkList02 .p_col > div {
    display: none;
}
body.s_attend .m_checkList02 .p_col > div {
    display: block;
}
.m_checkList02 label {
    position: relative;
    display: block;
}
.m_checkList02 input {
    display: none;
}
.m_checkList02 .p_title {
    position: absolute;
    top: 14px;
    left: 40px;
    right: 10px;
    z-index: 10;
    font-size: 1.1rem;
    font-weight: bold;
}
.m_checkList02 input:checked + .p_title {
    color: #fff;
}
body.s_attend .m_checkList02 input:checked + .p_title {
    color: inherit;
}
.m_checkList02 input ~ .p_text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 32px 10px 10px 20px;
    height: 97px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.3;
    cursor: pointer;
}
body.s_attend .m_checkList02 input ~ .p_text {
    border: 1px solid #333;
    font-size: 1.6rem;
    font-weight: bold;
}
.m_checkList02 .p_col.s_large input ~ .p_text {
    height: 237px;
    padding: 20px 10px 10px;
    line-height: 1.6;
}
.m_checkList02 .p_col.s_large .js_a3_b input ~ .p_text {
    padding: 35px 10px 10px;
    line-height: 1.5;
}
.m_checkList02 .p_col.s_large .js_a3_b input ~ .p_text .p_note_a3 {
    font-size: 1.1rem;
    margin-top: 20px;
    display: block;
}
.m_checkList02 input + span + .p_text::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 22px;
    height: 22px;
    border: 1px solid #333;
}
.m_checkList02 input:checked + span + .p_text {
    display: none;
}
.m_checkList02 input ~ .p_text + .p_text {
    display: none;
    background: url(/Itinerary/images/2025/icon_check.png) no-repeat 10px 10px #0b52ae;
    color: #fff;
    background-size: 22px auto;
}
body.s_attend .m_checkList02 input ~ .p_text + .p_text {
    background-image: url(/Itinerary/images/2025/icon_check_attend.png);
    background-position: 10px 10px;
    background-color: #f7e9e9;
    color: inherit;
}
body.s_attend .m_checkList02 input ~ .p_text + .p_text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid #98191e;
}
.m_checkList02 input:checked ~ .p_text + .p_text {
    display: flex;
}
.m_checkList02 .p_logo {
    width: 75px;
    border-radius: 6px;
    background-color: #fff;
    padding: 6px 4px 5px;
}
.m_checkList02 .p_text + .p_text .p_logo {
    margin: 0 6px 6px;
    vertical-align: -15px;
}
.m_checkList02 .p_text {
    margin-top: 8px;
}
.m_checkList02 .p_link {
    margin: 8px 0 12px;
    min-height: 1.3em;
    text-align: right;
    font-size: 1.4rem;
}
.m_checkList02 .p_link a {
    display: inline-block;
    text-align: left;
}
.m_checkList02 .p_recommend {
    position: absolute;
    top: 47px;
    left: 15px;
    right: 15px;
    height: 25px;
    border: 2px solid #dd1111;
    border-radius: 14px;
    background-color: #fff;
    text-align: center;
    color: #222;
    line-height: 22px;
}
body.s_attend .m_checkList02 .p_recommend {
    top: 70px;
    width: 75px;
    margin: 0 auto;
    border-width: 1px;
    color: #dd1111;
    font-size: 1rem;
    font-weight: bold;
}
.m_checkList02 .p_recommend + span {
    padding-top: 15px;
}
@media screen and (max-width: 1000px) {
    .m_checkList02 input ~ .p_text {
        padding: 20px 10px 10px;
        font-size: 1.2rem;
    }
    body.s_attend .m_checkList02 input ~ .p_text {
        font-size: 1.2rem;
    }
    .m_checkList02 .p_col.s_large input ~ .p_text {
        padding: 20px 10px 10px;
    }
    .m_checkList02 .p_logo {
        width: 55px;
    }
    .m_checkList02 .p_text + .p_text .p_logo {
        vertical-align: -13px;
    }
    .m_checkList02 .p_link {
        font-size: 1.2rem;
    }
    .m_checkList02 .p_imgText {
        width: 150px;
    }
}
@media screen and (max-width: 1000px) {
    .m_checkList02 {
        padding: 0;
        gap: 0 3%;
    }
    .m_checkList02 .p_col {
        width: 100%;
    }
    body.s_attend .m_checkList02 .p_col {
        width: 100%;
    }
    .m_checkList02 .p_col.s_large {
        width: 48.5%;
    }
    body.s_attend .m_checkList02 .p_col.s_large {
        width: 48.5%;
    }
    .m_checkList02 .p_col:not(.s_large) {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .m_checkList02 .p_col:not(.s_large) > * {
        width: 48.5%;
    }
    .m_checkList02 .p_col.s_large input ~ .p_text {
        height: 175px;
    }
    body.s_attend .m_checkList02 .p_col.s_large input ~ .p_text {
        height: 140px;
    }
    .m_checkList02 .p_link {
        margin: 5px 0 12px;
    }
    .m_checkList02 .p_imgText {
        margin-top: 5px;
    }
    .m_checkList02 .p_recommend {
        height: 22px;
        line-height: 20px;
    }
    body.s_attend .m_checkList02 .p_recommend {
        top: 40px;
    }
    .m_checkList02 .p_recommend + span {
        padding-top: 35px;
    }
}
@media screen and (max-width: 600px) {
    .m_checkList02 .p_recommend + span {
        padding-top: 45px;
    }
}
@media screen and (max-width: 500px) {
    .m_checkList02 .p_title:not(.s_spRow1) {
        top: 8px;
    }
    .m_checkList02 input ~ .p_text {
        padding: 40px 10px 10px;
    }
    .m_checkList02 .p_col.s_large input ~ .p_text {
        height: 210px;
    }
    .m_checkList02 .p_col.s_large .js_a3_b input ~ .p_text .p_note_a3 {
        font-size: 2.7vw;
        margin-top: 10px;
        display: block;
    }
    .m_checkList02 .p_recommend {
        top: 40px;
    }
}
@media screen and (max-width: 400px) {
    .m_checkList02 .p_title {
        font-size: 2.7vw;
    }
}
@media screen and (max-width: 360px) {
    .m_checkList02 input ~ span {
        font-size: 1.2rem;
    }
    .m_checkList02 .p_col.s_large input ~ span {
        height: 155px;
    }
    .m_checkList02 input + span::after {
        top: 8px;
        left: 8px;
        width: 18px;
        height: 18px;
    }
    .m_checkList02 input + span + span {
        background-position: 8px 8px;
        background-size: 18px auto;
    }
}
@media screen and (max-width: 340px) {
    .m_checkList02 input ~ span {
        font-size: 1.1rem;
    }
}

.m_floating {
    width: 1000px;
    max-width: calc(100vw - 30px);
    margin: 50px auto;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(70,134,214,0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 6px;
    padding: 15px 20px;
}
body.s_attend .m_floating {
    box-shadow: 0 0 30px rgba(152,25,30,0.25);
}
.m_floating.s_fix {
    position: sticky;
    bottom: 5px;
    z-index: 100;
}
.m_floating dl {
    white-space: nowrap;
}
.m_floating dl + dl {
    min-width: 35%;
}
.m_floating dt {
    margin-bottom: 6px;
    background-color: #f5f5f5;
    border-radius: 11px;
    padding: 4px 15px;
    text-align: center;
    font-size: 1.1rem;
}
.m_floating dd {
    text-align: center;
    font-size: 1.4rem;
}
.m_floating .p_logo {
    width: 16%;
}
.m_floating .p_price {
    text-align: right;
    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
}
.m_floating .p_price strong {
    margin-left: 10px;
    color: #981a1e;
    font-size: 1.8rem;
}
.m_floating .p_price strong span {
    font-size: 3.2rem;
    line-height: 1;
}
.m_floating .p_price small {
    font-size: 1.2rem;
    font-weight: normal;
}
.m_floating .p_btn {
    margin-left: 5px;
}
.m_floating .p_btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 36px;
    border: 1px solid #333;
    border-radius: 6px;
    padding-left: 10px;
    font-size: 1.3rem;
    font-weight: bold;
}
.m_floating .p_btn a::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(45deg);
}
@media screen and (max-width: 1000px) {
    .m_floating {
        margin: 40px auto 35px;
        gap: 6px 0;
        padding: 10px;
        width: 400px;
    }
    .m_floating dl {
        display: none;
    }
    .m_floating .p_logo {
        width: 31%;
    }
    .m_floating .p_price {
        font-size: 1.2rem;
    }
    .m_floating .p_price strong {
        font-size: 1.4rem;
    }
    .m_floating .p_price strong span {
        font-size: 2.4rem;
    }
    .m_floating .p_price small {
        font-size: 1rem;
    }
    .m_floating .p_btn {
        display: none;
    }
}

.m_attention {
    font-size: 1.4rem;
    line-height: 1.5;
}
.m_attention h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: bold;
}
.m_attention .p_list li {
    padding-left: 1em;
    text-indent: -1em;
}
.m_attention .p_note {
    margin-top: 10px;
    font-size: 1.1rem;
}
.m_attention .p_note li > span {
    float: left;
}
.m_attention .p_note li p {
    overflow: hidden;
}

.m_enterBtn {
    position: relative;
    width: 100%;
    max-width: 444px;
    height: 74px;
    border: 1px solid #389100;
    border-radius: 6px;
    box-shadow: 0 0 0 1px #fff inset;
    background: linear-gradient(to bottom, #77b251 0%, #399103 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
}
.m_enterBtn:hover {
    opacity: 0.8;
}
body.s_attend .m_enterBtn {
    border-color: #222;
    background: #222;
}
.m_enterBtn::before {
    content: '';
    position: absolute;
    top: 43%;
    left: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.m_enterBtn:disabled {
    opacity: 0.5;
    cursor: default;
}
@media screen and (max-width: 767px) {
    .m_enterBtn {
        width: 85%;
        height: 52px;
        font-size: 1.4rem;
    }
    .m_enterBtn::before {
        left: 15px;
        width: 8px;
        height: 8px;
    }
}

.m_formBtnArea {
    position: relative;
    margin: 60px 0;
    text-align: center;
}
.m_formBtnArea .m_enterBtn {
    width: 44.4%;
}
.m_formBtnArea .p_backBtn {
    position: absolute;
    top: 0;
    left: 0;
    width: 162px;
    height: 72px;
    border: 1px solid #333;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_formBtnArea .p_backBtn::before {
    content: '';
    position: absolute;
    top: 43%;
    left: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .m_formBtnArea {
        margin: 30px 0 15px;
        padding-bottom: 65px;
    }
    .m_formBtnArea .m_enterBtn {
        width: 85%;
    }
    .m_formBtnArea .p_backBtn {
        top: auto;
        bottom: 0;
        width: 112px;
        height: 48px;
        font-size: 1.4rem;
    }
    .m_formBtnArea .p_backBtn::before {
        left: 15px;
        width: 8px;
        height: 8px;
    }
}

.m_selectList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
}
.m_selectList .p_label {
    margin-bottom: 6px;
}
.m_selectList .p_btn {
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #eee;
    width: 120px;
    height: 46px;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .m_selectList {
        gap: 12px;
    }
    .m_selectList .p_label {
        font-size: 1.2rem;
    }
    .m_selectList .p_btn {
        height: 41px;
    }
}

.m_selectbox {
    position: relative;
    display: inline-block;
}
.m_selectbox::before {
    content: '';
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 2px;
    width: 8px;
    height: 8px;
    margin: auto 0;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
}
.m_selectbox select {
    position: relative;
    width: 100%;
    border: 1px solid #333;
    background: transparent !important;
    padding: 10px 30px 10px 15px;
    cursor: pointer;
}
.m_selectbox select:disabled {
    opacity: 0.7;
    background-color: #eee !important;
    cursor: default;
}
.m_selectbox.s_sizeS select {
    padding: 5px 30px 5px 10px;
}
@media screen and (max-width: 767px) {
    .m_selectbox select {
        font-size: 1.3rem;
    }
}

.m_endDateSelect .p_period {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 640px;
    margin-left: auto;
}
.m_endDateSelect .p_period > span {
    font-size: 1.8rem;
    font-weight: bold;
}
.m_endDateSelect .p_period ul {
    margin: 0;
    flex-grow: 1;
}
@media screen and (max-width: 600px) {
    .m_endDateSelect .p_period {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .m_endDateSelect .p_period > span {
        font-size: 1.5rem;
    }
    .m_endDateSelect .p_period ul {
        width: 100%;
    }
}

.m_dateSelect {
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.m_dateSelect .p_label {
    font-size: 1.8rem;
    font-weight: bold;
}
.m_dateSelect .p_select {
    display: flex;
    gap: 20px;
}
.m_dateSelect .m_selectbox select {
    width: 200px;
    height: 70px;
    padding: 5px 30px 5px 20px;
    margin: 0;
}
.m_dateSelect .p_select span {
    margin-left: 12px;
}
@media screen and (max-width: 1050px) {
    .m_dateSelect .m_selectbox select {
        width: calc(33vw - 140px);
    }
}
@media screen and (max-width: 767px) {
    .m_dateSelect {
        margin: 25px 0 15px;
        display: block;
    }
    .m_dateSelect .p_label {
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    .m_dateSelect .p_select {
        gap: 0 3.5%;
    }
    .m_dateSelect .p_select > div {
        width: 31%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .m_dateSelect .m_selectbox select {
        width: calc(32vw - 38px);
        height: 52px;
        padding: 5px 15px;
    }
    .m_dateSelect .p_select span {
        margin-left: 0;
    }
}

.m_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background-color: #fff;
    display: none;
}
.m_modal .p_closeBtn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
}
.m_modal .p_closeBtn:hover {
    opacity: 0.7;
}
.m_modal .p_closeBtn::before,
.m_modal .p_closeBtn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 18px;
    height: 2px;
    margin: auto;
    background-color: #333;
    transform: rotate(45deg);
}
.m_modal .p_closeBtn::after {
    transform: rotate(-45deg);
}
.m_modal .p_scrollArea {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: calc(100vh - 130px);
    height: calc(100dvh - 130px);
}
.m_modal .p_scrollInner {
    width: 100%;
    max-height: 100%;
    padding: 50px 20px;
    overflow-y: auto;
    font-size: 1.4rem;
}
.m_modal .p_scrollInner p {
    line-height: 1.5;
}
.m_modal .p_iconTitle {
    margin: 0 0 35px;
    border-bottom: 3px solid #222;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 2.4rem;
    font-weight: bold;
}
.m_modal .p_iconTitle small {
    display: block;
    margin-top: 3px;
    font-size: 1.6rem;
    font-weight: normal;
}
.m_modal .p_normalTitle {
    margin: 70px 0 30px;
    font-size: 2.4rem;
    font-weight: bold;
}
.m_modal .p_primeTitle {
    background: #DCECFF;
    margin-top: 24px;
    margin-bottom: 16px;
    padding: 11px 14px;
}
.m_modal .p_normalTitle:first-child {
    margin-top: 0;
}
.m_modal .p_iconTitle ~ .p_normalTitle {
    margin: 35px 0 10px;
}
.m_modal .p_squareTitle {
    position: relative;
    margin: 35px 0 10px;
    padding-left: 20px;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_modal .p_squareTitle::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #4686d6;
}
body.s_attend .m_modal .p_squareTitle::before {
    background-color: #98191e;
}
.m_modal .p_largeArea {
    font-size: 2.4rem;
}
.m_modal .p_largeArea p {
    font-weight: bold;
}
.m_modal .p_grayBox {
    margin-top: 35px;
    background-color: #f5f5f5;
    padding: 20px 30px;
}
.m_modal > .p_btnArea,
.m_modal .p_window > .p_btnArea {
    border-top: 1px solid #dcecff;
    display: flex;
    height: 130px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
}
.m_modal .p_close {
    position: relative;
    margin: 0 auto;
    width: 162px;
    height: 70px;
    border: 1px solid #333;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
}
.m_modal .p_close:hover {
    opacity: 0.7;
}
.m_modal .p_close::before {
    content: '';
    position: absolute;
    top: 43%;
    left: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
}
.m_modal .p_btn {
    width: 255px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
}
.m_modal .p_btn.s_cancel {
    border: 1px solid #333;
}
.m_modal .p_btn.s_enter {
    background-color: #6fba40;
    color: #fff;
}
body.s_attend .m_modal .p_btn.s_enter {
    background-color: #222;
}
.m_modal .p_btn.s_disabled {
    background-color: #eee;
    color: #888;
    cursor: default;
}
.m_modal .p_btn small {
    display: block;
    font-size: 1.1rem;
}
.m_modal:has(.p_confirm) {
    background-color: rgba(0,0,0,0.75);
    z-index: 1010;
}
.m_modal .p_confirm {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    max-width: 1000px;
    margin: 0 auto;
    transform: translateY(-50%);
    background-color: #fff;
}
.m_modal .p_confirm .p_scrollInner {
    max-height: calc(100vh - 100px);
    padding: 40px;
}
.m_modal .p_confirm h2 {
    margin-bottom: 35px;
    border-bottom: 3px solid #222;
    padding-bottom: 8px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.m_modal .p_confirm .p_attention {
    color: #dd1111;
    font-weight: bold;
}
.m_modal .p_confirm table {
    margin: 15px 0 35px;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}
.m_modal .p_confirm table th,
.m_modal .p_confirm table td {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 15px;
}
.m_modal .p_confirm table th:nth-child(2),
.m_modal .p_confirm table td:nth-child(2) {
    border-right-width: 3px;
    width: 45%;
}
.m_modal .p_confirm table td:nth-child(3) {
    width: 27%;
}
.m_modal .p_confirm table th {
    background-color: #f5f5f5;
    padding: 18px 20px;
    font-weight: bold;
}
.m_modal .p_confirm table .s_num {
    padding: 8px;
    text-align: center;
}
.m_modal .p_confirm .p_note {
    font-size: 11px;
}
.m_modal .p_confirm .p_okBtn {
    margin: 15px auto 0;
    width: 145px;
    height: 50px;
    border-radius: 4px;
    background-color: #6fba40;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
@media screen and (min-width: 1151px) {
    .m_modal.s_hasWindow {
        background-color: rgba(0,0,0,0.75);
        z-index: 1010;
    }
    .m_modal .p_window {
        position: absolute;
        top: 50px;
        left: 20px;
        right: 20px;
        bottom: 50px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }
    .m_modal .p_window .p_scrollArea {
        height: calc(100vh - 200px);
        height: calc(100dvh - 200px);
    }
    .m_modal .p_window > .p_btnArea {
        height: 100px;
    }
}
@media screen and (max-width: 1150px) {
    .m_modal {
        padding-top: 80px;
    }
    .m_modal .p_closeBtn {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .m_modal .p_closeBtn::before,
    .m_modal .p_closeBtn::after {
        width: 15px;
    }
    .m_modal .p_scrollArea {
        max-width: none;
        height: calc(100vh - 170px);
        height: calc(100dvh - 170px);
    }
    .m_modal .p_scrollInner {
        padding: 0 20px 40px;
    }
    .m_modal .p_normalTitle {
        margin: 70px 0 30px;
    }
    .m_modal .p_iconTitle {
        margin: 0 0 35px;
    }
    .m_modal > .p_btnArea,
    .m_modal .p_window > .p_btnArea {
        height: 90px;
    }
    .m_modal .p_close {
        height: 50px;
    }
}
@media screen and (min-width: 1000px) {
    .m_modal .p_innerBox {
        border: 1px solid #ccc;
        border-radius: 20px;
        padding: 40px;
    }
}
@media screen and (max-width: 767px) {
    .m_modal {
        padding-top: 70px;
    }
    .m_modal .p_closeBtn {
        top: 15px;
        right: 15px;
    }
    .m_modal .p_scrollArea {
        height: calc(100vh - 150px);
        height: calc(100dvh - 150px);
    }
    .m_modal .p_scrollInner {
        padding: 0 15px 30px;
    }
    .m_modal .p_iconTitle {
        margin: 0 0 20px;
        justify-content: flex-start;
        gap: 10px;
        font-size: 1.6rem;
    }
    .m_modal .p_iconTitle.s_spCenter {
        justify-content: center;
    }
    .m_modal .p_iconTitle small {
        font-size: 1.2rem;
    }
    .m_modal .p_iconTitle img {
        width: auto;
        max-width: 68px;
        max-height: 42px;
    }
    .m_modal .p_normalTitle {
        margin: 35px 0 10px;
        font-size: 1.6rem;
    }
    .m_modal .p_iconTitle ~ .p_normalTitle {
        margin: 20px 0 5px;
    }
    .m_modal .p_squareTitle {
        margin: 20px 0 5px;
        padding-left: 15px;
        font-size: 1.5rem;
    }
    .m_modal .p_squareTitle::before {
        top: 5px;
    }
    .m_modal .p_largeArea {
        font-size: 1.6rem;
    }
    .m_modal .p_grayBox {
        margin-top: 15px;
        padding: 10px 15px;
    }
    .m_modal > .p_btnArea,
    .m_modal .p_window > .p_btnArea {
        height: 80px;
        gap: 10px;
    }
    .m_modal .p_close {
        width: 112px;
        padding-left: 10px;
        font-size: 1.4rem;
    }
    .m_modal .p_close::before {
        top: 42%;
        left: 12px;
        width: 8px;
        height: 8px;
    }
    .m_modal .p_btn {
        font-size: 1.4rem;
    }
    .m_modal .p_btn small {
        font-size: 1rem;
    }
	.m_modal .p_confirm {
		left: 15px;
		right: 15px;
	}
	.m_modal .p_confirm .p_scrollInner {
		padding: 20px;
	}
	.m_modal .p_confirm h2 {
		margin-bottom: 25px;
		border-bottom: 2px solid #222;
		padding-bottom: 5px;
		font-size: 18px;
	}
	.m_modal .p_confirm table {
		margin: 15px 0 25px;
	}
	.m_modal .p_confirm table th,
	.m_modal .p_confirm table td {
		padding: 10px 8px;
		font-size: 12px;
	}
	.m_modal .p_confirm table th:nth-child(2),
	.m_modal .p_confirm table td:nth-child(2) {
		width: 38%;
	}
	.m_modal .p_confirm table td:nth-child(3) {
		width: 24%;
	}
	.m_modal .p_confirm table .s_num {
		padding: 4px;
	}
	.m_modal .p_confirm table th {
		padding: 10px 12px;
	}
	.m_modal .p_confirm .p_note {
		font-size: 10px;
	}
	.m_modal .p_confirm .p_okBtn {
		height: 44px;
		font-size: 16px;
	}
}

.m_estimate .p_date {
    margin: 0 30px 15px 0;
    text-align: right;
    font-size: 1.4rem;
}
.m_estimate .p_box {
    border: 1px solid #ccc;
    border-radius: 30px;
}
.m_estimate .p_inner {
    padding: 20px 30px;
}
.m_estimate .p_inner + .p_inner {
    border-top: 1px solid #ccc;
}
.m_estimate .p_strongText {
    margin-bottom: 15px;
    color: #dd1111;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
}
.m_estimate dl {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.m_estimate dt {
    width: 125px;
    background-color: #f5f5f5;
    border-radius: 11px;
    padding: 4px 0;
    text-align: center;
    font-size: 1.1rem;
}
.m_estimate dd {
    font-size: 1.4rem;
}
.m_estimate .m_table {
    margin: 10px 0;
}
@media screen and (max-width: 767px) {
    .m_estimate .p_date {
        margin: 0 0 15px 0;
    }
    .m_estimate .p_box {
        border-radius: 15px;
    }
    .m_estimate .p_inner {
        padding: 18px;
    }
    .m_estimate dt {
        width: 70px;
    }
    .m_estimate dd {
        font-size: 1.3rem;
    }
    .m_estimate .m_table {
        margin: 5px 0;
    }
}

.m_ageList {
    background-color: #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 4.4%;
    padding: 25px 30px 30px;
}
.m_ageList li {
    width: 21.7%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 6px;
    font-size: 1.4rem;
}
@media screen and (max-width: 1000px) {
    .m_ageList {
        gap: 18px 5%;
    }
    .m_ageList li {
        width: 30%;
    }
}
@media screen and (max-width: 767px) {
    .m_ageList {
        gap: 10px 4%;
        padding: 18px;
    }
    .m_ageList li {
        width: 48%;
        font-size: 1.1rem;
    }
}

.m_table {
    width: 100%;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}
.m_table th,
.m_table td {
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
    font-size: 1.4rem;
}
.m_table th {
    background-color: #f5f5f5;
    padding: 17px 20px;
    text-align: center;
    font-weight: bold;
}
.m_table td {
    padding: 12px 20px;
}
.m_table tr.s_bgOrange td {
    background-color: #ffebd3;
}
.m_table tr.s_bgBlue td {
    background-color: #dcecff;
}
.m_table tr.s_bgRed td {
    background-color: #f7e9e9;
}
.m_table td.s_price {
    text-align: right;
    white-space: nowrap;
}
.m_table.s_customize tr:first-child th {
    background-color: #b2d5ff;
}
body.s_attend .m_table.s_customize tr:first-child th {
    background-color: #981a1e;
    color: #fff;
}
.m_table.s_customize td {
    padding: 17px 20px;
}
.m_table.s_customize td:first-child {
    width: 38%;
}
.m_table.s_case th {
    padding: 5px;
    white-space: nowrap;
}
.m_table.s_case td:first-child {
    width: 18%;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .m_table th,
    .m_table td {
        font-size: 1.1rem;
    }
    .m_table th {
        padding: 14px;
    }
    .m_table td {
        padding: 6px 10px;
    }
    .m_table.s_customize th {
        font-size: 1.4rem;
    }
    .m_table.s_customize td {
        display: block;
        padding: 12px 10px 8px;
        font-size: 1.4rem;
    }
    .m_table.s_customize td + td {
        border-top: none;
        padding: 0 10px 12px;
    }
    .m_table.s_customize td:first-child {
        width: auto;
    }
}

.m_radioList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
}
.m_radioList.s_marginL {
    gap: 25px 60px;
}
.m_radioList label {
    cursor: pointer;
}
.m_radioList input {
    display: none;
}
.m_radioList input + span {
    position: relative;
    padding-left: 30px;
}
.m_radioList input + span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #333;
    border-radius: 50%;
    background-color: #fff;
}
.m_radioList input:checked + span::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333;
}
.m_radioList .m_selectbox {
    margin-left: 15px;
}

.m_radioBoxList {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 2.1%;
}
.m_radioBoxList.s_col2 {
    gap: 20px 4%;
}
.m_radioBoxList.s_col2 li {
    width: 48%;
}
.m_radioBoxList.s_col3 {
    gap: 20px 2%;
}
.m_radioBoxList.s_col3 li {
    width: 32%;
}
.m_radioBoxList.s_col4 li {
    width: 23.4%;
}
.m_radioBoxList.s_col5 li {
    width: 18.3%;
}
.m_radioBoxList.s_col6 li {
    width: 14.9%;
}
.m_radioBoxList.s_purpose {
    gap: 20px 2%;
}
.m_radioBoxList.s_purpose li {
    width: 49%;
}
.m_radioBoxList.s_purpose li:nth-child(n+3) {
    width: 32%;
}
.m_radioBoxList label {
    cursor: pointer;
}
.m_radioBoxList input {
    opacity: 0;
}
.m_radioBoxList input + span {
    position: relative;
    display: flex;
    align-items: center;
    height: 70px;
    border: 1px solid #333;
    background-color: #fff;
    padding: 10px 10px 10px 35px;
    font-size: 1.4rem;
}
.m_radioBoxList.s_sizeS input + span {
    height: 50px;
}
.m_radioBoxList.s_sizeL input + span {
    height: 90px;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_radioBoxList.s_purpose input + span {
    height: 90px;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_radioBoxList input:checked + span {
    border-color: #0b52ae;
    background-color: #0b52ae;
    color: #fff;
    font-weight: bold;
}
.m_radioBoxList.s_green input:checked + span {
    border-color: #6fba40;
    background-color: #6fba40;
}
body.s_attend .m_radioBoxList input:checked + span {
    border: 4px solid var(--main-color);
    background-color: #fff;
    padding: 7px 7px 7px 32px;
    color: var(--main-color);
}
body.s_attend .m_radioBoxList.s_fill input:checked + span {
    background-color: var(--main-color);
    color: #fff;
}
.m_radioBoxList input:disabled + span {
    background-color: #eee;
    color: #888;
    cursor: default;
}
.m_radioBoxList input + span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 16px;
    height: 16px;
    margin: auto 0;
    border: 1px solid #333;
    border-radius: 50%;
}
.m_radioBoxList input:checked + span::before {
    content: '';
    position: absolute;
    border: 3px solid #fff;
}
body.s_attend .m_radioBoxList input:checked + span::before {
    left: 7px;
    border: none;
    background-color: var(--main-color);
}
body.s_attend .m_radioBoxList.s_fill input:checked + span::before {
    border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
    .m_radioBoxList {
        gap: 10px 2.8%;
    }
    .m_radioBoxList.s_spCol1 li {
        width: 100%;
    }
    .m_radioBoxList.s_col2 {
        gap: 10px 4%;
    }
    .m_radioBoxList.s_col4 li,
    .m_radioBoxList.s_col5 li,
    .m_radioBoxList.s_col6 li {
        width: 48.6%;
    }
    .m_radioBoxList.s_purpose {
        gap: 10px 2.8%;
    }
    .m_radioBoxList.s_purpose li {
        width: 48.6%;
    }
    .m_radioBoxList.s_purpose li:nth-child(n+3) {
        width: 48.6%;
    }
    .m_radioBoxList input + span {
        height: 60px;
    }
    .m_radioBoxList.s_sizeS input + span {
        height: 40px;
    }
    .m_radioBoxList.s_sizeL input + span {
        font-size: 1.5rem;
    }
    .m_radioBoxList.s_purpose input + span {
        height: 80px;
        font-size: 1.5rem;
    }
}

.m_radioImgBoxList {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 2%;
}
.m_radioImgBoxList > li {
    width: 49%;
}
.m_radioImgBoxList li:last-child {
    width: 100%;
}
.m_radioImgBoxList label {
    cursor: pointer;
}
.m_radioImgBoxList input {
    display: none;
}
.m_radioImgBoxList input + span {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 145px;
    border: 1px solid #333;
    background-color: #fff;
    padding: 10px 20px 10px 35px;
    font-size: 1.4rem;
    line-height: 1.5;
}
.m_radioImgBoxList li:last-child input + span {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 200px;
}
.m_radioImgBoxList input:checked + span {
    border-color: #0b52ae;
    background-color: #0b52ae;
    color: #fff;
    font-weight: bold;
}
body.s_attend .m_radioImgBoxList input:checked + span {
    border: 4px solid var(--main-color);
    background-color: #fff;
    padding: 7px 17px 7px 32px;
    color: inherit;
    font-weight: normal;
}
.m_radioImgBoxList .p_mainText {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_radioImgBoxList input + span .p_mainText::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -24px;
    width: 16px;
    height: 16px;
    border: 1px solid #333;
    border-radius: 50%;
}
.m_radioImgBoxList input:checked + span .p_mainText::before {
    content: '';
    position: absolute;
    border: 3px solid #fff;
}
body.s_attend .m_radioImgBoxList input:checked + span .p_mainText::before {
    background-color: var(--main-color);
    border: none;
}
.m_radioImgBoxList .p_subText {
    margin-bottom: 15px;
    display: block;
}
.m_radioImgBoxList .p_check {
    position: relative;
    display: block;
    padding-left: 20px;
}
.m_radioImgBoxList .p_check::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    width: 7px;
    height: 12px;
    border-right: 3px solid #0b52ae;
    border-bottom: 3px solid #0b52ae;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .m_radioImgBoxList {
        margin: 10px 0;
        gap: 10px;
    }
    .m_radioImgBoxList > li {
        width: 100%;
    }
    .m_radioImgBoxList input + span {
        height: auto;
        padding: 10px 18px 10px 35px;
        font-size: 1rem;
    }
    .m_radioImgBoxList li:last-child input + span {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
    body.s_attend .m_radioImgBoxList input:checked + span {
        padding: 7px 15px 7px 32px;
    }
    .m_radioImgBoxList li:last-child img {
        padding: 10px 10px 0;
    }
    .m_radioImgBoxList .p_mainText {
        margin-bottom: 5px;
        font-size: 1.5rem;
    }
    .m_radioImgBoxList .p_subText {
        margin-bottom: 5px;
    }
    .m_radioImgBoxList .p_check {
        padding-left: 18px;
    }
    .m_radioImgBoxList .p_check::before {
        top: 1px;
    }
}

.m_customizeSum {
    position: relative;
    border: 1px solid #d8d8d8;
    border-top: none;
    background-color: #f5f5f5;
    padding: 20px 30px 0;
    font-size: 1.4rem;
    text-align: right;
}
.m_customizeSum .p_price {
    font-weight: bold;
}
.m_customizeSum .p_price strong {
    margin-left: 20px;
    color: #981a1e;
    font-size: 3.2rem;
}
.m_customizeSum .p_price small {
    margin-left: 6px;
    font-size: 1.8rem;
}
.m_customizeSum .p_toggleBtn {
    margin: 15px 0 20px;
    text-decoration: underline;
    cursor: pointer;
}
.m_customizeSum .p_toggleBtn:hover {
    text-decoration: none;
}
.m_customizeSum .p_toggleBtn::after {
    content: '＋';
}
.m_customizeSum .p_toggleBtn.s_open::after {
    content: '－';
}
.m_customizeSum .p_toggleArea {
    margin: 0 -30px;
    display: none;
}
.m_customizeSum .m_ageList {
    background: #efefef;
}
@media screen and (max-width: 767px) {
    .m_customizeSum {
        padding: 15px 15px 0;
    }
    .m_customizeSum .p_price strong {
        margin-left: 15px;
    }
    .m_customizeSum .p_toggleBtn {
        margin: 10px 0 15px;
    }
    .m_customizeSum .p_toggleArea {
        margin: 0 -15px;
    }
}

.m_dotList > li {
    position: relative;
    padding-left: 1em;
    line-height: 1.5;
}
.m_dotList > li::before {
    content: '・';
    position: absolute;
    top: 0;
    left: 0;
}

.m_caseList > li {
    line-height: 1.6;
}
.m_caseList > li + li {
    margin-top: 10px;
}

.m_indentList > li {
    padding-left: 1em;
    text-indent: -1em;
}

.m_boxDl {
    margin: 16px 0;
    border: 1px solid #d8d8d8;
    background-color: #fff;
    display: flex;
}
.m_boxDl dt {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 8px 20px;
    font-size: 1.1rem;
    white-space: nowrap;
}
.m_boxDl dd {
    padding: 6px 25px;
}
@media screen and (max-width: 767px) {
    .m_boxDl dt {
        padding: 8px 10px;
    }
    .m_boxDl dd {
        padding: 6px 10px;
    }
}

.m_inlineList {
    margin: 5px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
}
.m_inlineList.s_center {
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .m_inlineList.s_spBlock {
        flex-direction: column;
    }
}

.m_radioArea {
    margin: 35px 0;
    font-size: 1.4rem;
}
.m_radioArea .p_head {
    position: relative;
    display: flex;
    height: 90px;
    align-items: center;
    justify-content: center;
    background-color: #0b52ae;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.7;
}
.m_radioArea .p_head img {
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto 0;
}
.m_radioArea .p_head .p_logo {
    background-color: #fff;
    padding: 5px;
    width: 130px;
}
.m_radioArea .p_body {
    border: 1px solid #0b52ae;
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
}
.m_radioArea .p_inner {
    padding: 20px 12px 25px 30px;
    width: 59.6%;
}
.m_radioArea .p_inner2 {
    padding: 25px 12px 38px 30px;
    width: 100%;
}
.m_radioArea .p_label {
    margin: 10px 0 0;
    font-weight: bold;
}
.m_radioArea .m_radioBoxList {
    justify-content: space-between;
}
.m_radioArea .p_inner .m_radioBoxList {
    margin-top: 8px;
}
.m_radioArea .p_inner .m_radioBoxList li {
    width: 29.4%;
}
.m_radioArea .p_prime {
    border: 10px solid #ffefc8;
    padding: 11px 18px 15px 12px;
    width: 40.4%;
}
.m_radioArea .p_prime:first-child {
    width: 100%;
}
.m_radioArea .p_prime .p_logoArea {
    display: flex;
    align-items: center;
    gap: 0 3%;
    margin-bottom: 8px;
}
.m_radioArea .p_prime .p_logoArea img {
    width: 34%;
    max-width: 140px;
}
.m_radioArea .p_prime small {
    display: block;
    font-size: 1.1rem;
    line-height: 1.3;
}
.m_radioArea .p_prime .m_radioBoxList li {
    width: 45.7%;
}
.m_radioArea .p_inner2 .m_radioBoxList {
    justify-content: center;
}
.m_radioArea .p_inner2 .m_radioBoxList li {
    width: 50%;
    max-width: 235px;
}
.m_radioArea .p_inner2 .m_radioBoxList input + span {
    height: 50px;
}
.m_radioArea .p_note {
    padding: 15px 30px;
    font-size: 1.2rem;
}
@media screen and (max-width: 1000px) {
    .m_radioArea .p_body {
        flex-direction: column;
    }
    .m_radioArea .p_inner {
        padding: 25px 30px;
        width: 100%;
    }
    .m_radioArea .p_head .p_logo {
        width: 100px;
    }
    .m_radioArea .p_prime {
        padding: 15px 20px 25px;
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .m_radioArea {
        margin: 20px 0;
    }
    .m_radioArea .p_head {
        height: auto;
        padding: 12px 15px;
        gap: 8px;
        text-align: left;
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .m_radioArea .p_head img {
        position: static;
        width: 40px;
    }
    .m_radioArea .p_head .p_logo {
        width: 80px;
    }
    .m_radioArea .p_inner,
    .m_radioArea .p_inner2 {
        padding: 13px;
    }
    .m_radioArea .p_inner .m_radioBoxList li {
        width: 48.5%;
    }
    .m_radioArea .p_prime {
        border: 4px solid #ffefc8;
        border-top-width: 6px;
        padding: 10px 11px 11px;
    }
    .m_radioArea .p_prime .p_logoArea {
        font-size: 1.2rem;
    }
    .m_radioArea .p_prime .p_logoArea img {
        width: 32%;
    }
    .m_radioArea .p_prime .m_radioBoxList li {
        width: 48.5%;
    }
    .m_radioArea .p_inner2 .m_radioBoxList li {
        width: 100%;
        max-width: none;
    }
    .m_radioArea .p_note {
        padding: 10px 15px;
        font-size: 1.1rem;
    }
}

.m_noteText {
    font-size: 1.2rem;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.m_textLink {
    text-decoration: underline;
}
.m_textLink:hover {
    text-decoration: none;
}

.m_serviceList > li {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #dcecff;
    padding: 15px 30px 20px;
    font-size: 1.4rem;
}
body.s_attend .m_serviceList > li {
    background-color: #f7e9e9;
}
.m_serviceList > li.s_prime {
    border: 10px solid #ffefc8;
    background-color: #fff;
    padding: 15px 20px 20px;
}
.m_serviceList .p_icon {
    width: 100px;
    flex-shrink: 0;
    flex-grow: 0;
}
.m_serviceList > li > div {
    flex-grow: 1;
}
.m_serviceList > li > div.s_hasLink {
    padding-top: 10px;
}
.m_serviceList h3 {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_serviceList h3 img {
    width: 120px;
    vertical-align: -10px;
}
.m_serviceList .p_link {
    margin-top: 5px;
    text-align: right;
}
.m_serviceList .m_boxDl {
    margin: 8px 0;
}
@media screen and (max-width: 500px) {
    .m_serviceList > li {
        margin: 3px 0;
        display: block;
        padding: 13px 10px 11px 15px;
    }
    .m_serviceList > li.s_prime {
        border: 6px solid #ffefc8;
         padding: 10px 9px 11px;
    }
    .m_serviceList .p_icon {
        float: left;
        margin-right: 10px;
        width: 60px;
    }
    .m_serviceList h3 {
        margin-bottom: 2px;
        font-size: 1.5rem;
    }
    .m_serviceList h3 img {
        width: 45px;
        vertical-align: -2px;
    }
    .m_serviceList p {
        overflow: hidden;
    }
    .m_serviceList .p_link {
        font-size: 1.2rem;
    }
}

.m_compensationDetail .p_header {
    display: flex;
    justify-content: space-between;
}
.m_compensationDetail .p_header div {
    background-color: #f5f5f5;
    padding: 14px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_compensationDetail .p_header div:first-child {
    width: 77.1%;
}
.m_compensationDetail .p_header div:last-child {
    width: 20.8%;
}
.m_compensationDetail .p_row {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
}
.m_compensationDetail .p_service {
    position: relative;
    border-bottom: 3px solid #eee;
    width: 77.1%;
    padding: 24px 10px 26px 130px;
}
.m_compensationDetail .p_service h3 {
    margin-bottom: 12px;
    font-size: 1.8rem;
    font-weight: bold;
}
.m_compensationDetail .p_service h3 img {
    position: absolute;
    top: 28px;
    left: 10px;
    width: 100px;
}
.m_compensationDetail .p_optionBox {
    position: relative;
    margin-top: 5px;
    border: 2px solid #dcecff;
    background-color: #f5f9ff;
    padding: 25px 28px 28px 78px;
}
.m_compensationDetail .p_optionBox img {
    position: absolute;
    top: 30px;
    left: 20px;
}
.m_compensationDetail .p_radioArea {
    margin-top: 10px;
}
.m_compensationDetail .p_amountArea {
    width: 20.8%;
    min-width: 170px;
    border-bottom: 3px solid #eee;
    padding: 24px 8px;
    text-align: right;
}
.m_compensationDetail .p_amount {
    margin: 5px 0 20px;
    font-size: 1.8rem;
    font-weight: bold;
}
@media screen and (max-width: 600px) {
    .m_compensationDetail {
        border-top: 3px solid #eee;
    }
    .m_compensationDetail .p_header {
        display: none;
    }
    .m_compensationDetail .p_row {
        flex-direction: column;
        font-size: 1.2rem;
    }
    .m_compensationDetail .p_service {
        border-bottom: none;
        width: 100%;
        padding: 10px 15px 15px;
    }
    .m_compensationDetail .p_service h3 {
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.5rem;
    }
    .m_compensationDetail .p_service h3 img {
        position: static;
         width: 60px;
    }
    .m_compensationDetail .p_optionBox {
        margin-top: 10px;
        padding: 15px 18px 18px;
    }
    .m_compensationDetail .p_optionBox img {
        position: static;
        float: left;
        margin: 0 10px 3px 0;
        width: 36px;
    }
    .m_compensationDetail .p_radioArea {
        margin-top: 10px;
        padding-top: 15px;
    }
    .m_compensationDetail .p_amountArea {
        width: 100%;
        padding: 0 15px 12px;
    }
    .m_compensationDetail .p_help {
        margin-top: 2px;
        float: left;
    }
    .m_compensationDetail .p_amount {
        margin: 0 0 5px;
        font-size: 1.5rem;
    }
}

.m_linkBtn {
    position: relative;
    margin: 15px 0;
    display: inline-flex;
    align-items: center;
    height: 40px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0 40px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
}
.m_linkBtn::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 12px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(45deg);
}
@media screen and (max-width: 600px) {
    .m_linkBtn {
        margin: 5px 0;
        height: 31px;
        padding: 0 33px;
        font-size: 1.2rem;
    }
    .m_linkBtn::after {
        top: 11px;
        left: 8px;
    }
}

.m_toggleArea {
    margin-top: 50px;
}
.m_toggleArea .p_toggleTitle {
    position: relative;
    background-color: #081d65;
    padding: 13px 20px;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
}
body.s_attend .m_toggleArea .p_toggleTitle {
    background-color: #404040;
}
.m_toggleArea .p_toggleTitle::before,
.m_toggleArea .p_toggleTitle::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 16px;
    height: 2px;
    margin: auto 0;
    background-color: #fff;
}
.m_toggleArea .p_toggleTitle::after {
    transform: rotate(90deg);
}
.m_toggleArea .p_toggleTitle.s_open::after {
    display: none;
}
.m_toggleArea .p_toggleBody {
    display: none;
    padding-top: 40px;
}
.m_toggleArea.s_box {
    margin: 20px 0;
}
.m_toggleArea.s_box .p_toggleTitle {
    padding: 11px 20px;
    text-align: center;
    font-size: 1.8rem;
}
.m_toggleArea.s_box .p_toggleBody {
    background-color: #fff;
    padding: 30px;
    font-size: 1.4rem;
}
.m_toggleArea.s_checkbox .p_toggleBody {
    background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
    .m_toggleArea {
        margin-top: 40px;
    }
    .m_toggleArea .p_toggleTitle {
        padding: 12px 15px 13px;
        font-size: 1.6rem;
    }
    .m_toggleArea .p_toggleTitle::before,
    .m_toggleArea .p_toggleTitle::after {
        right: 15px;
    }
    .m_toggleArea .p_toggleBody {
        padding-top: 20px;
    }
    .m_toggleArea.s_box {
        margin: 15px 0;
    }
    .m_toggleArea.s_box .p_toggleTitle {
        font-size: 1.5rem;
    }
    .m_toggleArea.s_box .p_toggleBody {
        padding: 15px;
    }
}

.m_strongBox {
    margin-top: 20px;
    background-color: #fff0f0;
    padding: 25px 30px;
}

.m_companyInfo {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.6;
}
.m_companyInfo dt {
    font-weight: bold;
}
.m_companyInfo a:link {
    text-decoration: none;
}
.m_companyInfo a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .m_companyInfo {
        font-size: 1.2rem;
    }
}

.m_shoninNumber {
    margin-top: 5px;
    font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
    .m_shoninNumber {
        font-size: 1.2rem;
    }
}

.m_colImg {
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .m_colImg {
        display: block;
        text-align: center;
    }
}

.m_colImg02 {
    display: flex;
    flex-wrap: wrap;
}
.m_colImg02 > div {
    width: 25%;
}
@media screen and (max-width: 767px) {
    .m_colImg02 {
        justify-content: center;
    }
    .m_colImg02 > div {
        width: 85%;
    }
}

.m_reasonArea {
    margin-top: 60px;
	border-top: 1px solid #d9d9d9;
    padding: 65px 0 70px;
}
.m_reasonArea h2 {
	margin: 60px 0 40px;
    border-bottom: 3px solid #981a1e;
    padding-bottom: 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
}
.m_reasonArea h2:first-child {
	margin-top: 0;
}
.m_reasonArea .p_lead {
    font-size: 1.8rem;
    font-weight: bold;
}
.m_reasonArea .p_lead strong {
	color: #ff0000;
}
.m_reasonArea h3 {
	margin: 55px 0 25px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
}
.m_reasonArea h3 > span {
	display: inline-block;
	border-bottom: 1px solid #ca4c4c;
}
.m_reasonArea .p_inner {
    padding: 0 20px;
}
.m_reasonArea .p_box {
    margin: 10px 0 0;
	border: 1px solid #d9d9d9;
    padding: 40px;
}
.m_reasonArea .p_box > h4 {
	margin: 50px 0 30px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
}
.m_reasonArea .p_box > h4:first-child {
	margin-top: 0;
}
.m_reasonArea .p_box > h4 > span {
	display: inline-block;
	padding-bottom: 5px;
	border-bottom: 1px solid #e19999;
}
.m_reasonArea .m_lineTitle {
    margin-top: 45px !important;
}
.m_reasonArea .m_lineTitle:first-child {
    margin-top: 0 !important;
}
.m_reasonArea .p_colArea {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.m_reasonArea .p_col {
    width: 47.7%;
}
.m_reasonArea .p_col .m_lineTitle {
    margin: 15px 0 !important;
}
.m_reasonArea .p_col h4 {
	margin-bottom: 12px;
	border-radius: 20px;
	background-color: #f3f3f3;
	padding: 10px;
	text-align: center;
	font-weight: bold;
}
.m_reasonArea .p_boxText {
	margin: 20px 0 16px;
	border: 1px solid #404040;
	padding: 15px;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.5;
}
.m_reasonArea .p_boxText + p {
	font-size: 1.3rem;
}
.m_reasonArea .p_toggleTitle {
    position: relative;
    margin-top: 30px;
    background-color: #404040;
    padding: 11px;
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
}
.m_reasonArea .p_toggleTitle::before,
.m_reasonArea .p_toggleTitle::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 16px;
    height: 2px;
    background-color: #fff;
    margin: auto 0;
}
.m_reasonArea .p_toggleTitle::after {
    transform: rotate(90deg);
}
.m_reasonArea .p_toggleTitle.s_open::after {
    display: none;
}
.m_reasonArea .p_toggleBody {
    background-color: #f5f5f5;
    padding: 25px 30px 35px;
    font-size: 1.4rem;
    display: none;
}
.m_reasonArea table {
    margin: 20px 0;
    width: 100%;
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
}
.m_reasonArea table td {
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    width: 50%;
    height: 52px;
    padding: 12px;
    text-align: center;
    font-size: 1.4rem;
}
.m_reasonArea table td.s_ok {
    background-color: #f8fff4;
}
.m_reasonArea table td.s_ng {
    background-color: #f5f5f5;
}
.m_reasonArea table small {
	margin-top: 10px;
	display: block;
	font-size: 11px;
}
.m_reasonArea table .p_icon {
    margin-right: 8px;
    vertical-align: -6px;
}
.m_reasonArea .p_voice {
    margin: 30px 0 15px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.m_reasonArea .p_voice p {
    position: relative;
    border: 2px solid #98191e;
    border-radius: 14px;
    background-color: #fff;
    min-height: 94px;
    padding: 25px 30px;
    font-size: 1.4rem;
}
.m_reasonArea .p_voice p::before {
    content: '';
    position: absolute;
    top: 23px;
    left: -16px;
    border-right: 16px solid #98191e;
    border-bottom: 14px solid transparent;
}
.m_reasonArea .p_voice p::after {
    content: '';
    position: absolute;
    top: 25px;
    left: -11px;
    border-right: 16px solid #fff;
    border-bottom: 14px solid transparent;
}
.m_reasonArea .p_note {
    font-size: 1.1rem;
}
.m_reasonArea .p_lead02 {
	margin-bottom: 30px;
	font-size: 1.4rem;
	font-weight: bold;
}
.m_reasonArea .p_boxNote {
	margin: 20px 0 16px;
	border: 1px solid #404040;
	padding: 15px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
    .m_reasonArea {
        margin-top: 30px;
        padding: 30px 0;
    }
    .m_reasonArea h2 {
        margin-bottom: 25px;
        border-bottom-width: 2px;
        padding-bottom: 12px;
        font-size: 1.7rem;
    }
    .m_reasonArea .p_lead {
        font-size: 1.4rem;
    }
	.m_reasonArea h3 {
		margin: 40px 0 15px;
		font-size: 1.6rem;
	}
	.m_reasonArea h3 > span {
		padding-bottom: 5px;
	}
    .m_reasonArea .p_inner {
        padding: 0;
    }
    .m_reasonArea .p_box {
        padding: 20px;
    }
	.m_reasonArea .p_box > h4 {
		margin: 35px 0 15px;
		font-size: 1.4rem;
    }
    .m_reasonArea .p_colArea {
        flex-direction: column;
        gap: 30px;
    }
    .m_reasonArea .p_col {
        width: 100%;
    }
	.m_reasonArea .p_col h4 {
		padding: 8px;
		font-size: 1.4rem;
	}
	.m_reasonArea .p_boxText {
		padding: 12px;
		font-size: 1.3rem;
	}
	.m_reasonArea .p_boxText + p {
	font-size: 1.3rem;
	}
    .m_reasonArea .p_toggleTitle {
        margin-top: 25px;
        padding-right: 20px;
        font-size: 1.6rem;
    }
    .m_reasonArea .p_toggleTitle::before,
    .m_reasonArea .p_toggleTitle::after {
        right: 12px;
    }
    .m_reasonArea .p_toggleBody {
        padding: 20px 15px 25px;
        font-size: 1.2rem;
    }
    .m_reasonArea table {
        margin: 15px 0;
    }
    .m_reasonArea table td {
        padding: 10px 5px;
        font-size: 1.2rem;
    }
    .m_reasonArea table .p_icon {
        margin-right: 5px;
        width: 18px;
        vertical-align: -5px;
    }
    .m_reasonArea .p_voice {
        margin: 25px 0 12px;
        gap: 10px;
    }
    .m_reasonArea .p_voice img {
        width: 70px;
    }
    .m_reasonArea .p_voice p {
        border-radius: 12px;
        padding: 15px;
        font-size: 1.2rem;
    }
	.m_reasonArea .p_lead02 {
		margin-bottom: 20px;
		font-size: 1.2rem;
	}
}

.m_peopleNum span {
    margin: 0 2px;
    color: #dd1111;
    font-size: 220%;
    font-weight: bold;
    vertical-align: -1px;
}

.m_pageTop {
    position: sticky;
    bottom: 84px;
    height: 0;
    z-index: 200;
    margin: 0 40px 84px;
    text-align: right;
}
.m_pageTop a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #777;
    overflow: visible;
    font-size: 1.2rem;
    transition: opacity 0.2s;
}
.m_pageTop a:hover {
    opacity: 0.7;
}
.m_pageTop a::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 50%;
    width: 11px;
    height: 11px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform-origin: left top;
    transform: rotate(45deg);
}
.m_pageTop a span {
    position: absolute;
    top: 106%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
@media screen and (max-width: 1250px) {
    .m_pageTop {
        bottom: 160px;
    }
}
@media screen and (max-width: 1000px) {
    .m_pageTop {
        margin: 0 30px 70px;
        bottom: 60px;
    }
    .m_pageTop a {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .m_pageTop a::after {
        top: 14px;
        width: 9px;
        height: 9px;
    }
}
@media screen and (max-width: 580px) {
    .m_pageTop {
        bottom: 125px;
    }
}

#footer {
    padding: 30px 0;
    background: #5a5a5a;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, Osaka, "ＭＳ Ｐゴシック", MS PGothic, sans-serif;
    font-size: 1.2rem;
    line-height: 1;
}
address {
    padding: 30px 0 0 !important;
    border-top: solid 1px #fff;
    color: #fff;
}
@media screen and (max-width: 767px){
    address img {
        max-width: 100%;
    }
}
#localNav {
    width: auto;
    max-width: 1040px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
}
#localNav ul {
    float: none;
    padding-top: 0;
    padding-right: 50px;
    }
#localNav ul.separateLine {
    background: none;
    position: relative;
}
#localNav ul.separateLine::before {
    content: "";
    width: 1px;
    height: 100%;
    left: -25px;
    background: #fff;
    position: absolute;
}
#localNav li {
    padding: 0;
    margin-bottom: 14px;
}
#localNav li:last-child {
    margin-bottom: 0;
}
#localNav li a:link {
    color: #fff;
    background: url(/common/images/arrow_01.png) no-repeat 0 4px;
}
#localNav li a:visited {
    color: #fff;
    background: none;
}
#localNav li a:hover {
    color: #fff;
    background: none;
}
@media screen and (max-width: 767px){
    #localNav {
        padding: 0 15px;
        display: block;
        margin: 0 auto 30px !important;
    }
    #localNav ul.separateLine::before {
        display: none;
    }
    #localNav ul {
        padding-right: 0;
        padding-top: 18px;
    }
}

div#sidebar .sideContent {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.respModal_window {
    font-size: 1.4rem;
}

*:first-child {
    margin-top: 0;
}
*:last-child {
    margin-bottom: 0;
}
