@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 500;
  line-height: 24px;
  -webkit-animation: fadein 1s forwards;
  animation: fadein 1s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .content {
    display: block;
  }
}
.content .sideCol {
  width: 24.4791666667vw;
}
@media screen and (max-width: 767px) {
  .content .sideCol {
    width: 100%;
  }
}
.content .mainCol {
  width: 71.3541666667vw;
  margin-left: 4.1666666667vw;
}
@media screen and (max-width: 767px) {
  .content .mainCol {
    width: 100%;
    margin-left: 0;
  }
}

img {
  width: 100%;
  height: auto;
}

h2 {
  margin-top: 100px;
  border-bottom: 2px solid #004384;
  padding-bottom: 8px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  h2 {
    margin: 32px 12.5px 24px;
    text-align: center;
  }
}
h2.animated span::before {
  -webkit-animation-name: reveal-text !important;
  animation-name: reveal-text !important;
}
h2 span {
  color: #004384;
  line-height: 1;
}
h2 span.jp {
  font-size: 48px;
  font-weight: 600;
  display: inline-block;
  position: relative;
}
h2 span.jp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-animation: na 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s forwards;
  animation: na 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s forwards;
}
h2 span.jp:after {
  content: "\a";
  white-space: pre;
}
@media screen and (max-width: 1279px) {
  h2 span.jp {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  h2 span.jp {
    font-size: 32px;
  }
}
h2 span.en {
  font-size: 24px;
  font-weight: normal;
  margin-top: 42px;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  position: relative;
}
h2 span.en:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-animation: na 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.4s forwards;
  animation: na 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.4s forwards;
}
h2 span.en:after {
  content: "\a";
  white-space: pre;
}
@media screen and (max-width: 1279px) {
  h2 span.en {
    font-size: 20px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  h2 span.en {
    font-size: 16px;
    margin-top: 16px;
  }
}

.h2__title {
  text-align: center;
  margin: 100px 0;
}
.h2__title--sub {
  display: block;
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 20px;
  margin-top: 20px;
}

.h2__Orange {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 8px solid #004384;
  margin-bottom: 80px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .h2__Orange {
    border-bottom: 5px solid #004384;
    margin-bottom: 40px;
  }
}

h3.top {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  line-height: 80px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1279px) {
  h3.top {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  h3.top {
    margin-bottom: 20px;
  }
}

.flexReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.header {
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: white;
  width: 100%;
  padding: 28px 70px 28px 57px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.header.is-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    padding: 0 0 8px;
    background: transparent;
  }
}
.header.is-show-sp {
  background: rgba(0, 0, 0, 0.35);
}

.siteName {
  width: auto;
}
@media screen and (max-width: 767px) {
  .siteName {
    width: 100%;
  }
}
.siteName img {
  max-width: 369px;
  width: 19.21875vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .siteName img {
    max-width: 120px;
    width: 100%;
  }
}

.nav__list {
  font-size: 24px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
}
.nav__list a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav__list a:hover {
  color: #004384;
}
@media screen and (max-width: 1279px) {
  .nav__list {
    font-size: 20px;
  }
}
@media screen and (max-width: 960px) {
  .nav__list {
    font-size: 16px;
  }
}
.nav__list li:not(.nav__btn) a {
  position: relative;
  padding-top: 15px;
}
.nav__list li:not(.nav__btn) a:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #004384;
  left: 0;
  right: 0;
  top: 10px;
  margin: auto;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.nav__list li:not(.nav__btn) a:hover:before {
  opacity: 1;
  top: 0;
}
@media screen and (max-width: 767px) {
  .nav li {
    margin-right: 0 !important;
  }
  .nav li.nav__btn {
    margin-top: 20px;
  }
  .nav li img {
    max-width: 254px;
  }
  .nav li:last-of-type {
    margin-bottom: 0;
    margin-top: 20px;
  }
}
.nav li:not(.nav__btn) {
  margin-right: 50px;
}
@media screen and (max-width: 1130px) {
  .nav li:not(.nav__btn) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 830px) {
  .nav li:not(.nav__btn) {
    margin-right: 10px;
  }
}
.nav__btn a {
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #F2A23A;
  border: 2px solid #F2A23A;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
}
.nav__btn a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
.nav__btn a:hover:after {
  border-color: #F2A23A;
}
@media screen and (max-width: 1279px) {
  .nav__btn a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .nav__btn a {
    font-size: 16px;
    padding: 10px 18px;
  }
}
.nav__btn a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A !important;
}
.nav__btn a:hover:after {
  background-color: #F2A23A;
}
@media screen and (max-width: 900px) {
  .nav__btn a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .nav__btn a {
    font-size: 16px;
  }
}
.nav__btn a::after {
  content: "";
  background-color: white;
  display: inline-block;
  width: 25px;
  height: 20px;
  margin: -3px 0 0 10px;
  -webkit-mask: url("../img/icon_mail.svg");
  mask: url("../img/icon_mail.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .nav__btn a::after {
    width: 20px;
    height: 16px;
    margin: -3px 0 0 5px;
  }
}
@media screen and (max-width: 1279px) {
  .nav .pc {
    display: none;
  }
}

.overlay {
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 100;
}

.hmbIcon {
  cursor: pointer;
  position: relative;
  height: 58px;
  width: 58px;
  border-radius: 3px;
  background: #004384;
  z-index: 300;
  display: none;
}
.hmbIcon span {
  background-color: white;
  height: 2px;
  left: 11px;
  position: absolute;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 35px;
}
.hmbIcon--top {
  top: 15px;
}
.hmbIcon--center {
  top: 29px;
}
.hmbIcon--bottom {
  top: 42px;
}
@media screen and (max-width: 767px) {
  .hmbIcon {
    display: block;
    height: 39px;
    width: 39px;
    border-radius: 2px;
  }
  .hmbIcon span {
    height: 2px;
    left: 5px;
    width: 28px;
  }
  .hmbIcon--top {
    top: 10px;
  }
  .hmbIcon--center {
    top: 19px;
  }
  .hmbIcon--bottom {
    top: 28px;
  }
}

