﻿@charset "utf-8";

/* =======================================

	CommonElements

======================================= */

/*全ページ共通
--------------------------------------------------------------------------*/

body {
	font-size: 100%;
	line-height: 140%;
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	margin: 0px;
	font-weight: bolder;
	color: #000;
}
p {
	letter-spacing: 0.1em;
	font-size: 15px;
}
a { text-decoration:none;
	color: #000;
	-webkit-transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.3s;			/*同上*/
}
a:hover {
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
	color:#F90;
}
.clear {
	clear:both;
}

.center {
	text-align:center;
}
.left {
	float:left;
}
.right {
	float:right;
}
.clear {
	clear:both;
}
.pc {
	display:block;
}
.sp {
	display:none;
}

.space5 {
	height: 5px;
}
.space20 {
	height: 20px;
}
.space30 {
	height: 30px;
}
.space60 {
	height: 60px;
}




.s_font {
	font-size: 15px;
}
.orange {
	color:#F90;
}
.orange2 {
	color:#FFD400;
}
.yellow {
	color: #FF6;
}

.radius {
	border-radius: 10px;
}
.ff {
	font-family: 'Noto Sans JP', sans-serif;
}

.center {
	text-align: center;
}
.w60 {
	width: 60%;
}
.w55 {
	width: 55%;
}
.w50 {
	width: 50%;
}
.w45 {
	width: 45%;
}
.w40 {
	width: 40%;
}



/*--------動くボタン------------*/

.nobi_button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 255px;
    padding: 20px 10px 20px 20px;
    color: #000;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	font-size: 16px;
	letter-spacing:0.15em;
}

.nobi_button a:before, .nobi_button a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.nobi_button a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 0.9rem;
  border-top: solid 2px #F7AA0D;
  border-right: solid 2px #F7AA0D;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.nobi_button a:after {
  left: 0;
  background: #3E3A39;
  z-index: 1;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 3.3rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.nobi_button a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.nobi_button a:hover span {
  color: #F7AA0D;
}
.nobi_button a:hover:before {
  left: 1.5rem;
}
.nobi_button a:hover:after {
  right: 0;
  width: 100%;
}






/*トップ-----------------------------------------------------------------------*/
/*メニューブロックの設定*/

.header {
	height: 170px;
	width: 100%;
	position: relative;
}
.header h1 {
	font-size: 11px;
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	letter-spacing: 0em;
	position: absolute;
	top: 2%;
	right: 6%;
	text-align:right;
	font-weight: lighter;
}

.rogo {
	height: auto;
	width: 250px;
	z-index:9999;
	position: absolute;
	top:18%;
	left: 10%;
}








/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	position: absolute;
	top:32%;	/*全体に対して上から0pxの場所に配置*/
	right: 2%;
	width: 70%;		/*幅。上のロゴ画像のwidth（16%）とpadding（4%）を合計した数字が100%を超えないように。*/
	z-index: 9999;
	height: 100px;
}
/*メニュー１個ごとの設定*/
#menubar li {
	float: left;
	margin-left: 5%;
	list-style-type: none;
}
#menubar li:last-child {
	margin-right: 0%;
}
#menubar li a {
	text-decoration: none;
	display: block;
	text-align: center;	/*文字をセンタリング*/
	font-weight: bolder;		/*太字にする設定。標準がいいならこの行削除。*/
	font-size: 15px;
	letter-spacing: 0em;	/*文字間隔を少し広めにとる設定。標準がいいならこの行削除。*/
	color: #000;
	border-bottom: none;
	position: relative;
}
/*マウスオン時と、現在表示中(current)メニューの設定*/
#menubar li a:hover,
#menubar li.current a {
	color:#F90;
}

/*ホバーエフェクト*/
#menubar li a::after {
  /*アンダーラインのスタイル*/
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #F90;
  bottom: -15px;
  left: 0;
  /*横方向0で非表示にする*/
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  /*中央を基点にアニメーション*/
  -webkit-transform-origin: center top;
  transform-origin: center top;
 /*アニメーションの速度設定*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#menubar li a:hover::after {
  /*横方向等倍まで拡大*/
  transform: scale(1, 1);
}




