﻿@charset "utf-8";
/*========= ナビゲーションのためのCSS ===============*/
/*テーマカラーrgba(159,152,122,1.00)*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(159,152,122,0.8);
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	box-sizing:border-box;
	margin:12px 0;
	border:3px solid #FFFFFF;
	color: #FFFFFF;
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/


#logo {
	background: transparent; /* 元の色 */
}

#logo.invert {
	background:rgba(159,152,122,1.00); /* スクロール後の色 */
}
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:5px;
	right: 5px;
	cursor: pointer;
    width: 80px;
    height:70px;
	
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 20px;
    height: 3px;
    border-radius: 2px;
	background-color: #FFF;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:25px;	
}

.openbtn span:nth-of-type(2) {
	top:35px;
}

.openbtn span:nth-of-type(3) {
	top:45px;
}
.openbtn span:nth-of-type(4) {
	top:58px;
	left:10px;
	background:transparent;color:#FFFFFF;
}


.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 28px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 40px;
    left: 28px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
    margin:0px auto 0px auto;padding:50px 0;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/aspect-ratio: 5 / 3;/* 画像のアスペクト比を固定！heightはauto widthは100％！ */
    height:auto;object-fit: cover; /* この一行を追加するだけ！ */
box-shadow: 0px 0px 2px 1px #ebebeb;
border-radius: 0px;
}
.slider li .slideUndertext{height:auto; padding:10px 5px;background:rgba(77,77,77,1.00); box-shadow: 0px 0px 2px 1px #ebebeb;
border-radius: 0px;color:#FFFFFF;font-weight:550;text-align:center;letter-spacing:1px;}

.slider li .slideUndertext2{height:auto; padding:10px 5px;background:rgba(159,152,122,1.00);box-shadow: 0px 0px 2px 1px #ebebeb;
border-radius: 0px;color:#FFFFFF;font-weight:550;text-align:center;}

.slider li .slideUndertext > span{positon:absolute;top:-100px; font-weight:600;font-size:2.5rem; color:rgba(255,249,215,1.00);}
.slider li .slideUndertext2 > span{positon:absolute;top:-100px; font-weight:600;font-size:2.5rem; color:rgba(255,249,215,1.00);}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 5px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:12px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
	border:none;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}	
.slideArea{padding:20px 0; box-sizing:border-box ;position:relative;width:auto;}

.slideArea .mask001{position:absolute; left:3.3%; top:16%; height:60%; width:37.2%; background:rgba(77,74,57,0.6);z-index: 2;}
.slideArea .mask002{position:absolute; right:3.0%; top:16%; height:60%; width:37.2%; background:rgba(77,74,57,0.6);z-index: 2;}
@media screen and (min-width: 801px) {

.drawer{position:fixed; right:0; top:100px;z-index:99999999999999;}

/* ハンバーガーメニュー */
  .drawer-hidden { z-index:9999999999999999;
    display: none;
  }
  .drawer-open {
    display: flex;
    height: 120px;
    width: 70px;
    justify-content: center;
    align-items: center;
    position: relative;
   z-index:9999999999999999;
    cursor: pointer;
    margin: auto;
    left: -0px;
	  padding:0 10px;
	  background:rgba(0,62,189,1.00);
	  border-radius:10px 0 0 10px;
  }
.drawer-open .drawer-text{position:absolute; top:20px; color:#FFFFFF;}
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background: #FFFFFF;
    transition: 0.5s;
    position: absolute;
  }
  .drawer-open span:before {
    bottom: 7px;
  }
  .drawer-open span:after {
    top: 7px;
  }
  .drawer-open.clicked span {
    background: rgba(255, 255, 255, 0);
  }
  .drawer-open.clicked span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .drawer-open.clicked span::after {
    top: 0;
    transform: rotate(-45deg);
  }
 
/* 横スライドメニュー*/
  .drawer-content {
	 box-sizing: border-box;
	  padding:0px 20px;
    width: 100%;
    height: auto;
    position: fixed;
    top: 120px;/*ヘッダーの高さ*/
    left: 100%;/*向き変更*/
    background:rgba(240,240,240,1.00);
    transition: 0.5s;
    margin-left: 85%;/*向き変更・背景見せる場合マージン入れる*/
    padding-right: 15%;/*向き変更・背景見せる場合マージン入れる*/
    overflow: hidden;   z-index:999999;
	  	word-wrap: break-word;
	white-space: pre-wrap;
	  border-radius:30px 0 0 30px;
line-height: 1.5rem;

  }
	
  .drawer-content-bg {   z-index:999999;

    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    right: 100%;
    transition: 0.5s;
    background: rgba(0, 0, 0, 0.5);
    border-top: 0px solid #eee;
  }
  .drawer-content-list ul li{
	  font-size:1.4rem;
color:#393939!important;
	  display:inline-block;
	  box-sizing: border-box;
	  background:rgba(28,77,191,1.00);
	  margin:5px 0px;
	  padding:10px;
	  list-style-type:none!important;
	  line-height:1.5rem!important;
      border-radius:7px;
  }
	.drawer-content-wrap{min-width:300px!important;}

  .drawer-content-list ul li a{
	  list-style:none!important;
	  line-height:1.0rem!important;
	  color:#FFFFFF!important;
	  text-align:right;
  }

  .drawer-content.clicked {
    left: 0;/*向き変更*/
  }
  .drawer-content-bg.clicked {
    left: 0;
  }
}

div.para{
	margin-top:175px;
    height:750px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; 
    }
 
.paraBox{
    max-width: 1080px;
        margin: 0 auto;position:relative;
    }
.paraBox .moziBig{
    line-height:750px;
    font-size:5rem;
	letter-spacing:0.5rem;
    color:rgba(255,247,200,1.00);
    text-align: center;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.95);
    }

.paraBox .moziBig .small{
    font-size:0.7em!important;
    }	

.paraBox > .mozi-toptitle{
	position:absolute; 
	left: 50%;
	box-sizing: border-box;
	font-size:2rem; 
	height:auto;
    transform: translate(-50%, -50%); 
	top:0px;
	background:rgba(130,41,43,1.00);
	color:rgba(255,255,255,1.00);
	padding:2.5rem 6rem;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.mozi-toptitle > .red{
	font-size:3rem; 
	font-weight:600; 
	color:rgba(159,152,122,1.00);
}

.paraContent{padding:50px 0;background:rgba(243,243,243,1.00);}
 
.para_bg01{
    background:url(../img/057.jpg);    
    }
.para_bg02{
    background:url(../img/048.jpg);    
    }
.para_bg03{
    background:url(../img/049.jpg);    
    }
.para_bg04{
    background:url(../img/054.jpg);    
    }
.para_bg05{
    background:url(../img/050.jpg);    
    }
	
.mozi{
	position: relative;
	width:88%; 
	margin:-100px 6% -20px 6%;
	box-sizing: border-box; 
	padding:3rem 30px 3rem 120px;
	font-size:2.2rem; 
	color:#FFFFFF;
	font-weight:570;
	letter-spacing:3px;
	background: rgba(159,152,122,1.00);
		border-radius:20px;
}		

.mozi::before {
	 position: absolute;
  top: -35px;
  left: -40px;
	content: url("../img/logo_small.png");
  vertical-align: middle;
 display: inline-block;
transform: scale(0.3);
}

.scroll-fade-side {

}
/*.bg {
  background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 1em,
      rgba(248, 187, 208, 0.4) 0,
      rgba(248, 187, 208, 0.1) 2em,
      rgba(248, 187, 208, 0.3) 0,
      rgba(248, 187, 208, 0.2) 4em,
      rgba(244, 143, 177, 0.6) 0,
      rgba(244, 143, 177, 0.2) 2em
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 1em,
      rgba(248, 187, 208, 0.4) 0,
      rgba(248, 187, 208, 0.1) 2em,
      rgba(248, 187, 208, 0.3) 0,
      rgba(248, 187, 208, 0.2) 4em,
      rgba(244, 143, 177, 0.4) 0,
      rgba(244, 143, 177, 0.1) 2em
    );
  background-blend-mode: multiply;
}*/


/*トップ　スライダー*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_cssslider {
	box-shadow:1px 1px 5px rgba(0,0,0,0.7);
	height:850px;
	width:100%;min-width:1080px;
	margin:0 auto;
	overflow:visible;
	position:relative;	background-position:center top;
	background:0 0 no-repeat;
	background-color:none;
	background-size:cover;

}
.cp_cssslider .mask {
	overflow:hidden;
	height:850px;/* ボーダー分を差し引く */
	width: 100%;
}
	
	
.cp_cssslider ul {
	margin:0;
	padding:0;
	position:relative;
}
/* tooltip */
/* tooltip */
.cp_cssslider .tooltip {display: none;
	background:rgba(0,0,0,0.7);
	width:200px;
	height:auto;
	position:relative;
	bottom:95px;
	left:-100%;
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
.cp_cssslider .tooltip h7 {
	color:#fff;
	padding:0 0 0 20px;
}
.cp_cssslider li:hover .tooltip{
	left:0px;
}
.cp_cssslider:hover li,
.cp_cssslider:hover .cp_progressbar {
	-webkit-animation-play-state:paused;
	animation-play-state:paused;
}
.cp_cssslider li {
	width:100%;
	height:800px;
	position:absolute;
	top:-800px;
	list-style:none;
}
.cp_cssslider li img{object-fit: cover; width:100%; height:auto;}
	
.cp_cssslider li:nth-child(1){
	-webkit-animation:cycle1 25s linear infinite;
	animation:cycle1 25s linear infinite;
}
.cp_cssslider li:nth-child(2){
	-webkit-animation:cycle2 25s linear infinite;
	animation:cycle2 25s linear infinite;
}
.cp_cssslider li:nth-child(3){
	-webkit-animation:cycle3 25s linear infinite;
	animation:cycle3 25s linear infinite;
}
.cp_cssslider li:nth-child(4){
	-webkit-animation:cycle4 25s linear infinite;
	animation:cycle4 25s linear infinite;
}
.cp_cssslider li:nth-child(5){
	-webkit-animation:cycle5 25s linear infinite;
	animation:cycle5 25s linear infinite;
}
@keyframes cycle1 {
	0%  { top:0px; }
	4%  { top:0px; }
	16% { top:0px; opacity:1; z-index:0; }
	20% { top:200px; opacity:0; z-index:0; }
	21% { top:-200px; opacity:0; z-index:-1; }
	50% { top:-200px; opacity:0; z-index:-1; }
	92% { top:-200px; opacity:0; z-index:0; }
	96% { top:-200px; opacity:0; }
	100%{ top:0px; opacity:1; }
}
@keyframes cycle2 {
	0%  { top:-200px; opacity:0; }
	16% { top:-200px; opacity:0; }
	20% { top:0px; opacity:1; }
	24% { top:0px; opacity:1; }
	36% { top:0px; opacity:1; z-index:0; }
	40% { top:200px; opacity:0; z-index:0; }
	41% { top:-200px; opacity:0; z-index:-1; }
	100%{ top:-200px; opacity:0; z-index:-1; }
}
@keyframes cycle3 {
	0%  { top:-200px; opacity:0; }
	36% { top:-200px; opacity:0; }
	40% { top:0px; opacity:1; }
	44% { top:0px; opacity:1; }
	56% { top:0px; opacity:1; z-index:0; }
	60% { top:200px; opacity:0; z-index:0; }
	61% { top:-200px; opacity:0; z-index:-1; }
	100%{ top:-200px; opacity:0; z-index:-1; }
}
@keyframes cycle4 {
	0%  { top:-200px; opacity:0; }
	56% { top:-200px; opacity:0; }
	60% { top:0px; opacity:1; }
	64% { top:0px; opacity:1; }
	76% { top:0px; opacity:1; z-index:0; }
	80% { top:200px; opacity:0; z-index:0; }
	81% { top:-200px; opacity:0; z-index:-1; }
	100%{ top:-200px; opacity:0; z-index:-1; }
}
@keyframes cycle5 {
	0%  { top:-200px; opacity:0; }
	76% { top:-200px; opacity:0; }
	80% { top:0px; opacity:1; }
	84% { top:0px; opacity:1; }

	96% { top:0px; opacity:1; z-index:0; }
	100%{ top:200px; opacity:0; z-index:0; }
}
/* progressbar */
.cp_progressbar {display: none;
	position:relative;
	top:-5px;
	width:680px;
	height:5px;
	background:#000000;
	-webkit-animation:progressbar 25s ease-out infinite;
	animation:progressbar 25s ease-out infinite;
}
/* animation */
@keyframes progressbar {
	0%, 20%, 40%, 60%, 80%, 100% { width:0%; opacity:0; z-index:2; }
	4%, 24%, 44%, 64%, 84% { width:0%; opacity:0.3; z-index:2; }
	16%, 36%, 56%, 76%, 96% { width:100%; opacity:0.3; z-index:2; }
	18%, 38%, 58%, 78%, 98% { width:100%; opacity:0;  z-index:2; }
}	
/*トップ　スライダー END*/


/*========= レイアウトのためのCSS ===============*/

small{
	color:#fff;
	display: block;padding-top:20px;
	text-align: center;potision:absolute;top:50px;left:50%;right:50%;
}

#header{
	width:100%;
	box-sizing: border-box;
	background:rgba(159,152,122,1.00);
	color:#fff;
	text-align: center;
	margin:0;
	padding: 5px;
	height:80px;
	z-index:20;
	position:absolute;
	top:0;
}

