@charset "UTF-8";

/*  文字基本サイズ 16px */


/* @group web-font */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap');

/* @end */


/* @group 初期設定 */

html {
    overflow: auto;
    color: #000;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "メイリオ", sans-serif;
    position: relative;
    -webkit-text-size-adjust: 100%;
    min-width: calc(1100px + 40px);
    width: 100%;
    overflow-x: hidden;
    /* コンテンツ幅を超える背景対策 */
    overflow-y: hidden;
    /* コンテンツ幅を超える背景対策 */
    display: grid;
    grid-template-rows: auto 1fr auto;
}

body.fixed {
    position: fixed;
}

ul ol,
ol ul {
    font-size: 100% !important;
}

ul,
ol,
li ul,
li ol {
    list-style: none;
}

sup {
    vertical-align: top;
    font-size: 0.7em;
}

sub {
    vertical-align: baseline;
    font-size: 0.7em;
}

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

label {
    cursor: pointer;
}

a {
    color: #0168C8;
    text-decoration: underline;
    transition: all .3s;
}

a:visited {
    color: inherit;
}

a:hover {
    text-decoration: none;
}

a[href^="tel:"] {
    text-decoration: underline;
    cursor: default;
}

a img,
button,
input[type="submit"] {
    transition: all .3s;
}

figure {
    margin-bottom: 1.5em;
}

figcaption {
    font-size: 93%;
    line-height: 1.5;
    margin: .5em 0 2em;
    position: relative;
}

strong {
    font-weight: 700;
}

address {
    font-style: normal;
}

*,
 ::before,
 ::after {
    box-sizing: border-box;
}

.clear {
    clear: both;
}


/* @end */


/* @group header */

#header-area {
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    position: fixed;
    z-index: 100;
}

body.fixed #header-area {
    top: 0;
}

#header {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    height: 90px;
    transition: height .3s;
}

#header-area.scroll-header #header {
    height: 60px;
}

#header.scroll::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: -50vw;
    right: -50vw;
    width: 200vw;
}

#header-logo-area {
    position: absolute;
    top: 23px;
    left: 20px;
    transition: top .3s;
}

#header-area.scroll-header #header-logo-area {
    top: 10px;
}

#header-logo-area img {
    width: 238px;
    height: auto;
    transition: none;
}


/* @end of header */


/* @group gnav */

#gnav {
    position: inherit;
    width: 100%;
    height: 0;
}

#toggle-nav {
    display: block;
    z-index: 100;
    position: absolute;
    top: 17px;
    right: 20px;
    transition: top .3s;
}

#header-area.scroll-header #toggle-nav {
    top: 6px;
}

#toggle-nav img {
    width: 48px;
    display: none;
}

.toggle-menu {
    background-color: #0168C8;
    color: #FFF;
    cursor: pointer;
    font-size: 9px;
    height: 54px;
    width: 54px;
    text-align: center;
    letter-spacing: .1em;
}

.toggle-menu a {
    display: block;
    height: 100%;
    width: 100%;
}

.toggle-menu span {
    color: #FFF;
    display: block;
    position: absolute;
    top: 9px;
    bottom: 10px;
    left: 19px;
    width: 16px;
    height: 2px;
    margin: auto;
    background: #FFF;
    transition: .2s;
}

.toggle-menu span:before,
.toggle-menu span:after {
    display: block;
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    width: 16px;
    height: 2px;
    background: #FFF;
    transition: .3s;
}

.toggle-menu span:before {
    margin-top: -8px;
}

.toggle-menu span:after {
    margin-top: 6px;
    width: 16px;
}

.toggle-menu .close {
    background: transparent;
    left: 19px;
    top: 6px;
}

.toggle-menu .close:before,
.toggle-menu .close:after {
    margin-top: 0;
}

.toggle-menu .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 18px;
}

.toggle-menu .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    width: 18px;
}

#gnav ul.gnav_lv1 {
    background: rgba(1, 104, 200, 0.97);
    display: none;
    height: 100%;
    left: 0;
    overflow-y: scroll;
    position: fixed;
    top: 71px;
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    z-index: 200;
}

#header-area.scroll-header #gnav ul.gnav_lv1 {
    top: 60px;
}

#gnav ul.gnav_lv1>div {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    padding: 50px 0;
}

#gnav ul.gnav_lv1>div>li {
    width: 420px;
    margin-right: 40px;
    border-bottom: 1px solid #69A4DC;
}

#gnav ul.gnav_lv1>div>li a {
    display: block;
    color: #fff;
    font-size: 20px;
    padding: 5px 30px 17px 10px;
    background: url('../images/icon_arrow_gnav.svg') no-repeat right 5px top 10px;
    background-size: 7px 11px;
    text-decoration: none;
    transition: all .3s;
    line-height: 1.3;
}

