@charset "utf8";
/*=============================
  - header
	- fotter
	- navigation
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
	width: 100%;
	background: #fff;
	position: static;
}
#header .fixed-wrap {
    display: flex;
    align-items: center;
}
#header .logo {
	width: 299px;
    margin-left: 20px;
}
#header .logo a {
    width: 100%;
    height: auto;
}
#header .logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#header .head-wrap {
    width: calc(100% - (300px + 20px));
    margin-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head_contact_wrap {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}
.head_contact_wrap .phone {
	font-size: 14px;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.head_contact_wrap .phone .phone_num_box  {
	display: flex;
}
.head_contact_wrap .phone .phone_num  {
	display: flex;
  align-items: center;
  margin-right: 10px;
}
.head_contact_wrap .phone .phone_num .lbl {
  font-size: 12px;
  line-height: 1;
}
.head_contact_wrap .phone .phone_num .num {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    line-height: 1.0em;
    font-weight: bold;
}
.head_contact_wrap .phone p {
  font-size: 12px;
}
.head_contact_wrap .btn {
    width: 265px;
    min-width: 265px;
    font-size: 18px;
    padding: 15px 0;
	  border-radius: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.head_contact_wrap .btn::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 28px;
	background: url("../images/i_register.png") no-repeat;
	background-size: contain;
	margin-right: 0.5em;
}
.head_contact_wrap .point_back02::before {
	background: url("../images/i_key.png") no-repeat;
}


@media screen and (max-width: 1280px) {
	#header .fixed-wrap {
		justify-content: space-between;
	}
	#header .logo { width: 20vw; }
	#header .head-wrap {
        width: 80vw;
    }
	
	.head_contact_wrap {}
	.head_contact_wrap .phone .phone_num .lbl {
		font-size: 1.5vw;
		white-space: nowrap;
	}
	.head_contact_wrap .phone .phone_num .num {
		font-size: 2.0vw;
		white-space: nowrap;
	}
	.head_contact_wrap .phone p { font-size: 11px; }
	
	.head_contact_wrap .btn {
		min-width: 210px;
		width: 210px;
		font-size: 16px;
		white-space: nowrap;
	}
	.head_contact_wrap .btn::before {
		width: 24px;
		height: 24px;
		margin-right: 3px;
	}
}
@media screen and (max-width: 1080px) {
	.head_contact_wrap .btn {
		min-width: inherit;
		width: inherit;
		padding: 15px 15px;
		font-size: 1.75vw;
	}
	.head_contact_wrap .btn::before {
		width: 2.75vw;
		height: 2.75vw;
	}
}
@media screen and (max-width: 768px) {
  #header {}
  #header .fixed-wrap {
    display: block;
    position: static;
    width: 100%;
    height: 55px;
    padding: 0 0;
	border-bottom: 2px solid #0091f7;
  }
  #header .logo {
    width: 45%;
	margin-left: 10px;
	box-sizing: border-box;
  }
	
  #header .head-wrap {
    width: 100%;
    height: 100%;
    margin: 0 0;
    position: static;
  }
	
  .head_contact_wrap { display: none; }
}


/*----------------------------------------
	header (menu)
----------------------------------------*/
#header .menu {
	width: 100%;
    max-width: 1280px;
	margin-top: 60px;
    margin-left: 0;
    margin-right: auto;
}

#header .menu nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
#header .menu.login nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

#header .menu nav ul li {
  text-align: center;
}
#header .menu nav ul li a {
  font-size: 15px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 3px solid #fff;
  display: block;
  box-sizing: border-box;
  transition: 0.3s;
}
#header .menu nav ul li a:hover {
  /*opacity: 0.7;*/
  border-bottom: 3px solid #0091f7;
}
#header .menu .tel-wrap {
  margin-left: 40px;
  margin-right: 20px;
}
#header .menu .tel-wrap a {
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0 0 0 20px;
  background: url("../images/header-tel.png") no-repeat left 5px;
}
#header .menu .btn-wrap .btn01 {
  width: 200px;
  min-width: 200px;
  padding: 13px 0 15px;
}
@media screen and (max-width: 1080px) {
	#header .menu nav ul li a {
		font-size: 12px;
	}
}
@media screen and (max-width: 768px) {
  #header .menu {
    display: none;
    background: #fff;
	margin: 0;
	position: absolute;
	top: 55px;
	z-index: 1;
  }
  #header .menu nav ul {
	padding: 0 0;
	display: block;
  }
  #header .menu.login nav ul {
    padding: 0 0;
    display: block;
  }
  #header .menu nav ul li {
    width: 100%;
    border: none;
    margin-left: 0;
	border-bottom: 1px solid #ddd;
  }
  #header .menu nav ul li:last-child { border-bottom: none; }
  #header .menu nav ul li a {
	font-size: 15px;
	padding: 15px 0;
	text-align: center;
	border-bottom: none;
  }
  #header .menu nav li.btn_contact a {
	color: #fff;
	background: #106487;
	padding: 15px 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  #header .menu nav li.btn_contact a::before {
	content: "";
	display: inline-block;
	width: 23px;
	height: 23px;
	background: url("../images/i_register.png") no-repeat;
	background-size: contain;
	margin-right: 0.5em;
  }
}


