@charset "utf-8";
:root{
  --blue:#0F6ACF;
  --navy:#0A2F5A;
  --light:#E9F3FF;
  --yellow:#FFD84D;
  --green:#1EC7A6;
  --ink:#1F2937;
  --white:#FFFFFF;
}

html {
    font-size: 62.5%;
    height: 100%;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
}
body {
    background: var(--white);
    color: var(--ink);
    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: var(--yellow);
    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;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p, figure {
    margin: 0;
    padding: 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;
}
.section ._container {
    padding: 4%;
}
._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: #ccc;
}
._bg_color02 {
    background: #222;
}
._bg_color03 {
    background: red;
}
/*===================================
wrap
===================================*/
._inner {
    width: min(92%, 1200px);
    margin: auto;
}
._container + ._container {
    margin-top: 70px;
}
._box + ._box {
    margin-top: 50px;
}
._box_child + ._box_child {
    margin-top: 20px;
}
/*===================================
font
===================================*/
@font-face {
    font-family: 'Bebas Neue';
    src: url("../font/BebasNeue-Regular.ttf") format('truetype');
}
.en_01 {
    font-family: 'Bebas Neue', sans-serif;
}
@font-face {
    font-family: 'Teko';
    src: url("../font/Teko-Regular.ttf") format('truetype');
}
.en_02 {
    font-family: 'Teko', sans-serif;
}
.en_03 {
    font-family: 'Bebas Neue', sans-serif;
}
.jp_01 {}
/*===================================
heading
===================================*/
/* heading style */
.heading01 {
    color: var(--blue);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15vw;
}
.heading01 span {
    color: transparent;
    -webkit-text-stroke: .3px var(--yellow);
    text-stroke: .3px var(--yellow);
    font-size: .5em;
    margin-left: .5em
}
.heading02 {
    border-bottom: 1px solid  var(--yellow);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10vw;
    line-height: 1.2;
}
.heading03 {}
.heading04 {}
.heading05 {}
/*===================================
btn
===================================*/
/* btn wrap */
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
* + .btns {
    margin-top: 20px;
}
/* btn base */
.btn {
    border: 1px solid #222;
    color: var(--ink);
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    position: relative;
    padding: 10px 40px;
    transition: all 0.3s;
    text-align: center;
    user-select: none;
    vertical-align: middle;
}
/* btn type */
.btn_type01 {
    border: 1px solid var(--white);
    border-radius: .2em;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5vw;
    width: min(100%, 300px);
}
.btn_type02 {
    border: 1px solid var(--blue);
    border-radius: .2em;
    color: var(--blue);
    font-size: 5vw;
    width: min(100%, 300px);
}
@media screen and (min-width:960px) {
    .btn_type01 {
        font-size: 2vw;
    }
    .btn_type02 {
        font-size: 2vw;
    }
}
@media screen and (min-width:1200px) {
    .btn_type01 {
        font-size: 2vw;
    }
}
/*===================================
list
===================================*/
._list {}
._list_item {}
._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;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 80px;
    background: var(--blue);
    z-index: 999;
}
#header .logo {
    padding: 4%;
}
#header .logo a {
    color: var(--yellow);
    display: flex;
    flex-direction: column;
    font-size: 6vw;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
