<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*------------------------------------------
  トップページ
------------------------------------------*/
/*----- メインビジュアル -----*/
.wrapper-mv.top{
    background-image: url("../img/mv_bg.jpg");
    background-size: cover;
    background-position: center;
    height: 340px;
}
.wrapper-mv .mv{
    width: 960px;
    margin: 0 auto;
    position: relative;
}
.wrapper-mv.top .mv .mv-img{
    position: absolute;
    top: 30px;
    padding: 0;
}
.wrapper-mv.top .mv .mv-img img{
    border-radius: 8px;    
}
.wrapper-mv.top .mv .mv-txt{
    position: absolute;
    top: 170px;
    left: 30px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}
.wrapper-mv .mv .mv-txt span{
    display: block;
    font-size: 50px;
    color: #0055a7;
}
@media only screen and (max-width: 768px) {
    .wrapper-mv.top{
        height: auto;
    }
    .wrapper-mv .mv{
        width: 100%;
    }
    .wrapper-mv.top .mv .mv-img{
        position: relative;
        top: 0;
    }
    .wrapper-mv .mv .mv-img img{
        border-radius: 0;
        position: static;
    }
    .wrapper-mv.top .mv .mv-txt{
        height: 80px;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 23px;
        text-align: center;
        background-color:rgba(255,255,255,0.8);
        padding: 22px 0 0;
    }
    .wrapper-mv.top .mv .mv-txt span{
        display: inline-block;
        font-size: 30px;
        padding: 0 8px;
        color: #0055a7;
    }
}
@media only screen and (max-width: 340px){
    .wrapper-mv.top .mv .mv-txt {
        font-size: 5vw;
    }
}