.header-button{
	position:absolute;
	right:100px;
	top:0px;
	display:flex;
}
	
.header-button button{
margin:0!important;
}

.header-button img{
height:80px;margin:0px;width:auto;
}


.header-button a .button1 {
	padding:0;box-sizing: border-box;
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
		font-size:1.75rem;
	height:80px;width:100px;
	line-height:0.7;
	margin: auto;
	font-weight:600;
background: linear-gradient(135deg,  #9dd53a 0%,#a1d54f 50%,#80c217 51%,#7cbc0a 100%);
	color: #585841;
	transition: 0.5s;
	border-bottom:2px solid rgba(104,100,84,0.8);
}

.header-button a .button2{line-height:0.5;
	padding:0;box-sizing: border-box;
background: radial-gradient(ellipse at center,  #feffe8 0%,#d6dbbf 100%); 
	color: #585841;
		font-size:2.2rem;
	height:80px;width:100px;	
font-weight: 600;
font-style: normal;
	margin:0!important;border-bottom:2px solid rgba(104,100,84,0.8);
}
	
.header-button a .button3{line-height:0.5;
	padding:0;box-sizing: border-box;
background: radial-gradient(ellipse at center,  #feffe8 0%,#d6dbbf 100%); 
	color: #585841;
		font-size:2.2rem;
	height:80px;width:100px;
font-weight: 600;
font-style: normal;
	margin:0!important;border-bottom:2px solid rgba(104,100,84,0.8);
}
	
	
	.header-button a .button1 span , .header-button a .button2 span , .header-button a .button3 span{
		font-size:0.9rem!important;
	}	
/*
section{
	padding:100px 30px;
}

section:nth-child(2n){
	background:#f3f3f3;	
}*/


/**********フッター設定***********/

#footer{position:relative;
	background:rgba(159,152,122,1.00);
	padding:20px;
}

#footer p{margin:20px; color:#FFFFFF;}


#footer p:nth-of-type(1){font-size:1.5rem;color:#FFFFFF;}


#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
 
#footer {
  position: relative;
	background:rgba(159,152,122,1.00);
}
 
#footer .logo {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #111;
}
 
#footer .logo a {
  display: inline-block;
}
 
#footer .logo img {
  width: 120px;
}
 
#footer .footer_nav a {
  display: block;
  padding: 0 10px;
  color: #ccc;
}
 
@media only screen and (min-width: 801px) {
  #footer .footer_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0;
  }
  #footer .footer_nav a:hover {
    color: #ca353b;
  }
}


div.heading01 {
	position: relative;
	font-size: 2.0rem!important;
	text-align: center;
	box-sizing: border-box;
	margin:20px auto 100px auto!important;
	letter-spacing:0.1rem!important;
	color:#151515;
}

div.heading01::before {
	content: attr(data-number);
	display: block;
	margin-bottom: 60px;
	color: #7B7670;
	font-size: 50%!important;
}

div.heading01::after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 25px;
	background-color:#CCC5BD;
}	


/*flexbox*/	
/* 親要素(コンテナ) */
.flexbox {
	position:relative;
	width:50%;
    display: flex!important;
	justify-content: center;
	flex-wrap: wrap;
	margin:30px 25%!important;;
	}
/* 親要素(コンテナ) */


/* 子要素(アイテム) */
.flex-item {
	border:2px solid #1C5FA6;
	color: #fff;margin:10px 0;
	box-sizing: border-box;
	width:auto;
	max-width:250px;
	height:auto;
	max-height:250px!important;
}

.oneitem{
	width:65%;margin:0 17.5% 20px 17.5%;
	box-sizing:border-box;
	}

.oneitem_Link:hover{opacity: 0.7;
	transform: translateY(-5px);
	transform: scale(1.2);
	}

.oneitem > p{
	margin:10px auto;
	letter-spacing:0.0rem;
	font-size:1rem;
	color:rgba(0,0,0,1.00);
	line-height:1.8rem;
	word-wrap: break-word;
	white-space: pre-wrap;
	}

.oneitem > .leftSpace{
	font-weight:550!important;
	width:80%; 
	margin:0 10%;
	box-sizing: border-box;
	padding-left:0%;
	font-size:1.0rem!important;
	line-height:2.0rem;
	}

.oneitem > .leftSpace > .red{
padding-left:20px;font-size:1.7rem; font-weight:600; color:rgba(150,0,2,1.00);	
line-height: 2.55rem;padding:1rem;
background:#ffffdc;
display: block;
	border:3px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;	
}


.oneitem > .leftSpace > .red002{
padding-left:20px;font-size:1.7rem; font-weight:600; color:rgba(150,0,2,1.00);	
line-height: 2.55rem;padding:1rem;
background: linear-gradient(135deg,  #fefcea 0%,#f1da36 100%);
display: block;
	border:3px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;	
}

.oneitem > .leftSpace > .red002 span:nth-child(2) {background:blue}

.oneitem > .leftSpace > .red::before {
	content:"★";
	padding-left:10px;
	margin-right:10px;
	margin-top:-5px;
  vertical-align: middle;
 display: inline-block;
transform: scale(1.25);
}

.oneitem > .leftSpace > .red002::before {
	content:"♦";
	padding-left:10px;
	margin-right:10px;
	margin-top:-5px;
  vertical-align: middle;
 display: inline-block;
transform: scale(1.25);
}


.oneitem > .Arrow{margin:10px auto;width:50px; height:50px;background:rgba(151,12,15,1.00);clip-path: polygon(75% 0, 75% 60%, 100% 60%, 50% 100%, 0 60%, 25% 60%, 25% 0);}


.markUp{
	border-bottom:solid;
	border-color:#A2A166;/*アンダーライン*/
	padding-bottom:5px;
	font-weight:550;
	border-width:2px;/*5ピクセルの太さにする*/
}

.oneitem .closeUp{position:relative;
	font-size:2.4rem;
	text-decoration: none;
    border-bottom: 5px solid rgba(159,152,122,1.00);
	box-sizing: border-box;
	padding:1rem 0 1rem 80px;
	width:fit-content!important;
	font-weight:550;
	margin-bottom:100px!important;
	margin-top:100px!important;
}


.oneitem .closeUp::before {
	 position: absolute;
  top: -70px;
  left: -70px;
	content: url("../img/logo_small.png");
  vertical-align: middle;
 display: inline-block;
transform: scale(0.3);
}

.oneitem > .sideTitle{
	box-sizing: border-box;
	position: relative;
	padding-left:0;/*アイコン分のスペース*/
	padding-bottom:0px;
	line-height: 1.4rem;
	margin:60px auto;
	font-size:1.2rem;
	text-decoration:underline;
}

.oneitem > .textBox{
	position:relative;
	box-sizing: border-box;
	width:55%;
	height:auto;
	margin:0px 27.5% 0px 27.5%;
	letter-spacing:0.1em;
	font-size:1.1rem;
	color:#555555;
	line-height:180%;
	word-wrap: break-word;
	white-space: pre-wrap;
	text-align:left;
	}

.oneitem > .twoBox{
position:relative;
	display: flex;
	justify-content: space-between;
	border-bottom:1px solid rgba(183,183,183,1.00);padding:80px 0;
	}

.oneitem > .twoBox > .textBox{
	box-sizing: border-box;
	width:60%;
	height:auto;
	color:#393939;
	line-height:1.7rem;
	word-wrap: break-word;
	white-space: pre-wrap;
	text-align:left;
	padding-left:0px;
	}

.oneitem > .twoBox > .imgBox{
	box-sizing: border-box;
	width:40%;
	margin-right:5%;
	height:auto;
	display: flex;
	flex-direction: column;
	}

.oneitem > .twoBox > .imgBox img{
	margin-bottom:35px;
	height:auto;
	width:100%;aspect-ratio: 5 / 5!important;
	object-fit: cover; /* この一行を追加するだけ */
	}

.oneitem .twoitem_Link .imgBox{
	width:100%;
	height:auto;
	}	
	
.oneitem .twoitem_Link .imgBox img{
	height: 300px;
	width:100%;
	object-fit: cover; /* この一行を追加するだけ */
	}

/*◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇*/

.twoitem{
	width:46%;
	margin:0 2% 100px 2%;
	box-sizing:border-box;
	background:none;
	}

.twoitem_Link:hover{
	opacity: 0.7;
	transform: translateY(-5px);
	transform: scale(1.2);
	}	

.twoitem > p{
	letter-spacing:0.1em;
	font-size:0.8rem;
	color:#555555;
	line-height:180%;
	word-wrap: break-word;
	white-space: pre-wrap;
	}

.twoitem > h5 {
	box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	min-width:100%;
	margin:0px auto 40px auto!important;
	position: relative!important;
	background-color:#F9F6F2!important;
	padding: 2.5rem 4rem!important;	color: rgba(57,40,40,1.00)!important;
	border: solid 2px rgba(57,40,40,1.00)!important;
	font-size:1.2rem!important;
}

.twoitem > h5:after {
	position: absolute;
	content: "CHECK";
	top: -15px;
	left: 10px;
	background: rgba(118,39,40,1.00);
	font-size: 0.8rem;
	color: #FFFFFF;
	padding: 10px 10px;
	border:3px solid rgba(118,39,40,1.00);
}

.sub_title {
    display: inline-block;
	box-sizing:border-box;
	width:100%;letter-spacing:0.1em;
	height:auto;
	margin:10px 0px 30px 0px; 
	padding:20px 0!important;
	line-height:200%; 
    text-align: center;
    cursor: pointer;
    text-decoration: none!important;
    outline: none;
	font-size:1.2rem!important;
	color:rgba(50,42,35,1.00);font-weight:700;
}

.twoitem > .sideTitle{
	box-sizing: border-box;
	position: relative;
	padding-left:0;/*アイコン分のスペース*/
	padding-bottom:20px;
	line-height: 1.4;
	margin-bottom:30px;
	font-size:1.2rem;
	color:rgba(118,39,40,1.00);
	letter-spacing: 0;
}
.twoitem > .sideText{
	font-size:0.8rem;
	padding:2% 2% 2% 2%;
		width:90%;
	margin:0 5% 0 5%;
	box-sizing: border-box;
	letter-spacing:0.0rem;line-height:180%;
	text-align:left;
	word-wrap: break-word;
	white-space: pre-wrap;
	height:auto;
	min-height:450px;
	}

.sideText_span{
	color:rgba(0,0,0,1.00);
	font-weight:570;
	font-size:1.3rem;
	text-align: center!important;
}

.twoitem .twoitem_Link .imgBox{
	width:100%;
	height:auto;
	}	
	
.twoitem .twoitem_Link .imgBox img{
	height: 250px;
	width:100%;
	object-fit: cover;	/*この一行を追加するだけ */
	}

/*ここからボタンベース*/

.w_button {
    display: inline-block;
	box-sizing:border-box;
	width:40%;letter-spacing:0.0em;
	height:auto;
	margin:10px 30% 10px 30%; 
	padding:15px 0!important;
	line-height:200%; 
    text-align: center;
    cursor: pointer;
    text-decoration: none!important;
    outline: none;
}
.w_button::before,.w_button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}
.w_button,.w_button::before,.w_button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
	
