@charset "utf-8";
/*
construction.css
各ページ固有のCSS
*/

/******************************************

header

*******************************************/

header {
}

@media screen and (max-width: 768px) {
header {
	padding: 0 10px;
}

}

/* nav */

#header{
	position: absolute;
    z-index: 999;/*最前面へ*/
    
    /*はじめの高さを設定*/
	height: 100px;
	width:100%;
	
   /*以下はレイアウトのためのCSS*/
    top:0;

	text-align: center;
	padding: 0;
	margin: 0;
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#header.HeightMin{
	position: fixed;
    z-index: 999;/*最前面へ*/
	height:100px;
	animation: DownAnime 0.5s forwards;
	top:0;
	background-color:#FFFFFF;
	margin: 0;
	border-bottom: 1px solid #e5e5e5;
}
.hd_line{
	border-top: solid 6px #2692e6;
	display: block;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-180px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

#navArea{ 
	width: 1200px;
    height: 60px;
	margin: 0 auto 0 auto;
    padding: 20px 0;
	position: static;
    display: flex;
    justify-content:space-between;
}
#navArea .logo{
	position: relative;
    width: 350px;
    height: 60px;
	border-right: solid 1.5px #FFF;
    text-align: left;
    background-image: url("../img/common/img_hdlogo.png");
    background-size: 310px auto;
    background-repeat: no-repeat;
}

#header.HeightMin #navArea .logo,
#header.header_second #navArea .logo{
	position: relative;
    width: 350px;
    height: 60px;
	border-right: solid 1.5px #222;
    text-align: left;
    background-image: url("../img/common/img_hdlogoB.png");
    background-size: 310px auto;
    background-repeat: no-repeat;
}
#navArea h1{ 
	width: 350px;
    height: 60px;
}
#header.HeightMin #navArea h1,
#header.header_second #navArea h1{ 
	width: 350px;
    height: 60px;
}

nav ul li a{
text-decoration: none;
color: #222;
}
nav ul li a:hover{
text-decoration: none;

}
nav ul{
list-style: none;
display: flex;
justify-content:flex-start;
    width: 610px;
    margin-left: 45px;
}
nav ul li{
padding:15px 0 0 0;
color: #FFF;
    text-align: left;
	width: 110px;
	position: relative;
	cursor: pointer;
 font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 1.5rem;
    letter-spacing:  0.1rem ;
}
nav ul li span{
    display: table-cell;
    color: #FFF;
	font-size: 0.75rem;
	width: 122px;
	position: relative;
	cursor: pointer;
    letter-spacing:normal;
line-height: 1rem;
}
#header.HeightMin nav ul li,
#header.header_second nav ul li{
padding:15px 0 0 0;
color: #222;
    text-align: left;
	width: 110px;
	position: relative;
	cursor: pointer;
 font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 1.5rem;
    letter-spacing:  0.1rem ;
}
#header.HeightMin nav ul li span,
#header.header_second nav ul li span{
    display: table-cell;
    color: #222;
	font-size: 0.75rem;
	width: 122px;
	position: relative;
	cursor: pointer;
    letter-spacing:normal;
line-height: 1rem;
}
#navArea .nav_contact{
    position: relative;
    background-color: #FFF;
    border-radius: 100px;
    width: 200px;
    height: 54px;
    text-align: center;
    margin-top: 2px;
    padding-top: 8px;
 font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 1.2rem;
    letter-spacing:  0.08rem ;
}
#navArea .nav_contact span{
    display: table-cell;
	font-size: 0.7rem;
	position: relative;
	cursor: pointer;
    width: 200px;
    letter-spacing:normal;
line-height: 0.5rem;
}
#header.HeightMin #navArea .nav_contact,
#header.header_second #navArea .nav_contact{
    position: relative;
    background-color: #FFF;
    border-radius: 100px;
    border:solid 1px #222222;
    width: 200px;
    height: 54px;
    text-align: center;
    margin-top: 2px;
    padding-top: 8px;
 font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 1.2rem;
    letter-spacing:  0.08rem ;
}



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

/* nav */
#header{
	position: fixed;
	/*はじめの高さを設定*/
	height: 52px;
	width:100%;
   /*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:none;
	color:#fff;
	text-align: center;
	padding: 6px 16px;
    z-index: 999;/*最前面へ*/
		animation: none;
	margin: 0;
	border-top: none;
}

#header.HeightMin,
#header.header_second{
	position: fixed;
	/*はじめの高さを設定*/
	height: 52px;
	width:100%;
   /*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:#FFF;
	color:#fff;
	text-align: center;
	padding: 6px 16px;
    z-index: 999;/*最前面へ*/
		animation: none;
	margin: 0;
	border-top: none;
 	border-bottom: none;  
}
 
.hd_line{
	display: none;
}
#navArea,
#header.HeightMin #navArea,
#header.header_second #navArea{ 
	width: 100%;
    height: 52px;
	margin: 0 auto;
    padding: 0;
	position: static;
}

#navArea .logo{
	position: relative;
    width: 250px;
    height: 52px;
	border-right: none;
    text-align: left;
    background-image: url("../img/common/img_hdlogo.png");
    background-size: 200px auto;
    background-repeat: no-repeat;
    background-position: left 8px;
}
#header.HeightMin #navArea .logo,
#header.header_second #navArea .logo{
	position: relative;
    width: 250px;
    height: 52px;
	border-right: none;
    text-align: left;
    background-image: url("../img/common/img_hdlogoB.png");
    background-size: 200px auto;
    background-repeat: no-repeat;
    background-position: left 8px;
}
#navArea h1{ 
	width: 350px;
    height: 52px;
}
#header.HeightMin #navArea h1,
#header.header_second #navArea h1{ 
	width: 350px;
    height: 52px;
}
#navArea .nav_contact{
    position: relative;
    background-color: #FFF;
    border-radius: 100px;
    width: 200px;
    height: 54px;
    text-align: center;
    margin-top: 2px;
    padding-top: 8px;
 font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 1.2rem;
    letter-spacing:  0.08rem ;
}
#navArea .nav_contact span{
    display: table-cell;
	font-size: 0.75rem;
	position: relative;
	cursor: pointer;
    width: 200px;
    letter-spacing:normal;
line-height: 1rem;
}
#navArea .nav_contact,
#header.HeightMin #navArea .nav_contact,
#header.header_second #navArea .nav_contact{
    position: relative;
    background-color: #FFF;
    border-radius: 100px;
    border:none;
    width: 100%;
    height: auto;
    text-align: left;
    margin-top: 0;
    padding-top: 0;
 font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 1.2rem;
    letter-spacing:  0.08rem ;
}

    
    
    
nav {
	display: block;
	position: fixed;
	top: 0;
	left: -220px;
	bottom: 0;
	width: 220px;
	background: #FFF;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: 3;
	opacity: 0;
}
.open nav {
	left: 0;
	opacity: 1;
	background-color: #FFFFFF;
}
nav .inner {
	padding: 25px;

}
nav .inner ul,
#header.HeightMin nav .inner ul,
#header.header_second nav .inner ul{
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0 0 0 0;
	width: 100%;
	display: block;
}
nav .inner ul li,
#header.HeightMin nav .inner ul li,
#header.header_second nav .inner ul li{
	position: relative;
	margin: 0;
	border-bottom: 1px solid #fff;
	width: 100%;
	padding:0 0 20px 14px;
	border-right: none;
	text-align: left;
	font-size: 1.4rem !important;
    color: #222;
}
    #navArea .nav_contact span,
nav .inner ul li span,
#header.HeightMin nav .inner ul li span,
#header.header_second nav .inner ul li span{
    color: #222;
}
nav ul li:first-child,
#header.HeightMin nav ul li:first-child,
#header.header_second nav ul li:first-child{
	border-left: none;
	border-top: 1px solid #fff;
}
nav .inner ul li a,
#header.HeightMin nav .inner ul li a,
#header.header_second nav .inner ul li a{
	display: block;
	color: #222;
	padding: 30px 0 10px 0;
	text-decoration: none;
	transition-duration: 0.2s;
}
nav .inner ul li a:hover,
#header.HeightMin nav .inner ul li a:hover,
#header.header_second nav .inner ul li a:hover{
	color: #222222;
}

	
/* .toggle_btn */
.toggle_btn {
	display: block;
	position: fixed;
	top: 10px;
	right: 20px;
	width: 30px;
	height: 30px;
	transition: all .5s;
	cursor: pointer;
	z-index: 3;
}
.toggle_btn span {
	display: block;
	position: absolute;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #FFF;
	border-radius: 4px;
	transition: all .5s;
}
#header.HeightMin .toggle_btn span,
#header.header_second .toggle_btn span{
	display: block;
	position: absolute;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #222222;
	border-radius: 4px;
	transition: all .5s;
}
.toggle_btn span:nth-child(1) {
	top: 4px;
}
.toggle_btn span:nth-child(2) {
	top: 14px;
}
.toggle_btn span:nth-child(3) {
	bottom: 4px;
}
.open .toggle_btn span {
	background-color: #fff;
}
#header.HeightMin .open .toggle_btn span,
#header.header_second .open .toggle_btn span{
	background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
	-webkit-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
	-webkit-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-10px) rotate(315deg);
}
/* #mask */
#mask {
	display: none;
	transition: all .5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .8;
	z-index: 2;
	cursor: pointer;
}
}


/******************************************

footer

*******************************************/

footer{
	background-color: #8b8883;
	color: #FFFFFF;
    padding: 100px 0;
}
footer .footer_cont{
    display: flex;
    width: 1200px;
}
footer .footer_cont a{
	color: #FFFFFF;
}
footer .ft_boxL{ width: 50%; 
    text-align: left;  
    margin:0 auto; 
    padding: 0;  
    position: relative;
}