#gnav ul.gnav_lv1>div>li a:hover {
    opacity: .6;
}


/* @end */


/* @group content-area */

#content-area {
    margin-top: 90px;
    margin-bottom: 90px;
    width: 100%;
}

.list-pl {
    padding-left: 1.2em;
}

.list-pl::before {
    display: none;
}


/* @group h1-area */

#h1-area {
    background: #003A6D;
    margin: 0 auto 55px;
    position: relative;
    width: 100%;
    height: 130px;
}

#h1-area h1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 32px;
    font-weight: 600;
    width: 100%;
    color: #fff;
    line-height: 1.3;
    margin: 0 auto;
    padding: 0 20px;
    width: calc(1100px + 40px);
    height: 130px;
}

#h1-area #h1 span.en {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-family: Times, 'Times New Roman', serif;
    font-weight: normal;
    letter-spacing: 0.05em;
    height: 25px;
}


/* @end */


/* @group breadcrumb */

#breadcrumb ul {
    font-size: 12px;
    line-height: 1.4;
    margin: -35px auto 70px;
    padding: 0 20px;
    max-width: calc(1100px + 40px);
    position: relative;
    z-index: 2;
    display: flex;
}

#breadcrumb ul li {
    margin-left: 20px;
    position: relative;
}

#breadcrumb li::before {
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    content: "";
    display: block;
    height: 5px;
    width: 5px;
    left: -13px;
    position: absolute;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#breadcrumb li.home a {
    padding-left: 18px;
    position: relative;
}

#breadcrumb li.home a::before {
    position: absolute;
    content: "";
    background: url(../images/icon_bread_home.svg) no-repeat;
    width: 10px;
    height: 12px;
    top: 2px;
    left: 0;
}

#breadcrumb li:first-child {
    margin-left: 0;
}

#breadcrumb li:first-child::before {
    display: none;
}

#breadcrumb a {
    color: #00223D;
    text-decoration: underline;
}


/* @end */

#main-content {
    margin: 0 auto 60px;
    padding: 0 20px 40px;
    width: calc(1100px + 40px);
    position: relative;
}

#main-content a {
    transition: all 0.3s;
}

#main-content section {
    margin-bottom: 130px;
}

#main-content>*:last-child,
#main-content section:last-child,
#main-content section>*:last-child {
    margin-bottom: 0px;
}

#main-content p {
    color: #4D4D4D;
    line-height: 2;
    margin-bottom: 1em;
}

#main-content a:hover {
    -webkit-transition: all 03s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#main-content figure {
    margin-bottom: 1.5em;
}

#main-content figcaption {
    font-size: 93%;
    line-height: 1.5;
    margin: .5em 0 2em;
    position: relative;
}

.img-switch {}


/* @group heading */

#main-content h2,
#main-content h3,
#main-content h4,
#main-content h5 {
    line-height: 1.5;
    position: relative;
}

#main-content h2 {
    font-size: 28px;
    margin-bottom: .9em;
    padding-bottom: .5em;
    color: #0168C8;
    border-bottom: 2px solid #0168C8;
}

#main-content h2 span {
    font-size: 16px;
    font-weight: normal;
    color: #4D4D4D;
}

#main-content h3,
#main-content.cms-detail h2 {
    font-size: 20px;
    margin-bottom: .8em;
}

#main-content h4 {
    font-size: 17px;
    margin-bottom: .6em;
    color: #000;
}

#main-content *+h4::before,
#main-content.cms-detail *+h3::before {
    top: calc( .5em + 1.8em);
}

#main-content *+h2 {
    padding-top: 1.8em;
}

#main-content *+h3,
#main-content *+h4,
#main-content *+h5 {
    padding-top: 1.5em;
}

#main-content h2+h3,
#main-content h3+h4,
#main-content h4+h5 {
    padding-top: 0em !important;
}


/* @end of heading */


/* @group pattern */

.caption {
    font-size: .9em;
    line-height: 1.5 !important;
}

figure+.caption {
    margin-top: -1em;
}

[class*="pattern1-"],
[class*="pattern2-"],
[class*="pattern3-"],
[class*="pattern4-"] {
    margin-bottom: 2em;
}

.right-col {
    float: right;
}

.left-col {
    float: left;
}


/* pattern1-1 */

.pattern1-1 .left-col {
    width: calc((100% - 44px) / 2);
}

.pattern1-1 .right-col {
    width: calc((100% - 44px) / 2);
}

.pattern1-1 .col {
    float: left;
    margin-right: 44px;
    width: calc((100% - 44px) / 2);
}

