@charset "utf8";

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

/*=============================
  - header
	- fotter
	- navigation
==============================*/

/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
	width: 100%;
	background: rgba(255,255,255,0.8);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
#header .inner {
	width: 100%;
	height: 80px;
	margin: 0 auto;
}
#header .logo-wrap {}

#header .logo-wrap h1 {
	padding-left: 20px;
}
#header .logo-wrap h1 span {
    font-size: 12px;
    font-weight: normal;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
}
#header .logo-wrap h1 a {
    display: grid;
    gap: 5px;
}
@media only screen and (min-width: 681px) and (max-width: 1080px) {
	#header .logo-wrap {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
    	padding: 10px 2vw;
	}
	#header .logo-wrap h1 {
		padding-left: 0;
	}
}
@media screen and (max-width: 680px) {
	#header {
		width: 100%;
		height: auto;
	}
	#header .inner {
		width: 100%;
		height: auto;
	}
	#header .logo-wrap {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: space-between;
		padding: 10px 10px;
	}
	#header .logo-wrap h1 {
		padding-left: 0;
	}
	#header .logo-wrap h1 span {
		font-size: 1.3vw;
		padding-bottom: 5px;
	}
	#header .logo-wrap h1 img {
		height: 25px;
	}
	#header .logo-wrap .sp-only {
		margin-top: 2px;
	}
}


#header .g-nav {}
#header .g-nav ul {
	margin-top: 0;
    margin-bottom: 0;
	
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr); /* gridアイテムの幅指定（左は80px、5個は1fr（1/5）を繰り返す） */
	grid-template-rows: 60px; /* gridアイテムの高さ */
}

#header .g-nav li {}
#header .g-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 200;
	border-left: 1px solid #fff;
	
	display: grid;
    align-items: center;
    justify-content: center;
    height: 100%;
}
#header .g-nav li:last-child a {
	border-right: 1px solid #fff;
}
#header .g-nav li a:hover {
	transition: 0.3s;
	opacity: 0.7;
}
@media only screen and (min-width: 681px) and (max-width: 1080px) {
	#header .g-nav {
		display: none;
	}
}
@media screen and (max-width: 680px) {
	
}


