@charset "utf-8";

/* =====reset-css====== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  border-radius: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  background: none;
}

input[type="radio"],
input[type="checkbox"]  {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

ol,
ul {
  list-style: none;
}

/* =====common-css====== */

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  max-width: 2520px;
  margin: 0 auto;
}

.hidden {
  overflow: hidden;
}

body.open {
  overflow: hidden;
}

.sp {
  display: none;
}

/* ----- ttl animation start -----*/

.ttl {
  font-size: 4.6rem;
  font-family: brother-1816, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sub-ttl {
  font-size: 1.6rem;
  margin-top: 10px;
}

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration: 1.1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
  animation-iteration-count: 1;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
  animation-iteration-count: 1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}

/* ----- ttl animation end -----*/


/* ----- txt animation start -----*/

span.smoothText {
	overflow: hidden;
	display: block;
}

span.smoothTextTrigger{
	transform: translate3d(0,100%,0);
	transform-origin: left;
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	display: block;
}

span.smoothTextTrigger.smoothTextAppear{
    transform: translate3d(0,0,0);
}
/* ----- txt animation end -----*/


/* ----- btn animation start -----*/

.btnshine{
  position: relative;
  display: inline-block;
  background: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding: 23px 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

.btnshine--blue {
  background-color: #005497;
}

.btnshine--sml {
  font-size: 1.2rem;
  padding: 13px 0;
  width: 100%;
}

.btnshine::before {
content: '';
position: absolute;
top: 0;
left: -75%;
width: 50%;
height: 100%;
background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
transform: skewX(-25deg);
}

.btnshine:hover::before {
animation: shine 0.7s;
}

@keyframes shine {
100% {
  left: 125%;
}
}
/* ----- btn animation end -----*/


/* ----- arrow animation start -----*/

.btn-box {
  position: relative;
  width: 276px;
}

.btn-box::before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 10px;
  display: inline-block;
  background-color: #fff;
  width: 40px;
  height: 1px; 
  z-index: 10;
  transition: all .3s;
}

.btn-box::after {
  content: "";
  position: absolute;
  right: 29px;
  bottom: 13px;
  transform: rotate(37deg);
  display: inline-block;
  background-color: #fff;
  width: 10px;
  height: 1px; 
  z-index: 10;
  border-radius: 1px;
  transition: all .3s;
}

@media (min-width: 1080px) {
 
  .btn-box:hover::before {
    transition: all .3s;
    transform: translateX(30%);
  }
  
  .btn-box:hover::after {
    transition: all .3s;
    transform: translateX(120%) rotate(35deg);
  }
  
}

.btn-box--sml {
  width: 172px;
}

.btn-box--sml::before {
  right: 10px;
  bottom: 8px;
  width: 25px;
}

.btn-box--sml::after {
  right: 9px;
  bottom: 10px;
  width: 8px;
  transform: rotate(32deg);
}

@media (min-width: 1080px) {

  .btn-box--sml:hover::before {
    transition: all .3s;
    transform: translateX(0);
  }
  
  .btn-box--sml:hover::after {
    transition: all .3s;
    transform: translateX(0) rotate(32deg);
  }

}
/* ----- arrow animation end -----*/


/* ----- under-fv start -----*/

.under-fv {
  margin-top: 70px;
}

.under-fv__inner {
  padding: 55px 0;
  margin: 0 16%;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.under-fv__ttl {
  font-size: 50px;
  font-family: brother-1816, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.under-fv__sub-ttl {
  font-size: 1.8rem;
  margin-top: 10px;
}
/* ----- under-fv end -----*/


/* ----- breadcrumbs start ----- */

.breadcrumbs {
  margin-top: 10px;
}

.breadcrumbs__inner {
  margin: 0 16%;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.breadcrumbs .home {
  color: #b2b2b2;
}

.breadcrumbs .arrow {
  display: inline-block;
  padding: 0 10px;
  color: #b2b2b2;
}

/* ----- breadcrumbs end ----- */


/* ==========================================
/* tablet
/* ========================================== */

@media (max-width: 1079px) {

/* ----- ttl animation start -----*/

.ttl {
  font-size: 4rem;
}

.sub-ttl {
  font-size: 1.4rem;
}

/* ----- ttl animation end -----*/


/* ----- btn animation start -----*/

.btnshine{
  padding: 17px 0;
}

.btnshine--sml {
  font-size: 1.2rem;
  padding: 13px 0;
  width: 100%;
}

/* ----- btn animation end -----*/


/* ----- arrow animation start -----*/

.btn-box {
  width: 232px;
}

.btn-box--sml {
  width: 172px;
}

.btn-box::before {
  right: 10px;
  bottom: 5px;
  width: 33px;
}

.btn-box::after {
  right: 9px;
  bottom: 8px;
  width: 9px;
}

/* ----- arrow animation end -----*/


/* ----- under-fv start -----*/

.under-fv {
  margin-top: 67px;
}

.under-fv__inner {
  padding: 17px 0;
  margin: 0 20px;
  /* text-align: center;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a; */
}

.under-fv__ttl {
  font-size: 3rem;
  /* font-family: brother-1816, sans-serif;
  font-weight: 700;
  font-style: normal; */
}

.under-fv__sub-ttl {
  font-size: 1.4rem;
  /* margin-top: 10px; */
}
/* ----- under-fv end -----*/


/* ----- breadcrumbs start ----- */

.breadcrumbs {
  margin-top: 13px;
}

.breadcrumbs__inner {
  margin: 0 20px;
  font-size: 1rem;
  /* font-weight: 400; */
}

/* ----- breadcrumbs end ----- */
  
}

/* ==========================================
/* sp
/* ========================================== */

@media (max-width: 767px) {

/* =====common-css====== */

.pc {
  display: none;
}

.sp {
  display: block;
}

/* ----- ttl animation start -----*/

.ttl {
  font-size: 3rem;
}
/* ----- ttl animation end -----*/


/* ----- btn animation start -----*/

.btnshine {
  padding: 17px 0;
}

.btnshine--sml {
  font-size: 1.2rem;
  padding: 13px 0;
  width: 100%;
}
/* ----- btn animation end -----*/


/* ----- arrow animation start -----*/

.btn-box {
  width: 232px;
}

.btn-box--sml {
  width: 172px;
}

.btn-box::before {
  right: 10px;
  bottom: 5px;
  width: 33px;
}

.btn-box::after {
  right: 9px;
  bottom: 8px;
  width: 9px;
}

/* ----- arrow animation end -----*/


}

@media (max-width: 360px) {

}