.pattern1-1 .col:nth-of-type(2n) {
    margin-right: 0;
}


/* pattern2-3(3-2) */

.pattern2-3 .right-col,
.pattern3-2 .left-col {
    width: calc(((100% - 44px) / 5) * 3);
}

.pattern2-3 .left-col,
.pattern3-2 .right-col {
    width: calc(((100% - 44px) / 5) * 2);
}

.pattern2-4 .right-col,
.pattern4-2 .left-col {
    width: calc(((100% - 44px) / 6) * 4);
}

.pattern2-4 .left-col,
.pattern4-2 .right-col {
    width: calc(((100% - 44px) / 6) * 2);
}


/* pattern1-2(2-1) */

.pattern1-2 .left-col,
.pattern2-1 .right-col {
    width: calc((100% - 44px) / 3);
}

.pattern1-2 .right-col,
.pattern2-1 .left-col {
    width: calc(((100% - 44px) / 3) * 2);
}


/* pattern1-3(3-1) */

.pattern1-3 .left-col,
.pattern3-1 .right-col {
    width: calc((100% - 44px) / 4);
}

.pattern1-3 .right-col,
.pattern3-1 .left-col {
    width: calc(((100% - 44px) / 4) * 3);
}


/* @end of pattern */


/* @group ul */

#main-content ul.list {
    margin: 0 0 2em 0;
    color: #4D4D4D;
}

#main-content ul.list>li,
#main-content ul.list ul>li {
    line-height: 1.7;
    margin-bottom: .5em;
    padding-left: 1.2em;
    position: relative;
}

#main-content ul.list>li::after {
    background-color: #0168C8;
    border-radius: 100%;
    content: "";
    display: block;
    height: 6px;
    left: 0.2em;
    position: absolute;
    top: 0.7em;
    width: 6px;
}

#main-content ul.list ul,
#main-content ul.list ol {
    margin-top: .5em;
}

#main-content ul.list ul>li {
    margin-left: 0.3em;
    position: relative;
    padding-left: 1.0em;
}

#main-content ul.list>li ul>li::after {
    background-color: #999999;
    border-radius: 100%;
    content: "";
    display: block;
    height: 6px;
    width: 6px;
    left: 0;
    position: absolute;
    top: 0.7em;
}

#main-content ul.list.col3 li {
    float: left;
    margin-right: 2em;
    width: calc((100% - 4em) / 3);
}

#main-content ul.list.col3 li:nth-child(3n) {
    margin-right: 0;
}

#main-content ul.list li>*:last-child {
    margin-bottom: 0;
}

#main-content ul.list.list-2col {
    display: flex;
    flex-wrap: wrap;
}

#main-content ul.list.list-2col li {
    width: calc(50% - 30px);
    margin-right: 15px;
}

#main-content ul.list.list-2col li:nth-child(2n) {
    margin-right: 0;
}


/* @end of ul */


/* @group link */

.link {
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 1em;
}

.link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #007bff;
    top: 6px;
    left: 1px;
}

.link a {
    display: inline;
    text-decoration: underline;
    color: #0168C8;
}

.link a[href$=".pdf"]::after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 15px;
    background-image: url(../images/icon_pdf.svg);
    vertical-align: middle;
    margin: 0 2px 2px 10px;
}

.link a[href$=".docx"]::after,
.link a[href$=".docm"]::after {
    content: '';
    display: inline-block;
    width: 54px;
    height: 17px;
    background-image: url(../images/icon_word.png);
    vertical-align: middle;
    margin: 0 2px 2px 10px;
    background-size: contain;
    /* SVG全体を含めるように調整 */
    background-position: center;
    /* 画像を中央に配置 */
    background-repeat: no-repeat;
}

.link a[href$=".xlsx"]::after,
.link a[href$=".xlsm"]::after {
    content: '';
    display: inline-block;
    width: 51px;
    height: 15px;
    background-image: url(../images/icon_excel.png);
    vertical-align: middle;
    margin: 0 2px 2px 10px;
    background-size: contain;
    /* SVG全体を含めるように調整 */
    background-position: center;
    /* 画像を中央に配置 */
    background-repeat: no-repeat;
}

.link a[href$=".ppt"]::after,
.link a[href$=".pptx"]::after,
.link a[href$=".pptm"]::after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 17px;
    background-image: url(../images/icon_ppt.png);
    vertical-align: middle;
    margin: 0 2px 2px 10px;
    background-size: contain;
    /* SVG全体を含めるように調整 */
    background-position: center;
    /* 画像を中央に配置 */
    background-repeat: no-repeat;
}