.hmbMenu {
  background-color: #f3f3f3;
  overflow-y: auto;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  max-width: 600px;
  z-index: 200;
  top: 118px;
  opacity: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 1279px) {
  .hmbMenu {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .hmbMenu {
    top: 60px;
  }
}
.hmbMenu__list {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hmbMenu__item {
  width: 280px;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
}
.hmbMenu__item a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hmbMenu__item a:hover {
  color: #004384;
}
.hmbMenu__childItem {
  font-size: 14px;
  padding: 20px 0 0 16px;
  font-weight: normal;
}
.hmbMenu__childItem::before {
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  margin-right: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #004384;
  border-right: 2px solid #004384;
  color: #004384;
}

.hmbOpen .hmbMenu {
  opacity: 1;
  right: 0;
  pointer-events: all;
}
.hmbOpen .hmbIcon--top {
  top: 28px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .hmbOpen .hmbIcon--top {
    top: 19px;
  }
}
.hmbOpen .hmbIcon--center {
  display: none;
}
.hmbOpen .hmbIcon--bottom {
  top: 28px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .hmbOpen .hmbIcon--bottom {
    top: 19px;
  }
}
.hmbOpen .overlay {
  opacity: 0.8;
  visibility: visible;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.menu {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 48px;
  height: 40px;
  display: none;
  z-index: 1000;
  margin-right: 24px;
}

/*ボタン内側*/
.menu span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 4px;
  background: #fff;
  width: 100%;
  border-radius: 100px;
}

.menu span:nth-of-type(1) {
  top: 0;
}

.menu span:nth-of-type(2) {
  top: 18px;
}

.menu span:nth-of-type(3) {
  top: 36px;
}

/*activeクラスが付与されると線が回転して×に*/
.menu.active span:nth-of-type(1) {
  top: 12px;
  left: 0;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
  width: 48px;
}

.menu.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.menu.active span:nth-of-type(3) {
  top: 24px;
  left: 0;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
  width: 48px;
}

@media screen and (max-width: 767px) {
  .nav {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 67, 132, 0.9)), to(rgba(22, 119, 213, 0.9)));
    background: -webkit-linear-gradient(top, rgba(0, 67, 132, 0.9), rgba(22, 119, 213, 0.9));
    background: linear-gradient(180deg, rgba(0, 67, 132, 0.9), rgba(22, 119, 213, 0.9));
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .nav ul.is-show {
    opacity: 1;
    visibility: visible;
  }
  .nav ul li {
    font-size: 24px;
    width: 100%;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 500;
  }
  .menu {
    display: block;
  }
}
.main {
  margin-bottom: 100px;
  -webkit-animation: fadein 3s forwards;
  animation: fadein 3s forwards;
}
@media screen and (max-width: 767px) {
  .main {
    margin-bottom: 40px;
  }
}

