@charset "UTF-8";

/*=======================================================
　全体設計（スマホファースト）
=======================================================*/

*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}

body{
	background-color: #fff;
	color: #2b2b2b;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	overflow-x: hidden;
}

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

div#wrapper{
	width: 90%;
	margin: 0 auto;
	padding: 0 15px;
}

/*=======================================================
　ヘッダー
=======================================================*/

header{
	width: 100%;
    margin: 20px auto 0 auto;
}

div#header_inner{
	width: 100%;
}

h1 img{
	width: 300px;
	margin: 0 auto;
}

div#contact{
    margin-top: 20px;
    margin-bottom: 20px;
}

div#contact a{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	display: block;
	background-color: #ff6f0c;
	padding: 12px;
	border-radius: 10px;
	box-shadow: 5px 5px 10px gray;
	color: #fff;
	width: 100%-24px;
}

div#contact a:hover{
    background-color: #ff9247;
}

div#nav{
	width: 100%;
	background-color: #235d03;
}

div#nav ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

div#nav ul li{
	width: 50%;
}

div#nav ul li a{
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	padding: 10px 5px;
	border: 0.5px solid #fff;
	line-height: 1.5;
	background-color: #235d03;
}

div#nav ul li a span{
	font-size: 12px;
	font-weight: normal;
}

div#nav ul li a:hover{
	background-color: #e4fcd7;
	color: #235d03;
/*    opacity: 0.8;*/
}



/*=======================================================
　MV
=======================================================*/

div#main{
    margin: 0 auto;
	width: 100%;
	position: relative;
}

div#main img#main_visual{
	width: 100%;
	height: 250px;
	object-fit: cover;
}

div#main img#campaign-icon{
	position: absolute;
	width: 60px;
    height: auto;
	top: 20px;
	right: 20px;
}

div#main p{
	font-size: 13px;
	font-weight: bold;
	font-family: YuMincho, "Yu Mincho", serif;
	color: #fff;
	position: absolute;
	bottom: 100px;
	left: 10px;
	text-shadow: 5px 5px 5px gray;
	line-height: 1.5;
}

div#main span{
	font-size: 20px;
	font-weight: bold;
	font-family: YuMincho, "Yu Mincho", serif;
	color: #fff;
	position: absolute;
	bottom: 70px;
	left: 10px;
	text-shadow: 5px 5px 5px gray;
	line-height: 1.5;
}

div#main a{
	position: absolute;
	left: 10px;
	bottom: 20px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	display: block;
	width: 280px;
	background-color: #ff6f0c;
	padding: 10px;
	border-radius: 20px;
	box-shadow: 5px 5px 10px gray;
	color: #fff;
}

div#main a:hover{
    background-color: #ff9247;
}

/*=======================================================
　サービス紹介
=======================================================*/

div#service_introduce{
	margin-top: 50px;
}

div#service_title{
	width: 100%;
	background-color: #235d03;
	text-align: center;
	padding: 25px 15px;
}

div#service_title h2{
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	border-bottom: 3px solid #fff;
	display: inline-block;
	padding-bottom: 10px;
}

div#service_title p{
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	margin-top: 10px;
}

div#service_details{
	margin-top: 10px;;
}

div#service_details_photo img{
    width: 100%;
    height: auto;
	border: 5px solid #235d03;
}

div#service_details_passage{
	margin-top: 20px;
}

div#service_details_passage h3{
	font-size: 16px;
	line-height: 1.5;
}

div#service_details_passage p{
	margin-top: 20px;
	font-size: 10px;
	line-height: 1.5;
}

/*=======================================================
　3つの理由
=======================================================*/

div#three_reasons{
	margin-top: 50px;
}

div#reasons_title{
	width: 100%;
	background-color: #235d03;
	text-align: center;
	padding: 25px 15px;
}

div#reasons_title h2{
	font-size: 13px;
	color: #fff;
	border-bottom: 3px solid #fff;
	display: inline-block;
	padding-bottom: 10px;
	line-height: 1.5;
}

div#reasons_title p{
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	margin-top: 10px;
}