.w_button {
    background-color:rgba(50,42,35,1.00);
    color: #fff !important;
	font-size:1.2rem;
    background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(27, 33, 39, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(27, 33, 39, 1) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
	box-shadow: 0px 4px 1px 0px #454545;
	border-radius: 0px;
	border:1px solid rgba(77,77,77,1.00);
	border-style: inset;
}

.w_button:hover {
    background-color: #202427;
    background-position: -100% 100%;
	opacity: 0.8!important;
	transform: translateY(-2px)!important;
}

/*ボタンベースここまで*/


/*◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇*/


@media screen and (min-width: 801px) {
	
body{
/*font-family: "biz-udpgothic", sans-serif;*/
/*font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif!important;	*/
font-family: "fot-seurat-pron", sans-serif;
font-weight: 600;
font-style: normal;
	
/*font-family: 'Noto Sans JP'!important;		
font-weight: 400;
font-style: normal;
	*/
	/*font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";*/
	font-size:14px;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;	
	margin:0;
	padding:0;
/* 画像ファイルの指定 */
  /*background-image: url("../img/slide_001.png");*/
  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #FFFFFF;
}

body a{
	text-decoration:none;
	}
a {
	transition: .3s;
	color:#FFFFFF;
	}
a:hover {
	opacity: 0.8;
	transform: translateY(-5px);
	}
/*	
html{
  scroll-behavior: smooth;
}	*/

	
/*◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆ h1 ～　H7　◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇*/
	
h1{box-sizing: border-box;
	padding:12px 0 12px 77px!important;
	font-weight:normal!important;
	letter-spacing:1px;
	line-height: 1.3rem;
	word-wrap: break-word;
	white-space: pre-wrap;
	width:fit-content;
	margin:0;display: block;
}	
	
h1::before {
	 position: absolute;
  top: -60px;
  left: -60px;
	content: url("../img/logo_small.png");
  vertical-align: middle;
 display: inline-block;
transform: scale(0.3);
}

h2{
	position: relative;
	padding: 2rem 2rem!important;
	border: solid 3px rgba(50,42,35,1.00)!important;
	width:100%;
	box-sizing: border-box!important;
	height:auto;
	margin:20px auto 20px auto!important;
	font-size:2rem!important;
	text-align: center!important;
	background:rgba(61,61,61,1.00)!important;color:#FFFFFF!important;
	border-radius:10px;
}
	
h2:after {
	position: absolute;
	content: "Nexus";
	top: -30px;
	left: 0px;
	background:rgba(118,39,40,1.00);
	font-size: 0.8rem;
	color: #FFFFFF;
	padding: 10px 10px;
}

h2:nth-child(1) {
	background:rgba(75,72,41,1.00);
	color:#FFFFFF;
	width:100%;
}	
	

h3 {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	margin:50px auto!important;
	position: relative!important;
	background-color:#111111!important;
	padding: 3rem 4rem!important;	
	border: solid 2px rgba(57,40,40,1.00)!important;
	font-size:2.5rem!important;
	color:#FFFFFF!important;
}
	
h4 {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	font-size:2.5rem!important;
	margin:50px auto!important;
	position: relative!important;
	padding: 1rem 1rem!important;	color: #111111;
}	
		
	
h3:after {
	position: absolute;
	content: "POINT";
	top: -15px;
	left: 10px;
	background: #fff;
	font-size: 0.8rem;
	color: rgba(57,40,40,1.00);
	padding: 10px 10px;
	border:3px solid rgba(66,66,66,1.00);
}
	
h5 {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	min-width:80%;
	margin:60px auto!important;
	position: relative!important;
	background-color:#F9F6F2!important;
	padding: 4rem 4rem!important;	color: rgba(57,40,40,1.00)!important;
	font-size:1.8rem!important;
}
	
h5:after {
	position: absolute;
	content: "無料相談";
	top: -0px;
	left:-75px;
	right:40%;
	width:150px;
	height:150px;
	align-content: center;
	background:rgba(59,59,59,1.00);
	font-size: 2rem;
	color: #FFFFFF;
	padding: 40px;clip-path: circle(50% at 50% 50%);
}
	
h6{
	position: relative;
	padding: 4rem 2rem!important;
	width:100%;
	box-sizing: border-box!important;
	height:auto;
	margin:100px auto 0px auto!important;
	font-size:1rem!important;
	text-align: center!important;
	background:#3F65B1!important;color:#FFFFFF;
}
	
h6:after {
	position: absolute;
	content: "ネクサス探偵興信所";
	top: -30px;
	left: 15px;
	background:rgba(67,67,67,1.00);
	font-size: 1.2rem;
	color: #FFFFFF;
	padding: 20px 20px;
}
	
.top_h {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	font-weight:600;
	min-width:60%;
	margin:100px auto 0 auto!important;
	position: relative!important;
	background-color:#F9F6F2!important;
	padding: 4rem 4rem!important;	color: rgba(57,40,40,1.00)!important;
	border: solid 2px rgba(57,40,40,1.00)!important;
	font-size:2rem!important;
}
	
/*◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆【         】◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇*/
	
	
.highlight{font-weight:600; color:rgba(219,0,3,1.00); font-size:1.2em;}	
	
.top_h:after {
	position: absolute;
	content: "CHECK";
	top: -15px;
	left: 10px;
	background: rgba(118,39,40,1.00);
	font-size: 0.8rem;
	color: #FFFFFF;
	padding: 10px 10px;
	border:3px solid rgba(118,39,40,1.00);
}
	
.mainTitle:nth-of-type(n+1){
	position: relative;
	padding: 11rem 1.7rem 8rem 1.7rem!important;
	width:100%;
	box-sizing: border-box!important;
	height:auto;
	background-image:url("../img/021.jpeg");
	background-position:center top;
	background-repeat:no-repeat;
	background-size:cover;
	margin:0px auto 100px auto!important;
	text-align: center!important;
	font-weight:600;
	color:#322F2A!important;
	word-wrap: break-word;
	white-space: pre-wrap;
	/*text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7), 0px 0px 2px rgba(0, 0, 0, 1);*/
	line-height:1.5rem;
	letter-spacing: 0.2rem;
	font-size:2rem;
}
	
.mainTitle:nth-of-type(n+2) {
	position: relative;
	padding: 6.5rem 1.7rem!important;
	width:100%;
	box-sizing: border-box!important;
	height:auto;
	background-image:url("../img/046.jpg");
	background-position:center top;
	background-repeat:no-repeat;
	background-size:cover;
	margin:100px auto!important;
	font-size:3rem!important;
	text-align: center!important;
	font-weight:600;
	color:rgba(57,57,57,1.00);
	-moz-text-shadow: 0px 0px 8px rgba(255, 255, 255, 1);
-webkit-text-shadow: 0px 0px 8px rgba(255, 255, 255, 1);
-ms-text-shadow: 0px 0px 8px rgba(255, 255, 255, 1);
text-shadow: 0px 0px 8px rgba(255, 255, 255, 1);
	word-wrap: break-word;
	white-space: pre-wrap;
	/*text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7), 0px 0px 2px rgba(0, 0, 0, 1);*/
	line-height:2rem;
	letter-spacing: 0.2rem;
}	
	
.mainTitle:nth-of-type(n+3) {
	position: relative;
	padding:7.5rem 1.7rem!important;
	width:100%;
	box-sizing: border-box!important;
	height:auto;
	background-image:url("../img/059.jpg");
	background-position:center top;
	background-repeat:no-repeat;
	background-size:cover;
	margin:175px auto 100px auto!important;
	font-size:3rem!important;
	text-align: center!important;
	font-weight:600;
	color:#FFFFFF!important;
	text-shadow:none;
	word-wrap: break-word;
	white-space: pre-wrap;
	/*text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7), 0px 0px 2px rgba(0, 0, 0, 1);*/
	line-height:2rem;
	letter-spacing: 0.2rem;
}
		
.mainTitle:after {
	position: absolute;
	content: "Nexus";
	top: -50px;
	left: 40%;
	right:40%;
	width:auto!important;
	align-content: center;
	font-weight:400;
	background:rgba(159,152,122,1.00);
	clip-path: polygon(65% 30%, 100% 0, 100% 0, 70% 100%, 35% 70%, 0 100%, 0 100%, 30% 0);
	font-size: 1.5rem;
	color: #FFFFFF;
	padding: 3rem;
	letter-spacing: 0.25rem!important;
	line-height:1rem!important;
}	

.mainTitle > .red{
	font-size:4.0rem;
	color:rgba(184,25,28,1.00);
	}	
/*	
.mainTitle > .top-sub{
	font-size:1.0rem!important;
	}*/
	
.mainTitle > .first-top-sub{display: block; margin-top:20px;margin-left:35%;text-align: left;font-size:1.3rem!important;line-height: 2.2rem;}	
.mainTitle > .top-sub:nth-of-type(1){font-size:1rem!important;}		
.mainTitle > .top-sub:nth-of-type(n+2){display: block; margin-top:20px;margin-left:38%;text-align: left; font-size:1.5rem!important;line-height: 2.2rem;}		
.mainTitle > .top-sub-second{font-size:1.1rem!important;letter-spacing:0.3rem;}	

.mainTitle a {
    width: auto;
    margin:0 auto;
    text-align: center;
    padding:2px;
    background-color: #ffffff;
    color:#DC1992;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.2s;
}
  
/* マウスオーバー時 */
.mainTitle a:hover{
       margin-top: 0;
  box-shadow: 0 2px 0 #666666;
    }


.map {margin:0px 0 0px 0; padding:0;
position: relative;
padding-bottom: 20%; /*これが縦横比*/
height: 0;
overflow: hidden;
}
.map iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height:100% !important;
   filter: grayscale(100%);
   transition: all 0.7s ease;	
}
.note-embed {
width:40%; height:auto; margin:0 30%; 	
}
	
.note-embed iframe {
width:40%; height:auto; margin:0 30%; 
}	
		
	

#page-top {
position: fixed;
bottom:120px;
right: 20px;
Z-index:9999;opacity:1;
justify-content: center;
align-items: center;	
}

