@charset "UTF-8";

/* base */
html{
    font-size: 100%;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    color: #24292e;
    /* font-family: "Noto Sans JP"; */
}

a{
    text-decoration: none;
    color: #333;
}

p{
    font-size: 1.3rem;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
    font-size: 1.2rem;
}


/* header */
.header{
    position: relative;
    z-index: 100;
    width: 100%;
    height: 150px;
}

.header-top{
    position: relative;
    background-color: white;
    z-index: 50;
    height: 45px;
}

.header-top img{
    margin: 5px 10px;
    height: 30px;
}

.header-logo{
    position: relative;
    background-color: #0068bd;
    height: 105px;
    z-index: 75;
}

.header-logo img{
    position: absolute;
    top: 20px;
    width: 100px;
    margin-left: 10px;
}

.header-logo p{
    line-height: 100px;
    text-align: center;
    color: white;
    font-size: 3.5rem;
    font-weight: 600;
}

.menu-modal-open-button{
    cursor: pointer;
}

.menu-modal-open{
    content: "";
    position: absolute;
    z-index: 999;
    top: 110px;
    right:40px;
    width: 40px;
    display: block;
}

.menu-modal-open i{
    content: "";
    position: absolute;
    background: white;
    top: calc(50% - 10px);
    width: 100%;
    height: 3px;
}

.menu-modal-open::before{
    content: "";
    position: absolute;
    background: white;
    top: calc(50% - 20px);
    width: 100%;
    height: 3px;
    transition: .25s;
}

.menu-modal-open::after{
    content: "";
    position: absolute;
    background: white;
    top: calc(50% - 0px);
    width: 100%;
    height: 3px;
    transition: .25s;
}

.menu-modal-open.modal-expanded-state i{
    display: none;
}

.menu-modal-open.modal-expanded-state::before{
    background-color: #fff;
    transform: rotate(45deg);
    transition: .25s;
    top: 0px;
}

.menu-modal-open.modal-expanded-state::after{
    background-color: #fff;
    transform: rotate(-45deg);
    transition: .25s;
}

.menu-modal-overlay{
    display: none;
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.menu-modal-container{
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    z-index: 100;
}

.menu-modal-item{
    text-align: left;
    padding: 20px 4%;
}

.menu-modal-item:not(:first-child){
    border-top: 2px dashed rgba(0, 104, 189, 0.8);
}


.memu-modal-item-bullet{
    width: 20px;
    margin-right: 10px;
}

.menu-modal-item>a{
    color: #24292e;
    font-size: 2.0rem;
    font-weight: 600;
}

.menu-modal-item>a:hover{
    opacity: 0.5;
}

.menu-modal-bottom-box{
    background-color: #0068bd;
    border: 1px solid #fff;
    border-collapse: collapse;
}

.menu-modal-bottom-content{
    text-align: center;
    padding: 30px 0;
    border: 1px solid #fff;
    border-collapse: collapse;
}

.menu-modal-bottom-content a{
    color: #fff;
    font-size: 2.0rem;
}

.menu-modal-bottom-content a:hover{
    opacity: 0.5;
}

@media screen and (max-width: 800px) {
    .header-logo p{
        font-size: 2.5rem;
    }  
}

@media screen and (max-width: 480px) {
    .header-logo p{
        font-size: 1.8rem;
    }

    .header-logo img{
        top: 35px;
        width: 50px;
        margin-left: 5px;
    }

    .menu-modal-open{
        top: 100px;
        right:20px;
        width: 20px;
    }

    .menu-modal-open i{
        top: calc(50% - 5px);
        height: 2px;
    }

    .menu-modal-open::before{
        top: calc(50% - 10px);
        height: 2px;

    }

    .menu-modal-open::after{
        top: calc(50% - 0px);
        height: 2px;
    }

    .menu-modal-item>a{
        font-size: 1.2rem;
    }
}

/* base section */
.page-blank{
    height: 120px;
}

.section.white-bg{
    width: 100%;
    background: rgba(255, 255, 255, 1);
}

.section.blue-bg{
    width: 100%;
    background: rgba(0, 104, 189, 1);
    color: #fff;
}

.section.light-blue-bg{
    width: 100%;
    background: rgba(0, 104, 189, 0.6);
    color: #fff;
}

.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4% 50px;
    text-align: center;
}

