@charset "UTF-8";

/*============================================================
reset
============================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,figure,footer,header,hgroup,menu,nav,section,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}address{font-style: normal;}article,aside,figure,footer,header,hgroup,nav,section{display:block;}img,object,embed{vertical-align: bottom;}html{overflow-y:scroll;}ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}del{text-decoration:line-through;}abbr[title],dfn[title]{border-bottom:1px dotted #000;cursor:help;}table{border-collapse:collapse;border-spacing:0;}th{font-weight:bold;}td{font-weight:normal;vertical-align:top;}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0;}input,select{vertical-align:middle;}input[type="radio"]{vertical-align:text-bottom;}input[type="checkbox"]{vertical-align:bottom;*vertical-align:baseline;}select,input,textarea{font:99% sans-serif;}table{font-size:inherit;font:100%;}a:hover,a:active{outline:none;}strong,th{font-weight:bold;}td,td img{vertical-align:top;}sub,sup{font-size:75%;line-height:0;position:relative;}sup{top:-0.5em;}sub{bottom:-0.25em;}pre,code,kbd,samp{font-family:monospace,sans-serif;}label,input[type=button],input[type=submit],button{cursor:pointer;}button,input,select,textarea{margin:0;}button{width:auto;overflow:visible;}.clear:before,.clear:after{content:"\0020";display:block;height:0;overflow:hidden;}.clear:after{clear:both;}.clear{zoom:1;}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;}/* pre{white-space:pre;white-space:pre-wrap;white-space:pre-line;word-wrap:break-word;} */


/*============================================================
base
============================================================*/
html {
    font-size: 62.5%; /* 10px相当*/
    height: 100%;
    min-height: 100%;
    -ms-overflow-style:none;
}

body {
    background: #fff;
    color: #21212F;
    font-family: 'YakuHanJP', 'Noto Sans JP', '-apple-system', BlinkMacSystemFont, 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'MS PGothic', Osaka, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    height: 100%;
    /* min-width: 1180px; */
    position: relative;
    -webkit-font-feature-settings: 'palt' 1; /*for Android 4.4*/
    font-feature-settings: 'palt' 1;
    -webkit-text-size-adjust: 100%;
}

@media print, screen and (min-width:641px) {
    body {
        background: #F3F3F4; 
    }
}