footer {
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  -webkit-box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.16);
  box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.16);
  padding-top: 24px;
}
footer .inner {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .inner {
    display: block;
    padding: 40px 20px 50px;
  }
}
footer .inner figure {
  text-align: right;
}
@media screen and (max-width: 767px) {
  footer .inner figure {
    text-align: center;
  }
}
footer .inner figure img {
  max-width: 472px;
  width: 24.5833333333vw;
}
@media screen and (max-width: 767px) {
  footer .inner figure img {
    max-width: 254px;
    width: 70%;
  }
}
footer .inner figure figcaption p {
  text-align: right;
}
@media screen and (max-width: 767px) {
  footer .inner figure figcaption p {
    text-align: center;
  }
}
footer .inner figure figcaption p.add {
  font-size: 24px;
  margin: 0 0 24px;
  line-height: 40px;
}
@media screen and (max-width: 1279px) {
  footer .inner figure figcaption p.add {
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  footer .inner figure figcaption p.add {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
footer .inner figure figcaption p.tel {
  font-size: 32px;
}
@media screen and (max-width: 1279px) {
  footer .inner figure figcaption p.tel {
    font-size: 24px;
  }
}
footer .inner figure figcaption p.tel a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  footer .inner figure figcaption p.tel a {
    pointer-events: inherit;
  }
}
footer .inner nav {
  margin-left: 8.3333333333vw;
}
@media screen and (max-width: 1000px) {
  footer .inner nav {
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  footer .inner nav {
    margin-left: 0;
  }
}
footer .inner nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .inner nav ul li {
  width: 50%;
  font-size: 24px;
}
footer .inner nav ul li:first-of-type, footer .inner nav ul li:nth-of-type(2) {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  footer .inner nav ul li:first-of-type, footer .inner nav ul li:nth-of-type(2) {
    margin-top: 12px;
    margin-bottom: 24px;
  }
}
footer .inner nav ul li:nth-of-type(3) {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  footer .inner nav ul li:nth-of-type(3) {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1279px) {
  footer .inner nav ul li {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  footer .inner nav ul li {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  footer .inner nav ul li {
    padding-left: 3%;
    font-size: 16px;
  }
}
footer .inner nav ul li a {
  position: relative;
  padding-left: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}
footer .inner nav ul li a:hover {
  color: #004384;
}
footer .inner nav ul li a:hover::before {
  background: #fff;
}
footer .inner nav ul li a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #004384;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 100px;
  left: 0;
  border: 1px solid #004384;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .inner > p {
  min-width: 330px;
}
@media screen and (max-width: 1279px) {
  footer .inner > p {
    min-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  footer .inner > p {
    text-align: center;
    margin-top: 36px;
  }
}
footer .inner > p a {
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #F2A23A;
  border: 2px solid #F2A23A;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
}
footer .inner > p a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
footer .inner > p a:hover:after {
  border-color: #F2A23A;
}
@media screen and (max-width: 1279px) {
  footer .inner > p a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  footer .inner > p a {
    font-size: 16px;
    padding: 10px 18px;
  }
}
footer .inner > p a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A !important;
}
footer .inner > p a:hover:after {
  background-color: #F2A23A;
}
@media screen and (max-width: 900px) {
  footer .inner > p a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  footer .inner > p a {
    font-size: 16px;
  }
}
footer .inner > p a::after {
  content: "";
  background-color: white;
  display: inline-block;
  width: 25px;
  height: 20px;
  margin: -3px 0 0 10px;
  -webkit-mask: url("../img/icon_mail.svg");
  mask: url("../img/icon_mail.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  footer .inner > p a::after {
    width: 20px;
    height: 16px;
    margin: -3px 0 0 5px;
  }
}
footer .copyright {
  color: #fff;
  text-align: center;
  padding: 8px 0;
}

.breadcrumbs {
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  padding: 8px 4.1666666667%;
}
.breadcrumbs .home {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.breadcrumbs .home::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 15px;
  background: url(../img/icon_home.svg) no-repeat center/cover;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}
.breadcrumbs .home:hover {
  opacity: 0.8;
}
.breadcrumbs span {
  color: #fff;
}
.breadcrumbs a:not(.home) {
  position: relative;
  padding-left: 40px;
}
.breadcrumbs a:not(.home)::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  left: 18px;
  top: 10px;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg);
}

.fv {
  position: relative;
}
.fv__img {
  width: 100%;
}
.fv__copy {
  position: absolute;
  bottom: 8.333333333vw;
  left: 8.333333333vw;
  color: white;
}
@media screen and (max-width: 767px) {
  .fv__copy {
    top: 325px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
}
.fv__copy--main {
  font-size: 60px;
  letter-spacing: 0.15em;
  line-height: 64px;
  font-weight: bold;
  text-shadow: 3px 10px 6px rgba(0, 0, 0, 0.16);
  display: inline-block;
  position: relative;
}
.fv__copy--main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-animation: reveal-text 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s forwards;
  animation: reveal-text 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s forwards;
}
.fv__copy--main:after {
  content: "\a";
  white-space: pre;
}
@media screen and (max-width: 1279px) {
  .fv__copy--main {
    font-size: 40px;
    line-height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .fv__copy--main {
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    margin: auto;
  }
  .fv__copy--main::before, .fv__copy--main::after {
    display: none;
  }
  .fv__copy--main .fline {
    display: inline-block;
    position: relative;
    margin-bottom: 5px;
    padding-left: 1em;
  }
  .fv__copy--main .fline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
    background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-animation: reveal-text 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1s forwards;
    animation: reveal-text 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1s forwards;
  }
  .fv__copy--main .fline:after {
    content: "\a";
    white-space: pre;
  }
  .fv__copy--main .sline {
    display: inline-block;
    position: relative;
    padding-left: 1em;
  }
  .fv__copy--main .sline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
    background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-animation: reveal-text 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s forwards;
    animation: reveal-text 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.2s forwards;
  }
  .fv__copy--main .sline:after {
    content: "\a";
    white-space: pre;
  }
}
.fv__copy--sub {
  max-width: 1000px;
  margin: 25px auto 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  text-shadow: 3px 6px 6px rgba(0, 0, 0, 0.16);
  display: inline-block;
  position: relative;
}
.fv__copy--sub:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-animation: reveal-text 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.4s forwards;
  animation: reveal-text 1000ms cubic-bezier(0.645, 0.045, 0.355, 1) 1.4s forwards;
}
.fv__copy--sub:after {
  content: "\a";
  white-space: pre;
}
@media screen and (max-width: 1279px) {
  .fv__copy--sub {
    font-size: 12px;
    padding-left: 1em;
    margin-top: 12px;
  }
}
.fv__scroll {
  position: absolute;
  bottom: 74px;
  right: 84px;
  display: inline-block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
@media screen and (max-width: 1000px) {
  .fv__scroll {
    right: 4.1666666667vw;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .fv__scroll {
    display: none;
  }
}
.fv__scroll::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  left: 0;
  opacity: 1;
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  z-index: -1;
}
.fv__scroll::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  background: #fff;
  border: 1px solid #004384;
  z-index: -2;
}
.fv__scroll:hover::before {
  opacity: 0;
}
.fv__scroll a {
  display: inline-block;
  width: 200px;
  line-height: 40px;
  color: #fff;
  padding: 0 18px;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fv__scroll a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #ffffff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fv__scroll a::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 1px;
  background: #F9F9F9;
  left: 68px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: scroll 2s forwards 0s infinite;
  animation: scroll 2s forwards 0s infinite;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.fv__scroll a:hover {
  color: #004384;
}
.fv__scroll a:hover::before {
  border-color: transparent transparent transparent #004384;
}
.fv__scroll a:hover::after {
  background: #004384;
}
.fv .cnt-button {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 80px;
  width: 100%;
  text-align: center;
}
.fv .cnt-button a {
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #F2A23A;
  border: 2px solid #F2A23A;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
}
.fv .cnt-button a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
.fv .cnt-button a:hover:after {
  border-color: #F2A23A;
}
@media screen and (max-width: 1279px) {
  .fv .cnt-button a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .fv .cnt-button a {
    font-size: 16px;
    padding: 10px 18px;
  }
}
.fv .cnt-button a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A !important;
}
.fv .cnt-button a:hover:after {
  background-color: #F2A23A;
}
@media screen and (max-width: 900px) {
  .fv .cnt-button a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .fv .cnt-button a {
    font-size: 16px;
  }
}
.fv .cnt-button a::after {
  content: "";
  background-color: white;
  display: inline-block;
  width: 25px;
  height: 20px;
  margin: -3px 0 0 10px;
  -webkit-mask: url("../img/icon_mail.svg");
  mask: url("../img/icon_mail.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .fv .cnt-button a::after {
    width: 20px;
    height: 16px;
    margin: -3px 0 0 5px;
  }
}
.fv .homeHeader {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 90;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 4.1666666667vw 0 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .fv .homeHeader {
    display: none;
  }
}
.fv .homeHeader h1 img {
  width: 12.5vw;
  height: auto;
  max-width: 240px;
}
@media screen and (max-width: 767px) {
  .fv .homeHeader h1 img {
    width: 100%;
    max-width: 120px;
  }
}
.fv .homeHeader .nav__list {
  color: #fff;
}

@-webkit-keyframes reveal-text {
  100% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}

@keyframes reveal-text {
  100% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  51% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  51% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.home .business ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.home .business ul li {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .home .business ul li {
    width: 50%;
  }
}
.home .business ul li a {
  display: block;
  position: relative;
  background: #004384;
}
.home .business ul li a:hover img {
  opacity: 0.8;
}
.home .business ul li a:hover::before {
  background: none;
}
.home .business ul li a:hover::after {
  border-color: #fff;
}
.home .business ul li a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 100px;
  background: #fff;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .home .business ul li a::before {
    width: 20px;
    height: 20px;
    bottom: 10px;
    right: 10px;
  }
}
.home .business ul li a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #004384;
  border-bottom: 2px solid #004384;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 42px;
  right: 44px;
  z-index: 15;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .home .business ul li a::after {
    width: 6px;
    height: 6px;
    bottom: 17px;
    right: 18px;
  }
}
.home .business ul li a figure {
  margin: 0;
}
.home .business ul li a figure img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home .business ul li a figure figcaption {
  position: absolute;
  line-height: 1;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  left: 32px;
  bottom: 32px;
  padding-right: 80px;
}
@media screen and (max-width: 1279px) {
  .home .business ul li a figure figcaption {
    font-size: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .home .business ul li a figure figcaption {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .home .business ul li a figure figcaption {
    padding-right: 36px;
    left: 12px;
    bottom: 11px;
  }
}
.home .news {
  background: url(../img/bg_news.png) no-repeat center/cover;
  padding: 80px;
}
@media screen and (max-width: 1100px) {
  .home .news {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .home .news {
    padding: 30px;
  }
}
.home .news .inner {
  background: rgba(255, 255, 255, 0.8);
  padding: 80px 90px 55px 0;
}
@media screen and (max-width: 767px) {
  .home .news .inner {
    padding: 30px 25px 18px;
  }
}
.home .news .inner .sideCol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .home .news .inner .sideCol {
    display: block;
  }
}
.home .news .inner .sideCol h2 {
  margin-top: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .home .news .inner .sideCol h2 {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.home .news .inner .mainCol {
  width: calc(71.3541666667vw - 250px);
}
@media screen and (max-width: 767px) {
  .home .news .inner .mainCol {
    width: 100%;
  }
}
.home .news .inner .mainCol dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .home .news .inner .mainCol dl {
    display: block;
  }
}
.home .news .inner .mainCol dl dt {
  width: 100px;
  color: #004384;
  line-height: 32px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .home .news .inner .mainCol dl dt {
    width: 100%;
  }
}
.home .news .inner .mainCol dl dd {
  width: calc(100% - 100px);
  line-height: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .home .news .inner .mainCol dl dd {
    width: 100%;
    margin-bottom: 12px;
  }
}
.home .news .inner .mainCol dl dd a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.home .factory .mainCol {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 80px;
}
@media screen and (max-width: 1100px) {
  .home .factory .mainCol {
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .home .factory .mainCol {
    display: block;
    padding-right: 0;
    margin-top: 0;
  }
}
.home .factory .mainCol > div {
  width: 31.25vw;
}
@media screen and (max-width: 767px) {
  .home .factory .mainCol > div {
    width: auto;
    margin: 0 12.5px 30px;
  }
}
.home .factory .mainCol > div img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .home .factory .mainCol > div img {
    margin-bottom: 20px;
  }
}
.home .factory .mainCol > div figcaption {
  color: #004384;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .home .factory .mainCol > div figcaption {
    margin-bottom: 20px;
  }
}
.home .factory .mainCol > div figcaption span {
  display: block;
  color: #333;
  font-size: 16px;
  margin-top: 30px;
  min-height: 48px;
}
@media screen and (max-width: 1400px) {
  .home .factory .mainCol > div figcaption span {
    min-height: 96px;
  }
}
@media screen and (max-width: 767px) {
  .home .factory .mainCol > div figcaption span {
    margin-top: 20px;
    min-height: inherit;
  }
}
.home .factory .mainCol > div iframe {
  height: 250px;
}

body:not(.home) .mainCol {
  margin-top: 100px;
  padding-right: 4.1666666667vw;
}
@media screen and (max-width: 767px) {
  body:not(.home) .mainCol {
    margin: 24px 12.5px 0;
    padding-right: 0;
    width: auto;
  }
}
body:not(.home) header.is-show-sp .menu span {
  background: #fff;
}
body:not(.home) header .menu span {
  background: #333;
}

.underHeader {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 28px 4.1666666667vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .underHeader {
    padding: 28px 15px;
  }
}
@media screen and (max-width: 767px) {
  .underHeader {
    display: none;
  }
}
.underHeader h1 img {
  width: 19.1666666667vw;
  height: auto;
  max-width: 368px;
}

.eyecatch {
  height: 560px;
  background: url(../img/h1.png) no-repeat center/cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .eyecatch {
    margin-top: 122px;
    height: 260px;
  }
}
.eyecatch h1 {
  display: inline-block;
  width: 600px;
  line-height: 120px;
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .eyecatch h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .eyecatch h1 {
    max-width: 250px;
    margin: 0 auto;
    font-size: 32px;
    line-height: 80px;
  }
}
.eyecatch h1::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  top: 16px;
  left: 16px;
}
@media screen and (max-width: 767px) {
  .eyecatch h1::after {
    top: 8px;
    left: 8px;
  }
}

body.business .main {
  margin-bottom: 0;
}

body:not(.home) section.business {
  padding-bottom: 52px;
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business {
    padding-bottom: 20px;
  }
}
body:not(.home) section.business:not(:last-of-type) {
  border-bottom: 2px solid #004384;
}
body:not(.home) section.business .sideCol h3 a {
  display: block;
  position: relative;
  color: #004384;
  font-size: 32px;
  text-align: right;
  margin: 50px 0 40px;
  padding-right: 64px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body:not(.home) section.business .sideCol h3 a:hover {
  text-decoration: underline;
}
body:not(.home) section.business .sideCol h3 a:hover::before {
  background: #fff;
}
body:not(.home) section.business .sideCol h3 a:hover::after {
  border-color: #004384;
}
@media screen and (max-width: 1279px) {
  body:not(.home) section.business .sideCol h3 a {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .sideCol h3 a {
    margin: 30px 0 20px;
    font-size: 20px;
    padding-right: 56px;
  }
}
body:not(.home) section.business .sideCol h3 a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 2px solid #004384;
  border-radius: 100px;
  background: #004384;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .sideCol h3 a::before {
    width: 32px;
    height: 32px;
    right: 12.5px;
  }
}
body:not(.home) section.business .sideCol h3 a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg) translateY(-66%);
  transform: rotate(-45deg) translateY(-66%);
  top: 50%;
  right: 15px;
  z-index: 15;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .sideCol h3 a::after {
    width: 8px;
    height: 8px;
    right: 21px;
  }
}
body:not(.home) section.business .sideCol p {
  color: #004384;
  font-size: 24px;
  margin-left: 40px;
  line-height: 32px;
}
@media screen and (max-width: 1279px) {
  body:not(.home) section.business .sideCol p {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .sideCol p {
    font-size: 16px;
    margin-left: 0;
    padding: 0 12.5px 0 36px;
  }
}
body:not(.home) section.business .mainCol .box {
  padding-top: 123px;
  margin-top: -123px;
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .mainCol .box {
    padding-top: 130px;
    margin-top: -130px;
  }
}
body:not(.home) section.business .mainCol h3.business {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  background: -webkit-linear-gradient(350deg, #004384, #004384 30%, #1677D5);
  background: linear-gradient(100deg, #004384, #004384 30%, #1677D5);
  line-height: 80px;
  padding-left: 56px;
}
@media screen and (max-width: 1279px) {
  body:not(.home) section.business .mainCol h3.business {
    font-size: 24px;
    padding-left: 36px;
  }
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .mainCol h3.business {
    line-height: 1.4;
    padding: 13px 16px;
  }
}
body:not(.home) section.business .mainCol .col {
  padding: 24px 1.25vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 24px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .mainCol .col {
    display: block;
    padding: 20px 0 0;
    margin-bottom: 28px;
  }
}
body:not(.home) section.business .mainCol .col ul {
  width: 28.125vw;
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .mainCol .col ul {
    width: 100%;
    margin-bottom: 8px;
  }
}
body:not(.home) section.business .mainCol .col ul .slick-prev, body:not(.home) section.business .mainCol .col ul .slick-next {
  z-index: 100;
  width: 30px;
  height: 30px;
}
body:not(.home) section.business .mainCol .col ul .slick-prev::before, body:not(.home) section.business .mainCol .col ul .slick-next::before {
  color: #004384;
  font-size: 30px;
  opacity: 1;
}
body:not(.home) section.business .mainCol .col ul .slick-prev {
  left: 16px;
}
@media screen and (max-width: 1279px) {
  body:not(.home) section.business .mainCol .col ul .slick-prev {
    left: 10px;
  }
}
body:not(.home) section.business .mainCol .col ul .slick-next {
  right: 16px;
}
@media screen and (max-width: 1279px) {
  body:not(.home) section.business .mainCol .col ul .slick-next {
    right: 10px;
  }
}
body:not(.home) section.business .mainCol .col p {
  width: calc(35.3125vw - 30px);
  margin-left: 1.25vw;
  line-height: 1.6;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  body:not(.home) section.business .mainCol .col p {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
  }
}

body.news main {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  body.news main {
    margin-bottom: 40px;
  }
}

section.archive {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  section.archive {
    margin-top: 40px;
  }
}
section.archive .one {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  section.archive .one {
    padding: 0 12.5px;
  }
}
section.archive .one .article {
  padding-bottom: 44px;
  margin-bottom: 30px;
  border-bottom: 1px solid #BFBFBF;
}
@media screen and (max-width: 767px) {
  section.archive .one .article {
    margin: 0 12.5px 20px;
    padding: 0 0 24px;
  }
}
section.archive .one .article:last-of-type {
  margin-bottom: 80px;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  section.archive .one .article:last-of-type {
    margin-bottom: 40px;
  }
}
section.archive .one .article dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  section.archive .one .article dl {
    display: block;
  }
}
section.archive .one .article dl dt {
  width: 20%;
  color: #004384;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  section.archive .one .article dl dt {
    width: 100%;
  }
}
section.archive .one .article dl dd {
  width: 77%;
}
@media screen and (max-width: 950px) {
  section.archive .one .article dl dd {
    width: 72%;
  }
}
@media screen and (max-width: 767px) {
  section.archive .one .article dl dd {
    width: 100%;
  }
}
section.archive .one .article dl dd h3 {
  font-weight: bold;
  color: #004384;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  section.archive .one .article dl dd h3 {
    margin-bottom: 8px;
  }
}
section.archive .one .article dl dd p {
  line-height: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  section.archive .one .article dl dd p {
    margin-bottom: 12px;
  }
}
section.archive .one .article dl dd .button-box a {
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #F2A23A;
  border: 2px solid #F2A23A;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
  transition: all 0.3s;
  position: relative;
  display: block;
  margin-left: auto;
  font-size: 16px;
  max-width: 158px;
  text-align: center;
  padding: 0;
  line-height: 38px;
  background: #004384;
  border-color: #004384;
}
section.archive .one .article dl dd .button-box a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
section.archive .one .article dl dd .button-box a:hover:after {
  border-color: #F2A23A;
}
@media screen and (max-width: 1279px) {
  section.archive .one .article dl dd .button-box a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  section.archive .one .article dl dd .button-box a {
    font-size: 16px;
    padding: 10px 18px;
  }
}
@media screen and (max-width: 767px) {
  section.archive .one .article dl dd .button-box a {
    font-size: 14px;
    padding: 6px 5px;
  }
}
section.archive .one .article dl dd .button-box a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
section.archive .one .article dl dd .button-box a:hover:after {
  border-color: #F2A23A;
}
section.archive .one .article dl dd .button-box a:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  right: 10%;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-75%);
  transform: rotate(45deg) translateY(-75%);
  border-top: 2px solid white;
  border-right: 2px solid white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  section.archive .one .article dl dd .button-box a {
    width: 130px;
    font-size: 14px;
    padding: 2px 10px;
  }
  section.archive .one .article dl dd .button-box a:after {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    margin-left: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
}
section.archive .one .article dl dd .button-box a:hover {
  border-color: #004384;
  color: #004384;
}
section.archive .one .article dl dd .button-box a:hover:after {
  border-color: #004384;
}
section.archive .one .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section.archive .one .page-numbers li {
  font-size: 24px;
  color: #004384;
  font-weight: bold;
  margin-right: 24px;
  font-family: "Montserrat", sans-serif;
}
section.archive .one .page-numbers li:last-of-type {
  margin-right: 0;
}
section.archive .one .page-numbers li .current {
  text-decoration: underline;
}
section.archive .one .page-numbers li .next,
section.archive .one .page-numbers li .prev {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
}
section.archive .one .page-numbers li a {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
section.archive .one .page-numbers li a:hover {
  color: #ccc;
  text-decoration: underline;
}

body.company main > section {
  padding-bottom: 100px;
  border-bottom: 2px solid #004384;
}
@media screen and (max-width: 767px) {
  body.company main > section {
    padding-bottom: 40px;
  }
}
body.company main > section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
body.company .buttons {
  margin: 80px 0 80px 28.6458333333vw;
  width: calc(71.3541666667vw - 17px);
}
@media screen and (max-width: 1370px) {
  body.company .buttons {
    padding-right: 4.1666666667vw;
  }
}
@media screen and (max-width: 767px) {
  body.company .buttons {
    margin: 40px 0;
    width: 100%;
    padding-right: 0;
  }
}
body.company .buttons ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 920px;
}
@media screen and (max-width: 767px) {
  body.company .buttons ul {
    display: block;
  }
}
body.company .buttons ul li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.company .buttons ul li {
    margin-bottom: 12px;
  }
  body.company .buttons ul li:last-of-type {
    margin-bottom: 0;
  }
}
body.company .buttons ul li a {
  display: block;
  width: 92%;
  margin: auto;
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #F2A23A;
  border: 2px solid #F2A23A;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
  transition: all 0.3s;
  max-width: 280px;
  line-height: 60px;
  padding: 0;
  background-color: #fff;
  border-color: #004384;
  color: #004384;
  text-align: center;
}
body.company .buttons ul li a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
body.company .buttons ul li a:hover:after {
  border-color: #F2A23A;
}
@media screen and (max-width: 1279px) {
  body.company .buttons ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body.company .buttons ul li a {
    font-size: 16px;
    padding: 10px 18px;
  }
}
@media screen and (max-width: 767px) {
  body.company .buttons ul li a {
    font-size: 14px;
    padding: 6px 5px;
  }
}
body.company .buttons ul li a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
body.company .buttons ul li a:hover:after {
  border-color: #F2A23A;
}
body.company .buttons ul li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 5%;
  top: 50%;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(135deg) translateY(100%);
  transform: rotate(135deg) translateY(100%);
  border-top: 2px solid #004384;
  border-right: 2px solid #004384;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  body.company .buttons ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body.company .buttons ul li a {
    line-height: 30px;
  }
}
body.company .buttons ul li a:hover {
  background-color: #004384;
  color: #fff;
  border-color: #004384;
}
body.company .buttons ul li a:hover:after {
  border-color: #fff;
}
body.company .profile .sideCol h2 {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  body.company .profile .sideCol h2 {
    margin-top: 40px;
  }
}
body.company .profile .mainCol {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol {
    margin-top: 40px;
  }
}
body.company .profile .mainCol .text {
  line-height: 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .text {
    margin-bottom: 24px;
    min-height: inherit;
  }
}
body.company .profile .mainCol .overview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .overview {
    font-size: 20px;
  }
}
body.company .profile .mainCol .overview dt {
  width: 200px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .overview dt {
    width: 100px;
  }
}
body.company .profile .mainCol .overview dd {
  width: calc(100% - 200px);
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .overview dd {
    width: calc(100% - 100px);
  }
}
body.company .profile .mainCol .sub {
  line-height: 1.8;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .sub {
    font-size: 20px;
  }
}
body.company .profile .mainCol .history {
  margin-bottom: 45px;
}
body.company .profile .mainCol .history ul {
  position: relative;
}
body.company .profile .mainCol .history ul::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 100%;
  border-left: 1px solid #BFBFBF;
  top: 0;
  left: 75px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .history ul::after {
    left: 50px;
  }
}
body.company .profile .mainCol .history ul li {
  margin-bottom: 48px;
}
body.company .profile .mainCol .history ul li:last-of-type {
  margin-bottom: 0;
}
body.company .profile .mainCol .history ul li dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
body.company .profile .mainCol .history ul li dl dt {
  width: 150px;
  height: 150px;
  background: #fff;
  border: 2px solid #004384;
  border-radius: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: #004384;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .history ul li dl dt {
    width: 100px;
    height: 100px;
    font-size: 24px;
  }
}
body.company .profile .mainCol .history ul li dl dd {
  font-size: 24px;
  font-weight: 500;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .history ul li dl dd {
    width: calc(100% - 100px - 24px);
    font-size: 20px;
  }
}
body.company .profile .mainCol .picture .slick-arrow {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background-color: #fff;
  z-index: 100;
}
body.company .profile .mainCol .picture .slick-arrow.slick-prev {
  left: 16px;
  z-index: 10;
}
body.company .profile .mainCol .picture .slick-arrow.slick-prev::after {
  -webkit-transform: rotate(135deg) translate(-10%, 50%);
  transform: rotate(135deg) translate(-10%, 50%);
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .picture .slick-arrow.slick-prev {
    left: 8px;
  }
}
body.company .profile .mainCol .picture .slick-arrow.slick-next {
  right: 32px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .picture .slick-arrow.slick-next {
    right: 8px;
  }
}
body.company .profile .mainCol .picture .slick-arrow::before {
  display: none;
}
body.company .profile .mainCol .picture .slick-arrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #004384;
  border-bottom: 2px solid #004384;
  -webkit-transform: rotate(-45deg) translate(-20%, -80%);
  transform: rotate(-45deg) translate(-20%, -80%);
  z-index: 110;
  top: 50%;
  left: 50%;
}
body.company .profile .mainCol .picture li {
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  body.company .profile .mainCol .picture li {
    margin-right: 0;
  }
}
body.company .box {
  max-width: 920px;
  margin-right: auto;
}
body.company .president .text {
  line-height: 2;
  font-size: 20px;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  body.company .president .text {
    font-size: 16px;
  }
}
body.company .president .text.right {
  margin-bottom: 0;
  text-align: right;
}
body.company .factory .text {
  line-height: 32px;
  margin-bottom: 32px;
}
body.company .factory .yokohama {
  margin-bottom: 80px;
}
body.company .factory #yokohama,
body.company .factory #tochigi {
  padding-top: 123px;
  margin-top: -123px;
}
@media screen and (max-width: 767px) {
  body.company .factory #yokohama,
  body.company .factory #tochigi {
    padding-top: 130px;
    margin-top: -130px;
  }
}
body.company .factory figcaption {
  color: #004384;
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0;
}
body.company .factory figcaption a {
  display: inline-block;
  margin-top: 10px;
  font-size: 20px;
  color: #333;
}
body.company .factory figcaption span {
  display: block;
  color: #333;
  font-size: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  body.company .factory iframe {
    height: 250px;
  }
}