.link li {
    margin-top: 0.5em;
    margin-left: 1em;
}

.link p {
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
}

.icon-pdf {
    width: 45px;
    height: 15px;
    vertical-align: middle;
    margin: 0 2px 2px 2px;
}

.icon-excel {
    width: 53px;
    height: auto;
    vertical-align: middle;
    margin: 0 2px 2px 2px;
}

.icon-new {
    width: 50px;
    height: 17px;
    vertical-align: middle;
    margin: 0 2px 2px 2px;
}

h2 .icon-new {
    margin: 0 6px 4px 2px;
}

.link .date {
    font-size: 14px;
    margin-right: 1em;
    line-height: 1.7;
}

.ai-out-gray {
    position: relative;
}

.ai-out-gray::after {
    position: absolute;
    content: "";
    background: url("../../common/images/icon_blank_gray.svg") no-repeat center / 100% auto;
    content: "";
    display: inline-block;
    height: 11px;
    width: 14px;
    top: 5px;
    left: 5px;
}


/* @end */


/* @group caution */

p.caution::before,
ul.caution li::before,
span.caution::before {
    font-family: 'font-library' !important;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
    color: #d00361;
    font-size: 0.75em;
    position: absolute;
    left: -1.5em;
}

#main-content .caution {
    position: relative;
    margin-left: 1.5em;
    color: #D00361;
}

#main-content .caution.inline-block {
    white-space: nowrap;
}

span.caution::before {
    top: 0em;
    left: -1.3em;
}

ul.caution li {
    list-style: none;
    margin-bottom: 10px;
    line-height: 1.8;
    position: relative;
}

p.caution::before,
ul.caution li::before {
    top: .4em;
}

#main-content .caution a {
    text-decoration: underline;
}

#main-content .caution a:hover {
    text-decoration: none;
}


/* @end of caution */


/* @group table */

#main-content table {
    line-height: 1.7;
    margin-bottom: 2em;
    max-width: inherit;
    overflow: inherit;
    width: 100%;
}

#main-content table th,
#main-content table td {
    padding: .8em 1.25em;
}

#main-content table th {
    background-color: #F7F2DB;
    border: 1px solid #DED082;
    text-align: left;
    color: #FF7100;
    font-weight: 700;
}

#main-content table th.sub-head {
    background-color: #FDFCF5;
    color: inherit;
    font-weight: normal;
}

#main-content table td {
    border: 1px solid #DED082;
    color: #334E64;
}

#main-content table table th,
#main-content table table td {
    border: none;
}

#main-content table td>*:last-child {
    margin-bottom: 0;
}


/* @end of table*/


/* @group indent */

.indent-1em {
    margin-left: 1em;
    text-indent: -1em;
}

.indent-caution {
    margin-left: 3.7em;
    text-indent: -3.7em;
}


/* @end */


/* @group wd-full */

.wd-full {
    margin-left: calc((100vw - 1100px) / -2);
    padding-left: calc((100vw - 1100px) / 2);
    padding-right: calc((100vw - 1100px) / 2);
    min-width: calc(1100px + 40px);
    width: 100vw;
}

.bg-full {
    position: relative;
}

.bg-full::before {
    content: "";
    height: 100%;
    width: 200vw;
    position: absolute;
    top: 0;
    left: -50vw;
    z-index: -2;
}


/* @end of content-area */


/* @end of link */


/* @group page-top */

#to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

#to-top a {
    display: block;
    background: url('../images/pagetop.svg') no-repeat;
    width: 30px;
    height: 30px;
    transition: all .3s;
}

#to-top a:hover {
    transform: scale(1.1);
}


/* @end */


/* @group footer */

#footer-area {
    width: 100%;
    background: #003A6D;
    height: 88px;
    display: flex;
    align-items: center;
}

#footer-area #footer {
    width: calc(1100px + 40px);
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

#footer-nav ul {
    display: flex;
    justify-content: flex-end;
    width: 500px;
}

#footer-nav ul li {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    text-align: right;
    margin-left: 35px;
    line-height: 1;
}

#footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

#footer-nav ul li a:hover {
    opacity: .7;
}


/* @group copyright */

#copyright {
    width: 600px;
    padding: 30px 0;
    color: #fff;
    font-size: 11px;
}


/* @end */


/* @end of footer */


/* @group home */

body.home #content-area {
    margin-bottom: 0;
}

body.home #main-content {
    margin-bottom: 0;
    padding-bottom: 0;
}

#home-h1-area {
    z-index: -2;
    position: relative;
}

#home-h1-area::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #003A6D;
    top: 0;
}

#home-h1 {
    width: calc(1100px + 40px);
    padding: 60px 20px 63px;
    margin: 0 auto 115px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