footer .copyright {
	text-align: center;
	font-size: 0.8rem;
}
footer .ft_service{
    display: flex;
    justify-content: flex-start;
    height: 80px;
}
footer .ft_service div{
 font-family: "Bebas Neue", sans-serif;
  font-weight: 200;
  font-style: normal;
	font-size: 1.4rem;
    letter-spacing:  0.1rem ;
    margin-right: 20px;
    position: relative;
}
footer .ft_sns{
    display: flex;
    justify-content: flex-end;
    height: 80px;
}
footer .ft_sns img{
    width: auto;
    height: 22px;
    margin-left: 20px;
}
footer .ft_policy{
    display: flex;
    justify-content: flex-start;
    font-size: 0.9rem;
}
footer .ft_policy div{
    border-left: 1px solid #FFFFFF;
    padding: 0 20px;
}
footer .ft_policy div:last-child{
    border-right: 1px solid #FFFFFF;
    padding: 0 20px;
}
@media screen and (max-width: 768px) {

footer{
	background-color: #8b8883;
	color: #FFFFFF;
    padding: 30px 0;
}
footer .footer_cont{
    display: block;
    width: 100%;
}

footer .ft_boxL{ 
    width: 100%;
    text-align: left;  
    margin:0 auto; 
    padding: 0;  
    position: relative;
}
footer .copyright {
	text-align: center;
	font-size: 0.7rem;
    margin-top: 20px;
}
footer .ft_service{
    display: flex;
    justify-content: center;
    height: auto;
    margin-top: 20px;
}
footer .ft_service div{
 font-family: "Bebas Neue", sans-serif;
  font-weight: 200;
  font-style: normal;
	font-size: 1.2rem;
    letter-spacing:  0.1rem ;
    margin-right: 8px;
    margin-left: 8px;
    position: relative;
}
footer .ft_sns{
    display: flex;
    justify-content: center;
    height: auto;
    margin-top: 20px;
}
footer .ft_sns img{
    width: auto;
    height: 18px;
    margin-left: 10px;
    margin-right: 10px;
}
footer .ft_policy{
    display: flex;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 20px;
}
footer .ft_policy div{
    border-left: 1px solid #FFFFFF;
    padding: 0 15px;
}
footer .ft_policy div:last-child{
    border-right: 1px solid #FFFFFF;
    padding: 0 15px;
}
    

}

/******************************************

common

*******************************************/

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

#ttl_secondcont{
	background: url('../img/common/bg_ttl.jpg') no-repeat top center ;
background-size: cover;
	background-color: #006cc0;
	height: 300px;
    padding-top: 100px;
    margin-top: 100px;
}
.wd_1200 {
	width: 1200px;
	margin: 0 auto ;
	padding: 0 0 100px 0;
}
.wd_1000 {
	width: 1000px;
	margin: 0 auto ;
	padding: 0 0 100px 0;
}
.wd_1200 a,
.wd_1000 a{
	text-decoration: underline;
}
.wd_1200 a:hover,
.wd_1000 a:hover{
	text-decoration: none;
}
.bg_wh{
    background-color: #FFFFFF;
    padding: 80px 0 30px 0;
}
.bg_beige{
    background-color: #f5f5ec;
    padding: 80px 0 30px 0;
}
.content_block{
    padding-top: 40px;
}
.txt_lh2l{
    line-height: 2rem;
}
#link_2nd{
    margin: 0 0 100px 0;
}

#link_2nd a img{
	opacity: 1;
}
#link_2nd .link_2nd_outer{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content:space-between;
    flex-wrap: wrap;
}
#link_2nd .link_2nd_outer img{
	border-radius: 10px;
	width: 586px;
	height: auto;
	margin-bottom: 28px;
}
#link_2nd .link_2nd_outer .link_2nd_cont{
	position: relative;
filter: drop-shadow(0px 0px 10px #999999);
    margin: 0;
}
#link_2nd .link_2nd_outer .link_2nd_cont .link_2nd_ttl{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
     font-family: "Bebas Neue", sans-serif;
	font-size: 2.6rem;
	font-weight: 600;
    letter-spacing: 0.2rem;
	color: #FFF;

	padding-bottom: 1rem;
}
#link_2nd .link_2nd_outer .link_2nd_cont .link_2nd_sttl{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	font-size: 0.8rem;
	font-weight: 600;
	color: #FFF;
	padding-top: 3rem;
}


.bodytext{
	text-align: left;
	margin: 0 0 20px 0;
	}
.separatorline{
	border-bottom: 2px solid #dcdcdc;
	padding: 50px 0 0 0;
	margin:  50px 0;
}
.imground img{
	border-radius:12px;
	filter: drop-shadow(0 0 0.2rem #8a8a8a);
}
.imground-noshadow img{
	border-radius:12px;
}
.imgcaption{
	margin-top: 10px;
	font-size: 0.9rem;
}
.cont_flex{
	display: flex;
	justify-content: space-between;
	padding: 10px 0 0 0 ;
	margin: 0 0 40px 0;
}
.cont_flex .cont_1-2_L{
	width: 310px;
}
.cont_flex .cont_1-2_R{
	width: 650px;
}
.cont_flex .cont_1-1-1{
	width: 310px;
}
.cont_flex .cont_1-1_L{
	width: 430px;
}
.cont_flex .cont_1-1_R{
	width: 530px;
}
.cont_flex div.flexmb25{
}
.cont_flex div.flexmb15{
}

/******************* Form Parts *******************/
    .check_line{
        width: 100%;
    }
.checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 2em ;
  border: none;
}
.checkbox label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  cursor: pointer;
}
.checkbox label::before, .checkbox label:has(:checked)::after {
  content: '';
}
.checkbox label::before {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background-color: #e2e2dd;
}
.checkbox label:has(:checked)::before {
  background-color: #6f6c67;
}
.checkbox label:has(:checked)::after {
  position: absolute;
  top: 10px;
  left: 9px;
  transform: rotate(45deg);
  width: 3px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
.checkbox input {
  /*display: none;*/
appearance: none;
}

.radio {
    display: flex;
    flex-wrap: wrap;
    gap: .6em 2em;
    border: none;
}

.radio label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}

.radio label::before,
.radio label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}

.radio label::before {
    width: 26px;
    height: 26px;
    background-color: #FFFFFF;
   border: 2px solid #999999;
}

.radio label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    background-color: #6f6c67;
    animation: anim-radio .3s linear;
}

@keyframes anim-radio {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px #6f6c67;
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}

.radio input {
    display: none;
}

.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #424242;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  /*min-width: 230px;*/
  height: 2.8em;
  padding: .2em calc(.8em + 30px) .2em .8em;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  background-color: #fff;
  color: #222222;
  font-size: 1em;
  cursor: pointer;
}


.textarea input[type="text"]:focus,
.textarea input[type="tel"]:focus,
.textarea input[type="email"]:focus,
.textarea textarea:focus {
  background: #f7f7f7; /*フォーカス時背景色*/
	
}
.textarea input[type="text"],
.textarea input[type="tel"],
.textarea input[type="email"],
.textarea textarea
{
  padding:.4rem .8rem;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  background-color: #fff;
  color: #222222;
  font-size: 1em;
  cursor: pointer;
}
input::placeholder {
  color: #cccccc;
}



@media screen and (max-width: 768px) {
#ttl_secondcont{
	background: url('../img/common/bg_ttl.jpg') no-repeat top center ;
background-size: cover;
	background-color: #006cc0;
	height: 150px;
    padding-top: 52px;
    margin-top: 52px;
}
.wd_1200,
.wd_1000    {
	width: 100%;
	margin: 0 auto ;
	padding: 0 16px 80px 16px;
}
.bg_wh{
    background-color: #FFFFFF;
    padding: 60px 0 30px 0;
}
.bg_beige{
    background-color: #f5f5ec;
    padding: 60px 0 20px 0;
}
.content_block{
    padding-top: 20px;
}
#link_2nd{
    margin: 0 0 40px 0;
    padding: 0 16px;
}

#link_2nd a img{
	opacity: 1;
}
#link_2nd .link_2nd_outer{
	width: 100%;
	margin: 0 auto;
	display: block;
}
#link_2nd .link_2nd_outer img{
	border-radius: 10px;
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
#link_2nd .link_2nd_outer .link_2nd_cont{
	position: relative;
filter: drop-shadow(0px 0px 10px #999999);
    margin: 0;
}
#link_2nd .link_2nd_outer .link_2nd_cont .link_2nd_ttl{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
     font-family: "Bebas Neue", sans-serif;
	font-size: 2.6rem;
	font-weight: 600;
    letter-spacing: 0.2rem;
	color: #FFF;

	padding-bottom: 1rem;
}
#link_2nd .link_2nd_outer .link_2nd_cont .link_2nd_sttl{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	font-size: 0.8rem;
	font-weight: 600;
	color: #FFF;
	padding-top: 3rem;
}
    
    
.bodytext{
	text-align: left;
	margin: 0 0 20px 0;
	}
.separatorline{
	border-bottom: 2px solid #dcdcdc;
	padding: 40px 0 0 0;
	margin:  40px 0;
}
.imground img{
	border-radius:6px;
	filter: drop-shadow(0 0 0.2rem #8a8a8a);
}
.imground-noshadow img{
	border-radius:6px;
}
.imgcaption{
	margin-top: 10px;
	font-size: 0.9rem;
}
.cont_flex{
	display:block;
	justify-content: space-between;
	padding: 10px 0 0 0 ;
	margin: 0 0 40px 0;
}
.cont_flex .cont_1-2_L{
	width: 100%;
}
.cont_flex .cont_1-2_R{
	width: 100%;
}
.cont_flex .cont_1-1-1{
	width: 100%;
}
.cont_flex .cont_1-1_L{
	width: 100%;
}
.cont_flex .cont_1-1_R{
	width: 100%;
}
.cont_flex div.flexmb25{
	margin: 0 0 25px 0;
}
.cont_flex div.flexmb15{
	margin: 0 0 15px 0;
}

#ttl_second{
	background: url('../img/shared/bg_headerSP.png') no-repeat bottom;
	background-size: cover;
	background-color: #006cc0;
	height: 160px;
}
.ttl_2nd{
	background-color: #1b94f4;
	padding: 100px 0 26px 0;
}
#snscont{
	padding: 80px 0 40px 0;
	font-size: 0.8rem;
}
#snscont .snslink{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