body.recruit .note {
  margin-bottom: 60px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  body.recruit .note {
    font-size: 24px;
  }
}
body.recruit .overview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.recruit .overview {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
body.recruit .overview dt {
  width: 200px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  body.recruit .overview dt {
    width: 100px;
    padding-right: 10px;
  }
}
body.recruit .overview dd {
  width: calc(100% - 200px);
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  body.recruit .overview dd {
    width: calc(100% - 100px);
  }
}
body.recruit .overview dd ul {
  list-style-type: disc;
  padding-left: 1em;
}
body.recruit .overview dd.contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  body.recruit .overview dd.contact {
    display: block;
  }
}
body.recruit .overview dd.contact p {
  width: 47%;
}
@media screen and (max-width: 1200px) {
  body.recruit .overview dd.contact p {
    width: 100%;
  }
  body.recruit .overview dd.contact p + p {
    margin-top: 20px;
  }
}
body.recruit .btn {
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.recruit .btn {
    margin-bottom: 50px;
  }
}
body.recruit .btn a {
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #F2A23A;
  border: 2px solid #F2A23A;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
  font-size: 20px !important;
}
body.recruit .btn a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
body.recruit .btn a:hover:after {
  border-color: #F2A23A;
}
@media screen and (max-width: 1279px) {
  body.recruit .btn a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body.recruit .btn a {
    font-size: 16px;
    padding: 10px 18px;
  }
}
body.recruit .btn a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A !important;
}
body.recruit .btn a:hover:after {
  background-color: #F2A23A;
}
@media screen and (max-width: 900px) {
  body.recruit .btn a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body.recruit .btn a {
    font-size: 16px;
  }
}
body.recruit .btn a::after {
  content: "";
  background-color: white;
  display: inline-block;
  width: 25px;
  height: 20px;
  margin: -3px 0 0 10px;
  -webkit-mask: url("../img/icon_mail.svg");
  mask: url("../img/icon_mail.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  body.recruit .btn a::after {
    width: 20px;
    height: 16px;
    margin: -3px 0 0 5px;
  }
}
@media screen and (max-width: 767px) {
  body.recruit .btn a {
    font-size: 18px !important;
  }
}
body.recruit .picture {
  margin-bottom: 50px;
  display: none;
}
body.recruit .picture .slick-arrow {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background-color: #fff;
  z-index: 100;
}
body.recruit .picture .slick-arrow.slick-prev {
  left: 16px;
  z-index: 10;
}
body.recruit .picture .slick-arrow.slick-prev::after {
  -webkit-transform: rotate(135deg) translate(-10%, 50%);
  transform: rotate(135deg) translate(-10%, 50%);
}
@media screen and (max-width: 767px) {
  body.recruit .picture .slick-arrow.slick-prev {
    left: 8px;
  }
}
body.recruit .picture .slick-arrow.slick-next {
  right: 32px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  body.recruit .picture .slick-arrow.slick-next {
    right: 8px;
  }
}
body.recruit .picture .slick-arrow::before {
  display: none;
}
body.recruit .picture .slick-arrow::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #004384;
  border-bottom: 2px solid #004384;
  -webkit-transform: rotate(-45deg) translate(-20%, -80%);
  transform: rotate(-45deg) translate(-20%, -80%);
  z-index: 110;
  top: 50%;
  left: 50%;
}
body.recruit .picture li {
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  body.recruit .picture li {
    margin-right: 0;
  }
}