#home-h1 figure {
    position: absolute;
    width: 680px;
    height: 400px;
    top: 60px;
    right: -95px;
    z-index: -1;
}

#home-h1 h1 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 30px;
    margin-left: -.4em;
    text-indent: .4em;
    padding-left: -2em;
}

#home-h1 p {
    color: #fff;
    font-size: 18px;
    width: 485px;
    line-height: 1.85;
    font-weight: normal !important;
}

h2.h2-home {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    padding: 0 !important;
    border: none !important;
    font-size: 37px !important;
    letter-spacing: .04em;
    position: relative;
}

h2.h2-home::before {
    position: absolute;
    content: '';
    width: 54px;
    height: 1px;
    background: #0168C8;
    left: -75px;
    top: 27px;
}

h2.h2-home span {
    display: block;
    font-size: 16px;
    font-weight: bold !important;
    font-weight: 600 !important;
    color: #0168C8 !important;
    margin-top: 3px;
}

h3.h3-home {
    font-size: 20px;
    margin-bottom: 2em;
    color: #0168C8;
}


/* home-info */

#home-info-area {
    margin-bottom: 175px;
}

.info-area .col {
    display: flex;
    margin-bottom: 12px;
    line-height: 1.8;
}

.info-area .col .date {
    width: 125px;
    font-size: 13px;
    padding-top: 3px;
}

.info-area .col .info-link {
    width: calc(100% - 110px);
}

.info-area .col .info-link a {
    color: #000;
}

.info-area .col .info-link a:hover {
    text-decoration: none;
}


/* home-service */

#home-service-area {
    padding: 70px 0px 90px 355px;
    position: relative;
}

#home-service-area.bg-full::before {
    background: #F2F7FC;
}

#home-service-area::after {
    position: absolute;
    content: '';
    background: #003A6D;
    width: calc(50vw + 270px);
    height: calc(100% - 110px);
    left: -50vw;
    top: -65px;
    z-index: 1;
}

.box-service {
    background: #fff;
    padding: 33px 40px 30px;
    margin-bottom: 30px;
}

.box-service *:last-child {
    margin-bottom: 0 !important;
}

.box-service p a:hover {
    text-decoration: none;
}

.box-service p.link::before {
    display: none;
}

.box-service p.link a {
    display: inline;
    padding: 0 0 3px 0;
    transition: all .3s !important;
    text-decoration: none;
    font-size: 15px;
    color: #0168C8;
    position: relative;
}

.box-service p.link a::after {
    position: absolute;
    content: '';
    bottom: -3px;
    right: 0;
    left: inherit;
    background: #0168c8;
    height: 1px;
    width: 100%;
    transition: all .3s;
}

.box-service p.link:hover a::after {
    opacity: 0;
}

.box-service p.link a::before {
    display: none;
}

#home-service-area .ml {
    margin-left: 45px !important;
}


/* @end */


/* @group common */

.pc-none {
    display: none;
}

.tel-link {}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline !important;
}

