
/*修正不可↓*/



html {font-size: 62.5%; /* font-size16pxの62.5%　10px ※1rem=16px、rem計算単純化のため1rem=10pxに修正*/}


body{
	text-align:center;
	margin:0px auto;
	color:#000000;
	letter-spacing:1px;
	font-size:1.6rem; /*標準文字サイズ　16px 相当*/
	}

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

a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
	}

/*修正不可↑*/





/*文字設定↓*/

	.f01{
	font-size:3rem; /*タイトル文字サイズ　30px 相当*/
	font-weight:bold;
	}

	.f02{
	font-size:2rem; /*強調大文字サイズ　20px 相当*/
	font-weight:bold;
	}
	
	.f03{
	font-size:2rem; /*大文字サイズ　20px 相当*/
	}
	
	.f04{
	font-size:1.6rem; /*強調標準文字サイズ　16px 相当*/
	font-weight:bold;
	}
	
	.f05{
	font-size:1.6rem; /*標準文字サイズ　16px 相当*/
	}
	
	.f06{
	font-size:1.2rem; /*小文字サイズ　12px 相当*/
	}

	
	/*色付き文字設定*/	
		.f01g{
		font-size:3rem; /*タイトル文字サイズ　30px 相当*/
		font-weight:bold;
		color:#008900; /*色　緑*/
		}
		
		.r{
		color:#ff0000; /*色　赤*/
		}
		
		.g{
		color:#008900; /*色　緑*/
		}

		.o{
		color:#ff7f00; /*色　橙*/
		}


	/*斜め文字設定*/	
		.it{font-style:italic;
		font-family: Times New Roman, "ＭＳ Ｐゴシック";
		}

/*文字設定↑*/





/*ヘッダー 修正不可↓*/

.hdw .hdwrap {
	width:100%;
	max-width:1024px;
	padding-top:15px;
	margin-left:auto;
	margin-right:auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}

	.hdw .hdwrap .hdfbox:first-child {text-align:left;}
	.hdw .hdwrap .hdfbox:nth-child(2) {text-align:right;}

@media only screen and (max-width: 1000px) {

	.hdw .wrap2 {
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
	text-align:center;
	}
	
	.hdw .hdwrap .hdfbox:first-child,
	.hdw .hdwrap .hdfbox:nth-child(2) {
	width: 100%;
	text-align:center;
	}

}



/*ナビゲーション 修正不可↓*/

/** メニュー中央配置 */
.section-inner {
    width: 100%;
    margin: auto;
	background-color:#008900;
	}

/** PC 用 */
@media (min-width: 1000px) {
    /** グローバルナビリスト (1階層目) */
    .global-nav-item-list {
        display: flex;
        justify-content: space-between;
		max-width:1024px;
		margin: auto;
    }
    /** グローバルナビ項目 (1階層目) */
    .global-nav-item {
        display: flex;
        position: relative;
		flex-grow: 1;
    }
    .global-nav-item > a {
        display: block;
        position: relative;
        width: 100%;
        padding: 1.5rem;
        font-size: 2rem;
		font-weight:bold;
		letter-spacing:1px;
        color: #ffffff;
        text-align: center;
        text-decoration: none;
        transform: rotate(0.05deg);
    }
    .global-nav-item > a::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 100%;
        opacity: 0;
        transition: 0.1s opacity;
    }
    .global-nav-item:hover > a::after {
        opacity: 0.2;
		background:#00c100;
    }
 
}