/*  main-v  */
.main-v {
	background: url("../images/mv-back.png") no-repeat;
	background-position: top center;
	background-size: cover;
	height: 90vh;
	position: relative;
}
.main-v .main-title-wrap {
	padding-top: 140px;
	padding-bottom: 100px;
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.main-v .main-title {
	width: 50%;
    max-width: 600px;
    margin: 5rem 0 3rem;
}
.main-v .main-title span {
	font-size: 44px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
}
.main-v .main-title img {
	padding-top: 50px;
    display: inline-block;
}
@media only screen and (min-width: 681px) and (max-width: 1080px) {
	.main-v {
		background: url(../images/mv-back.png) no-repeat;
		background-position: top right -100px;
		background-size: cover;
		height: 66vw;
	}
	.main-v .main-title-wrap {
		width: 100%;
		padding-left: 2vw;
		padding-right: 2vw;
		padding-top: 15vw;
		padding-bottom: 0;
	}
	.main-v .main-title { 
		width: 40%;
		margin: 2rem 0 2rem;
	}
	.main-v .main-title span {
		font-size: 2.8vw;
	}
	.main-v .main-title img {
		padding-top: 1.8vw;
		width: 50vw;
	}
	
}
@media screen and (max-width: 680px) {
	.main-v {
		height: calc(100vw + 60px);
		height: auto;
		padding-top: 60px;
		background: #fff;
	}
	.main-v .main-image {
		width: 80vw;
		height: 88vw;
		overflow: hidden;
		border-radius: 0 30px 30px 0;
	}
	.main-v .main-image img {
		border-radius: 0 30px 30px 0;
		object-position: 98% 0;
		width: 140%;
		height: 140%;
	}
	.main-v .main-title-wrap {
		width: 100%;
    	padding: 20px 15px;
		background: url(../images/mv-back.png) no-repeat;
		background-position: top center;
		background-size: cover;
	}
	.main-v .main-title {
		width: 100%;
		max-width: inherit;
		margin: 0 0 2rem;
	}
	.main-v .main-title span {
		font-size: 4vw;
	}
	.main-v .main-title img {
		padding-top: 10px;
		width: 64%;
	}
	
}


.main-v .main-search {}
.main-v .main-search .select-wrap::before {
	/* 三角マーク */
	content: "";
	position: absolute;
	top: 25px;
	top: max(1.3vw, 25px);
	right: 17px;
	right: max(0.89vw, 17px);
	border: 6px solid transparent;
	border: max(0.31vw, 6px) solid transparent;
	border-top: 11px solid #3e4043;
	border-top: max(0.57vw, 11px) solid #3e4043;
	z-index: 1;
}
.main-v .main-search select {
	display: block;
    width: 200px;
    height: 60px;
    font-size: 15px;
    color: #111;
    background: #fff;
    border: 1px solid #888;
    border-radius: 0;
    padding: 12px 35px 12px 20px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}
.main-v .main-search .cross {
	position: relative;
	width: 32px;
	width: max(1.67vw, 32px);
	height: 31px;
	height: max(1.61vw, 31px);
	margin: 0 8px 0 10px;
	margin: 0 max(0.42vw, 8px) 0 max(0.52vw, 10px);
}
.main-v .main-search .cross::before,
.main-v .main-search .cross::after {
	content: "";
	position: absolute;
	top: 15px;
	/*top: max(1.51vw, 29px);*/
	right: 15px;
	/*right: max(0.78vw, 15px);*/
	width: 2px;
	height: 40px;
	/*height: max(2.08vw, 40px);*/
	background: #111;
}
.main-v .main-search .cross::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.main-v .main-search .cross:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.main-v .main-search .btn01 {
    min-width: 160px;
    height: 60px;
    padding: 16px 0;
    color: #fff;
	background: #ff585d;
    border: 1px solid #ff585d;
}
@media screen and (max-width: 680px) {
	.select-wrap {
		width: 40%;
	}
	.main-v .main-search .select-wrap::before {
		position: absolute;
		top: 25px;
		top: max(1.3vw, 20px);
		right: 17px;
		right: max(0.89vw, 8px);
	}
	
	.main-v .main-search select {
		width: 100%;
		height: 50px;
		padding: 7px 30px 7px 10px;
	}
	
	.main-v .main-search .cross {
		width: 35px;
		height: 35px;
	}
	
	.main-v .main-search .btn01 {
		width: 100%;
		height: 50px;
		padding: 12px 0;
		margin: 10px 0 0;
	}
	
}


.main-v .main-news {
    padding: 0.75rem;
    background: rgba(0,0,0,0.5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.main-v .main-news * { color: #fff; }
.main-v .main-news .inner {
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	align-items: center;
}

.main-v .main-news h3 {
	font-size: 24px;
    line-height: 1em;
    padding: 13px 30px 13px 0;
}
.main-v .main-news ul {
    border-left: 1px solid #fff;
}
.main-v .main-news li span {
	font-size: 24px;
    line-height: 1em;
    padding: 5px 30px;
}
.main-v .main-news li span,
.main-v .main-news li a {
    font-size: 15px;
    line-height: 1.6em;
}

.main-v .main-news .nbtn-wrap {
    position: absolute;
    right: 0;
}
.main-v .main-news .btn01 {
    min-width: 200px;
    padding: 15px 0 18px;
    line-height: 1.2em;
	border: 1px solid #fff;
	background: none;
}
@media only screen and (min-width: 681px) and (max-width: 1080px) {
	.main-v .main-news li span,
	.main-v .main-news li a {
		line-height: 1.2em;
	}
}
@media screen and (max-width: 680px) {
	.main-v .main-news {
		padding: 30px 0;
		position: static;
	}
	.main-v .main-news .inner {
		flex-direction: column;
		align-items: center;
	}
	
	.main-v .main-news h3 {
		padding: 0 0 10px;
	}
	.main-v .main-news ul {
		border-left: none;
	}
	.main-v .main-news li span {
		padding: 0 15px 0 0;
	}
	.main-v .main-news li span,
	.main-v .main-news li a {
		font-size: 14px;
	}
	
	.main-v .main-news .nbtn-wrap {
		position: static;
		margin-top: 20px;
	}
	.main-v .main-news .btn01 {
		padding: 12px 0;
	}

}


/*----------------------------------------------------
	footer
----------------------------------------------------*/
#footer {
  width: 100%;
  overflow: hidden;
}
#footer .foot-content {
	padding: 25px 0;
    background: #111;
}
#footer .foot-logo {
    padding: 25px 0;
}
#scroll-top a {
	border-radius: 50%;
	background: rgba(0,0,0,0.8);
	bottom: 70px;
	display: block;
	float: right;
	height: 70px;
	width: 70px;
	padding: 5px;
	position: fixed;
	right: 30px;
	text-align: center;
	padding-top: 16px;
	z-index: 9999;
}
#scroll-top a .fa-arrow-up::before {
	font-size: 36px;
	color: #fff;
}
#footer .copy {
	letter-spacing: 0.05em;
	padding: 10px 0;
}
@media screen and (max-width: 680px) {
	#footer {
		padding-top: 0;
	}
	#footer .foot-content {
		width: 100%;
		padding-top: 0;
		padding-bottom: 0;
	}
	#footer .foot-logo {
		padding: 10px 0;
	}
	#scroll-top a {
		bottom: 30px;
		height: 50px;
		width: 50px;
		padding-top: 10px;
	}
	#scroll-top a .fa-arrow-up::before {
		font-size: 30px;
	}
}