#snscont .snslink .sns_instagram{
	background-color: #e40086;
	width: 33.3%;
	padding: 14px;
	cursor: pointer;
	position: relative;
}
#snscont .snslink .sns_facebook{
	background-color: #1877f2;
	width: 33.3%;
	padding: 14px;
	cursor: pointer;
	position: relative;
}
#snscont .snslink .sns_twitter{
	background-color: #55acee;
	width: 33.3%;
	padding: 14px;
	cursor: pointer;
	position: relative;
}
#snscont .snslink img{
	width: 20px;
	margin-right: 0;
	margin-bottom: 2px;
}
#snscont .snslink span{
	color: #FFF;
	font-size: 0.8rem;
	font-weight: 900;
}
#bn_cont{
	background-color: #f4f5f5;
	padding: 40px 30px 20px 30px;
}
#bn_cont .bn_slider{
	width: 100%;
	display: block;
	margin: 0 auto;
}
#bn_cont .bn_slider img{
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}	
	
/******************* Form Parts *******************/	
    .check_line{
        width: 100%;
    }
.checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 2em ;
  border: none;
    
}
.checkbox label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  cursor: pointer;
    padding: 0 0 0 26px;
}
.checkbox label::before, .checkbox label:has(:checked)::after {
  content: '';
    position: absolute;
    top:4px;
    left: 0;
}
.checkbox label::before {
  width: 22px;
  height: 22px;
    min-width: 22px;
  border-radius: 5px;
  background-color: #e2e2dd;
}
.checkbox label:has(:checked)::before {
  background-color: #6f6c67;
}
.checkbox label:has(:checked)::after {
  position: absolute;
  top: 10px;
  left: 9px;
  transform: rotate(45deg);
  width: 3px;
  height: 7px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
}
.checkbox input {
  /*display: none;*/
appearance: none;
}

.radio {
    display: flex;
    flex-wrap: wrap;
    gap: .6em 2em;
    border: none;
}

.radio label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}

.radio label::before,
.radio label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}

.radio label::before {
    width: 24px;
    height: 24px;
    background-color: #FFFFFF;
   border: 2px solid #999999;
}

.radio label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    background-color: #6f6c67;
    animation: anim-radio .3s linear;
}

@keyframes anim-radio {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px #6f6c67;
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}

.radio input {
    display: none;
}

.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #424242;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  /*min-width: 230px;*/
  height: 2.8em;
  padding: .2em calc(.8em + 20px) .2em .8em;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  background-color: #fff;
  color: #222222;
  font-size: 1em;
  cursor: pointer;
}


.textarea input[type="text"]:focus,
.textarea input[type="tel"]:focus,
.textarea input[type="email"]:focus,
.textarea textarea:focus {
  background: #f7f7f7; /*フォーカス時背景色*/
	
}
.textarea input[type="text"],
.textarea input[type="tel"],
.textarea input[type="email"],
.textarea textarea
{
  padding:.4rem .8rem;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  background-color: #fff;
  color: #222222;
  font-size: 1em;
  cursor: pointer;
}
input::placeholder {
  color: #cccccc;
}
    
}



	.Lttl {
	font-size: 2.4rem;
	font-weight: 900;
	color: #303030;
		padding: 40px 0 60px 0;
}

