@charset "utf-8";
/* CSS Document */

body{
	font-family: "uddigikyokasho-pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	color: #252525;
}
h1{
	font-size: 25px;
	font-weight: bold;
	width: 50%;
	padding-left: 40px;
}
h2{
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	margin-top: 0.3em;
    position: relative;
    padding-bottom: 10px;
}
h2::after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    height: 2px;
    width: 30px;
    background: #fbb03b;
    z-index: 2;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
header{
	width: 100%;
	position: fixed;
	top: 0;
	padding: 10px;
	background: #FFF;
	z-index: 100;
}
img{
	width: 100%;
}
main{
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
a{
	color: #252525;
	text-decoration: none;
    transition: 0.3s;
}
a:hover{
	color: #fbb03b;
}
.sp{
	display: none;
}
.w_50{
	width: 50%;
}
.flex,.flex_pc{
	display: flex;
}
.flex-container{
  	justify-content: center;
  	align-items: center;
}
.menu{
	width:  calc(100% / 3) ;
	display: block;
	transform: .3s;
}
.menu:hover{
	color: #fbb03b;
}
section{
	max-width: 1000px;
	min-height: 30vh;
	margin: 0 auto;
	padding: 100px 0;
}
.title{
	font-size: 20px;
	font-weight: bold;
}
.title span{
	font-size: 15px;
	display: block;
}
.box{
	width: 35%;
	display: block;
}
.box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.text{
	width: 53%;
	padding: 20px;
	display: block;
}
.button{
	position: relative;
}
.button .ya {
    position: absolute;
	bottom: 0;
	right: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 100px;
    padding: 10px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button .ya:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -2em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 1.5px;
    background-color: #fbb03b;
    transition: 0.3s;
}
.button .ya:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
    width: 40px;
    height: 1.5px;
    background-color: #fbb03b;
    transition: 0.3s;
}
.boxsh:hover .button .ya:before, .boxsh:hover .button .ya:after {
    right: -2.5em;
}
.boxsh:hover .button .ya {
    color: #fbb03b;
}
.m_t_50{
	margin-top: 50px;
}
.boxsh{
	box-shadow: 2px 2px 4px gray;
    transition: 0.3s;
	height: 250px;
	margin: 10px;
}
.boxsh:hover{
	box-shadow: 1px 1px 2px gray;
	color: #b7b7b7;
}
.boxsh:hover img{
	opacity: .7;
}
.cont{
	margin: 10px;
	padding: 10px;
}
footer{
	width: 100%;
	background-color: #d8d8d8;
	position: relative;
	bottom: 0;
}
.footer{
	display: flex;
	width: 90%;
	margin: 0 auto;
}
.logo{
	width: 50%;
	padding: 40px 0;
	font-size: 30px;
}
.address{
	font-size: 15px;
    text-align: left;
    padding: 1em 0;
}
.w_10{
	width: 15%;
	box-sizing: border-box;
	padding: 40px 0
}
.add{
	display: block;
    width: 100%;
	padding: 1em 0 0 0;
    transition: 0.3s;
}
.add:hover{
	opacity: 0.5;
}
.footer_menu{
	display: block;
	list-style: none;
	width: 35%;
	padding: 40px 0;
	box-sizing: border-box;
}
.footer_menu a{
	display: block;
	padding: 1em;
}
footer p{
	margin: 0;
	padding: 1em;
	text-align: center;
}
.block{
	display: block;
}
/*about*/
.sub{
	height: 30%;
	margin-top: 90px;
}
.sub_title{
	font-size: 25px;
	font-weight: bold;
	border-bottom: 1px dotted #888888;
	margin: 50px 0 30px 0;
	padding-bottom: 5px;
}
.s_ti{
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px #888888;
}
.b_l{
	max-width: 300px;
  	margin: 0 auto;
}
a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #888888;
  box-sizing: border-box;
  width: 80%;
  height: 80px;
  margin: 20px;
  padding: 0 25px;
  color: #888888;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.3s;
}
a.btn:hover {
  background: #888888;
  border: 1px solid #B8B8B8;
  color: #fff;
}
a.btn:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 50px;
  border-color: transparent transparent #888888 transparent;
}
a.btn span {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: inline-block;
}
a.btn span:before {
    content: '';
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 1px;
    margin-top: -7px;
}
a.btn span:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: 2px solid #888888;
    border-right: 2px solid #888888;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 4px;
    margin-top: -3px;
}
.fade_on{
	background: #FFF!important;
}
.on{
	background: rgba(255,255,255,0.3);
}
.p_30{
	padding:30px;
}
.name{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	display: block;
}
.mail{
	color: #fbb03b;
	text-decoration: underline;
}
ol.non{
	margin: 0;
	padding: 0;
}
ol.non li {
  list-style-type: none;
  counter-increment: cnt;
  padding-left: 1.6em;
  text-indent: -1.6em;
}

ol.non li::before {
  content: "("counter(cnt)")";
}
.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 25px;
	color: #000;
	vertical-align: middle;
	font-size: 15px;
	text-decoration: underline;
	text-underline-offset: 5px;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.link::before{
	left: 3px;
    width: 10px;
    height: 3px;
    background: #888888;
}
.link::after{
	left: 4px;
    width: 8px;
    height: 8px;
    border-top: 3px solid #888888;
    border-right: 3px solid #888888;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (max-width: 820px){
	main{
		height: auto;
	}
	section {
		padding: 50px 0;
		width: 95%;
	}
	.boxsh{
		position: relative;
	}
	.add {
		padding: 60px 10px;
	}

}
@media screen and (max-width: 768px){
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	body{
		font-size: 1rem;
	}
	header{
		box-sizing: border-box;
		z-index: 1000;
	}
	main{
		height: auto;
	}
	section {
		width: 90%;
    	overflow: hidden;
		padding: 50px 0;
		margin: 0 auto;
	}
	h1{
		font-size: 1.3rem;
    	padding: 0 0 10px 0;
    	margin: 0;
    	text-align: center;
		width: 100%;
		box-sizing: border-box;
	}
	.flex_pc{
		display: block;
	}
	.w_50{
		width: 95%;
		text-align: center;
	}
	.text p{
		padding: 0;
		margin: 0;
	}
	.title{
		font-size: 1.5rem;
	}
	.cont {
		margin: 0 10px;
		font-size: .9rem;
	}
	.text{
		width: 57%;
		padding: 10px;
	}
	.title span{
		display: block;
		padding-left: 0;
		padding-top: 10px;
	}
	.box{
		display: inline-block;
		height: 14em;
		width: 35%;
	}
	.box img{
		object-position: center;
	}
	.boxsh {
		height: 14em;
		position: relative;
		
	}
	.button .ya{
		font-size: .8rem;
	}
	.footer{
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	footer p {
		font-size: 13px;
		padding: 0;
	}
	.logo{
		width: auto;
		font-size: 1.5rem;
    	padding: 20px 0 0 0;
	}
	.address{
		font-size: 1rem;
		padding: 0;
	}
	.w_10 {
    	width: 100%;
    	padding: 0;
	}
	.add {
		width: 45%;
		padding: 0 5%;
		margin: 0;
		display: table-cell;
	}
	.footer_menu{
		width: auto;
		padding: 10px 0 10px 0;
	}
	.footer_menu a{
		padding: 10px 0;
	}
	.sub{
		margin-top: 7.5em;
	}
	.sub_title {
		font-size: 1.3rem;
	}
	a.btn {
		font-size: 1rem;
		margin: 20px auto;
	}
	.p_30{
		padding: 0;
	}

	
}