@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;800&display=swap');

/******************************************************************************************
　　基本レイアウト指定
******************************************************************************************/

/* 画像の最大幅を100%に */
img{
	max-width:100%;
	height:auto;
}

/*フォント設定*/
body{
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	color:#333333;
    line-height: 1.3;
}

/*背景色*/
body{ background:#FFFFFF; }

.animated{
    opacity: 0;
    animation-duration:.5s;
}
.animated.active{ opacity: 1; }
.delay_100{ animation-delay: .1s; }
.delay_200{ animation-delay: .2s; }
.delay_300{ animation-delay: .3s; }
.delay_400{ animation-delay: .4s; }
.delay_500{ animation-delay: .5s; }
.delay_600{ animation-delay: .6s; }
.delay_700{ animation-delay: .7s; }
.delay_800{ animation-delay: .8s; }
.delay_1000{ animation-delay: 1.0s; }
.delay_1200{ animation-delay: 1.2s; }
.delay_1400{ animation-delay: 1.4s; }

.duration_800{ animation-duration: .8s; }

/******************************************************************************************
	pc size
******************************************************************************************/
#wrapper{
    width: 100%;
    overflow: hidden;
    position: relative;
}

/*ハンバーガーメニュー*/
#toggle{
    position: fixed;
    top: 20px;
    right: 0;
    background:#1B1B1B;
    cursor: pointer;
    width: 50px;
    height:50px;
    border-radius: 5px 0 0 5px;
    z-index: 9998;
    transition: right .5s;
}
body.toppage #toggle{
    right:-50px;
}
#toggle span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #FFFFFF;
    width: 45%;
  }
#toggle span:nth-of-type(1) {
    top:15px; 
}
#toggle span:nth-of-type(2) {
    top:23px;
}
#toggle span:nth-of-type(3) {
    top:31px;
}
#toggle.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
#toggle.active span:nth-of-type(2) {
    opacity: 0;
}
#toggle.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*メニュー*/
#main_menu{
    position: fixed;
    top: 65px;
    right: -45%;
    width: 45%;
    height: auto;
    z-index: 9999;
    background: #1B1B1B;
    color: #FFFFFF;
    padding: 1.3vw;
    border-radius: 10px 0 10px 10px;
    transition: right .5s;
}
#main_menu.active{
    right: 0;
}
#main_menu li{
    border-bottom:1px dotted #FFFFFF;
    padding: 1.3vw 0.5vw;
    font-size: 1.666vw;
    vertical-align: 1;
    cursor: pointer;
}
#main_menu li:first-child{
    border-top:1px dotted #FFFFFF;
}

/*メインコンテンツ*/
.main_box{
    width: 100%;
    padding: 1.5vw;
}

/*TOPページ*/
.main_box.top .wrap{
    overflow: hidden;
}
.main_box.top .wrap .image{
    float: left;
    width: 24.5%;
}
.main_box.top .wrap .text{
    float:right;
    width: 72%;
}
.main_box.top h1{
    text-align: center;
    margin-bottom: 10px;
}
.main_box.top h1 span.sub{
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    font-size: 2.222vw;
    padding: 0.3% 4%;
    border-radius: 50px;
    margin-bottom: 5px;
}
.main_box.top h1 span.title{
    display: block;
    font-size: 3.333vw;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow:0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000,0 0 4px #000000;
    background-image: url("../img/common/h1_bg1.jpg"), url("../img/common/h1_bg2.jpg");
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right bottom;
    background-size: auto 100%, auto 100%;
}
.main_box.top #top_menu{
    display: flex;
    flex-wrap: wrap;
}
.main_box.top #top_menu li{
    width: calc(50% - 0.9vw);
    cursor: pointer;
    margin: 2.777vw 0 0 1.8vw;
    border:3px solid #333333;
    /*padding: 7.4% 3.5% 2.5% 3.5%;*/
    padding: 5.5% 3.5% 3% 5.5%;
    font-size: 2.31vw;
    font-weight: 800;
    background-image: url("../img/common/top_menu.png");
    background-repeat: no-repeat;
    background-position: right 3px bottom 3px;
    background-size: 13% auto;
    background-color: #FFFFFF;
    transition: background-color .3s;
    position: relative;
}
.main_box.top #top_menu li:nth-child(2n+1) {
    margin-left: 0;
}
.main_box.top #top_menu li:hover{
    background-color: #FFFF99;
}
.main_box.top #top_menu li .no{
    position: absolute;
    left: -1.5vw;
    top: -2.6vw;
    background: #FF0000;
    color: #FFFFFF;
    width: 6.5vw;
    height: 6.5vw;
    border-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow:2px 2px 2px rgba(0, 0, 0, 0.3);
    font-size: 2.777vw;
    font-weight: 900;
    line-height: 1;
    padding: 0.9vw 0;
}
.main_box.top #top_menu li .no::before{
    content: "point";
    font-size: 1.666vw;
    font-weight: 500;
    display: block;
    width: 100%;
}