/*----------------------------------------------------
	sp ハンバーガーメニューcss
----------------------------------------------------*/
.sp_head_contact_wrap {
    position: absolute;
    top: 18px;
    right: 2.5vw;
}
.sp-tel { 
  margin-right: 1vw; 
  display: flex;
  align-items: center;
  font-size: 3.2vw;
}
.sp-tel i {
    font-size: 5vw;
    color: #106487;
}

.menu-ani-button-wrap {
    width: 30px;
    height: 25px;
}
.menu-ani-button {
  cursor: pointer;
  position: absolute;
  width: 30px; /*---線の長さ---*/
  height: 25px; /*---線の太さ長さによって調整---*/
  /*margin-top: -10px;*/
}
.bar,
.bar:before,
.bar:after {
  height: 3px; /*---線の太さ---*/
  border-radius: 3px;
  width: 100%;
  background-color: #106487;
  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;
}



/*  main-v  */
.main-v {
  /*padding-top: 90px;*/
  position: relative;
}
.main-v .main-image {
  width: calc(((100% - 1280px) / 2) + 1280px - 400px);
  height: 600px;
}
.main-v .main-image img {
  object-fit: cover;
  object-position: 100% 0;
  width: 100%;
  height: 100%;
  border-radius: 0 40px 40px 0;
}
.main-v .main-title-wrap {
  width: 1280px;
  position: absolute;
  top: calc(50% + (88px / 2));
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  padding-left: 677px;
}
.main-v .main-title {
  margin-left: -7px;
}
.main-v .main-title,
.main-v .main-title span {
  font-size: 86px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.main-v .btn01 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .main-v {
    height: calc(100vw + 60px);
    padding-top: 60px;
  }
  .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 {
    margin-left: 0;
  }
  .main-v .main-title-wrap {
    width: 90vw;
    top: 25vw;
    transform: translateY(0);
    padding-left: 33vw;
  }
  .main-v .main-title,
  .main-v .main-title span {
    font-size: 10vw;
  }
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
#footer {
  width: 100%;
  overflow: hidden;
}
#footer .foot-content {
  padding: 0 0;
}

/* ナビゲーション(フッター) */
#foot-navi ul {
	padding: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
#foot-navi ul li {	
}
#foot-navi ul li a {
	font-size: 14px;
	color: #fff;
	margin: 0 1.5em;
	transition: 0.3s;
}
#foot-navi ul li a:hover {
	opacity: 1.0;
	text-decoration: underline;
}

#footer .foot_logo {
    text-align: center;
    background: #fff;
    padding: 15px 0;
}

#footer .copy {
  font-size: 12px;
  line-height: 1.6em;
  padding: 8px 0;
}

#scroll-top a {
  border-radius: 50%;
  background: rgba(47, 187, 220, 0.7);
  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;
}

@media screen and (max-width: 768px) {
  #footer .foot-content {
    width: 100%;
  }
  #foot-navi ul { flex-wrap: wrap; }
  #foot-navi ul li a {
    font-size: 13px;
    margin: 5px 1.0em;
	display: inline-block;
  }
	
  #footer .foot_logo a {
    width: 60%;
    margin: auto;
  }
	
  #scroll-top a {
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding-top: 10px;
  }
  #scroll-top a .fa-arrow-up::before {
    font-size: 30px;
  }
}



.ellipsis_1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ellipsis_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ellipsis_3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}




