
@charset "utf-8";




/* =============================================================  Reset and Utility.css  */

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-style:normal;font-size: 100%;vertical-align: baseline;box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
input, textarea{margin: 0;padding: 0;outline: none;}
ol, ul{list-style:none;}
caption, th{text-align: left;}
img {vertical-align: middle; max-width:100%;}
*:focus {outline: none !important;}
table.table {border-collapse: separate;border-spacing: 0;}

.clearfix {min-height: 1px;}
.clearfix:after {content: "."; display: block;clear: both;height: 0;visibility: hidden;}
* html .clearfix {
    height: 1px;
    height: auto;
    overflow: hidden;
}
.both{clear:both;}

::selection {
    background:#ededed; /* Safari */
}

::-moz-selection {
    background:#ededed; /* Firefox */
}

/* =============================================================  HTML,Body,Anchor*/


html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	margin:0px auto 0px auto;
}




.pcOnly {
	display: block;
}


.spOnly {
	display: none;
}






html {
overflow-x: hidden;
overflow-y: scroll;
}



body{
	width: 100%;
	height: auto;
	margin:0px auto 0px auto;
	overflow:hidden;
}


*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}


/****************************************************************************************
/* リンク設定
****************************************************************************************/


figure a{color:#666666;text-decoration:none;}
figure a:hover{color:#4fa417;}
figure a:active, a:focus {outline:0;}


a{
text-decoration:none;
}
a:hover{
text-decoration:none;

}
a:active, a:focus {
outline:0;
text-decoration:none;
}

a { text-decoration: none; }

/******************************************************************************
/* フェードインアニメ用
******************************************************************************/

/*フェードインアニメ*/
/*左から右にフェードイン*/
.left-to-right {
	opacity: 0;
	transform: translateX(-150px);
	transition: all 1s;
}
.left-to-right.scrollin {
	opacity: 1;
	transform: translate(0);
	}

/*下から上にフェードイン*/
.down-to-top {
	opacity: 0;
	transform: translateY(100px);
	transition: all 1s;
}


.down-to-top.scrollin {
	opacity: 1;
	transform: translateY(0);
}

.down-to-top2 {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease 2s, transform 1s ease 2s; /* ここで遅延指定 */
}

.down-to-top2.scrollin {
  opacity: 1;
  transform: translateY(0);
}


/******************************************************************************
/* 文字設定用
******************************************************************************/

p.bold {
	display: inline-block;
	font-size: 100%;
	line-height: 1.5;
	font-weight: 700;
	color: #5472CD;
	margin-top: 0px;
	margin-bottom: 20px;
	padding-bottom: 10px;

}

p.bold_red {
	display: inline-block;
	font-size: 100%;
	line-height: 1.5;
	font-weight: 700;
	color: #AE2923;
	margin-top: 0px;
	margin-bottom: 20px;
	padding-bottom: 10px;

}


p.bold_red2 {
	display: inline-block;
	font-size: 100%;
	line-height: 1.5;
	font-weight: 700;
	color: #AE2923;
	margin-top: 0px;

}


/****************************************************************************************
/* ヘッダーメニュー設定
****************************************************************************************/



ul.header_menu {
	display: flex;
	width: 95%;
	justify-content: space-between;
	margin: 0 auto 0 auto;
}






ul.header_menu li {
list-style-type: none;
}

ul.header_menu li:last-child {
text-align: right;
}



.menu_area {
	position: absolute;
	width: 100%;
	top: 0px;
	right: 0px;
	z-index: 200;
	text-align: center;

}


.menu_area2 {
	position: absolute;
	width: 100%;
	top: 5px;
	right: 0px;
	z-index: 100;
	text-align: center;
}




.link_section li {
	display: block;
	margin-top: 4px;
	text-align: center;
	float: left;
	border-left:1px solid #ffffff;
	padding-top: 5px;
	padding-bottom: 5px;

}




.link_section li:last-child{
	float:left;
	text-align:center;
	border-right: 0px solid #ffffff;

}


.link_section li a {
	font-weight: 700;
	font-size: 85%;
	color: #ffffff;
	line-height:100%;
	padding-left: 15px;
	padding-right: 15px;
	text-shadow:1px 1px 10px #000000;
	letter-spacing: 1.5px;

}




.link_section {
	display: block;
	position: absolute;
	top: 17px;
	right: 350px;
	opacity: 0;
	animation-name: anime4;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 0s;
	animation-fill-mode: forwards;
	box-sizing: border-box;
	z-index: 100;
}


@keyframes anime4 {
  0% {
    transform: translateY(-64px);
  }

  100% {
    transform: translateY(0);
  opacity: 1;

  }
}


.link_section a{
	position: relative;
	display: inline-block;
	transition: .3s;
	font-size: 90%;
	color: #ffffff;
	margin-bottom: 5px;
	letter-spacing: 1px;
}

.link_section a::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: .3s;
  transform: translateX(-50%);
}

.link_section a:hover::after{
	width: 75%;

}

.link_section span.on{
	border-bottom: 1px solid #ffffff;
}






.link_section2 li {
	display: block;
	margin-top: -1px;
	text-align: center;
	float: left;
	border-left:1px solid #ffffff;
	padding-top: 5px;
	padding-bottom: 5px;

}




.link_section2 li:last-child{
	float:left;
	text-align:center;
	border-right: 0px solid #ffffff;

}


.link_section2 li a {
	font-weight: 700;
	font-size: 85%;
	color: #ffffff;
	line-height:100%;
	padding-left: 15px;
	padding-right: 15px;
	text-shadow:1px 1px 10px #000000;
	letter-spacing: 1.5px;

}




.link_section2 {
	display: block;
	position: absolute;
	top: 20px;
	right: 350px;
	opacity: 0;
	animation-name: anime4;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 0s;
	animation-fill-mode: forwards;
	box-sizing: border-box;
}


@keyframes anime4 {
  0% {
    transform: translateY(-64px);
  }

  100% {
    transform: translateY(0);
  opacity: 1;

  }
}


.link_section2 a{
	position: relative;
	display: inline-block;
	transition: .3s;
	font-size: 90%;
	color: #ffffff;
	margin-bottom: 5px;
	letter-spacing: 1px;
}

.link_section2 a::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: .3s;
  transform: translateX(-50%);
}

.link_section2 a:hover::after{
	width: 75%;

}

.link_section2 span.on{
	border-bottom: 1px solid #ffffff;
}



.menu_box {
	position: absolute;
	top: 1px;
	right: 0;
	display: block;
	width: 90px;
	height: 80px;
	margin: 0px auto 0px auto;
	background-color: #3C8177;
	font-weight: 700;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
	font-size: 75%;
}

