@charset "UTF-8";

/* 共通項
***************************************************************************************/
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

img {
	vertical-align: top;
	border: none;
  max-width: 100%;
}

a:link,
a:active,
a:visited,
a:hover {
	text-decoration: none;
}

a:hover {
    opacity: .6;
}

.dispPC {
	display: initial;
}

.dispSP {
	display: none;
}

.wrap {
	width: 1140px;
	margin: auto;
}

.inner {
	width: 960px;
	margin: auto;
}

.bg_blue {
	background-color: #0387b4;
}

.bg_darkblue {
	background-color: #0d2761;
}

.bg_lightgray {
	background-color: #f4f4f4;
}

.bg_gray {
	background-color: #a0a0a0;
}

.bg_lightgreen {
	background-color: #F2F9FB;
}

.btn {
	display: flex;
	text-decoration: none;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.btn_frame01 {
	width: 222px;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1;
	padding: 22px 0;
	font-weight: bold;
}

.btn_frame02 {
	width: 390px;
	border-radius: 4px;
	font-size: 24px;
	line-height: 1;
	padding: 39px 0 35px;
	font-weight: bold;
	position: relative;
}

.btn_frame02::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.btn_frame02::before {
	right: 30px;
	left: auto;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn_frame06 {
	width: 285px;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1;
	padding: 20px 0;
	font-weight: bold;
}

.btn_grad_org {
	background: #ffa000;
	background: -moz-linear-gradient(left, #ffa000 0%, #ff6450 100%);
	background: -webkit-linear-gradient(left, #ffa000 0%, #ff6450 100%);
	background: linear-gradient(to right, #ffa000 0%, #ff6450 100%);
	color: #fff;
}

.txt_clr_blue {
	color: #0387b4;
}

.txt_clr_org {
	color: #FF7A00;
}




/* ヘッダー
***************************************************************************************/
header {
	padding: 21px 0 24px;
}

header .wrap {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

#logo {
	width: 235px;
	margin: 0;
}

.head_right {
	display: flex;
	align-items: center;
}

.head_right div {
	margin: 0 37px 0 0;
}

.head_right div p {
	margin: 0;
	font-size: 11px;
	text-align: center;
}

.head_right div p+p {
	margin-top: 10px;
	font-weight: bold;
	line-height: 1;
}

.head_right .contact {
	margin: 0;
}

/* メニュー
****************/
.gnavi_wrap {
	width: 120px;
	margin: 0 60px 0 auto;
  position: relative;
  padding: 0 30px 0 0;
}
.gnavi_wrap::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  right: 10px;
  top: 8px;
  transform: rotate(135deg);
}

.gnavi_lists {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.gnavi_list {
	position: relative;
	transition: all .3s;
	font-weight: 600;
	border-bottom: 1px solid #ccc;
}

.gnavi_list:not(:first-child)::before {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s;
}

.gnavi_list>span {
	display: block;
	position: relative;
}

.gnavi_list>span::after {
	content: "";
	display: block;
	position: absolute;
	right: -30%;
	top: 50%;
	width: 10px;
	height: 10px;
	transform: translate(0, -50%);
}

.sub_lists {
	display: none;
	/*デフォルトでは非表示の状態にしておく*/
	width: 300%;
	position: absolute;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	box-shadow: 0 0 5px #999;
}

.gnavi_list:hover .sub_lists {
	display: block;
	/*Gナビメニューにホバーしたら表示*/
	z-index: 100;
}

.sub_list {
	transition: all .3s;
	position: relative;
	background-color: #fff;
}

.sub_list:not(:first-of-type) {
	border-top: 1px solid #ddd;
}

.sub_list a {
	display: block;
	text-decoration: none;
	position: relative;
	padding: 8px;
	color: #000;
	font-weight: normal;
}

.sub_list a::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(135deg);
	position: absolute;
	right: 15px;
	top: calc(50% - 5px);
}

.sub_list a span {
	font-size: 70%;
}

/* メイン
***************************************************************************************/
.inquiry{
  background-image: url(../images/bg.png);
  background-size: cover;
}
.inquiry .wrap{
  padding: 90px 0;
  text-align: center;
}
.inquiry p{
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  margin: 0;
}
.inquiry p + p{
  margin-top: 45px;
}
.inquiry p a{
  display: block;
  font-size: 20px;
  color: #fff;
  width: 360px;
  margin: auto;
  padding: 28px 0;
}

.company {
	margin: 0;
	padding: 100px 0;
}

.company p {
	margin: 0 auto 85px;
	width: 460px;
	text-align: center;
}

.company p img {
	width: 100%;
}

.company table {
	width: 677px;
	margin: 0 auto;
	border: none;
	font-size: 16px;
	border-spacing: 0;
}

.company table td,
.company table th {
	background: #f2f9fb;
	padding: 14px 16px;
}

.company table th {
	padding: 14px 22px 14px 60px;
	text-align: left;
	font-weight: normal;
	position: relative;
}

.company table th::after {
	content: ":";
	display: block;
	position: absolute;
	right: 0;
	top: 0.7em;
}

.company table tr:nth-child(even) td,
.company table tr:nth-child(even) th {
	background: #fff;
}

.company table tr:last-of-type td {
	/*padding: 14px 22px 14px 60px;*/
	/*font-size: 14px;*/
}

.fix_bar {
	background-color: #fff;
	box-shadow: 0 0 10px #ccc;
}

.fix_bar .wrap {
	width: 675px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
}

.fix_bar p {
	margin: 0;
	line-height: 1.4;
	text-align: left;
}

.fix_bar p:first-of-type {
	font-size: 14px;
}

.fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 200;
	width: 100%;
}


#nav {
	position: fixed;
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 15px;
	text-align: center;
	top: 50%;
	right: 3%;
	z-index: 50;
	transform: translate(0, -50%);
	display: none;
}

#nav li {
	margin: 20px 0;
	position: relative;
}

#nav li a {
	border: 1px solid #fff;
	display: block;
	border-radius: 6px;
	background-color: #e9e9e9;
	color: #222222;
	font-weight: bold;
	padding: 8px;
}

