@charset "UTF-8";
/* style.css */


/* 基本設定 */

@import url('reset.css');

html { font-size: 62.5%; overscroll-behavior-y: none;}

body {
	background: #fff;
	color: #000;
	text-align: justify;
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
	font-size: 18px; font-size: 1.8rem;
	line-height: 1.8;
	font-family:'Noto Sans Japanese', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	-webkit-text-size-adjust: 100%;
}

a{
	outline: none;
	color: #dc3828;
}
a:hover{
	opacity: 0.5;
	transition: 0.3s;
}
a:focus{
	outline: none;
}

img {
	max-width: 100%;
	height: auto;
}
.is-pc{ display: inherit!important;}
.is-sp{ display: none!important;}


/* 共通レイアウト */

#pagetop {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.contents {
	position: relative;
}
#header {
	width: 100%;
	position: fixed;
	z-index: 100;
	transition: 0.3s;
	background: rgba(255,255,255,0.85);
}
#header h1 {
	display: flex;
	align-items: center;
}
#header h1 a img{
	width: 180px;
	height: auto;
}
#header.bg {
}
#header .contents {
	display: flex;
	justify-content: space-between;
}
#header #menu {
	display: flex;
}
#header #menu .menu_box {
	display: flex;
}
#header #menu .btn {
	display: none;
}
#header #menu ul {
	display: flex;
}
#header #menu li {
	display: flex;
}
#header #menu li a {
	text-decoration: none;
	color: #000;
	font-size: 14px; font-size: 1.4rem;
	line-height: 1.2;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#header #menu li.contact a {
	background: #dc3828;
	color: #fff;
	font-weight: bold;
	padding: 10px 30px;
}
#header #menu li.tw a {
	background: #000;
	color: #fff;
	font-weight: bold;
	padding: 0 15px;
}
#header #menu li.tw a img {
	width: 30px;
}
#header #menu li.blank a {
	position: relative;
	padding-right: 45px;
}
#header #menu li.blank a::after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border: solid 1px #000;
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50%;
	right: 20px;
}
#header #menu li.blank a::before {
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-bottom: solid 1px #000;
	border-right: solid 1px #000;
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-right: -3px;
	margin-top: 4px;
}


#header #menu .close {
	display: none;
}
#header #menu .close span {
	position: relative;
	padding: 0 1em;
	font-weight: bold;
}
#header #menu .close span::before,
#header #menu .close span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 75%;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}
#header #menu .close span::after {
  transform: translateY(-50%) rotate(-45deg);
}

#main {

}

#pagehead {
	width: 100%;
	height: 400px;
	box-sizing: border-box;
	padding-top: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#pagehead h2 {
	font-size: 52px; font-size: 5.2rem;
	line-height: 1.3;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.05em;
	text-align: center; 
}

.btnType {
	text-align: center;
	margin: 30px auto;
}
.btnType a {
	display: inline-block;
	margin: 0 auto;
	text-align: left;
	min-width: 214px;
	box-sizing: border-box;
	border-radius: 25px / 50%;
	font-size: 22px; font-size: 2.2rem;
	line-height: 1.4;
	text-decoration: none;
	padding: 10px 40px 10px 20px;
	position: relative;
	border: #e83828 1px solid;
}
.btnType a::after {
	content: '';
	width: 16px;
	height: 16px;
	border: 0px;
	border-top: solid 1px #e83828;
	border-right: solid 1px #e83828;
	transform: scale(0.8,1) rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
}
.btnType.btn_white a {
	border: #fff 1px solid;
	color: #fff;
}
.btnType.btn_white a::after {
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
}


#footer {
	background: #dc3828;
	color: #fff;
	position: relative;
}
#footer .pagetop {
	position: absolute;
	z-index: 100;
	right: 0;
	bottom: 100%;
}
#footer .pagetop a {
	display: block;
	background: #dc3828;
	text-indent: -9999em;
	overflow: hidden;
	width: 68px;
	height: 64px;
}
#footer .pagetop a::after {
	content: '';
	width: 16px;
	height: 16px;
	border: 0px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: scale(1,0.8) rotate(-45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
}

#footer .contents {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 30px 50px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
#footer .contents .sns {
	display: flex;
}
#footer .contents .sns a {
	margin: 10px;
}

#footer .contents .info a {
	width: 330px;
	font-size: 17px; font-size: 1.7rem;
}
#footer .contents .info li {
	margin: 10px 0;
}

#footer .contents .info li.btnType a::after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border: solid 1px #fff;
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50%;
	right: 20px;
}
#footer .contents .info li.btnType a::before {
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-bottom: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-right: -4px;
	margin-top: 4px;
}

#footer .copy {
	font-size: 12px; font-size: 1.2rem;
	text-align: center;
	color: #000;
	background: #fff;
	padding: 10px;
}


