@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-align: left;
  line-height: 1.7;
  color: #091138;
  font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif, "Font Awesome 5 Free";
  font-weight: 500;
}

h1,
h2,
h3 {
  font-weight: 700;
  padding: 0;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  list-style: none;
}

p {
  padding-top: 25px;
  margin: 0;
}

p:first-of-type {
  padding-top: 0px;
}

img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  display: block;
}

a {
  text-decoration: none;
  color: #091138;
  outline: none;
}

a:active,
a:hover,
a:focus {
  outline: none;
  opacity: 0.7;
}

a,
input {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}


@media only screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: 0;
    font-size: 14px;
  }

  a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }

  p {
    padding-top: 15px;
  }

}


/*============================
flex
============================*/
.flex {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}


/*============================
脚注文字表記etc.
============================*/
.eng {
  font-family: 'Spectral', sans-serif;
}

.min {
  display: block;
  font-size: 13px;
}

.bold {
  font-weight: 700;
}


/*============================
表示切り替え
============================*/

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}


@media only screen and (max-width: 768px) {

  /*============================
脚注文字表記etc.
============================*/
  .min {
    font-size: 12px;
  }

  /*============================
表示切り替え
============================*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

}

/*============================
wrapper
============================*/

.wrapper {
  position: relative;
  overflow: hidden;
}

/*============================
inner
============================*/

.inner {
  width: 1040px;
  margin: auto;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .inner {
    width: 90.625%;
  }
}


/*============================
#top header
============================*/
#top {
  position: fixed;
  width: 1040px;
  z-index: 10000;
  margin: 30px auto 0;
  right: 0;
  left: 0;
}

#top .main {
  width: 940px;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 13px 30px;
  border-radius: 5px;
}

.cont #top .main h1 {
  display: none;
}

.cont #top .main h1 a {
  display: none;
}

.cont #top .main .siteTitle {
  width: 156px;
  transition: all 0.3s ease-out;
}


.cont #top .main .siteTitle a {
  padding-top: 31.6129%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/header/sitetitle.png) no-repeat center center;
  -webkit-background-size: 100%;
  background-size: 100%;
}


#top nav ul {
  justify-content: flex-end;
  font-weight: 600;
}

#top nav li {
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease-out;
}

#top nav li:first-of-type {
  padding-left: 0;
}

#top nav li a {
  font-size: 15px;
  transition: all 0.3s ease-out;
}

#top nav li a:hover {
  opacity: 1;
  color: #0062ab;
}

#top .contact {
  display: block;
  width: 75px;
  height: 75px;
  line-height: 75;
  background-color: #fff;
  color: #0e2f8e;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out;
}


#top .contact a::before {
  content: "\f0e0";
  line-height: 1;
  position: absolute;
  top: 30%;
  right: 30%;
  color: #0e2f8e;
  font-size: 26px;
}

#top .contact a:hover::before {
  color: #0062ab;
  opacity: 1;
}

/*
scroll時 header
============================*/
#top.is-animation {
  margin-top: 15px;
  transition: all 0.8s ease-out;
}

#top.is-animation .main {
  padding: 9px 30px;
}

.cont #top.is-animation .siteTitle{
  width: 115px;
}

#top.is-animation .contact {
  width: 55px;
  height: 55px;
  position: relative;
}

#top.is-animation .contact a {
  position: absolute;
  top: 25%;
  right: 25%;
}


