@charset "UTF-8";
/* ==============================
  common.scss
================================= */
/*---------------------------------------------------------
  全ページ共通スタイル
---------------------------------------------------------*/
* {
  box-sizing: border-box;
}

@media screen and (max-width: 810px) {
  body,
html {
    min-width: 0;
  }
}

/* 要素設定*/
body {
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  font-stretch: 95%;
  line-height: 1.75;
  color: #000;
  text-align: justify;
  font-weight: 300;
}

body.android {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

button,
a {
  color: #000;
}

.main {
  padding-top: 110px;
}

body.home #pageTop {
  padding-top: 0;
}

.wrapper {
  position: relative;
}

@media screen and (max-width: 480px) {
  .main {
    padding-top: 80px;
  }
  body.home #pageTop {
    padding-top: 0;
  }
}
#pageHeader,
#pageTop,
#pageFooter {
  opacity: 0;
  transition: all 0.5s;
}

#pageHeader.visible,
#pageTop.visible,
#pageFooter.visible {
  opacity: 1;
}

.en {
  font-family: poppins, sans-serif;
}

/* responsive */
.sp-inline,
.sp-block {
  display: none !important;
}

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

  .sp-inline {
    display: inline;
  }

  .sp-block {
    display: block !important;
  }
}
/* button */
.link-btn01 a,
.link-return a {
  position: relative;
  z-index: 10;
  width: 220px;
  height: 70px;
  line-height: 70px;
  display: block;
  background-color: #fff;
  border: 1px solid #1e59a8;
  border-radius: 4px;
  text-align: center;
  border-radius: 4px;
  color: #1e59a8;
  transition: all 0.5s;
}
.link-btn01 a .text,
.link-return a .text {
  position: relative;
  display: inline-block;
  z-index: 10;
}
.link-btn01 a::before,
.link-return a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: #1e5daa;
  background: linear-gradient(90deg, #1e5daa 0%, #1d2f8d 100%);
  opacity: 0;
  transition: all 0.5s;
}
.link-btn01 a:hover,
.link-return a:hover {
  background: #1e5daa;
  background: linear-gradient(90deg, #1e5daa 0%, #1d2f8d 100%);
  color: #fff;
}
.link-btn01 a:hover::before,
.link-return a:hover::before {
  opacity: 1;
}
.link-btn01 a:hover .text::after,
.link-return a:hover .text::after {
  transform: translateX(5px);
}

.link-btn01 a .text {
  padding-right: 55px;
}
.link-btn01 a .text::after {
  width: 30px;
  height: 10px;
  background-image: url(../img/common/icon_arrow_blue.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: 0;
  transition: all 0.5s;
}
.link-btn01 a:hover .text::after {
  background-image: url(../img/common/icon_arrow_white.svg);
}

.link-return a .text {
  padding-left: 55px;
}
.link-return a .text::before {
  width: 30px;
  height: 10px;
  background-image: url(../img/common/icon_arrow_blue_left.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
  transition: all 0.5s;
}
.link-return a:hover .text::before {
  background-image: url(../img/common/icon_arrow_white_left.svg);
}

.single-page__nav .link-return a {
  margin-right: auto;
  margin-left: auto;
}

/*---------------------------------------------------------
  header
---------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px 0;
  z-index: 20;
  background-color: #fff;
}

.header-inner {
  max-width: 100%;
  padding: 20px 100px 20px 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.header-inner > * {
  align-self: center;
}

.header.float {
  filter: drop-shadow(0px 2px 5px rgba(90, 90, 90, 0.3));
}
.header.float .header-inner {
  padding: 10px 100px 10px 30px;
}

.header__logo .logo img {
  width: 268px;
  height: 63px;
}

@media screen and (max-width: 1100px) {
  .header-inner {
    padding: 20px 80px 20px 20px;
  }

  .header.float .header-inner {
    padding: 10px 80px 10px 20px;
  }

  .header__logo .logo img {
    width: 214.4px;
    height: 50.4px;
  }
}
@media screen and (max-width: 480px) {
  .header-inner {
    padding: 4vw 0px 4vw 4vw;
  }

  .header__logo .logo img {
    width: 187.6px;
    height: 44.1px;
  }
}
/*---------------------------------------------------------
  hamburger
---------------------------------------------------------*/
.c-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.p-hamburger {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin: auto;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 960px) {
  .p-hamburger {
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-hamburger {
    right: 4vw;
  }
}
.p-hamburger:hover,
.p-hamburger:focus {
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
}

.p-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background-color: #333;
  transition: inherit;
}

.p-hamburger__line::before,
.p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 40px;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: inherit;
  right: 0;
}

.p-hamburger__line::before {
  top: -10px;
}

.p-hamburger__line::after {
  top: 10px;
}

.p-hamburger:hover .p-hamburger__line::before,
.p-hamburger:focus .p-hamburger__line::before {
  top: -8px;
}
.p-hamburger:hover .p-hamburger__line::after,
.p-hamburger:focus .p-hamburger__line::after {
  top: 8px;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line {
  background-color: transparent;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  top: 0;
  background-color: #333;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::before {
  transform: rotate(45deg);
}

.p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  transform: rotate(-45deg);
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

/*---------------------------------------------------------
  header menu
---------------------------------------------------------*/
.header__nav {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 9;
  width: 100%;
  max-width: 800px;
  height: 100vh;
  overflow-y: auto;
  background-color: #fff;
  transform: translateX(100%);
  transition: 0.5s all;
}

.is-drawerActive .header__nav {
  transform: translateX(0);
}

.header__inner {
  background: #fff;
  width: 100%;
  height: auto;
}

.header__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  overflow-y: scroll;
  padding: 170px 65px 80px;
}

@media screen and (max-width: 810px) {
  .header__nav {
    max-width: none;
  }

  .header__nav__list {
    padding: 70px 8vw 60px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .header__nav__list .contact-btn {
    width: 100%;
  }
}
.header__nav__list-item {
  border-bottom: 1px solid #e5e9f0;
}
.header__nav__list-item .jp {
  font-size: 22px;
}
.header__nav__list-item .en {
  margin-top: 5px;
  display: block;
  font-family: poppins, sans-serif;
  font-size: 13px;
  color: #1e59a8;
}
.header__nav__list-item a {
  transition: all 0.5s;
  display: block;
}
.header__nav__list-item a:hover {
  color: #1e59a8;
  background-color: #e8eef6;
}
.header__nav__list-item > a {
  padding: 35px 15px;
}
.header__nav__list-item .s {
  font-size: 16px;
}
.header__nav__list-item.item01, .header__nav__list-item.item02, .header__nav__list-item.item03, .header__nav__list-item.item04 {
  width: 100%;
}
.header__nav__list-item.item05, .header__nav__list-item.item06, .header__nav__list-item.item07, .header__nav__list-item.item08, .header__nav__list-item.item09 {
  width: 48%;
}
.header__nav__list-item.item04 .item-wrapper {
  display: flex;
}
.header__nav__list-item.item04 .item-wrapper > a {
  padding: 35px 15px;
}
.header__nav__list-item.item04 .parent {
  white-space: nowrap;
  position: relative;
  margin-right: 135px;
}
.header__nav__list-item.item04 .parent::after {
  content: "";
  width: 78px;
  height: 1px;
  background-color: #1e59a8;
  position: absolute;
  top: 75px;
  right: -99px;
}
.header__nav__list-item.item04 .child_list {
  display: flex;
  flex-wrap: wrap;
  padding: 35px 0;
}
.header__nav__list-item.item04 .child_list li {
  width: 50%;
  font-size: 14px;
  line-height: 2.5;
}
.header__nav__list-item.item04 .child_list li a {
  padding-left: 15px;
}
.header__nav__list-item.item08 .sp {
  display: none;
}

@media screen and (max-width: 810px) {
  .header__nav__list-item > a {
    padding: 15px 15px;
  }
  .header__nav__list-item.item05, .header__nav__list-item.item06, .header__nav__list-item.item07, .header__nav__list-item.item08, .header__nav__list-item.item09 {
    width: 100%;
  }
  .header__nav__list-item.item04 .item-wrapper {
    flex-wrap: wrap;
  }
  .header__nav__list-item.item04 .item-wrapper > a {
    padding: 15px 15px;
  }
  .header__nav__list-item.item04 .parent {
    width: 100%;
    margin-right: 0px;
  }
  .header__nav__list-item.item04 .parent::after {
    display: none;
  }
  .header__nav__list-item.item04 .child_list {
    width: 100%;
    padding: 0 0 15px;
  }
  .header__nav__list-item.item04 .child_list li a {
    padding-left: 0px;
  }
  .header__nav__list-item.item01 {
    order: 1;
  }
  .header__nav__list-item.item02 {
    order: 2;
  }
  .header__nav__list-item.item03 {
    order: 3;
  }
  .header__nav__list-item.item04 {
    order: 4;
  }
  .header__nav__list-item.item05 {
    order: 5;
  }
  .header__nav__list-item.item06 {
    order: 7;
    border-bottom: none;
  }
  .header__nav__list-item.item07 {
    order: 6;
  }
  .header__nav__list-item.item08 {
    order: 8;
    border-bottom: none;
    padding-top: 0;
  }
  .header__nav__list-item.item08 .pc {
    display: none;
  }
  .header__nav__list-item.item08 .sp {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .header__nav__list-item.item08 .contact-btn {
    padding: 0;
  }
  .header__nav__list-item.item09 {
    order: 8;
  }
}
@media screen and (max-width: 480px) {
  .header__nav__list-item > a {
    padding: 20px 0;
  }
  .header__nav__list-item .jp {
    font-size: 20px;
    line-height: 1;
  }
  .header__nav__list-item .en {
    margin-top: 0px;
    font-size: 10px;
  }
  .header__nav__list-item.item04 .item-wrapper > a {
    padding: 20px 0;
  }
  .header__nav__list-item.item04 .child_list {
    display: flex;
    flex-wrap: wrap;
  }
  .header__nav__list-item.item04 .child_list li {
    line-height: 2;
  }
  .header__nav__list-item.item08 {
    padding-top: 20px;
  }

  .s {
    font-size: 12px;
  }
}
/* navigation : on pc  */
.header__link__list {
  display: flex;
}
.header__link__list .list-item a {
  position: relative;
  line-height: 1;
  padding: 8px 0;
}
.header__link__list .list-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1e59a8;
  transform-origin: left;
  transform: scaleX(0);
  transition: all 0.3s ease;
}
.header__link__list .list-item a:hover {
  color: #1e59a8;
}
.header__link__list .list-item a:hover::after {
  transform: scaleX(1);
}
.header__link__list .list-item.current a {
  color: #1e59a8;
}
.header__link__list .list-item.current a::after {
  transform: scaleX(1);
}
.header__link__list .list-item, .header__link__list .contact {
  margin-left: 60px;
  align-self: center;
}

.contact-btn {
  width: 200px;
  height: 70px;
  line-height: 70px;
  opacity: 1;
  transition: all 0.5s;
  display: block;
  background: #1e5daa;
  background: linear-gradient(90deg, #1e5daa 0%, #1d2f8d 100%);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
  z-index: 10;
}
.contact-btn::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: #fff;
  border: 1px solid #1e59a8;
  border-radius: 4px;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.5s;
}
.contact-btn .text {
  position: relative;
  z-index: 10;
}
.contact-btn .text::before {
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact-btn:hover::before {
  opacity: 1;
}
.contact-btn:hover .text {
  color: #1e59a8;
}
.contact-btn:hover .text::before {
  background-image: url(../img/common/icon_mail_blue.svg);
}
.contact-btn .text {
  padding-left: 30px;
}
.contact-btn .text::before {
  width: 18px;
  height: 15px;
}

@media screen and (max-width: 1260px) {
  .header__link__list .list-item, .header__link__list .contact {
    margin-left: 3vw;
  }
}
@media screen and (max-width: 1100px) {
  .header__link__list .list-item {
    font-size: 14px;
  }
  .header__link__list .list-item, .header__link__list .contact {
    margin-left: 2vw;
  }
  .header__link__list .contact-btn {
    width: 160px;
    height: 50px;
    line-height: 50px;
  }
  .header__link__list .contact-btn .text {
    padding-left: 28px;
    font-size: 14px;
  }
  .header__link__list .contact-btn .text::before {
    width: 16.2px;
    height: 13.5px;
  }
}
@media screen and (max-width: 960px) {
  .header__link__list .list-item, .header__link__list .contact {
    margin-left: 1vw;
  }
  .header__link__list .contact-btn {
    width: 140px;
  }
}
@media screen and (max-width: 810px) {
  .header__link {
    display: none;
  }
}
/*---------------------------------------------------------
  footer
---------------------------------------------------------*/
.footer {
  width: 100%;
  line-height: 1;
  background-color: #38425d;
  color: #fff;
  text-align: center;
  font-weight: 300;
}

/* sitemap */
.footer__sitemap__area {
  padding: 110px 4vw 95px;
  border-bottom: 2px solid #28334f;
}

.footer__sitemap {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 810px) {
  .footer__sitemap__area {
    padding: 0px 0 0px;
  }

  .footer__sitemap {
    max-width: 810px;
    flex-wrap: wrap;
  }
}
.footer__sitemap__list {
  text-align: left;
}
.footer__sitemap__list.list01 {
  width: 30%;
}
.footer__sitemap__list.list02 {
  width: 50%;
}
.footer__sitemap__list.list03 {
  width: 12%;
  text-align: right;
}
.footer__sitemap__list .list-item {
  font-size: 18px;
  line-height: 3.5;
}
.footer__sitemap__list .list-item.item04 {
  display: flex;
  justify-content: left;
}
.footer__sitemap__list .list-item.item04 .parent {
  position: relative;
  margin-right: 90px;
}
.footer__sitemap__list .list-item.item04 .parent::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 32px;
  right: -65px;
}
.footer__sitemap__list .list-item.item04 .child-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 12px;
}
.footer__sitemap__list .list-item.item04 .child-list li {
  width: 50%;
  font-size: 14px;
  line-height: 2.8;
}
.footer__sitemap__list .list-item a {
  white-space: nowrap;
  color: #fff;
}
.footer__sitemap__list .list-item a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1260px) {
  .footer__sitemap__list.list02 {
    width: 55%;
  }
}
@media screen and (max-width: 1100px) {
  .footer__sitemap__list .list-item {
    font-size: 17px;
  }
  .footer__sitemap__list .list-item.item04 .child-list li {
    font-size: 13px;
  }
}
@media screen and (max-width: 960px) {
  .footer__sitemap__list.list01 {
    width: 32%;
  }
  .footer__sitemap__list.list02 {
    width: 60%;
  }
  .footer__sitemap__list.list03 {
    width: 8%;
  }
}
@media screen and (max-width: 810px) {
  .footer__sitemap__list {
    text-align: center;
  }
  .footer__sitemap__list.list01 {
    width: 100%;
  }
  .footer__sitemap__list.list02 {
    width: 100%;
  }
  .footer__sitemap__list.list03 {
    width: 100%;
    text-align: center;
  }
  .footer__sitemap__list .list-item {
    border-bottom: 2px solid #28334f;
    padding: 10px 8vw;
  }
  .footer__sitemap__list .list-item.item04 {
    display: flex;
    flex-wrap: wrap;
  }
  .footer__sitemap__list .list-item.item04 .parent {
    width: 100%;
    margin-right: 0px;
  }
  .footer__sitemap__list .list-item.item04 .parent::after {
    display: none;
  }
  .footer__sitemap__list .list-item.item04 .child-list {
    width: 100%;
    padding-top: 0px;
  }
  .footer__sitemap__list .list-item.item08 {
    border-bottom: none;
  }
}
/* company info */
.footer__info {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 95px 0 110px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1620px) {
  .footer__info__area {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
@media screen and (max-width: 810px) {
  .footer__info {
    max-width: 810px;
    padding: 50px 8vw 50px;
    flex-wrap: wrap;
  }
}
.footer__company {
  text-align: left;
}
.footer__company .logo {
  margin-bottom: 25px;
}
.footer__company .logo img {
  width: 240px;
  height: 53px;
}
.footer__company .address {
  font-size: 14px;
  margin-bottom: 40px;
  white-space: nowrap;
}
.footer__company .tel {
  font-size: 20px;
  font-family: poppins, sans-serif;
  margin-bottom: 25px;
}
.footer__company .tel span, .footer__company .tel a {
  font-size: 30px;
}
.footer__company .tel a {
  color: inherit;
}
.footer__company .tel a:hover {
  cursor: default;
}
.footer__company .fax {
  font-size: 20px;
  font-family: poppins, sans-serif;
  margin-bottom: 15px;
}
.footer__company .mail {
  font-size: 20px;
  font-family: poppins, sans-serif;
}

.footer__social {
  text-align: right;
}

.footer__sns {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 15px;
  margin-bottom: 70px;
}
.footer__sns .title {
  font-size: 20px;
  font-family: poppins, sans-serif;
  border-right: 1px solid #fff;
  padding-right: 25px;
  line-height: 20px;
}

.footer__sns-list {
  display: flex;
  align-items: center;
  justify-content: right;
}
.footer__sns-list li {
  margin-left: 25px;
}
.footer__sns-list li a {
  transition: all 0.3s;
}
.footer__sns-list li a:hover img {
  transform: scale(1.05);
}
.footer__sns-list .dimmed img {
  opacity: 0.5;
}

.footer_banner {
  display: flex;
  align-items: center;
  justify-content: right;
}
.footer_banner .benner02 {
  margin-left: 15px;
}

@media screen and (max-width: 810px) {
  .footer__company {
    text-align: center;
    padding-bottom: 50px;
    width: 100%;
  }

  .footer__social {
    text-align: center;
    width: 100%;
  }

  .footer__sns {
    justify-content: center;
    margin-bottom: 30px;
  }

  .footer__sns-list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__sns-list li {
    margin-left: 25px;
  }
  .footer__sns-list .dimmed img {
    opacity: 0.5;
  }

  .footer_banner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer_banner .benner02 {
    margin-left: 15px;
  }
}
.footer__copy {
  padding: 30px 0;
  font-size: 12px;
  font-family: poppins, sans-serif;
  background-color: #28334f;
}

/*---------------------------------------------------------
  common-data
---------------------------------------------------------*/
*[data-list] {
  position: relative;
  padding-left: 1.2em;
  display: block;
}
*[data-list]::before {
  position: absolute;
  left: 0;
  content: attr(data-list);
}

.common-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

/*--
large text : bg
--*/
.moving-big-text {
  position: absolute;
  top: -35px;
  right: -30px;
}
.moving-big-text .en {
  font-size: 220px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (max-width: 1260px) {
  .moving-big-text .en {
    font-size: 190px;
  }
}
@media screen and (max-width: 1100px) {
  .moving-big-text .en {
    font-size: 160px;
  }
}
@media screen and (max-width: 960px) {
  .moving-big-text .en {
    font-size: 140px;
  }
}
@media screen and (max-width: 810px) {
  .moving-big-text {
    width: 130px;
    top: -20px;
    right: -20px;
  }
  .moving-big-text .en {
    font-size: 130px;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 480px) {
  .moving-big-text {
    width: 110px;
  }
  .moving-big-text .en {
    font-size: 110px;
  }
}
/*--
  under pages
--*/
/* page headline */
.page-header {
  height: 400px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.page-header .page-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 400px;
  margin-left: 5.7291vw;
  color: #fff;
  padding-top: 140px;
  padding-left: 10.4166vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  line-height: 1.5;
}
.page-header .page-title .jp {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.page-header .page-title .jp br {
  display: none;
}
.page-header .page-title .jp .s {
  font-size: 40px;
}
.page-header .page-title .en {
  font-size: 22px;
  font-weight: 300;
  display: block;
}

@media screen and (max-width: 810px) {
  .page-header {
    height: 300px;
  }
  .page-header .page-title {
    height: 300px;
    margin-left: 8vw;
    padding-top: 90px;
    padding-left: 8vw;
    background-position: center center;
  }
  .page-header .page-title .jp {
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 480px) {
  .page-header .page-title {
    padding-top: 95px;
    padding-left: 6vw;
  }
  .page-header .page-title .jp {
    font-size: 40px;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }
  .page-header .page-title .jp br {
    display: initial;
  }
  .page-header .page-title .jp .s {
    font-size: 20px;
  }
  .page-header .page-title .en {
    margin-top: 10px;
  }
}
.production .page-header .page-title {
  background-image: url(../img/production/head_bg.jpg);
}

.news .page-header .page-title {
  background-image: url(../img/news/head_bg.jpg);
}

.technology .page-header .page-title {
  background-image: url(../img/technology/head_bg.jpg);
}

.laser_marking .page-header .page-title {
  background-image: url(../img/laser_marking/head_bg.jpg);
}
.laser_marking .page-header .page-title .jp {
  margin-left: -8px;
}

.printing .page-header .page-title {
  background-image: url(../img/printing/head_bg.jpg);
}

.equipment .page-header .page-title {
  background-image: url(../img/equipment/head_bg.jpg);
}

.company .page-header .page-title {
  background-image: url(../img/company/head_bg.jpg);
}

.contact .page-header .page-title {
  background-image: url(../img/contact/head_bg.jpg);
}

@media screen and (max-width: 810px) {
  .contact .page-header .page-title {
    background-position: right center;
  }
}
@media screen and (max-width: 480px) {
  .laser_marking .page-header .page-title .jp {
    margin-left: -4px;
  }

  .contact .page-header .page-title {
    background-position: 80% center;
  }
}
.first_header {
  text-align: center;
  margin-bottom: 50px;
}
.first_header .jp {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}
.first_header .en {
  display: block;
  color: #1e59a8;
  font-weight: 300;
  font-size: 18px;
}

.second_header {
  border-left: 1px solid #1e59a8;
  padding-left: 50px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.second_header .jp {
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.second_header .jp .s {
  font-size: 32px;
}
.second_header .en {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #1e59a8;
  letter-spacing: 0.05em;
}

.third_header {
  border-left: 4px solid #1e59a8;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  padding-left: 15px;
  margin-bottom: 20px;
}
.third_header .s {
  font-size: 16px;
}

@media screen and (max-width: 810px) {
  .second_header {
    padding-left: 8vw;
  }
  .second_header .jp {
    font-size: 45px;
  }
}
@media screen and (max-width: 480px) {
  .first_header .jp {
    font-size: 30px;
    letter-spacing: 0em;
  }
  .first_header .jp .s {
    font-size: 24px;
  }

  .second_header {
    padding-left: 4vw;
  }
  .second_header .jp {
    font-size: 30px;
    letter-spacing: 0.05em;
  }
  .second_header .en {
    font-size: 16px;
  }

  .third_header {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .third_header .s {
    font-size: 14px;
  }
}
/* navigation */
.page-nav .breadcrumb {
  white-space: nowrap;
  display: flex;
  overflow: hidden;
  width: 100%;
  margin: 16px auto 90px;
  padding: 0 5.7291vw;
  box-sizing: border-box;
}
.page-nav .breadcrumb li {
  display: inline-block;
  max-width: 100%;
}
.page-nav .breadcrumb li + li {
  padding-left: 16px;
  position: relative;
}
.page-nav .breadcrumb li::before {
  content: "／";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 1px;
  margin: auto;
  font-size: 14px;
}
.page-nav .breadcrumb li a,
.page-nav .breadcrumb li span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}
.page-nav .breadcrumb li:first-child::before {
  display: none;
}
.page-nav .breadcrumb li:last-child span, .page-nav .breadcrumb li:last-child a {
  padding-right: 120px;
  box-sizing: border-box;
}

/* wp pagination */
.custom_pagination ul {
  display: flex;
  justify-content: center;
}
.custom_pagination ul li {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 16px;
  font-family: poppins, sans-serif;
}
.custom_pagination ul li.number {
  margin-left: 8px;
}
.custom_pagination ul li.number.num1 {
  margin-left: 0;
}
.custom_pagination ul li.prev {
  margin-right: 35px;
}
.custom_pagination ul li.prev .cls-1 {
  fill: none;
  stroke: #1e59a8;
  stroke-width: 1px;
  fill-rule: evenodd;
}
.custom_pagination ul li.next {
  margin-left: 35px;
}
.custom_pagination ul li.next .cls-1 {
  fill: none;
  stroke: #1e59a8;
  stroke-width: 1px;
  fill-rule: evenodd;
}
.custom_pagination ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #1e59a8;
  background-color: #fff;
  transition: all 0.5s;
  border-radius: 4px;
}
.custom_pagination ul li a:hover {
  background-color: #1e59a8;
  color: #fff;
}
.custom_pagination ul li a:hover .cls-1 {
  stroke: #fff;
}
.custom_pagination ul li span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1e59a8;
  color: #fff;
  border-radius: 4px;
}

.entry__item__category {
  font-size: 13px;
  color: #1e59a8;
  border: 1px solid #1e59a8;
  padding: 3px 10px;
  line-height: 1.4;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
}

/* common contact section */
.section-contact {
  position: relative;
  overflow: hidden;
}

.contact__inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 160px;
  padding-bottom: 140px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1260px) {
  .contact__inner {
    padding-top: 130px;
  }
}
@media screen and (max-width: 1100px) {
  .contact__inner {
    padding-top: 100px;
  }
}
@media screen and (max-width: 960px) {
  .contact__inner {
    padding-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .contact__inner {
    padding-bottom: 80px;
  }
}
.contact__head {
  margin-bottom: 80px;
}
.contact__head .h01 {
  font-size: 34px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.contact__block {
  display: flex;
  justify-content: space-between;
}
.contact__block .contact__box {
  width: 49.5%;
  padding: 60px 8vw 60px;
  text-align: center;
  background-color: #e5e9f0;
}
.contact__block .contact__box .text {
  font-size: 20px;
  margin-bottom: 25px;
}
.contact__block .contact__box .tel {
  max-width: 340px;
  width: 100%;
  height: 80px;
  margin-right: auto;
  margin-left: auto;
  font-family: poppins, sans-serif;
  color: #1e59a8;
  border: 1px solid #1e59a8;
  border-radius: 4px;
  line-height: 80px;
}
.contact__block .contact__box .tel span {
  font-size: 24px;
}
.contact__block .contact__box .tel a {
  display: none;
  font-size: 24px;
  color: inherit;
  cursor: default;
}
.contact__block .contact__box .contact-btn {
  max-width: 340px;
  width: 100%;
  height: 80px;
  margin-right: auto;
  margin-left: auto;
  line-height: 80px;
  opacity: 1;
  transition: all 0.5s;
  display: block;
  background: #1e5daa;
  background: linear-gradient(90deg, #1e5daa 0%, #1d2f8d 100%);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
  z-index: 10;
}
.contact__block .contact__box .contact-btn::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: #fff;
  border: 1px solid #1e59a8;
  border-radius: 4px;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.5s;
}
.contact__block .contact__box .contact-btn .text {
  position: relative;
  z-index: 10;
}
.contact__block .contact__box .contact-btn .text::before {
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact__block .contact__box .contact-btn:hover::before {
  opacity: 1;
}
.contact__block .contact__box .contact-btn:hover .text {
  color: #1e59a8;
}
.contact__block .contact__box .contact-btn:hover .text::before {
  background-image: url(../img/common/icon_mail_blue.svg);
}
.contact__block .contact__box .contact-btn .text {
  padding-left: 30px;
}
.contact__block .contact__box .contact-btn .text::before {
  width: 18px;
  height: 15px;
}
.contact__block .contact__box .contact-btn:hover {
  opacity: 0.7;
}

.contact__big-text {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.contact__big-text .en {
  font-size: 160px;
  color: #f0f2f6;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 1260px) {
  .contact__block {
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .contact__big-text {
    top: 50px;
  }
  .contact__big-text .en {
    font-size: 190px;
  }
}
@media screen and (max-width: 1100px) {
  .contact__big-text {
    top: 30px;
  }
  .contact__big-text .en {
    font-size: 160px;
  }
}
@media screen and (max-width: 960px) {
  .contact__big-text .en {
    font-size: 140px;
  }
}
@media screen and (max-width: 810px) {
  .contact__block {
    flex-wrap: wrap;
    padding-right: 8vw;
    padding-left: 8vw;
  }
  .contact__block .contact__box {
    width: 100%;
    margin-bottom: 30px;
  }
  .contact__block .contact__box .tel span {
    display: none;
  }
  .contact__block .contact__box .tel a {
    display: initial;
  }

  .contact__big-text {
    top: 35px;
  }
  .contact__big-text .en {
    font-size: 130px;
  }
}
@media screen and (max-width: 480px) {
  .contact__head {
    margin-bottom: 60px;
  }
  .contact__head .h01 {
    font-size: 28px;
  }

  .contact__big-text {
    top: 45px;
  }
  .contact__big-text .en {
    font-size: 70px;
  }
}
/* another color version */
.contact02 .section-contact {
  background-color: #e5e9f0;
}
.contact02 .contact__block .contact__box {
  background-color: #fff;
}
.contact02 .contact__big-text .en {
  color: #f5f6f9;
}

/* table style */
.standard__table__style {
  width: 100%;
  margin-bottom: 90px;
  border-collapse: collapse;
}
.standard__table__style th, .standard__table__style td {
  vertical-align: top;
  padding: 25px 20px;
  border: 1px solid #c5cedd;
}
.standard__table__style th {
  font-size: 16px;
  font-weight: 400;
  width: 220px;
  background-color: #e5e9f0;
  text-align: center;
}
.standard__table__style td {
  font-size: 14px;
  font-weight: 300;
  color: #566374;
  background-color: #fff;
}

@media screen and (max-width: 810px) {
  .standard__table__style th, .standard__table__style td {
    padding: 15px 10px;
  }
  .standard__table__style th {
    width: 30%;
  }
  .standard__table__style td {
    width: 70%;
  }
}
/* gradation block */
.blue-gradation {
  margin-bottom: 8px;
  display: inline-block;
  background: #1e5daa;
  background: linear-gradient(90deg, #1e5daa 0%, #1d2f8d 100%);
  color: #fff;
  padding: 2px 8px;
}

@media screen and (max-width: 810px) {
  .application__title {
    background: #1e5daa;
    background: linear-gradient(90deg, #1e5daa 0%, #1d2f8d 100%);
    padding: 2px 8px;
  }
  .application__title .blue-gradation {
    margin-bottom: 0;
    display: initial;
    background: none;
    background: none;
    padding: 0;
  }
  .application__title br {
    display: none;
  }
}
/* anchor list */
.anchor__list {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
}

@media screen and (max-width: 1620px) {
  .anchor__list {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
@media screen and (max-width: 810px) {
  .anchor__list {
    max-width: 810px;
    margin-bottom: 24vw;
    padding-right: 8vw;
    padding-left: 8vw;
  }
}
.anchor__item {
  width: 32%;
  text-align: center;
  display: block;
  margin-left: 1%;
  align-self: stretch;
}
.anchor__item:first-child {
  margin-left: 0;
}

.anchor__link {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  border: 1px solid #1e59a8;
  border-radius: 4px;
  position: relative;
  padding: 8px 10px;
  color: #1e59a8;
  font-size: 14px;
  z-index: 10;
}
.anchor__link span {
  position: relative;
  z-index: 11;
}
.anchor__link::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: #1e5daa;
  background: linear-gradient(90deg, #1e5daa 0%, #1d2f8d 100%);
  opacity: 0;
  transition: all 0.5s;
}
.anchor__link:after {
  content: "";
  position: absolute;
  top: 43%;
  right: 15px;
  width: 13px;
  height: 8px;
  background-image: url(../img/common/icon_arrow_blue_down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s;
  z-index: 11;
}
.anchor__link:hover {
  color: #fff;
}
.anchor__link:hover::before {
  opacity: 1;
}
.anchor__link:hover::after {
  transform: translateY(5px);
  background-image: url(../img/common/icon_arrow_white_down.svg);
}

@media screen and (max-width: 810px) {
  .anchor__link {
    padding: 8px 4px;
  }
  .anchor__link::after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .anchor__list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .anchor__item {
    width: 49%;
    margin-left: 2%;
    margin-bottom: 2%;
  }
  .anchor__item:nth-child(2n+1) {
    margin-left: 0;
  }

  .anchor__link {
    padding: 8px 4px;
    font-size: 12px;
  }
  .anchor__link::after {
    display: none;
  }
}
/* Standard */
.section-standard {
  position: relative;
  overflow: hidden;
}

.standard__inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 10;
  padding-top: 160px;
  padding-bottom: 160px;
}

@media screen and (max-width: 1620px) {
  .standard__inner {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
@media screen and (max-width: 810px) {
  .standard__inner {
    max-width: 810px;
    padding: 16vw 8vw 16vw;
  }
}
/* Loading Block */
#loading_layer {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  color: #1e59a8;
  text-indent: -9999em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transform: translateY(-50%);
  font-size: 11px;
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
/* Hide Loading Block */
.loaded {
  opacity: 0;
  visibility: hidden;
}
/*# sourceMappingURL=maps/common.css.map */