.fadein {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*ボタン*/

.button_common,
.button_commonL{
 display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
    padding: 2px 0 0 0;
    border:1px solid #222;
    border-radius: 6px;
     font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
  font-weight: normal;
  font-style: normal;
    letter-spacing: 0.1rem;
  color: #343434;
  position: relative;
    background-color: #FFFFFF;
    /*background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(240, 236, 229, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(240, 236, 229, 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;*/
}
.button_common{
      width: 260px;
  height: 50px;  
}
.button_commonL{
      width: 360px;
  height: 50px;  
}
/*
.button_common:hover,
.button_commonL:hover
{
    background-color: #f0ece5;
    background-position: -100% 100%;
}
*/
a.button_common:after,
.button_commonL:after {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    right: 20px;
  width: 18px;
  height: 18px;
  margin: -3px 5px 0 0;
  background: url("../img/common/img_arrow.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;

}
.button_common span,
.button_commonL span{
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: normal;

}

/* CSS for half arrow

.button_common:before,
.button_common:after {
  position: absolute;
  top: 50%;
  right: 22px;
  height: 1px;
  background: #FFF;
  content: '';
}
.button_common:before {
  top: 25px;
  right: 26px;
  width: 17px;
  height: 1px;
  background: #343434;
}

.button_common:after {
  top: 20px;
  right: 20px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 6px solid #343434;
}

.button_common:hover:before,
.button_common:hover:after {
  background: #998bfa;
}
*/

a .aLink{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
}
a span.arrow {
	width: 18px;
	height: 8px;
	background-image: url('../img/common/icn_arrow.png');
	background-size: 18px 8px;
	display: inline-block;
	text-indent: -9999px;
	/* 位置合わせ用 */
	vertical-align: middle;
	right: 0;
	margin: 0 0 4px 10px;
}
a.underline {
	border-bottom: solid 1px #333;
	padding-bottom: 5px;
}
.shikirisen {
	border-bottom: solid 2px #000;
	text-indent: -9999px;
	margin: 25px auto 45px auto;
	width: 170px;
}
a.anchor{
    display: block;
    padding-top: 170px;
    margin-top: -170px;
}
.moreBtn {
    position: relative;
	display: inline-block;
color: #FFF!important;
	padding: 0.6rem 4rem;
	background: #003578;
	text-decoration: none;
	text-align: center;
	transition: .4s;
	font-family: 'Roboto';
	margin-top: 20px;
}
.moreBtn_text{	font-size: 0.9rem; 	font-weight: bold; font-family: 'Roboto', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
.moreBtn_arrow{  position: absolute; right:20px;    background: url("../img/common/icn_arrow_w.png") no-repeat center right;
    background-size: 20px 9px; min-width: 100%; height: auto; }
.moreBtn:hover {
opacity: 0.9;
}

.btn_blue {
    background-color: #0c9dd9;
  padding: 12px 60px;
  display: inline-block;
    border-radius: 6px;
    position: relative;
    color: #FFF;
    font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
    letter-spacing: 0.1rem;
    text-align: center;
  border: solid 1px #0c9dd9;
    min-width: 300px;
}

.btn_blue:hover {
  display: inline-block;
  text-decoration: none;
  border: solid 1px #0c9dd9;
  background-color: #FFFFFF;
  transition: ease .2s;
  cursor: pointer;
  color: #0c9dd9;
}
.btn_blue::after {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    right:  18px;
  width: 18px;
  height: 6px;
  margin: -4px 0 0 0 ;
  background: url("../img/common/img_arrowW.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.btn_blue:hover::after {
  background: url("../img/common/img_arrowBL.svg") no-repeat;
}

.btn_line {
    background-color: #06c755;
  padding: 12px 60px;
  display: inline-block;
    border-radius: 6px;
    position: relative;
    color: #FFF;
    font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
    letter-spacing: 0.1rem;
    text-align: center;
  border: solid 1px #06c755;
    min-width: 300px;
}

.btn_line:hover {
  display: inline-block;
  text-decoration: none;
  border: solid 1px #06c755;
  background-color: #FFFFFF;
  transition: ease .2s;
  cursor: pointer;
  color: #06c755;
}
.btn_line::after {
  content: "";
  display: inline-block;
  position: absolute;
  top:50%;
  right:  18px;
  width: 18px;
  height: 6px;
  margin: -4px 0 0 0 ;
  background: url("../img/common/img_arrowW.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.btn_line:hover::after {
  background: url("../img/common/img_arrowGR.svg") no-repeat;
}
.btn_line::before {
  content: "";
  display: inline-block;
  position: absolute;
  top:12px;
  left:  28px;
  width: 28px;
  height: 28px;
  margin: 0 0 0 0 ;
  background: url("../img/common/img_linelogo.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.btn_line:hover::before {
  content: "";
  display: inline-block;
  position: absolute;
  top:12px;
  left:  28px;
  width: 28px;
  height: 28px;
  margin: 0 0 0 0 ;
  background: url("../img/common/img_linelogo_GR.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}



@media screen and (max-width: 768px) {
/*ボタン*/
    
.button_common,
.button_commonL{
 display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
    padding: 2px 0 0 0;
    border:1px solid #222;
    border-radius: 6px;
     font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
  font-weight: normal;
  font-style: normal;
    letter-spacing: 0.1rem;
  color: #343434;
  position: relative;
    background-color: #FFFFFF;
    /*background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(240, 236, 229, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(240, 236, 229, 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;*/
}
.button_common{
      width: 90%;
  height: 50px;  
}
.button_commonL{
      width: 90%;
  height: 50px;  
}
/*
.button_common:hover,
.button_commonL:hover
{
    background-color: #f0ece5;
    background-position: -100% 100%;
}
*/
a.button_common:after,
.button_commonL:after {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    right: 20px;
  width: 18px;
  height: 18px;
  margin: -3px 5px 0 0;
  background: url("../img/common/img_arrow.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;

}
.button_common span,
.button_commonL span{
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: normal;

}
    
.btn_common {
	position: relative;
	display: block;
	font-size: 1rem;
	padding: 0.5rem 4rem;
	text-decoration: none;
	color: #015ca3;
	background: #FFF;
	border: solid 2px #015ca3;
 transition: ease .2s;
	border-radius: 100px;
	cursor: pointer;
}
.btn_common::after {
content: '';
background-image: url(../img/shared/img_arrowR.png);
background-size: contain;
    border: 0;
    width: 20px;
    height: 12px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    /*アニメーションの指定*/
    transition: all .3s;
}
/*hoverした際の移動*/
.btn_common:hover::after{
    right: 16px;
}
    
.btn_blue {
    background-color: #0c9dd9;
  padding: 12px 40px;
  display: inline-block;
    border-radius: 6px;
    position: relative;
    color: #FFF;
    font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
    letter-spacing: 0;
    text-align: center;
  border: solid 1px #0c9dd9;
    width: 100%;
    min-width: 300px;
}

.btn_blue:hover {
  display: inline-block;
  text-decoration: none;
  border: solid 1px #0c9dd9;
  background-color: #FFFFFF;
  transition: ease .2s;
  cursor: pointer;
  color: #0c9dd9;
}
.btn_blue::after {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    right:  18px;
  width: 18px;
  height: 6px;
  margin: -4px 0 0 0 ;
  background: url("../img/common/img_arrowW.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.btn_blue:hover::after {
  background: url("../img/common/img_arrowBL.svg") no-repeat;
}

.btn_line {
    background-color: #06c755;
  padding: 12px 60px;
  display: inline-block;
    border-radius: 6px;
    position: relative;
    color: #FFF;
    font-size: 1.1rem;
  font-weight: 600;
  font-style: normal;
    letter-spacing: 0;
    text-align: center;
  border: solid 1px #06c755;
    min-width: 300px;
    width: 100%;
}

.btn_line:hover {
  display: inline-block;
  text-decoration: none;
  border: solid 1px #06c755;
  background-color: #FFFFFF;
  transition: ease .2s;
  cursor: pointer;
  color: #06c755;
}
.btn_line::after {
  content: "";
  display: inline-block;
  position: absolute;
  top:50%;
  right:  18px;
  width: 18px;
  height: 6px;
  margin: -4px 0 0 0 ;
  background: url("../img/common/img_arrowW.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.btn_line:hover::after {
  background: url("../img/common/img_arrowGR.svg") no-repeat;
}
.btn_line::before {
  content: "";
  display: inline-block;
  position: absolute;
  top:12px;
  left:  28px;
  width: 28px;
  height: 28px;
  margin: 0 0 0 0 ;
  background: url("../img/common/img_linelogo.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.btn_line:hover::before {
  content: "";
  display: inline-block;
  position: absolute;
  top:12px;
  left:  28px;
  width: 28px;
  height: 28px;
  margin: 0 0 0 0 ;
  background: url("../img/common/img_linelogo_GR.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}    
    
    
}
.pc_br{
 	display: none;
    margin: 0;
    padding: 0;
}
@media screen and (min-width: 768px) {
.sp_br {
	display: none;
}
}
#page_top {
	width: 60px;
	height: 60px;
	position: fixed;
	right: 20px;
	bottom: -50px;
	opacity: 0.9;
	padding-top: 16px;
	cursor: pointer;
background: url("../img/shared/img_pagetop.png") no-repeat center right;
    background-size: 100%; 
}
@media screen and (max-width: 768px) {
#page_top {
	width: 40px;
	height: 40px;
	position: fixed;
	right: 20px;
	bottom: -50px;
	opacity: 0.9;
	padding-top: 16px;
	cursor: pointer;
background: url("../img/shared/img_pagetop.png") no-repeat;
    background-size: 100%; 
filter: drop-shadow(0 0 0.2rem #8a8a8a);
}
}

h2 {

	font-size: 1rem;
  font-weight: 600;
	text-align: center;
}
.ttl_2nd_en{
	color: #222;
    font-size: 5.2rem;
     font-family: "Bebas Neue", sans-serif;

  font-weight: bold;
  font-style: normal;
    letter-spacing: 0.3rem;
    	padding: 30px 0 30px 0;
}
h3 {
	color: #222222;
	font-size: 1.8rem;
	font-weight: bold !important;
	letter-spacing: 0 !important;
	margin: 60px 0 40px 0;
	padding: 0 0 0 0 ;
	  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: left; 
}
h3:before {
  border-top: 3px solid;
  content: "";
  width: 2rem; /* 線の長さ */

}
h3:before {
  margin-right: 1rem;
}
h4{
  font-weight: 600;
  font-size: 1.3rem;
    line-height: 160%;
}
@media screen and (max-width: 768px) {
h2 {

	font-size: 0.9rem;
  font-weight: 600;
	text-align: center;
}
.ttl_2nd_en{
	color: #222;
    font-size: 3rem;
     font-family: "Bebas Neue", sans-serif;

  font-weight: bold;
  font-style: normal;
    letter-spacing: 0.1rem;
    	padding:  0 0 10px 0;
}
h3 {
	color: #222222;
	font-size: 1.4rem;
	font-weight: bold !important;
	letter-spacing: 0 !important;
	margin:60px 0 20px 0;
	padding: 0 ;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: left;
}

h3:before {
  border-top: 3px solid;
  content: "";
  width: 2rem; /* 線の長さ */
}
h3:before {
  margin-right: 1rem;
}
h4{
  font-weight: 600;
  font-size: 1.1rem;
    line-height: 160%;
}    
}


/******************************************

top

*******************************************/
#my-background{
height: 700px;
}
#toplead{
	position: absolute;
    z-index: 2;
    width: 1200px;
    bottom: 60px;
    right: calc(50% - 600px);
    text-align: right;

}
#toplead .lead_cont{
    width: 1200px;
    margin: 0 auto;
	position:static;
}
#toplead .lead_cont div{
    margin-top: 16px;
}
#topintro{
    margin-top: 80px;
    background-image: url("../img/top/bg_lead.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    min-height: 400px;
}
.topintro_txt{
    position: absolute;
    bottom:0;
    right: 0;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.6rem;
    background-color: #FFFFFF;
    display: inline-block;
    border-radius: 12px 0 0 0 ;
    padding: 45px 50px 0 50px;
    text-align: left;

}
#topworks{
    background-color: #f5f5ec;
    padding: 80px 0 30px 0;
    margin-top: 80px;
}
.topworks_outer{
    width: 1200px;
    display: flex;
    justify-content: center;
    margin: 40px auto 0 auto;
}
.topworks_cont{
    width: 362px;
    position: relative;
filter: drop-shadow(0px 0px 10px #d3d3d3);
    margin: 0 14px;

}
.topworks_ph{
    width: 362px;
    background-color: #fdfdfb;
    border-radius: 10px;
    padding: 30px 0 0 0;
}
.topworks_ttl{
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    margin-top: 20px;
    position: relative;
}
.topworks_ttl:after {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    right: 0;
  width: 10px;
  height: 14px;
  margin: -7px 0 0 0 ;
  background: url("../img/common/img_chevron.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;

}
.topworks_sttl{
    font-size: 0.8rem;
    text-align: left;
    color: #787878;
}
#topservice{
    padding: 80px 0 30px 0;
    margin-top: 60px;
}

#topservice a img{
	opacity: 1;
}
#topservice .topservice_outer{
	width: 1152px;
	margin: 60px auto;
	display: flex;
	justify-content:flex-start;
	flex-wrap: wrap;
}
#topservice .topservice_outer img{
	border-radius: 10px;
	width: 536px;
	height: auto;
	margin-bottom: 45px;
}
#topservice .topservice_outer .topservice_cont{
	position: relative;
filter: drop-shadow(0px 0px 10px #999999);
    margin: 0 20px;
}
#topservice .topservice_outer .topservice_cont .topservice_ttl{
	position: absolute;
    bottom:70px;
    left: 0;
	font-size: 1.2rem;
	font-weight: 600;
    background-color: #FFFFFF;
    opacity: 0.8;
    padding: 5px 0 5px 25px;
    width: 260px;
    text-align: left;
}
#topservice .topservice_outer .topservice_cont .topservice_ttl:before {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    left: 10px;
  width: 6px;
  height: 10px;
  margin: -4px 0 0 0 ;
  background: url("../img/common/img_chevron.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;

}
#topnews{
    padding: 80px 0 30px 0;
}
#topnews .topnews_outer{
    width: 1100px;
    margin: 60px auto 0 auto;
}
#topnews .topnews_cont{
    display: flex;
    border-bottom: 1px solid #a7a7a7;
    text-align: left;
    padding: 20px 0;
}
#topnews .topnews_cont:first-child{
    border-top: 1px solid #a7a7a7;
}
#topnews .topnews_cont .topnews_date{
    color: #787878;
    width: 7rem;
}

#topaboutus{
    padding: 80px 0 60px 0;
    background-image: url("../img/top/bg_aboutus.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    min-height: 400px;
}
#topaboutus .topaboutus_outer{
    padding: 80px 0 0 0;
    margin: 0 auto;
    width: 1168px;
    display: flex;
  justify-content:space-between;
    flex-wrap: wrap;
}
#topaboutus .topaboutus_cont{
    padding: 20px;
    background-color: #f8f8f7;
    border-radius: 6px;
    width: 272px;
    margin: 0 10px 20px 10px;
    display: flex;
flex-flow: column;
 justify-content:space-between;
}
#topaboutus .topaboutus_ph img{
    border-radius: 6px;
}
#topaboutus .topaboutus_ttl{
    text-align: left;
    font-weight: 600;
    margin-top: 12px;
}
#topaboutus .topaboutus_txt{
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 20px;
}
#topaboutus .topaboutus_link{
    background-color: #6f6c67;
    padding: 14px 0;
    width: 232px;
    border-radius: 6px;
    position: relative;
    color: #FFF;
    font-size: 1.1rem;
     font-family: "Bebas Neue", sans-serif;
  font-weight: normal;
  font-style: normal;
    letter-spacing: 0.1rem;
}
#topaboutus .topaboutus_link:after {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    right: 16px;
  width: 16px;
  height: 5px;
  margin: -4px 0 0 0 ;
  background: url("../img/common/img_arrowW.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#topcontact{
    padding: 80px 0 30px 0;
}
#topcontact .topcontact_mail{
    padding: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
#my-background{

    height: 100svh;
}
#toplead{
	position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 60px;
    right: 20px;
    text-align: right;

}
#toplead .lead_cont{
    width: 100%;
    margin: 0 auto;
	position:static;
}
#toplead .lead_cont div{
    margin-top: 0;
}
#toplead .lead_cont div img{
    width: 100%;
    height: auto;
}
.lead01 img{
        width: 260px !important;
        height: auto;
    }
.lead02 img{
        width: 160px !important;
        height: auto;
    margin-top: 10px;
    }
