@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Noto Sans JP');

/* ======== BASIC ======== */
html {
	overflow-y:scroll;
}
body {
	margin:0;
	padding:0;
	letter-spacing:1px;
	line-height:1.8em;
	font-family:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:13px;
	color:#333;
	background-color:#fff;
}
br {
	letter-spacing:normal;
}
a {
	color:#777;
	text-decoration:none;
    transition: all 0.3s;/*アニメーション設定*/
}
a:hover {
	color:#6890ba;
}
img {
	border:0;
	vertical-align:middle;
}
h1, h2, h3, h4, h5, h6, p, ul, dl {
	margin:0;
	padding:0;
}
li {
	list-style-type:none;
}
.clear {
	clear:both;
}
.f_red {
	color:#FF0000;
}
.f_bold {
    font-weight: bold;
}
.f_12 {
	font-size:12px;
}
.f_13 {
	font-size:13px;
}
.f_14 {
	font-size:14px;
}
.f_15 {
	font-size:15px;
}
.f_right {
	text-align: right;
}
.lh16 {	
	line-height:1.6em;
}
.pb2 {
	padding-bottom:2px;
}
.pb5 {
	padding-bottom:5px;
}
.pb7 {
	padding-bottom:7px;
}
.pb10 {
	padding-bottom:10px;
}
.pb15 {
	padding-bottom:15px;
}
.pb20 {
	padding-bottom:20px;
}
.pb25 {
	padding-bottom:25px;
}
.pb30 {
	padding-bottom:30px;
}
.pb40 {
	padding-bottom:40px;
}
.pb50 {
	padding-bottom:50px;
}
.pt2 {
	padding-top:2px;
}
.pt5 {
	padding-top:5px;
}
.pt10 {
	padding-top:10px;
}
.pt15 {
	padding-top:15px;
}
.pt20 {
	padding-top:20px;
}
.pt25 {
	padding-top:25px;
}
.pt30 {
	padding-top:30px;
}
.pt40 {
	padding-top:40px;
}
.pt50 {
	padding-top:50px;
}
.pt60 {
	padding-top:60px;
}
.pt70 {
	padding-top:70px;
}
.pl05 {
	padding-left:0.5em;
}
.pl1 {
	padding-left:1em;
}
.mt5 {
	margin-top: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
/* コンテンツ背景(草) */
#top {
    position: absolute;
	width: 100%;
	min-height: 100%;
	top: 0;
	left: 0;
	z-index: 25;
	background:url(../images/sp/bg_grass.png) 0 0 repeat-y;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
	overflow: hidden;
}
/* ======== HEADER ======== */
#header {
	width:100%;
	height: 40px;
	position:fixed;
	top: 0;
	left: 0;
	background-color: #c1e5f7;
	z-index: 44;
}
#header_bg {
	width:100%;
	height: 0;
	padding-top: 14.4%;
	position:fixed;
	top: 0;
	left: 0;
	z-index: 60;
	overflow:hidden;
	background:url(../images/sp/flug.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
}
#header h1 {
	position:fixed;
	float: left;
	top: 7px;
	left: 8px;
	width: 7.5%;
	max-width: 118px;
	z-index: 70;
}
#header h1 img {
	width: 100%;
}
/* 日本語英語切り替え */
.global_p {
    position: fixed;
    top: 5px;
    right: 42px;
    display: flex;
    z-index: 70;
}
.global_p a {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}
.global_p a:hover {
    text-decoration: underline;
}
/* ハンバーガーメニュー */
.pc_menu {
    display: none;
}
.menu-btn {
    position: fixed;
    top: 5px;
    right: 8px;
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    z-index: 90;
	cursor: pointer;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 80;
    background-color: #9ccfeb;
    transition: all 0.5s;/*アニメーション設定*/
	overflow: scroll;
}
#menu-btn-check:checked ~ .menu-content {
    top: 0;/*メニューを画面内へ*/
}
.menu-content ul {
    padding: 60px 10px 20px;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul p.main_menu {
    border-bottom: dashed 1px #ffffff;
    padding: 13px 15px 10px 0;
    transition: all 0.3s;/*アニメーション設定*/
}
.menu-content ul li img {
	height: 26px;
    padding-left: 5px;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 13px 15px 10px 0;
    position: relative;
}
.menu-content ul li.li_high a {
    padding: 11px 15px 12px 0;
}
.menu-content ul.sub_menu {
    padding: 0 0 0 5px;
}
.menu-content ul.sub_menu li {
    border-bottom: dashed 1px #ffffff;
}
.menu-content ul.sub_menu li.li_btm {
    border: none;
}
.menu-content ul.sub_menu li span {
	color: #888;
	font-weight: bold;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 20px;
}
.pc_sub_menu {
	display: none;
}
/* コンテンツ背景(道) */
#bg_top_road {
    position: absolute;
	width: 100%;
	top: 85px;
	padding-top: 28.66666666666667%;
	z-index: 26;
	background:url(../images/sp/bg_top_load.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
}
/* CONTENTS */
#contents {
	position: relative;
	width: 100%;
	padding-top: 45px;
	z-index: 30;
}
.box {
	margin-bottom: 50px;
}
.box_title {
	width: 89.70671085335543%;  /* 1289÷1207×0.84 */
	height: 0;
	padding-top: 19.69511184755592%;
}
.right_orange {
	margin-left: 8%;
	background:url(../images/content_right_orange.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;	
}
.left_blue {
	margin-left: 2.29328914664457%;  /* 8% ー（89.70671085335543% ー 84%） */
	background:url(../images/content_left_blue.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;	
}
.box_contents {
	width: 74%;
	min-height: 150px;
	margin: -5px 8% 0;
	padding: 40px 5% 10px;
	background:url(../images/content_bg.png) 0 0 repeat-y;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
}
.box_bottom {
	height: 0;
	padding-top: 11.13504556752278%;
}
.left_orange {
	width: 84%;
	margin: 0 8%;
	background:url(../images/content_left_orange.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;	
}
.right_blue {
	width: 87.13173156586578%;  /* 1252÷1207×0.84 */
	margin-left: 8%;
	background:url(../images/content_right_blue.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;	
}
.title {
	text-align: center;
	margin-top: -7.5%;
	margin-left: 7%;
}
.title2 {
	margin-right: 7%;
}
.title img {
	height: 30px;
}
/* コンテンツ内容 */
.box_contents p.para_title {
	padding: 0 0 25px 30px;
	font-size: 20px;
	font-weight: bold;
	color: #6890ba;
}
.box_contents p.para_title1 {
	background:url(../images/icon_star1.png) 0 1px no-repeat;
	-webkit-background-size:24px auto;
	-moz-background-size:24px auto;
	-o-background-size:24px auto;
	background-size:24px auto;
}
.box_contents p.para_title2 {
	background:url(../images/icon_star2.png) 0 1px no-repeat;
	-webkit-background-size:24px auto;
	-moz-background-size:24px auto;
	-o-background-size:24px auto;
	background-size:24px auto;
}
.box_contents p.para_title3 {
	background:url(../images/icon_star3.png) 0 1px no-repeat;
	-webkit-background-size:24px auto;
	-moz-background-size:24px auto;
	-o-background-size:24px auto;
	background-size:24px auto;
}
.box_contents p.para_title span {
	font-size: 15px;
}
.box_contents .para {
	padding-bottom: 70px;
}
.box_contents .para_btm {
	padding-bottom: 0;
}
.box_contents .sub_para {
	padding-bottom: 40px;
}
.box_contents .sub_para_btm {
	padding-bottom: 0;
}
.box_contents dl {
	margin: 0;
	padding: 0;
}
.box_contents dt, .box_contents p.para_subtitle {
	display: block;
	padding: 0 0 12px 22px;
	margin: 0;
	font-weight: bold;
	font-size: 18px;
	color: #777777;
}
.box_contents p.para_subtitle {
    padding-bottom: 15px;
}
.box_contents dt.dt1, .box_contents p.para_subtitle1 {
	background:url(../images/icon_round1.png) 0 4px no-repeat;
	-webkit-background-size:17px auto;
	-moz-background-size:17px auto;
	-o-background-size:17px auto;
	background-size:17px auto;
}
.box_contents dt.dt2, .box_contents p.para_subtitle2 {
	background:url(../images/icon_round2.png) 0 4px no-repeat;
	-webkit-background-size:17px auto;
	-moz-background-size:17px auto;
	-o-background-size:17px auto;
	background-size:17px auto;
}
.box_contents dt.dt3, .box_contents p.para_subtitle3 {
	background:url(../images/icon_round3.png) 0 4px no-repeat;
	-webkit-background-size:17px auto;
	-moz-background-size:17px auto;
	-o-background-size:17px auto;
	background-size:17px auto;
}
.box_contents dd {
	display: block;
	padding-bottom: 35px;
	margin: 0;
}
.box_contents dd.dd_btm {
	padding-bottom: 0;
}
.box_contents .dl_line {
	width: 100%;
	height: 0;
	padding-top: 1.063829787234043%;
	padding-bottom: 35px;
}
.box_contents .dl_line1 {
	background:url(../images/sp/line1.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
}
.box_contents .dl_line2 {
	background:url(../images/sp/line2.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
}
.box_contents .dl_line3 {
	background:url(../images/sp/line3.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
}
.box_contents .dl_line_btm {
	padding-bottom: 0;
}
.f_bold1 {
	font-weight: bold;
	font-size: 14px;
}
.f_bold2 {
	font-weight: bold;
	font-size: 15px;
}
.f_bold3 {
	font-weight: bold;
	font-size: 17px;
}
.f_block {
    display: block;
}
.f_small {
	font-size: 12px;
    line-height:1.7em;
}
.pad_top1 {
	display: block;
	padding-top: 12px;
}
.pad_top2 {
	display: block;
	padding-top: 8px;
}
.pad_top3 {
	display: block;
	padding-top: 5px;
}
.box_contents ul li {
	padding: 0 0 15px 15px;
	margin: 0;
}
.box_contents ul li.li1 {
	background:url(../images/icon_w_round1.png) 0 8px no-repeat;
	-webkit-background-size:10px auto;
	-moz-background-size:10px auto;
	-o-background-size:10px auto;
	background-size:10px auto;
}
.box_contents ul li.li2 {
	background:url(../images/icon_w_round2.png) 0 8px no-repeat;
	-webkit-background-size:10px auto;
	-moz-background-size:10px auto;
	-o-background-size:10px auto;
	background-size:10px auto;
}
.box_contents ul li.li3 {
	background:url(../images/icon_w_round3.png) 0 8px no-repeat;
	-webkit-background-size:10px auto;
	-moz-background-size:10px auto;
	-o-background-size:10px auto;
	background-size:10px auto;
}
.box_contents ul li.li_btm {
	padding-bottom: 0;
}
.box_contents .div_step {
    padding-bottom: 40px;
}
.box_contents .div_step_btm {
    padding-bottom: 20px;
}
.box_contents p.p_step {
	padding: 0 0 15px 40px;
	margin: 0;
	color: #555;
	line-height: 30px;
}
.box_contents p.p_step span {
    display: inline-block;
    padding: 2px 3px 0;
    border-bottom: 2px solid #e09c29;
}
.box_contents p.no_step {
	padding: 0;
}
.box_contents p.p_step1 {
	background:url(../images/no1.png) 0 0 no-repeat;
}
.box_contents p.p_step2 {
	background:url(../images/no2.png) 0 0 no-repeat;
}
.box_contents p.p_step3 {
	background:url(../images/no3.png) 0 0 no-repeat;
}
.box_contents p.p_step4 {
	background:url(../images/no4.png) 0 0 no-repeat;
}
.box_contents p.p_step5 {
	background:url(../images/no5.png) 0 0 no-repeat;
}
.box_contents p.p_step1, .box_contents p.p_step2, .box_contents p.p_step3, .box_contents p.p_step4, .box_contents p.p_step5 {
	-webkit-background-size:auto 35px;
	-moz-background-size:auto 35px;
	-o-background-size:auto 35px;
	background-size:auto 35px;
}
.box_contents .step_down {
	height: 30px;
	padding: 0;
    margin-bottom: 10px;
	background:url(../images/step_down1.png) 10px 0 no-repeat;
	-webkit-background-size:auto 30px;
	-moz-background-size:auto 30px;
	-o-background-size:auto 30px;
	background-size:auto 30px;
}
p.p_button {
	width: 100%;
	padding: 15px 0 11px;
}
p.p_button a {
	background-color: #6890ba;
	color: #fff;
	max-width: 86%;
	padding: 10px 7% 11px;
	font-weight: bold;
	font-size: 13px;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
    transition: all 0.3s;/*アニメーション設定*/
}
p.p_button a:hover {
	background-color: #94b5d3;
}
p.p_button_big a {
	padding: 14px 9% 15px;
	font-size: 14px;
}
.box_contents .para_menu {
	width: 100%;
	padding-bottom: 40px;
	overflow: hidden;
}
.para_menu .r_menu {
	width: 49.5%;
	margin-right: 1%;
	margin-bottom: 3px;
	float: left;
	background-color: #6890ba; 
	text-align: center;
}
.para_menu .r_menu_sp {
	margin-right: 0;
}
.para_menu .r_menu a {
	display: block;
	color: #fff;
	padding: 10px 5% 11px;
	font-weight: bold;
	font-size: 11px;
	border-radius:7px;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
    transition: all 0.3s;/*アニメーション設定*/
    position: relative;
}
.para_menu .r_menu a:hover {
	background-color: #94b5d3;
}
.para_menu .r_menu a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(135deg);
    position: absolute;
    right: 7px;
    top: 17px;
}
.para_menu .r_menu_best a {
	letter-spacing: 0;
}
/* BANNER */
.box_banner {
    width: 85%;
    margin: 0 auto 50px;
}
.banner {
	min-height: auto;
	overflow: hidden;
	padding-top: 30px;
}
.banner ul li {
	float: left;
	padding: 0 4% 15px 0;
}
.banner ul li.li_sp {
	padding-right: 0;
}
.banner ul li.b_li1 {
	width: 19.68558951965%;
	max-width: 98px;
	clear: both;
}
.banner ul li.b_li2 {
	width: 16.06986899563%;
	max-width: 80px;
}
.banner ul li.b_li3 {
	width: 56.24454148471%;
	max-width: 280px;
	padding-right: 0;
}
.banner ul li img {
	width: 100%;
    transition: all 0.3s;/*アニメーション設定*/
}
.banner ul li img:hover {
	opacity: 0.75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha( opacity=75 )";
}
.banner ul li.li_fine {
	width: 80%;
	max-width: 280px;
	padding-right: 10%;
	padding-left: 10%;
}
/* FOOTER */
#footer {
	position: relative;
	width: 100%;
	padding-bottom: 25px;
	z-index: 30;
}
#foot_bg {
	width: 74%;
	height: 0;
	margin: 0 8%;
	padding: 0 5%;
	padding-top: 35.13207547169811%;  /* 縦÷横×0.84（paddingがあるため） */
	background:url(../images/sp/content_company2022.png) 0 0 no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
	overflow: hidden;
}
#foot_contents {
	margin-top: -28%;
}
#foot_logo {
	display: none;
}
#foot_company {
	width: 100%;
	font-size: 9px;
	line-height:1.5em;
}
.foot_eventname {
	font-weight: bold;
	padding-bottom: 5px;
}
#foot_copyright {
	float: left;
	font-size: 8px;
	line-height:1.5em;
	width: 70%;
	padding-top: 12px;
}
#foot_icon {
	float: right;
	width: 30%;
	padding-top: 5px;
}
#foot_icon p {
	float: right;
	width: 28%;
}
#foot_icon p.foot_tw {
	padding-left: 8%;
}
#foot_icon p img {
	width: 100%;
    transition: all 0.3s;/*アニメーション設定*/
}
#foot_icon p img:hover {
	opacity: 0.75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha( opacity=75 )";
}
/* フッター背景(道) */
#bg_foot_road {
    position: absolute;
	width: 100%;
	bottom: 0;
	right: 0;
	padding-top: 25.33333333333333%;
	z-index: 26;
	background:url(../images/sp/bg_load2.png) 0 100% no-repeat;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	-o-background-size:100% auto;
	background-size:100% auto;
}
/* サブページ立て看板 */
.sub_news p {
	position:fixed;
	top: 55px;
	right: 2%;
	width: 22%;
	z-index: 40;
}
.sub_news p img {
	width: 100%;
	max-width: 235px;
    transition: all 0.3s;/*アニメーション設定*/
}
.sub_news p a img:hover {
	transform: scale(1.1,1.1);
}