/*----------------------------------------------------
	sp ハンバーガーメニューcss
----------------------------------------------------*/
.menu-ani-button {
  cursor: pointer;
  position: absolute;
  top: 20px;
  width: 30px; /*---線の長さ---*/
  height: 25px; /*---線の太さ長さによって調整---*/
}
.bar,
.bar:before,
.bar:after {
  height: 3px; /*---線の太さ---*/
  border-radius: 3px;
  width: 100%;
  background-color: #1f6ed4;
  transition: all 0.25s;
  position: absolute;
}
.bar {
  left: 0;
  top: 10px;
}
.bar:before {
  content: "";
  left: 0;
  top: -10px;
}
.bar:after {
  content: "";
  left: 0;
  top: 10px;
}

.menu-animated .bar {
  background-color: transparent;
  transition: all 0.25s;
}
.menu-animated .bar:before {
  transition: all 0.25s;
  content: "";
  transform: rotate(45deg);
  top: 0px;
}
.menu-animated .bar:after {
  transition: all 0.25s;
  content: "";
  transform: rotate(-45deg);
  top: 0px;
}

/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header .fixed-wrap {
	height: 100%;
}
#header .fixed-wrap,
#header .menu,
#header .sub-menu {
	display: flex;
}
#header .menu nav {
	display: none;
}
#header .menu nav ul {
	display: flex;
	padding-top: 5px;
}
#header .menu nav ul li {
	margin-left: 30px;
}
#header .menu nav ul li a {
	display: block;
	transition: 0.3s;
	color: #000;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 0.03em;
}
#header .menu nav ul li a:hover {
	opacity: 0.7;
}

#header .menu .btn-wrap .btn-tel {}
#header .menu .btn-wrap .btn-tel div {
	color: #4b4b4b;
	font-size: 30px;
    line-height: 1.2em;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.03em;
    position: relative;
}
#header .menu .btn-wrap .btn-tel div::before {
	content: "";
	width: 30px;
	height: 30px;
	background: url(../images/header-tel.png) no-repeat;
	background-size: contain;
	margin-right: 8px;
}
#header .menu .btn-wrap .btn-tel span {
	color: #4b4b4b;
	font-size: 12px;
    font-weight: normal;
	text-align: right;
}