/*----- グローバルナビ -----*/
.top-gnav{
    background: #3c8fd9;
}
.top-gnav ul{
    display: flex;
    justify-content: space-between;
    padding: 20px 0 30px;
}
.top-gnav ul li{
    width: 24%;
}
.top-gnav ul li a{
    width: 100%;
    text-align: center;
    display: block;
    padding: 10px 0;
    border-radius: 8px;
    background-image: -moz-linear-gradient( 90deg, rgb(230,230,230) 0%, rgb(243,243,243) 26%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(230,230,230) 0%, rgb(243,243,243) 26%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(230,230,230) 0%, rgb(243,243,243) 26%, rgb(255,255,255) 100%);
    box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2);
}
.top-gnav ul li a:hover{
    background-image: -moz-linear-gradient( 90deg, rgb(207,207,207) 0%, rgb(231,231,231) 20%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(207,207,207) 0%, rgb(231,231,231) 20%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(207,207,207) 0%, rgb(231,231,231) 20%, rgb(255,255,255) 100%);
}
.top-gnav ul li a:hover span{
    text-decoration: underline;
}
.top-gnav ul li a img{
    width: 40%;
    display: block;
    margin: 0 auto;
}
.top-gnav ul li a span{
    display: inline-block;
    font-size: 1.8rem;
    margin: 8px 12px 4px;
    padding: 0 0 0 18px;
    position: relative;
}
.top-gnav ul li a span::before{
    content: "";
    width: 20px;
    height: 20px;
    background: #0055a7;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -6px;
    margin-top: -12px;
}
.top-gnav ul li a span::after {
    content: "";
    width: 7px;
    height: 7px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    left: -1px;
    margin-top: -5px;
    transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
    .top-gnav ul{
        flex-wrap: wrap;
        padding: 10px 0;
    }
    .top-gnav ul li{
        width: 46%;
        margin: 2%;
    }
    .top-gnav ul li a{
        width: 100%;
    }
    .top-gnav ul li a span {
        margin: 4px 10px 0px;
    }
    .top-gnav ul li a span::before{
        margin-top: -9px;
        left: -1px;
        width: 16px;
        height: 16px;
    }
    .top-gnav ul li a span::after{
        margin-top: -4px;
        width: 5px;
        height: 5px;
        left: 4px;
    }
}
@media only screen and (max-width: 390px){
    .top-gnav ul li a span {
        font-size: 4vw;
    }
}
/*----- コンテンツ -----*/
.contents{
    margin: 0 0 60px;
}
.contents a{
    color: #0055a7;
}
.top-lead{
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 50px 0 0;
    line-height: 1.7;
    color: #fff;
    text-shadow: 1px 1px 2px #02488d;
}
.con-group .con-group-inner{
    padding: 20px 15px 70px;
    line-height: 2;
}
.contents .con-group h2{
    font-size: 2.2rem;
    font-weight: bold;
    color: #0055a7;
    border-bottom: 4px solid #bcd8ef;
    padding: 0 0 4px 6px;
    display: flex;
    align-items: center;
}
.contents.top .con-group h2 img{
    margin: 0 8px 0 0;
    width: auto;
}
.con-group .btn-area{
    text-align: center;
    margin: 30px 0 0;
}
.con-group .btn-area .flex{
    display: flex;
}
.con-group .btn-area a{
    background: #27a58f;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 450px;
    height: 80px;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 0 0 #117c69;
    position: relative;
}
.con-group .btn-area a:hover{
    text-decoration: none;
    background: #208c50;
}
.con-group .btn-area a.simulation{
    background: #35a13d;
    box-shadow: 0 4px 0 0 #12741a;
}
.con-group .btn-area a.simulation:hover{
    background: #1a8924;
}
.con-group .btn-area a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-top: -5px;
}
.con-group .btn-area a span{
    display: flex;
    align-items: center;
    padding: 3px 0 0;
		line-height: 1.2;
}
.con-group .btn-area a span img{
    margin: 0 0 0 8px;
}
.note-box{
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px 0 0;
}
.note-box p{
    font-size: 1.5rem;
    font-weight: bold;
    color: #0055a7;
    margin: 0 0 8px;
}
.note-box ul.notes li{
    font-size: 1.4rem;
    padding: 0 0 4px 1.4rem;
    text-indent: -1.4rem;
    line-height: 1.6;
}
.onepoint{
    margin: 20px 0 0;
    padding: 18px 20px;
    background: #e9f5ff;
    color: #0055a7;
    border: 1px dashed #0055a7;
}

@media only screen and (max-width: 768px) {
    .contents{
        margin: 0 0 30px;
    }
    .top-lead{
        font-size: 1.6rem;
        padding: 20px 0 0;
        text-align: left;
    }
    .con-group .con-group-inner {
        padding: 16px 0px 60px;
    }
    .contents .con-group h2{
        font-size: 2rem;
    }
    .con-group .btn-area {
        margin: 20px 0 0;
    }
	.con-group .btn-area .flex{
		flex-direction: column;
	}
    .con-group .btn-area a{
        width: 100%;
        height: 54px;
        font-size: 1.8rem;
    }
	.con-group .btn-area a + a{
		margin: 20px 0 0;
	}
    .con-group .btn-area a span img {
        margin: 0 0 0 6px;
        width: 15px;
    }
    .note-box {
        padding: 14px;
    }
    .onepoint {
        margin: 16px 0 0;
    }
}