.mac body {
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.windows body p,
.windows body table {
    transform: rotate(0.001deg); /* win用webフォントアンチエイリアス */
}

main {
    display: block;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
    line-height: 1.7;
}

p,
li,
dd,
td {
    text-align: justify;
    text-justify: inter-ideograph;
}

li {
    list-style: none;
}

a {
    color: #565656;
    text-decoration: none;
    outline: none;
    -webkit-transition: all .3s .1s;
    transition: all .3s .1s;
}

img {
    max-width: 100%;
    height: auto;
}

/* IE用ビューポート設定 */
@-ms-viewport {
    width: auto !important;
    initial-scale: 1 !important;
}
@viewport {
    width: device-width !important;
    initial-scale: 1 !important;
}

/* テキストハイライト */
*::selection {
    background: rgba(170, 170, 170, .7);
}
*::-moz-selection {
    background: rgba(170, 170, 170, .7);
}

/*============================================================
汎用クラス
============================================================*/
/* スマートフォンのみ表示 */
.sp {
    display: none !important;
}

/* PCのみ表示 */
.pc {
    display: block !important;
}

/* PCのみ改行 */
.pcbr {
    display: none;
}

/* スマートフォンのみ改行 */
.spbr {
    display: inline;
}

@media print, screen and (min-width:641px) {
    .pcbr {
        display: inline;
    }


    .spbr {
        display: none;
    }
}

.center,
.pcCenter {
    margin: 0 auto;
    text-align: center;
}

.pcRight {
    float: right;
}

.pcLeft {
    float: left;
}

.indent {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
}

.notice.indent {
    display: block;
    font-size: 1.3rem;
    padding-left: 1em;
    text-indent: -1em;
    font-weight: 400;
}

.main-conts img,
.img-fit,
.img-fit img {
    object-fit: cover;
    font-family: 'object-fit: cover;'; /*IE対策*/
}

.p0 {padding: 0 !important;}
.p10 {padding: 10px !important;}
.p20 {padding: 20px !important;}
.p30 {padding: 30px !important;}
.p40 {padding: 40px !important;}
.p50 {padding: 50px !important;}

.pr50 {padding-right: 5%;}
.pl50 {padding-left: 5%;}


@media print, screen and (min-width:641px) {
    .pr50 {padding-right: 50px;}
    .pl50 {padding-left: 50px;}
}

.mb3   {margin-bottom:3px !important;}
.mb5   {margin-bottom:5px !important;}
.mb10  {margin-bottom:10px !important;}
.mb15  {margin-bottom:15px !important;}
.mb20  {margin-bottom:20px !important;}
.mb25  {margin-bottom:25px !important;}
.mb30  {margin-bottom:30px !important;}
.mb35  {margin-bottom:35px !important;}
.mb40  {margin-bottom:40px !important;}
.mb50  {margin-bottom:50px !important;}
.mb60  {margin-bottom:60px !important;}
.mb70  {margin-bottom:70px !important;}
.mb80  {margin-bottom:80px !important;}
.mb90  {margin-bottom:90px !important;}
.mb100  {margin-bottom:100px !important;}

.mt3   {margin-top:3px !important;}
.mt5   {margin-top:5px !important;}
.mt10  {margin-top:10px !important;}
.mt15  {margin-top:15px !important;}
.mt20  {margin-top:20px !important;}
.mt25  {margin-top:25px !important;}
.mt30  {margin-top:30px !important;}
.mt35  {margin-top:35px !important;}
.mt40  {margin-top:40px !important;}
.mt50  {margin-top:50px !important;}
.mt60  {margin-top:60px !important;}
.mt70  {margin-top:70px !important;}
.mt80  {margin-top:80px !important;}
.mt90  {margin-top:90px !important;}
.mt100  {margin-top:100px !important;}

.mr3   {margin-right:3px !important;}
.mr5   {margin-right:5px !important;}
.mr10  {margin-right:10px !important;}
.mr15  {margin-right:15px !important;}
.mr20  {margin-right:20px !important;}
.mr25  {margin-right:25px !important;}
.mr30  {margin-right:30px !important;}
.mr35  {margin-right:35px !important;}
.mr40  {margin-right:40px !important;}
.mr50  {margin-right:50px !important;}

.ml3   {margin-left:3px !important;}
.ml5   {margin-left:5px !important;}
.ml10  {margin-left:10px !important;}
.ml15  {margin-left:15px !important;}
.ml20  {margin-left:20px !important;}
.ml25  {margin-left:25px !important;}
.ml30  {margin-left:30px !important;}
.ml35  {margin-left:35px !important;}
.ml40  {margin-left:40px !important;}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fz14 {
    font-size: 14px !important;
}

.fz20 {
    font-size: 20px !important;
}

.txt-color {
    color: #36a1df !important;
}

.txt-color2 {
    color: #6A3B98 !important;
}

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

.txt-center {
    text-align: center;
}

.font-min {
    font-size: 1.4rem;
    font-weight: 500;
}

.bg-gry {
    background: #F3F3F4 !important;
}

.bg-red {
    background: #FFEEF1 !important;
}

.icon-arrow:before {
    content: '';
    display: block;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    height: 6px;
    width: 6px;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 15px;
}


.title {
    font-size: 2.5rem;
    padding-top: 25px;
    text-align: center;
}

@media print, screen and (min-width:641px) {
    .title {
        padding-top: 50px;
        text-align: left;
        max-width: 720px;
        margin: 0 auto;
        width: 90%;
    }
}

.inner {
    width: 90%;
    margin: 0 auto;
}

@media print, screen and (min-width:641px) {
    .inner {
        width: 100%;
    }
}

.round-box {
    background: #fff;
    border-radius: 3px;
    margin: 0 auto;
    padding: 20px;
    width: 90%;
    max-width: 720px;
    position: relative;
}

@media print, screen and (min-width:641px) {
    .round-box {
        border-radius: 10px;
        box-shadow: 0 7px 15px rgba(0, 0, 0, .1);
        padding: 60px;
    }

    .pc-round-box {
        background: #fff;
        border-radius: 10px;
        padding: 60px;
        box-shadow: 0 7px 15px rgba(0, 0, 0, .1);
        margin: 35px auto 0;
        max-width: 720px;
        width: 90%;
    }
}

@media print, screen and (min-width:641px) {
    .w40per {
        width: 40% !important;
    }
    
    .w60per {
        width: 60% !important;
        max-width: inherit;
    }
}

/* -------------------------------------------------
link
------------------------------------------------- */
.blank {
    text-decoration: underline;
}

.target {
    display: block;
    margin-top: -100px;
    padding-top: 100px;
}

/* -------------------------------------------------
カラム　colum 2, 3, 4
------------------------------------------------- */
.colum {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.step-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    justify-content: space-between;
}

@media print, screen and (min-width:641px) {
    table tr,
    .prof .round-box dl,
    .iv-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-box;
        display: -webkit-flexbox;
        display: -moz-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: flex;
        -webkit-box-lines: multiple;
        -moz-box-lines: multiple;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/* -------------------------------------------------
表組み　table
------------------------------------------------- */
table {
    max-width: 720px;
    margin: 0 auto;
    line-height: 2.5;
    width: 100%;
    table-layout: fixed;
}

table tr + tr {
    border-top: solid 1px #84848c;
}

table th,
table td {
    display: block;
    line-height: 1.5;
}

table tr.border-0 {
    border-top: 0;
}

body:not(.conf) table tr.border-0 th,
body:not(.conf) table tr.border-0 td {
    padding-top: 10px;
}

@media print, screen and (min-width:641px) {
    table th,
    table td {
        font-size: 1.6rem;
    }

    body:not(.conf) table tr.border-0 th,
    body:not(.conf) table tr.border-0 td {
        padding-top: 0;
    }
}

table th {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: left;
    position: relative;
    padding-left: calc( 5% + 35px );
    padding-right: 5%;
    padding-top: 20px;
}

table th span {
    position: absolute;
    top: 20px;
    left: 5%;
}

@media print, screen and (min-width:641px) {
    table th {
        /* padding-left: 60px; */
        padding-left: calc( 60px + 1.5em );
        max-width: 360px;
        width: 45%;
        line-height: 1.8;
        padding-top: 20px;
        padding-bottom: 25px;
        padding-right: 0;
    }
    
    table th span {
        position: static;
        /* display: block; */
        display: inline-block;
        padding-right: .25em;
        margin-left: -1.7em;
    }
}

table td {
    font-size: 1.8rem;
    padding-bottom: 25px;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 10px;
}

@media print, screen and (min-width:641px) {
    table td {
        width: 55%;
        padding: 20px 50px 30px 30px;
    }
}

/* -------------------------------------------------
マップ　#map
------------------------------------------------- */
#map {
    margin: 40px auto 0;
    max-width: 760px;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

#map iframe {
    width: 100%;
    height: 550px;
    margin-top: -130px;
}

/* -------------------------------------------------
フォーム form
------------------------------------------------- */
#form .inner {
    width: 100%;
}

