@charset "utf-8";

/* フォント設定 */
@font-face {
    font-family: 'Monolisk';
    src: local('../font/Monolisk Semi Bold'), local('../font/Monolisk-Semi-Bold'),
        url('../font/Monolisk-SemiBold.woff2') format('woff2'),
        url('../font/Monolisk-SemiBold.woff') format('woff'),
        url('../font/Monolisk-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
.monolisk{
    font-family: 'Monolisk';
}
.mincho{
    font-family: ten-mincho-text, serif;
}
/* フォント設定 */

section{
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
section.sweep_img.active:before{
    width:0 ;
}
section.sweep_img:before{
    content: "";
    background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 1;
    transition: 1s cubic-bezier(0.5, 0, 0.175, 1);
}

/*ADOBEフォントちらつき対策ここから*/
body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*ADOBEフォントちらつき対策ここまで*/

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

html {
    font-size: 62.5%;
    height: 100%;
    position: relative;
}
body {
    color:#333;
    font-size: 2.3rem;
    font-weight: 700;
    font-family:'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro',游ゴシック体, 'Yu Gothic', YuGothic, メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
    line-height:1.4;
    position:relative;
    margin: 0 auto;
}

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

main{
    overflow: hidden;
    padding-top: 104px;
}
@media screen and (max-width:1024px) {
    body {
        font-size: 1.5rem;
    }
    main{
        padding-top: 74px;
    }
}

iframe {
    max-width: 100%;
    width: 100%;
    height: auto;
}

a{
    text-decoration: none;
    color: #231916;
    cursor: pointer;
}

button{
    cursor: pointer;
}

/*デバイス切り替えここから*/
@media screen and (max-width:1024px) {
	.pc {display:none !important;}
}
@media print,screen and (min-width:1025px) {
	.sp {display:none !important;}
}
/*デバイス切り替えここまで*/

/* ヘッダーここから */
.header{
    font-size: 1.7rem;
    height: 74px;
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 2;
}
.header .logo{
    display: flex;
    align-items: center;
}
.header .logo h1{
    width:80px;
}
.header .logo a{
    margin-left: 30px;
    font-weight: 700;
}
.header .nav-list{
    display: flex;
}
.header .nav-item{
    margin-right: 1vw;
    font-weight: 700;
}
.header .nav-item:last-of-type{
    margin-right:0;
}
.header .nav-item a:hover{
    transition: all  0.3s ease;
}
.header .nav-item a:before{
    display: inline-block;
    content: "▲";
    transform: rotate(90deg);
    margin-right: 10px;
    opacity: 0;
}
.header .nav-item a:hover:before{
    display: inline-block;
    content: "▲";
    transform: rotate(90deg);
    margin-right: 10px;
    opacity: 1;
}

.header .burger-btn{
    display: none;
}
@media screen and (max-width:1024px) {
    .header{
        padding: 0 5%;
    }
    .header .logo{
        display: flex;
        align-items: center;
    }
    .header .logo h1{
        width:30vw;
        display: flex;
        align-items: center;
    }
    .header .burger-btn{
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        z-index:5;
        background-color: #333;
        border: none;
        border-radius: 5px;
        right: 3%;
        top: 50%;
        transform: translate(0, -50%);
    }
    .header .bar{
        width: 20px;
        height: 2px;
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;    
    }
    .header .bar_top{
        top: 10px;
    }
    .header .bar_mid{
        top: 50%;
        transform: translate(-50%,-50%);
    }
    .header .bar_bottom{
        bottom: 10px;
    }
    .header .burger-btn.close .bar_top{
        transform: translate(-50%,10px) rotate(45deg);
        transition: transform .3s;
    }
    .header .burger-btn.close .bar_mid{
        opacity: 0;
        transition: opacity .3s;
    }
    .header .burger-btn.close .bar_bottom{
        transform: translate(-50%,-8px) rotate(-45deg);
        transition: transform .3s;
    }
    .header .nav-wrapper{
        display: none;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        /* right: 0;
        bottom: 0; */
        z-index: 4;
    }
    .header .nav-wrapper.close{
        display: none;
    }
    .header .header-nav{
        background: #fff;
        width: 100%;
        height: 100%;
        z-index: 3;
        padding-top: 94px;
        overflow: scroll;
    }
    .header .header-nav .position_wrap{
        position: relative;
        margin:0 2%;
    }
    .header .header-nav .nav-list{
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
    .header .header-nav .nav-item{
        margin: 0 auto 20px;
        display: flex;
        justify-content: center;
        width: 70%;
        text-align: center;
        font-weight: 700;
        border-bottom: 1px solid #333;
        padding-bottom: 5px;
    }
    .header .nav-item a:before{
        content: "none";
        display: none;
    }
    .header .nav-item a:hover:before{
        content: "none";
        display: none;
    }
    
    .header .header-nav a.gotop{
        border: 1px solid #333;
        display: block;
        text-align: center;
        font-weight: 700;
        padding: 20px 0;
        margin: 20px 2% 0;
    }
    .header .header-nav a.gotop img{
        display: block;
        width: 50%;
        margin: 0 auto 10px;
    }
}
@media screen and (max-width:768px) {
    .header .logo h1{
        width: 65%;
        display: flex;
        align-items: center;
    }
}
/* ヘッダーここまで */

.mv{
    position: relative;
    /* max-width: 1012px; */
    margin: 0 auto;
    padding-bottom: 30px;
}
.mv .bg{
    max-width: 1020px;
    margin: 0 auto;
    display: block;
}
.mv h2{
    text-align: center;
    font-weight: 700;
    font-size: 4rem;
    position: absolute;
    top: 40%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -40%);
}
.mv h2 img{
    width: 45%;
    max-width: 700px;
    display: block;
    margin: 0 auto 40px;
}
.mv p{
    text-align: center;
    font-weight: 700;
    background: #dd382b;
    color: #fff;
    display: inline-block;
    padding: 20px 50px;
    line-height: 1.6;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    font-size: 2rem;
}
@media screen and (max-width:1024px) {
    .mv{
        padding: 0;
    }
    .mv img.bg{
        padding: 20px 2% 40px;
    }
    .mv h2{
        font-size: 4.5vw;
        top: 25%;
        transform: translate(-50%, -25%);
    }
    .mv h2 img{
        width: 60%;
        margin: 0 auto 4%;
    }
    .mv p{
        display: block;
        padding: 20px 0;
        position: static;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
    }
}

#sec1{
    max-width: 1050px;
    margin: -30px auto 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 100px;
}
#sec1 h3{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 2.5;
    font-weight: 700;
}
#sec1 h3 img{
    height: 40px;
    width: auto;
    margin-right: 10px;
    margin-top: -5px;
}
#sec1 h3 span{
    width: 100%;
    font-weight: 700;
}
#sec1 figure{
    width: 70%;
}
@media screen and (max-width:1024px) {
    #sec1{
        display:block;
        padding-top: 100px;
    }
    #sec1 h3{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        line-height: 2.5;
        text-align: center;
        justify-content: center;
    }
    #sec1 h3 span{
        width: 100%;
    }
    #sec1 figure{
        width: auto;
        margin: 30px 5% 0;
    }
}

