@charset "utf-8";

/*SP + タブレット*/
@media screen and (max-width : 1199px) {
.sp{display: block;}
.pc{display: none;}
}
/*PC*/
@media screen and (min-width : 1200px) {
.sp{display: none;}
.pc{display: block;}
}

/*Smartphone only call*/
@media screen and (min-width: 1199px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;}
}

/* box-sizing: border-box を全要素に適用 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

/* デフォルトのマージンを削除 */
body, h1, h2, h3, h4, p,figure, blockquote, dl, dd {
    margin: 0;
    overflow-wrap: anywhere;
}

/* リストのスタイルを削除 */
ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* bodyのデフォルトを設定 */
body {
	min-height: 100vh;
	/*コンテンツが少ない時も高さを画面いっぱいに伸ばすため*/
	line-height: 1.5;
	color: #333;
	font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans';
}

/* 見出し設定 */
h1,h2,h3,h4,h5,h6 {
	line-height: 1.1;
}

/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor;
}

/* 画像リンクの透過*/
/* a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
} */

img,
picture {
	width: 100%;
	display: block;
	height: auto;
}

.text{
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
}

/* フォームの設定：inputやbuttonなどのfontは継承 */
input, button,textarea, select {
	font: inherit;
}

/* フォームの設定：rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
	min-height: 10em;
}

/* アンカーされている要素に余分なスクロールマージン設定 */
:target {
	scroll-margin-block: 170px;
}

/*テーブル内の余白をなくす*/
table{
	border-collapse: collapse;
	border-spacing: 0;
}

/*英語フォント*/
.en{ 
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

/*Noto*/
.noto{
	font-family: "Noto Sans JP", sans-serif;
}

/*color*/
.red{color: #ff3333;}

.center{text-align: center;}

/*余白*/
.spacer100{	height: 100px;}
.spacer50{	height: 50px;}
.spacer30{	height: 30px;}


/* -----------------------------------------------
header
----------------------------------------------- */
header{
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
}

/* header__logo */
.header__logo{
	max-width: 40%;
	width: 100%;
	background-color: #fff;
	padding: 0px;
	color: #000;
	text-align: center;
	border-radius: 0px 0px 10px 0px;
	font-size: 8px;
}
.header__logo a{
	padding: 15px 0px 0px;
	display: block;
	text-decoration: none;
}
.header__logo a img{
	padding: 10px 20px;
}


@media (min-width: 768px){
	/* header__logo */
	.header__logo{
		max-width: 27%;
		font-size: 10px;
	}
	.header__logo a img {
		padding: 10px 30px;
	}
	
}

@media (min-width: 820px){
	.header__logo{
		font-size: 12px;
	}
}

@media (min-width: 1024px){
	.header__logo {
		max-width: 20%;
		font-size: 12px;
	}
	.header__logo a img {
		padding: 20px;
	}
}

@media (min-width: 1200px){
	.header__logo {
		max-width: 250px;
		width: 100%;
		font-size: 12px;
	}
	.header__logo a{
		transition: 1s ease;
	}
	.header__logo a:hover{
		background-color: #e5f1f9;
		border-radius: 0 0 10px 0;
	}
	.header__logo a img {
		max-width: 200px;
		margin: auto;
	}
}

/* SP用メニューボタン */
.menu-button {
	width: 60px;
	height: 60px;
	margin-top: 20px;
	margin-right: 20px;
	margin-left: auto;
	padding: 10px;
	background: transparent;
	border: none;
	cursor: pointer;
	position: relative;
}
.sp__menu-icon {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.3s;
}
.sp__menu-icon--close {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}
.menu-button.is-active .sp__menu-icon--open {
	opacity: 0;
}
.menu-button.is-active .sp__menu-icon--close {
	opacity: 1;
}

/* SP用メニュー */
.nav__sp {
	width: 80%;
	max-width: 300px;
	height: 100%;
	padding: 80px 20px 20px;
	position: fixed;
	top: 0;
	right: -100%;
	background-color: #fff;
	z-index: 9;
	transition: right 0.3s;
	overflow-y: auto;
}
.nav__sp.is-active {
	right: 0;
	background: linear-gradient(
		to bottom,
		#007ec4 0%,
		#015d9b 50%,
		#013d72 100%
	);
}

/* SPメニュー内の閉じるボタン */
.sp__nav-close {
	width: 32px;
	height: 32px;
	position: absolute;
	top: 30px;
	right: 33px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}

.sp__nav-close img {
	width: 100%;
	height: auto;
	display: block;
}

.nav__sp .nav-list {
	flex-direction: column;
	gap: 0;
	width: 60%;
	margin: auto;
	font-size: 14px;
}
.nav__sp .nav-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	text-align: center;
}
.nav__sp .nav-item:last-child{
	border-bottom: none;
}

.nav__sp .nav-item a {
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: #fff
}

/* オーバーレイ */
.nav__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 8;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.nav__overlay.is-active {
	opacity: 1;
	visibility: visible;
}

/* SPでPC用ナビを非表示 */
.nav__pc {
	display: none;
}

@media (min-width: 768px){
	.nav__sp{
		max-width: 400px;
		height: 73vh;
	}
	.nav__sp .nav-item a {
		padding: 15px 0;
	}
}

@media (min-width: 1024px){
	.nav__sp{
		max-width: 700px;
	}
	.nav__sp .nav-item a {
		padding: 20px 0;
	}
}

/* PC用ナビゲーション */
@media (min-width: 1200px){
	.nav-list {
		margin: 0;
		padding: 0;
		display: flex;
		gap: 50px;
	}
	.nav-item a {
		text-decoration: none;
		color: #333;
		font-size: 14px;
		white-space: nowrap;
	}
	.nav__pc {
		height: 80px;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: end;
		background-color: #fff;
	}
	.nav__pc .nav-list{
	  padding-right: 65px;
	  color: #000;
	  font-weight: bold;
	}
	.nav__pc .nav-item a:hover{
	  opacity: .6;
	}
	/* スマホ用を非表示 */
	.menu-button,
	.nav__sp,
	.nav__overlay {
	  display: none;
	}
}



/* -----------------------------------------------
トップページ　mv
----------------------------------------------- */
.toppage .mv{
	width: 100%;
	height: 80vh;
	background-image: url('../-images/top/mv_bg_sp.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}
.toppage .mv::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../-images/top/mv_bg_sp.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	animation: zoomOut 10s ease-out forwards;
	z-index: 0;
}
@keyframes zoomOut {
	0% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1);
	}
}