/*-------メインビジュアル-------*/

.mainview {
	position: relative;
	width:100%;
	height: 800px;
}
.e {
	position:absolute;
	width: 57%;
	top: -3%;
	right:0%;
}


h1 {
	font-size: 42px;
	text-align: left;
	line-height: 1.5em;
	letter-spacing: 0.15em;
	z-index: 9999;
	font-family: 'Noto Sans JP', sans-serif;
}

.no1 {
	position:absolute;
	left: 0;
	bottom: 5%;
	width:670px;
	font-size:13px;
	line-height:1.4em;
	font-weight: lighter;
}
.no1 img {
	width:400px;
}

.rogogray {
	position: absolute;
	bottom: 5%;
	right:8%;
	width: 400px;
}

.fuchi {
  text-shadow:1px 1px 0px #000, -1px -1px 0px #000,
           -1px 1px 0px #000,  1px -1px 0px #000,
            1px 0px 0px #000, -1px -0px 0px #000,
            0px 1px 0px #000,  0px -1px 0px #000;
}
.copy {
	position: absolute;
	z-index:9999;
	width: 850px;
	top:5%;
	left:10%;
}

.eigocopy2 {
	position: absolute;
	z-index:9999;
	width: 50%;
	bottom: 13%;
	right:0;
}
.kokode {
	position:absolute;
	z-index:9999;
	bottom: 0%;
	right:13%;
	width:190px;
	height:190px;
}




.cate {
	width: 400px;
	height:150px;
	margin: 0 auto;
	font-size: 28px;
	color: #F90;
	background-image:url(../img/3sen.png);
	background-size: 60px;
	background-position:bottom center;
	background-repeat: no-repeat;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 30px;
	padding-top: 0px;
	line-height: 1.5em;
}
.cate span {
	font-size: 18px;
	color:#000;
	font-family:"ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	font-weight: bold;
}



/*コンテンツ
-----------------------------------------------------------------------*/
.eigo {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 19px;
	letter-spacing:0.1em;
}

.contents {
	height: auto;
	width: 88%;
	margin: 0px auto;
	padding:10px 4%;
}


.con_in {
	height: auto;
	width: 80%;
	margin: 0px auto;
	padding:10px 4%;
}





.contents p, .con_in p {
	font-size: 16px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.7em;
	margin: 0;
	padding:0;
}

h2 {
	font-size: 36px;
	letter-spacing:0.1em;
	font-weight: bolder;
	font-family: 'Noto Sans JP', sans-serif;
	padding-bottom: 10px;
	margin-bottom: 20px;
	line-height: 1.6em;
}




h3 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	letter-spacing:0.1em;
	font-weight: normal;
	line-height: 1.6em;
}


h4 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	letter-spacing:0.1em;
	font-weight: bolder;
	padding-bottom: 10px;
	line-height: 1.4em;
	margin:30px 0 15px 0;
	padding:0;
}

h5 {
	font-size: 18px;
	letter-spacing:0em;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 2em;
	letter-spacing:0.3em;
}

h6 {
	font-size: 17px;
	letter-spacing:0em;
	font-weight: normal;
	line-height: 2em;
}