@media screen and (max-width: 767px) {
	
	html { font-size: 3.2vw; }
	.is-pc{display: none!important;}
	.is-sp{display: inherit!important;}
	body {
		font-size: 3.2vw;
	}

	/* 共通レイアウト */
	#wrap {
		overflow: hidden;
	}

	#header h1{
	}
	#header h1 img,
	#header h1 a img {
		width: auto;
		height: 13.33vw;
	}
	
	#header #menu .menu_box {
	display: block;
}

	#header #menu button.btn {
		display: block;
		background: none;
		border: none;
		padding: 0;
		width: 13.33vw;
		height: 13.33vw;
		cursor: pointer;
		text-align: center;
		outline: none;
		z-index: 102;
		overflow: hidden;
	}

	#header #menu button span.bar {
		display: block;
		width: 8vw;
		height: 0.8vw;
		transition: all 0.3s;
		transform-origin: 0 0;
	  }
	
	#header #menu button .spinner {
		margin: 1.5vw auto;
		width: 8vw;
		height: 0.8vw;
		background-color: #000;
		transition: all 0.3s;
		box-sizing: border-box;
		position: relative;
	}
	#header #menu button.active .horizontal {
		opacity: 0;
	}
	#header #menu button.active .diagonal.part-1 {
		transform: rotate(135deg);
		margin-top: 2vw;
	}
	#header #menu button.active .diagonal.part-2 {
		transform: rotate(-135deg);
		margin-top: -4.4vw;
	}
	#header #menu .menu_box {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		max-height: 0;
		background: #dc3828;
		text-align: center;
		transition: all 0.5s;
		overflow: hidden;
	}
	#header #menu .menu_box.active {
		max-height: 100vh;
	}
	#header #menu ul {
		display: block;
		padding: 4vw;
		width: 70vw;
		margin: 0 auto;
	}
	#header #menu li {
		margin: 1.5%;
		border-bottom: #fff 1px solid;
		display: block;
	}
	#header #menu li a ,
	#header #menu li.contact a {
		font-size: 3.9vw;	
		padding: 2.6vw;
		color: #fff;
		font-weight: bold;

	}
	#header #menu li.blank a {
		padding-right: 1em;
	}
	#header #menu li.blank a::after {
		border-color: #fff;
		width: 2vw;
		height: 2vw;
		right: auto;
		margin-left: 10vw;
		left: 50%;
	}
	#header #menu li.blank a::before {
		border-color: #fff;
		width: 2vw;
		height: 2vw;
		right: auto;
		left: 50%;
		margin-right: 0;
		margin-left: 10.8vw;
		margin-top: 0.8vw;
	}
	#header #menu li.tw {
		border-bottom: none;
		justify-content: center;
		margin: 3vw;
	}
	#header #menu li.tw a {
		background: none;
	}

	#header #menu .close {
		display: block;
		font-size: 3.6vw;
		padding: 0 0 6vw;
	}
	#header #menu .close span {
		display: inline-block;
		position: relative;
		padding: 0.5vw 7vw 0.5vw 2vw;
		font-weight: bold;
		border: #fff 1px solid;
		color: #fff;
	}
	#header #menu .close span::before,
	#header #menu .close span::after {
	  content: '';
	  position: absolute;
	  top: 50%;
	  right: 3vw;
		  width: 0.3vw;
	  height: 75%;
	  background: #fff;
	  transform: translateY(-50%) rotate(45deg);
	}
	#header #menu .close span::after {
	  transform: translateY(-50%) rotate(-45deg);
	}

	#main {
	}
	#pagehead {
		height: 55vw;
		padding-top: 16.66vw;
	}

	#pagehead h2 {
		font-size: 6.2vw;
	}

	.btnType {
			margin: 4vw auto;
	}
	.btnType a {
			min-width: 45vw;
			border-radius: 8vw;
			font-size: 3.7vw;
			padding: 2.5vw 4.5vw;
	}
	.btnType a::after {
			width: 2.9vw;
			height: 2.9vw;
			right: 4.6vw;
	}
	.btnType.btn_white a {
	}
	.btnType.btn_white a::after {
	}


	#footer {
	}
	#footer .pagetop a {
		width: 12vw;
		height: 12vw;
	}
	#footer .pagetop a::after {
		width: 3vw;
		height: 3vw;
		right: 3vw;
	}

	#footer .contents {
		padding: 8vw 3vw;
		display: block;
	}
	#footer .contents .sns {
		justify-content: center;
		margin-bottom: 6vw;
	}
	#footer .contents .sns a {
		margin: 2vw;
	}

	#footer .contents .info a {
		width: 70%;
		font-size: 3.2vw;
	}
	#footer .contents .info li {
		margin: 2vw 0;
	}
	#footer .contents .info li.btnType a::after {
		width: 2vw;
		height: 2vw;
		right: 4vw;
	}
	#footer .contents .info li.btnType a::before {
		width: 2vw;
		height: 2vw;
		right: 4vw;
		margin-right: -0.6vw;
		margin-top: 0.8vw;
	}
	#footer .copy {
				font-size: 2.9vw;
		padding: 2vw;
	}



}

@media screen and (min-width: 768px) {
	
  a[href^="tel:"] {
      pointer-events: none;
      text-decoration: none;
  }
  
}