/*------------------------------------------
  下層ページ
------------------------------------------*/
/*----- メインビジュアル -----*/
.wrapper-mv{
    background-image: url("../img/mv_bg.jpg");
    background-size: cover;
    background-position: center;
    height: auto;
}
.wrapper-mv .mv .mv-img{
    position: static;
    padding: 30px 0 0;
}
.wrapper-mv .mv .mv-img img{
    border-top-left-radius: 8px;   
    border-top-right-radius: 8px;   
    border-bottom-left-radius: 0;   
    border-bottom-right-radius: 0;   
}
.wrapper-mv .mv .mv-txt {
    position: absolute;
    top: 120px;
    left: 60px;
    font-size: 32px;
    font-weight: bold;
}
@media only screen and (max-width: 768px) {
    .wrapper-mv{
        height: auto;
    }
    .wrapper-mv .mv .mv-img{
        position: relative;
        top: 0;
        padding: 0;
    }
    .wrapper-mv .mv .mv-img img {
        border-radius: 0;
    }
    .wrapper-mv .mv .mv-txt{
        height: 64px;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        font-size: 2.4rem;
        text-align: center;
        background-color:rgba(255,255,255,0.8);
        padding: 15px 0 0;
    }
}
/*-----グローバルナビ -----*/
.lower-gnav{
    background: #3c8fd9;
}
.lower-gnav ul {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}
.lower-gnav ul li {
    width: 19%;
}
.lower-gnav ul li a{
    width: 100%;
    text-align: center;
    display: block;
    padding: 10px 0;
    border-radius: 8px;
    background-image: -moz-linear-gradient( 90deg, rgb(230,230,230) 0%, rgb(243,243,243) 26%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(230,230,230) 0%, rgb(243,243,243) 26%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(230,230,230) 0%, rgb(243,243,243) 26%, rgb(255,255,255) 100%);
    box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2);
}
.lower-gnav ul li a:hover{
    background-image: -moz-linear-gradient( 90deg, rgb(207,207,207) 0%, rgb(231,231,231) 20%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(207,207,207) 0%, rgb(231,231,231) 20%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(207,207,207) 0%, rgb(231,231,231) 20%, rgb(255,255,255) 100%);
}
.lower-gnav ul li a:hover span{
    text-decoration: underline;
}
.lower-gnav ul li a img{
    width: 40%;
    display: block;
    margin: 0 auto;
}
.lower-gnav ul li a span{
    display: inline-block;
    font-size: 1.8rem;
    margin: 8px 0 4px;
    padding: 0 0 0 18px;
    position: relative;
}
.lower-gnav ul li a span::before{
    content: "";
    width: 20px;
    height: 20px;
    background: #0055a7;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -6px;
    margin-top: -10px;
}
.lower-gnav ul li.home a span::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 20px;
    background: none;
    background-image: url("../img/nav05.png") !important;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    border-radius: 0;
    top: 50%;
    left: -10px;
    margin-top: -12px;
}
.lower-gnav ul li.home a span::after {
    content: none;
}
.lower-gnav ul li a span::after {
    content: "";
    width: 7px;
    height: 7px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    left: -1px;
    margin-top: -3px;
    transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
    .lower-gnav ul{
        display: grid;
        grid-template-columns: 15% repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        padding: 12px 0;
    }
    .lower-gnav ul li{
        width: auto;
    }
    .lower-gnav ul li.home { grid-area: 1 / 1 / 3 / 2; }
    .lower-gnav ul li.item01 { grid-area: 1 / 2 / 2 / 3;}
    .lower-gnav ul li.item02 { grid-area: 1 / 3 / 2 / 4; }
    .lower-gnav ul li.item03 { grid-area: 2 / 2 / 3 / 3; }
    .lower-gnav ul li.item04 { grid-area: 2 / 3 / 3 / 4; }    
    .lower-gnav ul li a{
        text-align: left;
        padding: 10px 0 8px 16px;
    }
    .lower-gnav ul li a span {
        font-size: 1.6rem;
        padding: 0 0 0 10px;
        margin: 0;
    }
    .lower-gnav ul li a span::before{
        width: 16px;
        height: 16px;
        margin-top: -9px;
        left: -9px;
    }
    .lower-gnav ul li a span::after{
        width: 6px;
        height: 6px;
        margin-top: -4px;
        left: -5px;
    }
    .lower-gnav ul li.home a{
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lower-gnav ul li.home a img{
        width: 50%;
        display: inline-block;
    }
}
@media only screen and (max-width: 400px){
    .lower-gnav ul li a span {
        font-size: 3.8vw;
    }
}

/*----- コンテンツ -----*/
.contents .page-nav{
    margin: 30px 0 60px;
}
.contents .page-nav ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contents .page-nav ul li{
    width: 32.5%;
    margin: 6px 0;
}
.contents .page-nav ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    text-align: center;
    border: 2px solid #bcd8ef;
    border-radius: 4px;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: bold;
    color: #0055a7;
    padding: 8px 0 6px;
    text-decoration: none;
    box-shadow: 0 1px 0 #bcd8ef;
    position: relative;
}
.contents .page-nav ul li a::after{
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #0055a7;
    border-right: solid 2px #0055a7;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -6px;
    transform: rotate(135deg);
}
.contents .page-nav ul li a:hover{
    border: 2px solid #0055a7;
    box-shadow: 0 1px 0 #0055a7;
}
@media only screen and (max-width: 768px) {
    .contents .page-nav {
        margin: 16px 0 30px;
    }
    .contents .page-nav ul li {
        width: 48.5%;
        margin: 5px 0;
    }
    .contents .page-nav ul li a{
        font-size: 1.4rem;
        justify-content: flex-start;
        text-align: left;
        padding: 8px 20px 6px 8px;
    }
    .contents .page-nav ul li a::after{
        right: 8px;
    }
    .contents .page-nav ul.col-1 li{
        width: 100%;
    }
    .contents .page-nav ul.col-1 li a{
        height: 44px;
    }
}
@media only screen and (max-width: 350px){
    .contents .page-nav ul li a {
        font-size: 4vw;
    }
}