.single .one {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .single .one {
    margin-left: 12.5px;
    margin-right: 12.5px;
  }
}
.single .one h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #004384;
  border: none;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .single .one h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 32px;
    margin-left: 0;
    margin-right: 0;
  }
}
.single .one h2::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 470px;
  border-bottom: 2px solid #004384;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .single .one h2::before {
    width: 80%;
  }
}
.single .one h2 span {
  display: block;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .single .one h2 span {
    font-size: 16px;
    margin-top: 16px;
  }
}
.single .one p {
  line-height: 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .single .one p {
    margin: 0 auto 24px;
  }
}
.single .one figure {
  max-width: 540px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .single .one figure {
    margin: 0 auto 24px;
  }
}
.single .one .arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .single .one .arrows {
    margin-top: 40px;
  }
}
.single .one .arrows a {
  font-size: 24px;
  color: #004384;
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding: 0 30px;
  display: block;
}
.single .one .arrows a:hover {
  text-decoration: underline;
}
.single .one .arrows a::before {
  position: absolute;
  display: inline-block;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.single .one .arrows a + a:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 24px;
  background: #004384;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.single .one .arrows a[rel=prev] {
  padding-left: 44px;
}
.single .one .arrows a[rel=prev]::before {
  content: "〈";
  left: 0;
}
.single .one .arrows a[rel=next] {
  padding-right: 44px;
}
.single .one .arrows a[rel=next]::before {
  content: "〉";
  right: 0;
}