dl.reason_card{
	margin-top: 40px;
}

div.reason_photo img{
    width: 100%;
    height: auto;
	border: 5px solid #235d03;
}

div.reason_passage{
	margin-top: 15px;
}

div.reason_passage dt{
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
}

div.reason_passage dd{
	margin-top: 10px;
	font-size: 12px;
	line-height: 1.5;
}

/*====================================================
　CTA
====================================================*/

div#cta{
	width: 100%;
	margin-top: 50px;
	background-image: linear-gradient(90deg, #000b99, #31cdb0);
	padding: 40px 15px;
}

div#cta p#cta_title{
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	text-shadow: 3px 3px 10px #000;
}

div#cta_inner{
	width: 100%;
    margin: 30px auto 0 auto;
}



div#cta p#cta_sentence{
	color: #fff;
	font-size: 10px;
	line-height: 2;
	text-align: center;
}

div#cta_inner a{
	margin: 30px auto 0 auto;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	display: block;
	width: 70%;
	background-color: #ff6f0c;
	padding: 15px;
	border-radius: 30px;
	box-shadow: 5px 5px 10px gray;
	color: #fff;
}

div#cta_inner a:hover{
	background-color: #ff9247;
}

/*=======================================================
　フッター
=======================================================*/

footer{
	margin-top: 100px;
    margin-bottom: 0;
	width: 100%;
    height: auto;
	background-color: #235d03;
	padding: 40px 15px;
    position: relative;
}

div#footer_inner{
	width: 100%;
}

div#footer_inner p{
	font-size: 15px;
	color: #fff;
	line-height: 1.5;
	text-align: center;
}

footer ul{
	margin-top: 40px;
}

footer ul li{
	text-align: center;
    margin-top: 35px;
}

footer ul li a{
	font-size: 15px;
	font-weight: bold;
	color: #fff;
}

div#pagetop{
	width: 100px;
	height: 35px;
	background-color: #235d03;
	text-align: center;
	position: absolute;
	top: -35px;
	right: 0;
}

div#pagetop p a{
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	line-height: 35px;
	display: block;
}

/*=======================================================
　タブレット版
=======================================================*/

@media (min-width:768px){

div#wrapper{
    width: 90%;
    margin: 0 auto;
}

/* ヘッダー */
    
header{
        margin-top: 10px;
}

div#header_inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

h1 img{
	width: 250px;
	margin: 0;
}

div#contact{
	margin-top: 0;
}

div#contact a{
	width: 200px;
}

/* ナビ */

div#nav ul{
	flex-wrap: nowrap;
}

div#nav ul li{
	width: 25%;
}

div#nav ul li a{
	font-size: 18px;
}
    
div#nav ul li a span{
	font-size: 14px;
}

div#nav ul li a:hover{
	background-color: #e4fcd7;
	color: #235d03;
}

/* MV */
    
div#main{
    margin: 0 auto;
	width: 100%;
	position: relative;
}

div#main img#main_visual{
    width: 100%;
	height: 400px;
    object-fit: cover;
}

div#main img#campaign-icon{
	width: 100px;
    height: auto;
	top: 40px;
	right: 40px;
}

div#main p{
	font-size: 25px;
	bottom: 130px;
	left: 40px;
}

div#main span{
	font-size: 35px;
	bottom: 80px;
	left: 40px;
}

div#main a{
	bottom: 25px;
	left: 40px;
	width: 300px;
	font-size: 24px;
}

/* サービス紹介 */
    
div#service_title h2{
    text-align: center;
    font-size: 30px;
}

div#service_title p{
    text-align: center;
    font-size: 18px;
}
    

div#service_introduce{
    margin-top: 50px;
}

div#service_details{
    margin-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

div#service_details_photo{
	width: 40%;
}

div#service_details_passage{
	width: 57%;
	margin-top: 0;
}

div#service_details_passage h3{
	font-size: 20px;
}

div#service_details_passage p{
    margin-top: 10px;
	font-size: 14px;
    line-height: 2;
}

/* 理由 */
    