.contents .con-group table{
    width: 100%;
    margin: 20px 0 0;
}
.contents .con-group table th,
.contents .con-group table td{
    border: 1px solid #ccc;
    padding: 20px;
}
.contents .con-group table th{
    background: #e9f5ff;
    display: table-cell;
    vertical-align: middle;
    width: 28%;
	text-align: center;
}
.contents.top .con-group table th{
    width: 22%;
}
.contents .con-group table td ul li{
    line-height: 1.8;
}
.contents .con-group table.nowrap .th-top.th-right{
    width: 72%;    
}
.contents .con-group table.nowrap .th-left{
    background: #f4f9fd;
    font-weight: normal;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .contents .con-group table{
        border-bottom: 1px solid #ccc;
    }
    .contents .con-group table th,
    .contents .con-group table td{
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 8px 12px;
    }
    .contents .con-group table td{
        padding: 12px;
        font-size: 1.5rem;
        line-height: 1.8;
    }
    .contents .con-group table td ul li{
        padding-left: 1.5rem;
        text-indent: -1.5rem;
    }
    .contents.top .con-group table th {
        width: 100%;
    }
    .contents .con-group table.nowrap th,
    .contents .con-group table.nowrap td{
        display: table-cell;
        width: auto;
        line-height: 1.6;
    }
    .contents .con-group table.nowrap .th-top.th-right{
        width: 60%;    
    }
}