.midashi {
	padding: 0.5em 0.5em;/*上下の余白*/
    border-top: solid 2px #000;/*上線*/
    border-bottom: solid 2px #000;/*下線*/
}
.midashi2 {
	background-color:#F90;
	padding: 0.3em 1.3em;/*上下の余白*/
	color:#FFF;
	font-size: 32px;
}
.midashi3 {
  position: relative;
  display: inline-block;
  padding: 0 45px;
  font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	letter-spacing:0.1em;
	font-weight: normal;
	line-height: 1.6em;
}
.midashi3:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.midashi3:after {
	content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.midashi3:before {
  left:0;
}
.midashi3:after {
  right: 0;
}


.sen_right {
	display:flex; align-items:center;
}

.sen_right:after {
	margin-left:15px;
	border-top:1px solid #000;
	content:"";
	flex-grow:1;
}




.pa_top {
	padding-top: 50px;
}
.pa_bottom {
	padding-bottom: 60px;
}




/*-------導入でよく耳にするお悩みの声-------*/

.grayback {
	background-color: #EDEDED;
	width: 100%;
	height: auto;
	padding-bottom: 12%;
	padding-top: 3%;
	position: relative;
	margin-top: 50px;
}

.nayami {
	position:absolute;
	top:3%;
	right:-9%;
	width:140px;
	height:140px;
}



iframe {
	width: 100%;
	padding-top: 56.25%; 
}

.fukidashi {
	position:relative;
    width:100%;
    height: auto;
    background:#FFF;
    padding: 1px 0;
    text-align:center;
    font-size:30px;
	margin: 0 auto;
}
.fukidashi:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(255, 255, 255, 0);
    border-top-width:29px;
    border-bottom-width:29px;
    border-left-width:17px;
    border-right-width:17px;
    margin-left: -17px;
    border-top-color:#FFF;
    top:100%;
    left:50%;
}





/*-------------スムーズに解決----------------*/

.service_orange {
	background-color:#FFD400;
	width: 100%;
	height: auto;
	padding-bottom: 0;
	padding-top: 4%;
	position:relative;
	margin-top: 0px;
}

.service_white {
	width:88%;
	margin: 0 auto;
	background-color:#FFF;
	padding: 3% 4% 2% 4%;
	border-radius: 15px 15px 0px 0px;
}


.service_white p {
	font-size: 16px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.7em;
	margin: 0;
	padding:0;
}
.service_back2color {
	background: linear-gradient(180deg, #F7AA0D 0%, #F7AA0D 55%, #3E3A39 55%, #3E3A39 100%);
	width: 100%;
	height: auto;
	padding-bottom: 4%;
	padding-top: 5%;
	position: relative;
	margin-top: 0px;
}
.offer h3,.offer h2,.offer p {
	color:#FFF;
}
.offer h3 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
	letter-spacing:0.1em;
	font-weight: normal;
	line-height: 0;
	padding-bottom:0;
	margin-bottom:0;
}
.offer h2 {
	font-size: 41px;
	letter-spacing:0.1em;
	font-weight: bolder;
	font-family: 'Noto Sans JP', sans-serif;
	padding-top:0;
	padding-bottom: 10px;
	margin-top:20px;
	margin-bottom: 20px;
	line-height: 1.6em;
}

/*-------オファー　テキスト矢印リンク-------*/	

.button {
  /*背景色と同じ枠色を追加*/
  padding: 20px 50px;
  border-radius: 50px;
  width:200px;
  font-size:18px;
  background-color: #FAEE00;
  z-index:1;
}
.button:hover{
  background-color: #F90;
  color: #FFF;
}


/*-------３つのサービス紹介　横並びボックス-------*/
.flex_box {
	padding: 5px;
	display: flex;
}
.flex_item {
	padding: 20px 15px 25px 20px;
    margin:  15px;              /* 外側の余白 */
    border-radius:  10px;        /* 角丸指定 */
	background-color: #FFF; /* 背景色指定 */
	width: 90%;
	box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.22);
}
.flex_item p {
    font-size: 16px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.6em;
	margin: 20px 0 0 0;
	padding:15px  0 0 0;
	border-top: dashed 1px #333;
}

.con_90 {
	width: 90%;
	margin: 0 auto;
}

	
/*-------３つのサービス紹介　画像のホーバー-------*/

figure {
  width: 95%;
  height: auto;
  margin: 10px;
  overflow: hidden;
  position: relative;
  margin:0 auto;
}

figure img {
  width: 100%;
  height: 100%;
  transition: .4s;
}