#page-top a {
justify-content: center;
align-items: center;
display: inline-block;
width:60px;
height:60px;
}
	
#page-top a:hover {
 transform: scale(1.1);
}
	
#page-top a{font-size:50px; padding:5px;
background:rgba(62,59,45,1.00);
  border: none;
 padding-bottom: 8px;
  position: relative;	
}

#page-top a::before {
  background: #FFFFFF;
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

#page-top a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
	
	
#Tel {
    position: fixed;
    bottom:0;width:100%;height:100px;
    right:0;box-sizing: border-box;
Z-index:30;opacity:1;
display: flex;
 justify-content: center;
  align-items: center;
    background:center center no-repeat;
	background-color:rgba(159,152,122,1.00);
	/*box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);*/
}
	
	.box1{
    font-weight: bold;
    text-align: center;
    margin:0;
    padding:10px 2px;
	box-sizing:border-box;
		vertical-align:middle;
    width:50vw;height:98px;
	display: block;
	text-decoration: none;
background: linear-gradient(135deg,  #ede389 0%,#fffde0 50%,#e5de57 50%,#fffcdb 99%);
	color:#3D3D3D!important;
	transition: 0.5s;
	border:2px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;
		font-size:1.9rem;
		line-height:2.4rem;
	}
	
	.box2{
    font-weight: bold;
    text-align: center;
background: linear-gradient(135deg,  #9dd53a 0%,#a1d54f 50%,#80c217 51%,#7cbc0a 100%);
	color:#3D3D3D!important;
    margin:0;
    padding:10px 2px;
	vertical-align:middle;
	box-sizing:border-box;	
    width:25vw;height:98px;
		display: block;
	border:2px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;		font-size:1.9rem;
		line-height:2.4rem;
	}
	
	.box3{
    font-weight: bold;
    text-align: center;
background: linear-gradient(135deg,  #cb60b3 0%,#c146a1 50%,#a80077 51%,#db36a4 100%);
	color:#FFFFFF!important;
    margin:0;
    padding:10px 2px;
		vertical-align:middle;
	box-sizing:border-box;	
    width:25vw;height:98px;
		display: block;
	border:2px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;		font-size:1.9rem;
		line-height:2.4rem;
	}
	
	.box1 span , .box2 span , .box3 span{
font-size:2.6rem;
	}	
	
	.box4{
    font-weight: bold;
    text-align: center;
background:rgba(245,238,216,1.00);
	color:#3D3D3D!important;
    margin:0;
    padding:10px 2px;
		vertical-align:middle;
	box-sizing:border-box;	
    width:25vw;height:58px;
		display: block;
	border:2px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;
	}
	
	
#Tel a:hover {
    text-decoration: none;color:#F3E29C!important;
    background:#FFFFFF;
}
	
.contactsubtextTitle{
	margin:0px 0 50px 0;
	color:#5A7064;
	text-align:center!important;
	font-size:1.1rem;
	width:100%;
	min-width:100%;
	height:auto;
	box-sizing:border-box;
	border-bottom:2px solid #FFFFFF;
	-webkit-text-shadow:1px 1px 3px #666666;
  text-decoration: none;
}	
	
.jumpButton{position: relative;
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 60%;
	margin: auto;
	padding: 4rem 4rem;
	font-size:2.5rem;
	font-weight: bold;
	background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%);
	border-radius: 100vh;
	color: #333;
	border: 1px solid #999;
	text-shadow: 0 1px #fff;
	box-shadow: 0 3px 2px 1px #fcfcfc, 0 4px 6px #cecfd1, 0 -2px 2px #cecfd1, 0 -4px 2px #eee, inset 0 0 2px 2px #cecfd1;
	transition: 0.5s;
}
.jumpButton::after {
display: block;
content: "contact";
position: absolute;
top: 60%;
right:45%;
left:45%;
width:10%;
height: 0;
margin: 15px 0 0 0;
	color:rgba(55,55,55,1.00);font-size:1.5rem;
/*-webkit-transform: rotate(45deg);
        transform: rotate(45deg);*/
}
	
.jumpButton002{position: relative;
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 60%;
	margin: auto;
	padding: 4rem 4rem;
	font-size:2.5rem;
	font-weight: bold;
background: linear-gradient(to bottom,  rgba(210,255,82,1) 0%,rgba(145,232,66,1) 100%); 
	border-radius: 100vh;
	color: #333;
	border: 1px solid #999;
	text-shadow: 0 1px #fff;
	box-shadow: 0 3px 2px 1px #fcfcfc, 0 4px 6px #cecfd1, 0 -2px 2px #cecfd1, 0 -4px 2px #eee, inset 0 0 2px 2px #cecfd1;
	transition: 0.5s;
}
.jumpButton002::after {
display: block;
content: "contact";
position: absolute;
top: 60%;
right:45%;
left:45%;
width:10%;
height: 0;
margin: 15px 0 0 0;
	color:rgba(55,55,55,1.00);font-size:1.5rem;
/*-webkit-transform: rotate(45deg);
        transform: rotate(45deg);*/
}	
	
	
.jumpButton_top{
	
box-sizing:border-box;display: block;width:60%;height:auto;
position: relative;
padding:3% 0;
	margin:70px 20%;
background:rgba(69,239,0,1.00);
color:#FFFFFF;
font-size: 1.7rem;
	font-weight:650;
	letter-spacing:0.1rem;
text-decoration: none;
border-radius: 100vh;
	border-bottom: 7px solid green;
	line-height:3rem;
	text-shadow:1px 1px 3px #000000;
}
	
.jumpButton_top span{
	
font-size:3rem;
}	
	
	
.jumpButton_top::after {
display: block;
content: "";
position: absolute;
top: 50%;
right: 50px;
width: 0;
height: 0;
margin: -15px 0 0 0;
border-top: 30px solid #FFFFFF;
border-left: 30px solid transparent;
-webkit-transform: rotate(45deg);
        transform: rotate(45deg);
}	
	
	
.breadcrumb {display:none;
	position: absolute;
	top:85px; left:0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.breadcrumb li {
  position: relative;
  display: inline-block;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
  margin-right: 0.8em;
}

.breadcrumb li:after {/*三角の部分*/
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-style: solid;
  border-color: transparent;
  border-left-color: #FFFFFF;/*背景色*/
  border-width: 14px 12px;
  width: 0;
  height: 0;
}

.breadcrumb li a {
  display: inline-block;
  padding: 0 3px 0 7px;
  height: 28px;
  line-height: 28px;
  text-decoration: none;
  color: #3F2B14;
  background: #FFFFFF;/*背景色*/
  font-size: 13px;
}

.breadcrumb > li a:hover {
transform:none!important;
opacity:1!important;	
  color: #FFF;
}	
	

/*◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆【         】◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇*/
	
.mainWrapper{
	position:relative;
	margin:0; 
	padding:0; 
	box-sizing:border-box;
	width:100%;
	min-width:1080px;
	}		
	
.main_imgBoxCase{
	position:relative;
	 /* 水平・垂直方向の中央揃え */
  display: flex;
  justify-content: center;
  align-items: center;
	background-position:center center;	
	box-sizing: border-box;
	margin:0 auto;
	height:auto;
	min-width:800px;
	background-color:none;/*rgba(255,255,255,0.9);*/
	}	
	
.main_imgBoxCase > .oneitem{
	position:absolute;
	z-index: 2;
	top:450px;
	left:50%;
	width:50%;
	min-width:900px;
	margin:auto;
	background: rgba(255,255,255,0.9);
	background-image: url("../img/logo_small_3.png");
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
	object-fit: cover;
	padding:0;
	box-shadow: 0px 0px 14px -6px #000000;
	transform: translate(-50%, -50%); /* 水平・垂直方向の中央揃え */
	}
	
.main_imgBoxCase > .oneitem > .oneitem_inner{
	display: flex;
	justify-content:space-between; 
	height:auto;
	box-sizing: border-box;
	}
	
.oneitem_box1{
	box-sizing: border-box;
	padding-top:30px;
	width:52%;
	height:auto;
	margin:0;
	justify-content: center;
	align-items: center;
	}

.oneitem_box1 img {
	width:auto;
	height:450px;
	object-fit: cover;
	/*overflow-y: visible;*/
}
	
.oneitem_box2{
	box-sizing: border-box;
	width:45%;
	padding:1.5% 0 1.5% 6%;	display: flex;
	flex-direction: column;
	justify-content:center;
background: linear-gradient(to right,  rgba(0,0,0,0) 1%,rgba(229,215,153,0.65) 100%);

	}
	
.oneitem_box2 .closeUp{
	font-size:1.9rem;
	text-decoration: none;
	box-sizing: border-box;
	padding:0.7rem;
	width:fit-content!important;
	font-weight:550;
	color:rgba(255,255,255,1.00);
	letter-spacing:0.6rem;
	background:rgba(55,55,37,1.00);
	margin:0!important;
	}
	
	
.oneitem_box2 .closeUp:before{
	display:none!important;
	}	
	
.closeUp_top span.red{font-size:5.2rem;color:rgba(150,0,2,1.00);
/* 文字の上に点 */
  background-image: radial-gradient(circle at center, rgba(150,0,2,1.00) 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .5rem; /* 縦方向の位置調整 */
letter-spacing:0.5px;		
	}
	
.closeUp_top{
	margin-top:30px;
	font-size:1.5rem!important;
	line-height:3rem!important;
	}

.closeUp_top2{
	margin:0px 0 15px 0;
	font-size:2.15rem!important;
	font-weight:600;
	letter-spacing:0.3rem;
	}

.textBox > .red{
	font-size:1.3rem;
	color:rgba(150,0,2,1.00);
	letter-spacing: 1px;
	font-weight:650;
	line-height:1.8rem;
	padding:0.7rem 1rem;
	background:rgba(255,253,230,1.00);
display: block;
	border:2px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;
	width:fit-content;
	}
.textBox .red::before {
	content:"●";
  vertical-align: middle;
 display: inline-block;
transform: scale(0.6);
}

.textBox > .red001{
	font-size:1.9rem;
	color:#FFFFFF;
	letter-spacing: 1px;
	font-weight:650;
	line-height:1.8rem;
	padding:1.5rem 1.2rem;
background: linear-gradient(135deg,  #a90329 0%,#8f0222 44%,#6d0019 100%);
display: block;
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;
	width:fit-content;
	}

.textBox .Emphasis{
	display: block;
	border-radius:8px;
	margin:-5px 0;
	box-shadow:3px 2px 2px #666666;
	font-size:1.2rem;
	letter-spacing:0.5px;
	font-weight:650;
	color:#FFFFFF;
	background: linear-gradient(135deg,  #45484d 0%,#000000 100%);
	text-align:left;
	padding:1rem 1.2rem 1rem 0.5rem;width:fit-content!important;
	}

.textBox .Emphasis::before {
	content:"";
  vertical-align: middle;
 display: inline-block;
transform: scale(0.6);
}

	
.textBox .Emphasis_end{
	display: block;
	border-radius:8px;
	margin:20px 0;
	box-shadow:3px 2px 2px #222222;
	font-size:1.6rem;
	letter-spacing:0.5px;
	font-weight:650;
	color:#111111;
background:#fffaf2;
	text-align:left;
	padding:1rem 1rem;width:fit-content!important;
	border:solid 3px #8a8477;
	}
	
	
.theme001{
	box-shadow: 23px 23px 0px -5px #cbcbbe;
	border-radius: 10px;
	background:rgba(252,249,204,1.00);
	padding:2rem 1.3rem;
	}	
	
.rightred{
	display:block;
	width:fit-content;
	font-weight:650;
	font-size:1.3em;
	border-bottom:2px dotted #666666;
	position: relative;
  padding: 0 0 0 30px;
	margin:25px 0!important;
	}
	
.rightred:before { position: absolute;
  top: -40px;
  left: -40px;
	content:url("../img/icon_003.png");
  vertical-align: middle;
 display: inline-block;
transform: scale(0.25);
}	

.oneitem_box2 > .closeUp_top{
	font-size:3.0rem;
	text-decoration: none;
	box-sizing: border-box;
	padding:0.2rem 0 0.6rem 0;
	width:fit-content!important;
	font-weight:600;
	color:#464646;
	letter-spacing:0.3;
		word-wrap: break-word;
	white-space: pre-wrap;
	line-height:1.15;
	}
			
.oneitem_box3{
	box-sizing: border-box;
	width:100%;
	background:rgba(159,152,122,0.95);
	background-image: url("../img/logo_small_2.png");
			background-position:left center;
	background-repeat:no-repeat;
	background-size:contain;
	object-fit: cover;
-moz-text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);
-webkit-text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);
-ms-text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);
text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);
	color:#FFFFFF!important;
	display: flex;
	  justify-content:space-between;
  align-items: center;
	padding:0 10px 0 138px;
	}	

.oneitem_box3 > p{
	font-size:2.22rem;
	text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,1.00);
	box-sizing: border-box;
	padding:0.15rem 1rem 0.5rem 0;
	margin:15px 0;
	width:fit-content!important;
	font-weight:550;
	color:#FFFFFF!important;
		letter-spacing:.3px;
	line-height:2.9rem;
}		
	