#topintro{
    margin-top: 80px;
    background-image: url("../img/top/bg_lead.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    min-height: 400px;
}
.topintro_txt{
    position: absolute;
    bottom:0;
    right: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 2rem;
    background-color: #FFFFFF;
    display: inline-block;
    border-radius: 12px 0 0 0 ;
    padding: 20px 20px 0 30px;
    margin: 0 0 0 25px;
    text-align: left;

}
#topworks{
    background-color: #f5f5ec;
    padding: 80px 16px 30px 16px;
    margin-top: 80px;
}
.topworks_outer{
    width: 90%;
    display: block;
    margin: 40px auto 0 auto;
}
.topworks_cont{
    width: 100%;
    position: relative;
filter: drop-shadow(0px 0px 10px #d3d3d3);
    margin: 0 0 30px 0;
}
.topworks_cont img{
    width: 100%;
    height: auto;
}
.topworks_ph{
    width: 100%;
    background-color: #fdfdfb;
    border-radius: 10px;
    padding: 20px 20px 0 20px;
}
.topworks_ttl{
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    margin-top: 20px;
    position: relative;
}
.topworks_ttl:after {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    right: 0;
  width: 10px;
  height: 14px;
  margin: -7px 0 0 0 ;
  background: url("../img/common/img_chevron.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;

}
.topworks_sttl{
    font-size: 0.8rem;
    text-align: left;
    color: #787878;
}
#topservice{
    padding: 40px 16px 30px 16px;
    margin-top: 60px;
}

#topservice a img{
	opacity: 1;
}
#topservice .topservice_outer{
	width: 100%;
	margin: 40px auto;
	display: flex;
	justify-content:flex-start;
	flex-wrap: wrap;
}
#topservice .topservice_outer img{
	border-radius: 10px;
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
#topservice .topservice_outer .topservice_cont{
	position: relative;
filter: drop-shadow(0px 0px 10px #999999);
    margin: 0 ;
}
#topservice .topservice_outer .topservice_cont .topservice_ttl{
	position: absolute;
    bottom:30px;
    left: 0;
	font-size: 1rem;
	font-weight: 600;
    background-color: #FFFFFF;
    opacity: 0.8;
    padding: 5px 0 5px 25px;
    width: 240px;
    text-align: left;
}
#topservice .topservice_outer .topservice_cont .topservice_ttl:before {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    left: 10px;
  width: 6px;
  height: 10px;
  margin: -4px 0 0 0 ;
  background: url("../img/common/img_chevron.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;

}
#topnews{
    padding: 40px 16px 30px 16px;
}
#topnews .topnews_outer{
    width: 100%;
    margin: 40px auto 0 auto;
}
#topnews .topnews_cont{
    display: block;
    border-bottom: 1px solid #a7a7a7;
    text-align: left;
    padding: 20px 0;
}
#topnews .topnews_cont:first-child{
    border-top: 1px solid #a7a7a7;
}
#topnews .topnews_cont .topnews_date{
    color: #787878;
    width: 7rem;
}
#topnews .topnews_cont .topnews_txt{
    text-align: left;
}
    
#topaboutus{
    padding: 80px 16px 40px 16px;
    background-image: url("../img/top/bg_aboutus.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    min-height: 100%;
}
#topaboutus .topaboutus_outer{
    padding: 40px 0 0 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
}
#topaboutus .topaboutus_cont{
    padding: 10px;
    background-color: #f8f8f7;
    border-radius: 6px;
    width: calc(50% - 8px);
    margin: 0 0 16px 0;
    display: flex;
flex-flow: column;
 justify-content:space-between;
}
#topaboutus .topaboutus_ph img{
    border-radius: 6px;
}
#topaboutus .topaboutus_ttl{
    text-align: left;
    font-weight: 600;
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.2rem;
    margin-bottom: 5px;
}
#topaboutus .topaboutus_txt{
    font-size: 0.8rem;
    line-height: 1.2rem;
    text-align: left;
    margin-bottom: 20px;
}
#topaboutus .topaboutus_link{
    background-color: #6f6c67;
    padding: 8px 0;
    width: 100%;
    border-radius: 6px;
    position: relative;
    color: #FFF;
    font-size: 0.9rem;
     font-family: "Bebas Neue", sans-serif;
  font-weight: normal;
  font-style: normal;
    letter-spacing: 0.1rem;
}
#topaboutus .topaboutus_link:after {
  content: "";
  display: inline-block;
    position: absolute;
    top:50%;
    right: 10px;
  width: 16px;
  height: 5px;
  margin: -4px 0 0 0 ;
  background: url("../img/common/img_arrowW.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#topcontact{
    padding: 80px 16px 30px 16px;
}
#topcontact .topcontact_mail{
    padding: 20px 0 0 0;
}
#topcontact .topcontact_mail img{
    width: 80px;
    height: auto;
}
    
}

.topinfo div{
	background: #FFF;
	padding: 60px 20px;


}
.topinfo span{
    background:linear-gradient(transparent 70%, #ff6 60%);
	font-size: 3rem;
	font-weight: 700;
	line-height: 4.5rem;
	color: #00489a;
}
@media screen and (max-width: 768px) {
.topinfo div{
	background: #FFF;
	padding: 60px 20px;


}
.topinfo span{
    background:linear-gradient(transparent 70%, #ff6 60%);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.5rem;
	color: #00489a;
}
}
#keyarea{background-color: #4fadf6;}
.key_main {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto 0 auto;
	padding-top: 0px;
	background-color: #4fadf6;
}
.key_main img{
	width: 100%;
	height: auto;
}
.key_main_copy{
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
.key_main_copy div{
	position: absolute;
        bottom: 160px;
        right: 0;
/*transform: translate(-50%, -50%);*/
	text-align: center;
	color: #FFF;
	z-index: 2;
}
.key_main_copy img{
	width: 360px;
	height: auto;
}
.key_main_cover{
	position: absolute;
        bottom: 0;
	text-align: center;
	z-index: 1;
	margin-bottom: -1px;
}


#NEWS{
	background-color: #f4f5f5;
	padding: 60px 0;
}
.news_cont{
	background-color: #FFF;
	width: 1000px;
	margin: 0 auto;
	padding: 50px;
	border-radius: 10px;
	/*filter: drop-shadow(0 0 0.35rem #308ace);*/
}
.news_ttl{

  position: relative;
  display: flex;
	justify-content: center;
  margin-bottom: 20px;
	margin-top: 10px;
}
.news_ttl_eng{ 
	font-size: 2rem;
	letter-spacing: 1px;
	font-weight: bold;
	color: #006cc0;
}
.news_ttl p{
	font-size: 0.8rem;
	color: #333;
	text-align: center;
}
	.news_ttl_imgL{
	background:  url("../img/top/img_waveL.png") top left no-repeat;
background-size: 80px;
		width: 80px;
		margin-right: 10px;
		margin-top: 2px;
	}
	.news_ttl_imgR{
	background:  url("../img/top/img_waveR.png") top left no-repeat;
background-size: 80px;
		width: 80px;
		margin-left: 10px;
		margin-top: 2px;
	}
.news_box{
	width: 100%;
	margin: 0 auto;
	text-align: left;
	border-top: dotted 1px #c8c8c8;
}
.news_box ul{
	border-bottom: dotted 1px #c8c8c8;
	padding: 20px 0;
	display: flex;
}
.news_box ul .news_date{
	margin-right: 20px;
	width: 9rem;
}
.news_box a{
	text-decoration: underline;
}
.news_box a:hover{
	text-decoration: none;
}

.top_ttls{
	font-size: 1.8rem;
	letter-spacing: 1px;
	font-weight: bold;
	color: #006cc0;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2em;
}
.top_ttls:before {
  content: '';
  position: absolute;
  bottom: -1px;
  display: inline-block;
  width: 70px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #51a4e5;
	border-radius: 3px;
}
.info_kari{
	margin: 80px auto 60px auto;
	width: 800px;
}
.top_ttls_ja{
	font-size: 1.8rem;
	letter-spacing: 1px;
	font-weight: bold;
	color: #006cc0;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2em;
}
.top_ttls_ja:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 70px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #51a4e5;
	border-radius: 3px;
}
.top_ttls p{
	font-size: 0.8rem;
	color: #333;
	text-align: center;
}
#TOP_calendar{
	background-color: #deb887;
	padding: 60px 0;
}
#TOP_calendar .TOP_calendar_ttl {
  position: relative;
	font-size: 2rem;
	margin-bottom: 70px;
	padding-bottom: 20px;
}
#TOP_calendar .TOP_calendar_ttl:before {
content: "";
    display: inline-block;
    position: absolute;
    left: calc(50% - 50px) ;
    bottom: -7px;
    width: 100px;
    height: 3px;
    border-radius: 5px;
  background: #000;
}
#TOP_calendar .TOP_calendar_info {
	background-color: #f8f6f3;
	border-radius: 6px;
	padding: 20px 20px 20px 0;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