@media print, screen and (min-width:641px) {
    #form .pc-round-box {
        padding: 60px 0;
    }
    
    #form .step .pc-round-box {
        padding: 40px 60px 35px;
    }
}

select,
input[type="text"],
input[type="number"],
textarea {
    border: solid 1px #CECED1;
    border-radius: 3px;
    min-height: 45px;
    padding: 10px 20px;
    vertical-align: middle;
}

input[type="text"]:hover,
textarea:hover,
input[type="number"]:hover,
input[type="text"]:focus,
textarea:focus,
input[type="number"]:focus {
    border-color: #a2a2a2;
}

input[type="submit"],
input[type="reset"] {
    background: #565656;
    border: none;
    cursor:pointer;
    color: #e2e2e2;
    font-weight: 500;
    display: inline-block;
    height: 70px;
    letter-spacing: normal;
    text-align: center;
    width: 400px;
    position: relative;
}

#form table input[type="number"] {
    max-width: 110px;
}

/* textarea --------------------------- */
textarea {
    width: 100%;
    margin-top: 10px;
    min-height: 130px;
    resize: vertical;
}

input[type="text"]:disabled,
textarea:disabled {
    background: rgba(255, 255, 255, .8);
}

form .textarea-unit {
    margin-top: 10px;
}

form .textarea-unit label,
form .text-unit label {
    border-radius: 3px 3px 0 0 !important;
    border-bottom: none;
}

form .textarea-unit input[type="checkbox"]:checked + label,
form .textarea-unit input[type="radio"]:checked + label,
form .text-unit input[type="checkbox"]:checked + label,
form .text-unit input[type="radio"]:checked + label {
    border-bottom: none;
}

form .textarea-unit input[type="checkbox"]:checked + label + div,
form .text-unit input[type="checkbox"]:checked + label + div,
form .textarea-unit input[type="radio"]:checked + label + div,
form .text-unit input[type="radio"]:checked + label + div {
    display: block;
}

form .textarea-unit > div,
form .text-unit > div {
    border: solid 3px #6A3B98;
    border-top: none;
    background: #EEE9F2;
    padding: 10px;
    border-radius: 0 0 3px 3px;
    margin-top: 0;
    display: none;
    text-align: left;
}

form .textarea-unit > div.active,
form .text-unit > div.active {
    
}

form .textarea-unit > div textarea,
form .text-unit > div input[type="text"] {
    border: none;
}

form .text-unit > div input[type="text"],
form .text-unit > div input[type="number"] {
    width: 130px;
}

form .text-unit > div span {
    font-size: 1.6rem;
    padding: 0 10px;
}

.is-textcount100 + p {
    display: none;
}

/* checkbox --------------------------- */
.checkbox-wrap {
    width: 100%;
}

.checkbox-wrap input[type="checkbox"] {
    display: none;
}

.checkbox-wrap label {
    background: #F3F3F4;
    border-radius: 3px;
    border: solid 3px #F3F3F4;
    cursor: pointer;
    display: block;
    padding: 8px 15px 8px 40px;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    margin-top: 10px;
}

@media print, screen and (min-width:641px) {
    .checkbox-wrap label {
        padding-right: 15px;
        padding-left: 45px;
        display: block;
    }
}

.checkbox-wrap label:not(:nth-child(2)) {
    margin-top: 10px;
}

.checkbox-wrap input[type="checkbox"]:checked + label {
    background: #EEE9F2;
    border: solid 3px #6A3B98;
    color: #6A3B98;
    font-weight: 500;
}

.checkbox-wrap .colum2 label {
    /*
    width: calc( 50% - 5px );
    */
   width: 100%;
}

.checkbox-wrap .colum2 label:nth-child(4n) {
    /*
    margin-left: 10px;
    */
}

@media print, screen and (min-width:641px) {
    #form .checkbox-wrap .colum2 {
        display: block;
    } 
    
    .checkbox-wrap .colum2 label {
        width: 100%;
    }

    .checkbox-wrap .colum2 label:nth-child(4) {
        margin-top: 10px;
    }

    .checkbox-wrap .colum2 label:nth-child(4n) {
        margin-left: 0;
    }
}