@media screen and (max-width: 767px) {
  body.nf .breadcrumbs {
    margin-top: 130px;
  }
}

main.nf {
  max-width: 1000px;
  margin: auto;
  width: 90%;
}
main.nf h2 {
  font-size: 60px;
  font-weight: bold;
  text-align: left;
  color: #004384;
  line-height: 1.4;
  padding-bottom: 16px;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  main.nf h2 {
    font-size: 36px;
    line-height: 1.7;
  }
}
main.nf h2 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  main.nf h2 span {
    font-size: 20px;
  }
}
main.nf p {
  line-height: 2;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  main.nf p {
    margin-bottom: 60px;
  }
}

body.contact main,
body.contact_recruit main,
body.contact_thanks main,
body.contact_recruit_thanks main {
  margin: 100px auto 80px;
  max-width: 1000px;
}
@media screen and (max-width: 1100px) {
  body.contact main,
  body.contact_recruit main,
  body.contact_thanks main,
  body.contact_recruit_thanks main {
    padding: 0 12.5px;
  }
}
@media screen and (max-width: 767px) {
  body.contact main,
  body.contact_recruit main,
  body.contact_thanks main,
  body.contact_recruit_thanks main {
    margin: 40px auto;
    padding: 0 12.5px;
  }
}
body.contact main a[href^="tel:"],
body.contact_recruit main a[href^="tel:"],
body.contact_thanks main a[href^="tel:"],
body.contact_recruit_thanks main a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  body.contact main a[href^="tel:"],
  body.contact_recruit main a[href^="tel:"],
  body.contact_thanks main a[href^="tel:"],
  body.contact_recruit_thanks main a[href^="tel:"] {
    pointer-events: inherit;
  }
}
body.contact .eyecatch h1,
body.contact_recruit .eyecatch h1,
body.contact_thanks .eyecatch h1,
body.contact_recruit_thanks .eyecatch h1 {
  font-size: 44px;
}
@media screen and (max-width: 767px) {
  body.contact .eyecatch h1,
  body.contact_recruit .eyecatch h1,
  body.contact_thanks .eyecatch h1,
  body.contact_recruit_thanks .eyecatch h1 {
    max-width: 220px;
    font-size: 32px;
    line-height: 50px;
    padding: 10px;
  }
}