#nav li a.now {
	background-color: #ffa000;
	color: #fff;
}

#nav li {
	position: relative;
	padding: 0 0 0 0;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}

#nav li::before,
#nav li::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

#nav li::before {
	left: 0;
	right: 0;
	top: -60px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #dedede;
	border-right: 2px solid #dedede;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

#nav li:first-of-type::before {
	display: none;
}


.scene .wrap{
  padding: 100px 0;
  width: 960px;
}

.scene h2{
  font-size: 40px;
  margin: 0 0 100px;
  text-align: center;
  line-height: 1;
}
.scene h3{
  font-size: 30px;
  margin: 90px 0 35px;
  color: #0387B4;
  text-align: center;
  line-height: 1.2;
}
.scene ul{
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
}
.scene ul a{
  display: block;
  border: 2px solid #0387B4;
  border-radius: 10px;
  padding: 20px 15px 20px 89px;
  color: #222;
  position: relative;
  background-repeat: no-repeat;
  background-position: 21px center;
  background-size: 50px;
  height: 100%;
  display: flex;
}
.scene ul a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #5070e3;
  border-right: solid 2px #5070e3;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: rotate(45deg) translate(-70%,0);
}
.scene ul:first-of-type li{
  width: 225px;
}
.scene ul:first-of-type li:first-of-type a{
  background-image: url(../images/icon01.svg);
}
.scene ul:first-of-type li:nth-child(2) a{
  background-image: url(../images/icon02.svg);
}
.scene ul:first-of-type li:nth-child(3) a{
  background-image: url(../images/icon03.svg);
}
.scene ul:first-of-type li:last-of-type a{
  background-image: url(../images/icon04.svg);
}
.scene ul:last-of-type{
  flex-wrap: wrap;
}
.scene ul:last-of-type li{
  width: 307px;
}
.scene ul:last-of-type li:first-of-type a{
  background-image: url(../images/icon05.svg);
}
.scene ul:last-of-type li:nth-of-type(2) a{
  background-image: url(../images/icon06.svg);
}
.scene ul:last-of-type li:nth-of-type(3) a{
  background-image: url(../images/icon07.svg);
}
.scene ul:last-of-type li:nth-of-type(4) a{
  background-image: url(../images/icon08.svg);
}
.scene ul:last-of-type li:nth-of-type(5) a{
  background-image: url(../images/icon09.svg);
}
.scene ul:last-of-type li:last-of-type a{
  background-image: url(../images/icon10.svg);
}
.scene ul:last-of-type li:nth-of-type(n+4){
  margin-top: 20px;
}
.scene ul a span{
  display: flex;
  align-items: center;
}