#TOP_calendar .TOP_calendar_info .TOP_calendar_info_hd {
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	width: 180px;
}
#TOP_calendar .TOP_calendar_info .TOP_calendar_info_txt {
	text-align: left;
	border-left: 3px solid #c4c4c4;
	padding: 10px 0 10px 30px;
	font-size: 1.2rem;
}
.calendar_att_text{
	font-size: 0.9rem;
	text-align: left;
	margin: 10px 0 0 0;
}
.calendar_att_text ul{
    list-style-type: none;
 list-style-position: inside;
}
.calendar_att_text ul li{
	padding-left: 1rem; 
	text-indent: -1rem;
}
.calendar_kyugyou_cont{
	display: flex;
	align-items: center;
}
.calendar_kyugyou_hd{
	color: #FFF;
	background-color: #695f5d;
	font-weight: 600;
	font-size: 0.9rem;
	width: 200px;
	text-align: center;
	border-radius: 100px;
	padding: 3px 0;
	margin: 5px 0;
}
.calendar_kyugyou_txt{
	margin-left: 20px;
}
#TOP_calendar .TOP_calendar_cont{
	background-color: #FFF;
	width: 1000px;
	margin: 0 auto;
	padding: 80px 50px 50px 50px;
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #937044);
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 80px;
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box div{
	width: 270px;
	margin-bottom: 40px;
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box .TOP_calendar_kinds{
	background-color: #f8f6f3;
	border-radius:6px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
display:flex;
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box .TOP_calendar_kinds img{
	width: 220px;
	height: auto;
}

#insta{
		margin-top: 80px;
}
.insta_cont{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.insta_cont img{
	width: 250px;
	height: auto;
}
#fb_tw{
	display: flex;
	justify-content: space-between;
	width: 1000px;
	margin: 80px auto ;
}
.fb_cont{
	width: 486px;
	height: 440px;
	background-color: #FFF;
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #e4e4e4);
}
.facebook_wrap{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
 
.fb-page,
.fb-page span,
.facebook_wrap iframe{
  width: 100% !important;
  height: 400px !important;
}
.tw_cont{
	width: 486px;
	height: 440px;
	background-color: #FFF;
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #e4e4e4);
}
#top_company{
	background-color: #006cc0;
	padding: 60px 0;
}
#top_company table tr td a{
	color: #FFF !important;
}
.top_company_cont{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.top_company_txt{
	width: 300px;
	color: #FFF;
	text-align: left;
	padding-top: 60px;
}
.top_company_ttl{
	font-size: 1.6rem;
	margin-bottom: 20px;
}

#top_banner{
	width: 1000px;
	margin: 0 auto;
}
.top_banner_top{
	width: 1000px;
	margin: 70px auto 20px auto;
	display: flex;
	justify-content: space-between;
}
.top_banner_top img{
	border: 1px solid #ccc;
}
.top_banner_bottom{
	width: 1000px;
	margin: 0 auto 70px auto;
	display: flex;
	justify-content: center;
}
.top_banner_bottom img{
	margin: 0 10px;
}
.banner_area{
	width: 1000px;
	margin: 40px auto 40px auto ;
	text-align: center;	
	display: flex;
	justify-content: space-between;
}
.top_banner_recruit{

}
.top_banner_ticket{
	width: 485px;
	margin: 0 auto;
}
.top_banner_recruit img,
.top_banner_event img,
.top_banner_ticket img,
.top_banner_bus img{
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #e4e4e4);
}
.bn_bbq{
	text-align: center;
	margin: 0 0 0 0;
	padding: 10px 0 0 0;
}
.bn_bbq img{
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #e4e4e4);
	margin-top: 10px;
}
.table-container {
	margin:20px 0;
}
.tb_product{
	border: 1px solid #222;	
}
.tb_product th{
	background-color: #eff3f8;
}
.tb_product th,
.tb_product td{
	border: 1px solid #222;
	vertical-align: middle;
	padding: 2px 6px;
	font-size: 0.9rem;
	text-align: center;
}
.product_sozai_att{
	font-size: 0.9rem;
	text-align: left;
	margin-top: 10px;
}
.scroll-hint {
	display: none;
}


.shopinfo_cont{
	display: flex;
	justify-content: space-between;
}
.shopinfo_cont div{
	width: 390px;
}
.restaurant_cont{
	margin: 20px 0 0 0;
	text-align: left;
}
.baiten_cont{
	margin: 20px 0 0 0;
	text-align: left;
	display: flex;
}
.baiten_txt{
	padding: 60px 0 0 20px;
}
@media screen and (max-width: 1080px) {
#keyarea{position: relative;}
.main {

}
}
@media screen and (max-width: 768px) {
#keyarea_SP{position: relative;
	padding-top: 52px;}
.main {

}
#keyarea_SP{background-color: #4fadf6;}
.key_main {
	position: relative;
width: 100%;
height: auto;
	margin: 0 auto 0 auto;
	padding-top: 0px;
	background-color: #4fadf6;
}
.key_main img{
width:100%;
height: auto;
}
.key_main_copy{
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.key_main_copy div{
	position: absolute;
        bottom: 60px;
        right: 20px;
/*transform: translate(-50%, -50%);*/
	text-align: center;
	color: #FFF;
	z-index: 2;
}
.key_main_copy img{
	width: 200px;
	height: auto;
}


#NEWS{
	background-color: #f4f5f5;
	padding: 40px 20px;
}
.news_cont{
	background-color: #FFF;
	width: 100%;
	margin: 0 auto;
	padding: 40px 20px;
	border-radius: 10px;
	/*filter: drop-shadow(0 0 0.35rem #308ace);*/
}
.news_ttl{

  position: relative;
  display: flex;
	justify-content: center;
  margin-bottom: 10px;
	margin-top: 10px;
}
.news_ttl_eng{ 
	font-size: 1.8rem;
	letter-spacing: 1px;
	font-weight: bold;
	color: #006cc0;
}
.news_ttl p{
	font-size: 0.8rem;
	color: #333;
	text-align: center;
}
	.news_ttl_imgL{
	background:  url("../img/top/img_waveL.png") top left no-repeat;
background-size: 60px;
		width: 60px;
		margin-right: 10px;
		margin-top: 6px;
	}
	.news_ttl_imgR{
	background:  url("../img/top/img_waveR.png") top left no-repeat;
background-size: 60px;
		width: 60px;
		margin-left: 10px;
		margin-top: 6px;
	}
.news_box{
	width: 100%;
	margin: 0 auto;
	text-align: left;
	border-top: dotted 1px #c8c8c8;
}
.news_box ul{
	border-bottom: dotted 1px #c8c8c8;
	padding: 20px 0;
	display: block;
}
.news_box ul .news_date{
	margin-right: 20px;
	
}
.news_box a{
	text-decoration: underline;
}
.news_box a:hover{
	text-decoration: none;
}

.top_ttls{
	font-size: 1.6rem;
	letter-spacing: 1px;
	font-weight: bold;
	color: #006cc0;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2em;
}
.top_ttls:before {
  content: '';
  position: absolute;
  bottom: -1px;
  display: inline-block;
  width: 70px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #51a4e5;
	border-radius: 3px;
}
.top_ttls p{
	font-size: 0.8rem;
	color: #333;
	text-align: center;
}
.info_kari{
	margin: 40px auto 60px auto;
	width: 100%;
	padding: 0 20px;
}
.top_ttls_ja{
	font-size: 1.4rem;
	letter-spacing: 1px;
	font-weight: bold;
	color: #006cc0;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2em;
}
.top_ttls_ja:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 70px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #51a4e5;
	border-radius: 3px;
}
#TOP_calendar{
	background-color: #deb887;
	padding: 30px 20px;
}
#TOP_calendar .TOP_calendar_ttl {
  position: relative;
	font-size: 1.4rem;
	margin-bottom: 40px;
	padding-bottom: 20px;
}
#TOP_calendar .TOP_calendar_ttl:before {
content: "";
    display: inline-block;
    position: absolute;
    left: calc(50% - 50px) ;
    bottom: -7px;
    width: 100px;
    height: 3px;
    border-radius: 5px;
  background: #000;
}
#TOP_calendar .TOP_calendar_info {
	background-color: #f8f6f3;
	border-radius: 6px;
	padding: 20px 0;
	display: block;
	margin-bottom: 20px;
}
#TOP_calendar .TOP_calendar_info .TOP_calendar_info_hd {
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	width: 100%;
	margin: 10px 0;
}
#TOP_calendar .TOP_calendar_info .TOP_calendar_info_txt {
	text-align: left;
	border-left: none;
	padding: 10px 20px ;
	font-size: 1.2rem;
}
.calendar_att_text{
	font-size: 0.9rem;
	text-align: left;
	margin: 10px 0 0 0;
}
.calendar_att_text ul{
    list-style-type: none;
 list-style-position: inside;
}
.calendar_att_text ul li{
	padding-left: 1rem; 
	text-indent: -1rem;
}
.calendar_kyugyou_cont{
	display: block;
}
.calendar_kyugyou_hd{
	color: #FFF;
	background-color: #695f5d;
	font-weight: 600;
	font-size: 0.9rem;
	width: 100%;
	text-align: center;
	border-radius: 100px;
	padding: 3px 0;
	margin: 5px 0;
}
.calendar_kyugyou_txt{
	margin-left: 0;
	text-align: center;
	margin-bottom: 20px;
}
#TOP_calendar .TOP_calendar_cont{
	background-color: #FFF;
	width: 100%;
	margin: 0 auto;
	padding: 40px 20px 20px 20px;
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #937044);
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 80px;
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box div{
	width: 100%;
	margin-bottom: 40px;
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box div img{
	width: 80%;
	height: auto;
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box .TOP_calendar_kinds{
	background-color: #f8f6f3;
	border-radius:6px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
display:flex;
	padding: 30px 0;
}
#TOP_calendar .TOP_calendar_cont .TOP_calendar_box .TOP_calendar_kinds img{
	width: 66% !important;
	height: auto;
}
#fw_cont{
	background-color: #f5deb3;
	padding: 40px 20px 20px 20px;
}
#fw_cont .fw_bnarea{
	width: 100%;
	margin: 0 auto;
	display: block;
}
#fw_cont .fw_bnarea img{
	border-radius: 10px;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
#fw_cont .fw_bnarea div{
	position: relative;
}
#fw_cont .fw_bnarea div .fw_bnarea_ttl{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	font-size: 1.8rem;
	font-weight: 600;
	color: #FFF;
	padding-bottom: 2rem;
}
#fw_cont .fw_bnarea div .fw_bnarea_sttl{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	font-size: 1rem;
	font-weight: 600;
	color: #FFF;
	padding-top: 1.5rem;
}
#insta{
		margin-top: 60px;
}
.insta_cont{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
}
.insta_cont div{
	width: 50%;
}
.insta_cont img{
	width: 100%;
	height: auto;
}
#fb_tw{
	display: block;
	width: 100%;
	margin: 60px auto ;
	padding: 0 20px;
}
.fb_cont{
	width: 100% !important;
	height: 440px;
	background-color: #FFF;
	margin: 0 auto 60px auto;
	padding: 20px;
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #e4e4e4);
}
.fb-page {
  width: 100% !important;
}
.tw_cont{
	width: 100%;
	height: 440px;
	background-color: #FFF;
	margin:  0 auto;
	padding: 20px;
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #e4e4e4);
}
#top_company{
	background-color: #006cc0;
	padding: 0;
}
.top_company_cont{
	width: 100%;
	margin: 0 auto;
	display: block;
	padding: 40px 20px;
}
.top_company_txt{
	width: 100%;
	color: #FFF;
	text-align: left;
	padding-top: 0;
	margin-bottom: 20px;
}
.top_company_ttl{
	font-size: 1.4rem;
	margin-bottom: 10px;
}