figure::after {
  content: 'もっと詳しく知る';
  font-size: 16px;
  letter-spacing: .2em;
  text-align: center;
  padding-top: 28%;
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0,0,0,.4);
  transition: .8s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

a:hover figure::after {
  opacity: 1;
}

a:hover figure img {
    transform: scale(1.1);
}	
	
/*-------３つのサービス紹介　テキスト矢印リンク-------*/	

.motto {
    padding: 0 ;
    margin: 0;
    position: relative;
	text-align:left;
}

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

.motto a {
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

.bg {
    background: var(--link_color);
    color: #000;
    padding: 0 4em 0 0;
    position: relative;
	font-size:15px;
}

.bg::before,
.bg::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}

.bg::before {
    width: 6px;
    height: 6px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-top: 2px solid #F90;
    border-right: 2px solid #F90;
}

.bg::after {
    width: 24px;
    height: 2px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #F90;
}

.bg:hover::before {
    right: 12px;
}

.bg:hover::after {
    right: 12px;
    width: 32px;
}










/*----------------実績　園紹介----------------*/


.works_con {
	width: 100%;
	padding:7% 0;
	margin: 1% auto 0 auto;

}
.works_con p {
    font-size: 16px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.6em;
	margin: 0;
	padding:0;
}
.works {
	width: 84%;
	height: 380px;
	border: solid 1px #000;
	position: relative;
	padding: 3%;
	margin: 0 auto;
}










/*NEWSお知らせエリア
-------------------------------------------------------------------*/
.backsen {
	background: repeating-linear-gradient(0deg, #EEE, #EEE 1px, #fff 1px, #fff 10px);
	width: 100%;
	height: auto;
	padding: 8% 0 4% 0;
	margin-bottom:0;
}
.pickup {
	position:absolute;
	top: -3%;
	left: 8%;
	width: 200px;
}
.pickup_text {
	position:absolute;
	top:0%;
	right: 2%;
	width: 600px;
	height: 350px;	
}
.pickup_eigo {
	position:absolute;
	top:-3%;
	right:7%;
	width:300px;
}
.backsen p {
	font-size: 15px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.6em;
	margin: 0;
	padding:0;
}




/*------下部にある想い-------*/
.orangeback_dark {
	background-color:#F7AA0D;
	width: 100%;
	height: 400px;
	padding-bottom: 5%;
	padding-top: 4%;
	position:relative;
	margin-top: 0;
	background-image: url("../img/last.jpg");
	background-size:contain;
	background-position:left;
	background-repeat: no-repeat;
}
.e2 {
	position:absolute;
	top: -90%;
	right:0;
	width: 560px;
}
.omoi {
	position:absolute;
	top: 20%;
	left: 52%;
	width:590px;
	height: auto;
}







/*フッター
-------------------------------------------------------------------------*/


.footer a { text-decoration:none;
	color: #000;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
.footer a:hover {
	opacity: 0.5;		/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

.footer {
	margin-top: 0px;
	height: auto;
	width: 100%;
	font-size: 14px;
	background-color: #dcdcdc;
	line-height: 1.5em;
	padding: 10px  0 0 0;
}
.copyright {
	text-align:center;
	padding: 40px 0 20px 0;
}

.footer ul {
	padding:0;
	margin:30px 0;
}
.footer ul li {
	list-style-type: none;
	font-size: 14px;
	margin: 10px 0px 20px 0px;
	width: 250px;
	padding: 0 0 10px 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #696969;
}





#page-top {
    position: fixed;
    bottom: 20px;
    right: 25px;
    font-size: 100%;
}
#page-top img{
	width: 100%;
}
#page-top a {
	text-decoration: none;
	color: #fff;
	width: 70px;
	text-align: center;
	display: block;
	border-radius: 5px;
	height: 75px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
#page-top a:hover {
	text-decoration: none;
}