#sec2{
    max-width: 1050px;
    margin: -100px auto 70px;
    padding-top: 100px;
}
#sec2 h3{
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight:700;
    margin-bottom: 40px;
}
#sec2 h3 img{
    height: 40px;
    width: auto;
    margin-right: 20px;
}
#sec2 h4{
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}
#sec2 ul{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border: 1px solid #ccc;
}
#sec2 ul li{
    padding: 90px 0;
    width: 33.3333%;
    text-align: center;
    border-right: 1px solid #ccc;
    font-weight: 700;
}
#sec2 ul li img{
    width: 40%;
    display: block;
    margin: 0 auto 30px;
}
#sec2 ul li:last-of-type{
    border-right:0;
}
#sec2 ul li span{
    opacity: 0;
}
@media screen and (max-width:1024px) {
    #sec2{
        margin-top: -100px;
        padding-top: 100px;
    }
    #sec2 h3{
        font-size: 2rem;
        margin-bottom: 30px;
        justify-content: center;
    }
    #sec2 h3 img{
        height: 40px;
        width: auto;
        margin-right: 20px;
    }
    #sec2 h4{
        margin-bottom: 20px;
        font-size: 1.5rem;
        text-align: center;
    }
    #sec2 ul{
        display: block;
        border: 0;
        width: 80%;
        margin: 0 auto;
    }
    #sec2 ul li{
        padding: 90px 0;
        width: auto;
        text-align: center;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #sec2 ul li img{
        width: 40%;
        display: block;
        margin: 0 auto 30px;
    }
    #sec2 ul li:last-of-type{
        border-right:1px solid #ccc;
    }
}

