@charset "UTF-8";
@import "reset.css";
/* CSS Document */

:root {
	--main-color: #4F87CE;
	--sub-color:#42CEBB;
	--bg-color: #F2F9FF;

	--main-font: "Noto Sans JP", "YuGothic", "Yu Gothic medium",  "Hiragino Sans", "Meiryo", "sans-serif",
}


/*************************************

   common

**************************************/
body{
	font-family: var(--main-font);
	font-weight: 500;
	font-style: normal;
	margin: 0;
	padding: 0;
	position: relative;
}
p,span,li,dt,dd{
	line-height: 2.5;
	font-size: 1em
}

a{
	text-decoration: none;
	word-break: break-all;
	transition: all 0.3s ease-out;
}
picture,
img{max-width: 100%}
.obc{
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom
}
.wrap{
	width: 95%;
	max-width: 1600px;
	margin: 0 auto
}
.wrap_inner{
	width: 95%;
	max-width: 1400px;
	margin: 0 auto
}
.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}
@media screen and (max-width:667px){
	.sp-none{display: none!important}
}
@media screen and (min-width:668px){
	.sp-size{display: none!important}
}
@media (min-width:1000px){
	p,span,li,dt,dd{font-size: 16px}
}

@media (max-width:999px){
	.pcbr{display: none}
}

/*-------------------------

  テーブル (dl)

-------------------------*/

.table_wrap{
	margin: 3em auto;
	border-top: solid 1px #ccc
}
.table_wrap dl{
	border-bottom: solid 1px #ccc;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}
.table_wrap dt,
.table_wrap dd{
	margin: 0;
	padding: 1em .8em;
	width: 100%;
}
.table_wrap dt{
	font-weight: bold;
}
.table_wrap dd a{
	color: #000
}







/*-------------------------

  タイトル

-------------------------*/
.title1{
	text-align: center;	
	line-height: 1.6;
	margin-bottom: 1em
}
.title1 h2,
.title1 h3{
	font-size: 1.5em;
	letter-spacing: 8px;
}
.title1 span{
	letter-spacing: 3px;
	font-size: 11px;
	display: block;
}

/*-------------------------

  ボタン

-------------------------*/
.btn_wrap{
	margin: 2em auto;
}
.btn {
	display: inline-block;
	width: 100%;
	max-width: 300px;
	text-align: center;
	text-decoration: none;
	padding: 1em;
	outline: none;
	color: #fff;
	position: relative;
	letter-spacing: .5px;
	border-radius: 2.5em;
	overflow: hidden;
}
.btn span{
	position: relative;
	color: inherit;
}

/*  カラー切り替え */
.btn_color{
	background-color: var(--main-color);
	transition: color .5s ease;
}
.btn_color::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #50B6CE;
	transform: scaleX(0);
	transform-origin: right;
	transition: all .5s ease;
	transition-property: transform;
	border-radius: 2.5em;
}
.btn_color:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

/*　次へアイコン付き */
.btn_next:after{
	content: '\ea50';
	display: inline-block;
	font-family: icomoon;
    color: inherit;
	font-size: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%)rotate(90deg);
	transition: .5s;
	right: 8%;
}
.btn_next:hover:after{
	right: 5%
}

/* グラデーション */
.btn_gradation {
	background: linear-gradient(90deg, rgba(79,135,206,1) 0%, rgba(79,166,206,1) 50%, rgba(79,196,206,1) 100%);
	background-size: 150% 100%;
	border: none;
}
.btn_gradation:hover {
	background-position: 100% 0;
}


/* 丸矢印ボタン */
.more_btn{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 1em;
	
}
.more_btn span{
	color: inherit;
	font-weight: bold;
	font-family: var(--en-font);
	margin-right: 1em
}
.more_btn:after{
	content: "\ea3c";
    font-family: icomoon;
	background: var(--main-color);
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    display: block;
    font-size: 1em;
	transition: .5s;
}
.more_btn:hover:after{
	transform: translateX(5px)
}


/*-------------------------

 背景

-------------------------*/

.bg{
	background: var(--bg-color);
}


/*-------------------------

 swiper

-------------------------*/

/* 止まらず流れるスライド */
.slide_linear ul.swiper-wrapper {
  transition-timing-function: linear;
}

/*************************************

   header

**************************************/

header{
	width: 100%;
	height: 65px;
	z-index: 1000;
	transition: top 0.3s;
	top: 0;
	left: 0;
	margin: 0 auto;;
	position: fixed;
	display: flex;
	align-items: center;
}

.header_logo a{
	display: block;
	width: 100%;
	height: 100%;
}
.header_logo img{
	width: 100%;
	height: 100%;
}

.global-nav__item > a{
	color: #000;
	letter-spacing: .5px;
	text-decoration: none;
}



/*-------------------------

  sp nav (~1099px)

-------------------------*/