.checkbox-wrap label:before {
    content: '';
    height: 9px;
    display: block;
    width: 13px;
    border-top: solid 3px #6A3B98;
    border-right: solid 3px #6A3B98;
    position: absolute;
    left: 15px;
    top: calc( 50% - 9px );
    transform: rotate(135deg);
    opacity: 0;
}

@media print, screen and (min-width:641px) {
    .checkbox-wrap label:before {
        height: 12px;
        width: 12px;
        border: none;
        background: #6a3b98;
        border-radius: 50%;
        top: calc( -5px + 50% );
        right: auto;
        left: 19px;
        transform: none;
        z-index: 1;
    }
    
    .checkbox-wrap label:after {
        content: '';
        height: 18px;
        width: 18px;
        display: block;
        background: #fff;
        border: solid 1px #CECED1;
        border-radius: 50%;
        position: absolute;
        left: 15px;
        top: calc( 50% - 9px );
    }
}

.checkbox-wrap input[type="checkbox"]:checked + label:before {
    opacity: 1;
}

/* radio --------------------------- */
.radio-wrap {
    width: 100%;
}

.radio-wrap input[type="radio"] {
    display: none;
}

.radio-wrap label {
    background: #F3F3F4;
    border-radius: 3px;
    border: solid 3px #F3F3F4;
    cursor: pointer;
    display: block;
    padding: 10px 15px;
    width: 100%;
    position: relative;
    text-align: left;
    padding: 10px 15px 10px 40px;
}

.radio-wrap label {
    margin-top: 10px;
}

@media print, screen and (min-width:641px) {
    .radio-wrap label {
        padding-right: 15px;
        padding-left: 45px;
        display: block;
    }
}

.radio-wrap input[type="radio"]:checked + label {
    background: #EEE9F2;
    border: solid 3px #6A3B98;
    color: #6A3B98;
    font-weight: 500;
}

.radio-wrap .colum2.choices {
    border-radius: 3px;
    background: #CECED1;
    margin-top: 10px;
}

@media print, screen and (min-width:641px) {
    .radio-wrap .colum2.choices {
        background: #fff;
    }
}

.radio-wrap .colum2 label {
    width: 100%;
    /*
    width: calc( 50% - 5px );
    */
}

.radio-wrap .colum2 label:nth-child(4n) {
    /*
    margin-left: 10px;
    */
}

@media print, screen and (min-width:641px) {
    .radio-wrap .colum2 label {
        width: 100%;
    }

    .radio-wrap .colum2 label:nth-child(4n) {
        margin-left: 0;
    }
}

.radio-wrap .colum2.choices label {
    width: calc( 50% - .5px );
    padding: 10px 15px;
    margin-top: 0;
    text-align: center;
}

.radio-wrap .colum2.choices label:nth-child(4n) {
    margin-left: 0;
}

.radio-wrap .colum2.choices label:nth-child(2) {
    border-radius: 3px 0 0 3px;
}

.radio-wrap .colum2.choices label:nth-child(4) {
    margin-left: 1px;
    border-radius: 0 3px 3px 0;
}

@media print, screen and (min-width:641px) {
    #form .radio-wrap .colum2 {
        display: block;
    } 

    .radio-wrap .colum2.choices label:nth-child(2),
    .radio-wrap .colum2.choices label:nth-child(4) {
        border-radius: 3px;
    }
    
    .radio-wrap .colum2.choices label {
        padding-left: 45px;
        text-align: left;
        width: 100%;
    }

    .radio-wrap .colum2.choices label:nth-child(4) {
        margin-top: 10px;
    }

    .radio-wrap .colum2.choices label:nth-child(4n) {
        margin-left: 0;
    }
}

.radio-wrap label:before {
    content: '';
    height: 9px;
    display: block;
    width: 13px;
    border-top: solid 3px #6A3B98;
    border-right: solid 3px #6A3B98;
    position: absolute;
    left: 15px;
    top: calc( 50% - 9px );
    transform: rotate(135deg);
    opacity: 0;
}

.radio-wrap .colum2.choices label:before {
    content: none;
}

@media print, screen and (min-width:641px) {
    .radio-wrap label:before,
    .radio-wrap .colum2.choices label:before {
        content: '';
        height: 11px;
        display: block;
        width: 11px;
        background: #6a3b98;
        border-radius: 50%;
        position: absolute;
        top: calc( -6px + 50% );
        left: 18px;
        z-index: 1;
        opacity: 0;
    }

    .radio-wrap label:after {
        content: '';
        height: 18px;
        width: 18px;
        display: block;
        background: #fff;
        border: solid 1px #CECED1;
        border-radius: 50%;
        position: absolute;
        left: 15px;
        top: calc( 50% - 9px );
    }
}

.radio-wrap input[type="radio"]:checked + label:before {
    opacity: 1;
}

.confirm-only {
    display: none;
}

/* error --------------------------- */
/* login画面 */
.input-error {
    border: solid 2px #D0453F !important;
}