/* ======== return ======== */
#return p {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 40;
}
#return p a {
    position: relative;
	display: block;
	width: 35px;
	height: 35px;
	background-color: #3c749e;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	opacity: 0.85;
	filter: alpha(opacity=85);
	-ms-filter: "alpha( opacity=85 )";
}
#return p a:hover {
	background-color: #366d96;
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
#return a span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    right: 13.5px;
    top: 15.5px;
}
/* YouTube動画 */
.movie {
	position: relative;
    padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* スマホ横～ */
@media screen and (min-width:480px) {
	#header {
		height: 45px;
	}
	#header h1 {
		top: 7px;
	    width: 7%;
	}
    .global_p {
        top: 9px;
        right: 48px;
    }
    .global_p a {
        font-size: 12px;
    }
	/* CONTENTS */
	#contents {
		margin-top: 25px;
	}
	/* BANNER */
	.banner {
		min-height: auto;
	}
	/* FOOTER */
	#foot_contents {
		margin-top: -29%;
	}
	#foot_logo {
		display: block;
		float: left;
		width: 12%;
		padding-right: 4%;
	}
	#foot_logo img {
		width: 100%;
		max-width: 123px;
	}
	#foot_company {
		float: left;
		width: 84%;
		font-size: 10px;
	}
	#foot_copyright {
		font-size: 9px;
		padding-top: 12px;
	}
	#foot_icon {
		padding-top: 5px;
	}
	/* サブページ立て看板 */
	.sub_news p {
		top: 55px;
		width: 26%;
	}
}
/* Kindle縦～ */
@media screen and (min-width:550px) {
	#header {
		height: 55px;
	}
	#header h1 {
		top: 10px;
		left: 10px;
	}
    /* 日本語英語切り替え */
    .global_p {
        top: 14px;
        right: 60px;
    }
	.menu-btn {
		top: 7px;
		right: 12px;
		height: 40px;
		width: 40px;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
    	height: 4px;
		width: 30px;
	}
	.menu-btn span:before {
		bottom: 10px;
	}
	.menu-btn span:after {
		top: 10px;
	}
	.title {
		margin-top: -9%;
	}
	.title img {
		height: 35px;
	}
	/* コンテンツ背景(道) */
	#bg_top_road {
		top: 100px;
	}
	/* CONTENTS */
	#contents {
		padding-top: 60px;
	}
	/* BANNER */
	.banner {
		min-height: auto;
		overflow: hidden;
		padding-top: 20px;
	}
	.banner ul li {
		padding: 0 3% 15px 0;
		width: 31.3%;
	}
	.banner ul li.li_sp {
		padding-right: 3%;
	}
	.banner ul li.li_pc {
		padding-right: 0;
	}
	.banner ul li.b_li1 {
		width: 13.90829694323%;
		max-width: 98px;
	}
	.banner ul li.b_li2 {
		width: 11.35371179039%;
		max-width: 80px;
	}
	.banner ul li.b_li3 {
		width: 39.73799126637%;
		max-width: 280px;
		padding-right: 0;
	}
	.banner ul li.li_fine {
		float: left;
		padding: 0 4% 15px 0;
		width: 48%;
	}
	.banner ul li.li_fine_r {
		padding-right: 0;
	}
	/* FOOTER */
	#foot_bg {
		padding-top: 31.17812758906379453%;  /* 縦÷横×0.84（paddingがあるため） */
		background:url(../images/content_company2022.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	#foot_contents {
		margin-top: -23%;
	}
	#foot_company {
		font-size: 11px;
	}
	.foot_eventname span {
		display: none;
	}
	#foot_company {
		padding-top: 3px;
	}
	#foot_copyright {
		width: 72%;
		padding-top: 13px;
	}
	#foot_icon {
		width: 28%;
		padding-top: 0;
	}
	/* サブページ立て看板 */
	.sub_news p {
		top: 65px;
		width: 26%;
	}
}
/* フッター調整～ */
@media screen and (min-width:650px) {
	/* BANNER */
	.banner {
		min-height: auto;
		padding-top: 20px;
	}
	#foot_contents {
		margin-top: -23%;
	}
	#foot_company {
		font-size: 12px;
		line-height:1.7em;
	}
	#foot_copyright {
		font-size: 11px;
		width: 74%;
		padding-top: 17px;
	}
	#foot_icon {
		width: 26%;
		padding-top: 0;
	}
	/* サブページ立て看板 */
	.sub_news p {
		top: 65px;
		width: 24%;
	}
}
/* タブレット縦～ */
@media screen and (min-width:750px) {
	body {
		font-size: 14px;
	}
	/* コンテンツ背景(草) */
	#top {
		background:url(../images/bg_grass.png) 0 0 repeat-y;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	#header {
		height: 55px;
	}
	#header_bg {
		position:absolute;
		width: 20.98958333333333%;
		padding-top: 11.45833333333333%;
		background:url(../images/flug_left.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	#header_bg2 {
		width: 34.47916666666667%;
		height: 0;
		padding-top: 11.45833333333333%;
		position:absolute;
		top: 0;
		right: 0;
		z-index: 60;
		overflow:hidden;
		background:url(../images/flug_right.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	#header h1 {
		top: 6px;
		left: 15px;
		width:5.3%;
	}
	/* コンテンツ背景(道) */
	#bg_top_road {
		top: 165px;
		padding-top: 21.66666666666667%;
		z-index: 26;
		background:url(../images/bg_top_load.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	/* CONTENTS */
	#contents {
		padding-top: 65px;
	}
	.box_title {
		width: 79.02734051367026%;  /* 1289÷1207×0.74 */
		padding-top: 17.35045567522784%;
	}
	.right_orange {
		margin-left: 13%;
	}
	.left_blue {
		margin-left: 7.97265948632974%;  /* 13% ー（79.02734051367026% ー 74%） */
	}
	.box_contents {
		width: 66%;
		min-height: 200px;
		margin: -5px 13% 0;
		padding: 40px 4% 10px;
	}
	.box_bottom {
		padding-top: 9.809444904722452%;
	}
	.left_orange {
		width: 74%;
		margin: 0 13%;
	}
	.right_blue {
		width: 76.75890637945319%;  /* 1252÷1207×0.74 */
		margin-left: 13%;
	}
	.title img {
		height: 45px;
	}
	/* コンテンツ内容 */
    .f_bold1 {
        font-size: 14px;
    }
    .f_bold2 {
        font-size: 16px;
    }
    .f_bold3 {
        font-size: 18px;
    }
    .f_block {
        display: inline;
    }
    .f_small {
        font-size: 13px;
        line-height:1.8em;
    }
    .box_contents .div_step {
        padding-bottom: 50px;
    }
    .box_contents .div_step_btm {
        padding-bottom: 30px;
    }
    .box_contents p.p_step {
        padding: 0 0 20px 47px;
        line-height: 32px;
    }
    .box_contents p.p_step span {
        padding: 3px 3px 0;
    }
	.box_contents p.no_step {
		padding: 0;
	}
	.box_contents p.p_step1, .box_contents p.p_step2, .box_contents p.p_step3, .box_contents p.p_step4, .box_contents p.p_step5 {
		-webkit-background-size:auto 40px;
		-moz-background-size:auto 40px;
		-o-background-size:auto 40px;
		background-size:auto 40px;
	}
	.box_contents .step_down {
        height: 35px;
        margin-bottom: 15px;
        background:url(../images/step_down1.png) 10px 0 no-repeat;
        -webkit-background-size:auto 35px;
        -moz-background-size:auto 35px;
        -o-background-size:auto 35px;
        background-size:auto 35px;
	}
	p.p_button a {
		padding: 10px 5% 11px;
		font-size: 14px;
	}
    p.p_button_big a {
        padding: 15px 7% 16px;
        font-size: 15px;
    }
	.para_menu .r_menu {
		margin-bottom: 4px;
	}
	.para_menu .r_menu a {
		font-size: 13px;
	}
	.para_menu .r_menu a::before {
		width: 7px;
		height: 7px;
		right: 11px;
		top: 16px;
	}
	.para_menu .r_menu_best a {
		letter-spacing: 1px;
	}
	/* BANNER */
	.banner {
		min-height: auto;
		padding-top: 20px;
	}
	.banner ul li, .banner ul li.li_fine {
		padding-bottom: 20px;
	}
	/* FOOTER */
	#footer {
		padding-bottom: 30px;
	}
	#foot_bg {		
		width: 68%;
		margin: 0 13%;
		padding: 0 3%;
		padding-top: 24.8096026490066225%;  /* 縦÷横×0.74（paddingがあるため） */
		background:url(../images/content_company2022_2.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	#foot_contents {
		margin-top: -21%;
	}
	#foot_company {
		padding-top: 7px;
	}
	#foot_copyright {
		width: 80%;
		padding-top: 14px;
	}
	#foot_icon {
		width: 20%;
		padding-top: 0;
	}
	/* フッター背景(道) */
	#bg_foot_road {
		padding-top: 24.58333333333333%;
		background:url(../images/bg_load2.png) 0 100% no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	/* サブページ立て看板 */
	.sub_news p {
		top: 65px;
		right: 5%;
		width: 21%;
	}

	/* ======== return ======== */
	#return p {
		right: 25px;
		bottom: 25px;
	}
	#return p a {
		width: 40px;
		height: 40px;
	}
	#return a span::before {
		width: 7px;
		height: 7px;
		right: 15px;
		top: 17px;
	}
}
/* 協賛調整 */
@media screen and (min-width:930px) {
	/* サブページ立て看板 */
	.sub_news p {
		top: 65px;
		right: 6%;
		width: 20%;
	}
}
/* PC */
@media screen and (min-width:1024px) {
	#header {
		height: 75px;
	}
	#header h1 {
		top: 8px;
		left: 15px;
		width: 5.7%;
		max-width: 70px;
	}
	#header #top_menu {
		position: absolute;
		z-index: 55;
	}
    /* 日本語英語切り替え */
    .global_p {
        top: 23px;
        right: 20px;
    }
    .global_p a {
        font-size: 13px;
    }
    .pc_menu {
        display: inline;
    }
	.sp_menu {
		display: none;
	}
	.menu-content {
		display: block;
		width: 45%;
		padding: 5px 34% 0 21%;
		height: 14.4%;
		position: absolute;
		top: 16px;
		left: auto;
		z-index: 55;
		background: none;
    	transition: none; /*アニメーション設定*/
		overflow: visible;
	}
	.menu-content ul {
		padding: 0;
	}
	.menu-content ul li {
		border: none;
		list-style: none;
		float: left;
	}
	.menu-content ul li.li_dash {
		border: none;
	}
	.menu-content ul li+li {
		padding-left: 4%;
	}
	.menu-content ul li img {
		height: 28px;
        padding-bottom: 4px;
	}
	.menu-content ul li p.main_menu {
		border: none;
		padding: 0;
		float: left;
		height: 59px;  /* #header height ー .menu-content top */
	}
	.menu-content ul li p.main_menu img {
		height: 28px;
	}
	.menu-content ul li a {
		width: auto;
		box-sizing: content-box;
		padding: 0;
		position: relative;
		text-decoration: none;
	}
	.menu-content ul li.li_high a {
		padding: 0;
	}
	.menu-content ul li a::before {
		content: "";
		width: auto;
		height: auto;
		border: none;
		transform: none;
		position: absolute;
		right: auto;
		top: auto;
	}
	.menu-content ul li a::after, .menu-content ul li p.main_menu::after {
	  border-bottom: solid 2px #555;
	  bottom: 0;
	  content: "";
	  display: block;
	  transition: all .3s ease;
	  -webkit-transition: all .3s ease;
	  width: 0;
	}
	.menu-content ul li a:hover::after, .menu-content ul li p.main_menu:hover::after {
	  width: 100%;
	}
	.title img {
		height: 55px;
	}
	/* PCサブメニュー */
	.pc_sub_menu {
		width: 100%;
		position: fixed;
		top: 75px;
		left: 0;
		display: block;
		z-index: 40;
	}
	.pc_sub_menu ul {
		width: 60%;
		height: 0;
		padding: 0 20%;
		background:url("../images/sub_menu_bg.png") 0 0 repeat;
		transition: all 0.5s; /*アニメーション設定*/
		overflow: hidden;
	}
	.pc_sub_menu_on ul {
		overflow: visible;
		height: 65px;
	}
	.pc_sub_menu ul li {
		border: none;
		float: left;
		padding-right: 30px;
		padding-top: 18px;
		transform: translateY(-65px);
		transition: all 0.5s; /*アニメーション設定*/
	}
	.pc_sub_menu_on ul li {
		transform: translateY(0);
	}
	.pc_sub_menu ul li img {
		height: 26px;
		width: auto;
	}
	.pc_sub_menu ul li a {
		width: auto;
		box-sizing: content-box;
		position: relative;
		text-decoration: none;
	}
	.pc_sub_menu ul li a::before {
		content: "";
		width: auto;
		height: auto;
		border: none;
		transform: none;
		position: absolute;
		right: auto;
		top: auto;
	}
	.pc_sub_menu ul li a::after, .menu-content ul li p.main_menu::after {
	  border-bottom: solid 2px #555;
	  bottom: 0;
	  content: "";
	  display: block;
	  transition: all .3s ease;
	  -webkit-transition: all .3s ease;
	  width: 0;
	}
	.pc_sub_menu ul li a:hover::after, .menu-content ul li p.main_menu:hover::after {
	  width: 100%;
	}
	.menu-content ul li p.main_menu_hover::after {
	  border-bottom: solid 2px #555;
	  bottom: 0;
	  content: "";
	  display: block;
	  transition: all .3s ease;
	  -webkit-transition: all .3s ease;
	  width: 100%;
	}
	/* コンテンツ背景(道) */
	#bg_top_road {
		top: 235px;
	}
	/* CONTENTS */
	#contents {
		padding-top: 90px;
	}
	.box_contents {
		min-height: 200px;
	}
	.box_contents .para {
		padding-bottom: 100px;
	}
	.box_contents .para_btm {
		padding-bottom: 0;
	}
	.box_contents .sub_para {
		padding-bottom: 50px;
	}
	.box_contents .sub_para_btm {
		padding-bottom: 0;
	}
    /* コンテンツ内容 */
	.box_contents p.para_title {
		padding: 0 0 30px 35px;
		font-size: 24px;
	}
	.box_contents p.para_title1 {
		background:url(../images/icon_star1.png) 0 0px no-repeat;
		-webkit-background-size:28px auto;
		-moz-background-size:28px auto;
		-o-background-size:28px auto;
		background-size:28px auto;
	}
	.box_contents p.para_title2 {
		background:url(../images/icon_star2.png) 0 0px no-repeat;
		-webkit-background-size:28px auto;
		-moz-background-size:28px auto;
		-o-background-size:28px auto;
		background-size:28px auto;
	}
	.box_contents p.para_title3 {
		background:url(../images/icon_star3.png) 0 0px no-repeat;
		-webkit-background-size:28px auto;
		-moz-background-size:28px auto;
		-o-background-size:28px auto;
		background-size:28px auto;
	}
	.box_contents dt, .box_contents p.para_subtitle {
		padding: 0 0 40px 24px;
		font-size: 20px;
	}
	.box_contents dt {
		float: left;
	}
	.box_contents p.para_subtitle {
		padding-bottom: 18px;
	}
	.box_contents dd {
		padding: 0 0 40px 9.5em;
	}
    .box_contents dd.dd_btm {
        padding-bottom: 0;
    }
	.box_contents dt.dt1, .box_contents p.para_subtitle1 {
		background:url(../images/icon_round1.png) 0 5px no-repeat;
		-webkit-background-size:18px auto;
		-moz-background-size:18px auto;
		-o-background-size:18px auto;
		background-size:18px auto;
	}
	.box_contents dt.dt2, .box_contents p.para_subtitle2 {
		background:url(../images/icon_round2.png) 0 5px no-repeat;
		-webkit-background-size:18px auto;
		-moz-background-size:18px auto;
		-o-background-size:18px auto;
		background-size:18px auto;
	}
	.box_contents dt.dt3, .box_contents p.para_subtitle3 {
		background:url(../images/icon_round3.png) 0 5px no-repeat;
		-webkit-background-size:18px auto;
		-moz-background-size:18px auto;
		-o-background-size:18px auto;
		background-size:18px auto;
	}
	.box_contents .dl_line {
		padding-top: 0.7800312012480499%;
		padding-bottom: 40px;
	}
	.box_contents .dl_line1 {
		background:url(../images/line1.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	.box_contents .dl_line2 {
		background:url(../images/line2.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	.box_contents .dl_line3 {
		background:url(../images/line3.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	.box_contents .dl_line_btm {
		padding-bottom: 0;
	}
    .box_contents .para_menu {
        padding-bottom: 40px;
    }
	.para_menu .r_menu {
		width: 32.6%;
		margin-right: 1%;
		margin-bottom: 7px;
	}
	.para_menu .r_menu_pc {
		margin-right: 0;
	}
	/* BANNER */
	.banner {
		min-height: auto;
		padding-top: 20px;
	}
	/* FOOTER */
	#foot_contents {
		margin-top: -21%;
	}
	#foot_logo {
		width: 13%;
		padding-right: 3%;
	}
	#foot_company {
		width: 84%;
		font-size: 13px;
		line-height:1.8em;
		padding-top: 13px;
	}
	.foot_eventname {
		font-size: 14px;
		padding-bottom: 9px;
	}
	#foot_copyright {
		width: 84%;
		padding-top: 20px;
		font-size: 12px;
	}
	#foot_icon {
		width: 16%;
		padding-top: 6px;
	}
	/* サブページ立て看板 */
	.sub_news p {
		top: 85px;
		right: 8%;
		width: 18%;
	}
}
/* メニュー調整 */
@media screen and (min-width:1200px) {
	.menu-content {
        padding-top: 0;
    }
	.menu-content ul li img {
		height: 33px;
	}
	.menu-content ul li p.main_menu img {
		height: 33px;
	}
}
/* PC */
@media screen and (min-width:1366px) {
	/* コンテンツ背景(道) */
	#bg_top_road {
		top: 275px;
	}
	/* CONTENTS */
	#contents {
		width: 1135.874067937034px;  /* 1000+(67.937033968517×2) */
		margin: 0 auto;
		padding-top: 125px;
	}
	.box {
		margin-bottom: 80px;
	}
	.box_title {
		width: 1067.937033968517px;  /* 1000÷1207×1289 */
		height: 234.4656172328086px;
		padding-top: 0;
	}
	.right_orange {
		margin-left: 67.937033968517px;
	}
	.left_blue {
		margin-left: 0;
	}
	.box_contents {
		width: 880px;
		min-height: 250px;
		margin: -5px auto 0;
		padding: 30px 60px;
	}
	.box_bottom {
		height: 132.5600662800331px;
		padding-top: 0;
	}
	.left_orange {
		width: 1000px;
		margin: 0 auto;
	}
	.right_blue {
		width: 1037.282518641259px;  /* 1000÷1207×1252 */
		margin-left: 67.937033968517px;
	}
	.title {
		margin-top: 0;
		margin-left: 6.5%;
		padding-top: 140px;
	}
	.title2 {
		margin-right: 6.5%;
	}
	.title img {
		height: 60px;
	}
	.menu-content {
		width: 60%;
		padding: 0 20%;
	}
	.menu-content ul li+li {
		padding-left: 5%;
	}
	.menu-content ul li img {
		height: 33px;
	}
	.menu-content ul li p.main_menu img {
		height: 33px;
	}
	/* PCサブメニュー */
	.pc_sub_menu ul {
		width: 50%;
		padding: 0 25%;
	}
	.pc_sub_menu_on ul {
		height: 70px;
	}
	.pc_sub_menu ul li {
		transform: translateY(-70px);
		padding-right: 35px;
	}
	.pc_sub_menu_on ul li {
		transform: translateY(0);
	}
	.pc_sub_menu ul li img {
		height: 30px;
	}
	/* CONTENTS */
	p.p_button a {
		padding: 10px 30px 11px;
	}
    p.p_button_big a {
        padding: 16px 45px 17px;
    }
	input[type=submit] {
		padding: 10px 30px 11px;
	}
	.para_menu .r_menu {
		margin-bottom: 8px;
	}
	/* BANNER */
    .box_banner {
        width: auto;
    }
	.banner {
		min-height: auto;
		padding-top: 20px;
	}
	.banner ul li {
		padding: 0 20px 20px 0;
	}
	.banner ul li.li_sp {
		padding-right: 20px;
	}
	.banner ul li.li_pc {
		padding-right: 0;
	}
	.banner ul li.b_li3 {
		padding-right: 0;
	}
	.banner ul li.li_fine {
		padding: 0 20px 20px 0;
	}
	.banner ul li.li_fine_r_pc {
		padding-right: 0;
	}
	/* FOOTER */
	#footer {
		padding-bottom: 40px;
	}
	#foot_bg {
		width: 900px;
		height: 301.574150787075393537px;  /* 1000÷横×縦 */
		margin: 0 auto;
		padding: 0 50px;
		background:url(../images/content_company2022_3.png) 0 0 no-repeat;
		-webkit-background-size:100% auto;
		-moz-background-size:100% auto;
		-o-background-size:100% auto;
		background-size:100% auto;
	}
	#foot_contents {
		margin-top: 130px;
	}
	#foot_logo {
		width: 110px;
		padding-right: 25px;
	}
	#foot_company {		
		width: 765px;
		padding-top: 32px;
	}
	.foot_eventname {
		padding-bottom: 12px;
	}
	#foot_copyright {
		width: 750px;
		padding-top: 18px;
	}
	#foot_icon {
		width: 150px;
		padding-top: 0;
	}
	#foot_icon p {
		width: 42px;
	}
	#foot_icon p.foot_tw {
		padding-left: 12px;
	}
	/* サブページ立て看板 */
	.sub_news p {
		top: 145px;
		right: 2%;
		width: 16%;
	}
}
/* メニュー調整 */
@media screen and (min-width:1550px) {
	.menu-content ul li img {
		height: 38px;
	}
	.menu-content ul li p.main_menu img {
		height: 38px;
	}
}
/* メニュー調整 */
@media screen and (min-width:1700px) {
	.menu-content ul li img {
		height: 40px;
	}
	.menu-content ul li p.main_menu img {
		height: 40px;
	}
}