/*-----------------サブページ-----------------------*/
.point {
	font-size: 26px;
	color:#F90;
	text-align: left;
	line-height: 1em;
	letter-spacing: 0em;
	font-family: 'Noto Sans JP', sans-serif;
	padding-top: 20px;
}

/*タイトル付き（ラベルボックス）*/
.waku {
margin: 2em auto; /* ボックスの余白 */
background-color:#fff; /* ボックス背景色 */
padding:2em; /* ボックス内側余白 */
position:relative; /* 配置(ここを基準に) */
border: 3px solid #F90;	/* ボックスの線 (太さ　種類　色)*/
font-size: 20px;
font-weight: bolder;
line-height: 1.8em;
}
.waku .waku-title {
background-color:#fff; /* タイトル背景色 */
font-size: 22px;
font-weight: bolder;
color: #F90; /* タイトル文字色 */
padding: 0 25px;/*タイトルの余白*/
line-height: 1.4em;/*タイトルの行の高さ*/
position:absolute;	/* 配置(ここを動かす) */
top: -18px; /*上から（-5px）移動*/
left: 26px; /*左から(20px)移動*/
}



/*お問い合わせ申し込みボタン*/

a.btn {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 60%;
	margin:  2% auto;
	padding: 2rem 3rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
	font-weight: bold;
	background-image: linear-gradient(to top, rgba(245, 165, 97, 1), rgba(254, 220, 64, 1));
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.3s;
	line-height:1.5em;
}
a.btn:hover {
	color: #fff;
	opacity: 0.5;
}


.sub_top {
	width:100%;
	height: 280px;
	position:relative;
	margin-top: 3%;
}

.sub_top h1 {
	position:absolute;
	top: 20%;
	left: 0;
	font-size: 36px;
	letter-spacing:0.1em;
	font-weight: bolder;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0 25px 5px 25px;
	margin-bottom: 20px;
	line-height: 1.6em;
	border-left: solid 110px #FFD400;
	background-color:#FFF;
	display: inline-block;
}
.sub_img {
	width:100%;
	position:absolute;
	top:0;
	right:0;
}

.pankuzu {
	font-size: 14px;
	width:79%;
	margin:0 auto;
}
.pankuzu a {
	border-bottom:solid 1px #000;
}
.pankuzu a:hover  {
	border-bottom:solid 1px #F90;
}




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



.con_90 {
	height: auto;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0;
	margin-bottom: 0;
}



}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){


.pc {
	display:none;
}
.sp {
	display:block;
}




/*ヘッダー
---------------------------------------------------------------------------*/
img {
	padding:0;
	margin:0;
}
.header {
	height: 60px;
	width: 100%;
	position: relative;
}


.rogo {
	height: auto;
	width: 220px;
	z-index: 9999;
	position: absolute;
	top: 15%;
	left: 4%;
}

.header h1 {
	display: none;
}

/*-------メインビジュアル-------*/

.mainview {
	position: relative;
	width:100%;
	height: 800px;
}
.e {
	position:absolute;
	width: 95%;
	top: 0%;
	right:0%;
	z-index:-9999;
}


h1 {
	font-size: 26px;
	text-align: left;
	line-height: 1.5em;
	letter-spacing: 0.15em;
	z-index: 9999;
	font-family: 'Noto Sans JP', sans-serif;
}

.no1 {
	position:absolute;
	left: 0;
	bottom: 5%;
	width:670px;
	font-size:13px;
	line-height:1.4em;
	font-weight: lighter;
}
.no1 img {
	width:400px;
}

.rogogray {
	position: absolute;
	bottom: 5%;
	right:8%;
	width: 400px;
}

.fuchi {
  text-shadow:1px 1px 0px #000, -1px -1px 0px #000,
           -1px 1px 0px #000,  1px -1px 0px #000,
            1px 0px 0px #000, -1px -0px 0px #000,
            0px 1px 0px #000,  0px -1px 0px #000;
}
.copy {
	position: absolute;
	z-index:9999;
	width: 95%;
	top:45%;
	left:5%;
}


.s_font {
	font-size: 15px;
}



h2 {
	font-size: 23px;
	letter-spacing:0.1em;
	font-weight: lighter;
	font-family: 'Noto Sans JP', sans-serif;
	padding-bottom: 10px;
	margin-bottom: 10px;
	position: relative;
}




h3 {
	font-size: 19px;
	letter-spacing:0.1em;
	font-weight: lighter;
	padding-bottom: 10px;
	margin: 10px 0;
	line-height: 1.7em;
}


h4 {
	font-size: 16px;
	letter-spacing:0.1em;
	font-weight: lighter;
	padding-bottom: 10px;
	line-height: 1.5em;
}

h5 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	letter-spacing:0em;
	font-weight: bolder;
	line-height: 1.6em;
	padding:0;
	margin:0;
}
h6 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	letter-spacing:0em;
	font-weight: bolder;
	line-height: 1.6em;
	padding:0;
	margin:0;
}