.menu_box img {
	display: block;
	margin: 20px auto 5px auto;
	width: 50%;
	height: auto;
}


.menu_box {
	opacity: 0;
	animation-name: menu_box;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 0s;
	animation-fill-mode: forwards;
	box-sizing: border-box;
}


@keyframes menu_box {
  0% {
    transform: translateY(-64px);
  }

  100% {
    transform: translateY(0);
  opacity: 1;

  }
}




.menu_box2 {
	position: absolute;
	top: 1px;
	right: 90px;
	display: block;
	width: 120px;
	height: 80px;
	margin: 0px auto 0px auto;
	background-color: #D5920B;
	font-weight: 700;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
	font-size: 80%;
}




.menu_box2 img {
	display: block;
	margin: 20px auto 5px auto;
	width: 50%;
	height: auto;
}




.menu_box2 {

	opacity: 0;
	animation-name: menu_box2;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 0s;
	animation-fill-mode: forwards;
	box-sizing: border-box;
}


@keyframes menu_box2 {
  0% {
    transform: translateY(-64px);
  }

  100% {
    transform: translateY(0);
  opacity: 1;

  }
}












.menu_box3 {
	position: absolute;
	top: 0px;
	right: 0;
	display: block;
	width: 100px;
	height: 70px;
	margin: 0px auto 0px auto;
	background-color: #3C8177;
	font-weight: 700;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
	font-size: 75%;
	transition : all 0.5s ease 0s;
}

.menu_box3 img {
	display: block;
	margin: 15px auto 5px auto;
	width: auto;
	height: 25px;
}

.menu_box3:hover {
	background-color: #75B85E;
}



.menu_box4 {
	position: absolute;
	top: 0px;
	right: 100px;
	display: block;
	width: 125px;
	height: 70.3px;
	margin: 0px auto 0px auto;
	background-color: #D5920B;
	font-weight: 700;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
	font-size: 80%;
	transition : all 0.5s ease 0s;
}

.menu_box4 img {
	display: block;
	margin: 15px auto 5px auto;
	width: auto;
	height: 25px;
}

.menu_box4:hover {
	background-color: #E3B65C;
}



.menu_box5 {
	position: absolute;
	top: 0px;
	right: 225px;
	display: block;
	width: 125px;
	height: 70.3px;
	margin: 0px auto 0px auto;
	background-color: #7587F9;
	font-weight: 700;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
	font-size: 80%;
	transition : all 0.5s ease 0s;

}

.menu_box5 img {
	display: block;
	margin: 15px auto 5px auto;
	width: auto;
	height: 25px;
}


.menu_box5:hover {
	background-color: #A3AFFB;
}













.link_section3 {
	display: block;
	position: absolute;
	top: 20px;
	right: 180px;
	opacity: 0;
	animation-name: anime4;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 1.0s;
	animation-fill-mode: forwards;
	margin-top: 20px;
	margin-right: 0px;
}


@keyframes anime4 {
  0% {
    transform: translateY(-64px);
  }

  100% {
    transform: translateY(0);
  opacity: 1;

  }
}




.link_section3 li {
	text-align: center;
	float: left;

}



.link_section3 li a {
	font-weight: 900;
	font-size: 90%;
	color: #555555;
	line-height:100%;
	padding-left: 10px;


}



/****************************************************************************************
/* ヘッダーメニュー設定
****************************************************************************************/


.Header{

position: fixed;
top: 0px;
left: 0px;
z-index: 300;
transition: all 0.4s ease-in-out;

}

.Header.isSmall{
position: fixed;
padding-top: 0px;

z-index: 300;

transition: all 0.4s ease-in-out;
height: 70px;

}


.Header-Logo{

width: 300px;
padding-top: 10px;
padding-left: 5px;
display: block;
transition: all 0.4s ease;
filter: drop-shadow(1px 1px 10px #000000);


}
.Header-Logo.isSmall{
padding-top: 17px;
padding-left: 5px;
width: 200px!important;

}
img{
width: 100%;
height: auto;
display: block;

}





#fixed-header {
	position: fixed;
	top: -158px;  
	width: 100%;
	height: 75px;
	box-sizing: border-box;
	transition: .8s;
	z-index: 100;
	background: rgba(60,129,119,0.7);
}
#fixed-header.is-show {
  top: -6px;

}



/****************************************************************************************
/* スライドショー
****************************************************************************************/

#main_image_area {
	position: relative;
	margin: 0 auto 0 auto;
	width: 100%;
	height: 100vh; /* 全画面表示 */
	z-index: 1;
	background-image: url(../images/background01.png?ver-20240901);
	background-repeat:  repeat;
}


#viewer {
	position: relative;
	margin: -1px auto 0 auto;
	width: 100%;
	height: 100vh; /* 全画面表示 */
	z-index: 1;
}

#viewer > img {
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index:-2;
	object-fit: cover;
	object-position: 50% 0%;

}



.top_bottom {
	position: absolute; /* if position is not set, the script will set it to 'relative'. */
	margin: 0 auto 0 auto;
	z-index: 2; /* if z-index is not set, the script will set it to '2'. */
	width: 100%;
	bottom: -10%;
	left: 0;
	overflow: hidden;

}


.top_bottom img {
	width: 100%;
	height:auto;
}

.top_copy {
	position: absolute; /* if position is not set, the script will set it to 'relative'. */
	z-index: 10; /* if z-index is not set, the script will set it to '2'. */
	width: 100%;
	top: 28vh;
	left: 0;
	text-align: center;
}


.top_copy img {
	width: 100%;
	height:auto;
}





.one_image {
animation-name:one_image;
animation-duration:0.5s;
animation-timing-function: ease-in-out;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.one_image01{
animation-delay: 0.2s;
}

.one_image02{
animation-delay: 0.4s;
}




/* アニメーションスタートの遅延時間を決めるCSS*/

/******************************************************************************
/* アニメーション用
******************************************************************************/


#cut_in_copys {
	opacity: 0;
	animation-name: cut_in_copys;
	animation-duration: 1.0s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	z-index: 100!important;
	overflow: hidden;
	filter: drop-shadow(1px 1px 5px #000000);

}
 @keyframes cut_in_copys {
 0% {
 opacity: 0;
	transform: translateY(50px);

}

 100% {
 opacity: 1;
	transform: translateY(0);
}
} 



#cut_in_copys2 {
	opacity: 0;
	animation-name: cut_in_copys2;
	animation-duration: 1.0s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 1.0s;
	animation-fill-mode: forwards;
	z-index: 100!important;
	overflow: hidden;
	filter: drop-shadow(1px 1px 5px #000000);

}
 @keyframes cut_in_copys2 {
 0% {
 opacity: 0;
	transform: translateY(50px);

}

 100% {
 opacity: 1;
	transform: translateY(0);
}
} 



#cut_in_copys3 {
	opacity: 0;
	animation-name: cut_in_copys3;
	animation-duration: 1.0s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 1.2s;
	animation-fill-mode: forwards;
	z-index: 100;
	overflow: hidden;

}
 @keyframes cut_in_copys3 {
 0% {
 opacity: 0;
	transform: translateY(50px);

}

 100% {
 opacity: 1;
	transform: translateY(0);
}
} 