@media (min-width: 1200px) {
  /* mv */
  .mv{
    height: 1100px;
    background-image: url('../-images/top/mv_bg_pc.png');
  }
  .header {
    align-items: flex-start;
    position: fixed;
  }
}


/*-----------------------------------------------
パンくずリスト
-----------------------------------------------*/
.bread{
	width: 100%;
	border-bottom: 1px solid #b2b2b2;
	padding: 10px 10px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
	scrollbar-width: thin;
	scrollbar-color: #b2b2b2 transparent;
}

/* Webkit系ブラウザのスクロールバー（任意） */
.bread::-webkit-scrollbar {
	height: 4px;
}
.bread::-webkit-scrollbar-track {
	background: transparent;
}
.bread::-webkit-scrollbar-thumb {
	background: #b2b2b2;
	border-radius: 2px;
}

.bread ul{
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
	display: inline-flex;
	gap: 10px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.bread ul li{
	flex: 0 0 auto;
}
.bread ul li:before{
	content: ">";
	margin-right: 10px;
}
.bread ul li:first-child::before {
	content: none;
}
.bread ul li a{
	text-decoration: none;
}
.bread ul li a:hover{
	text-decoration: underline;
}

@media (min-width: 768px){
	.bread{
		overflow-x: visible;
		scrollbar-width: auto;
		display: flex;
		justify-content: center;
	}
	.bread ul{
		max-width: 1200px;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		white-space: normal;
		justify-content: flex-end;
/*		margin: 0 0 0 auto;*/
/*		scrollbar-width: auto;*/
	}
	.bread ul li{ flex: initial; }
}

@media (min-width: 1200px){
	.bread{
		padding: 10px 35px;
/*		overflow-x: visible;*/

	}
/*
	.bread ul{
		max-width: 1200px;
		width: 100%;
		margin-left: auto; 
		margin-right: 0;
		white-space: normal;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
*/
}








/* -----------------------------------------------
下層ページ subpage
----------------------------------------------- */

/*subpage__greeting*/
.subpage__greeting{
	font-style: italic;
}


/*h3*/
.subpage__contents-title{
	margin-top: 50px;
	padding: 20px;
	font-size: 18px;
	color: #0640cb;
	font-weight: 700;
	border-top: 1px solid #0640cb;
	border-bottom: 1px solid #0640cb;
	line-height: 1.6;
}

/*h4*/
.subpage__contents-subtitle{
	margin-top: 50px;
	font-size: 16px;
}

/*リスト*/
.subpage__contents-list{
	font-size: 14px;
}
.subpage__contents-list li{
	margin-top: 10px;
	margin-left: 20px;
	line-height: 2;
	list-style-type: disc;
	list-style-position: outside;
}

.subpage__contents-title span{
	font-size: 14px;
	color: #000;
	display: block;
	margin-top: 10px;
}



@media (min-width: 1024px){
	.subpage__contents-title {
		display: flex;
		align-items: center;
		width: 90%;
		margin: auto;
		margin-top: 100px;
	}
	.subpage__contents-title span{
		margin-top: 0;
		margin-left: 80px;
	}
}

@media (min-width: 1200px){
	.subpage__contents-title{
		font-size: 20px;
	}
}

/*mv*/
.subpage .mv {
	position: relative;
	width: 100%;
	height: 270px;
	padding: 0 30px;
	background-image: url('/-images/common/subpage_mv.jpg')!important;
	background-size: cover;
	background-position: 40%;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}
.subpage .mv::before {
	content: none !important;
    display: none;
}
.mv__subpage-title {
	margin: 0 0 10px 0;
	padding-top: 50px;
	position: relative;
	z-index: 2;
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
	text-align: right;
}
.mv__subpage-subtitle {
	position: relative;
	z-index: 2;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	margin: 0;
	text-align: right;
	letter-spacing: 0.1em;
	text-transform: capitalize;
}

@media (min-width: 768px){
	.subpage .mv{
		height: 350px;
		padding: 0 35px;
	}
	.mv__subpage-title {
		font-size: 22px;
	}
	.mv__subpage-subtitle {
		font-size: 20px;
	}
}

@media (min-width: 820px){
	.subpage .mv{
		height: 400px;
		padding: 0 35px;
	}
}

@media (min-width: 1024px){
	.mv__subpage-title {
		font-size: 30px;
	}
	.mv__subpage-subtitle {
		font-size: 24px;
	}
}

@media (min-width: 1200px){
	.subpage .mv{
		margin-top: 40px;
		background-position: left;
		background-size: cover;
	}
	.mv__subpage-title {
		font-size: 36px;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}
	.mv__subpage-subtitle {
		font-size: 16px;
		max-width: 1200px;
		width: 100%;
		margin: 20px auto;
	}
}





/*-----------------------------------------------
sitemap
-----------------------------------------------*/
.sitemap{
    width: 80%;
    margin: 50px auto 100px;
}
.sitemap li{
	line-height: 3;
}

@media (min-width: 768px){
	.sitemap{
		margin: 70px 30px 100px;
	}
}

@media (min-width: 1200px){
	.sitemap{
		max-width: 1200px;
		width: 100%;
		margin: 100px auto;
		padding: 0 200px
	}

}

/*-----------------------------------------------
privacy
-----------------------------------------------*/
.privacy{
    width: 90%;
    margin: 50px auto 100px;
}

@media (min-width: 768px){
	.privacy{
		margin: 70px 30px 100px;
	}
}

@media (min-width: 1024px){

}

@media (min-width: 1200px){
	.privacy{
		max-width: 1200px;
		width: 100%;
		margin: 100px auto;
		padding: 0 200px
	}

}



/* -----------------------------------------------
site-footer
----------------------------------------------- */
.site-footer{
	padding-bottom: 50%;
	background-image: url(../-images/common/footer_bg_pc.png);
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	text-align: center;
	color: #fff;
	clip-path: ellipse(180% 100% at 50% 100%);
}

.toppage .site-footer{
	margin-top: -10%!important;
}

.site-footer__logo{
  padding-top: 10%;
}
.site-footer__logo-text{
  font-size: 10px;
  margin-bottom: 5px;
}

.site-footer__brand{
    max-width: 40%;
    width: 100%;
    margin: auto;
    padding: 10px;
    background-color: #fff;
    font-size: 10px;
    color: #000;
    text-align: center;
    border-radius: 6px;
}
.site-footer__brand a{
  display: block;
  padding: 0px 0px 0px;
    text-decoration: none;
}
.site-footer__brand a img{
  display: block;
  width: 90%;
  margin: auto;
}
.site-footer__address{
  margin-top: 5%;
  font-size: 14px;
  line-height: 2;
}
.site-footer__address a{
  text-decoration: none;
}
.site-footer__bottom{
  margin: 10%;
  font-size: 14px;
}

@media (min-width: 768px){
.site-footer__brand{
    max-width: 200px;
    width: 100%;
}
}
@media (min-width: 1200px){
  .site-footer{
    padding-top: 4%;
    padding-bottom: 20%;
  }
  .site-footer__main{
    max-width: 1200px;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
  }
  .site-footer__logo{
    width: 33%;
    padding: 5% 1% 5% 0;
  }
  .site-footer__logo-text{
    font-size: 12px;
  }
  .site-footer__brand{
    max-width: 200px;
    margin: 0;
    padding: 20px 0;
  }
  .site-footer__brand a img{
    width: 80%;
  }
  .site-footer__nav{
    width: 60%;
    margin-top: 10%;
    padding: 0;
    font-size: 14px;
  }
  .site-footer__nav ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 20px
  }
  .site-footer__nav ul li{
    margin: 5px;
  }
  .site-footer__nav ul li a{
    text-decoration: none;
  }
  .site-footer__nav ul li a:hover{
    text-decoration: underline;
  }
  .site-footer__address{
    margin-top: 8%;
    font-size: 14px;
    text-align: left;
  }
  .site-footer__nav hr{
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin: 20px 0;
  }
  .site-footer__bottom{
    max-width: 1200px;
    width: 90%;
    margin: auto;
    font-size: 12px;
    text-align: right;
  }
}