.wrapper.page-title{
    padding-bottom: 20px;
}

.wrapper.page-content{
    padding-top: 20px;
    min-height: 500px;
}

.wrapper.page-content.left-text{
    text-align: left;
}

.sec-title{
    margin-bottom: 15px;
    font-size: 2.5rem;
    padding: 30px 0 0;
}

@media screen and (max-width: 480px) {
    .sec-title{
        font-size: 1.5rem;
    }
}


/* pankuzu */

.wrapper.pankuzu{
    padding: 20px;
    text-align: left;
}

.pankuzu a:hover{
    opacity: 0.5;
}


/* section bottom button */
.button{
    display: inline-block;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    padding: 2px 5px;
    border: 2px solid #333;
    border-radius: 15px;
    transition: color,border .25s;
}

.blue-bg .button{
    color: #fff;
    border: 2px solid #fff;
    border-radius: 15px;
    transition: color,border .25s;
}

.button:hover{
    color: #666;
    border: 2px solid #666;
}

/* grid */
.grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.grid-4 > .grid-item{
    width: 24%;
}

.grid-2 > .grid-item{
    width: 50%;
}

@media screen and (max-width: 800px) {
    .grid-4 > .grid-item{
        width: 48%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .grid{
        display: block;
    }
    .grid-4 > .grid-item{
        width: 100%;
    }
    .grid-2 > .grid-item{
        width: 100%;
    }
}

/* main-images */
#main-images{
    position: relative;
}

.main-images{
    position: relative;
    width: 100%;
    z-index: -1;
}

.bulletin-board-box{
    position: absolute;
    right: 0;
    bottom: 0;
}

.bulletin-board{
    position: relative;
    width: 300px;
    z-index: 50;
}

.bulletin-board:hover{
    opacity: 0.9;
}

.bulletin-board-text{
    position: absolute;
    z-index: 51;
    top: 20%;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    text-align: center;
}

.bulletin-board-text a p{
    font-weight: 600;
}

@media screen and (max-width: 800px) {
    .bulletin-board{
        width: 200px;
    }
    .bulletin-board-text{
        top: 15%;
    }
    .bulletin-board-text a p{
        font-size: 1.0rem;
    }
}

@media screen and (max-width: 480px) {
    .bulletin-board{
        width: 100px;
    }
    .bulletin-board-text{
        top: 15%;
    }
    .bulletin-board-text a p{
        font-size: 0.5rem;
    }
}

/* gp-car-craft */
.swiper {
    width: 100%;
    height: auto;
}