div#reasons_title h2{
    text-align: center;
    font-size: 30px;
}

div#reasons_title p{
    text-align: center;
    font-size: 18px;
}

dl.reason_card{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

div.reason_photo{
	width: 40%;
}

div.reason_passage{
	width: 57%;
	margin-top: 0;
}

div.reason_passage dt{
	font-size: 20px;
}

div.reason_passage dd{
	font-size: 13px;
    line-height: 2;
}

/* CTA */

div#cta{
	padding: 50px 30px;
}

div#cta p#cta_title{
	font-size: 30px;
}

div#cta p#cta_sentence{
	font-size: 20px;
}

div#cta_inner a{
	width: 400px;
	font-size: 25px;
}

/* footer */

div#footer_inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul{
    margin-top: 0;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

footer ul li{
    margin-top: 0;
}

}

/*=======================================================
　PC版
=======================================================*/

@media (min-width:1024px){

div#wrapper{
    width: 90%;
    margin: 0 auto;
}

/* ヘッダー */
    
header{
    margin-top: 10px;
}

div#header_inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

h1 img{
	width: 300px;
	margin: 0;
}

div#contact{
	margin-top: 0;
}

div#contact a{
	width: 200px;
}

/* ナビ */

div#nav ul{
	flex-wrap: nowrap;
}

div#nav ul li{
	width: 25%;
}

div#nav ul li a{
	font-size: 22px;
}
    
div#nav ul li a span{
	font-size: 15px;
}

div#nav ul li a:hover{
	background-color: #e4fcd7;
	color: #235d03;
}

/* MV */
    
div#main{
    margin: 0 auto;
	width: 100%;
	position: relative;
}

div#main img#main_visual{
    width: 100%;
	height: 600px;
    object-fit: cover;
}

div#main img#campaign-icon{
	width: 120px;
    height: auto;
	top: 50px;
	right: 50px;
}

div#main p{
	font-size: 25px;
	bottom: 200px;
	left: 50px;
}

div#main span{
	font-size: 40px;
	bottom: 140px;
	left: 50px;
}

div#main a{
	bottom: 70px;
	left: 50px;
	width: 350px;
	font-size: 30px;
}

/* サービス紹介 */
    
div#service_title h2{
    text-align: center;
    font-size: 40px;
}

div#service_title p{
    text-align: center;
    font-size: 25px;
}
    

div#service_introduce{
    margin-top: 50px;
}

div#service_details{
    margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

div#service_details_photo{
	width: 40%;
}

div#service_details_passage{
	width: 57%;
	margin-top: 0;
}

div#service_details_passage h3{
	font-size: 30px;
}

div#service_details_passage p{
    margin-top: 10px;
	font-size: 20px;
    line-height: 2;
}

/* 理由 */
    
div#reasons_title h2{
    text-align: center;
    font-size: 40px;
}

div#reasons_title p{
    text-align: center;
    font-size: 25px;
}

dl.reason_card{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

div.reason_photo{
	width: 40%;
}

div.reason_passage{
	width: 57%;
	margin-top: 0;
}

div.reason_passage dt{
	font-size: 30px;
}

div.reason_passage dd{
	font-size: 20px;
    line-height: 2;
}

/* CTA */

div#cta{
	padding: 60px 30px;
}

div#cta p#cta_title{
	font-size: 40px;
}

div#cta p#cta_sentence{
	font-size: 25px;
    line-height: 2;
}

div#cta_inner a{
	width: 400px;
	font-size: 30px;
}

/* footer */
    
div#footer_inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    
div#footer_inner p{
    font-size: 22px;
}

footer ul{
    margin-top: 0;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

footer ul li{
    margin-top: 0;
}

footer ul li a{
    font-size: 22px;
}


}

/* =========================
不要iframe対策
========================= */

body > iframe{
    height:0 !important;
    min-height:0 !important;
}

body > iframe{
    display:none !important;
}

div[style*="z-index: 9999"]{
    line-height:0 !important;
}

div[style*="z-index: 9999"]{
    line-height:0;
    font-size:0;
}