.contact__phonesection {
  margin: 30px auto 90px auto;
}
@media screen and (max-width: 767px) {
  .contact__phonesection {
    margin: 0 auto 30px;
  }
}

.contact__phonesection p {
  margin-bottom: 16px;
}

.contact__phonesection--phonenumber {
  font-weight: bold;
  font-size: 20.8px;
  margin-bottom: 6px;
}

.contact__formSection dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact__formSection dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
    margin-bottom: 30px;
  }
}

.contact__formSection dl dt {
  width: 30%;
  font-weight: bold;
  font-size: 16px;
  padding: 0 12px;
}
@media screen and (max-width: 767px) {
  .contact__formSection dl dt {
    width: 100%;
    margin-bottom: 8px;
    padding: 0;
  }
}

.contact__formSection input,
.contact__formSection select,
.contact__formSection textarea {
  border: 1px solid #333;
  font-size: 100%;
}

.contact__formSection dl dd {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .contact__formSection dl dd {
    width: 100%;
  }
}

.contact__formSection dd input {
  width: 100%;
  height: 50px;
  padding: 15px 25px;
}

.contact__formSection textarea {
  width: 100%;
  min-height: 200px;
  height: 100%;
  resize: vertical;
  padding: 15px 25px;
}

.submit_aria button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #F2A23A;
  border: 2px solid #F2A23A;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
  transition: all 0.3s;
  width: 280px;
  text-align: center;
  position: relative;
}
.submit_aria button:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
.submit_aria button:hover:after {
  border-color: #F2A23A;
}
@media screen and (max-width: 1279px) {
  .submit_aria button {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .submit_aria button {
    font-size: 16px;
    padding: 10px 18px;
  }
}
@media screen and (max-width: 767px) {
  .submit_aria button {
    font-size: 14px;
    padding: 6px 5px;
  }
}
.submit_aria button:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
.submit_aria button:hover:after {
  border-color: #F2A23A;
}
.submit_aria button:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  right: 10%;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-75%);
  transform: rotate(45deg) translateY(-75%);
  border-top: 2px solid white;
  border-right: 2px solid white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .submit_aria button {
    width: 130px;
    font-size: 14px;
    padding: 2px 10px;
  }
  .submit_aria button:after {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    margin-left: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
}
.submit_aria button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .submit_aria button::after {
    top: 60%;
  }
}
.submit_aria button input {
  border: none;
}