.midashi {
	padding: 0.8em 0;/*上下の余白*/
    border-top: solid 1px #000;/*上線*/
    border-bottom: solid 1px #000;/*下線*/
}

.midashi2 {
	background-color:#F90;
	padding: 0.7em 0;/*上下の余白*/
	color:#FFF;
	font-size: 19px;
	letter-spacing: 0.6em;
}

.midashi3 {
  position: relative;
  display: inline-block;
  padding: 0 45px;
  font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	letter-spacing:0.2em;
	font-weight: normal;
	line-height: 1.5em;
}
.midashi3:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(70deg);
  transform: rotate(70deg);
}
.midashi3:after {
	content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-70deg);
  transform: rotate(-70deg);
}

.midashi3:before {
  left:0;
}
.midashi3:after {
  right: 0;
}








/*コンテンツ
---------------------------------------------------------------------------*/


.grayback {
	background-color: #EDEDED;
	width: 100%;
	height: auto;
	padding-bottom: 8%;
	padding-top: 2%;
	position: relative;
	margin-top: 0px;
}

.nayami {
	position:absolute;
	top:50%;
	right:0%;
	width:80px;
}



iframe {
	width: 100%;
	padding-top: 10px;
}





.contents {
	height: auto;
	width: 94%;
	margin: 0px auto;
	border-radius: 0px;
	color:#000;
	padding:20px 3%;
}
.contents p {
	font-size: 16px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.7em;
}

.con_in {
	height: auto;
	width: 100%;
	margin: 10px auto;
	border-radius: 0px;
	color:#222;
	padding:20px 0%;
}
.obi {
	position:absolute;
	width:100%;
	height: 6px;
	background-color: #FFD400;
	left: 0%;
	top: 100%;
	z-index:-9999;
}





/*-------３つのサービス紹介-------*/

.service_orange {
	background-color:#FFD400;
	width: 100%;
	height: auto;
	padding-bottom: 0;
	padding-top: 4%;
	position:relative;
	margin-top: 0px;
}

.service_white {
	width:92%;
	margin: 0 auto;
	background-color:#FFF;
	padding: 3% 4% 2% 4%;
	border-radius: 10px 10px 0px 0px;
}


.service_back2color {
	background: linear-gradient(180deg, #F7AA0D 0%, #F7AA0D 65%, #3E3A39 65%, #3E3A39 100%);
	width: 100%;
	height: auto;
	padding-bottom: 14%;
	padding-top: 5%;
	position: relative;
	margin-top: 0px;
}
.offer h3,.offer h2,.offer p {
	color:#FFF;
}
.offer h3 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	letter-spacing:0.1em;
	font-weight: normal;
	line-height: 1.6em;
	padding-bottom:0;
	margin-bottom:0;
}
.offer h2 {
	font-size: 33px;
	letter-spacing:0.1em;
	font-weight: bolder;
	font-family: 'Noto Sans JP', sans-serif;
	padding-top:0;
	padding-bottom: 10px;
	margin-top:8px;
	margin-bottom: 15px;
	line-height: 1.5em;
}