/* login画面・フォーム内共通 */
.icon-error {
    color: #D0453F;
    font-size: 1.3rem !important;
    font-weight: 500;
    text-align: left !important;
    padding-left: 20px;
    text-indent: -20px;
}

.icon-error img {
    margin-right: 5px;
    vertical-align: middle;
}

/* フォーム内 */
.form-input-error th {
    color: #D0453F;
}

.form-input-error td {
    padding-top: 15px;
}

@media print, screen and (min-width:641px) {
    .form-input-error td {
        padding-top: 0;
    }
}

.form-input-error td .checkbox-wrap label,
.form-input-error td .radio-wrap label {
    background: #FFEEF1 !important;
    /*border-color: #FFEEF1 !important;*/
}

.form-input-error td textarea,
.form-input-error td input[type="text"],
.form-input-error td input[type="number"] {
    background: #FFEEF1 !important;
}

.btn-disabled > a {
    opacity: .6;
    cursor: default;
}

/* conf 確認画面 --------------------------- */
.form-conf table td {
    color: #C10648;
    padding-top: 10px;
    line-height: 1.5;
    font-size: 1.7rem;
    word-break: break-all;
}

.form-conf table th {
    font-size: 1.7rem;
    line-height: 1.5;
}

.form-conf table th a {
    color: #21212F;
}

.form-conf table td {
    font-weight: 500;
    padding-bottom: 20px;
}

.form-conf .confirm-only {
    display: block;
}

@media print, screen and (min-width:641px) {
    .form-conf table {
        margin-top: 50px;
    }
    
    .form-conf .caution + table {
        margin-top: 0;
    }

    .form-conf table th {
        width: 55%;
        max-width: inherit;
    }
    
    .form-conf table td {
        width: 45%;
        padding-bottom: 20px;
        padding-top: 20px;
        vertical-align: middle;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        word-break: break-all;
    }
}

/*============================================================
header
============================================================*/
#header.colum {
    border-bottom: solid 1px #CECED1;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    height: 60px;
    line-height: 60px;
    padding: 0 5%;
}

@media print, screen and (min-width:641px) {
    #header.colum {
        height: 75px;
        line-height: 75px;
        border: none;
    }
}

#header.colum .logo img {
    vertical-align: middle;
}

@media print, screen and (min-width:641px) {
    #header.colum .logo img {
        width: 160px;
        height: 37px;
    }
}

#header .logout {
    font-size: 1.3rem;
    color: #84848C;
}

#header .logout i {
    background: url(../../images/common/icon-logout.png) no-repeat center / 100%;
    height: 20px;
    display: inline-block;
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}


/*============================================================
footer
============================================================*/
#footer {
    padding: 10px 0 25px;
    width: 100%;
}

.copy {
    color: #84848C;
    font-size: 1rem;
    text-align: center;
}

/*============================================================
#login
============================================================*/
#login #wrapper {
    min-height: 100%;
    padding-top: 25px;
    position: relative;
}

@media print, screen and (min-width:641px) {
    #login #wrapper {
        padding-top: 60px;
    }
}

#login #footer {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media print, screen and (min-width:641px) {
    #login #footer {
        padding: 40px 0;
    }
}

#login .logo {
    text-align: center;
}

#login .login-wrap {
    padding-bottom: 100px;
}

@media print, screen and (min-width:641px) {
    #login .login-wrap {
        padding-bottom: 120px;
    }
}

@media print, screen and (min-width:641px) {
    #login .pc-round-box {
        max-width: 448px;
        width: 100%;
    }
}

#login .title {
    padding-top: 25px;
}

@media print, screen and (min-width:641px) {
    #login .title {
        text-align: center;
    }
}

#login .title + p {
    margin-top: 10px;
}

.login-form {
    margin-top: 20px;
}

.text-input-wrapper {
    position: relative;
}

.text-input-wrapper + .text-input-wrapper {
    margin-top: 10px;
}

.text-input-wrapper input {
    background: transparent;
    border: solid 1px #CECED1;
    border-radius: 3px;
    line-height: 44px;
    min-height: 44px;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.text-input-wrapper input:focus {
    background: #fff;
}

@media print, screen and (min-width:641px) {
    .text-input-wrapper input {
        line-height: 54px;
        min-height: 54px;
    }
}

.text-input-wrapper label {
    color: #B5B5B9;
    cursor: text;
    line-height: 1;
    padding: 16px 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
}

@media print, screen and (min-width:641px) {
    .text-input-wrapper label {
        padding: 20px;
    }
}

.btn-wrap {
    text-align: center;
}


#error.timeout .btn-wrap,
#form .btn-wrap {
    /* margin-top: 15px; */
    padding-right: 5%;
    padding-left: 5%;
}

@media print, screen and (min-width:641px) {
    #error.timeout .btn-wrap,
    #form .btn-wrap {
        margin-top: 40px;
        padding-right: 60px;
        padding-left: 60px;
    }
}

.btn-close,
.btn-normal,
.btn-submit {
    background: #6A3B98;
    border: none;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 1.6rem;
    margin: 20px auto 0;
    height: 48px;
    line-height: 48px;
    text-align: center;
    width: 100%;
}