.gra-bg {
    background: #FFC130;
    background: linear-gradient(to right, #ffd400 0%, #ff9f00 100%);
}


/* font */

.fc-red {
    color: #FF1563;
}

.fc-org {
    color: #ff7100 !important;
}

.fc-sg01 {
    color: #0075a0 !important;
}

.fc-sg02 {
    color: #734a9e !important;
}

.fc-sg03 {
    color: #00948f !important;
}

.bold {
    font-weight: bold;
}

.f-mincho {
    font-family: Times, 'Times New Roman', serif !important;
}

.f-gothic {
    font-family: 'Noto Sans JP', sans-serif !important;
}

.ffs-palt {
    font-feature-settings: "palt";
}


/* flexbox */

.flexbox {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

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

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


/* position */

.left-position,
tr.left-position th,
tr.left-position td,
table.left-position th,
table.left-position td {
    text-align: left !important;
}

.right-position,
tr.right-position th,
tr.right-position td,
table.right-position th,
table.right-position td {
    text-align: right !important;
}

.center-position,
tr.center-position th,
tr.center-position td,
table.center-position th,
table.center-position td,
table.center-position-th th {
    text-align: center !important;
}

.middle-position,
tr.middle-position th,
tr.middle-position td,
table.middle-position th,
table.middle-position td {
    vertical-align: middle !important;
}

.nowrap,
table.nowrap-th th {
    white-space: nowrap;
}

.word-wrap {
    word-wrap: break-word;
}

.underline {
    text-decoration: underline;
}


/* display */

.display-inline {
    display: inline !important;
}

.display-block {
    display: block !important;
}

.display-inline-block {
    display: inline-block !important;
}

.display-none {
    display: none !important;
}


/* fontsize */

.fz-ss {
    font-size: 69% !important;
}

.fz-s {
    font-size: 85% !important;
}

.fz-m {
    font-size: 100% !important;
}

.fz-l {
    font-size: 115% !important;
}

.fz-ll {
    font-size: 130% !important;
}

.fz-lll {
    font-size: 146% !important;
}

.fz-llll {
    font-size: 176% !important;
}


/* margin */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb05em {
    margin-bottom: 0.5em !important;
}

.mb1em {
    margin-bottom: 1em !important;
}

.mb2em {
    margin-bottom: 2em !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mt-0 {
    margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.last-para {
    margin-bottom: 60px !important;
}

.last-para2 {
    margin-bottom: 90px !important;
}


/* padding */

.pt-0 {
    padding-top: 0 !important;
}

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

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

.pb-0 {
    padding-bottom: 0 !important;
}

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

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

.pl-0 {
    padding-left: 0 !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-20 {
    padding-right: 20px !important;
}


/* width */

.wd-100p {
    width: 100% !important;
}

.wd-95p {
    width: 95% !important;
}

.wd-90p {
    width: 90% !important;
}

.wd-85p {
    width: 85% !important;
}

.wd-80p {
    width: 80% !important;
}

.wd-75p {
    width: 75% !important;
}

.wd-70p {
    width: 70% !important;
}

.wd-65p {
    width: 65% !important;
}

.wd-60p {
    width: 60% !important;
}

.wd-55p {
    width: 55% !important;
}

.wd-50p {
    width: 50% !important;
}

.wd-45p {
    width: 45% !important;
}

.wd-40p {
    width: 40% !important;
}

.wd-35p {
    width: 35% !important;
}

.wd-30p {
    width: 30% !important;
}

.wd-25p {
    width: 25% !important;
}

.wd-20p {
    width: 20% !important;
}

.wd-15p {
    width: 15% !important;
}


/* @end */


/* @group clearfix */

[class*="pattern1-"]::after,
[class*="pattern2-"]::after,
[class*="pattern3-"]::after {
    content: "";
    display: table;
    clear: both;
}


/* @end */


/**SP************************** */

@media screen and (max-width: 768px) {
    body {
        width: 100%;
        min-width: inherit;
        overflow: hidden;
    }
    a:hover {
        opacity: 1;
    }
    /* @group header */
    #header-area {
        width: 100%;
    }
    #header {
        margin-bottom: 0;
        height: 70px;
        width: 100%;
        max-width: inherit;
        min-width: inherit;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.75);
    }
    #header-area.scroll-header #header {
        height: 50px;
        background: rgba(255, 255, 255, 0.75);
    }
    #header-area.scroll-header {
        z-index: 300;
    }
    #header-logo-area {
        padding: 0;
        height: auto;
        top: 18px;
        left: 10px;
        width: 185px;
    }
    #header-area.scroll-header #header-logo-area {
        top: 9px;
    }
    #header-logo-area img {
        width: 100%;
        height: auto;
    }
    /* @end of header */
    /* @group gnav */
    #toggle-nav {
        top: 15px;
        right: 10px;
    }
    #header-area.scroll-header #toggle-nav {
        top: 5px;
    }
    .toggle-menu {
        height: 40px;
        width: 40px;
    }
    .toggle-menu span {
        left: 14px;
        top: 11px;
    }
    .toggle-menu span,
    .toggle-menu span::before,
    .toggle-menu span::after {
        width: 13px;
    }
    .toggle-menu span::before {
        top: 2px;
    }
    .toggle-menu span::after {
        top: 0px;
    }
    .toggle-menu .close {
        top: 10px;
        left: 13px;
    }
    .toggle-menu .close::before,
    .toggle-menu .close::after {
        width: 13px;
    }
    .toggle-menu .close::before {
        top: 0px;
    }
    .toggle-menu .close::after {
        top: 0px;
    }
    #gnav ul.gnav_lv1 {
        top: 55px;
    }
    #header-area.scroll-header #gnav ul.gnav_lv1 {
        top: 45px;
    }
    #gnav ul.gnav_lv1>div {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 5px 20px 20px;
    }
    #gnav ul.gnav_lv1>div>li {
        width: 100%;
        margin-right: 0;
    }
    #gnav ul.gnav_lv1>div>li a {
        font-size: 16px;
        padding: 35px 30px 20px 10px;
        background: url('../images/icon_arrow_gnav.svg') no-repeat right 10px top 37px;
        background-size: 7px 11px;
        text-decoration: none;
        line-height: 1.3em;
    }
    /* @end */
    /* @group content-area */
    div#content-area {
        position: relative;
        margin-top: 70px;
    }
    #main-content a {
        transition: none !important;
    }
    .inner {
        width: 100%;
    }
    /* @group h1-area */
    #h1-area {
        width: 100%;
        height: auto;
    }
    #h1-area h1 {
        font-size: 21px;
        font-weight: 600;
        width: 100%;
        padding: 20px 20px;
        width: 100%;
        height: auto;
    }
    /* @end */
    /* @group breadcrumb */
    #breadcrumb ul {
        font-size: 11px;
        line-height: 1.4;
        margin: -35px auto 40px;
        max-width: inherit;
        min-width: inherit;
        display: block;
    }
    #breadcrumb ul li {
        display: inline-block;
        margin-bottom: .5em;
    }
    #breadcrumb li.home a::before {
        top: 0px;
    }
    /* @end */
    #main-content {
        width: 100%;
        margin: 0 auto 20px;
    }
    #main-content section {
        margin-bottom: 70px;
    }
    #main-content figure {
        margin-bottom: 1em;
    }
    /* @group heading */
    #main-content h2 {
        font-size: 20px;
        text-align: left;
    }
    #main-content h2 span {
        font-size: 13px;
    }
    #main-content h3 {
        font-size: 17px;
    }
    #main-content h3::before,
    #main-content h2+h3::before,
    #main-content.cms-detail h2::before {
        width: 16px;
    }
    /* @end */
    /* @group pattern */
    [class*="pattern1-"],
    [class*="pattern2-"],
    [class*="pattern3-"],
    [class*="pattern4-"] {
        margin-bottom: 2em;
    }
    .right-col,
    .left-col {
        float: none;
    }
    [class*="pattern"] [class*="col"] {
        margin-right: 0;
        margin-bottom: 2em;
        width: 100% !important;
    }
    [class*="col"] figure {
        text-align: center;
    }
    [class*="col"] figure img {
        width: 100%;
    }
    /* @end */
    /* @group ul */
    #main-content ul.list.list-2col {
        display: block;
    }
    #main-content ul.list.list-2col li {
        width: 100%;
        margin-right: 0px;
    }
    /* @end */
    /* @group dl */
    #main-content dl dt {
        font-size: 16px;
    }
    /* @end of dl */
    /* @group link */
    .link .date {
        display: inline-block;
    }
    /* @end */
    /* @group caution */
    #main-content .caution-box {
        padding: 20px;
    }
    /* @end */
    /* @group table */
    #main-content table th,
    #main-content table td {
        padding: 10px;
    }
    #main-content table.type-rowline th,
    #main-content table.type-rowline td {
        padding: 20px 10px 20px 0;
    }
    /* レスポンシブ対応 */
    #main-content .table-column th,
    #main-content .table-column td {
        width: 100%;
        display: block;
        border: none;
    }
    #main-content .table-column th {
        margin: 2em 0 .8em;
    }
    #main-content .table-column tr:first-child th {
        margin: 0 0 .8em;
    }
    #main-content .table-column.center-position-th th {
        text-align: left !important;
    }
    #main-content .table-column td {
        padding: 10px 0 5px 10px;
    }
    #main-content .table-column th.sub-head {
        border-bottom: 1px dotted #666 !important;
        font-weight: 500;
        background: none;
        padding: 0 0 .7em .5em;
        margin: 1.8em 0 .8em;
    }
    /* テーブル文字サイズ小(SP) */
    #main-content table.table-fz-s th,
    #main-content table.table-fz-s td {
        font-size: 14px;
    }
    /* テーブル　横スクロールバー表示 */
    #main-content .scroll-box table {
        margin-bottom: 10px;
        white-space: nowrap;
    }
    .scroll-box {
        overflow-x: auto;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    .scroll-box::-webkit-scrollbar {
        height: 5px;
    }
    .scroll-box::-webkit-scrollbar-track {
        border-radius: 5px;
        background: #FF8C00;
    }
    .scroll-box::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: #FF8C00;
        width: 30%;
    }
    /* @end */
    /* @end */
    /* @group page-top */
    #to-top {
        bottom: 10px;
    }
    /* @end */
    /* @group footer */
    #footer-area {
        height: auto;
        display: block;
    }
    #footer-area #footer {
        width: 100%;
        padding: 0;
        display: block;
    }
    #footer-nav ul {
        width: 100%;
        display: block;
    }
    #footer-nav ul li {
        width: 100%;
        padding: 20px 10px;
        margin-left: 0;
        text-align: center;
        background: #497296;
        font-size: 13px;
    }
    #footer-nav ul li:last-of-type {
        background: #3A678E;
    }
    #footer-nav ul li a {
        padding: 20px 10px;
        display: block;
        width: 100%;
        text-align: center;
        font-size: 13px;
        line-height: 1;
    }
    #footer-nav ul li a:hover {
        text-decoration: none;
    }
    /* @group copyright */
    #copyright {
        width: 100%;
        padding: 20px 40px 20px 20px;
        color: #fff;
        font-size: 8px;
        line-height: 1.3;
    }
    /* @end */
    /* @end of footer */
    /* @group home */
    #home-h1-area::before {
        height: calc(100% - 100px);
    }
    #home-h1 {
        width: 100%;
        padding: 38px 20px 15px 20px;
        margin: 0;
    }
    #home-h1 h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    #home-h1 p {
        font-size: 15px;
        width: 100%;
        margin-bottom: 2em;
    }
    #home-h1 figure {
        position: relative;
        width: 100%;
        height: auto;
        z-index: -1;
        right: auto;
        top: auto;
    }
    h2.h2-home {
        font-size: 30px !important;
        margin-bottom: 37px !important;
    }
    h2.h2-home::before {
        display: none;
    }
    h2.h2-home span {
        font-size: 13px;
        margin-top: 0;
    }
    /* home-info */
    #home-info-area {
        margin-bottom: 40px;
    }
    .info-area .col {
        display: block;
        margin-bottom: 22px;
    }
    .info-area .col .date {
        width: 100%;
        padding-top: 0;
        margin-bottom: 6px;
    }
    .info-area .col .info-link {
        width: 100%;
        margin-bottom: 30px;
    }
    /* home-service */
    #home-service-area {
        padding: 70px 0px 50px;
        position: relative;
    }
    #home-service-area::after {
        position: absolute;
        content: '';
        background: #003A6D;
        width: 40vw;
        height: 95px;
        left: auto;
        right: -20px;
        top: 0;
        z-index: -1;
    }
    #home-service-area .ml {
        margin-left: 0 !important;
    }
    #home-service-area h3 {
        font-size: 20px !important;
    }
    .bg-full::before {
        top: 40px;
    }
    .box-service {
        margin-bottom: 20px;
        padding: 30px 30px 25px;
    }
    /* @group common */
    .pc-none {
        display: block;
    }
    /* @end */
    .sp-none {
        display: none !important;
    }
    .tel-link a {
        color: inherit;
        text-decoration: underline;
    }
    .sp-left-position {
        text-align: left !important;
    }
    .last-para {
        margin-bottom: 38px !important;
    }
    .last-para2 {
        margin-bottom: 55px !important;
    }
    /* fontsize */
    .fz-ss-sp {
        font-size: 69% !important;
    }
    .fz-s-sp {
        font-size: 85% !important;
    }
    .fz-m-sp {
        font-size: 100% !important;
    }
    .fz-l-sp {
        font-size: 115% !important;
    }
    .fz-ll-sp {
        font-size: 130% !important;
    }
    .fz-lll-sp {
        font-size: 146% !important;
    }
    .fz-llll-sp {
        font-size: 176% !important;
    }
    /* @end */
    /* @group clearfix */
    /* @end */
}

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