#cut_in_copys4 {
	opacity: 0;
	animation-name: cut_in_copys4;
	animation-duration: 1.0s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 1.4s;
	animation-fill-mode: forwards;
	z-index: 100;
	overflow: hidden;
	filter: drop-shadow(1px 1px 5px #000000);

}
 @keyframes cut_in_copys4 {
 0% {
 opacity: 0;
	transform: translateY(50px);

}

 100% {
 opacity: 1;
	transform: translateY(0);
}
} 


#cut_in_copys5 {
	opacity: 0;
	animation-name: cut_in_copys4;
	animation-duration: 1.0s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 1.9s;
	animation-fill-mode: forwards;
	z-index: 5!important;
	filter: drop-shadow(1px 1px 5px #000000);

}
 @keyframes cut_in_copys5 {
 0% {
 opacity: 0;
	transform: translateY(50px);

}

 100% {
 opacity: 1;
	transform: translateY(0);
}
} 




/******************************************************************************
/* 大阪アイコン用
******************************************************************************/

/* ▼ 中間レイヤー（ふわふわアイコン） */
.osaka_point {
	position: absolute;
	top: 190px;
	left: 5%;
	z-index: 5!important;
}

.osaka_point img {
    max-width: 150px;
    height: auto;
    animation: fuwafuwa 4s ease-in-out infinite alternate;
    transform: translateZ(0); /* stacking context が外に干渉しないように固定 */
}

/******************************************************************************
/* アニメーション
******************************************************************************/

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}



/******************************************************************************
/* トップページ募集バナー
*******************************************************************************/


.top_contents {
	width: 100%;
	position: relative;
	margin: -150px auto 0px auto;
	z-index: 1;
}



.top_contents_in {
	width: 90%;
	display: block;
	padding-top : 10px;
	padding-bottom : 10px;
	margin: 0px auto 0px auto;
	text-align: left;
	letter-spacing: 1.5px;
	line-height: 1.6;
	z-index: 1;

}


.recruit_box01 {
	position: relative;
	display: block;
	padding: 20px;
	margin: 2em 0;
	color: #FFF;
	background: #7587F9;
	border-bottom: solid 6px #4E5AA6;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
	border-radius: 9px;
	transition : all 0.5s ease 0s;

}


.recruit_box01:hover {
	background: #A3AFFB;

}


.recruit_box01 p {
	margin: 0; 
	padding: 0;
	text-decoration: none;
	color: #ffffff;
}



.recruit_box02 {
	position: relative;
	display: block;
	padding: 20px;
	margin: 2em 0;
	color: #FFF;
	background: #D5920B;
	border-bottom: solid 6px #8E6107;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
	border-radius: 9px;
	transition : all 0.5s ease 0s;
}

.recruit_box02:hover {
	background: #E3B65C;

}






.recruit_box02 p {
	margin: 0; 
	padding: 0;
	text-decoration: none;
	color: #ffffff;
}


ul.recruit_box_area {
	position: relative;
	padding-left: 0px;
	display: flex;
	width: 100%;
	justify-content: space-between;
}


ul.recruit_box_area li {
	position: relative;
	width: 48%;
}




ul.recruit_box_area_in {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 10px;
}


ul.recruit_box_area_in li {
	position: relative;
	width: 48%;
}


.recruit_box01_image {
	display: block;
	width: 100%;
	margin-top: -100px;

}



.recruit_box01_image2 {
	display: block;
	width: 100%;
	margin-top: -50px;
	margin-bottom: 10px;
}




.recruit_box_poyopoyo {
	position: absolute;
	display: block;
	width: 100px;
	top: -80px;
	right: -20px;
}




.recruit_box02_image {
	display: block;
	width: 100%;
	margin-top: -100px;

}


.recruit_box02_image2 {
	display: block;
	width: 100%;
	margin-top: -50px;
	margin-bottom: 10px;
}



/****************************************************************************************
/* 募集中設定
****************************************************************************************/



.poyooon {
animation: poyooon 1.3s linear 0s infinite alternate;
}
@keyframes poyooon {
0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }

30%  { transform: scale(1.1, 0.9) translate(0%, 2%); }

50%  { transform: scale(0.9, 1.1) translate(0%, -20%); }

70%  { transform: scale(1.1, 0.9) translate(0%, 2%); }
100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes poyooon {
0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }

30%  { transform: scale(1.1, 0.9) translate(0%, 2%); }

50%  { transform: scale(0.9, 1.1) translate(0%, -20%); }

70%  { transform: scale(1.1, 0.9) translate(0%, 2%); }
100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}



/****************************************************************************************
/* 詳細ボタン設定
****************************************************************************************/


.btn,
a.btn,
button.btn {
  font-size: 110%;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border {
  margin-bottom: 12px;
  padding: 0;

  -webkit-transition: all 0.3s;

  transition: all 0.3s;

  border-radius: 0;
}

a.btn-border span {
  position: relative;
  display: block;
  padding-left:30px;
  padding-right:30px;
  padding-top:10px;
  padding-bottom:10px;
  color: #000;
  border: 2px solid #000;
  border-radius: 0.5rem;
  background: #fff;
}

a.btn-border:before {
  position: absolute;
  bottom: -8px;
  left: 0;
  display: block;
  width: 100%;
  height: 14px;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #000;
  border-top: 1px solid #000;
  border-radius: 0 0 0.5rem 0.5rem;
  background-image: -webkit-repeating-linear-gradient(
    135deg,
    #000,
    #000 1px,
    transparent 2px,
    transparent 5px
  );
  background-image: repeating-linear-gradient(
    -45deg,
    #000,
    #000 1px,
    transparent 2px,
    transparent 5px
  );
  background-size: 7px 7px;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;
}

a.btn-border:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
}

a.btn-border:hover:before {
  bottom: -5px;
}

