@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: 500;
  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;
  color: #005497;
}

.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: #005497;
}

.bgextend--bk::before {
  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: #fff;
  border: 2px solid #005497;
  font-size: 1.4rem;
  font-weight: 700;
  color: #005497;
  padding: 23px 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  transition: all 0.3s;
}

.btnshine--orange {
  background-color: #f1982c;
  border: transparent;
  color: #fff;
}

@media (min-width: 1080px) {
  .btnshine:hover {
    background-color: #005497;
    color: #fff;
    transition: all 0.3s;
  }

  .btnshine--orange:hover {
    background-color: #f1982c;
    color: #fff;
    transition: none;
  }
}

.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, 0.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: #005497;
  width: 40px;
  height: 1px;
  z-index: 10;
  transition: all 0.3s;
}

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

.btn-box--orange::before,
.btn-box--orange::after {
  background-color: #fff;
}

@media (min-width: 1080px) {
  .btn-box:hover::before,
  .btn-box:hover::after {
    background-color: #fff;
  }
}

@media (min-width: 1080px) {
  .btn-box:hover::before {
    transition: all 0.3s;
    transform: translateX(30%);
  }

  .btn-box:hover::after {
    transition: all 0.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 0.3s;
    transform: translateX(0);
  }

  .btn-box--sml:hover::after {
    transition: all 0.3s;
    transform: translateX(0) rotate(32deg);
  }
}
/* ----- arrow animation end -----*/

/* ----- entry start -----*/
.entry {
  background-image: url(../img/top/top07.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 56px 0 50px;
  margin: 100px 0 145px;
}

.entry .ttl,
.entry .sub-ttl {
  text-align: center;
}

.entry__txt {
  margin-top: 43px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}

.entry__btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
/* ----- entry 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 .top, 
.breadcrumbs .top-arrow {
  color: #b2b2b2;;
}

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

.breadcrumbs .home {
  color: #b2b2b2;
}

.main .breadcrumbs .home {
  color: #1a1a1a;
}

.breadcrumbs .arrow,
.breadcrumbs .top-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: 7px;
    width: 33px;
  }

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

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

  /* ----- entry start -----*/
  .entry {
    background-image: url(../img/top/top07-sp.png);
    background-image: image-set(
      url(../img/top/top07-sp.png) 1x,
      url(../img/top/top07-sp@2x.png) 2x
    );
    background-image: -webkit-image-set(
      url(../img/top/top07-sp.png) 1x,
      url(../img/top/top07-sp@2x.png) 2x
    );
    padding: 35px 0 30px;
    margin: 40px 0 145px;
  }

  .entry__txt {
    margin: 22px auto 0;
    margin-top: 22px;
    text-align: left;
    width: 365px;
  }

  .entry__btn {
    margin-top: 35px;
  }
  /* ----- entry end -----*/

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

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

  .under-fv__inner {
    padding: 17px 0;
    margin: 0 20px;
  }

  .under-fv__ttl {
    font-size: 3rem;
  }

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

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

  .breadcrumbs {
    margin-top: 13px;
  }

  .breadcrumbs__inner {
    margin: 0 20px;
    font-size: 1rem;
    
  }
  /* ----- 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;
    width: 33px;
  }

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

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

  /* ----- entry start -----*/
  .entry {
    padding: 30px 0 30px;
    margin: 40px 0 145px;
  }

  .entry__txt {
    font-size: 1.4rem;
    line-height: 1.7;
    width: 308px;
  }
  /* ----- entry end -----*/

  @media (max-width: 349px) {
    .entry__txt {
      width: 268px;
    }
  }
}