.oneitem_box4{
	box-sizing: border-box;
	width:50%;
	height:auto;
	color:#FFFFFF!important;
	display: flex;
	  justify-content: center;
  align-items: center;
	margin:5px 0 0 0;
	padding:0% 0% 0% 0%;
	}	

.oneitem_box4 > .closeUp3{
height:auto;
width:33.3%;
object-fit: cover;
}
	
.oneitem_box4 > .closeUp3 img{
width:100%;height:auto;
}
.oneitem_box4 > p{
	font-size:3.5vw!important;
	text-decoration: none;
	box-sizing: border-box;
	padding:2% 2%;
	margin:0 auto;
	width:fit-content!important;
	font-weight:500;
	color:#FFFFFF!important;
	line-height:1.8rem;
}	
	
	
.s_header_img{display:none;}
		
	
	
.topArea{
	position:relative;
	height:850px; 
	width:100%;
	z-index: 0;
	margin-bottom:0;
	}	
	
.main_img_wrapper{
	position:relative;
	height:850px;
	min-width:1080px;
	}
	
.main_imgBox {
	width:100%;
	margin:0 auto;
	height:300px;
	min-width:1080px;
	background-position:center top;
	background:0 0 no-repeat;
	background-color:none;
	background-size:cover;
	/*padding-top: 33.75%;*/
}
	
.main_img_wrapper .s_main_imgBox{
	display:none;
	}
	
.main_logo {
    z-index:11;
    position: absolute;
    top:30%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    height:300px;
	/*background-color:rgba(255,255,255,0.90);*/
	/*background:rgba(50,42,35,0.17);*/
background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0.0)100%);
box-shadow: -1px 5px 0px rgba(0,0,0,0.2);
}
	
.main_logo_img {
    position: absolute;
    top:75%;
    left:60%;
    transform:translate(-50%,-50%);
    width:125px;
    height:auto;
}	
	
.main_logo_img2 {
    position: absolute;
    top:85%;
    left:50%;
    transform:translate(-50%,-50%);
    width:auto;
    height:auto;
	text-shadow: -1px 3px 0px rgba(0,0,0,0.9);
	letter-spacing: 1.5rem;
}
.main_logo_img2{
   font-size:5rem;
	color:#FFFFFF;
	font-weight:bolder;
	animation:loading 1.5s;
}	
@keyframes loading {
	0% {opacity: 0;}
	50%{opacity: 0;}
	100% {opacity: 1;}
}	
	
.main_img {
    z-index:10;
    opacity: 0;
    width: 100%;
    height: 850px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 9s 0s infinite;
    animation: anime 9s 0s infinite;
	}

    .main_img:nth-of-type(2) {
      -webkit-animation-delay: 1.5s;
      animation-delay: 1.5s; }

    .main_img:nth-of-type(3) {
      -webkit-animation-delay: 3s;
      animation-delay: 3s; }

    .main_img:nth-of-type(4) {
      -webkit-animation-delay: 4.5s;
      animation-delay: 4.5s; }

    /*.main_img:nth-of-type(5) {
      -webkit-animation-delay: 8s;
      animation-delay: 8s; }*/

    /*.main_img:nth-of-type(6) {
      -webkit-animation-delay: 10s;
      animation-delay: 10s; }*/

@keyframes anime {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 0.7;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
         transform: scale(1.03);
                    z-index:9;
    }
    100% { opacity: 0 }
}
@-webkit-keyframes anime {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
         -webkit-transform: scale(1.1);
            z-index:9;
    }
    100% { opacity: 0 }
}	
	
.topfixedArea{
	position:relative;
	height:auto; 
	width:auto;
	box-sizing:border-box;
	}	
	
.Zoomslide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.Zoomslide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 32s linear infinite;
}
	
.Zoomslide-image:nth-child(1) {
  background-image: url(../img/bg_top.png);
  animation-delay: -2s;
}

.Zoomslide-image:nth-child(2) {
  background-image: url(../img/bg_top.png);
  animation-delay: 6s;
}

.Zoomslide-image:nth-child(3) {
  background-image: url(../img/bg_top.png);
  animation-delay: 14s;
}
	
.Zoomslide-image:nth-child(4) {
  background-image: url(../img/005.jpg);
  animation-delay: 22s;
}	

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
	
.topwrapper {
  position: absolute;
	top:30%;bottom:70%;left:0;
  width:100%;
  height:300px;
  overflow: hidden;
}	
	
.topwrapper::before {
   content: '';
   display: block;
   width: 100%;
   height: 100%;
  background-image: url("../img/0001.jpeg");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   -webkit-animation: zoom 20s infinite linear forwards infinite;
   animation: zoom 20s linear forwards infinite;
   animation-fill-mode: forwards;
}

@keyframes zoom {
   0% {
      transform: scale(1.15);
	   opacity: 0;
   }
	5%{opacity: 1}
	90%{opacity: 1}
   100% {
      transform: scale(1.0);
	    opacity: 0;
   }
}
@keyframes zoom-1 {
   0% {
	   opacity: 0;
   }
	5%{opacity: 1}
	95%{opacity: 1}
   100% {
	    opacity: 1;
   }
}		
	
.topwrapper .text{
  /*wrapperの中身を上下中央揃え*/
  position: absolute;
  top: 5%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;padding:2% 5%;
  width:30%;
  height:20%;
  background-color:#3E3A2F;
  text-align: center;color:#FFFFFF;z-index: 99;
	   -webkit-animation: zoom-1 20s linear forwards;
   animation: zoom-1 20s linear forwards;
   animation-fill-mode: forwards;
}	
.topwrapper .text p:nth-of-type(1){
	font-size:1.5rem;
	}
	
.topwrapper .text p:nth-of-type(2){
	font-size:1.0rem;
	}
	
.l-hero {
	position:relative;
	height:85vh;
    overflow: hidden;
}	
	
  .l-hero__bg {
	  animation-name: Topslide,anime;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height:85vh;
	  overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;/*padding-top: 33.75%;*/
    opacity: 0;
	 -webkit-animation: anime 36s 0s infinite,Topslide 36s 0s infinite;
    animation: anime 36s 0s infinite,Topslide 36s 0s infinite;
}
  .l-hero__bg:nth-of-type(2) {      
    -webkit-animation-delay: 6s;
    animation-delay: 6s; }
  .l-hero__bg:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s; }
  .l-hero__bg:nth-of-type(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s; }
  .l-hero__bg:nth-of-type(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s; }
  .l-hero__bg:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s; }
  .l-hero__bg:nth-of-type(2) {      -webkit-animation-delay: 6s;
      animation-delay: 6s;
	}
  .l-hero__bg:nth-of-type(3) {      -webkit-animation-delay: 12s;
      animation-delay: 12s;
	}
  .l-hero__bg:nth-of-type(4) {      -webkit-animation-delay: 18s;
      animation-delay: 18s;
}
  .l-hero__bg:nth-of-type(5) {      -webkit-animation-delay: 24s;
      animation-delay: 24s;
}
  .l-hero__bg:nth-of-type(6) {      -webkit-animation-delay: 30s;
      animation-delay: 30s;
}	
	
@keyframes Topslide {
  0% {
    opacity: 0; }
  8% {
    opacity: 1; }
  17% {
    opacity: 1; }
  25% {
    opacity: 0;
    transform: scale(1.0);
    z-index: 9; }
  100% {
    opacity: 0; transform: scale(1.0);}
	}	
@keyframes anime {
  0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
        transform: scale(1.2) ;
         z-index:9;
    }
    100% { opacity: 0 }
}	
	
.l-hero__bg::before {
   content: '';
   display: block;
   width: 100%;
   height: 100%;
   /*background-image: url("../img/bg_005.png");*/
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   -webkit-animation: zoom 10s 1;
   animation: zoom 10s infinite;
   animation-fill-mode: forwards;
}

.l-hero__inner{
	height:400px;
	width:100%;
	background:#FFFFFF;
	}
	
.wrapper{
	box-sizing:border-box;
	margin:0 auto;
	padding:0;
	width:60%;
	/*min-width:1080px;
	max-width:1180px;*/
	height:auto;
	background:transparent;
	/*background:rgba(255, 255, 255, 0.45);*/
	} 

	
	