/* フッター
***************************************************************************************/
footer {
	background-color: #ebebeb;
	padding: 32px 0;
}

footer .wrap {
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
}

footer .wrap p {
	margin: 0;
	line-height: 1;
	font-size: 14px;
}

footer .wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1;
	display: flex;
	font-size: 14px;
}

footer .wrap ul li {
	margin: 0 0 0 30px;
}

footer .wrap ul a {
	color: inherit;
}


/*
下層
***************************************************************************************/
#category{
  background-image: url(../images/common/bg_category.png);
  background-size: cover;
}
#category .wrap{
  padding: 55px 0;
}
#category h2{
text-align: center;
margin: 0;
line-height: 1;
}
#category img{
  width: 154px;
}
#category h2 +p{
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 13px 0 0;
  line-height: 1;
}
#category h3{
  font-size: 40px;
  text-align: center;
  margin: 35px 0 0;
  line-height: 1;
}
#category h3 +p{
  margin: 55px 0 0;
  text-align: center;
  font-size: 18px;
}
#category h3 +p a{
  width: 274px;
  font-size: 18px;
  padding: 23px 0 19px;
  margin: auto;
}
#category h3 +p a::before {
  right: 16px;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.navi_p .wrap{
  padding: 12px 0 9px;
}
.navi_p p{
  line-height: 1;
  margin: 0;
  font-size: 12px;
}
.navi_p p a{
  font-weight: bold;
  color:#0082ba;
}

@media screen and (min-width:769px) {

	.btn:hover,
	footer .wrap ul a:hover,
	#nav li a:hover {
		opacity: .7;
	}

	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		color: inherit;
	}
}

/* スマホ用
***************************************************************************************
***************************************************************************************
***************************************************************************************
***************************************************************************************/
@media screen and (max-width:768px) {
	html {
		font-size: calc(100vmin / 32);
	}

	body {
		line-height: 1;
	}

	.dispPC {
		display: none;
	}

	.dispSP {
		display: initial;
	}

	img {
		width: 100%;
		vertical-align: top;
	}

	.wrap {
		width: auto !important;
		margin: auto;
		padding: 0 3.125vmin;
	}

	.inner {
		width: auto;
		margin: auto;
	}

  .btn_frame06 {
    width: auto;
    font-size: 4vmin;
    padding: 4vmin 0;
  }


	/* ヘッダー
***************************************************************************************/
	header {
		padding: 3.15vmin 0;
	}

	#logo {
		width: 30vmin;
	}

	.head_right {
		width: 55vmin
	}

	.head_right div {
		margin: 0 3vmin 0 0;
	}

	.head_right div p {
		margin: 0;
		font-size: 3.4375vmin;
		text-align: center;
	}

	.head_right div p+p {
		margin-top: 2vmin;
		font-size: 2.8vmin
	}

  .btn_frame01 {
    width: 25vmin;
font-size: 3vmin;
line-height: 1;
padding: 3.125vmin 0;
  }

  /* メニュー
****************/
.gnavi_wrap {
  display: none;
}

	/* メイン
***************************************************************************************/
.inquiry .wrap{
  padding: 10vmin 3.125vmin;
  width: auto;
}
.inquiry p{
  font-size: 4vmin;
  line-height: 1.4;
}
.inquiry p + p{
  margin-top: 5.85vmin;
}
.inquiry p a{
  font-size: 4.5vmin;
  width: auto;
  padding: 6vmin 0;
}