.move2023 {
    font-weight: bold;
    color: #ff227a !important;
    border: 2px solid #ff227a;
    padding: 1em;
    margin-bottom: 2em !important;
}

#main-content .move2023 p {
    margin-bottom: 0;
}


/* ol_list */

.ol_a {
    list-style: none;
}

.ol_a {
    margin: 1.5em 0;
}

.ol_a>li {
    position: relative;
    margin: 0.8em 0;
}

ol.ol_a,
ol.ol_b {
    padding-left: 2.5em;
    counter-reset: num_li;
    list-style: none;
}

ol.ol_a,
ol.ol_b>li {
    position: relative;
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}

ol.ol_a>li:before,
ol.ol_b>li:before {
    position: absolute;
    top: 0;
    left: -2.5em;
    width: 2em;
    text-align: center;
    white-space: nowrap;
    counter-increment: num_li;
    content: counter(num_li)".";
}

ol.ol_b>li:before {
    font-feature-settings: "palt";
    content: "（"counter(num_li)"）";
}

@media (min-width: 640px) {
    ol.ol_a {
        padding-left: 2em;
    }
    ol.ol_a>li:before {
        position: absolute;
    }
    .spOnly {
        display: none;
    }
}

ol.ol_a[type="a"] {
    counter-reset: abc_li;
}

ol.ol_a[type="a"]>li:before {
    counter-increment: abc_li;
    content: counter(abc_li, lower-alpha)".";
}