/*-------オファー　テキスト矢印リンク-------*/	

.button {
  /*背景色と同じ枠色を追加*/
  padding: 15px 45px;
  border-radius: 50px;
  width:200px;
  font-size:18px;
  background-color: #FAEE00;
  z-index:1;
}
.button:hover{
  background-color: #F90;
  color: #FFF;
}


/*-------３つのサービス紹介　横並びボックス-------*/
.flex_box {
	padding: 5px;
	display: block;
}
.flex_item {
	padding: 5%;
    margin: 0 0 15px 0;              /* 外側の余白 */
    border-radius:  10px;        /* 角丸指定 */
	background-color: #FFF; /* 背景色指定 */
	width: 100%;
	box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.22);
}
.flex_item h4 {
	font-size: 19px;
	letter-spacing:0.1em;
	font-weight: lighter;
	padding-bottom: 0;
	margin: 10px 0 0 0;
	line-height: 1.7em;
}
.flex_item p {
    font-size: 15px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.3em;
	margin: 15px 0 0 0;
	padding:15px  0 0 0;
	border-top: dashed 1px #333;
}

/*-------３つのサービス紹介　画像のホーバー-------*/

figure {
  width: 100%;
  height: auto;
  margin: 10px;
  overflow: hidden;
  position: relative;
  margin:0 auto;
}

figure img {
  width: 100%;
  height: 100%;
  transition: .4s;
}

figure::after {
  content: 'もっと詳しく知る';
  font-size: 16px;
  letter-spacing: .2em;
  text-align: center;
  padding-top: 28%;
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0,0,0,.4);
  transition: .8s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

a:hover figure::after {
  opacity: 1;
}

a:hover figure img {
    transform: scale(1.1);
}	






/*----------------実績　園紹介----------------*/


.works_con {
	width: 100%;
	padding:10% 0;
	margin: 1% auto 0 auto;

}
.works_con p {
    font-size: 16px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.6em;
	margin: 0;
	padding:0;
}
.works {
	width: 92%;
	height:  610px;
	border: solid 1px #000;
	position: relative;
	padding: 3% 4%;
	margin: 0 auto;
}



/*NEWSお知らせエリア
-------------------------------------------------------------------*/
.backsen {
	background: repeating-linear-gradient(0deg, #EEE, #EEE 1px, #fff 1px, #fff 10px);
	width: 100%;
	height: auto;
	padding: 4% 0;
	margin-bottom:0;
}
.pickup {
	position:absolute;
	top: -1%;
	left: 4%;
	width: 120px;
}

.pickup_eigo {
	position:absolute;
	top:1%;
	right:4%;
	width:180px;
}
.pickup_text {
	position:absolute;
	top:13%;
	right: 5%;
	width: 200px;
	height: 400px;
	font-size:14px;
	text-align:right;
	line-height: 1.4em;
}
.backsen h4 {
	margin-bottom:10px;
}
.backsen p {
	font-size: 15px;
	font-weight: lighter;
	letter-spacing: 0.05em;
	line-height: 1.3em;
	margin: 0;
	padding:0;
}



/*------下部にある想い-------*/
.orangeback_dark {
	background-color:#F7AA0D;
	width: 100%;
	height: auto;
	padding-bottom: 5%;
	padding-top: 4%;
	position:relative;
	margin-top: 0;
	background-image: none;
}

.omoi {
	position:absolute;
	top: 20%;
	left: 52%;
	width:590px;
	height: auto;
}




/*フッター
-------------------------------------------------------------------------*/


.footer {
	margin-top: 0px;
	height: auto;
	width: 100%;
	font-size: 13px;
	background-color: #dcdcdc;
	line-height: 1.5em;
	padding: 0;
}
.copyright {
	text-align:center;
	padding: 0 0 6px 0;
	font-size:11px;
}

.footer ul {
	padding:0;
	margin:20px 0 0 0;
}
.footer ul li {
	list-style-type: none;
	font-size: 13px;
	margin: 6px 0 0 0;
	width: 100%;
	padding: 0 0 6px 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #808080;
}


#page-top {
    position: fixed;
    bottom: 80px;
    right: 0px;
    font-size: 100%;
}
#page-top img{
	width: 100%;
}
#page-top a {
	text-decoration: none;
	color: #fff;
	width: 60px;
	text-align: center;
	display: block;
	border-radius: 5px;
	height: 65px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
