@charset "UTF-8";
/* font-family: 'Noto Sans JP', sans-serif; 400/700
font-family: 'Roboto Condensed', sans-serif; 300/400/700
font-family: 'Zen Maru Gothic', sans-serif; 400/700 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  min-width: 1280px;
  margin: 0 auto;
  background-color: #fff;
  color: #333333;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', sans-serif;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

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

a {
  color: #333333;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  body {
    min-width: initial;
    overflow-x: hidden;
  }
}
/* ------------------------------------- */
/*デバイス切り替えここから*/
/* ------------------------------------- */
@media screen and (max-width: 600px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width: 601px) {
  .sp {
    display: none !important;
  }
}
/* ------------------------------------- */
/* 共通スタイル
/* ------------------------------------- */
.anchor{
  padding-top: 100px;
  margin-top:-100px;
}
/* section */
.sec-inner{
  max-width:1200px;
  margin:0 auto;
  padding:160px 0;
}
@media screen and (max-width: 600px) {
  .sec-inner{
    padding:100px 5%;
  }
}
/* heading */
.heading{
  font-size:3rem ;
  font-weight: 700;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.heading_border{
  position: relative;
  margin-bottom: 70px;
}
.heading_border:before{
  content: "";
  width:1em;
  height: 2px;
  background-color: #57c3f1;
  position: absolute;
  bottom:-20px;
  left:0;
}
@media screen and (max-width: 600px) {
  .heading{
    font-size: 2.4rem;
  }
}
/* button */
.btn {
  width:100%;
  max-width: 290px;
  text-align: center;
  display: block;
  padding: 20px 0;
  border-radius: 100px;
  transition: all 0.3s ease 0s;
  position: relative;
}
.btn::after{
  content: "";
  width:19px;
  height:16px;
  background: url(../img/common/icon_arrow_wh.svg) no-repeat;
  background-size: 19px 16px;
  position: absolute;
  top:0;
  bottom:0;
  right: 1em;
  margin: auto;
}
.btn:hover:after{
  right: 0.5em;
  transition: all 0.3s ease 0s;
}
.btn_black{
  color: #fff;
  background: #333;
}
.btn_black:hover {
  opacity: 0.6;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.btn_white{
  border: solid 2px #fff;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.btn_white:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease 0s;
}

/* ------------------------------------- */
/* パンくずリスト
/* ------------------------------------- */
.bread_wrap {
  padding: 15px 0;
  font-size: 1.2rem;
}
.bread_wrap a, .bread_wrap a:visited {
  display: inline;
  color: #333333;
}
.bread_wrap ol {
  display: flex;
  margin: 0 auto;
  font-size: 1.2rem;
  padding-left: 125px;
}
.bread_wrap ol li {
  display: inline-block;
  padding-right: 1em;
  color: #333333;
  letter-spacing: 1.2px;
  list-style-type: none;
}
.bread_wrap ol li:first-of-type{
  position: relative;
  padding-left: 1.5em;
}
.bread_wrap ol li:first-of-type:before{
  content: "";
  width:14px;
  height:14px;
  background: url(../img/common/icon_home.svg) no-repeat;
  background-size: 14px 14px;
  position: absolute;
  left:0;
}
.bread_wrap ol li:not(:last-of-type) a {
  color: #333333;
}
.bread_wrap ol li::after {
  margin-left: 1em;
  content: "＞";
  color: #333333;
  font-weight: 900;
}
.bread_wrap ol li:last-child::after {
  content: "";
}

@media screen and (max-width: 600px) {
  .bread_wrap {
    padding: 16px 0;
  }
  .bread_wrap ol {
    margin-left: 5%;
    padding-left:0;
  }
}
/* ------------------------------------- */
/* header
/* ------------------------------------- */
.header {
  width: 100%;
  border-top:5px solid #1a4592;
}
.header.margin-top{
  margin-top:56px;
}
.header-desc {
  padding: 7px 40px;
  color: #1a4592;
  font-size: 1rem;
}
.header-wrapper {
  display: flex;
  align-items: center;
  padding:0 40px;
}
.header-logo {
  width: 100%;
  max-width: 225px;
}
.header-logo a{
  display: block;
}
.header-nav {
  margin-left: auto;
}
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 45px;
}
.header-nav-item {
  text-align: center;
}
.header-nav-item a {
  color: #1a4592;
  font-size: 1.6rem;
  transition: all 0.3s ease 0s;
}
.header-nav-item a:hover {
  opacity: 0.6;
  transition: all 0.3s ease 0s;
}
.header-nav-other .header-nav-other-top{
  display: flex;
  gap:0 10px;
  margin-bottom:15px;
}

.header-nav-other .header-nav-other-top .lang-btn{
  display: block;
  width: 32px;
}
.header .lang-btn.disabled{
  pointer-events: none;
  opacity: 0.5;
}
.header-nav-other .header-nav-other-bottom a{
  display: block;
  width:24px;
  margin:0 auto;
}
.header-nav-button{
  width:205px;
}
.header-nav-button a {
  display: block;
  padding: 20px 0;
  text-align: center;
  background-color: #1a4592;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.header-nav-button a:hover {
  background-color: #57c3f1;
  transition: all 0.3s ease 0s;
}

.burger {
  z-index: 22;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 22px;
  transform: translateY(-50%);
}
.burger div {
  width: 100%;
  height: 3px;
  background-color: #1a4592;
  transition: transform 0.5s ease 0s;
}
.burger div:not(:first-child) {
  margin-top: 5px;
}
.burger.is-open div {
  position: absolute;
  transition: transform 0.5s ease 0s;
}
.burger.is-open .bar1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.is-open .bar2 {
  transform: scaleX(0);
}
.burger.is-open .bar3 {
  top: 9px;
  margin-top: 0;
  transform: rotate(135deg);
}
.burger-content {
  display: none;
  z-index: 21;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height:100vh;
  background-color: #fff;
}
.burger-nav-list{
  margin-bottom:50px;
}
.burger-nav-item {
  border-bottom: solid 1px #e0e0e0;
}

.burger-nav-item:first-child {
  border-top: solid 1px #e0e0e0;
}
.burger-nav-item a {
  display: inline-block;
  width: 100%;
  padding: 20px 5%;
  font-weight: 700;
  font-size: 1.6rem;
  color: #1a4592;
}
.burger-nav-button {
  text-align: center;
}
.burger-nav-button a {
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  background-color: #1a4592;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .header {
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
    height: 75px;
    background-color: #fff;
  }
  .header-inner {
    height: inherit;
    display: flex;
    align-items: center;
  }
  .header-desc {
    padding: 10px 5%;
    line-height: 1.5;
    background: #1a4592;
    color: #fff;
  }
  .header-wrapper {
    padding:0 5%;
  }
  .header-logo {
    width: 206px;
  }
  .header-lang{
    display: flex;
    justify-content: center;
    gap:0 40px;
    padding:25px 0;
  }
  .header-lang a{
    display: block;
    width:42px;
  }
  .header-sns a{
    display: block;
    width:30px;
    margin:0 auto;
  }
}
/* ------------------------------------- */
/* footer
/* ------------------------------------- */
.footer-inner{
  padding-top:60px;
}
.footer-logo {
  width: 295px;
  margin: 0 auto;
}
.footer-info {
  margin-top: 30px;
  line-height: 1.71;
  letter-spacing: 1.4px;
  text-align: center;
  color: #1a4592;
}
.footer-address{
  font-size: 1.4rem;
}
.footer-address span {
  margin-left: 20px;
}
.footer-tel, .footer-fax {
  display: inline-block;
  font-size: 1.4rem;
}
.footer-fax {
  margin-left: 10px;
}
.footer-nav {
  margin-top: 40px;
}
.footer-nav-list {
  display: flex;
  justify-content: center;
}
.footer-nav-item {
  padding: 0 20px;
  border-right: solid 1px #1a4592;
}
.footer-nav-item:last-child {
  border-right: none;
}
.footer-nav-item a {
  position: relative;
  color: #1a4592;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
}
.footer-nav-item a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: right top;
  background-color: #1a4592;
  content: "";
  transition: transform 0.3s;
}
.footer-nav-item a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.footer-copyright {
  margin-top: 50px;
  background-color: #1a4592;
}
.footer-copyright p {
  padding: 7px 0 6px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .footer-info {
    font-size: 1.2rem;
  }
  .footer-address span {
    margin-left: 0px;
    display: block;
  }
  .footer-nav-list {
    display: block;
  }
  .footer-nav-item {
    border-top: solid 1px #333;
    border-right: none;
  }
  .footer-nav-item a {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 20px 20px;
    font-size: 1.4rem;
  }
  .footer-nav-item a::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    transform: rotate(-45deg) translateY(-50%);
    transform-origin: initial;
    border-right: solid 2px #333;
    border-bottom: solid 2px #333;
    background-color: transparent;
    content: "";
    transition: none;
  }
  .footer-nav-item a:hover::after {
    transform: rotate(-45deg) translateY(-50%);
    transform-origin: initial;
  }
  .footer-copyright {
    margin-top: 0;
  }
}
/* ------------------------------------- */
/*company-map
/* ------------------------------------- */
.company-map {
  width: 100%;
  position: relative;
  padding-top: 20%;
}