/** スマホ 用 */
@media (max-width: 999px) {
    /** グローバルナビリスト (1階層目) */
    .global-nav-item-list {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 100%;
        margin: auto;
        overflow: auto;
        z-index: 100;
        background: rgba(255, 255, 255, 0.95);
        transition: 0.2s all;
        pointer-events: none;
    }
    .global-nav.open .global-nav-item-list {
        left: 0;
        pointer-events: all;
    }

    /** グローバルナビ項目 (1階層目, 2階層目) のリンク */
    .global-nav-item a {
        display: flex;
        align-items: center;
        box-sizing: border-box;
        position: relative;
        width: 100%;
        padding: 2.5rem 30px;
        font-size: 2.8rem;
        color: #000000;
        text-decoration: none;
        transform: rotate(0.05deg);
        transition: 0.2s all;
		border-top: 1px dotted #b7b7b7;;
    }
    .global-nav-item a:hover {
        background:#f4f6f8;
    }
    .global-nav-item > a::before,
    .global-nav-sub-item-list.open a::before {
        box-sizing: border-box;
        content: "";
        display: block;
        margin-right: 10px;
        width: 10px;
        height: 10px;
        border: solid  #7f7f7f;
        border-width: 0 2px 2px 0;
        transform-origin: center;
        transform: translateX(-25%) rotate(-45deg);
        transition: 0.2s all;
    }
    .global-nav-item > a.open::before {
        transform: translate(-25%, -2.5px) rotate(45deg);
    }
    .global-nav-sub-item a {
        padding-left: 45px;
    }
 
    /** トグルボタン */
    .global-nav-button {
        box-sizing: border-box;
        position: fixed;
        top: 20px;
        right: 25px;
        width: 70px;
        height: 70px;
        border-radius: 50px;
        background:#7f7f7f;
		border:1px solid #FFF;
        z-index: 101;
        cursor: pointer;
    }
    .global-nav-button-icon {
        position: absolute;
        top: calc(50% - 1px);
        left: 0;
        width: calc(100% - 18px);
        height: 2px;
        margin-left: 9px;
        background: white;
        z-index: 100;
    }
    .global-nav-button-icon::before {
        position: relative;
        top: -8px;
        display: block;
        content: "";
        height: 2px;
        background: white;
        transition: 0.1s all;
    }
    .global-nav-button-icon::after {
        position: relative;
        top: 6px;
        display: block;
        content: "";
        height: 2px;
        background: white;
        transition: 0.1s all;
    }
    .global-nav-button.open .global-nav-button-icon {
        background: transparent;
    }
    .global-nav-button.open .global-nav-button-icon::before {
        top: -6px;
        transform: translateY(6px) rotate(45deg);
    }
    .global-nav-button.open .global-nav-button-icon::after {
        top: 3px;
        transform: translateY(-5px) rotate(-45deg);
    }
}





/*枠 修正不可↓*/

/*全体枠*/

.box{
	width:98%;
	max-width:1024px;
	margin-left:auto;
	margin-right:auto;
	text-align:left;
	}

/*トップイメージボックス*/

.topbox{
	position: relative;
	display:inline-block;
	padding-top:10px;
	}

.topbox2{
	font-size:2rem; /*大文字サイズ　20px 相当*/
	position: absolute;
	top: 0;
	left: 0;
	max-width: 60%;
	max-height: 100%;
	padding:80px 30px 10px 30px;
	text-align: center;
	line-height:3rem
	}

@media screen and (max-width: 900px) {
	
.topbox2{
	max-width: 70%;
	font-size:1.6rem; /*大文字サイズ　16px 相当*/
	padding:30px 30px 10px 30px;
	text-align: center;
	line-height:2.2rem;
	}

}




/*グレーボックス*/

.gbox{
	background-color:#e5e5e5;
	width:98%;
	margin-top:20px;
	max-width:1004px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
	}


.gcbox {
	/*display: flex;*/
	width:98%;	
	max-width:950px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
	}

	.gcbox .item-text {
	/*display: flex;
	flex-wrap: wrap;
	flex: 1;*/
	padding:30px;
	font-size:2rem; /*大文字サイズ　20px 相当*/
	line-height:4rem;
	}
  
	.gcbox .item-img {
	padding:20px;
	/*max-width:240px;*/
	max-width:0px;
	}



@media screen and (max-width: 1000px) {
	
.gbox{
	width:95%;
	}
	
.gcbox {
	flex-direction: column;
	width:90%;
	}

	.gcbox .item-text {
	margin-left:auto;
	margin-right:auto;
	padding:15px 35px 15px 35px;
	line-height:3rem;
	}
	
	.gcbox .item-img {
	display: flex;
	margin-left:auto;
	margin-right:auto;
	justify-content: center;
	align-items: center;
	}

}





/*グリーンボックス*/

.grbox {
	display: flex;
	width:98%;	
	max-width:1004px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
	background-color:#beffbf;
	}

	.grbox .item-text {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	padding:10px;
	text-align:left;
	}

	.grbox .item-img {
	padding:10px;
	}

@media screen and (max-width: 1000px) {
	
.grbox {
	flex-direction: column;
	width:95%;
	}

}



/*ピンクボックス*/

.pbox{
	background-color:#ffe2f3;
	width:98%;
	margin-top:20px;
	max-width:1004px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
	}


/*ホワイトボックス*/

.wbox{
	background-color:#ffffff;
	color:#d84432;
	width:98%;
	margin-top:20px;
	max-width:950px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
	font-size:4rem; /*タイトル文字サイズ　40px 相当*/
	font-weight:bold;

	}

.lpbox {
	display: flex;
	width:98%;	
	max-width:950px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
	background-color:#fbf0f0;
	}

	.lpbox .item-text {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	padding:30px 10px;
	text-align:left;
	}

	.lpbox .item-img {
	padding:10px;
	}