a.btn-border:active {
  -webkit-transform: translate(0, 7px);
  transform: translate(0, 7px);
}

a.btn-border:active:before {
  bottom: -1px;
}




.infor_button1 {
	width: 100%;
	display: block;
	margin-top: 0px;
	padding-bottom: 0px;
	text-align: center;
}





/******************************************************************************
/* 本文
*******************************************************************************/



.contents {
	width: 100%;
	position: relative;
	margin: -30px auto 0px auto;
	padding-top : 0px;
	padding-bottom : 0px;
	z-index: 1;

}

.contents2 {
	width: 100%;
	position: relative;
	margin: 0 auto 0px auto;
	padding-top : 0px;
	padding-bottom : 0px;
	background-image: url(../images/background01.png?ver-20240901);
	background-repeat:  repeat;
	z-index: 1;

}

.contents3 {
	width: 100%;
	position: relative;
	margin: 0 auto 0px auto;
	padding-top : 0px;
	padding-bottom : 0px;
	background-color: #ffffff;
	z-index: 1;

}






.contents_in {
	width: 90%;
	position: relative;
	padding-top : 10px;
	padding-bottom : 10px;
	margin: 0px auto 0px auto;
	text-align: left;
	letter-spacing: 1.5px;
	line-height: 1.6;
	z-index: 1;

}




@media screen and (min-width : 1200px){
.contents_in { font-size : 100%;}
}



@media screen and (max-width : 1199px){
.contents_in { font-size : 80%;}
}

@media screen and (max-width : 600px){
.contents_in { font-size : 70%;}
}


.contents_in01 {
	position: relative;
	width: 100%;
	margin: 0px auto 0px auto;
	text-align: left;
	letter-spacing: 1.5px;
	line-height: 1.6;
}



/******************************************************************************
/* 特徴01
*******************************************************************************/

.recruit_spec01 {
	position: relative;
	display: block;
	padding-top: 30px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 10px;
	font-weight: 700;
	margin: 2em 0;
	color: #555555;
	background: #F4F4F4;
	border-bottom: solid 6px #e4e4e4;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
	border-radius: 9px;
	transition : all 0.5s ease 0s;
}
p.spec01 {
	font-size: 130%;
	font-weight: 700;
}

p.spec02 {
	display: block;
	font-size: 130%;
	font-weight: 700;
	margin-bottom: 125px;
	color: #5A4FB2;

}


.inner_span {
	font-size: 130%;
	font-weight: 700;
	color: #5A4FB2;
	display: inline;
	background: linear-gradient(transparent 60%, yellow 30%);
}


p.spec03 {
	font-size: 130%;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 10px;
}




.comment_area01 {
	display: block;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 5px;

}



ul.spec_area01 {
	position: relative;
	padding-left: 0px;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

ul.spec_area01 li:first-child {
	position: relative;
	width: 22%;
}

ul.spec_area01 li:last-child {
	position: relative;
	width: 75%;
}


.recruit_box01_image3 {
	display: block;
	width: 100%;
	margin-top: -70px;
	margin-bottom: 10px;
}



/******************************************************************************
/* お知らせ
*******************************************************************************/


.news_area {
	width: 90%;
	margin : 20px auto 80px auto;
	text-align: left;
}



ul.news4 {
	position: relative;
	width:100%; 
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	z-index: 100;
	justify-content: space-between;
}

ul.news4 a {
	text-decoration: none;

}


ul.news4 li {
	letter-spacing:normal;
	display: block;
	width: 32%;
	vertical-align: top;
	text-align: center;
	margin-bottom: 30px;

}

ul.news4::after{
	content:"";
	display: block;
	width:32%;
}


/********************************************************************************************************
/* 記事一覧
*********************************************************************************************************/

ul.news5 {
   display: flex;
}

.news5 li{
	vertical-align: middle;
	position: relative;

}



.news5 li:nth-child(1){
	margin-top: 1px;
	font-size: 90%;
	font-weight: 700;
	color: #3B8177;
	white-space: nowrap;
}

.news5 li:nth-child(2){
	margin-left: 10px;
	font-weight: 700;
	white-space: nowrap;
	align-items: left;
	justify-content: left;

}





/********************************************************************************************************
/* 記事一覧
*********************************************************************************************************/

ul.news6 {
   display: flex;
}

.news6 li{
	vertical-align: top;
	position: relative;

}



.news6 li:nth-child(1){
	margin-top: -3px;
	white-space: nowrap;
}

.news6 li:nth-child(2){
	margin-left: 10px;
	font-weight: 700;
	white-space: nowrap;
	align-items: left;
	justify-content: left;

}



.news6 li:nth-child(3){
	font-weight: 700;
	margin-left: 10px;
	margin-right: 80px;
	align-items: left;
	justify-content: left;
}







/****************************************************************************************
/* 文字リンク
****************************************************************************************/


.textlink {
	width: 100%;
	margin : 0 auto 0 auto;
	position: relative;
	display: block;
	box-sizing:border-box;
	border-collapse:collapse;
	border-bottom: 1px solid #cccccc;

}






.textlink span {
	vertical-align: middle;

}


.textlink a {
	display: block;
	width:100%;
	position: relative;
	bottom: 0;
	right: 0;
	color: #333;
	width:100%;
	padding-top: 30px;
	padding-bottom: 30px;

}


.textlink:after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 120px;
  border-bottom: 1px solid #3C8177;
}




.textlink a:hover {
	color: #3C8177;
}


.textlink02 a::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0px;
	width: 0;
	height: 2px;
	border-collapse:collapse;
	background-color: #2C91A7;
	transition: 1.0s;
}

.textlink02 a:hover::after {
	width: 100%;
}





.link_icon {
	position: absolute;
	top: 50%;
	right: 0%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 35px;
	height: 35px;

}




/******************************************************************************
/* 施工実績トップ画像
*******************************************************************************/

figure {
	width: 100%;
	margin: 0 auto 0 auto;
	overflow: hidden;
}

figure img {
	width: 100%;
	height: 100%;
	transition: .4s;
}

a:hover figure img {
	transform: scale(1.1);
}


.upper {
	position: absolute;
	top: 40%;
	left:0;
	right: 0;
	width: 50%;
	margin:0px auto 0 auto;
	text-align: center;
	z-index : 2;
	border: 3px solid #ffffff;
	font-weight: 700;
	padding : 20px;
	color: #ffffff;
	text-shadow: 1px 1px 5px rgb(0, 0, 0, 0.6);
	letter-spacing: 5px;
}




/******************************************************************************
/* 採用ボタン
*******************************************************************************/