/* ----
.submit_aria input,
.submit_aria button{
    @include btn_round;
    transition: all 0.3s;
    width: 280px;
    text-align: center;
}

.submit_aria input:hover,
.submit_aria button:hover{
    @include hoverBtn;
}

.submit_aria input{
    margin-right: 24px;
}
*/
/*プライバシーポリシーチェック*/
.policy_check {
  text-align: center;
  font-size: 16px;
  margin-bottom: 60px;
}

/* 元々のチェックボックス（非表示） */
.policy_check input[type=checkbox] {
  display: none;
}

/* チェックボックスの代わりを成すラベル */
.policy_check input[type=checkbox] + span {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}

/* ラベルの左に表示させる正方形のボックス□ */
.policy_check input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color: #585753; /* 枠の色変更 お好きな色を */
  background-color: #FFF; /* 背景の色変更 お好きな色を */
}

/* チェックが入った時のレ点 */
.policy_check input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -9px;
  top: 50%;
  left: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #333; /* チェックの色変更 お好きな色を */
}

/*セレクトボックスカスタム*/
.contact__formSection dd select {
  width: 100%;
  height: 50px;
  padding: 15px 25px;
}

.contact_select {
  position: relative;
  z-index: 1;
}

.contact_select .icon {
  position: absolute;
  z-index: 2;
  right: 1px;
  top: 1px;
  background: #fff;
  width: 50px;
  height: calc(100% - 2px);
  pointer-events: none;
}

.contact_select .icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
}

.mwform-checkbox-field-text {
  text-indent: -9999px;
}

.pp {
  margin: 80px 0 0;
}
.pp h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #004384;
  margin-bottom: 40px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .pp h2 {
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
}
.pp h3 {
  font-weight: bold;
  color: #004384;
  margin-bottom: 8px;
  font-size: 20px;
}
.pp p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .pp p {
    margin-bottom: 24px;
    word-break: break-all;
  }
}
.pp ul {
  list-style: disc;
  margin-bottom: 40px;
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  .pp ul {
    margin-bottom: 24px;
  }
}
.pp p + ul {
  margin-top: -30px;
}

.mwform-tel-field input[type=text], .mwform-zip-field input[type=text] {
  width: calc(33.33333% - 11px) !important;
}

.contact_thanks .contact_thanks_message {
  margin: 100px auto 90px auto;
  text-align: center;
  font-size: 16px;
  line-height: 2;
}

.contact_thanks .contact_thanks_message h3 {
  font-weight: bold;
  font-size: 1.75em;
  margin-bottom: 24px;
}

.contact_thanks .contact_thanks_message p {
  margin-bottom: 18px;
}

.contact_thanks .contact_thanks_message a {
  display: block;
  width: 280px;
  margin: auto;
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: #F2A23A;
  border: 2px solid #F2A23A;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 33px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
}
.contact_thanks .contact_thanks_message a:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
.contact_thanks .contact_thanks_message a:hover:after {
  border-color: #F2A23A;
}
@media screen and (max-width: 1279px) {
  .contact_thanks .contact_thanks_message a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact_thanks .contact_thanks_message a {
    font-size: 16px;
    padding: 10px 18px;
  }
}
@media screen and (max-width: 767px) {
  .contact_thanks .contact_thanks_message a {
    font-size: 14px;
    padding: 6px 5px;
  }
}
.contact_thanks .contact_thanks_message a a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_thanks .contact_thanks_message a a:hover {
  color: #004384;
}

.contact_thanks .contact_thanks_message a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_thanks .contact_thanks_message a:hover:hover {
  background: white;
  border: 2px solid #F2A23A;
  color: #F2A23A;
}
.contact_thanks .contact_thanks_message a:hover:hover:after {
  border-color: #F2A23A;
}

.contact_thanks .contact__phonesection {
  margin: 0 auto;
  text-align: center;
}

.contact_thanks .contact__phonesection p {
  margin-bottom: 6px;
}

.privacypolicy {
  width: 96%;
  max-width: 1000px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1279px) {
  .privacypolicy {
    margin: 40px auto 0;
  }
}
.privacypolicy p {
  margin-bottom: 20px;
}
.privacypolicy ol {
  list-style-type: decimal;
  margin-left: 1em;
}
.privacypolicy li {
  margin-bottom: 20px;
}
.privacypolicy li:last-child {
  margin-bottom: 0;
}