#top_banner{
	width: 100%;
	margin: 0 auto;
}
.top_banner_top{
	width: 100%;
	margin: 20px auto 10px auto;
	display: flex;
flex-wrap: wrap;
	padding: 20px;
}
.top_banner_top div{
	width: calc(50% - 5px);
		margin-bottom: 10px;
}
.top_banner_top img{
	border: 1px solid #ccc;
	width: 100%;
	height: auto;
}
.top_banner_bottom{
	width: 100%;
	margin: 0 auto 60px auto;
	display: block;
}
.top_banner_bottom img{
	margin: 0 0 10px 0;
}
.banner_area{
	width: 100%;
	margin: 40px auto 40px auto ;
	text-align: center;	
	display: block;
}

.top_banner_recruit img,
.top_banner_event img,
.top_banner_ticket img,
.top_banner_bus img{
	width: 100%;
	height: auto;
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #e4e4e4);
}
.top_banner_ticket{
	width:100%;
	margin: 30px auto;
}
	
.top_banner_recruit,
.top_banner_event,
.top_banner_ticket,
.top_banner_bus{
	margin: 40px 0 0 0 ;
	padding: 0 20px;
	width: 100%;
}
.bn_bbq{
	text-align: center;
	margin: 0 0 0 0;
	padding: 10px 20px 40px 20px;
}
.bn_bbq img{
	width: 100%;
	height: auto;
	border-radius: 10px;
	filter: drop-shadow(0 0 0.35rem #e4e4e4);
	margin-top: 10px;
}
.table-container {
  position: relative;
  overflow-x: auto;
	margin:20px 0 20px 0;
}
.tb_product{
	border: 1px solid #222;
  border-collapse: collapse;
}
.tb_product th{
	background-color: #eff3f8;
}
.tb_product th,
.tb_product td{
	border: 1px solid #222;
	vertical-align: middle;
	padding: 2px 6px;
	font-size: 0.9rem;
	text-align: center;
  min-width: 200px;
}
.product_sozai_att{
	font-size: 0.9rem;
	text-align: left;
	margin-top: 10px;
}

	
.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width:220px;
  padding: 10px ;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  animation: scroll-hint-animation 2s infinite ease;
}
@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

.scroll-hint--show {
  display: block;
}
	
	

.shopinfo_cont{
	display: block;
}
.shopinfo_cont div{
	width: 100%;
	margin-bottom: 30px;
}	
.restaurant_cont{
	margin: 20px 0 0 0;
	text-align: left;
}
.restaurant_img{
	display: flex;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
	margin: 20px 0 0 0 ;
}


.baiten_cont{
	margin: 20px 0 0 0;
	text-align: left;
	display: flex;
}
.baiten_ph img{
	width: 100px;
	height: auto;
}
.baiten_txt{
	padding: 30px 0 0 20px;
}	
}

/**NEWS**/
#news_detail{
	width: 820px; 
	margin: 80px auto;
}

#NEWSichiran{width: 820px; margin: 80px auto; }
.newstitle{font-size: 2rem; color: #623416; font-weight: bold;}

.newsTop ul{
	margin:0;
	padding:2px 0 0 0;
	font-size: 0.9rem;
}
.newsTop ul li{
	margin:0;
	padding:2px 0;
	list-style-type:none;
	text-align: left !important;
}
.newsTop ul li span.newsdate,
.newsList ul li span.newsdate{
	display: table-cell;
	width: 10rem;
}
.newsTop ul li span.newstext,
.newsList ul li span.newstext{
	display: table-cell;

}
.newsList ul{
	margin:0;
	padding:2px 0 0 0;
	font-size: 1rem;
	border-top: dotted 1px #c8c8c8;
}
.newsList ul li{
	margin:0;
	padding:20px 0;
	border-bottom: dotted 1px #c8c8c8;
	list-style-type:none;
	text-align: left !important;
}
.newsList ul li a{
 text-decoration: underline;
}
.newsList ul li a:hover{
 text-decoration: none;
}
.pNav{
	font-size: 0.8rem;
	text-align: left;
}
.event_titlearea{
	width: 100%;
}

.ttl_event{
	font-size: 1.2rem;
	font-weight: bold;
	text-align: left;
	border-top:solid 3px #000;
	padding: 20px 0 0 0 ;
	margin: 20px 0 0 0;
	color: #222 !important;
}
#up_ymd{
	text-align: right;
	font-size: 0.9rem;
	margin-top: 30px;
}
#postID{
	
}
.news_column{
	margin: 0 0 40px 0;
}
.detailText{
	text-align: left;
	margin: 40px 0 0 0;
}
.detailText p{
	padding: 8px 0;
}
.detailText a{
	text-decoration: underline;
}
.detailText a:hover{
	text-decoration: none;
}

.news_guest{
	display: flex;
	margin-top: 50px;
}
.news_guest_ph{
}
.news_guest_txt{
	margin-left: 30px;
}
.news_attention{
	border: 2px solid #e2e2e2;
	padding: 30px 40px;
	text-align: center;
	margin: 0 0 40px 0;
}

.news_marker{
	background:linear-gradient(transparent 70%, #86d0ff 60%);
}
.t-news table{
	
}
table .t-news th{
	width: 7rem;
	padding: 5px 0;
	
}
.t-news table td{
	
}

.news_otoiawase{
	background-color: #f8f8f8;
	border-radius: 10px;
	margin-top: 80px;
	padding: 30px;
}

@media screen and (max-width: 768px) {
#news_detail{
	margin: 40px 0;
	padding: 0 20px;
	width: 100%;
}
#NEWSichiran{width: 100%; margin: 40px auto; 	padding: 0 20px;}
.newstitle{font-size: 2.2rem; color: #623416;  }
.newsList ul,
.newsTop ul{
	margin:20px 0 0 0;
	padding:0 0 20px 0;
	border-top: dotted 1px #c8c8c8;
}
.newsList ul li,
.newsTop ul li{
	margin:0 0 0 0;
	padding:20px 0;
	border-bottom: dotted 1px #c8c8c8;
	list-style-type:none;
	text-align: left !important;
}
.newsList ul li span.newsdate,
.newsTop ul li span.newsdate{
	display: inline-block;
}
.newsList ul li span.newstext,
.newsTop ul li span.newstext{
	display: inline-block;
}
.pNav{
	font-size: 0.8rem;
	text-align: left;
}
.event_titlearea{
	width: 100%;
}

.ttl_event{
	font-size: 1.2rem;
	font-weight: bold;
	text-align: left;
	border-top:solid 3px #000;
	padding: 20px 0 0 0 ;
	margin: 20px 0 0 0;
	color: #222 !important;
}
#up_ymd{
	text-align: right;
	font-size: 0.9rem;
	margin-top: 30px;
}
#postID{
	
}
.news_column{
	margin: 0 0 40px 0;
}
.detailText{
	text-align: left;
	margin: 40px 0 0 0;
}
.detailText p{
	padding: 8px 0;
}
.detailText a{
	text-decoration: underline;
}
.detailText a:hover{
	text-decoration: none;
}

.news_guest{
	display: block;
	margin-top: 50px;
}
.news_guest_ph{
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
.news_guest_ph img{
	width: 100%;
	height: auto;
}
.news_guest_txt{
	margin-left: 0;
}
table .t-news{
	
}
table .t-news th{
	width: 100%;
	padding: 15px 0 5px 0;
	display: block;
}
table .t-news td{
	width: 100%;
	display: block;
}

.news_otoiawase{
	background-color: #f8f8f8;
	border-radius: 10px;
	margin-top: 80px;
	padding: 30px;
}
}

/******************************************

ABOUT

*******************************************/

#about{
    margin: 30px auto;
}
table.t-company {
	width: 100%;
	border-collapse: collapse;

	margin-top: 20px;
}
table.t-company tbody th {
	padding: 14px 1rem;
	border-bottom: #303030 solid 1px;
	border-top:  #303030 solid 1px;
	vertical-align: top;
	white-space: nowrap;
	width: 10rem;
    font-weight: 600;
}
table.t-company tbody tr:last-child th {
	border-bottom: #303030 solid 1px;
	white-space: nowrap;
}
table.t-company tbody td {
	text-align: left;
	padding: 0;
	border-bottom: #939393 solid 1px;
	border-top: #939393 solid 1px;
	vertical-align: top;
}
table.t-company tbody td span {
	padding: 14px 0 14px 1rem;
	display: table-cell;
}
.t-company_2column{
    display: flex;
}
.t-company_2column_cont{
     width: 500px;
}
.company_map iframe{
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
#about{
    margin: 0 auto;    
}
table.t-company {
	width: 100%;
	border-collapse: collapse;

}
table.t-company tbody th {
	padding: 7px 1rem 0 1rem;
	border-bottom: none;
	border-top:  #303030 solid 1px;
	vertical-align: top;
	white-space: nowrap;
	display: block;
	width: 100%;
}
table.t-company tbody tr:last-child th {
	border-bottom: none;
	white-space: nowrap;
	display: block;
}
table.t-company tbody td {
	text-align: left;
	padding: 0;
	border-top: none;
	border-bottom: none;
	vertical-align: top;
	display: block;
}
table.t-company tbody tr:last-child td {
	border-bottom:  #303030 solid 1px;
}
table.t-company tbody td span {
	padding: 0 0 7px 1rem;
	display: table-cell;
	display: block;
}
.t-company_2column{
    display: block;
}
.t-company_2column_cont{
     width: 100%;
}
.company_map iframe{
    border-radius: 10px;
}
    
}