.btn2,
a.btn2,
button.btn2 {
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border-shadow2 {
  padding: calc(1.5rem - 12px) 3rem 1.5rem;

  background: #fff;
}

a.btn-border-shadow2:before {
  position: absolute;
  top: -6px;
  left: -6px;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;

  border: 2px solid #000;
  border-radius: 0.5rem;
}

a.btn-border-shadow2:hover {
  padding: calc(1.5rem - 6px) 3rem;
}

a.btn-border-shadow2:hover:before {
  top: 0;
  left: 0;
}

a.btn-border-shadow--color2 {
  border-radius: 0;
  background: #FFFF55;
}

a.btn-border-shadow--color2:before {
  border-radius: 0;
}


/******************************************************************************
/* お知らせ戻るボタン
*******************************************************************************/

.back_btn_area {
	display: block;
	width: 100%;
	text-align: right;
}


.back_btn {
	display: inline-block;
	width: 180px;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background-color: #3B8177;
	box-shadow: 5px 5px 0px #BDD5D1;
	transition: .3s;
	font-size: 80%;
	font-weight: 700;
}

.back_btn:hover {
  box-shadow: unset;
  transform: translate(4px,4px);
}




/******************************************************************************
/* サブページトップ設定
******************************************************************************/


.middle_menu_image{
	position: relative;
	width:100%;
	height: 550px;
	margin: -1px auto 0 auto;
	z-index: 1;
	overflow: hidden;
}



.middle_menu_image img {
	width:100%;
	height:auto;
	over-fit: cover;
}


.service_title01_area_in_image {
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0%;
	margin: 0px auto 0;
	text-align: center;
	opacity: 0;
	width:100%;
	height: auto;
	object-fit: cover;
	background-color: #ffffff;
	animation-name: anime3;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-delay: 0s;
	animation-fill-mode: forwards;
	opacity: 0;

}


@keyframes anime3 {
  0% {
	opacity: 0;

  }

  100% {

	opacity: 1;

  }
}



.sub_title_area {
	position: relative;
	width:90%;
	margin : -80px auto 0 auto;
	z-index: 10;
}


.sub_contents {
	width: 100%;
	position: relative;
	margin: 0px auto 0px auto;
	padding-top : 0px;
	padding-bottom : 0px;
	background-color: #ffffff;
	background-image: url(../images/background01.png?ver-20240901);
	background-repeat:  repeat;
	z-index: 1;

}




.sub_bottom {
	position: absolute; /* if position is not set, the script will set it to 'relative'. */
	margin: 0 auto 0 auto;
	z-index: 2; /* if z-index is not set, the script will set it to '2'. */
	width: 100%;
	bottom: 0;
	left: 0;
	overflow: hidden;

}


.sub_bottom img {
	width: 100%;
	height:auto;


}


/******************************************************************************
/* アクセスマップ
*******************************************************************************/



/* Google Mapを囲う要素 */
.google_map {
	position: relative;
	width: 100%;
	height: 450px;
	margin-bottom: 10px;
}
 
/* Google Mapのiframe */
.google_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.map_address {
	width: 100%;
	margin-bottom: 50px;
	letter-spacing: 1.5px;
}
 

/****************************************************************************************
/* プライバシーポリシー設定
****************************************************************************************/

.privacy{
	font-weight: 700;
	font-size: 90%;
	margin-top: 50px;
	margin-bottom: 20px;
	line-height: 1.6;

}



p.midashi{
	font-weight: 700;
	font-size: 100%;
	color :#27564F;
	margin-top: 20px;
	margin-bottom: 20px;
}


p.bun{
	font-weight: 500;
	font-size: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
}


ol.privacy_list {
	list-style: number;
	margin-left: 40px;
}

ol.privacy_list li {
	font-weight: 500;
	margin-bottom: 20px;
}



/********************************************************************************************************
/* 本文ボックス
*********************************************************************************************************/



.ttlTombo {

	width: 100%;
	position: relative;
	padding: 10px;
	display: block;
	border: 1px dotted #bdc3c7;
	text-align: left;
	margin: 20px auto 30px auto;
	background-color: rgba(255,255,255, 0.5);


}

.ttlTombo:before,
.ttlTombo:after,
.ttlTombo > span:before,
.ttlTombo > span:after {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	background: url(../images/imgcorner.png) 0 0 no-repeat;
}

.ttlTombo:before {
	top: -1px;
	left: -1px;
	transform: rotate(0deg);
}
.ttlTombo:after {
	top: -1px;
	right: -1px;
	transform: rotate(90deg);
}
.ttlTombo > span:before {
	bottom: -1px;
	left: -1px;
	transform: rotate(-90deg);
}
.ttlTombo > span:after {
	bottom: -1px;
	right: -1px;
	transform: rotate(180deg);
}



.ttlTombo p {
	color: #555555;
	font-weight: 700;
	font-size: 100%;
	letter-spacing : 1.5px;
	line-height: 1.6;
	color: #524640;
}

.ttlTombo p.blue {
	font-size: 120%;
	font-weight: 600;
	padding-bottom: 10px;
	color: #4BBFBF;

}

.ttlTombo p.red {
	font-size: 110%;
	font-weight: 500;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #B3184B;

}

.ttlTombo p.bold_green {
	display: block;
	font-size: 110%;
	line-height: 1.5;
	font-weight: 700;
	color: #6EB92B;
	margin-top: 10px;
	margin-left: 10px;
	margin-bottom: 10px;
	letter-spacing : 3px;
}



/******************************************************************************
/* アンダーライン設定
******************************************************************************/

.underline_yellow {
	background: linear-gradient(transparent 50%, #a8eaff 50%);
	font-weight: 700;
	color:#555555;
}




/******************************************************************************
/* トップに戻る
*******************************************************************************/



#page-top {
	position: fixed;
	bottom: 39px;
	right: 0px;
	z-index:100;
}
#page-top a {
	text-decoration: none;
	width: 50px;
	display: block;

}
#page-top a:hover {
	text-decoration: none;
}

/******************************************************************************
/* お問い合わせエリア用
******************************************************************************/


ul.contact_us {
	margin-top: 50px;
	margin-bottom: 20px;
	text-align:center;
}


 
ul.contact_us li {
	letter-spacing:normal;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin-bottom: 20px;
	margin-right: 50px;

}

ul.contact_us li:last-child {
	letter-spacing:normal;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin-bottom: 20px;
	margin-right: 0px;

}