#header .logo a span {
    display: block;
    font-size: .6em;
    letter-spacing: 0;
}
@media screen and (min-width: 768px) {
    #header .logo a {
        font-size: 4vw;
    }
}
@media screen and (min-width: 960px) {
    #header .logo a {
        font-size: 2vw;
    }
}
@media screen and (min-width:1200px) {
    #header {
        height: 100px;
    }
    #header .logo a {
        font-size: 1.5vw;
    }
}
/* nav */
#nav {
    position: absolute;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    transition: .5s all;
}
#nav.panelactive {
    right: 0;
}
#nav.panelactive #nav_list {
    background: var(--blue);
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 99;
}
#nav #nav_list #menu_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 4%;
    transition: .3s all;
}
#nav #nav_list #menu_list ._item {
    border: 1px solid #fff;
    border-radius: .5em;
    width: 100%;
}
#nav #nav_list #menu_list ._item + ._item {
    margin-top: .5em;
}
#nav #nav_list #menu_list ._item a {
    position: relative;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-size: 10vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    width: 100%;
    padding: .2em .5em;
    transition: .5s all
}
#nav #nav_list #menu_list ._item a:hover {
    color: var(--yellow);
}
#nav #nav_list #menu_list ._item a::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    border-top: 1px solid var(--yellow);
    width: 3em;
}
#nav #nav_list #menu_list ._item a span {
    color: transparent;
    -webkit-text-stroke: .5px var(--yellow);;
    text-stroke: .5px var(--yellow);;
    font-size: .7em;
}
@media screen and (min-width:768px) {
    #nav #nav_list #menu_list ._item a {
        font-size: 8vw;
    }
}
@media screen and (min-width:960px) {
    #nav #nav_list #menu_list ._item a {
        font-size: 8vw;
    }
}
@media screen and (min-width:1200px) {
    #nav {
        top: 0;
        right: 0;
        height: 100px;
    }
    #nav #nav_list {}
    #nav #nav_list #menu_list {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        height: 100px;
        gap: 20px;
        padding: 0 20px;
        width: min(70%, 1200px);
        margin-left: auto;
    }
    #nav #nav_list #menu_list ._item a {
        font-size: 1.2vw;
        padding: .2em 1em;
    }
    #nav #nav_list #menu_list ._item a::after {
        width: 2.5em;
    }
    #nav #nav_list #menu_list ._item + ._item {
        margin-top: 0;
    }
}
/*===================================
hamburger menu
===================================*/
.nav_openbtn {
    display: block;
    position: absolute;
    right: 0;
    cursor: pointer;
    width: 80px;
    height: 80px;
    z-index: 999;
}
.nav_openbtn .openbtn {
    transition: all .4s;
}
.nav_openbtn span {
    transform: translate(-50%, -50%);
    background: var(--yellow);
    display: inline-block;
    position: absolute;
    left: 50%;
    height: 1px;
    width: 40px;
    transition: all .4s;
    z-index: 999;
}
.nav_openbtn span:nth-of-type(1) {
    top: 36px;
}
.nav_openbtn span:nth-of-type(2) {
    top: 43px;
}
.nav_openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 20px;
    transform: rotate(45deg);
}
.nav_openbtn.active span:nth-of-type(2) {
    top: 50%;
    left: 20px;
    transform: rotate(-45deg);
}
@media screen and (min-width:1200px) {
    .nav_openbtn {
        display: none;
    }
}
/*===================================
main
===================================*/
#main {
    overflow: hidden;
}
/*===================================
footer
===================================*/
#footer {
    background: var(--blue);
    color: var(--white);
    padding: 4%;
}
#footer ._container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#footer .footer_logo {
    border: 1px solid var(--white);
    border-radius: .5em;
    text-align: center;
    line-height: 1.2;
    padding: 4%;
}
#footer .footer_logo a {
    color: var(--yellow);
    font-size: 8vw;
    font-weight: 600;
}
#footer .footer_logo a span {
    display: block;
    font-size: .6em;
}
#footer .footer_link {
    border: 1px solid var(--white);
    border-radius: .5em;
}
#footer .footer_link ._list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 4%;
}
#footer .footer_link ._list ._item {
    border: 1px solid var(--white);
    border-radius: .5em;
    width: calc((100% - 10px) / 2);
}
#footer .footer_link ._item a {
    color: var(--yellow);
    font-weight: 500;
    text-align: center;
}
#footer .footer_bottom_link ._list {
    display: flex;
    align-items: center;
    gap: 20px;
}
#footer .footer_bottom_link ._list ._item {
    border: 1px solid var(--white);
    border-radius: .5em;
    width: calc((100% - 20px) / 2);
}
#footer .footer_bottom_link ._list ._item a {
    color: var(--yellow);
    letter-spacing: .02em;
    text-align: center;
    text-decoration: underline;
    padding: .5em;
}
#footer small {
    color: var(--white);
    display: block;
    font-size: 4vw;
    text-align: center;
    margin-top: 1em;
    padding: 4%;
}
@media screen and (min-width:768px) {
    #footer .footer_link ._item a {
        ;
        font-size: 3vw;
    }
    #footer small {
        font-size: 3vw;
        padding: 0%;
    }
}
@media screen and (min-width:960px) {
    #footer small {
        font-size: 2vw;
    }
}
@media screen and (min-width:1200px) {
    #footer {
        padding: 1% 4%;
    }
    #footer ._container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }
    #footer ._container .footer_logo {
        width: calc((100% - 20px) / 2);
        height: 25vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #footer .footer_logo a {
        font-size: 4vw;
    }
    #footer ._container .footer_link {
        width: calc((100% - 20px) / 2);
        height: 25vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #footer .footer_link ._list {
        width: 100%;
    }
    #footer .footer_link ._item a {
        font-size: 2vw;
    }
    #footer ._container .footer_bottom_link {
        width: 100%;
    }
    #footer small {
        font-size: 1vw;
    }
}
/*===================================
page top
===================================*/
#page_top a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--white);
    border-radius: .5em;
    color: var(--white);
    font-size: 14px;
    text-align: center;
    width: 60px;
    height: 60px;
    transition: all 0.3s;
}
#page_top a:hover {
    background: var(--yellow);
    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);
    }
}