/*下層*/
h2{
    display: flex;
    align-items: center;
    font-size: 3.333vw;
    font-weight: 900;
    margin: 0 0 2.5vw 0;
}
h2 .no{
    background: #FF0000;
    color: #FFFFFF;
    width: 7vw;
    height: 7vw;
    border-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow:2px 2px 2px rgba(0, 0, 0, 0.3);
    font-size: 2.777vw;
    font-weight: 900;
    line-height: 1;
    padding: 0.9vw 0;
    margin-right: 1.666vw;
}
h2 .no::before{
    content: "point";
    font-size: 1.666vw;
    font-weight: 500;
    display: block;
    width: 100%;
}
.infotext{
    text-align: center;
}
.infotext p{
    display: inline-block;
    font-size: 2.22vw;
    background: #FF0000;
    color: #FFFFFF;
    padding: 0.25vw 3vw;
    border-radius: 100px;
}

/*point1*/
.main_box.point1 .image_wrap{
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 2.5vw;
}
.main_box.point1 .image_wrap .box{
    width: 26vw;
}
.main_box.point1 .image_wrap .box:last-child{
    margin-left:5.55vw;
}
.main_box.point1 .image_wrap .box .cursor{
    width: 21.481vw;
    height: auto;
    position: absolute;
    right: 2.5vw;
    top: -2.5vw;
}

/*point2*/
.main_box.point2 .image_wrap{
    display: flex;
    justify-content: space-between;
    margin-top: -1vw;
    margin-bottom: 1.8vw;
    padding:  0 0.5vw;
}
.main_box.point2 .image_wrap .box{
    width: 26vw;
}
.main_box.point2 .image_wrap .box:first-child{
    margin-left:0;
}
.main_box.point2 .infotext p{
    display: inline-block;
    font-size: 1.85vw;
    background: #FF0000;
    color: #FFFFFF;
    padding: 0.25vw 3vw;
    border-radius: 100px;
}

/*point3、6*/
.main_box.point3 .cursor_wrap,
.main_box.point6 .cursor_wrap{
    display: flex;
    margin-top: -1.8vw;
    margin-bottom: 0.7vw;
}
.main_box.point3 .cursor_wrap .box,
.main_box.point6 .cursor_wrap .box{
    width: 50%;
    text-align: center;
}
.main_box.point3 .cursor_wrap .box img{
    width: 30vw;
    height: auto;
    display: inline-block;
}
.main_box.point6 .cursor_wrap .box img{
    width: 45vw;
    height: auto;
    display: inline-block;
}
.main_box.point3 .image_wrap,
.main_box.point6 .image_wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.0vw;
    padding:  0 0.5vw;
}
.main_box.point3 .image_wrap .box,
.main_box.point6 .image_wrap .box{
    width: 23vw;
}
.main_box.point3 .image_wrap .box:first-child,
.main_box.point6 .image_wrap .box:first-child{
    margin-left:0;
}

/*point4、5*/
.main_box.point4 .image_wrap,
.main_box.point5 .image_wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5vw;
    padding:  0 0.5vw;
}
.main_box.point4 .image_wrap .box,
.main_box.point5 .image_wrap .box{
    width: 26vw;
}
.main_box.point4 .image_wrap .box:first-child,
.main_box.point5 .image_wrap .box:first-child{
    margin-left:0;
}