@media only screen and (max-width: 768px) {
  #top {
    width: 100%;
    margin: 0;
    z-index: 10001;
  }

  #top .main {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    align-items: stretch;
    background-color: transparent;
    padding: 10px 0;
  }

  .cont #top .main .siteTitle {
    width: 120px;
    padding-left: 10px;
  }

  .cont #top .main .siteTitle a {
    padding-top: 31.6129%;
    display: block;
    overflow: hidden;
    height: 0;
    width: 100%;
    background: url(../images/common/header/sitetitle.png) no-repeat center center;
    -webkit-background-size: 100%;
    background-size: 100%;
  }

  #top nav {
    margin: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 55px;
    background-color: rgba(14, 47, 142, 0.9);
    overflow-y: scroll;
    padding: 0 20px 80px;
  }

  #top nav li {
    padding-left: 0;
    text-align: center;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(14, 47, 142, 0.5);
  }

  #top .globalNav li a {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 2;
    color: #fff;
  }

  #top .globalNav li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto;
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
  }

  #top .contact {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40;
    border-radius: 50px;
    background-color: #0e2f8e;
    position: absolute;
    right: 62px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  #top .contact a::before {
    top: 25%;
    right: 25%;
    font-size: 18px;
    color: #fff;
  }

  /*
scroll時 header
============================*/
  #top.is-animation {
    margin-top: 0;
    transition: all 0.8s ease-out;
    background: #fff;
  }

  #top.is-animation .main {
    padding: 10px 0;
  }

  #top.is-animation h1 {
    width: 120px;
  }

  #top.is-animation .contact {
    width: 40px;
    height: 40px;
    position: absolute;
  }

  #top.is-animation .contact a {
    position: absolute;
    top: 25%;
    right: 25%;
  }

}


/*============================
menu(sp)  ハンバーガー
============================*/
.menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  .menu {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 16px;
    z-index: 1000;
    width: 31px;
    height: 23px;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 31px;
    height: 23px;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0e2f8e;
  }

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

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

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /* anime */
  .active .menu-trigger span {
    background-color: #0e2f8e;
  }

  .active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}


/*============================
cont_img
============================*/
.cont_img {
  height: 475px;
  background: url(../company/images/cont_img.jpg) no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.cont_img h1 {
  font-size: 50px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(9, 17, 56, 0.6);
}

.cont_img h1 span.eng {
  display: block;
  font-size: 30px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .cont_img {
    height: 180px;
  }

  .cont_img h1 {
    font-size: 24px;
    color: #fff;
  }

  .cont_img h1 span.eng {
    font-size: 14px;
  }

}


/*============================
パンくず
============================*/
.root {
  font-size: 14px;
  padding: 15px 20px;
}

.root ul {
  display: flex;
  overflow: hidden;
}

.root li {
  position: relative;
  color: #0e2f8e;
}

.root li:first-of-type::before {
  content: '\f015';
  font-weight: 700;
  color: #babbc0;
}

.root li::before {
  content: '/';
  margin: 0 5px;
  color: #babbc0;
}

.root li:first-child {
  margin-left: 0;
  position: relative;
}

.root li a {
  color: #babbc0;
}


@media only screen and (max-width: 768px) {
  .root {
    overflow-x: auto;
    font-size: 13px;
    padding: 10px 0;
  }


  .root ul {
    display: flex;
    overflow: hidden;
  }

  .root li {
    position: relative;
    color: #0e2f8e;
  }

  .root li:first-of-type::before {
    content: '\f015';
    font-weight: 700;
    color: #babbc0;
  }

  .root li::before {
    content: '/';
    margin: 0 5px;
    color: #babbc0;
  }

  .root li:first-child {
    margin-left: 0;
    position: relative;
  }

  .root li a {
    color: #babbc0;
  }
}


/*============================
container
============================*/
.cont .container {
  width: 100%;
  margin: auto;
  padding-top: 70px;
  text-align: left;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .cont .container {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }
}


/*============================
Link
============================*/
.link {
  width: 100%;
  margin: auto;
  padding-top: 60px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.link li {
  width: 350px;
}

.link li a,
.link li input {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 15px 0;
  color: #091138;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  border-radius: 50px;
  z-index: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.link li:hover a,
.link li:hover input {
  opacity: 0.8;
}

.link li a::before,
.link li input::before {
  content: "\f054";
  line-height: 1;
  position: absolute;
  right: 10px;
  background: #0e2f8e;
  color: #fff;
  font-size: 14px;
  padding: 16px 18px 16px 20px;
  border-radius: 50px;
  z-index: 2;
  transition: transform 0.7s;
}

.link li:hover a::before,
.link li:hover input::before {
  transition: transform 0.7s;
  transform: rotateY(360deg);
}

.link li a::after,
.link li input::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #00a7ea;
  color: #091138;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .link {
    padding-top: 20px;
  }

  .link li {
    width: 305px;
    margin: 0;
    margin-top: 20px
  }

  .link li a,
  .link li input {
    padding: 12px 0;
    font-size: 16px;
  }

  .link li a::before,
  .link li input::before {
    padding: 12px 14px 12px 15px;
  }


  .link li:hover a::before,
  .link li:hover input::before {
    transform: none !important;
  }

}


/*============================
article
============================*/
article {
  padding: 100px 0;
}

article:first-child {
  padding-top: 0;
}

article:last-child {
  padding-bottom: 0;
}

.cont h2 {
  margin-bottom: 40px;
  font-size: 28px;
  position: relative;
  z-index: 10;
}

.cont h2 span {
  background-color: #fff;
  padding-right: 20px;
  display: inline-block;
}

.cont h2 span::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: #091138;
}