#header .menu .btn-wrap .btn-line,
#header .menu .btn-wrap .btn01 {
    min-width: inherit;
    height: 80px;
	color: #fff;
	background: #ff585d;
	border: none;
	border-radius: 0;
	padding: 0 15px;
	position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#header .menu .btn-wrap .btn-line {
    background: #35ae35;
}
#header .menu .btn-wrap .btn-line::before {
	content: "";
	display: inline-block;
	background: url("../images/icon_line.png") no-repeat;
	background-size: contain;
	width: 50px;
    height: 50px;
    margin-right: 8px;
}
#header .menu .btn-wrap .btn01 span {
	color: #ff585d;
    background: #fff;
    width: 55px;
    height: 55px;
    font-size: 14px;
    line-height: 1.2em;
	margin-right: 10px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1080px) {
	#header .fixed-wrap {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 80px;
		z-index: 1000;
		background: #fff;
	}
	#header .menu {
		display: none;
		padding-bottom: 0;
	}
	#header .menu nav { 
		background: #fff;
		display: block; 
	}
	#header .menu nav ul { 
		padding-top: 0;
		display: block;
	}
	#header .menu nav ul li {
		width: 100%;
		border: none;
		text-align: left;
		margin-left: 0;
		border-bottom: 1px solid #ddd;
	}
	#header .menu nav ul li:first-of-type { border-top: 1px solid #ddd; }
	#header .menu nav ul li a {
		font-size: 15px;
		padding: 18px 0;
		text-align: center;
	}
	#header .sub-menu {
		display: block;
	}
	#header .logo-wrap .menu-ani-button-wrap {
		display: block;
		width: 30px;
		height: 100%;
		margin-left: 10px;
	}
	#header .menu .btn-wrap {
		padding: 0 0;
	}
	#header .menu .btn-wrap .btn-tel {
		display: none;
	}
	#header .menu .btn-wrap .btn-line,
	#header .menu .btn-wrap .btn01 {
		width: 100%;
		min-width: 100%;
		height: 60px;
		justify-content: center;
	}
	#header .menu .btn-wrap .btn-line::before {
		width: 30px;
		height: 29px;
	}
	#header .menu .btn-wrap .btn01 span {
		width: 40px;
		height: 40px;
		font-size: 1.2vw;
		margin-right: 8px;
	}
	
	#header .logo-wrap .sp-tel { display: none; }
	
	#header .logo-wrap .sm-tel {}
	#header .logo-wrap .sm-tel div {
		color: #4b4b4b;
		font-size: 26px;
		line-height: 1.2em;
		font-family: 'Roboto Condensed', sans-serif;
		letter-spacing: 0.03em;
		position: relative;
	}
	#header .logo-wrap .sm-tel div::before {
		content: "";
		width: 26px;
		height: 26px;
		background: url(../images/header-tel.png) no-repeat;
		background-size: contain;
		margin-right: 10px;
	}
	#header .logo-wrap .sm-tel span {
		color: #4b4b4b;
		font-size: 10px;
		font-weight: normal;
		text-align: right;
	}

}
@media screen and (max-width: 680px) {
	#header .fixed-wrap {
		height: auto;
	}
	#header .menu {
		padding-bottom: 20px;
	}
	#header .menu nav ul li {
		width: 100%;
		border: none;
		text-align: left;
		margin-left: 0;
		border-bottom: 1px solid #ddd;
	}
	
	#header .logo-wrap .menu-ani-button-wrap {
		display: block;
		width: 30px;
		height: 100%;
		margin-left: 10px;
	}
	
	#header .menu .btn-wrap .btn01 span {
		font-size: 2.5vw;
	}
	
	#header .logo-wrap .sp-tel {
		display: block;
	}
	#header .logo-wrap .sp-tel i {
		font-size: 30px;
		color: #1f6ed4;
		transform: rotate(105deg);
	}
	#header .logo-wrap .sm-tel {
		display: none;
	}
}




/* タブレットサイズ調整 */
#header .drawer-wrap {
	display: none;
}
@media screen and (max-width: 1080px) {
	#header .drawer-wrap {
		display: block;
	}
}
@media screen and (max-width: 680px) {
	#header .drawer-wrap {
		padding-top: 5px
	}
}

	





/*----------------------------------------
ナビゲーション(フッター)
----------------------------------------*/
#foot-navi > .ul-wrap > ul {
  text-align: center;
  display: table;
  table-layout: auto;
  margin: 0 auto;
}
#foot-navi > .ul-wrap > ul > li {
  display: table-cell;
  vertical-align: middle;
  padding: 0 30px 0 0;
}
#foot-navi > .ul-wrap > ul > li:last-of-type {
  padding-right: 0;
}
#foot-navi > .ul-wrap > ul > li > a {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  transition: 0.3s;
}
#foot-navi > .ul-wrap > ul > li > a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 680px) {
  #foot-navi {
  }
  #foot-navi > .ul-wrap {
    width: 100%;
  }
  #foot-navi > .ul-wrap > ul {
    text-align: left;
    display: block;
    table-layout: initial;
    margin-left: -5vw;
    margin-right: -5vw;
  }
  #foot-navi > .ul-wrap > ul > li {
    display: block;
    border-bottom: #bbb 1px solid;
    padding: 0;
  }
  #foot-navi > .ul-wrap > ul > li:last-child {
    border-bottom: none;
  }
  #foot-navi > .ul-wrap > ul > li > a {
    padding: 14px 30px;
  }
}