.contact_midashi {
	margin: 0px auto 10px auto;
	font-weight: 500;
	font-size: 140%;
	display: inline-block;
	padding-left: 0px;
	padding-top: 0px;
	padding-bottom: 5px;
	text-shadow:1px 1px 5px #000000;

}

.contact_txt {
	font-weight: 500;
	font-size: 80%;
	letter-spacing: 1.2px;
	margin-bottom: 5px;
	text-shadow:1px 1px 5px #000000;

}

.contact01 {
	margin-bottom: 30px;
	letter-spacing: 1.5px;
	font-weight: 700;
	text-shadow:1px 1px 5px #000000;

}

.contact02 {
	font-size: 100%;
	margin-bottom: 0px;
	letter-spacing: 1.5px;
	font-weight: 700;
	color: #ffffff;
	text-shadow:1px 1px 5px #000000;
	text-decoration: none;
}


.contact02 a {
	font-size: 100%;
	margin-bottom: 0px;
	letter-spacing: 1.5px;
	font-weight: 700;
	color: #ffffff;
	text-shadow:1px 1px 5px #000000;
	text-decoration: none;
}



.contact_us_box {
	position: relative;
	display:inline-block;
	border: solid 1px #ffffff;
	color:#ffffff;
	padding:13px 50px 10px 30px;
	text-align:center;
	margin-bottom: 5px;
	white-space: nowrap;
	width: 280px;
	height: 50px;
	text-shadow:1px 1px 10px #000000;

}
.contact_us_box::after{
	position: absolute;
	content: "";
	top: calc(50% - 4px);
	right: 30px;
	width: 6px;
	height: 6px;
	border: 2px solid;
	border-color: transparent transparent #ffffff #ffffff;
	transform: rotate(-135deg);
	transition: .3s;
}
.contact_us_box:hover::after{
	right: 20px;
}




.contact_us_box p {
	margin-top: 4px;
	margin-bottom: 4px;
	letter-spacing: 1.5px;
	font-weight: 700;
}



.contact_us_box img {
	display: inline-block;
	width: auto;
	height: 18px;
	margin-top: -3px;
	margin-right: 10px;
}





.contact_us_box2 {
	position: relative;
	display:inline-block;
	border: solid 1px #ffffff;
	color:#ffffff;
	padding:12px 50px 10px 10px;
	text-align:center;
	margin-bottom: 5px;
	white-space: nowrap;
	width: 280px;
	height: 50px;
	text-shadow:1px 1px 5px #000000;
	margin: 0 auto 0 auto;

}
.contact_us_box2::after{
	position: absolute;
	content: "";
	top: calc(50% - 4px);
	right: 30px;
	width: 6px;
	height: 6px;
	border: 2px solid;
	border-color: transparent transparent #ffffff #ffffff;
	transform: rotate(-135deg);
	transition: .3s;
}
.contact_us_box2:hover::after{
	right: 20px;
}




.contact_us_box2 p {
	margin-top: 4px;
	margin-bottom: 4px;
	letter-spacing: 1.5px;
	font-weight: 700;
}



.contact_us_box2 img {
	display: inline-block;
	width: auto;
	height: 18px;
	margin-top: -3px;
	margin-right: 10px;
}





.contact_us_box3 {
	position: relative;
	display:inline-block;
	color:#ffffff;
	padding:10px 50px 10px 10px;
	text-align:center;
	margin-bottom: 5px;
	white-space: nowrap;
	height: 50px;
	text-shadow:1px 1px 5px #000000;
	font-size: 90%;

}
.contact_us_box3::after{
	position: absolute;
	content: "";
	top: calc(50% - 5px);
	right: 35px;
	width: 6px;
	height: 6px;
	border: 2px solid;
	border-color: transparent transparent #ffffff #ffffff;
	transform: rotate(-135deg);
	transition: .3s;
}
.contact_us_box3:hover::after{
	right: 25px;
}




.contact_us_box3 p {
	margin-top: 4px;
	margin-bottom: 4px;
	letter-spacing: 1.5px;
	font-weight: 700;
}



.contact_us_box3 img {
	display: inline-block;
	width: auto;
	height: 18px;
	margin-top: -3px;
	margin-right: 10px;
}




/******************************************************************************
/* お問い合わせ用
******************************************************************************/

.footer_area {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0px auto 0px auto;
	padding-top: 0px;
	padding-bottom: 0px;
	background-image: url(../images/bottom_image.jpg?ver-20240901);
	background-repeat:  no-repeat;
	background-position: 0 50%;
	background-size: 100%;
	color: #ffffff;
	letter-spacing: 1.2px;

}


.footer_top {
	position: relative; /* if position is not set, the script will set it to 'relative'. */
	margin: 0 auto 20px auto;
	z-index: 2; /* if z-index is not set, the script will set it to '2'. */
	width: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}


.footer_top img {
	width: 30%;
	height:auto;
}


.footer_area_in {
	width: 90%;
	margin: 0px auto 0px auto;
	padding-top: 40px;
	padding-bottom: 40px;
}


.footer_company2 {
	text-shadow:1px 1px 5px #000000;

}






#copyright{
	font-size:70%;
	background-color:#3C8177;
	padding:12px 0;
	margin-top:0px;
	color:#fff;
	text-align: center;
	letter-spacing: 1.0px;

}



.copyright br{
	display:none;
}


/******************************************************************************
/* スマートフォン・タブレットサイズ
*******************************************************************************/


@media screen and (max-width:1200px) {



.pcOnly {
	display: none!important;
}
.spOnly {
	display: block!important;
}



*******************************************************************************/
/* スマホ用メニュー
*******************************************************************************/





.sub_menu {
	position: relative;
	padding-top: 130px;
	padding-bottom: 0px;
	justify-content: space-between;
	z-index: 100;

}


.sub_page_logo {
	position: absolute;
	margin: 0 auto 0 auto;
	top: 0px;
	left: 0px;
	width: 274px;
	height: auto;
	padding: 10px;
	z-index: 1000;
}

.sub_page_logo img {
	width: 180px;
	height: auto;

}



nav{
	display: none;
	position: absolute;
	top:0px;
	width: 100%;
	left: 0;
	padding-bottom: 50px;
	z-index: 9999999;

}
 
/*------------------------------------プルダウンの部分を記述--------------*/
 
nav ul{
	margin:90px auto 0px;
	width: 90%;
}
 
nav ul li{
	display: inline-block;
	text-align: center;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
 
/*最後のメニューは下線を不要にする -------------------------------------------*/






/*開閉ボタンの作り方 ------------------------------------------------*/

#nav_toggle {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;/*固定にします。*/
	top: 0px;
	right:0px;/*左端に配置*/
	z-index: 9999999;
	background-color: #3C8177;
	padding-left: 7px;
	padding-right: 5px;
	padding-top: 0px;
	padding-bottom: 4px;
	color: #ffffff;
	font-weight: 700;
	margin-top: 0px;
	margin-right: 0px;
	cursor: pointer

}



#nav_toggle div {
	position: relative;
	background-color: rgba(59,59,59,0.77);
	z-index: 999999;


}


 
#nav_toggle span {
	display: block;
	height: 3px;
	background-color: #ffffff;
	position:absolute;
	width: 50%;
	top: 30px;
	left: 13px;
	transition: 0.5s ease-in-out;
	text-align: center;
	margin-top: 15px;
}


 
#nav_toggle p {
	display: block;
	position:absolute;
	transition: 0.5s ease-in-out;
	text-align: center;
	margin-top: 55px;
	margin-left: 0px;
	font-size: 75%;
}