@media only screen and (max-width: 768px) {
  article {
    padding: 60px 0;
  }

  .cont .primary article {
    padding-top: 0;
  }

  .cont h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .cont h2 span {
    padding-right: 10px;
  }

}


/*============================
table
============================*/
table.info {
  width: 100%;
  padding: 40px;
  background: #fff;
  border-radius: 5px;
}

table.info tr {
  display: block;
  width: 460px;
  padding: 30px 0;
  border-bottom: 1px solid #091138;
}

table.info th {
  width: 120px;
  vertical-align: middle;
}

table.info th,
table.info td {
  padding: 0;
}

table.info tr:first-child {
  padding-top: 0;
}

a.google::before {
  content: '\f3c5';
  font-weight: 900;
  margin-right: 5px;
  color: #0e2f8e;
}

a.google {
  display: block;
  margin: 5px 0;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  table.info {
    width: 100%;
    padding: 20px 15px;
  }

  table.info tr {
    width: 100%;
    padding: 15px 0;
  }

  table.info th {
    width: 90px;
  }

  table.info tr:first-child {
    padding-top: 15px;
  }

  a.google::before {
    content: '\f3c5';
    font-weight: 900;
    margin-right: 5px;
    color: #0e2f8e;
  }

  a.google {
    display: block;
    margin: 5px 0;
    font-weight: 700;
  }
}


/*============================
.toTop
============================*/
.toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.toTop li a {
  padding-top: 45px;
  display: block;
  overflow: hidden;
  width: 45px;
  height: 0;
  background: url(../images/common/footer/totop.png) no-repeat center top #0e2f8e;
  border-radius: 50px;
}

@media only screen and (max-width: 768px) {
  .toTop li a {
    width: 40px;
    height: 40px;
    padding-top: 40px;
    background-image: url(../images/common/footer/totop_sp.png) no-repeat center center;
    background-size: 40px;
  }
}


/*============================
#partner
============================*/
#partner {
  margin: 100px auto 0;
}

#partner a {
  display: block;
  width: 960px;
  margin: 0 auto;
}

#partner a img {
  display: block;
  width: 100%;
}


@media only screen and (max-width: 768px) {
  #partner {
    margin: 60px auto 0;
  }

  #partner a {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  #partner a img {
    display: block;
    padding-top: 59.7014%;
    height: 0;
    background: url(../images/common/banner/banner_sp.png) no-repeat center center;
    background-size: cover;
    width: 100%;
  }

}


/*============================
#section-contact
============================*/
#section-contact {
  background-color: #091138;
  margin-top: 100px;
  padding-top: 100px;
  color: #fff;
}

#section-contact .inner {
  border-bottom: 1px solid;
}

