@charset "UTF-8";
/* ==========================================================================
  settings
============================================================================*/
/* -------------------------------
  responsive
------------------------------- */
/* -------------------------------
  animation keyframe
------------------------------- */
@-webkit-keyframes scrollArrowMove {
  0% {
    bottom: 4px;
  }
  50% {
    bottom: -4px;
  }
  100% {
    bottom: -4px;
  }
}
@keyframes scrollArrowMove {
  0% {
    bottom: 4px;
  }
  50% {
    bottom: -4px;
  }
  100% {
    bottom: -4px;
  }
}
@-webkit-keyframes scrollArrowOpacity {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0.9;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollArrowOpacity {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  40% {
    opacity: 0.9;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ==========================================================================
  header navigation footer breadclumb kv(key visual) common item
============================================================================*/
/* -------------------------------
  header
------------------------------- */
.l-header {
  width: 100%;
  height: 95px;
  padding: 20px 40px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  /* logo */
}
@media screen and (max-width: 1099px) {
  .l-header {
    height: 60px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  .l-header {
    padding: 10px;
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1099px) {
  .l-header__inner {
    width: 100%;
  }
}
.l-header__logo__add {
  display: none;
}
.l-header__logo img {
  width: 230px;
}
@media screen and (max-width: 1099px) {
  .l-header__logo img {
    width: 160px;
  }
}

/* -------------------------------
  navigation - PC
------------------------------- */
@media screen and (max-width: 1099px) {
  .l-navigation__pc {
    display: none;
  }
}
.l-navigation__pc__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* gap: 0 50px; */
}
.l-navigation__pc__li {
  margin-right: 50px;
}
.l-navigation__pc__li:last-of-type {
  margin-right: 0;
}
.l-navigation__pc__link {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  position: relative;
}
.l-navigation__pc__link::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #00aeeb;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.l-navigation__pc__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.l-navigation__pc__link.is-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.l-navigation__pc__link__lower {
  display: block;
  width: 100%;
  background-color: #4d4d4d;
  position: absolute;
  top: 95px;
  left: 0;
  /* contact */
}
.l-navigation__pc__link__lower__inner {
  display: block;
  width: 100%;
  padding: 40px 10%;
}
.l-navigation__pc__link__lower__square {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* gap: 10px; */
  width: 570px;
  margin-right: auto;
  margin-left: auto;
}
.l-navigation__pc__link__lower__square__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc((100% - 10px) / 2);
  height: 60px;
  background-color: #ffffff;
  position: relative;
}
.l-navigation__pc__link__lower__square__button:only-of-type {
  width: 100%;
}
.l-navigation__pc__link__lower__square__button__text {
  color: #333;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.l-navigation__pc__link__lower__square__button__text::after {
  display: block;
  content: ">";
  color: #333;
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%) scaleX(0.5);
          transform: translateY(-50%) scaleX(0.5);
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.l-navigation__pc__link__lower__square__button:hover .l-navigation__pc__link__lower__square__button__text::after {
  right: 1.5rem;
}
.l-navigation__pc__link__lower__line {
  display: block;
  content: "";
  height: 1px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: #999;
}
.l-navigation__pc__link__lower__title {
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.l-navigation__pc__link__lower__rounded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* gap: 10px; */
  width: 860px;
  margin-right: auto;
  margin-left: auto;
}
.l-navigation__pc__link__lower__rounded__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  height: 50px;
  background-color: rgba(77, 77, 77, 0);
  border: 1px solid #ffffff;
  border-radius: 10px;
  position: relative;
}
.l-navigation__pc__link__lower__rounded__button:only-of-type {
  width: 360px;
}
.l-navigation__pc__link__lower__rounded__button__text {
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.l-navigation__pc__link__lower__rounded__button__text::after {
  display: block;
  content: ">";
  color: #00aeeb;
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%) scaleX(0.5);
          transform: translateY(-50%) scaleX(0.5);
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.l-navigation__pc__link__lower__rounded__button:hover .l-navigation__pc__link__lower__rounded__button__text::after {
  right: 1.5rem;
}
.l-navigation__pc__link__lower__rounded__button--1col {
  width: 100%;
}
.l-navigation__pc__link__lower__rounded-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* gap: 10px; */
  width: 860px;
  margin-right: auto;
  margin-left: auto;
}
.l-navigation__pc__link__lower__rounded-white__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
}
.l-navigation__pc__link__lower__rounded-white__button:only-of-type {
  width: 360px;
}
.l-navigation__pc__link__lower__rounded-white__button__text {
  color: #333;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.l-navigation__pc__link__lower__rounded-white__button__text::after {
  display: block;
  content: ">";
  color: #333;
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%) scaleX(0.5);
          transform: translateY(-50%) scaleX(0.5);
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.l-navigation__pc__link__lower__rounded-white__button:hover .l-navigation__pc__link__lower__rounded-white__button__text::after {
  right: 1.5rem;
}
.l-navigation__pc__link__lower--contact .l-navigation__pc__link__lower__tel__no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-navigation__pc__link__lower--contact .l-navigation__pc__link__lower__tel__no__icon {
  width: 33px;
  margin-right: 30px;
}
.l-navigation__pc__link__lower--contact .l-navigation__pc__link__lower__tel__no__text {
  color: #ffffff;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-navigation__pc__link__lower--contact .l-navigation__pc__link__lower__tel__desc {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-navigation__pc__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
  color: #ffffff;
  height: 50px;
  font-size: 1.4rem;
  letter-spacing: 100;
}
.l-navigation__pc__close span {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 200;
}