nav {
	position: fixed;
	background-color: rgba(59,59,59,0.77);
	z-index: 999999;
}

 
/*-----------------------------------------------------三本ずつずらして設定*/

#nav_toggle span:nth-child(1){
	top:0px;
}
#nav_toggle span:nth-child(2){
	top:8px;
}
#nav_toggle span:nth-child(3){
	top:16px;
}

 
/*-----------------------------開閉ボタンopen時-------*/

.open #nav_toggle span:nth-child(1) {
top: 7px;
left: 11.5px;
transform: rotate(135deg);
}
 
/* ----------------------------2本目を非表示にすることで、三本が2本になる*/

.open #nav_toggle span:nth-child(2) {
display:none;
}

.open #nav_toggle span:nth-child(3) {
top: 7px;
left: 11.5px;
transform: rotate(-135deg);
}


/******************************************************************************
/* スマホ用メニュー各ブロック
*******************************************************************************/


.homeWorkItem{text-align: center; padding: 1px;}





.homeWorkItem .line{
	display: none;
	position: absolute;
	background-color: #d9d9d9;
	transition:all 0.3s 0s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}


.homeWorkItem .line{display: block; transition:all 0.3s 0s cubic-bezier(0.215, 0.61, 0.355, 1)}

.homeWorkItem .line.line-top{top: 0;left: 0; width: 100%; height: 1px}
.homeWorkItem .line.line-left{top: 0;left: 0; height: 100%; width: 1px}
.homeWorkItem .line.line-bottom{bottom: 0;left: 0; width: 100%; height: 1px}
.homeWorkItem .line.line-right{right: 0; top: 0; height: 100%; width: 1px}

.homeWorkItem a{display:block;}
.homeWorkItem a{position:relative; box-sizing:border-box;background:none; height: 80px;}
.homeWorkItem a:hover{color: #ffd20d}
.homeWorkItem a:hover .line{background-color: #ffd20d}
.homeWorkItem a:hover .line.line-top{height: 4px}
.homeWorkItem a:hover .line.line-left{width: 4px}
.homeWorkItem a:hover .line.line-bottom{height: 4px}
.homeWorkItem a:hover .line.line-right{width: 4px}

.homeWorkItem .menutitle{
	position: absolute;
	width:100%;
	top: 50%;
	transform : translateY(-50%);
	font-size: 80%;
	font-weight: 500;
	text-align: center;
	color: #ffffff;
	text-decoration: none;

}




/******************************************************************************
/* スマホ用メニュー各ブロックサイズ
*******************************************************************************/



nav ul li:nth-child(1) {
	width: 100%;
	z-index: 1;

}



nav ul li:nth-child(2) {
	float: left;
	width: 32%;
	margin-right: 2%;
}



nav ul li:nth-child(3) {
	float: left;
	width: 32%;
	margin-right: 2%;
}

nav ul li:nth-child(4) {
	float: right;
	width: 32%;
}


nav ul li:nth-child(5) {
	float: left;
	width: 49%;

}


nav ul li:nth-child(6) {
	float: right;
	width: 49%;

}

nav ul li:nth-child(7) {
	float: left;
	width: 100%;

}


nav ul li:nth-child(8) {
	float: left;
	width: 49%;

}

nav ul li:nth-child(9) {
	float: right;
	width: 49%;

}




}

/******************************************************************************
/* スマートフォンサイズ
*******************************************************************************/


@media screen and (max-width:600px) {


.pcOnly {
	display: none;
}


.spOnly {
	display: block;
}







/****************************************************************************************
/* スライドショー
****************************************************************************************/

#main_image_area {
	position: relative;
	margin: 0 auto 0 auto;
	width: 100%;
	height: 100vh; /* 全画面表示 */
	z-index: 1;
	background-image: url(../images/background01.png?ver-20240901);
	background-repeat:  repeat;
}


/****************************************************************************************
/* スライドショー
****************************************************************************************/

#main_image_area {
	position: relative;
	margin: 0 auto 0 auto;
	width: 100%;
	height: 100vh; /* 全画面表示 */
	z-index: 1;
	background-image: url(../images/background01.png?ver-20240901);
	background-repeat:  repeat;
}


#viewer {
	position: relative;
	margin: -1px auto 0 auto;
	width: 100%;
	height: 100vh; /* 全画面表示 */
	z-index: 1;
}

#viewer > img {
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index:-2;
	object-fit: cover;
	object-position: 50% 0%;

}



.top_bottom {
	display: none;
	position: absolute; /* if position is not set, the script will set it to 'relative'. */
	margin: 0 auto 0 auto;
	z-index: 2; /* if z-index is not set, the script will set it to '2'. */
	width: 100%;
	bottom: 0%;
	left: 0;

}


.top_bottom img {
	width: 100%;
	height:auto;
}

.top_copy {
	position: absolute; /* if position is not set, the script will set it to 'relative'. */
	z-index: 2; /* if z-index is not set, the script will set it to '2'. */
	width: 100%;
	bottom: 10%;
	right: 0;
	overflow: hidden;
	text-align: right;
}


.top_copy img {
	width: 100%;
	height:auto;
}