#sec3{
    max-width: 1050px;
    margin: -100px auto 70px;
    padding-top: 100px;
}
#sec3 h3{
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight:700;
    margin-bottom: 40px;
}
#sec3 h3 img{
    height: 40px;
    width: auto;
    margin-right: 20px;
}
#sec3 h4{
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}
#sec3 ul{
    border: 1px solid #ccc;
}
#sec3 ul li{
    display:flex;
    border-bottom: 1px solid #ccc;
}
#sec3 ul li:nth-of-type(odd){
    flex-direction: row-reverse;
}
#sec3 ul li:last-of-type{
    border-bottom:0;
}
#sec3 ul li div{
    width: 50%;
}
#sec3 ul li div img{
    width: 230px;
}
#sec3 ul li div h5{
    margin: 20px 20px 10px;
    font-size: 2.5rem;
    font-weight: 700;
}
#sec3 ul li div p{
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0 20px;
    font-weight: 700;
}
#sec3 ul li div p span{
    display: block;
    font-size: 1.3rem;
    margin-top: 20px;
    font-weight: 700;
}
#sec3 ul li figure{
    width: 50%;
    padding: 40px;
}
#sec3 ul li:nth-of-type(odd) figure{
    border-right: 1px solid #ccc;
}
#sec3 ul li:nth-of-type(even) div{
    border-right: 1px solid #ccc;
}
@media screen and (max-width:1024px) {
    #sec3{
        margin-top: -100px;
        padding-top: 100px;
    }
    #sec3 h3{
        font-size: 2rem;
        margin-bottom: 30px;
        justify-content: center;
    }
    #sec3 h3 img{
        height: 40px;
        width: auto;
        margin-right: 20px;
    }
    #sec3 h4{
        margin-bottom: 20px;
        font-size: 1.5rem;
        text-align: center;
    }
    #sec3 ul{
        border: 0;
        width: 85%;
        margin: 0 auto;
    }
    #sec3 ul li{
        display: inline-block;
        border: 1px solid #ccc;
    }
    #sec3 ul li:last-of-type{
        border-bottom:1px solid #ccc;
    }
    #sec3 ul li div{
        width: auto;
        min-height:250px;
    }
    #sec3 ul li div img{
        width: 80px;
    }
    #sec3 ul li div h5{
        margin: 20px 20px 10px;
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
    }
    #sec3 ul li div p{
        font-size: 1.3rem;
        line-height: 1.4;
        margin: 0 2%;
        text-align: center;
    }
    #sec3 ul li div p span{
        display: block;
        font-size: 1.2rem;
        margin-top: 2%;
    }
    #sec3 ul li figure{
        width: auto;
        padding: 40px;
        border-top: 1px solid #ccc;
    }
    #sec3 ul li:nth-of-type(odd) figure{
        border-right:0;
    }
    #sec3 ul li:nth-of-type(even) div{
        border-right: 0;
    }
}