.swiper iframe{
    width: 80%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.swiper-pagination{
    text-align: right !important ;
}

.swiper-button-next, .swiper-button-prev{
    top: var(--swiper-navigation-top-offset, 40%) !important ;
}

@media screen and (max-width: 800px) {
    
}

@media screen and (max-width: 480px) {
    .swiper iframe{
        width: 70%;
    }
    .craft-video-title{
        font-size: 0.7rem;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: revert !important;
    }
}

/* news */
.news-list{
    background-color: #0068bd;
    border-radius: 10px;
}

.news-item{
    padding: 10px 4%;
    text-align: left;
}

.news-item:not(:last-child){
    border-bottom: 2px solid #fff;
}

.news-info,.news-info p a,.news-anchor{
    color: #fff;
}

.news-category{
    display: inline;
}

.news-info,.news-anchor{
    display: block;
}

.news-anchor:hover{
    opacity: 0.5;
}

.news-info{
    margin: 10px 0;
}

.news-category{
    margin: 0 0 0 30px;
    padding: 2px 5px;
    border: 1px solid #fff;
    border-radius: 15px;
}

.navigation.pagination{
    margin: 20px 0;
}

.prev.page-numbers,.page-numbers.current,.page-numbers,.next.page-numbers{
    padding: 0 5px;
}

@media screen and (max-width: 480px) {
    .news-info,.news-category{
        font-size: 0.8rem;
    }
}


/* footer */
.footer{
    background-color: #0068bd;
    color: white;
    padding: 50px 4% 5px;
}

.footer a{
    color: #fff;
}

.footer-box{
    display: flex;
    flex-wrap : wrap;
    justify-content: space-between;
    margin: auto auto 20px;
}

.footer-list.footer-list-left,.footer-list.footer-list-right{
    width: 50%;
    margin: 10px 0 20px;
}

.footer-list-title:hover{
    opacity: 0.5;
}

.footer-list-content{
    margin: 0 0 40px 5px;
}

.footer-logo{
    display: flex;
    margin: 10px 0;
}

.footer-logo-image{
    margin-right: 10px;
    width: 40px;
}

.footer-logo:hover{
    opacity: 0.5;
}

.footer-mtf{
    display: flex;
    margin: 10px 0;
}

.footer-mtf-img{
    margin-right: 10px;
    width: 30px;
}

.footer-mtf:hover{
    opacity: 0.5;
}

.footer-sns-list{
    display: flex;
}

.footer-sns-list-item{
    margin: 0 20px;
    text-align: center;
}

.footer-sns-icon-link{
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.footer-sns-icon{
    position: absolute;
    width: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-sns-icon:hover{
    opacity: 0.5;
}

.footer-nav{
    display: flex;
    justify-content: end;
}

.footer-nav-item{
    padding: 5px;
    font-size: 0.8rem;
}

.footer-nav-item:hover{
    opacity: 0.5;
}

.copyright{
    text-align: center;
    padding: 50px 0 20px;
}

.copyright p{
    font-size: 1.0rem;
}

@media screen and (max-width: 800px) {
    .footer-box{
        display: block;
    }
    .footer-list.footer-list-left,.footer-list.footer-list-right{
        width: 100%;
    }
    .footer-sns-list{
        justify-content: center;
    }
    .footer-nav{
        display: block;
        text-align: end;
    }
}

@media screen and (max-width: 480px) {
    .footer-sns-list-item{
        margin: 0 10px;
    }
    .footer-sns-icon-link{
        width: 80px;
        height: 80px;

    }
    .footer-sns-icon{
        width: 80px;
    }

    .copyright p{
        font-size: 0.7rem;
    }
}

/* 404 */
.page404-home{
    font-weight: 600;
}

.page404-home:hover{
    opacity: 0.5;
}

/* privPoli */
.privPoli-header{
    margin: 0 0 20px;
    padding: 10px;
    border: 1px solid #24292e;
}

.privPoli-content-item{
    margin: 10px 0 30px;
    text-align: left;
}

.privPoli-item-title{
    margin: 10px 0;
    font-size: 1.3rem;
}

.privPoli-item-content{
    font-size: 0.8rem;
}

.privPoli-item-content ul li{
    font-size: 0.8rem;
}

.privPoli-item-content-go{
    margin-left: 10px;
}

.privPoli-item-content-go-go{
    margin-left: 10px;
}

/* sitemap */

.sitemap-box{
    margin: 10px 0.5%;
    padding: 10px;
    width: 24%;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #24292e;
    text-align: left;
}

.sitemap-title{
    border-left: 3px solid #0068bd;
    margin-bottom: 5px;
    padding-left: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.sitemap-content-item{
    padding: 3px 2px 0;
    font-size: 1.0rem;
    font-weight: 400;
}

.sitemap-title:hover,.sitemap-content-item:hover{
    opacity: 0.5;
}

.sitemap-content-item::before{
    content: "> ";
    font-weight: 400;
}

@media screen and (max-width: 800px) {
    .grid-4 > .sitemap-box{
        width: 48%;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 480px) {
    .grid-4 > .sitemap-box{
        width: 100%;
    }
}

/* article */
.article{
    text-align: left;
}

.article-item.article-title{
    margin: 10px 0;
    font-size: 1.5rem;
}

.article-item.article-content{
    margin-top: 10px;
    font-size: 0.8rem;
}

/* .form-table tr{} */
.form-table{
    margin: 0 auto;
    border-spacing: 10px;
}

.form-table th{
    padding: 10px;
    text-align: left;
}

.form-table td{
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #24292e;
}

textarea, input {
    width: 100%;
}

.form-button{
    margin-top: 20px;
    text-align: center;
}