@media screen and (max-width: 1000px) {

.pbox{
	width:95%;
	}
	
	.wbox{
	width:95%;
	font-size:3rem; /*タイトル文字サイズ　30px 相当*/
	}
	
.lpbox {
	flex-direction: column;
	width:90%;
	}


}



/*イエローボックス*/

.ybox{
	background-color:#f4edcc;
	width:98%;
	margin-top:20px;
	max-width:920px;
	margin-left:auto;
	margin-right:auto;
	padding:30px 20px 20px 20px;
	}

.ybox  p {
	margin:30px;
	text-align:left;
    }

/*安心の料金体系ボックス*/


.pri {
	text-align: center;
	display: block;
	margin-left:auto;
	margin-right:auto;
	}
	.pri .text {
		text-align: left;
		display: inline-block;
		}


/*コースボックス*/

.cobox {
	display: flex;
	width:98%;	
	max-width:1024px;
	margin-left:auto;
	margin-right:auto;   
    align-items:stretch;
	justify-content: center;
	}
 
.coitem {
    margin:  5px;
	padding:10px;
    width: 30%;
	background-color:#beffbf;
	font-size:2rem; /*大文字サイズ　20px 相当*/
	}




/*プロフィールボックス*/

.prbox {
	width:98%;	
	max-width:950px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
	margin-top:15px;
	background-color:#ffffff;
	text-align:center;
	}

.prwbox {
	display: flex;
	width:98%;	
	max-width:950px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
	margin-bottom:15px;
	background-color:#ffffff;
	}

	.prwbox .item-text {
	flex-wrap: wrap;
	flex: 1;
	padding:10px;
	text-align:left;
	}

	.prwbox .item-img {
	padding:10px;
	max-width:250px;
	}


@media screen and (max-width: 1000px) {

.prbox {
	width:90%;
	}
	
.prwbox {
	width:90%;
	}

}




/*お問い合わせ↓*/

.oto-f table{
	width:100%;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
	max-width:1024px;
	}	
		
.oto-f th{
	width:30%;
	text-align:left;
	font-weight:normal;
	background-color:#bdd9f1;
	border-bottom:1px solid #ffffff;
	border-right:1px solid #ffffff;
	padding:15px 0px 15px 20px;
	}
	
.oto-f td{
	text-align:left;
	background-color:#d9d9d9;
	border-bottom:1px solid #ffffff;
	padding:15px 0px 15px 20px;
	}


@media (max-width: 1000px) {
    .oto-f table {
		width:95%;
		border-top:none;
    }
 
    .oto-f  th,
    .oto-f  td {
		width:95%;
        display: block;
    }
}


input.submit_button{
	width:100%;
	max-width:152px;
	padding: 10px 0px;
    background-color: #1f497d;
    color: #fff;
    border-style: none;
	font-size:2rem;
	}

input.submit_button:hover{
	padding: 10px 0px;
    background-color:#3f6da7;
    border-style: none;
	}



/*会社情報↓*/

.corp table{
	width:100%;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
	max-width:1024px;
	border:1px solid #e6eed5;
	}	
		
.corp th{
	font-size:2rem; /*強調大文字サイズ　20px 相当*/
	font-weight:bold;
	color:#ffffff;
	text-align:left;
	background-color:#008900;
	padding:10px 0px 10px 20px;
	}
	
.corp td{
	text-align:left;
	background-color:#e6eed5;
	padding:10px 0px 10px 20px;
	}

.corp tr:nth-child(odd) td{
	text-align:left;
	background-color:#ffffff;
	padding:10px 0px 10px 20px;
	}	
	

@media (max-width: 1000px) {
    .corp table {
		width:95%;
		margin:20px;
		border-top:none;
    }
 
    .corp  th,
    .corp  td {
		width:100;
        display: block;
    }
}



/*ページトップ↓*/

#pageTop{
	background:#7f7f7f;
	font-weight:bold;
	color:#FFF;
	font-size:2.2rem;
	padding:16px 23px 16px 23px;
	position:fixed;
	bottom:10px;
	right:5px;
	text-decoration:none;
	border-radius: 50px;
	}

#pageTop:hover{
	background:#ababab;
	text-decoration:none;
	}

.btn_top {
	text-align: center;
	cursor: pointer;
	}




/*フッター↓*/

address{
	font-style:normal;
	font-size:1.2rem;
	letter-spacing:1px;
	padding-top:12px;
	padding-bottom:12px;
	margin-top:40px;
	text-align:center;
	color:#ffffff;
	background-color:#008900;
	}