#section-contact h2 {
  display: block;
  margin-bottom: 30px;
  font-size: 35px;
  line-height: 1.4;
  color: #fff;
}

#section-contact h2 span {
  background-color: transparent;
}

#section-contact h2 span.eng {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

#section-contact .link {
  width: 350px;
  margin: 0;
  padding-top: 0;
}

#section-contact .link li:first-of-type {
  margin-bottom: 35px;
}

#section-contact .link li:last-of-type {
  margin-bottom: 100px;
}

#section-contact .link li a::before {
  font-size: 17px;
  padding: 16px;
}

#section-contact .link li a.contact-mail::before {
  content: "\f0e0";
}

#section-contact .link li a.contact-tel::before {
  content: '\f095';
}


@media only screen and (max-width: 768px) {
  #section-contact {
    margin-top: 60px;
    padding-top: 60px;
  }

  #section-contact h2 {
    margin-bottom: 15px;
    font-size: 25px;
  }

  #section-contact h2 span.eng {
    font-size: 14px;
  }

  #section-contact .link {
    width: 100%;
  }

  #section-contact .link li:first-of-type {
    margin-bottom: 0;
  }

  #section-contact .link li:last-of-type {
    margin-bottom: 40px;
  }

  #section-contact .link li a::before {
    font-size: 17px;
    padding: 14px;
  }

}


/*============================
footer
============================*/
footer {
  background: #091138;
}

footer .inner {
  position: relative;
  padding: 100px 0 0;
}

footer .footer-nav .sitelink {
  padding-bottom: 30px;
}

footer .footer-nav .sitelink li a {
  color: #fff;
  text-align: center;
}

footer .footer-nav .sublink {
  justify-content: flex-end;
}

footer .footer-nav .sublink li {
  float: left;
  margin-left: 20px;
}

footer .footer-nav .sublink li a {
  color: #525667;
  position: relative;
  padding-left: 15px;
}

footer .footer-nav .sublink li a::before {
  position: absolute;
  align-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid #525667;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

footer .detail {
  margin-top: 60px;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}

footer .siteTitle {
  width: 160px;
  padding-right: 20px;
  border-right: solid 1px #fff;
}

footer .siteTitle a {
  padding-top: 25.157%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/footer/sitetitle.png) no-repeat left center;
  -webkit-background-size: 100%;
  background-size: 100%;
}

footer .address {
  margin-left: 20px;
  padding-top: 0;
}

footer .copyright {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 15px 0;
  color: #525667;
  background-color: #091138;
  font-family: 'Spectral', sans-serif;
}


@media only screen and (max-width: 768px) {
  footer .inner {
    padding: 40px 0;
  }

  footer .detail {
    color: #fff;
    font-size: 14px;
  }

  footer .footer-nav .sitelink {
    padding: 0;
  }

  footer .footer-nav .sitelink li {
    border-left: none;
    background: #fff;
    width: 49%;
    padding: 15px;
    margin-bottom: 2%;
    border-radius: 3px;
    text-align: center;
  }

  footer .footer-nav .sitelink li:last-child {
    border-right: none;
  }

  footer .footer-nav .sitelink li a {
    color: #091138;
  }

  footer .footer-nav .sublink li a::before {
    border-left: 5px solid #fff;
  }

  footer .footer-nav .sublink {
    justify-content: center;
    margin-top: 20px;
  }

  footer .footer-nav .sublink li {
    margin-left: 0;
    margin-right: 30px;
  }

  footer .footer-nav .sublink li a {
    color: #fff;
  }

  footer .detail {
    margin-top: 60px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
  }

  footer .siteTitle {
    width: 70%;
    margin: 0 auto 15px;
    padding-right: 0;
    border-right: none;
  }

  footer .address {
    margin-left: 0;
  }

  footer .copyright {
    text-align: center;
    padding: 15px 0;
  }




}

/*============================
common_js
============================*/
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}