@media screen and (max-width: 600px) {
  .company-map {
    padding-top: 100%;
  }
}

.company-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
/* ------------------------------------- */
/* 下層レイアウト
/* ------------------------------------- */
/* section */
/* mv */
.lower-mv{
  height:430px;
  padding:40px 40px 0 40px;
}
.lower-mv-inner{
  height:100%;
  position: relative;
  background-color: #1a4592;
}
.lower-mv-bg{
  position: absolute;
  top:0;
  right:0;
  width:65%;
  height:100%;
  z-index: 0;
}
.lower-mv-title {
  position: absolute;
  top: 50%;
  left: 85px;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 700;
  font-size: 3.6rem;
  letter-spacing: 3.6px;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-shadow: 0 0 10px rgba(26, 69, 146, 0.5);
  z-index: 1;
}
.lower-mv-title span {
  display: block;
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: normal;
}

@media screen and (max-width: 600px) {
  .lower-mv {
    height:330px;
    padding:95px 5% 0 5%;
  }
  .lower-mv-title {
    left: 35px;
    font-size: 2.8rem;
  }
  .lower-mv-title span {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 300;
  }
}
/* ------------------------------------- */
/* 404エラー
/* ------------------------------------- */
#notfound .lower-mv-bg {
  background: url(/img/common/notfound_main.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 600px) {
  #notfound .lower-mv-bg {
    background: url(/img/common/notfound_main_sp.jpg) no-repeat center center/cover;
  }
}
#notfound h3 {
  margin-top: 40px;
  font-weight: 700;
  text-align: center;
}
#notfound p {
  margin-top: 20px;
  line-height: 1.5;
  text-align: center;
}
#notfound .btn {
  margin: 40px auto 0;
}

@media screen and (max-width: 600px) {
  #notfound h3 {
    line-height: 1.5;
  }
  #notfound p {
    line-height: 2;
  }
}