@media (max-width:999px){
	header{
		background: #fff;
		border-bottom: solid 1px #eee
	}
	.header_logo{
		position: absolute;
		top: 50%;
		left: 3%;
		transform: translateY(-50%);
		width: 200px;
		
	}
	
	.global-nav{
  		position: fixed;
  		right: -500px;
  		top: 0;
  		width: 90%; 
		max-width: 500px;
  		height: 100vh;
  		/*background-color: #fff;*/
		background: linear-gradient(45deg, rgba(79,135,206,1) 0%, rgba(79,166,206,1) 50%, rgba(79,196,206,1) 100%);
  		transition: all .6s;
  		z-index: 2000;
  		overflow-y: auto;
	}
	.global-nav__list {
  		padding: 6em 1em 2em;
  		list-style: none;
		overflow-y: auto;
	}
	.global-nav__item{
		width: 100%;
		padding:.8em;
		/*border-bottom: 1px solid #ccc;*/
		font-size: 1em
	}
	.global-nav__item > a {
		line-height: 1.3em;
		color: #fff;
	}
	/* ハンバーガーメニュー */
	.hamburger{
  		cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: absolute;
        top: 50%;
		right: 0;
        width: 55px;
        height: 100%;
        transform: translate(0, -50%);
	}
	.hamburger__line {
  		position: absolute;
  		left: 50%;
		transform: translate(-50%,0);
  		width: 25px;
  		height: 1px;
    	background-color: var(--main-color);
  		transition: all .6s;
	}
	.hamburger__line--1 {
		top: calc(50% - 10px);
	}
	.hamburger__line--2 {
		top: 50%;
	}
	.hamburger__line--3 {
		top: calc(50% + 10px);
	}
	.black-bg {
  		position: fixed;
  		left: 0;
  		top: 0;
  		width: 100vw;
  		height: 100vh;
  		z-index: 100;
  		background-color: #252525;
  		opacity: 0;
  		visibility: hidden;
  		transition: all .6s;
  		cursor: pointer;
	}
	/* nav-open */
	.nav-open .global-nav {right: 0;}
	.nav-open .black-bg {
 		opacity: .7;
  		visibility: visible;
	}
	.nav-open .hamburger{
		background: none;
		box-shadow: none;
		z-index: 9999;
		right: 1em;
	}
	.nav-open .hamburger__line{
		top: 50%;
		background: #fff;
	}
	.nav-open .hamburger__line--1 {
  		transform: rotate(-45deg);
	}
	.nav-open .hamburger__line--2 {
  		width: 0;
  		left: 50%;
	}
	.nav-open .hamburger__line--3 {
  		transform: rotate(45deg);
	}
	
	/* nav_btn */
	
	.nav_btn{
		border-bottom: none;
		padding: 1em 1em 0!important;
		display: flex;
	}
	.nav_btn a{
		margin: 0 auto;
	}
}

/*-------------------------

  pc nav (1200px~)

-------------------------*/

@media (min-width:1000px){
	header{
		height: 75px;
	}
	header > div.wrap{
		align-items: center;
		height: 100%;
		max-width: 1400px
	}
	.header_logo,
	.global-nav{
		background: #fff;
		border-radius: 2em;
		height: 50px;
		box-shadow: 0 0px 3px #c7c6c6
	}
	.header_logo{
		width: 150px;
		padding: 0 1.2em;
		text-align: center
	}
	.header_logo img{
		max-width: 190px;
		margin: 0 auto;
	}
	.global-nav{
        width: calc(100% - 180px);
	}
	ul.global-nav__list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		padding: 0 1.5em;
		height: 100%;
	}
	li.global-nav__item{
		margin-right: 1em
	}
	.global-nav__item a{
		display: inline-block;
		text-align: center;
		text-decoration: none;
		outline: none;
		border-bottom: 2px;
		position: relative;
		padding: 0 .5em;
		font-size: 14px;
		color: var(--main-color)
	}
	.global-nav__item a:hover{
		color:var(--sub-color)
	}
	.hamburger,
	.black-bg,
	.spnav{display: none}
	
	.nav_btn .btn1{
		padding: .5em 1em;
		display: flex
	}
}

@media screen and (min-width:1200px){
	header{
		height: 100px
	}
	.header_logo,
	.global-nav{
		height: 65px;
		border-radius: 3em
	}
	.header_logo{
		width: 200px;
	}
	.global-nav{
		width: calc(100% - 300px)
	}
	.global-nav__item{
		margin-right: 1.5em
	}
	
}
@media screen and (min-width:1400px){
	header{
		height: 120px
	}
	.header_logo{
		width: 250px;
	}
	.global-nav{
		width: calc(100% - 280px)
	}
	.global-nav__item a{
		font-size: 1em;
	}
}


/*-------------------------

  アコーディオンメニュー

-------------------------*/
.acc_click{
	position: relative;
    cursor: pointer;
	transition: all .5s ease;
}
/*アコーディオンで現れるエリア*/
.box{
    display: none;/*はじめは非表示*/
   
}
.box a{
	text-decoration: none;
	padding: .3em 0;
	display: block;
	font-size: 15px;
	color: #000
}