#sec4{
    text-align: center;
    margin: -100px auto 140px;
    max-width: 1050px;
    padding-top: 100px;
}
#sec4 h3{
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2;
    display: flex;
    max-width: 500px;
    justify-content: center;
    margin: 0 auto;
}
#sec4 h3:after{
    content: "";
    position: absolute;
    width: 90%;
    height: 10px;
    bottom: -15px;
    left: 0;
    right: 0;
    background: #de382b;
    margin: 0 auto;
}
#sec4 p{
    font-size: 1.7rem;
    line-height: 2;
    margin: 50px 0;
    font-weight: 700;
}
#sec4 p strong{
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #dd402d;
}
#sec4 figure{
    margin: 0 120px;
}
@media screen and (max-width:1024px) {
    #sec4{
        padding-top: 100px;
        margin-top: -100px;
    }
    #sec4 h3{
        font-size:1.6rem;
    }
    #sec4 h3:after{
        width: 80%;
    }
    #sec4 p{
        font-size: 1.5rem;
        line-height: 2;
        margin: 40px 0;
    }
    #sec4 p strong{
        font-size: 1.6rem;
    }
    #sec4 figure{
        margin: 0 4%;
    }
}

.ja .btn_area{
    display: flex;
    justify-content: space-between;
}
.ja .btn_area a{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ja .btn_area a:first-of-type{
    background: #fbd033;
    border-top: 20px solid #dd382b;
    border-bottom: 20px solid #dd382b;
}
.ja .btn_area a:first-of-type:hover{
    background: #fff;
    border-top: 20px solid #ccc;
    border-bottom: 20px solid #ccc;
    transition : all 0.5s ease 0s;
}
.ja .btn_area a:last-of-type{
    border-top: 20px solid #ccc;
    border-bottom: 20px solid #ccc;
}
.ja .btn_area a:last-of-type:hover{
    background: #fbd033;
    border-top: 20px solid #dd382b;
    border-bottom: 20px solid #dd382b;
    transition : all 0.5s ease 0s;
}
.ja .btn_area a figure{
    position: relative;
    max-width: 230px;
    width: 230px;
    margin-right: 1vw;
}
.ja .btn_area a p{
    font-size: 1.5vw;
    text-align: center;
    font-weight: 700;
}
.ja .btn_area a p span{
    display: block;
    position: relative;
    font-weight: 700;
    margin-top: 10px;
}
.ja .btn_area a p span:before{
    display: inline-block;
    content: "▲";
    transform: rotate(90deg);
    margin-right: 10px;
}
.ja .btn_area a:first-of-type p span:before{
    color: #dd382b;
}
.ja .btn_area a:first-of-type p span:hover:before{
    color: #333;
}
.ja .btn_area a:last-of-type p span:hover:before{
    color: #dd382b;
}
@media screen and (max-width:1024px) {
    .ja .btn_area{
        display:block;
    }
    .ja .btn_area a{
        width:auto;
        justify-content:space-between;
    }
    .ja .btn_area a figure{
        max-width: 35%;
        margin-right: 0;
        margin-left: 4%;
    }
    .ja .btn_area a p span{
        margin-top: 1%;
    }
}
@media screen and (max-width:1023px) {
    .ja .btn_area a p{
        font-size: 2.5vw;
        margin-right: 4%;
    }
}
@media screen and (max-width:375px) {
    .ja .btn_area a p{
        font-size: 1.2rem;
        margin-right: 4%;
    }
}

/*
フッター
---------------------------------*/
footer{
    font-size: 1.7rem;
    padding-top: 70px;
}
footer .txt{
    text-align: center;
    font-weight: 700;
}
footer ul{
    display: flex;
    max-width: 1100px;
    margin: 70px auto;
    justify-content: space-between;
}
footer ul li{
    width: 33.333%;
}
footer ul li span{
    font-weight: 700;
}
footer ul li:nth-of-type(1) span{
    margin-left: 27px;
}
.en footer ul li:nth-of-type(1) span{
    margin-left: 122px;
}
footer ul li:nth-of-type(2) span{
    margin-left: 65px;
}
.en footer ul li:nth-of-type(2) span{
    margin-left: 20px;
}
footer ul li:nth-of-type(3) span{
    margin-left: 72px;
}
footer ul li img{
    height: 30px;
    width: auto;
    display: block;
    /* margin-top: 20px; */
    margin: 20px auto 0;
}
.en footer ul li:nth-of-type(1) img{
    height: 40px;
}
.en footer ul li:nth-of-type(2) img{
    height: 40px;
    margin-top: 17px;
}
footer div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}
footer div p{
    font-weight: 700;
    padding-left: 1em;
}
footer div p:before{
    content: "※";
    margin-left: -1em;
}
footer div img{
    width: 140px;
    margin-right: 20px;
}
footer p.copy{
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    background: #dd382b;
    padding: 10px 0;
}
@media screen and (max-width:1024px) {
    footer{
        font-size: 1.4rem;
        padding-top: 40px;
    }
    footer ul{
        display: block;
    }
    footer ul li{
        width: auto;
        margin-bottom: 20px;
        text-align: center;
    }
    footer ul li:nth-of-type(1) span,
    .en footer ul li:nth-of-type(1) span,
    footer ul li:nth-of-type(2) span,
    footer ul li:nth-of-type(3) span{
        margin-left: 0;
    }
    footer ul li img{
        margin: 20px auto 0;
    }
    footer div{
        display: block;
        margin-bottom: 40px;
        text-align: center;
    }
    footer div img{
        max-width: 140px;
        margin: 0 auto 10px;
        display: block;
    }
}