.btn-close,
.btn-normal {
    background: #84848C;
}

.btn-close {
    max-width: 320px;
}

@media print, screen and (min-width:641px) {
    #form .btn-wrap {
        flex-flow: row-reverse;
    }
    
    body:not(#login) .btn-submit,
    body:not(#login) .btn-normal {
        max-width: 45%;
        margin-top: 0;
    }

    .btn-wrap a + a {
        margin-left: 10px;
    }
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

#login #password_eye {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1;
}

@media print, screen and (min-width:641px) {
    #login #password_eye {
        top: 15px;
    }
}

/*============================================================
下層ページ
============================================================*/

/*============================================================
#dashboard
============================================================*/
.prof {
    margin-top: 20px;
}

.prof .round-box {
    border: solid 1px #CECED1;
    width: 100%;
}

@media print, screen and (min-width:641px) {
    .prof .round-box {
        border: none;
        background: #fff !important;
        width: 90%;
    }
}

.prof .round-box dl {
    font-weight: 500;
}

.prof .round-box dl + dl {
    margin-top: 10px;
}

@media print, screen and (min-width:641px) {
    .prof .round-box dl + dl {
        margin-top: 20px;
    }
}

.prof .round-box dd {
    font-size: 2.5rem;
    line-height: 1.3;
}

@media print, screen and (min-width:641px) {
    .prof .round-box dt {
        width: 150px;
    }
    
    .prof .round-box dd {
        font-size: 2rem;
        width: calc( 100% - 150px );
    }
}

.prof .is-toggle {
    background: #fff;
    border-radius: 5px;
    margin-top: 25px;
}

.prof .is-toggle-btn {
    color: #6A3B98;
    font-weight: 500;
    padding: 15px 70px 15px 20px;
    line-height: 1.8;
    font-size: 1.5rem;
    position: relative;
    cursor: pointer;
}

.prof .is-toggle-btn.active {
    border-bottom: solid 1px #F3F3F4;
}

.prof .is-toggle-btn:before {
    content: '';
    height: 30px;
    width: 30px;
    display: block;
    border: solid 1px #6A3B98;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.prof .is-toggle-btn:after {
    content: '';
    height: 14px;
    width: 14px;
    display: block;
    background: url(../../images/common/icon-plus.png) no-repeat center / 100%;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    transition: all .3s .1s;
}

.prof .is-toggle-btn.active:after {
    transform: translateY(-50%) rotate(45deg);
}

.prof .is-toggle-conts {
    padding: 15px 25px 25px;
    background: #fff;
    border-radius: 3px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: none;
}

@media print, screen and (min-width:641px) {
    .prof .is-toggle {
        background: #F3F3F4;
        /* border: solid 1px #CECED1; */
        margin-top: 30px;
    }
    
    .prof .is-toggle-btn {
        padding: 20px 60px 20px 20px;
    }
    
    .prof .is-toggle-conts {
        background: #F3F3F4;
        font-size: 1.5rem;
        padding: 20px 25px 25px;
        margin-bottom: 0;
    }
    
    .prof .is-toggle-btn.active {
    border-color: #CECED1;
    }
}

.caution {
    color: #D0453F;
    text-align: center;
}

.caution .round-box {
    padding: 20px;
    width: 100%;
}

#form .caution {
    margin-top: 10px;
}

#form .caution p {
    font-size: 1.6rem;
    text-align: left;
}

@media print, screen and (min-width:641px) {
    .caution .round-box {
        box-shadow: none;
    }
    
    #form .caution .round-box {
        padding: 30px 60px;
        border-radius: 0;
    }
    
    #form .caution p {
        font-weight: 500;
    }

    #form .caution {
        padding: 0;
        margin: 10px auto 0;
    }
}

#dashboard .caution {
    margin-top: 30px;
}

@media print, screen and (min-width:641px) {
    #dashboard .caution {
        margin-top: 0;
    }
}

.caution p {
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.5;
}

@media print, screen and (min-width:641px) {
    .period {
        font-size: 2.5rem !important;
    }
    
    .period span {
        margin-right: 20px;
    }
}

.caution p + p {
    margin-top: 10px;
}

.icon-caution {
    background: url(../../images/common/icon_caution.png) no-repeat center / 100%;
    display: inline-block;
    height: 38px;
    width: 38px;
}

.timeout .icon-caution {
    background: url(../../images/common/icon_caution2.png) no-repeat center / 100%;
}


.iv {
    margin-top: 20px;
}

.iv-box-list {
    background: #B5B5B9;
    border-radius: 3px;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.5;
    position: relative;
}

.iv-box-list-temp {
    background: #AA984A;
}

.iv-box-list-null {
    background: #6A3B98;
}

.iv-box-list + .iv-box-list {
    margin-top: 10px;
}

@media print, screen and (min-width:641px) {
    .iv-box-list {
        width: calc( 100% / 2 - 10px );
    }

    .iv-box-list + .iv-box-list {
        margin-top: 0;
    }

    .iv-box-list:nth-child(even) {
        margin-left: 20px;
    }

    .iv-box-list:nth-child(n + 3) {
        margin-top: 20px;
    }

    .iv-box-list-temp,
    .iv-box-list-null {
        box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
        transition: all .3s .1s;
    }

    .iv-box-list-temp:hover,
    .iv-box-list-null:hover {
        box-shadow: none;
        opacity: .7;
    }
}