@media (max-width:999px){
	.acc_click{
		display: block;
		width: 100%;
	}
	/*アイコンの＋×*/
	.acc_click::before,
	.acc_click::after{
		position: absolute;
		content:'';
		width: 15px;
		height: 1px;
		background-color: #000;
	}
	.acc_click::before{
		top:48%;
		right: 15px;
		transform: rotate(0deg);
	}
	.acc_click::after{    
		top:48%;
		right: 15px;
		transform: rotate(90deg);
	}
	/*　closeというクラスがついたら形状変化　*/
	.acc_click.close::before{
		transform: rotate(45deg);
	}
	.acc_click.close::after{
		transform: rotate(-45deg);
	}
	.box{padding: .5em .5em 0}
	.box li{margin: .3em 0}
	.box li a:before{
		content: '-';
		color: var(--main-color);
		display: inline-block;
		margin-right: .5em
	}
}

@media (min-width:1000px){
	.dropdown{position: relative}
	.box{
		position: absolute;
		padding: 1em 1.2em;
        background: var(--main-color);
		width: 200px;
		top: 54px;
		left: 50%;
		transform: translate(-50% , 0);
	}
	.box li{
		position: relative;
		display: block;
		width: 100%;
	}
	.box li a{
		color: #fff;
		width: 100%
	}
	.box li:after{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0%;
		height: 1px;
		background-color: var(--main-color);
		transition: width 0.3s ease;
	}
	.box li:hover:after{
		width: 100%;
	}
	.box li:hover a{
		transform: translateX(5px);
		opacity: .9
	}
}



/***********************************

  footer

***********************************/


/*-------------------------

  ft_fix

-------------------------*/

@media screen and (max-width:667px){
	#ft_fix{
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		z-index: 800;
	}
	#ft_fix > *{
		width: 50%;
		text-align: center;
	}
	#ft_fix a{
		color: #fff;
		display: block;
		padding: .5em
	}
	#ft_fix i{
		margin-right: .3em
	}
	.fix_support{
		background: var(--orange)
	}
	.fix_contact{
		background: var(--main-color);
	}
}
@media screen and (min-width:668px){
	#ft_fix{display: none}
}

/*-------------------------

  footer

-------------------------*/
footer{
	background: url("../img/common/footer_bg.jpg")no-repeat center / cover;
	position: relative;
	padding: 3em 0 0;
	text-align: center;
	margin-top: 5em
}

footer h1{
	width: 100%;
	max-width: 300px;
	margin: 1em auto;
}

.footer_nav a{
	color: var(--main-color);
}

#copy{
	text-align: center;
	width: 100%;
	font-size: 12px;
	background: var(--main-color);
	padding: .8em 0;
	color: #fff;
	letter-spacing: 1px;
}

@media (max-width:999px){
	.footer_nav{
		display: none
	}
	#copy{
		margin-top: 5em;
		padding-bottom: 2em
	}
	
}
@media (min-width:1000px){
	.footer_nav{
		margin: 3em auto;
		max-width: 1000px;
	}
}




/*************************************

  TOP 下層共通

**************************************/


.link_wrap{
	border-radius: 1.5em;
	padding: 3em 1em;
	margin: 3em auto;
}
.link_wrap ul{
	gap: 15px
}

.contact_area_link{
	width: 100%;
}
.contact_area_link a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	background: #fff;
	border-radius: 1.5em;
	color: #000;
	padding: 4em 2em;
	position: relative;
	transition: .3s
}
.contact_area_link a:hover{
	background: #d3eeff
}
.contact_area_link a:hover div.more_btn:after{
	transform: translateX(5px)
}

.contact_area_link p{
	font-size: 1.5em;
	letter-spacing: 3px;
}

.contact_area_link span{
	color: var(--main-color);
	font-size: 11px;
	display: block;
	line-height: 1;
}

.contact_area_link .more_btn{
	position: absolute;
	bottom: 15px;
	right: 15px;
}

@media (min-width:768px){
	.contact_area_link{
		width: calc(50% - 15px)
	}
}


.cta{
	background: url("../img/common/contact_bg.jpg")no-repeat center / cover;
	padding: 3em 0;
	text-align: center;
	color: #fff;
}

.tel_wrap{
	padding: 2em 1em;
	backdrop-filter: blur(10px);
  	-webkit-backdrop-filter: blur(10px);
	background: rgba(0, 0, 0, 0.15); 
	width: 90%;
	max-width: 800px;
	margin: 2em auto
}
.tel_wrap > p:first-child{
	font-weight: bold;
	font-size: 1.1em;
	margin-bottom: 1em
}
.tel_num,
.tel_num span{
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.5;
}
.tel_wrap > span{
	display: block;
	margin-bottom: 1em;
	font-weight: bold;
}

.cta .btn{
	width: 100%;
	max-width: 600px;
}
.cta .btn span{
	font-weight: bold;
	font-size: 1.1em
}

@media (min-width:768px){
	.tel_num,
	.tel_num span{
		font-weight: bold;
		font-size: 3rem;
		line-height: 1.2;
	}
	.tel_wrap > span{
		font-size: 1.1em;
	}
}