/* BOXデザイン005 */
.div_design005 {
	margin:100px auto -100px auto;
	width:960px;
	padding:0 0 0 0;
	box-sizing: border-box; 
	background:#FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.div_design005 .div_design005_contents {
  background: #FFF;
  width: 50%;
  height: auto;
	min-height:100px;
	padding:15px;
  margin:0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.div_design005 .div_design005_contents div{
	display: flex;
		width:100%;
	position:relative;
	}	

.div_design005 .div_design005_contents div img {
	box-sizing: border-box;
  width: 50%;aspect-ratio: 5 / 5;
	object-fit: cover;
	margin-bottom:20px;
}

.number001::before {
	margin-right: 0px;
	position: absolute;
	top: 10px;
	left: 10px;
	content: "1";
	font-size:3rem;
	transform: scale(1);
	color:#FFFFFF;
	display:block;
	padding:10px 15px;
	background:#555555;
}
.number002::before {
	margin-right: 0px;
	position: absolute;
	top: 10px;
	left: 10px;
	content: "2";
	font-size:3rem;
	transform: scale(1);
	color:#FFFFFF;
	display:block;
	padding:10px 15px;
	background:#333333;
}
.number003::before {
	margin-right: 0px;
	position: absolute;
	top: 10px;
	left: 10px;
	content: "3";
	font-size:3rem;
	transform: scale(1);
	color:#FFFFFF;
	display:block;
	padding:10px 15px;
	background:#222222;
}
.number004::before {
	margin-right: 0px;
	position: absolute;
	top: 10px;
	left: 10px;
	content: "4";
	font-size:3rem;
	transform: scale(1);
	color:#FFFFFF;
	display:block;
	padding:10px 15px;
	background:#000000;
}		
	
	
.div_design005 .div_design005_contents > .text_005{
  margin:10px 0!important;
	width:100%;
  padding: 1.5rem 1.5rem!important;
  display: block;
  text-align: left;
	box-sizing: border-box;
	line-height:1.6em;
	font-size:0.95rem!important;
	font-weight:550!important;
	background:rgba(255,253,230,1.00);
	border:2px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;
	word-wrap: break-word!important;
	white-space: pre-wrap!important;
}
	
.div_design005 .div_design005_contents div > .firsttext_005 {
  margin: 0;
  padding:25% 0 0 0.5rem;
  display: block;
  text-align: left;
	box-sizing: border-box;
	line-height:1.8rem;vertical-align: middle!important;
	font-size:1.25rem;
	letter-spacing:1.5px;
	font-weight:585;
}	
	
	

	
/*005 end*/	
	

/* BOXデザイン004 */
.div_design004 {
	margin:100px auto;
	width:960px;
	padding:0 0 0 0;
	box-sizing: border-box; 
	background:#FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
flex-direction: row;
}
.div_design004 .div_design004_contents {
  background: #FFF;
  width: 300px;
  height: auto;
	min-height:100px;
	/*padding-right:10px;*/
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
	border-right:1px solid rgba(231,231,231,1.00);
}
	

	
	
	
.div_design004 .div_design004_contents img {
  width: 100%;
  height: 250px;
	object-fit: cover;
}
.div_design004 .div_design004_contents p:nth-of-type(1) {
  font-size: 1.0rem;font-weight:600;
  width: auto;
  margin: 0;
  padding: 2rem 1rem;
  display: block;
  text-align: center;
	color:rgba(50,42,35,1.00);
}
.div_design004 .div_design004_contents p:nth-of-type(2) {
  font-size: 0.75rem;font-weight:400;
  width: auto;
  margin: 0;
  padding: 2rem 1rem;
  display: block;
	word-wrap: break-word;
	white-space: pre-wrap;
  text-align: left;line-height:180%!important;
	color:rgba(50,42,35,1.00);
}	
/* BOXデザインカラム */
.div_design {
	margin:100px auto;
	width:100%;
	padding:0 0 0 0;
	box-sizing: border-box; 
  display: -webkit-box;
  display: -ms-flexbox;
  display:block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.div_design .div_design_contents {
  background: #FFF;
  width:100%;
  height: auto;
	min-height:100px;
  margin: 15px 0;
  display: flex;	box-sizing: border-box;
}
	
.div_design .div_design_contents > .div_side > p .red{
	font-size:3rem;
	color:rgba(150,0,2,1.00);
	}		
	
.div_design .div_design_contents img {
  width: 40%;
  height: 400px;
	object-fit: cover;
}
.div_design .div_design_contents p:nth-of-type(1)  {
  font-size: 1.4rem;font-weight:580;	box-sizing: border-box; 
  width:100%;padding-top:20px;
line-height:180%;
  display: block;
  text-align:left;color:rgba(50,42,35,1.00);margin-bottom:20px;
}
.div_design .div_design_contents p:nth-of-type(2)  {
  font-size: 1rem;font-weight:450;	box-sizing: border-box; 
  width:100%;line-height:180%;
color:rgba(50,42,35,1.00);
  display: block;
  text-align:left;
}	
.div_design .div_design_contents .div_side {
box-sizing:border-box;
  width:50%;
  margin:10px 5% 10px 5%;
  padding:0;
  display: block;
height:auto;word-wrap: break-word;
	white-space: pre-wrap;
}
.div_side p {
font-weight:550!important;
word-wrap: break-word;
white-space: pre-wrap;
}
	
.div_side .Emphasis{
	display: block;
	border-radius:8px;
	font-size:1.1em;
	letter-spacing:0.5px;
	font-weight:650;
	color:#FFFFFF;
	margin-bottom:20px;
background: linear-gradient(135deg,  #cc0000 0%,#cc0000 100%); 

	text-align:left;
	padding:0.5rem;
	}	
	
/* BOXデザインカラム */
.div_design001 {
	margin:100px auto;
	width:960px;
	padding:0 0 0 0;
	box-sizing: border-box; 
  display: -webkit-box;
  display: -ms-flexbox;
  display:block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.div_design001 .div_design001_contents {
  background: #FFF;
  width:100%;
  height: auto;
	min-height:100px;
  margin: 0px;
  display: flex;padding:20px;
}
.div_design001 .div_design001_contents img {
  width: 40%;
  height: 250px;
	object-fit: cover;
}
.div_design001 .div_design001_contents p:nth-of-type(1)  {
  font-size: 1.4rem;font-weight:580;
  width:100%;
  margin: 0 0 20px 20px;
  display: block;
  text-align:left;
}
.div_design001 .div_design001_contents p:nth-of-type(2)  {
  font-size: 0.8rem;font-weight:580;
  width:100%;
  margin: 0 0 20px 20px;
  display: block;
  text-align:left;
}	
.div_design001 .div_design001_contents .div_side {
box-sizing:border-box;
  width:60%;
  margin: 0;
  padding:20px 0px 20px 0px;
  display: block;
height:auto;background:rgba(255,248,233,1.00);
}

.div_design001 .div_design001_contents > .acbox{
  width:60%;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0px auto 30px auto; /* ボックス全体の位置調整 */
}

.div_design001 .div_design001_contents > .acbox label{
  width: 100%;
	margin:0 auto;
  font-size: 1.4rem; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #202020; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:25px;box-sizing: border-box;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
}

.div_design001 .div_design001_contents > .acbox label:hover{
	background: rgba(86,74,58,1.00); /* ラベルにマウスを乗せた時の背景色 */
	color:#FFFFFF; 
	font-weight: bold;
}

.div_design001 .div_design001_contents > .acbox input{
  display: none;
}

.div_design001 .div_design001_contents > .acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -10px;
}

.div_design001 .div_design001_contents > .acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.div_design001 .div_design001_contents > .acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.div_design001 .div_design001_contents > .acbox input:checked ~ div{
  height: auto;box-sizing:border-box;
  padding: 0px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #FFFFFF; /* 開いた部分の背景色 */
  opacity: 1;
}

.div_design001 .div_design001_contents > .acbox input:checked ~ label {
  background: #464141; /* クリック後のラベルの背景色 */
}

.div_design001 .div_design001_contents > .acbox > .acbox-under{
	width:100%;
	margin:0 auto;
	line-height:180%;box-sizing: border-box;
  font-size:0.8rem; /* 開いた部分の文字サイズ */
text-align:left;	
  color: #555555; /* 開いた部分の文字色 */
}

.div_design002 {
	margin:100px auto;
	width:960px;
	padding:0 0 0 0;
	box-sizing: border-box; 
  display: -webkit-box;
  display: -ms-flexbox;
  display:block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.div_design002 .div_design002_contents {
  background: #FFF;
  width:100%;
  height: auto;
	min-height:100px;
  margin: 0px;
  display: flex;padding:20px;
}
.div_design002 .div_design002_contents img {
  width: 30%;
  height: 250px;
	object-fit: cover;
}
.div_design002 .div_design002_contents p:nth-of-type(1)  {
  font-size: 1.4rem;font-weight:580;
  width:100%;
  margin: 0 0 20px 20px;
  display: block;
  text-align:left;
}
.div_design002 .div_design002_contents p:nth-of-type(2)  {
  font-size: 0.8rem;font-weight:580;
  width:100%;
  margin: 0 0 20px 20px;
  display: block;
  text-align:left;
}	
.div_design002 .div_design002_contents .div_side {
box-sizing:border-box;
  width:60%;
  margin: 0;
  padding:20px 0px 20px 0px;
  display: block;
height:auto;background:rgba(255,248,233,1.00);
}

.div_design002 .div_design002_contents > .acbox{
  width:70%;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0px auto 30px auto; /* ボックス全体の位置調整 */
}

.div_design002 .div_design002_contents > .acbox label{
  width: 100%;
	margin:0 auto;
  font-size: 1.4rem; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #202020; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:25px;box-sizing: border-box;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
}

.div_design002 .div_design002_contents > .acbox label:hover{
	background: rgba(86,74,58,1.00); /* ラベルにマウスを乗せた時の背景色 */
	color:#FFFFFF;  
	font-weight: bold;
}

.div_design002 .div_design002_contents > .acbox input{
  display: none;
}

.div_design002 .div_design002_contents > .acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -10px;
}

.div_design002 .div_design002_contents > .acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.div_design002 .div_design002_contents > .acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.div_design002 .div_design002_contents > .acbox input:checked ~ div{
  height: auto;box-sizing:border-box;
  padding: 0px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #FFFFFF; /* 開いた部分の背景色 */
  opacity: 1;
}

.div_design002 .div_design002_contents > .acbox input:checked ~ label {
  background: #464141; /* クリック後のラベルの背景色 */
}

.div_design002 .div_design002_contents > .acbox > .acbox-under{
	width:100%;
	margin:0 auto;
	line-height:180%;box-sizing: border-box;
  font-size:0.75rem; /* 開いた部分の文字サイズ */
	text-align:left;
	word-wrap: break-word;
	white-space: pre-wrap;	
  color: #555555; /* 開いた部分の文字色 */
}	

.div_design002 .div_design002_contents > .acbox > .acbox-under th{
	width:40%;
}
	
.catalog {	 /*コレ*/border-spacing: 10px;
	margin:0px auto 0px auto;
	box-sizing:border-box;
	border:0.5px solid #f2f2f2;
	box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);
	color:#040000;
	width:100%;
	letter-spacing:0.1rem;
	font-size:0.8rem;
}
.catalog div table{width:100%;border-collapse: separate!important; border-spacing: 0px 5px!important; }	

.catalog  th,
.catalog  td {border-bottom:0.5px solid #F1F1F1;
padding: 20px 0px;vertical-align:middle;
/*border-spacing: inherit 2px;	*/
	line-height:150%;
}
.catalog tr:nth-child(even) {
	background: #FFFFFF;
}

.catalog tr:nth-child(odd) {
	background: rgba(251,251,251,1.00);
}	
.catalog .th-center{text-align:center!important;}	
.catalog td {padding-left:20px;width:80%;border-left:solid 10px rgba(119,105,86,1.00);

background-color: #FFFFFF;
}
.catalog th {
	font-weight:normal;
	box-sizing:border-box;
	letter-spacing: 0.1rem;
	width:20%; 
	padding-left:20px;
	border-left:solid 10px #666666;
	color:#040000;
}

@media screen and (max-width: 767px) {
.catalog,
.catalog tr,
.catalog td,
.catalog th {display:block;}
.catalog th {width:auto;}
}		

.columnButton{
	display:block;
	padding:3%; 
	height:auto; 
	width:auto; 
	background:#0E1780;
	}	
	
.heading01 {
	position: relative;
	font-size: 250%!important;
	text-align: center;
	box-sizing: border-box;
	margin:20px auto 20px auto;
	letter-spacing:0.5rem;
	color:#4A2828;
}

.heading01::before {
	content: attr(data-number);
	display: block;
	margin-bottom: 100px;
	color: #4A2828;
	font-size: 50%!important;
}

.heading01::after {
	content: '';
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 25px;
	background-color: #4A2828;
}
/*topside*/
	
.topside {
	width:100%;
	height:auto;
	padding:0 0 0 0;
	box-sizing:border-box;
	background:rgba(255,255,255,0.0);}
	
.topside > p{
	color:#555555;
	box-sizing:border-box;
	text-shadow:1px 1px 0 #FFFFFF;
	letter-spacing:0.1em;
	line-height:200%;
	font-size:0.85rem;
	width:80%;
	margin:30px 10%;
	}

.topside > .imgBox{
	width:80%;
	margin:50px 10%;
	}	

.topmain,.topside {
	border-radius: 10px;
}		
	
.topside > .sideText{
	font-size:0.85rem;
	padding:2% 2% 2% 20%;
	width:80%;
	margin:0 10% 0 10%;
	box-sizing: border-box;
	letter-spacing:0.1rem;line-height:200%;
	text-align:left;
	word-wrap: break-word;
	white-space: pre-wrap;
	}
	
.topside > .subtextTitle {
	box-sizing: border-box;
	position: relative;
	margin:30px auto 30px auto;
	padding:60px 0 60px 100px;
	width:100%!important;
	vertical-align: middle;
	text-align:center;
	border-radius:none!important;
	color: #666666!important;
	border-bottom:1px solid rgba(33,113,188,1.00);
	font-size:1.6rem!important;
	letter-spacing:0.2em;
	text-shadow:none!important;
/*box-shadow: 5px 2px 10px 2px #060606;*/
	}

.topside > .subtextTitle::before {
	margin-right: 20px;
	position: absolute;
	top: -10px;
	left: -40px;
	content: url("../img/logo.png");
	transform: scale(0.5);
	color:#19499c;
}

.subtextTitle > .stt_small{
	font-size:0.5em;
	margin-left:20px;
	color: #4F5052;
	}	
	
.sideTitle{	
	box-sizing: border-box;
	text-align: center;
	position: relative;
	width:100%;
	margin:0 auto;
	padding-left:0;/*アイコン分のスペース*/
	line-height: 1.4;
	color:rgba(50,42,35,1.00);
	font-weight:600;
}
	
.sideText{
	font-size:0.8rem;
	padding:0;
	box-sizing: border-box;
	letter-spacing:0.0rem;
	height:auto;
	min-height:280px;
	}
	
.subtextTitle {
	box-sizing: border-box;
	position: relative;
	margin:30px auto 30px auto;
	padding:20px 0 20px 100px;
	width:100%!important;
	vertical-align: middle;
	color: #19499c!important;
	/*border-radius: 25px 0 0 25px;*/
	/*background: #f7f7f7;*/
	font-size:1.4rem!important;
	letter-spacing:0.2em;
	text-shadow:none!important;
	box-shadow: 5px 0px 5px -15px #4a5559;
	}

.subtextTitle::before {
	margin-right: 20px;
	position: absolute;
	top: -115px;
	left: -100px;
	content: url(../img/favicon.png);
	transform: scale(0.2);
	color:#19499c;
}
	
.subsideTitle {
	box-sizing: border-box;
	position: relative;
	margin:0 auto;
	padding:0px 0 0px 140px;
	width:100%!important;
	vertical-align: middle;
	color: #19499c!important;
	/*border-radius: 25px 0 0 25px;*/
	/*background: #f7f7f7;*/
	font-size:1.1rem!important;
	letter-spacing:0.2em;
	text-shadow:none!important;
	box-shadow: 5px 0px 5px -15px #4a5559;
	}

.subsideTitle::before {
	margin-right: 0px;
	position: absolute;
	top: 0px;
	left: 100px;
	content: "■";
	transform: scale(1.0);
	color:#19499c;
}		

.secondArea{
	margin-top:100px;
	border-top:2px dotted rgba(233,233,233,1.00);
	width:100%;
	height:auto;
	box-sizing: border-box;
	padding:0% 5% 0% 5%; 
	background:rgba(252,252,252,1.00);
	}	

.secondArea > .closeUp{
	font-size:1.1rem;
	/*background: linear-gradient(180deg, rgba(223,208,172,1) 0%, rgba(60,51,8,1)100%);	*/
	text-decoration: none;
    border-bottom: 3px solid rgba(21,76,160,1.00);
	box-sizing: border-box;
	padding:1rem;
	margin:0 auto;
	width:fit-content!important;
}
	
.secondArea > .w_button {
   margin:50px 30%!important;
	width:40%!important;
	background-color:#A60E10;
}
	
.firstArea{
	margin-top:100px;
	border-top:2px dotted rgba(233,233,233,1.00);
	width:100%;
	height:auto;
	box-sizing: border-box;
	padding:0% 5% 5% 5%; 
	background:rgba(251,251,251,1.00);
	}		
	
.contentsbox {
    width: 80%;
	height:auto; 
	min-height:100vh;
    margin: 0 10%;  
	background:transparent;
	/* background:url("../img/bg_001.png")center center no-repeat;object-fit: cover; /* この一行を追加するだけ！ */
	position: relative;
	background-size: cover;
	box-sizing:border-box;
	}

.contents {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
	height:auto;width:100%;box-sizing:border-box;
}

.contents_inner {
	box-sizing: border-box;
	width:100%;
	min-width: 1080px;
	height:auto;min-height:100vh;
	margin: 0 auto;
	padding:0;
	/*background:rgba(255,255,255,0.0);*/
	text-align:left;
	/*box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);*/
}

.contents_inner p{
	color:#607774;
	line-height:160%;
	text-align:left;
}	
	
.contentsImg {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 80px 0;
}
	
.contentsImg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 120%;
	height: 80%;
	margin: 3% -10% 0;
	background:url("../img/sample_011.jpg") center center no-repeat;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	z-index: -1;
}
	
.contentsImg_inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 10px 120px;
  text-align: center;
}	
	