.contents.top .con-group ul.oval{
    margin: 0;
}
.contents .con-group ul.oval{
    margin: 10px 0 20px;
}
.contents .con-group ul.oval li{
    padding-left: 1.8rem;
    text-indent: -1.8rem;   
}
.contents .con-group ul.oval li::before{
    content: "●";
    color: #bcd8ef;
    padding-right: 3px;
}
.contents .con-group p.caption{
    text-align: center;
    color: #0055a7;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 30px 0 10px;
}
.contents .con-group .chart-img{
    width: 800px;
    margin: 0 auto;
}
.contents .con-group p.notes{
    font-size: 1.4rem;
    padding-left: 1.4rem;
    text-indent: -1.4rem;
    line-height: 1.8;
}
@media only screen and (max-width: 768px) {
    .contents .con-group .chart-img{
        width: 94%;
        margin: 0 auto;
    }   
}
.contents .con-group .indent{
    padding: 0 0 0 20px;
}
.contents .con-group h3{
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    background: #297ac3;
    padding: 2px 14px 0;
    margin: 0 0 20px;
}
.contents .con-group h4{
    color: #004b94;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 20px 0 0;
}
.contents .con-group .howto{
    margin: 30px 0 0;
    padding: 40px;
    border: 4px solid #ccc;
}
.contents .con-group .howto h5{
    border-bottom: 4px solid #ccc;
    font-size: 1.8rem;
    font-weight: bold;
    margin: -20px -40px 20px;
    text-align: center;
    padding: 0 0 15px;
}
.contents .con-group .howto .flo{
    background: #f3f3f3;
    padding: 1px 30px 30px;
    margin: 20px 0;
}
.contents .con-group .howto .simu-txt{
    font-weight: bold;
    border: 1px dashed #27a58f;
    padding: 14px;
    background: #d6ebe7;
    color: #0f564a;
}
@media only screen and (max-width: 768px) {
    .contents .con-group .howto{
        padding: 10px 15px 20px;
    }
    .contents .con-group .howto h5 {
        margin: 0px -15px 20px;
        padding: 0 0 10px;
    }
    .contents .con-group .howto .flo {
        padding: 1px 15px 15px;
        margin: 20px 0;
    }
    .contents .con-group .howto .flo &gt; .indent{
        padding: 0;
    }

}

/*----- よくある質問 -----*/
.accordion-container {
    margin: 40px 0 60px;
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer
}
.accordion-container .accordion-title {
    position: relative;
    padding: 10px;
    font-size: 1.6rem;
    background: #e9f5ff;
    cursor: pointer;
    display: flex;
    margin: 24px 0 0;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
      background-color: #c0e3ff;
}
/*.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}
*/
.accordion-container .accordion-title:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 12px;
    height: 12px;
    border-top: solid 3px #0055a7;;
    border-right: solid 3px #0055a7;;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.accordion-container .accordion-title.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 45%;
}
.accordion-container .accordion-title .question{
    width: 60px;
    height: 60px;
    background: #0055a7;
    border-radius: 4px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 10px 0 0;
}
.accordion-container .accordion-title p{
    padding: 20px 20px 0 20px;
    font-weight: bold;
}
.accordion-container .accordion-content {
    display: none;
    border: 4px solid #e9f5ff;
    padding: 24px 16px;
}
.accordion-content-inr{
    display: flex;
}
.accordion-container .accordion-content .answer{
    width: 60px;
    height: 60px;
    background: #e9f5ff;
    border-radius: 4px;
    color: #0055a7;
    font-size: 26px;
    text-align: center;
    padding: 8px 0 0;
}
.accordion-container .accordion-content p{
    width: 92%;
    padding: 0 0 0 22px;
	line-height: 2;
}
.accordion-container .accordion-content p .notes{
	font-size: 1.4rem;
	display: block;
	margin: 4px 0 0;
}
.accordion-container .accordion-title p::selection,
.accordion-container .accordion-content p::selection{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
@media only screen and (max-width: 768px) {
    .accordion-container {
        margin: 40px 0 40px;
    }
    .accordion-container .accordion-title:after {
        right: 15px;
        top: 50%;
    }
    .accordion-container .accordion-title:hover,
    .accordion-container .accordion-title:active,
    .accordion-container .content-entry.open .accordion-title {
        background-color: #e9f5ff;
    }
    .accordion-container .accordion-title .question,
    .accordion-container .accordion-content .answer{
        width: 36px;
        height: 36px;
        font-size: 16px;
        padding: 6px 0 0;
        text-align: center;
    }
    .accordion-container .accordion-title{
        margin: 18px 0 0;
    }
    .accordion-container .accordion-title p {
        width: 92%;
        padding: 0 25px 0 10px;
    }
    .accordion-container .accordion-content {
        padding: 16px 16px 16px 12px;
    }
    .accordion-container .accordion-content p {
        width: 92%;
        padding: 0 0 0 10px;
    }
}






</pre></body></html>