/* -------------------------------
  navigation - SP
------------------------------- */
.ham__sp {
  width: 20px;
  height: 16px;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .ham__sp {
    display: none;
  }
}
.ham__sp__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.ham__sp__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #999;
  position: relative;
  opacity: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, transform 0.4s;
  transition: opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.ham__sp.is-active .ham__sp__line:first-of-type {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.ham__sp.is-active .ham__sp__line:nth-of-type(2) {
  opacity: 0;
}
.ham__sp.is-active .ham__sp__line:last-of-type {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.l-navigation__sp {
  display: block;
  width: 100%;
  height: 600px;
  overflow-y: scroll;
  background-color: #4d4d4d;
  position: absolute;
  top: 60px;
  left: 0;
}
@media screen and (min-width: 1100px) {
  .l-navigation__sp {
    display: none;
  }
}
.l-navigation__sp__inner {
  padding-bottom: 140px;
}
.l-navigation__sp__inner a {
  display: block;
  padding: 15px;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.l-navigation__sp__accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.l-navigation__sp__accordion__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
.l-navigation__sp__accordion__title__text {
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.2em;
}
.l-navigation__sp__accordion__title__arrow {
  display: block;
  content: "";
  left: 3px;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  position: relative;
  top: -0.1em;
}
.l-navigation__sp__accordion__title.open .l-navigation__sp__accordion__title__arrow {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-navigation__sp__accordion__content {
  display: none;
  padding-left: 15px;
}
.l-navigation__sp__accordion__content a:last-of-type {
  border-bottom: none;
}
.l-navigation__sp__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  color: #ffffff;
}
.l-navigation__sp__tel .l-navigation__sp__telarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: none;
}
.l-navigation__sp__tel .l-navigation__sp__telarea__icon {
  width: 30px;
  margin-right: 10px;
}
@media screen and (max-width: 320px) {
  .l-navigation__sp__tel .l-navigation__sp__telarea__icon {
    width: 20px;
  }
}
.l-navigation__sp__tel .l-navigation__sp__telarea__no {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .l-navigation__sp__tel .l-navigation__sp__telarea__no {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .l-navigation__sp__tel .l-navigation__sp__telarea__no {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 320px) {
  .l-navigation__sp__tel .l-navigation__sp__telarea__no {
    font-size: 2rem;
  }
}
.l-navigation__sp__tel__desc {
  letter-spacing: 0.1em;
  position: relative;
  top: -0.6em;
}

/* -------------------------------
  breadclumb
------------------------------- */
.l-breadclumb {
  display: block;
  width: 100%;
  background-color: #f2f2f2;
  padding: 8px 0;
}
@media screen and (max-width: 1099px) {
  .l-breadclumb {
    padding: 8px;
  }
}
.l-breadclumb__inner {
  display: block;
  width: 930px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1099px) {
  .l-breadclumb__inner {
    width: 100%;
  }
}
.l-breadclumb__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-breadclumb__li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.l-breadclumb__li::after {
  display: block;
  content: "＞";
  margin-left: 20px;
  margin-right: 20px;
  font-size: 1rem;
}
@media screen and (max-width: 599px) {
  .l-breadclumb__li::after {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1rem;
  }
}
.l-breadclumb__li:last-of-type::after {
  display: none;
}
.l-breadclumb__link {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media screen and (max-width: 599px) {
  .l-breadclumb__link {
    font-size: 1rem;
  }
}
.l-breadclumb__link:hover {
  opacity: 0.7;
}

/* -------------------------------
  kv - top
------------------------------- */
.kv-top {
  display: block;
  width: 100%;
  background-image: url(../img/top/kv-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.kv-top::before {
  display: block;
  content: "";
  padding-top: 46%;
}
@media screen and (max-width: 599px) {
  .kv-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* background-image: url(../img/top/kv-bg_sp.jpg); */
  }
  .kv-top::before {
    padding-top: 117.3333333333%;
  }
}
.kv-top__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 60px;
  background-color: #499acf;
}
@media screen and (min-width: 600px) {
  .kv-top__scroll {
    display: none;
  }
}
.kv-top__scroll__text {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}
.kv-top__scroll__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.8px 3.25px 0 3.25px;
  border-color: #ffffff transparent transparent transparent;
  position: relative;
  -webkit-animation: scrollArrowMove 2s ease-in-out infinite, scrollArrowOpacity 2s ease-out infinite;
          animation: scrollArrowMove 2s ease-in-out infinite, scrollArrowOpacity 2s ease-out infinite;
}

/* -------------------------------
  kv - lower
------------------------------- */
.kv-lower {
  display: block;
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top right;
  position: relative;
}
@media screen and (max-width: 599px) {
  .kv-lower {
    height: auto;
    background-size: contain;
    background-position: top center;
  }
}
@media screen and (min-width: 1100px) {
  .kv-lower::before {
    display: block;
    content: "";
    width: 25%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }
}
.kv-lower__inner {
  width: 930px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1099px) {
  .kv-lower__inner {
    width: 100%;
  }
}
.kv-lower__gradient {
  display: block;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: 0;
  padding: 50px 0 30px;
  /* background : linear-gradient(90deg, rgba($color-white, 1) 68%, rgba($color-white, 0) 100%); */
  background: none;
}
@media screen and (max-width: 1099px) {
  .kv-lower__gradient {
    padding: 30px 20px;
    /* background : linear-gradient(90deg, rgba($color-white, 1) 40%, rgba($color-white, 0) 100%); */
    background: none;
  }
}
@media screen and (max-width: 599px) {
  .kv-lower__gradient {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    padding: 25px 0;
    /* background : linear-gradient(0deg, rgba($color-white, 1) 35%, rgba($color-white, 0) 100%); */
    background: none;
  }
}
.kv-lower__content {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .kv-lower__content {
    width: calc(100% - 30px);
    padding-top: 35vw;
    margin-left: 20px;
  }
}
.kv-lower__content__title__h1 {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.25em;
  color: #333;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
}
@media screen and (max-width: 599px) {
  .kv-lower__content__title__h1 {
    font-size: 2.7rem;
  }
}
.kv-lower__content__title__h1::after {
  display: block;
  content: "";
  width: 50%;
  height: 1px;
  background-color: #ccc;
}
@media screen and (max-width: 799px) {
  .kv-lower__content__title__h1::after {
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  .kv-lower__content__title__h1::after {
    width: 100%;
  }
}
.kv-lower__content__catch {
  margin-bottom: 1em;
  font-size: 2.1rem;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .kv-lower__content__catch {
    font-size: 1.7rem;
  }
}
.kv-lower__content__desc {
  padding-left: 1.25em;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 599px) {
  .kv-lower__content__desc {
    font-size: 1.5rem;
  }
}

/* -------------------------------
  kv menu - lower
------------------------------- */
.kv-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 12px 0 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 599px) {
  .kv-menu {
    padding: 14px 0 0;
  }
}
.kv-menu__inner {
  display: block;
  width: 930px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1099px) {
  .kv-menu__inner {
    width: calc(100% -20px);
  }
}
.kv-menu__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1099px) {
  .kv-menu__ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.kv-menu__li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 40px;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1099px) {
  .kv-menu__li {
    margin-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .kv-menu__li {
    margin-right: 0;
    padding: 0 0.6em;
  }
}
.kv-menu__link {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 599px) {
  .kv-menu__link {
    font-size: 1.4rem;
  }
}
.kv-menu__link::after {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  bottom: -0.6em;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
  -webkit-transition: bottom 0.2s;
  transition: bottom 0.2s;
}
@media screen and (max-width: 599px) {
  .kv-menu__link::after {
    width: 5px;
    height: 5px;
  }
}
.kv-menu__link__small {
  font-size: 1.2rem;
}
.kv-menu__link:hover::after {
  bottom: -0.8em;
}

/* -------------------------------
  footer
------------------------------- */
.l-footer {
  width: 100%;
  background-color: #f8f8f8;
  /* navgation */
  /* copyright */
  /* logoarea */
  /* contact common */
  /* contact town */
  /* contact general */
  /* contact hoken */
}
.l-footer__nav {
  width: 100%;
  padding: 20px 0;
}
@media screen and (max-width: 599px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* gap: 0 0; */
  width: 84.5vw;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1099px) {
  .l-footer__nav__inner {
    width: calc(100% - 20px);
    max-width: inherit;
    /* gap: 20px 0; */
  }
}
.l-footer__nav__content {
  width: calc(100% / 3);
  padding-left: 80px;
}
@media screen and (max-width: 1099px) {
  .l-footer__nav__content {
    width: calc(100% / 2);
    padding-left: 7.2vw;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__nav__content {
    width: 100%;
    padding-left: 0;
  }
}
.l-footer__nav__content__title {
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .l-footer__nav__content__title {
    padding: 0.25em 0;
    font-size: 1.5rem;
  }
}
.l-footer__nav__content__dir {
  margin-bottom: 1em;
  padding-left: 1.5em;
  font-size: 1.4rem;
  font-weight: 300;
}
.l-footer__nav__content__dir__link {
  margin-bottom: 1em;
}
.l-footer__nav__content-child {
  margin-bottom: 1em;
  padding-left: 1.5em;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 599px) {
  .l-footer__nav__content-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.l-footer__nav__content-child__dir {
  margin-bottom: 1em;
}
@media screen and (max-width: 599px) {
  .l-footer__nav__content-child__dir {
    width: 48%;
  }
}
.l-footer__nav__content-child__dir:first-of-type {
  margin-top: 1em;
}
@media screen and (max-width: 599px) {
  .l-footer__nav__content-child__dir:first-of-type {
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__nav__content__company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__nav__content__company > .l-footer__nav__content__dir {
    width: 48%;
  }
}
.l-footer__nav a {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.l-footer__nav a:hover {
  opacity: 0.7;
}
.l-footer__copy {
  display: inline-block;
  width: 100%;
  background-color: #3771d7;
}
.l-footer__copy__inner {
  width: 1100px;
  margin: auto;
  padding: 10px 30px;
}
@media screen and (max-width: 1099px) {
  .l-footer__copy__inner {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__copy__inner {
    padding: 5px 15px;
  }
}
.l-footer__copy__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #ffffff;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .l-footer__copy__text {
    font-size: 1.2rem;
  }
}
.l-footer__copy__text__icon {
  font-size: 2.8rem;
}
@media screen and (max-width: 599px) {
  .l-footer__copy__text__icon {
    font-size: 2.4rem;
  }
}
.l-footer__logoarea {
  width: 100%;
}
.l-footer__logoarea__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1100px;
  margin: auto;
  padding: 20px 30px;
}
@media screen and (max-width: 1099px) {
  .l-footer__logoarea__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__logoarea__inner {
    padding: 10px 0 5px;
  }
}
.l-footer__logoarea__logo {
  width: 240px;
}
@media screen and (max-width: 599px) {
  .l-footer__logoarea__logo {
    width: 200px;
  }
}
.l-footer__contact {
  width: 100%;
  background-size: auto auto;
  background-color: #6d6d6d;
  background-image: repeating-linear-gradient(-60deg, transparent, transparent 10px, #848484 10px, #848484 11.4px);
  padding: 25px 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 799px) {
  .l-footer__contact {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact {
    padding: 10px;
  }
}
.l-footer__contact.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-footer__contact.iphoneshow {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-footer__contact .inner {
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1099px) {
  .l-footer__contact .inner {
    max-width: 100%;
  }
}
.l-footer__contact .pc-only {
  display: block;
}
@media screen and (max-width: 1099px) {
  .l-footer__contact .pc-only {
    display: none;
  }
}
.l-footer__contact__town .l-footer__contact__title {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__title {
    font-size: 1.3rem;
    text-align: center;
  }
}
.l-footer__contact__town .l-footer__contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__contact__town .l-footer__contact__button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc((100% - 20px - 20px) / 3);
  margin-right: 20px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 1099px) {
  .l-footer__contact__town .l-footer__contact__button__link {
    width: calc((100% - 10px - 10px) / 3);
    margin-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__button__link {
    width: 100%;
    height: 50px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.l-footer__contact__town .l-footer__contact__button__link__text {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__town .l-footer__contact__button__link__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__button__link__text {
    font-size: 1.4rem;
  }
}
.l-footer__contact__town .l-footer__contact__button__link__text::after {
  display: block;
  content: ">";
  color: inherit;
  font-size: inherit;
  font-weight: 300;
  position: absolute;
  top: 50%;
  right: -2em;
  -webkit-transform: scaleX(0.5) translateY(-50%);
          transform: scaleX(0.5) translateY(-50%);
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__town .l-footer__contact__button__link__text::after {
    right: -0.8em;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__button__link__text::after {
    right: -1.4em;
  }
}
.l-footer__contact__town .l-footer__contact__button__link:hover .l-footer__contact__button__link__text::after {
  right: -2.4em;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__town .l-footer__contact__button__link:hover .l-footer__contact__button__link__text::after {
    right: -1em;
  }
}
.l-footer__contact__town .l-footer__contact__button__telarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer__contact__town .l-footer__contact__button__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc((100% - 20px) / 2);
  height: 65px;
  margin-right: 20px;
  margin-bottom: 10px;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  pointer-events: none;
}
.l-footer__contact__town .l-footer__contact__button__tel:nth-of-type(2n) {
  margin-right: 0;
}
.l-footer__contact__town .l-footer__contact__button__tel:nth-of-type(n + 3) {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__button__tel:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1099px) {
  .l-footer__contact__town .l-footer__contact__button__tel {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__button__tel {
    pointer-events: auto;
    width: calc((100% - 10px) / 2);
    height: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.l-footer__contact__town .l-footer__contact__button__tel__area {
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__button__tel__area {
    font-size: 1rem;
  }
}
.l-footer__contact__town .l-footer__contact__button__tel__telno {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.1;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__town .l-footer__contact__button__tel__telno {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact__town .l-footer__contact__button__tel__telno {
    font-size: 1.5rem;
  }
}
.l-footer__contact__general .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__contact__general .l-footer__contact__title {
  width: calc(100% / 3);
  padding: 0 40px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__title {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-size: 1.4rem;
    text-align: center;
  }
}
.l-footer__contact__general .l-footer__contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc((100% / 3) * 2);
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__inner {
    width: 100%;
  }
}
.l-footer__contact__general .l-footer__contact__button__link,
.l-footer__contact__general .l-footer__contact__button__telarea {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__button__link,
.l-footer__contact__general .l-footer__contact__button__telarea {
    width: calc((100% - 10px) / 2);
  }
}
.l-footer__contact__general .l-footer__contact__button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 30px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__button__link {
    margin-right: 10px;
  }
}
.l-footer__contact__general .l-footer__contact__button__link__text {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__general .l-footer__contact__button__link__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__button__link__text {
    font-size: 1.4rem;
  }
}
.l-footer__contact__general .l-footer__contact__button__link__text::after {
  display: block;
  content: ">";
  color: inherit;
  font-size: inherit;
  font-weight: 300;
  position: absolute;
  top: 50%;
  right: -2em;
  -webkit-transform: scaleX(0.5) translateY(-50%);
          transform: scaleX(0.5) translateY(-50%);
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__general .l-footer__contact__button__link__text::after {
    right: -1.4em;
  }
}
.l-footer__contact__general .l-footer__contact__button__link:hover .l-footer__contact__button__link__text::after {
  right: -2.4em;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__general .l-footer__contact__button__link:hover .l-footer__contact__button__link__text::after {
    right: -1.8em;
  }
}
.l-footer__contact__general .l-footer__contact__button__telarea {
  background-color: #ffffff;
}
.l-footer__contact__general .l-footer__contact__button__telarea__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__button__telarea__link {
    pointer-events: auto;
  }
}
.l-footer__contact__general .l-footer__contact__button__telarea__telno {
  font-size: 2.6rem;
  font-weight: 500;
  position: relative;
  top: 0.2em;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__button__telarea__telno {
    font-size: 1.8rem;
  }
}
.l-footer__contact__general .l-footer__contact__button__telarea__text {
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  position: relative;
  top: -0.1em;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__button__telarea__text {
    font-size: 1.3rem;
  }
}
.l-footer__contact__general .l-footer__contact__button__telarea__fax {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  top: -0.1em;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__general .l-footer__contact__button__telarea__fax {
    font-size: 1.5rem;
  }
}
.l-footer__contact__hoken .l-footer__contact__button__tel {
  margin-bottom: 0;
}
.l-footer__contact__hoken .l-footer__contact__button__tel__hoken {
  pointer-events: auto;
}
.l-footer__contact__hoken .l-footer__contact__button__tel__link {
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .l-footer__contact__hoken .l-footer__contact__button__tel__link {
    pointer-events: auto;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__hoken .l-footer__contact__button__tel__telno {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact__hoken .l-footer__contact__button__tel__telno {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__hoken .l-footer__contact__button__link__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 799px) {
  .l-footer__contact__hoken .l-footer__contact__button__link__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__contact__hoken .l-footer__contact__button__link__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__hoken .l-footer__contact__button__link__text::after {
    right: -0.8em;
  }
}
@media screen and (max-width: 799px) {
  .l-footer__contact__hoken .l-footer__contact__button__link__text::after {
    right: -0.8em;
  }
}
.l-footer__contact__hoken .l-footer__contact__button__link__text:hover::after {
  right: -2.4em;
}
@media screen and (max-width: 1023px) {
  .l-footer__contact__hoken .l-footer__contact__button__link__text:hover::after {
    right: -1em;
  }
}

/* footer */
/* -------------------------------
  common item
------------------------------- */
.title__h2-mono {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.title__h2-mono--en {
  font-size: 3.6rem;
}
@media screen and (max-width: 799px) {
  .title__h2-mono--en {
    font-size: 2.8rem;
  }
}
.title__h2-mono--jp {
  font-size: 1.8rem;
}
@media screen and (max-width: 799px) {
  .title__h2-mono--jp {
    font-size: 1.2rem;
  }
}

.title__h2-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.title__h2-color--en {
  font-size: 3.6rem;
  position: relative;
}
@media screen and (max-width: 799px) {
  .title__h2-color--en {
    font-size: 2.8rem;
  }
}
.title__h2-color--en::after {
  display: block;
  content: "";
  width: 300px;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #00aeeb), color-stop(50%, #ec6c00));
  background-image: linear-gradient(90deg, #00aeeb 50%, #ec6c00 50%);
  position: absolute;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .title__h2-color--en::after {
    width: 240px;
  }
}
.title__h2-color--jp {
  font-size: 1.8rem;
}
@media screen and (max-width: 799px) {
  .title__h2-color--jp {
    font-size: 1.2rem;
  }
}

.icon__link {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #ec6c00;
  border-right: 1px solid #ec6c00;
  -webkit-transition: border-top 0.2s, border-right 0.2s;
  transition: border-top 0.2s, border-right 0.2s;
  position: relative;
}
@media screen and (max-width: 599px) {
  .icon__link {
    width: 8px;
    height: 8px;
  }
}
.icon__link::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #ec6c00;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media screen and (max-width: 599px) {
  .icon__link::after {
    width: 5px;
    height: 5px;
  }
}

.orange-button {
  display: block;
  padding: 7px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 1099px) {
  .orange-button {
    padding: 5px;
  }
}
.orange-button__inner {
  padding: 10px 20px 10px 40px;
  background-color: #fbe2cd;
}
@media screen and (max-width: 599px) {
  .orange-button__inner {
    padding: 20px;
  }
}
.orange-button__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.orange-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  position: relative;
}
@media screen and (max-width: 599px) {
  .orange-button__link {
    font-size: 1.4rem;
  }
}
.orange-button__link .icon__link {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  top: 50%;
  right: -2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .orange-button__link .icon__link {
    right: -1.5em;
  }
}
.orange-button__link .icon__link::after {
  background-color: #333;
}
.orange-button:hover .orange-button__link {
  opacity: 0.7;
}

/* -------------------------------
  case
------------------------------- */
.case__content {
  display: block;
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 599px) {
  .case__content {
    margin-bottom: 30px;
  }
}
.case__content:last-of-type {
  margin-bottom: 0;
}
.case__titlearea {
  padding: 30px 30px 40px;
  background-color: #e7f8fd;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .case__titlearea {
    padding: 15px 15px 20px;
  }
}
.case__company {
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .case__company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case__company::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.case__company__type {
  display: inline-block;
  padding: 1em 0.5em 1em 1em;
  background-color: #e7f8fd;
  font-size: 1.8rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .case__company__type {
    padding: 0 0.5em 0.25em;
    padding-bottom: 0.25em;
    font-size: 1.4rem;
    position: relative;
    bottom: -0.5em;
  }
}
.case__company__name {
  display: inline-block;
  padding: 1em 1em 1em 0.5em;
  background-color: #e7f8fd;
  font-size: 2.1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .case__company__name {
    padding: 0.25em 0.5em 0;
    font-size: 1.7rem;
  }
}
.case__title__h3 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.71;
}
@media screen and (max-width: 599px) {
  .case__title__h3 {
    font-size: 1.8rem;
  }
}
.case__contentarea {
  padding: 30px;
}
@media screen and (max-width: 599px) {
  .case__contentarea {
    padding: 15px;
  }
}
.case__purpose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .case__purpose {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
}
.case__purpose__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 40px;
  background: linear-gradient(-14.55deg, #e7f8fd 0%, #e7f8fd 50%, #d1f1fb 50%, #d1f1fb 100%);
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .case__purpose__title {
    width: 120px;
    height: 32px;
    font-size: 1.4rem;
  }
}
.case__purpose__title__li {
  padding-left: 0.75em;
  position: relative;
}
.case__purpose__title__li::before {
  display: block;
  content: "";
  width: 0.25em;
  height: 0.25em;
  background-color: #3771d7;
  position: absolute;
  top: 0.75em;
  left: 0;
}
.case__title__h4 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1em;
  color: #3771d7;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .case__title__h4 {
    margin-left: 0;
    margin-top: 4px;
    font-size: 1.4rem;
  }
}
.case__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .case__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
}
.case__detail__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 40px;
  background: linear-gradient(-14.55deg, #e7f8fd 0%, #e7f8fd 50%, #d1f1fb 50%, #d1f1fb 100%);
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .case__detail__title {
    width: 120px;
    height: 32px;
    font-size: 1.4rem;
  }
}
.case__detail__contentarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1em;
}
@media screen and (max-width: 599px) {
  .case__detail__contentarea {
    margin-left: 0;
  }
}
.case__detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .case__detail__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case__detail__content__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case__detail__content .case__title__h5 {
  color: #3771d7;
  /* font-size: 1.6rem; */
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .case__detail__content .case__title__h5 {
    /* font-size: 1.4rem; */
    font-size: 1.5rem;
  }
}
.case__detail__content__li {
  margin-bottom: 0.5em;
  padding-left: 1em;
  color: #333;
  font-size: 1.8rem;
  font-weight: 400;
  position: relative;
}
.case__detail__content__li::before {
  display: block;
  content: "";
  width: 0.25em;
  height: 0.25em;
  background-color: #333;
  position: absolute;
  top: 0.7em;
  left: 0.25em;
}
@media screen and (max-width: 599px) {
  .case__detail__content__li {
    font-size: 1.5rem;
  }
}
.case__detail__content__li:last-of-type {
  margin-bottom: 0;
}
.case__detail__content__note {
  margin-top: 2em;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
  font-weight: 300;
}
.case__detail__content__imgarea {
  width: 260px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
@media screen and (max-width: 599px) {
  .case__detail__content__imgarea {
    margin-left: 0;
    margin-top: 10px;
  }
}
.case__detail__content__imgarea__img {
  width: 100%;
}
.case__detail__content__imgarea__desc {
  font-weight: 300;
  font-size: 1.4rem;
}
.case__effect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .case__effect {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
}
.case__effect__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 40px;
  background: linear-gradient(-14.55deg, #e7f8fd 0%, #e7f8fd 50%, #d1f1fb 50%, #d1f1fb 100%);
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .case__effect__title {
    width: 120px;
    height: 32px;
    font-size: 1.4rem;
  }
}
.case__effect__contentarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1em;
}
@media screen and (max-width: 599px) {
  .case__effect__contentarea {
    margin-left: 0;
  }
}
.case__effect__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .case__effect__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case__effect__content__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case__effect__content .case__title__h5 {
  color: #3771d7;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .case__effect__content .case__title__h5 {
    font-size: 1.5em;
  }
}
.case__effect__content__li {
  margin-bottom: 0.5em;
  padding-left: 1em;
  color: #333;
  font-size: 1.8rem;
  font-weight: 400;
  position: relative;
}
.case__effect__content__li::before {
  display: block;
  content: "";
  width: 0.25em;
  height: 0.25em;
  background-color: #333;
  position: absolute;
  top: 0.7em;
  left: 0.25em;
}
@media screen and (max-width: 599px) {
  .case__effect__content__li {
    font-size: 1.5rem;
  }
}
.case__effect__content__li:last-of-type {
  margin-bottom: 0;
}
.case__effect__content__imgarea {
  width: 260px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
@media screen and (max-width: 599px) {
  .case__effect__content__imgarea {
    margin-left: 0;
    margin-top: 10px;
  }
}
.case__point {
  display: block;
  width: 100%;
  border: 1px solid #ec6c00;
  padding: 5px;
}
.case__point__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media screen and (max-width: 599px) {
  .case__point__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5px;
  }
}
.case__point__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 190px;
  height: 40px;
  background: linear-gradient(-10.8deg, #fbe2cd 0%, #fbe2cd 50%, #f7c8a5 50%, #f7c8a5 100%);
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .case__point__title {
    width: 160px;
    height: 32px;
    font-size: 1.4rem;
  }
}
.case__point__title__icon {
  width: 24px;
  margin-right: 6px;
}
@media screen and (max-width: 599px) {
  .case__point__title__icon {
    width: 18px;
  }
}
.case__point__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
  color: #333;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .case__point__content {
    margin-left: 0;
    font-size: 1.6rem;
  }
}
.case__point__content__ul__li {
  padding-left: 1em;
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
}
.case__point__content__ul__li::before {
  display: block;
  content: "";
  width: 0.3em;
  height: 0.3em;
  background-color: #333;
  position: absolute;
  top: 0.7em;
  left: 0;
}
@media screen and (max-width: 599px) {
  .case__point__content__ul__li {
    margin-left: 0;
    font-size: 1.6rem;
  }
}

/* -------------------------------
  flow
------------------------------- */
.flow .title__h2-color--en {
  letter-spacing: 0.3em;
}
.flow__accordion {
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 30px;
}
@media screen and (max-width: 599px) {
  .flow__accordion {
    padding: 0 15px;
  }
}
.flow__accordion__box {
  display: block;
  width: 100%;
  margin-bottom: 35px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  position: relative;
}
.flow__accordion__box::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #e6e6e6 transparent transparent transparent;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.flow__accordion__box:last-of-type {
  margin-bottom: 0;
}
.flow__accordion__box:last-of-type::after {
  display: none;
}
.flow__accordion__titlearea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8f8f8;
}
.flow__accordion__titlearea__no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-right: 1px solid #ccc;
  background: linear-gradient(-45deg, #d1f1fb 0%, #d1f1fb 50%, #e7f8fd 50%, #e7f8fd 100%);
  color: #3771d7;
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .flow__accordion__titlearea__no {
    width: 32px;
    height: 32px;
    font-size: 1.8rem;
  }
}
.flow__accordion__titlearea__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.5em;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .flow__accordion__titlearea__title {
    font-size: 1.4rem;
  }
}
.flow__accordion__titlearea__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 1.5em;
  margin-left: auto;
  border: 1px solid rgba(153, 153, 153, 0.7);
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 599px) {
  .flow__accordion__titlearea__icon {
    width: 20px;
    height: 20px;
  }
}
.flow__accordion__titlearea__icon::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.flow__accordion__titlearea.stay .flow__accordion__titlearea__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.flow__accordion__titlearea.open .flow__accordion__titlearea__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.flow__accordion__titlearea.stay.open .flow__accordion__titlearea__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.flow__accordion__contentarea {
  display: none;
}
.flow__accordion__contentarea.stay {
  display: block;
}
.flow__accordion__contentarea.open {
  display: block;
}
.flow__accordion__contentarea.stay.open {
  display: block;
}
.flow__accordion__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  border-top: 1px solid #ccc;
}
.flow__accordion__content__img {
  width: 25%;
}
@media screen and (max-width: 599px) {
  .flow__accordion__content__img {
    width: 10%;
  }
}
.flow__accordion__content__img img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.flow__accordion__content__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .flow__accordion__content__desc {
    font-size: 1.4rem;
  }
}

/* -------------------------------
  faq
------------------------------- */
.faq {
  padding: 70px 0;
  background-color: #f8f8f8;
}
@media screen and (max-width: 599px) {
  .faq {
    padding: 30px 0;
  }
}
.faq .title__h2-color--en {
  letter-spacing: 0.3em;
}
.faq__accordion {
  margin: 0 20px;
}
@media screen and (max-width: 599px) {
  .faq__accordion {
    margin: 0 10px;
  }
}
.faq__accordion__box {
  width: 100%;
  margin-bottom: 2px;
  background-color: #ffffff;
}
.faq__accordion__titlearea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 10px 10px 20px;
  position: relative;
}
.faq__accordion__titlearea__qa {
  display: inline-block;
  width: 1em;
  color: #ccc;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  position: relative;
  top: -0.1em;
}
@media screen and (max-width: 599px) {
  .faq__accordion__titlearea__qa {
    font-size: 1.8rem;
  }
}
.faq__accordion__titlearea__h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.5em;
  margin-right: 2.5em;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .faq__accordion__titlearea__h3 {
    font-size: 1.6rem;
  }
}
.faq__accordion__titlearea__icon {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  position: absolute;
  top: 1.5em;
  right: 20px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.faq__accordion__titlearea.stay .faq__accordion__titlearea__icon {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.faq__accordion__titlearea.open .faq__accordion__titlearea__icon {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.faq__accordion__titlearea.stay.open .faq__accordion__titlearea__icon {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.faq__accordion__contentarea {
  display: none;
  padding: 0 10px 10px 20px;
}
.faq__accordion__contentarea.stay {
  display: block;
}
.faq__accordion__contentarea.stay.open {
  display: block;
}
.faq__accordion__contentarea.open {
  display: block;
}
.faq__accordion__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faq__accordion__content__qa {
  display: inline-block;
  width: 1em;
  color: #ccc;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  position: relative;
  top: -0.2em;
}
@media screen and (max-width: 599px) {
  .faq__accordion__content__qa {
    font-size: 1.8rem;
  }
}
.faq__accordion__content__desc {
  margin-left: 1.5em;
  padding-right: 2em;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .faq__accordion__content__desc {
    padding-right: 2.5em;
    font-size: 1.6rem;
  }
}
.faq__tellink {
  pointer-events: none;
  padding-bottom: 0.1em;
  color: #ec6c00;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 599px) {
  .faq__tellink {
    pointer-events: auto;
  }
}
.faq__tellink::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ec6c00;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 600px) {
  .faq__tellink:hover {
    opacity: 0.7;
  }
}
.faq__link {
  padding-bottom: 0.1em;
  color: #ec6c00;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.faq__link::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ec6c00;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 600px) {
  .faq__link:hover {
    opacity: 0.7;
  }
}