.scene .wrap{
  padding:10vmin 3.75vmin;
  width: auto;
}

.scene h2{
  font-size: 5.5vmin;
  margin: 0 0 8vmin;
  text-align: center;
}
.scene h3{
  font-size: 5vmin;
  margin: 8vmin 0 10vmin;
}
.scene ul{
  font-size: 4vmin;
  flex-wrap: wrap;
}
.scene ul a{
  padding: 3vmin 5vmin 3vmin 15vmin;
  background-position: 3vmin center;
  background-size: 10vmin;
}
.scene ul a::after {
  width: 6px;
  height: 6px;
  right: 2vmin;
}
.scene ul:first-of-type li{
  width: 48%;
}
.scene ul:first-of-type li:nth-of-type(n+3){
  margin-top: 3vmin;
}

.scene ul:last-of-type{
  flex-wrap: wrap;
}
.scene ul:last-of-type li{
  width: 48%;
}
.scene ul:last-of-type li:nth-of-type(n+4){
  margin-top: auto;
}
.scene ul:last-of-type li:nth-of-type(n+3){
  margin-top: 3vmin;
}


	 .fix_bar {
		background-color: #fff;
		box-shadow: 0 0 10px #ccc;
	}

	.fix_bar .wrap {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 22px 0;
	}

	.fix_bar p {
		margin: 0;
		line-height: 1.4;
		text-align: left;
	}

	.fix_bar p:first-of-type {
		font-size: 14px;
	}

	.fixed {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 200;
		width: 100%;
	} 


	#nav {
		display: none;
	}


	.company {
		margin: 0;
		padding: 10vmin 0;
	}

	.company p {
		margin: 0 auto 10vmin;
		width: auto;
		text-align: center;
	}

	.company p img {
		width: 100%;
	}

	.company table {
		width: auto;
		font-size: 4vmin;
		line-height: 1.4;
	}

	.company table td,
	.company table th {
		background: none;
		padding: 3vmin 3vmin 6vmin 6vmin;
		display: block;
	}

	.company table th {
		padding: 3vmin;
		font-weight: bold;
		background-color: #f2f9fb;
	}

	.company table th::after {
		display: none;
	}

	.company table tr:nth-child(even) th {
		background-color: #f2f9fb;
	}

	.company table tr:last-of-type td {
		/*padding: 3vmin 0 0;*/
		/*font-size: 3.5vmin;*/
	}

	.fix_bar {
		background-color: #fff;
	}

	.fix_bar .wrap {
		width: auto;
		padding: 3.75vmin;
		flex-direction: column;
		align-items: stretch;
	}

	.fix_bar p:first-of-type {
		font-size: 3.5vmin;
		margin: 0 0 3vmin;
	}

	#nav {
		display: none;
	}


  /*
下層
***************************************************************************************/
#category .wrap{
  padding: 10vmin 3.125vmin;
  width: auto;
}
#category img{
  width: 50vmin;
}
#category h2 +p{
  font-size: 6vmin;
  margin: 4vmin 0 0;
}
#category h3{
  font-size: 8vmin;
  margin: 10vmin 0 0;
}
#category h3 +p{
  margin: 10vmin 0 0;
  font-size: 5vmin;
}
#category h3 +p a{
  width: auto;
  font-size: 5vmin;
  padding: 4vmin 0;
}

.navi_p .wrap{
  padding: 3.125vmin;
}
.navi_p p{
  font-size: 3vmin;
}



	/* フッター
***************************************************************************************/
	footer {
		background-color: #ebebeb;
		padding: 6vmin 0;
	}

	footer .wrap {
		align-items: center;
		padding: 0 0;
		flex-direction: column-reverse;
	}

	footer .wrap p {
		margin: 0;
		line-height: 1;
		font-size: 3.5vmin;
	}

	footer .wrap ul {
		margin: 3vmin 0;
		font-size: 3.5vmin;
	}

	footer .wrap ul li {
		margin: 0 5vmin;
	}

	footer .wrap ul a {
		color: inherit;
	}

}
