* {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    text-decoration: none;
    text-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}


html {
    height: 100%;
}

html,
body {
    min-height: 100%;
}

body {
    min-width: 1040px;
    /*font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;*/
    font-family: -apple-system, 'Helvetica Neue', "Noto Sans Japanese", 'Hiragino Kaku Gothic ProN', '游ゴシック', 'メイリオ', meiryo, sans-serif;
    word-wrap: break-word;
    opacity: 0;
    color: #4e4e4e;
    counter-reset: list-counter;
}

/* tablet ________________________*/
@media screen and (max-width: 1024px) {
    body {
        min-width: 1024px;
    }
}

@media screen and (max-width: 768px) {
    body {
        min-width: 100%;
    }

    .img100 {
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    body {
        font-size: 16px;
    }
}

/* element
---------------------*/
a,
a:active,
a:hover,
a:visited {
    color: #4789b4;
    cursor: pointer;
}

a {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

a.on {
    opacity: 0.5;
}

a.hover02.on,
input[type="submit"].hover02.on {
    background: #000;
    color: #fff;
    opacity: 1;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    line-height: 1.6;
}

p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.06em;
}

figure {
    margin: 0;
}

.list {
    margin: 30px auto;
    max-width: 700px;
    padding-left: 20px;
    /*20220424追加*/
}

.list ul,
.list ol,
    {
    padding-left: 1rem;
}

.list li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.06em;
}

ul.list li {
    padding-left: 1rem;
    text-indent: -1rem;
}

ul.list li:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 10px;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #017CCA;
    vertical-align: middle;
}

ol.list {
    list-style-type: none;
    counter-reset: item;
    padding-left: 10px;
    /* 20220424 追加 */
}

ol.list li {
    padding-left: 1.3rem;
    text-indent: -1.3rem;
}

ol.list li * {
    padding: auto;
    text-indent: 0;
}

ol.list li:before {
    counter-increment: item;
    content: counter(item)'.';
    font-weight: bold;
    color: #017CCA;
}

.table {
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
}

.table th {
    width: 30%;
    text-align: left;
    white-space: nowrap;
    padding: 20px 10px;
    border-top: 1px solid #969696;
    vertical-align: top;
    line-height: 1.4;
}

.table td {
    width: 70%;
    padding: 20px 10px;
    border-top: 1px solid #969696;
    line-height: 1.4;
}

.table td ul li {
    display: inline-block;
    width: 40%;
}

.table td .address {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #969696;
}

.table td .address:last-child {
    border-bottom: none;
}

#table p + p {
    margin-top: 15px;
}

/* Util
---------------------*/
.clearFix:before,
.clearFix:after {
    content: " ";
    display: table;
}

.clearFix:after {
    clear: both;
}

.notice {
    display: inline-block;
    padding: 5px 7px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    background: #f0f0f0;
}

.coution {
    display: inline-block;
    color: #c64040;
}

.serif {
    font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
}

.san-serif {
    font-family: -apple-system, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', '游ゴシック Medium', 'メイリオ', meiryo, sans-serif;
}

.note {
    font-size: 12px;
}

.red {
    color: red;
}

.vaTop {
    vertical-align: top !important;
}

.vaMid {
    vertical-align: middle !important;
}

.vaBot {
    vertical-align: bottom !important;
}

.float {
    overflow: hidden;
}

.float .left {
    float: left;
}

.float .right {
    float: right;
}

.txtC {
    text-align: center;
}

.txtR {
    text-align: right;
}

.indent {
    text-indent: 1em !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

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

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

.mb30 {
    margin-bottom: 30px !important;
}

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

.mb50 {
    margin-bottom: 50px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.ml20 {
    margin-left: 20px;
}

.ml40 {
    margin-left: 40px;
}

.mr20 {
    margin-right: 20px;
}

.mr40 {
    margin-right: 40px;
}

.pt10 {
    padding-top: 10px !important;
}

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

.pt30 {
    padding-top: 30px !important;
}

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

.pt50 {
    padding-top: 50px !important;
}

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

.bdb {
    border-bottom: 1px solid #717171;
}

.w-auto {
    width: auto !important;
}

.bdn {
    border: none !important;
}

.ovh {
    overflow: hidden;
}

.underline {
    text-decoration: underline;
}

.br {
    display: block;
}

br.pcNoBr {
    display: none;
}

br.spNoBr {
    display: inline;
}

.filemeta {
    margin-left: 5px;
    display: inline-block;
    font-size: 0.9rem;
    color: #999;
}

.filemeta i {
    font-size: 1rem;
    margin-left: 3px;
}

.filemeta.pdf i {
    color: #bd0d0d;
}

.filemeta.alt i {
    color: #539dc3;
}

.filemeta.excel i {
    color: #13864e;
}

.filemeta.word i {
    color: #18519e;
}

.filemeta.powerpoint i {
    color: #c30404;
}

.filemeta.audio i {
    color: #ce7907;
}

.filemeta.video i {
    color: #b307ce;
}

.filemeta.archive i {
    color: #3e3e3e;
}

.btn01 {
    position: relative;
    width: 240px;
    margin: 40px auto;
    display: inline-block;
    color: #0075c1 !important;
    border: 2px solid #0075c1;
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
}

.btn01 i {
    /*position: absolute;
	left: 20px;
	top: 50%;*/
    font-size: 20px;
    margin-top: -8px;
}

.btn02 {
    width: 35%;
    position: relative;
    display: inline-block;
    background: #4c4c4c;
    padding: 10px 0;
    margin: 40px auto;
    text-align: center;
    background: #fff;
    border: 2px solid #82b0ce;
    border-top-left-radius: 45px 45px;
    border-top-right-radius: 45px 45px;
    border-bottom-right-radius: 45px 45px;
    border-bottom-left-radius: 45px 45px;
}

.btn02 i {
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 16px;
    margin-top: -8px;
}

#formSubmit.btn02 {}

#formReset.btn02 {
    border: 2px solid #aaa;
    color: #aaa;
}

#formBack.btn02 {
    background: #ffabab;
}

#formBack.btn02 i {
    left: 20px !important;
    right: auto !important;
}

.btn03 {
    background: #4c4c4c;
    margin: 40px 0;
    color: #fff !important;
    font-size: 24px;
    display: inline-block;
    text-align: center;
    padding: 30px 20px;
}

input[type="submit"].btn {
    font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
    letter-spacing: 1px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .float {
        overflow: hidden;
    }

    /* .float .left {
        width: 45%;
    }

    .float .right {
        width: 45%;
    }*/

    br.pcNoBr {
        display: inline;
    }

    .btn01 {
        padding: 10px 40px 10px 20px;
    }
}

@media screen and (max-width: 640px) {
    .float .left {
        width: 45%;
    }

    .float .right {
        width: 45%;
    }

    br.spNoBr {
        display: none;
    }

    .table {
        width: 100%;
        display: block;
        border-top: 1px solid #a3a3a3;
    }

    .table tr,
    .table th,
    .table td {
        width: 100%;
        display: block;
        border: none;
    }

    .table tr {
        border-bottom: 1px solid #a3a3a3;
    }

    .table th {
        padding: 20px 10px 20px;
    }

    .table td {
        padding: 0px 10px 20px;
    }

    .btn01,
    .btn02 {
        display: block;
        width: 100%;
        margin: 20px auto;
    }
}