#page-top a:hover {
	text-decoration: none;
}




.mainview {
	position: relative;
	width:100%;
	height: 470px;
}

.copyright {
	text-align:center;
	padding: 0 0 20px 0;
}


.point {
	font-size: 35px;
	color:#F90;
	text-align: left;
	line-height: 1em;
	letter-spacing: 0em;
	font-family: 'Noto Sans JP', sans-serif;
	padding-top: 20px;
}



/*タイトル付き（ラベルボックス）*/
.waku {
margin: 2em auto; /* ボックスの余白 */
background-color:#fff; /* ボックス背景色 */
padding:1em; /* ボックス内側余白 */
position:relative; /* 配置(ここを基準に) */
border: 3px solid #F90;	/* ボックスの線 (太さ　種類　色)*/
font-family: 'Noto Sans JP', sans-serif;
font-size: 20px;
font-weight: bolder;
line-height: 1.8em;
color: #F90;
}
.waku .waku-title {
background-color:#fff; /* タイトル背景色 */
font-size: 22px;
font-weight: bolder;
color: #F90; /* タイトル文字色 */
padding: 0 25px;/*タイトルの余白*/
line-height: 1.4em;/*タイトルの行の高さ*/
position:absolute;	/* 配置(ここを動かす) */
top: -18px; /*上から（-5px）移動*/
left: 32%; /*左から(20px)移動*/
}



/*ボタン*/

a.btn {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 98%;
	margin:  7% auto;
	padding: 6% 0%;
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 19px;
	font-weight: bold;
	background-image: linear-gradient(to top, rgba(245, 165, 97, 1), rgba(254, 220, 64, 1));
	color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.3s;
	letter-spacing:0.6em;
}
a.btn:hover {
	color: #fff;
	opacity: 0.5;
}


/*--------動くボタン------------*/

.nobi_button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 255px;
    padding: 20px 10px 20px 20px;
    color: #000;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	font-size: 16px;
	letter-spacing:0.15em;
}

.nobi_button a:before, .nobi_button a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.nobi_button a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 0.9rem;
  border-top: solid 2px #F7AA0D;
  border-right: solid 2px #F7AA0D;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.nobi_button a:after {
  left: 0;
  background: #3E3A39;
  z-index: 1;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 3.3rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.nobi_button a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.nobi_button a:hover span {
  color: #F7AA0D;
}
.nobi_button a:hover:before {
  left: 1.5rem;
}
.nobi_button a:hover:after {
  right: 0;
  width: 100%;
}





/*-------------サブページ------------*/


.sub_top {
	width:100%;
	height: 260px;
	position:relative;
	margin-top: 12%;
}

.sub_top h1 {
	position:absolute;
	top: 8%;
	left: 0;
	font-size: 23px;
	letter-spacing:0.1em;
	font-weight: bolder;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0 15px 5px 15px;
	margin-bottom: 20px;
	line-height: 1.6em;
	border-left: solid 10px #FFD400;
	background-color:#FFF;
	display: inline-block;
}
.sub_img {
	width:100%;
	position:absolute;
	top:35%;
	right:0;
}
.sub_img img {
	width: 100%;
    height: 150px;
    object-fit: cover; /* この一行を追加するだけ！ */
	object-position: 100% 100%;
}

.pankuzu {
	font-size: 14px;
	width:88%;
	margin:0 auto;
}




}