.one_image {
animation-name:one_image;
animation-duration:0.5s;
animation-timing-function: ease-in-out;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.one_image01{
animation-delay: 0.2s;
}

.one_image02{
animation-delay: 0.4s;
}






/******************************************************************************
/* 本文
*******************************************************************************/



.contents {
	width: 100%;
	position: relative;
	margin: -60px auto 0px auto;
	padding-top : 80px;
	padding-bottom : 35%;
	background-image: url(../images/background01.png?ver-20240901);
	background-repeat:  repeat;
	z-index: 1;

}


.contents2 {
	width: 100%;
	position: relative;
	margin: 0 auto 0px auto;
	padding-top : 0px;
	padding-bottom : 20px;
	background-image: url(../images/background01.png?ver-20240901);
	background-repeat:  repeat;
	z-index: 1;

}



/******************************************************************************
/* お知らせ
*******************************************************************************/


.news_area {
	width: 90%;
	margin : -20px auto 60px auto;
	text-align: left;
}



ul.news4 {
	width: 100%;
	display: block;
	margin : 0 auto 0 auto;
}



.news4 li:nth-child(1){
	display: block;
	font-size: 80%;
	font-weight: 700;
	margin-bottom: 5px;
	margin-left: 0px;
	color: #5579B2;
	white-space: nowrap;
}



.news4 li:nth-child(2){
	display: block;
	font-size: 80%;
	font-weight: 700;
	margin-right: 60px;
}



/********************************************************************************************************
/* 記事一覧
*********************************************************************************************************/

ul.news5 {
   display: block;
}

.news5 li{
	display: block;
	vertical-align: middle;
	position: relative;

}



.news5 li:nth-child(1){
	display: block;
	margin-top: 1px;
	font-size: 90%;
	font-weight: 700;
	color: #3B8177;
	white-space: nowrap;
}

.news5 li:nth-child(2){
	display: block;
	margin-top: 5px;
	margin-left: 0px;
	font-weight: 700;
	white-space: nowrap;
	align-items: left;
	justify-content: left;

}




/********************************************************************************************************
/* 記事一覧
*********************************************************************************************************/

ul.news6 {
	display: block;
}

.news6 li{
	display: inline-block;
	vertical-align: top;
	position: relative;
	font-size: 90%;

}



.news6 li:nth-child(1){
	width: 100px;
	margin-top: -3px;
	margin-right: 10px;
	white-space: nowrap;
}

.news6 li:nth-child(2){
	margin-top: 10px;
	font-weight: 700;
	margin-right: 60px;
	white-space: wrap;
}

.news6 li:nth-child(3){
	display: block;
	font-weight: 700;
	white-space: wrap;
	margin-top: 10px;
	margin-right: 60px;
}






/******************************************************************************
/* 採用ボタン
*******************************************************************************/


.btn2,
a.btn2,
button.btn2 {
	width: 100%;
  font-size: 80%;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 10px 0px 20px 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
}




/******************************************************************************
/* お問い合わせ用
******************************************************************************/

.footer_area {
	position: relative;
	width: auto;
	height: 100%;
	margin: 0px auto 0px auto;
	padding-top: 0px;
	padding-bottom: 0px;
	background-image: url(../images/bottom_image.jpg?ver-20240901);
	background-repeat:  no-repeat;
	background-position: 52% 0%;
	background-size: cover;
	color: #ffffff;
	letter-spacing: 1.2px;
	overflow: hidden;

}


.footer_top {
	position: absolute; /* if position is not set, the script will set it to 'relative'. */
	margin: 0 auto 0 auto;
	z-index: 2; /* if z-index is not set, the script will set it to '2'. */
	width: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}


.footer_top img {
	width: 100%;
	height:auto;
}


.footer_area_in {
	width: 90%;
	margin: 0px auto 0px auto;
	padding-top: 30px;
	padding-bottom: 20px;
}


.footer_company2 {
	text-shadow:1px 1px 5px #000000;

}






#copyright{
	font-size:60%;
	background-color:#3C8177;
	padding:12px 0;
	margin-top:0px;
	color:#fff;
	text-align: center;
	letter-spacing: 1.0px;

}



.copyright br{
	display:none;
}


/******************************************************************************
/* お問い合わせエリア用
******************************************************************************/

.contact_area {
	width: 100%;
	margin: 0px auto 0px auto;
	text-align: center;
}



ul.contact_us {
	display: inline-block;
	margin: 20px auto 0 auto;
	text-align:center;
}


 
ul.contact_us li {
	letter-spacing:normal;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin-bottom: 20px;
	margin-right: 0px;

}

ul.contact_us li:last-child {
	letter-spacing:normal;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin-bottom: 20px;
	margin-right: 0px;

}


.contact_midashi {
	margin: 0px auto 10px auto;
	font-weight: 500;
	font-size: 110%;
	display: inline-block;
	padding-left: 0px;
	padding-top: 0px;
	padding-bottom: 5px;
	text-shadow:1px 1px 5px #000000;

}


.contact01 {
	font-size: 90%;
	margin-bottom: 30px;
	letter-spacing: 1.5px;
	font-weight: 700;
	text-shadow:1px 1px 5px #000000;

}

/******************************************************************************
/* サブページトップ設定
******************************************************************************/


.middle_menu_image{
	position: relative;
	width:100%;
	height: 220px;
	margin: -1px auto 0 auto;
	z-index: 1;
	overflow: hidden;
}



.middle_menu_image img {
	width:100%;
	height:auto;
	over-fit: cover;
}


.sub_title_area {
	position: relative;
	width:90%;
	margin : -20px auto 0 auto;
	z-index: 10;
}


.sub_title_area p {
	font-size:90%;
}

.sub_title_area p.title_sub {
	font-size:70%;
}


.sub_contents {
	width: 100%;
	position: relative;
	margin: -20px auto 0px auto;
	padding-top : 0px;
	padding-bottom : 0px;
	background-color: #ffffff;
	background-image: url(../images/background01.png?ver-20240901);
	background-repeat:  repeat;
	z-index: 1;

}




.sub_bottom {
	position: absolute; /* if position is not set, the script will set it to 'relative'. */
	margin: 0 auto 0 auto;
	z-index: 2; /* if z-index is not set, the script will set it to '2'. */
	width: 100%;
	bottom: 0;
	left: 0;
	overflow: hidden;

}


.sub_bottom img {
	width: 100%;
	height:auto;


}


/******************************************************************************
/* アクセスマップ
*******************************************************************************/



/* Google Mapを囲う要素 */
.google_map {
	position: relative;
	width: 100%;
	height: 300px;
	margin-bottom: 10px;
}
 
/* Google Mapのiframe */
.google_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.map_address {
	width: 100%;
	margin-bottom: 10px;
	letter-spacing: 1.5px;
}
 


p.comment2 {
	display: block;
	color: #555555;
	font-size: 100%;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 10px;
	padding-top: 0px;
}


/****************************************************************************************
/* プライバシーポリシー設定
****************************************************************************************/

.privacy{
	font-weight: 700;
	font-size: 90%;
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 1.6;

}

}