/* 英語版css */
.en .mv h2{
    font-size: 3vw;
}
@media screen and (min-width:1301px) {
    .en .mv h2{
        font-size:4rem;
    }
}
.en #sec3 ul li{
    align-items: stretch;
}
.en #sec3 ul li div{
    padding-bottom: 20px;
}
.en #sec3 ul li p{
    padding-left: 1em;
    line-height: 1.4;
    margin-bottom: 10px;
}
.en #sec3 ul li p:before{
    content: "・";
    margin-left: -1em;
}
@media screen and (max-width:1024px) {
    .en #sec3 ul li div{
        padding-bottom: 0;
    }
    .en #sec3 ul li div p{
        font-size: 1.2rem;
        margin-bottom: 2%;
    }
}

.en .btn_area{
    display: flex;
    justify-content: space-between;
}
.en .btn_area a{
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}
.en .btn_area a:first-of-type{
    background: #fbd033;
    border-top: 20px solid #dd382b;
    border-bottom: 20px solid #dd382b;
}
.en .btn_area a:first-of-type:hover{
    background: #fff;
    border-top: 20px solid #ccc;
    border-bottom: 20px solid #ccc;
    transition : all 0.5s ease 0s;
}
.en .btn_area a:last-of-type{
    border-top: 20px solid #ccc;
    border-bottom: 20px solid #ccc;
}
.en .btn_area a:last-of-type:hover{
    background: #fbd033;
    border-top: 20px solid #dd382b;
    border-bottom: 20px solid #dd382b;
    transition : all 0.5s ease 0s;
}
.en .btn_area a figure{
    max-width: 230px;
    width: 230px;
    margin-left: 1vw;
}
.en .btn_area a p{
    font-size: 1.5vw;
    font-weight: 700;
    width: 100%;
    text-align: left;
    margin: 0 0 10px 1vw;
}
.en .btn_area a  span{
    display: block;
    position: relative;
    font-weight: 700;
    font-size: 1.5vw;
    margin-right: 1vw;
}
.en .btn_area a span:before{
    display: inline-block;
    content: "▲";
    transform: rotate(90deg);
    margin-right: 10px;
}
.en .btn_area a:first-of-type span:before{
    color: #dd382b;
}
.en .btn_area a:first-of-type span:hover:before{
    color: #333;
}
.en .btn_area a:last-of-type span:hover:before{
    color: #dd382b;
}
@media screen and (min-width:1441px) {
    .en .btn_area a p{
        font-size:2rem;
    }
    .en .btn_area a p{
        font-size:2rem;
    }
}
@media screen and (max-width:1024px) {
    .en .btn_area{
        display:block;
    }
    .en .btn_area a{
        width:auto;
    }
    .en .btn_area a figure{
        max-width: 35%;
    }
}
@media screen and (max-width:1023px) {
    .en .btn_area a p{
        font-size: 2.5vw;
        min-height: 5vh;
    }
    .en .btn_area a span{
        font-size: 2.5vw;
    }
}
@media screen and (max-width:375px) {
    .en .btn_area a p{
        font-size:1.1rem;
        letter-spacing: -0.1vw;
    }
    .en .btn_area a span{
        font-size: 3vw;
    }
}