@charset "utf-8";
html {
    font-size: 62.5%;
    height: 100%;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
}
body {
    background: #fff;
    color: #222;
    font-family: "Hiragino Sans", ヒラギノ角ゴシック, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", YuGothic, 游ゴシック, Meiryo, メイリオ, Verdana, "ＭＳ Ｐゴシック", sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
    font-size: 16px;
    font-size: 1.6rem;
    height: 100%;
    line-height: 1.85;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}
a {
    display: block;
    color: #222;
    max-width: 100%;
    max-height: 100%;
    text-decoration: none;
    outline: none;
}
img {
    display: block;
    height: auto;
    max-width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li, li {
    list-style: none;
}
h1, h2, h3, h4, h5, h6, p, figure {
    margin: 0;
}
p {
    text-align: justify;
    line-height: 1.75;
}
p + p {
    margin-top: 1em;
}
/*===================================
section
===================================*/
.section {
    padding-bottom: clamp(70px, 9vw, 100px);
    padding-top: clamp(70px, 9vw, 100px);
}
.section:not(._bg) + .section:not(._bg) {
    padding-top: 0px;
}
._bg {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}
/* img */
.bg-img01 {
    background: url(../img/mv.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}
/* bg bg mask */
.bg-mask {
    position: relative;
}
.bg-mask::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.bg-mask > * {
    position: relative;
    z-index: 1;
}
.bg-mask-blk::after {
    background-color: rgba(0, 0, 0, .8);
}
.bg-mask-wht::after {
    background-color: rgba(255, 255, 255, .9);
}
/* bg color */
.bg-color01 {
    background: #081756;
}
.bg-color02 {
    background: #f1f1f1;
}
/*===================================
wrap
===================================*/
._inner {
    width: min(92%, 1200px);
    margin: auto;
}
._container + ._container {
    margin-top: 50px;
}
._box + ._box {
    margin-top: 30px;
}
._box-child + ._box-child {
    margin-top: 20px;
}
/*===================================
heading
===================================*/
/* heading style */
.heading01 {
    color: #081755;
    font-size: 12vw;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
}
.heading01 span {
    display: block;
}
.heading01 + * {
    margin-top: 80px;
}
.heading02 {
    color: #081755;
    border-bottom: solid 3px #509373;
    position: relative;
}
.heading02:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #081755;
    bottom: -3px;
    width: 30%;
}
.heading02 + * {
    margin-top: 30px;
}
.heading03 {
    border-left: 5px solid #081755;
    line-height: 1.5;
    padding-left: 10px;
}
.heading03 + * {
    margin-top: 15px;
}
.heading04 {
    background: #081755;
    color: #fff;
    padding: 10px;
}
.heading04 span {
    display: block;
    font-size: .7em;
}
.heading05 {}
@media screen and (min-width: 768px) {
    .heading01 {
        font-size: 9vw;
    }
    .heading02 {
        font-size: 4.5vw;
    }
}
@media screen and (min-width: 960px) {
    .heading01 {
        font-size: 60px;
    }
    .heading02 {
        font-size: 48px;
    }
}
/*===================================
btn
===================================*/
/* btn wrap */
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
* + .btns {
    margin-top: 40px;
}
/* btn base */
.btn {
    color: #081755;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    position: relative;
    padding: 1rem 4rem;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
}
/* btn type */
.btn_type01 {
    border: 1px solid #081755;
    width: min(100%, 300px);
}
.btn_type01:hover {
    background: #081755;
    color: #fff;
}
/*===================================
list
===================================*/
.list-item + .list-item {
    margin-top: 10px;
}
/*===================================
table
===================================*/
._scroll-bar {
    overflow-x: auto;
}
._scroll-bar::-webkit-scrollbar {
    height: 8px;
}
._scroll-bar::-webkit-scrollbar-track {
    border-radius: 8px;
    background: rgba(238, 238, 238, 1);
}
._scroll-bar::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: rgba(169, 170, 161, 1);
}
/*===================================
header
===================================*/
/* header */
#header {
    position: fixed;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    background: #fff;
    border-top: 5px solid #0a1755;
}
#header .logo {
    padding: 4%;
}
#header .logo a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#header .logo a img {
    width: min(100%, 160px);
}
#header .logo a span {
    font-size: 8px;
    margin-right: auto;
}
@media screen and (min-width: 960px) {
    #header {
        height: 100px;
    }
    #header .logo {
        padding: 0 4%;
        height: 100px;
        display: flex;
        align-items: center;
    }
}
/* nav */
#nav {
    position: fixed;
    top: 0;
    right: -120%;
    background: #081755;
    width: 100%;
    height: 100vh;
    transition: .5s all;
    z-index: 999;
}
#nav.panelactive {
    right: 0;
}
#nav.panelactive .logo a span {
    color: #fff;
}
#nav #menu_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 130px);
    padding: 4%;
}
#nav #menu_list li {
    width: 100%;
}
#nav #menu_list li + li {
    margin-top: 0;
    border-top: .1rem solid rgba(255, 255, 255, .1);
}
#nav #menu_list li a {
    display: block;
    color: #fff;
    font-size: 5vw;
    font-weight: 600;
    line-height: 1.5;
    width: 100%;
    padding: 20px 0;
}
#nav #menu_list li a span {
    color: rgb(204, 204, 204);
    display: block;
    font-size: .5em;
    letter-spacing: 2px;
}
#nav #menu_list li a img {
    display: inline-block;
    width: 20px;
    margin-left: 10px;
}
#nav .sns_link {
    background: #081755;
    position: fixed;
    right: -120%;
    bottom: 0;
    width: 100%;
    height: 65px;
    padding: 4%;
    transition: .5s all;
}
#nav .sns_link ._list {
    align-items: center;
    justify-content: center;
}
#nav.panelactive .sns_link {
    right: 0;
}
@media screen and (min-width: 768px) {
    #nav #menu_list li a {
        font-size: 3vw;
    }
    #nav .sns_link {
        height: auto;
    }
    #nav .sns_link ._list {
        justify-content: flex-start;
    }
}
@media screen and (min-width:960px) {
    #nav {
        background: none;
        display: flex;
        justify-content: flex-end;
        transition: all 0.6s;
        top: 0;
        right: 0;
        width: 70%;
        height: 100px;
        padding: 0;
        gap: 10px;
    }
    #nav .logo {
        display: none;
    }
    #nav #menu_list {
        align-items: center;
        flex-direction: row;
        width: min(100%, 800px);
        height: 100px;
        padding: 0;
        gap: 0;
    }
    #nav #menu_list li + li {
        border-top: none;
    }
    #nav #menu_list li a {
        color: #222;
        font-size: 16px;
        white-space: nowrap;
        text-align: center;
    }
    #nav #menu_list li a span {
        color: #081755;
        font-size: .5em;
        letter-spacing: 0;
    }
    #nav #menu_list li a img {
        display: none;
    }
}
/*===================================
hamburger menu
===================================*/
.nav_openbtn {
    display: block;
    position: fixed;
    z-index: 9999;
    right: 0;
    cursor: pointer;
    width: 65px;
    height: 65px;
}
.nav_openbtn .openbtn {
    transition: all .4s;
}
.nav_openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 20px;
    height: 2px;
    border-radius: 2px;
    width: 30px;
    background: #081755;
    z-index: 999999;
}
.nav_openbtn span:nth-of-type(1) {
    top: 20px;
}
.nav_openbtn span:nth-of-type(2) {
    top: 27px;
}
.nav_openbtn span:nth-of-type(3) {
    top: 34px;
}
.nav_openbtn.active span {
    background: #fff;
}
.nav_openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 25px;
    transform: rotate(45deg);
    width: 30%;
}
.nav_openbtn.active span:nth-of-type(2) {
    transform: scale(0, 1);
    transform-origin: left top;
}
.nav_openbtn.active span:nth-of-type(3) {
    top: 28px;
    left: 25px;
    transform: rotate(-45deg);
    width: 30%;
}
@media screen and (min-width:960px) {
    .nav_openbtn {
        display: none;
    }
}
/*===================================
main
===================================*/
#main {
    overflow: hidden;
}
/*===================================
footer
===================================*/
#footer {
    background: #081755;
}
#footer ._container {
    padding: 7.73vw 6.4vw 0 6.4vw;
}
.footer_logo {}
.footer_logo a img {
    width: 200px;
}
.footer_link {
    margin-top: 60px;
}
.footer_link .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.footer_link ._list .list-item {
    border-bottom: .1rem solid rgba(255, 255, 255, .1);
}
.footer_link ._list .list-item a {
    color: #fff;
    font-weight: 500;
    padding: 20px 0;
}
.footer_link ._list .list-item a span {
    color: #ccc;
    display: block;
    font-size: .5em;
}
.footer_link ._list .list-item a img {
    display: inline-block;
    width: 20px;
    margin-left: 10px;
}
.sns_link ._list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.sns_link ._list .list-item {
    margin-top: 0;
}
.sns_link ._list .list-item a {
    margin-top: 0;
    padding: 5px;
}
.sns_link ._list .list-item a img {
    width: 25px;
    height: 25px;
}
#footer small {
    font-size: 3vw;
    padding: 20px 0 10px;
    display: block;
    text-align: center;
    color: #fff;
}
@media (min-width: 768px) {
    .footer_link ._list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer_link ._list .list-item {
        width: calc((100% - 20px) / 2);
    }
    .footer_link ._list .list-item + .list-item {
        margin-top: 0;
    }
    .footer_bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 4% 0;
    }
    #footer small {
        font-size: 12px;
    }
}
@media screen and (min-width:960px) {
    #footer ._container {
        width: min(100%, 1400px);
        margin: 0 auto;
        padding: 7.73vw 6.4vw 2.4vw 6.4vw;
    }
    .footer_link ._list .list-item {
        width: calc((100% - 60px) / 4);
    }
}
/*===================================
page top
===================================*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #081755;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}
#page-top a:hover {
    color: #222;
    background: #ccc;
    transform: translateY(-5px);
}
#page-top {
    position: fixed;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
}
#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@-webkit-keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}
@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(100px);
    }
}