.iv-box-list-comp a,
.iv-box-list a {
    color: #84848C;
    display: block;
    padding: 8px 40px 8px 95px;
    position: relative;
}

.iv-box-list-temp a,
.iv-box-list-null a {
    color: #fff;
}

@media print, screen and (min-width:641px) {
    .iv-box-list-comp a,
    .iv-box-list a {
        padding: 50px 20px 20px;
        text-align: center;
    }
}

.iv-box-list-temp a:before,
.iv-box-list-null a:before {
    content: '';
    height: 6px;
    width: 6px;
    display: block;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: rotate(45deg) translateY(-50%);
}

@media print, screen and (min-width:641px) {
    .iv-box-list-temp a:before,
    .iv-box-list-null a:before {
        display: none;
    }
}

.icon-status {
    font-size: 1rem;
    color: #B5B5B9;
    background: #84848C;
    border-radius: 3px;
    line-height: 1;
    padding: 5px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

@media print, screen and (min-width:641px) {
    .icon-status {
        top: 20px;
        transform: translateX(-50%);
        left: 50%;
    }
}

.iv-box-list-temp .icon-status {
    background: #fff;
    color: #AA984A;
}

.iv-box-list-null .icon-status {
    background: #FFEEF1;
    color: #D0453F;
}

.icon-status .svg {
    margin-right: 5px;
    vertical-align: top;
}

.iv-box-list-comp .svg circle,
.iv-box-list-comp .svg path {
    stroke: #B5B5B9; /* 枠線の色 */
    fill: #84848C;
}


.iv-box-list-comp .svg path + circle {
    fill: none;
}

.iv-box-list-comp .svg circle + circle {
    stroke: transparent;
    fill: #B5B5B9;

}

.iv-box-list-temp .svg circle,
.iv-box-list-temp .svg path {
    stroke: #AA984A; /* 枠線の色 */
    fill: #fff;
}

.iv-box-list-null .svg circle,
.iv-box-list-null .svg path {
    stroke: #D0453F; /* 枠線の色 */
    fill: #FFEEF1;
}

.iv-box-list-null .svg path + circle {
    fill: none;
}

.iv-box-list-null .svg circle + circle {
    stroke: transparent;
    fill: #D0453F;
    
}

.iv-box + p {
    margin-top: 15px;
}

@media print, screen and (min-width:641px) {
    .iv-box + p {
        margin-top: 25px;
    }
}

.contact {
    margin-top: 20px;
}

.contact .round-box {
    border: solid 3px #D5CAE0;
    padding: 15px;
    width: 100%;
}

@media print, screen and (min-width:641px) {
    .contact .round-box {
        box-shadow: none;
    }
}

.contact h2 {
    text-align: center;
}

.contact p {
    text-align: center;
}

.contact-tel {
    font-weight: 500;
    line-height: 1.5;
}

.contact-tel,
.contact-tel a {
    color: #6A3B98;
}

.contact-tel .tel {
    font-size: 2.5rem;
}

.contact-tel .tel span {
    font-size: 2rem;
}

.contact-tel + p {
    font-size: 1.3rem;
    margin-top: 10px;
}

.ft-nav {
    margin-top: 35px;
    text-align: center;
}

@media print, screen and (min-width:641px) {
    .ft-nav {
        margin-top: 55px;
    }
}

.ft-nav-list {
    display: inline-block;
}

.ft-nav-list.is-popup,
.ft-nav-list.is-popup2,
.ft-nav-list a {
    color: #84848C;
    text-decoration: underline;
    font-size: 1.3rem;
    margin: 0 5px;
    cursor: pointer;
}

@media print, screen and (min-width:641px) {
    .ft-nav-list.is-popup,
    .ft-nav-list.is-popup2,
    .ft-nav-list a {
        font-size: 1.6rem;
    }
}


.final-d {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/*
.prev-y {
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
}

.final-d + .prev-y {
    margin-top: 0;
}
*/

.message {
    margin-top: 30px;


    font-size: 14px;


    color: #6A3B98;
    line-height: 1.7;
    background: #F3F3F4;
    padding: 20px;
    border-radius: 3px;
}

@media print, screen and (min-width:641px) {
    .message {
        margin-top: 0;
        margin-bottom: 30px;
        border-radius: 10px;
    }
}

.howto,
.policy {
    background: rgba(238, 233, 242, .9);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 5%;
    display: none;
    cursor: pointer;
}

.howto {
    padding: 5% 0;
    display: block;
    z-index: -1;
    opacity: 0;
    transition: all .3s .1s;
}

.howto.z-index {
    z-index: 99999;
    opacity: 1;
}

@media print, screen and (min-width:641px) {
    .howto {
        padding: 5%;
    }
}

.policy-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 7px 15px rgb(0 0 0 / 10%);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    height: 100%;
    overflow: scroll;
    line-height: 1.8;
}

.policy-box h3 {
    font-size: 2rem;
}

.policy-box h3 + p {
    margin-top: 15px;
}

.policy-box h4 {
    margin-top: 20px;
    font-size: 1.8rem;
    color: #6A3B98;
}

.policy-box ol {
    margin-top: 10px;
}

.policy-box li {
    padding-left: 2em;
    text-indent: -2em;
}

.policy-box li span {
    color: #6A3B98;
    font-weight: 500;
    margin-right: 5px;
}

.policy-box ol + .indent {
    margin-top: 20px;
}

@media print, screen and (min-width:641px) {
    .policy-box {
        padding: 60px;
    }
    
    .policy-box h4 {
        margin-top: 50px;
    }

    .policy-box ol + .indent {
        margin-top: 50px;
    }
}

body.fix,
html.fix {
    overflow: hidden;
}

.viewer {
    height: 100%;
    width: 100%;
}

.zoomer {
    background-color: transparent !important;
}

@media print, screen and (min-width:641px) {
    
}

.popup-close {
    position: fixed;
    top: 15px;
    right: 15px;
}

@media print, screen and (min-width:641px) {
    .popup-close {
        top: 5%;
        right: 5%;
    }
}

/*============================================================
#form
============================================================*/
#form .title {
    line-height: 1.5;
}