.object {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 0;
  transform: skew(-20deg);
}
.object img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    transform: translate(-50%, -50%) skew(20deg);
  }

.maintextTitle {
	text-align:center!important;
	margin:0px auto 10px auto!important;
  position: relative;
	font-size:1.5rem;
	width:100%;
	height:auto;
	box-sizing:border-box;
	letter-spacing:0.2rem;
  padding: 2.0rem 0;  
	text-decoration: none;
	/*background:url("../img/logo.png") center center no-repeat;*/
	object-fit:cover;
/*background-image:url(../img/titlebg_001.jpg);  
	background-image:center center no-repeat;
	background-size:contain;
	object-fit: cover;*/	/*object-fit: cover; /* この一行を追加するだけ！ */
	z-index:2;  
}

.mt_under{
	text-align:center; 
	box-sizing: border-box;
	margin:0 auto;
	font-size:80%!important;
	}	
	
.maintextTitle:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -40px;
  border: 40px solid transparent;
  border-top: 40px solid #582021;
}

.maintextTitle:after {
  content: "";
  display: block;
display:none;	
  height: 3px;
	margin-top:10px;
	background:#FFFFFF;  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  /*background: -webkit-linear-gradient(to right, rgb(230, 200, 200), transparent);*/
  /*background: linear-gradient(to right, rgb(58,88, 133), transparent);*/
}	
	
.newsWrapper{position:absolute;
	bottom:30px;
	left:30px;
	box-sizing:border-box;
	margin:0px auto 0px auto;
	padding:0;
	width:30%;
	height:auto;
	font-size:0.75rem;
	z-index: 9999!important;
	/*min-width:1080px;
	max-width:1180px;*/
	background:#FFFFFF;
	/*background:rgba(255, 255, 255, 0.45);*/
	box-shadow: 2px 2px 6px -4px #777777;
	border-radius: 6px;
	} 	

.news-title {
	text-align:left;
	margin:0px auto 0px 20px!important;
	position: relative;
	width:100%;
	height:auto;
	box-sizing:border-box;
	letter-spacing:0.2rem;
	padding: 1rem 0;  
	text-decoration: none;
	/*background:url("../img/logo.png") center center no-repeat;*/
	object-fit:cover;
/*background-image:url(../img/titlebg_001.jpg);  
	background-image:center center no-repeat;
	background-size:contain;
	object-fit: cover;*/	/*object-fit: cover; /* この一行を追加するだけ！ */
	z-index:2; 
	color:#327A90;
}

.mt_under{text-align:center; box-sizing: border-box; margin:0 auto;font-size:80%!important;}

.news-title:before {
  content: "";
  position: absolute;
	font-size:1.1rem;
  top:30%;
  left:60px;
  margin-left: 30px;
  /*border: 30px solid transparent;*/
  /*border-top: 30px solid #111111;*/
}
.news-title:after {
  content: "";
  display: block;
display:none;	
  height: 3px;
	margin-top:10px;
	background:#FFFFFF;  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  /*background: -webkit-linear-gradient(to right, rgb(230, 200, 200), transparent);*/
  /*background: linear-gradient(to right, rgb(58,88, 133), transparent);*/
}	
	
.news-list{font-size:0.8rem;
  list-style: none outside;
  margin: 10px auto 10px auto;
  padding: 0;
	height:auto;
	min-height:auto;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  width:auto;
  font-size: 13px;
  color: #585858;
  padding: 0 0px 0 0;  line-height: 1.5rem;

}
.news-list .item .category{
  margin: 0;
  width:auto;
  padding: 0 10px;
}
.news-list .item .category span{
  background:rgba(67,67,67,1.00);
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 0px 10px;
  font-size: 12px;
  line-height: 1.5rem;
}
.news-list .item .title{
  margin: 0;
  width: 100%;  line-height: 1.5rem;

}
.news-list .item a:hover .title{
  color: #327A90;
}

@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}

.callNumberimg{
	position:absolute; 
	top:50px; 
	right:20px; 
	height:auto;
	width:auto; 
	}
.infoImg {
  position: relative;
  width:100%;
	height:500px;
	margin:0px auto;
	padding:0;
  box-sizing: border-box;
}
.infoImg img {
	width:100%;height:auto;margin:0;padding:0;object-fit: cover; /* この一行を追加するだけ！ */	}	
	
/*flexbox*/	
	