/******************************************

SERVICE

*******************************************/
.ttl_sec{
    border-bottom: solid 52px #cecebe;
    margin-top: 100px;
}
.ttl_sec_sttl{
margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    	padding: 30px 0 14px 0;
}
.ttl_sec_sttl h2 {
	font-size: 1.4rem;
  font-weight: 600;
    text-align: left;
}
.ttl_sec_sttl span{
	color: #222;
    font-size: 5.2rem;
     font-family: "Bebas Neue", sans-serif;
  font-weight: bold;
  font-style: normal;
    letter-spacing: 0.3rem;
    margin-right: 16px;
    padding-bottom: 10px;

}
.ttl_sec_txt_bg{
width:  50%;
    background-color: #FFFFFF;
    display: inline-block;
    border-radius: 30px 0 0 30px ;
    margin: -350px 0 0 40%;
}
.ttl_sec_txt{

    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.6rem;
    text-align: left;
    padding: 45px 0 0 50px;
}
.ttl_sec_design{
    background-image: url("../img/service/ph_ttl_design.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    min-height: 440px;
    width: 50%;
    border-radius: 0 30px 30px 0 ;
}
.ttl_sec_txt h3 {
	color: #222222;
	font-size: 1.8rem;
	font-weight: bold !important;
	letter-spacing: 0 !important;
	margin: 0 0 0 0;
	padding: 0 0 0 0 ;
	display: flex;
    align-items:flex-start; /* 垂直中心 */
    justify-content: left; 
}
.ttl_sec_txt h3:before {
    display: none;
}
.ttl_service{
    text-align: center !important;
    margin-bottom: 20px;
}
.ttl_service h3{
 	color: #222;
    font-size: 4rem;
     font-family: "Bebas Neue", sans-serif;
  font-weight: bold;
  font-style: normal;
    letter-spacing: 0.2rem !important;
    margin: 0;
    padding:100px 0 10px 0; 
    text-align: center !important;
        justify-content: center; 
    position: relative;
}
.ttl_service h3:before {
    content: '';
    position: absolute;
    height: 60px;
    width: 1px;
    background: #222222;
    top:0;
}
.service_fea_cont{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 70px auto 0 auto;
    width: 1100px;
}
.service_fea_ttl{
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 140%;
    margin-bottom: 10px;
}
.service_fea_ph{
    width: 500px;
    height: auto;
}
.service_fea_ph_R{
    width: 500px;
    height: auto;
    margin-right: 50px;
}
.service_fea_ph img,
.service_fea_ph_R img{
    border-radius: 40px;
}
.service_fea_txt{
    width: 550px;
    text-align: left;
}
.service_lineup{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1060px;
    margin: 0 auto  80px auto;
}
.service_lineup_cont{
    width: 500px;
    margin-top: 80px;
    text-align: left;
}
.service_lineup_ph img{
border-radius: 20px;
}
.service_lineup_ttl{
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 25px;
}
.service_lineup_txt{
    margin-top: 15px;

}
.service_lineup_detail{
    margin-top: 20px;
    position: relative;
    padding-top: 20px;
}
.service_lineup_detail::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100px;
    height: 1px;
    background: #222222;
}
.service_lineup_detail p{
    font-weight: 600;
    margin: 0;
}
.service_works{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    margin: 60px auto 40px auto ;
    width: 1120px;
}
.service_works_cont{
    margin-right: 40px;
    margin-bottom: 30px;
    width: 250px;
}
.service_works_cont:nth-child(4n) {
  margin-right: 0;
}
.service_works_ph{
     width: 250px;
    height: 272px;
    background-color:#FFFFFF;
    border-radius: 20px;
    padding: 20px;
filter: drop-shadow(0px 0px 6px #ededed);   
}
.service_works_txt{
    text-align: left;
    margin: 15px 0 0 0;
    padding: 0 0 0 38px;
    position: relative;
}
.service_works_txt::before{
  content: "";
  display: inline-block;
    position: absolute;
    top:0;
    left: 0;
  width: 26px;
  height: 26px;
  margin:  0 ;
  background: url("../img/common/img_arrowmaru.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
    
}
.service_price{
    width: 1000px;
    margin: 60px auto 0 auto;
    display: flex;
    justify-content: space-between;
}
.service_price_cont{
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    width: 480px;
}
.service_price_ttl{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.service_price_sttl{
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #736e66;
    border-radius: 30px;
    display: block;
    padding: 7px;
}
.service_price_ph{
    width: 300px;
    margin: 0 auto;
}
.service_price_txt{
    text-align: left;
    margin-top: 15px;
}

.tb_price {
 width: 100%;
 text-align: left;
 border-collapse: collapse;
 border-spacing: 0;
}
.tb_price th {
 padding: 10px 20px;
 background: #f6f6f2;
 border: solid 1px #b8b8b8;
align-content: center;
}
.tb_price td {
 padding: 10px 20px;
 border: solid 1px #b8b8b8;
}
.btn_cont{
    margin: 60px 0;
    display: flex;
    justify-content: center;
}
.btn_cont div{
    margin: 0 20px;
}

.cont_toiawase{
    background-color: #f5f5ec;
    padding: 80px 0 40px 0;
    margin-bottom: 100px;
}
.toiawase_lead{
    font-size: 2rem;
    font-weight: 800;
}
.toiawase_txt{
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: -20px;
}


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

.ttl_sec{
    border-bottom: solid 52px #cecebe;
    margin-top: 70px;
}
.ttl_sec_sttl{
margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    	padding: 20px 0 14px 0;
}
.ttl_sec_sttl h2 {
	font-size: 1.1rem;
  font-weight: 600;
    text-align: left;
}
.ttl_sec_sttl span{
	color: #222;
    font-size: 4rem;
     font-family: "Bebas Neue", sans-serif;
  font-weight: bold;
  font-style: normal;
    letter-spacing: 0;
    margin-right: 16px;
    padding-bottom: 10px;

}
.ttl_sec_txt_bg{
width:  94%;
    background-color: #FFFFFF;
    display: inline-block;
    border-radius: 30px 0 0 30px ;
    margin: -100px 0 0 6%;
}
.ttl_sec_txt{

    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.6rem;
    text-align: left;
    padding: 45px 16px 0 40px;
}
.ttl_sec_design{
    background-image: url("../img/service/ph_ttl_design.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 440px;
    width: 94%;
    border-radius: 0 30px 30px 0 ;
}
.ttl_sec_txt h3 {
	color: #222222;
	font-size: 1.4rem;
	font-weight: bold !important;
	letter-spacing: 0 !important;
	margin: 0 0 0 0;
	padding: 0 0 0 0 ;
	display: flex;
    align-items:flex-start; /* 垂直中心 */
    justify-content: left; 
    line-height: 160%;
}
.ttl_sec_txt h3:before {
    display: none;
}
.ttl_service{
    text-align: center !important;
    margin-bottom: 15px;
}
.ttl_service h3{
 	color: #222;
    font-size: 3.6rem;
     font-family: "Bebas Neue", sans-serif;
  font-weight: bold;
  font-style: normal;
    letter-spacing: 0.1rem !important;
    margin: 0;
    padding:80px 0 6px 0; 
    text-align: center !important;
        justify-content: center; 
    position: relative;
}
.ttl_service h3:before {
    content: '';
    position: absolute;
    height: 40px;
    width: 1px;
    background: #222222;
    top:0;
}
.service_fea_cont{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 50px auto 0 auto;
    width: 100%;
    flex-wrap: wrap;
}
.service_fea_ttl{
    font-size:1.8rem;
    font-weight: 800;
    line-height: 140%;
    margin-top: 20px;
    margin-bottom: 10px;
}
.service_fea_ph{
    width: 100%;
    height: auto;
}
.service_fea_ph_R{
    width: 100%;
    height: auto;
    margin-right: 0;
    order: -1;

}
.service_fea_ph img,
.service_fea_ph_R img{
    border-radius: 40px;
}
.service_fea_txt{
    width: 100%;
    text-align: left;
}
.service_lineup{
	display: block;
    width: 100%;
    margin: 0 auto  20px auto;
}
.service_lineup_cont{
    width: 100%;
    margin-top: 60px;
    text-align: left;
}
.service_lineup_ph img{
border-radius: 20px;
}
.service_lineup_ttl{
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 25px;
}
.service_lineup_txt{
    margin-top: 15px;

}
.service_lineup_detail{
    margin-top: 20px;
    position: relative;
    padding-top: 20px;
}
.service_lineup_detail::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100px;
    height: 1px;
    background: #222222;
}
.service_lineup_detail p{
    font-weight: 600;
    margin: 0;
}
.service_works{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    margin: 60px auto 40px auto ;
    width: 100%;
}
.service_works_cont{
    margin-right: 15px;
    margin-bottom: 30px;
    width: calc(50% - 8px);
}
.service_works_cont:nth-child(2n) {
  margin-right: 0;
}
.service_works_ph{
    width: 100%;
    height: auto;
    background-color:#FFFFFF;
    border-radius: 10px;
    padding: 10px;
filter: drop-shadow(0px 0px 6px #ededed);   
}
.service_works_txt{
    text-align: left;
    margin: 15px 0 0 0;
    padding: 0 0 0 30px;
    position: relative;
}
.service_works_txt::before{
  content: "";
  display: inline-block;
    position: absolute;
    top:0;
    left: 0;
  width: 22px;
  height: 22px;
  margin:  0 ;
  background: url("../img/common/img_arrowmaru.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
    
}
.service_price{
    width: 100%;
    margin: 40px auto 0 auto;
    display: block;
}
.service_price_cont{
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    margin: 25px 0 0 0;
}
.service_price_ttl{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.service_price_sttl{
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #736e66;
    border-radius: 30px;
    display: block;
    padding: 7px;
}
.service_price_ph{
    width: 300px;
    margin: 0 auto;
}
.service_price_txt{
    text-align: left;
    margin-top: 15px;
}

.tb_price {
 width: 100%;
 text-align: left;
 border-collapse: collapse;
 border-spacing: 0;
}
.tb_price th {
 padding: 10px 20px;
 background: #f6f6f2;
 border: solid 1px #b8b8b8;
align-content: center;
}
.tb_price td {
 padding: 10px 20px;
 border: solid 1px #b8b8b8;
}
.btn_cont{
    margin: 60px 0  ;
    display: block;
    padding: 0 16px;
}
.btn_cont div{
    margin: 0 0 10px 0;
}

.cont_toiawase{
    background-color: #f5f5ec;
    padding: 60px 0 8px 0;
    margin-bottom: 80px;
}
.toiawase_lead{
    font-size: 1.4rem;
    font-weight: 800;
}
.toiawase_txt{
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: -30px;
}    
    
}
/******************************************

CONTACT

*******************************************/
#contact{
	margin-top: 100px;
}
.contact_thanks{
    margin-bottom: 50px;
    text-align: center;
}
.contact_thanks p{
    text-align: center;
}