#form .title span {
    background: #6a3b98;
    color: #fff;
    border-radius: 3px;
    padding: 0 10px;;
    display: inline-block;
    font-size: 1.3rem;
    vertical-align: middle;
    line-height: 2;
}

#form .bg-gry .title {
    font-size: 2.8rem;
    padding-top: 0;
    margin-bottom: 10px;
}

@media print, screen and (min-width:641px) {
    #form .title span {
        font-size: 1.6rem;
        line-height: 1.5;
        padding: 2px 8px 4px;
        margin-left: 10px;
    }
    
    #form .title br {
        display: none;
    }

    #form .bg-gry .title {
        font-size: 3rem;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }

    #form .bg-gry .title + p {
        text-align: center;
    }
}

.step {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 30px auto 0;
    width: 90%;
}

@media print, screen and (min-width:641px) {
    .step {
        font-size: 1.6rem;
        margin-top: 25px;
    }
    
    .step .pc-round-box {
	   padding: 40px 60px 35px;
    }
}

.step-box-list {
    color: #84848C;
    text-align: center;
    width: 100% !important;
    position: relative;
}

.step-box-list.current {
    color: #6A3B98;
}

.step-box-list.comp {
    color: #21212F;
}

.step-box-list:not(:last-child):before {
    content: '';
    width: 100%;
    height: 2px;
    background: #CECED1;
    position: absolute;
    top: 15px;
    left: 50%;
    z-index: 0;
}

.step-box-list:not(:last-child).comp:before {
    background: #6a3b98;
}

.step-box-list:not(:last-child).comp:after {
    content: '';
    height: 9px;
    display: block;
    width: 13px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    left: calc( 50% - 12px );
    top: 12px;
    transform: rotate(135deg) translateX(-50%);
}

@media print, screen and (min-width:641px) {
    .step-box-list:not(:last-child):before {
        top: 20px;
    }
    
    .step-box-list:not(:last-child).comp:after {
        top: 18px;
    }
}

.step-box-list i {
    background: #fff;
    border: solid 2px #CECED1;
    border-radius: 50%;
    font-style: normal;
    display: block;
    height: 30px;
    line-height: 25px;
    margin: 0 auto;
    width: 30px;
    position: relative;
}

@media print, screen and (min-width:641px) {
    .step-box-list i {
        height: 40px;
        line-height: 35px;
        width: 40px;
    }
}

.step-box-list.current i {
    border-color: #6A3B98;
}

.step-box-list.comp i {
    border-color: #6A3B98;
    background: #6a3b98;
    color: #6a3b98;
}

.step-box-list i:before {
    content: '';
    border: solid 2px #fff;
    border-radius: 50%;
    display: block;
    height: 30px;
    width: 30px;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

@media print, screen and (min-width:641px) {
    .step-box-list i:before {
        height: 40px;
        width: 40px;
    }
}

.form-sup {
    padding: 15px 0;
    margin-top: 30px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media print, screen and (min-width:641px) {
    .form-sup {
        margin-top: 0;
        padding: 0;
        width: 100%;
        left: 0;
        transform: none;
        background: #fff !important;
    }
}

.form-sup p {
    width: 90%;
    margin: 0 auto;
}

@media print, screen and (min-width:641px) {
    .form-sup p {
        width: 100%;
        padding-right: 60px;
        padding-left: 60px;
    }
}

.women {
    background: #6A3B98;
    color: #fff;
    font-size: 1.3rem;
    padding: 3px 5px 4px;
    line-height: 1;
    font-style: normal;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: 400;
    display: inline-block;
}

@media print, screen and (min-width:641px) {
    .women {
        padding: 3px 7px 5px;
    }
}

#form table .indent {
    margin-left: -2.75em;
}

@media print, screen and (min-width:641px) {
    #form table .indent {
        margin-left: -2.25em;
    }
}