@media ( min-width : 801px ){
	
.columnCase{background:rgba(67,64,59,1.00);
		width:100%;
		height:auto;
		margin:0px auto; 
		padding:10%; 
		box-sizing:border-box;
		position:relative;
	}	
	
/*---------kaisha----------*/	
	
	
.kaisha {	
	margin:30px 25% 100px 25%;
	box-sizing:border-box;
	/*box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);*/
	color:#040000;
	width:50%;
	letter-spacing:0.1rem;
	min-width:600px;	border-collapse: separate;
	border-radius:15px!important;
	border-spacing: 0;
	box-shadow: 10px 10px 0px 1px #808080;
}

div table{width:60%; margin:0 20%;}	
	
table tr:first-child th {
  border-radius: 15px 15px 0 0;
}/*
table tr:first-child td {
  border-radius: 0 15px 0 0;
}*/
table tr:last-child th {
  border-radius: 0 0 0 15px;
}
table tr:last-child td {
  border-radius: 0 0 15px 0;
}	

.kaisha th,
.kaisha td {
	border-bottom:0.5px solid #F1F1F1;
	padding: 30px 25px;
	vertical-align:middle;	
	line-height:150%;
}

.th-center{text-align:center!important;}

.kaisha tr:nth-child(even) {
	background: #FFFFFF;
}

.kaisha tr:nth-child(odd) {
	background: rgba(251,251,251,1.00);
}	
	
.kaisha th {
	background:rgba(100,100,78,1.00);
	width:30%; 
	font-weight:normal;
	box-sizing:border-box;
	letter-spacing: 0.1rem;
	padding-left:20px;
	color:#FFFFFF;
}
	
.kaisha td { 
	text-align:left!important;

	background-color:rgba(241,241,241,1.00);
}	

@media screen and (max-width: 800px) {
.kaisha,
.kaisha tr,
.kaisha td,
.kaisha th {display:block;}
.kaisha th {width:auto;}
}


.div_design004 .div_design004_contents .kaisha {	
	margin:0px auto;
	box-sizing:border-box;

box-shadow: 10px 10px 0px 1px #808080;
	color:#040000;
	width:100%;
	font-weight:650!important;
	border-collapse: separate;
	border-radius:15px!important;
	border-spacing: 0;
}	
		
.div_design004 .div_design004_contents > .kaisha th,
.div_design004 .div_design004_contents > .kaisha td {
border-left:1px solid rgba(162,162,162,1.00);
border-right:1px solid rgba(162,162,162,1.00);
border-bottom:1px solid rgba(162,162,162,1.00);
border-top:1px solid rgba(162,162,162,1.00);
	padding:1.25rem 0.5rem;
	vertical-align:middle;
	line-height:1.5;
}
	
	
.div_design004 .div_design004_contents > table tr:first-child th {
  border-radius: 20px 0 0 0;
}
.div_design004 .div_design004_contents > table .migi{
  border-radius: 0 20px 0 0;
}
.div_design004 .div_design004_contents > table tr:last-child th {
  border-radius: 0 0 0 20px;
}
.div_design004 .div_design004_contents > table tr:last-child td {
  border-radius: 0 0 20px 0;
}	

.div_design004 .div_design004_contents > .kaisha tr:nth-child(even) {
	background: #FFFFFF;font-size:1.2rem;
}

.div_design004 .div_design004_contents > .kaisha tr:nth-child(odd) {
	background: rgba(251,251,251,1.00);font-size:1.2rem;
}

.th-center{
	text-align:center!important;
	}

.div_design004 .div_design004_contents .kaisha td {
text-align:left!important;width:auto!important;padding-left:15px;
}

.div_design004 .div_design004_contents .kaisha td:nth-of-type(1) {
text-align:left!important;
width:20%!important;

}		
	
.div_design004 .div_design004_contents .kaisha th {
width:30%;
font-weight:600;
box-sizing:border-box;
letter-spacing: 0.1rem;
padding-left:0;
color:#040000;background:rgba(241,244,206,1.00);
}

.div_design004 .div_design004_contents .kaisha td .red {
	display: block;
	width:fit-content;
	box-shadow: 2px 2px 1px #666666;
	color:rgba(213,0,3,1.00); 
	font-weight:600; 
	background:rgba(255,233,39,1.00);
	margin-bottom:10px;
	padding:6px;
	border-radius:6px;
	font-size:0.8em;
}
	
.div_design004 .plan_area{
		width:250px;
  height: auto;
  margin: 0;
	padding:10% 2%;
flex-direction: column;
background:rgba(255,253,230,1.00);
		display: block;
	border:3px solid rgba(79,79,79,1.00);
	border-radius:8px;
	margin-bottom:4px;
	box-shadow:3px 2px #000000;}
	
	
.div_design004 .div_design004_contents .plan_title{
	margin:0 auto;
	box-sizing: border-box;
	padding:0 1%;
	width:auto;
	font-size:2.2rem!important;
	}	
.div_design004 .div_design004_contents .plan_text	{
	font-size:1.25rem!important;
	line-height:0.7rem!important;
	}

	
.div_design005 .div_design005_contents .kaisha {	
	margin:20px auto;
	box-sizing:border-box;
	border:2px solid rgba(195,193,145,1.00);
	box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);
	color:#040000;
	width:100%;

}

.div_design005 .div_design005_contents .kaisha th,
.div_design005 .div_design005_contents .kaisha td {border-bottom:0.5px solid #F1F1F1;
padding:0.5rem;vertical-align:middle;
border-spacing: inherit 1px;	
	line-height:1;
}
.div_design005 .div_design005_contents .kaisha tr:nth-child(even) {
	background: #FFFFFF;font-weight:600;
}

.div_design005 .div_design005_contents .kaisha tr:nth-child(odd) {
	background: rgba(251,251,251,1.00);font-weight:600;
}	
.th-center{text-align:center!important;}

.div_design005 .div_design005_contents .kaisha td {
text-align:left!important;width:auto!important;
border-left:solid 1px rgba(50,42,35,1.00);
background-color: #FFFFFF;
}

.div_design005 .div_design005_contents .kaisha td:nth-of-type(1) {
text-align:left!important;width:20%!important;
border-left:solid 1px rgba(50,42,35,1.00);
background-color: #FFFFFF;
}	
	
.div_design005 .div_design005_contents .kaisha th {width:30%; font-weight:normal;box-sizing:border-box;
letter-spacing: 0.1rem;padding-left:0;
  border-left:solid 1px rgba(50,42,35,1.00);
	color:#040000;
}	
	
/*---------kaisha----------*/	
	
	

	
	
	
	
	
	
	
	
	
	
	
	
	

	
.textArea{
	box-sizing:border-box;
	position:relative;
	text-align:center;
	width:100%;
	min-width:1080px;
	height:auto;
	margin:0 auto;
background:transparent;
	padding-bottom:0px;
	overflow:hidden;
	}

.textArea p{
	line-height:130%!important;
	}
	
.textAreacompany{
	position:relative;
	text-align:center;
	width:100%;
	height:auto;
	margin:10px auto;
	padding:20px;
	line-height:2.0rem;
	font-size:110%;
	letter-spacing:0.5px;
	overflow:hidden;
	color:#676767;
	}
	
.textAreacompany p{
	margin:20px auto;
	}

/*----form area----*/	

.contacttextTitle{
	margin:0 0 40px 0;
	color:#FFFFFF!important;
	text-align:center!important;
	font-size:120%!important;
	width:100%;
	min-width:100%;
	height:auto;
	box-sizing:border-box;
	letter-spacing:0.3rem;
	border-bottom:5px solid #FFFFFF;
	text-shadow:1px 1px 3px #666666;
	-webkit-text-shadow:1px 1px 3px #666666;
  padding: 1em 0em;
  text-decoration: none;	
}
	
#contact {
	margin:20px auto;
	box-sizing: border-box;
  width: 70%;
  height: auto;
  background-color: #FFFFFF;
	color:#4F4F4F;
}	
	
.contactimgBoximg{
width:100%; 
  height:auto;
	}	
	
.contactimgBox img{
	height: 50vh;
	width:100%;
	object-fit: cover;	/*object-fit: cover; /* この一行を追加するだけ！ */
	}	

.section-header {
  text-align: center;
  margin: 0 auto;
  padding-top: 0px;
  margin-bottom: 0px;
  letter-spacing: 6px;
  color: #fff;  background-color: #000;
}
	
/* Contact Page */
.form-group{/*display:flex;justify-content: space-between;*/
	margin:20px auto!important;
	}
input.form-control{
	background-color:#FBFBFB;
	height:50px!important;
	padding:5% auto!important;
	}		
.form-red{
	font-size:0.7rem;margin:0 10px;
	color:#FFFFFF;
	letter-spacing: 0px;
	font-weight:600;
	padding:0.3rem 0.1rem;
	background:rgba(150,0,2,1.00);
	}
.form-control, textarea {
	box-sizing: border-box;
	margin:0px 0;
	padding:5%;
	width:55%;
	line-height:3rem;
  background-color:#FBFBFB;
  color: #5E6166;
  letter-spacing:0.1rem;
	border:none;
	vertical-align: middle;
}
.form-control:focus {
	border-color: #aadbe8;
	outline: 0;
	-webkit-box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.4);
	box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.4);
  background-color:#fff;
}	
p.error, span.error {
  color: red;
}	

.send-button {
  margin-top: 15px;
  height: 40px;
  width: 400px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}
.button {
  width: 400px;
  height: 40px;
  transition: all .2s ease-in-out;
}	
.btn-primary{
	padding:10px; 
	border-radius:10%;
	background:rgba(159,152,122,1.00);color:#FFFFFF;
	}
	
.send-text {
  display: block;
	text-align:center;
  margin-top: 20px;
  letter-spacing: 2px;
}

.button:hover {
  transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
.direct-contact-container {
	width:60%;margin:0 auto;

	min-width:800px;
box-sizing:border-box;
}

/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}

.list-item {
  line-height: 4;
  color: #aaa;
}

.contact-text {
  letter-spacing: 1.9px;
  color: #bbb;
}

.place {
  margin-left: 62px;
}

.phone {
  margin-left: 56px;
}

.gmail {
  margin-left: 53px;
}

.contact-text a {
  color: #bbb;
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover {
  color: #fff;
  text-decoration: none;
}
/*---form----*/	
	
input.form-control{height:30px; padding:0 auto; margin:0;}
div.form-group{margin:0; padding:0;}	
form.main_contact{padding:0;}
div.container{margin-bottom:0!important;padding-bottom:0!important;}
	
.error{
	margin:15px 0;
	}
#main_contact{
	padding:20px;
	}
.form-group{
	margin:15px auto;
	text-align:right;
	}
/*---------------------------------
アコーディオンボックス
--------------------------------*/
.acbox{
  width:80%;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0px auto 30px auto; /* ボックス全体の位置調整 */
}

.acbox label{
  width: 80%;
	margin:0 auto;
  font-size: 18px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #202020; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:25px;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
}

.acbox label:hover{
  background: rgba(81,60,37,1.00); /* ラベルにマウスを乗せた時の背景色 */
	color:#FFFFFF;  font-weight: bold;

}

.acbox input{
  display: none;
}

.acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -10px;
}

.acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.acbox input:checked ~ div{
  height: auto;
  padding: 30px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #F3F4F5; /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #464141; /* クリック後のラベルの背景色 */
}

.acbox-under{width:80%;margin:0 auto;
	line-height:180%;
  font-size: 16px; /* 開いた部分の文字サイズ */
text-align:left;	
  color: #555555; /* 開いた部分の文字色 */
}
	
.contactStyling	{padding-bottom:0px;}
	
/*========= 1文字ずつ出現させるためのCSS ===============*/

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}

}