/* -----------------------------------------------
floating-cta
----------------------------------------------- */
.floating-cta{
  background-image: url(../-images/common/floating-cta_bg.png);
  color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 100;
}
.floating-cta__lead{
  background-color: #021392;
  padding: 7px;
  font-size: 3vw;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.floating-cta__phones_sp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}
.floating-cta__phones_sp a:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.floating-cta__phones_sp a img{
  margin-top: 5px;
}
.floating-cta__phones_sp a{
  display: block;
  padding: 5px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 2.5vw;
  text-align: center;
}
.floating-cta__mail_sp{
  padding: 5px 10px 5px;
  display: block;
}
.floating-cta__mail_sp img{
  width: 65%;
  margin: auto;
}

@media (min-width: 768px){
  .floating-cta__phones_sp a{
    padding: 15px 60px;
  }
  .floating-cta__mail img{
    width: 60%;
  }
}
@media (min-width: 820px){
  .floating-cta__lead{
    font-size: 2vw;
  }
  .floating-cta__phones_sp a {
    padding: 10px 100px;
    font-size: 2vw;
  }
  .floating-cta__mail_sp img {
    width: 50%;
  }
}

@media (min-width: 1200px){
  .floating-cta{
    width: 100%;
    background-image: url(../-images/common/floating-cta_bg.png);
  }
  .floating-cta__lead{
    width: 100%;
    margin: auto;
    font-size: 20px;
  }
  .floating-cta__pc{
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
  }
  .floating-cta__pc a{
    transition: opacity 0.3s ease;
  }
  .floating-cta__pc a:hover{
    opacity: .7;
  }
  .floating-cta__pc span{
    width: 25%;
    margin-left: 10px;
    font-size: 15px;
    display: block;
  }
  .floating-cta__pc img{
    width: 28%;
	margin-left: 10px;
  }
  .jikangai{
    margin-left: 20px;
  }
  .jikangai img{
    width: 100%;
  }
  .jikangai span{
    width: 100%;
  }
  .floating-cta__mail_pc{
    margin-right: 10px;
  }
  .floating-cta__mail_pc img{
    width: 95%;
    margin-left: 5%;
  }
}
