@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');


/*
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

* {
  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: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.75;
  color: #0d347a;
  font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  padding: 0;
  margin: 0;
}

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

p {
  padding: 0;
  margin: 0;
}

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

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

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

a,
a::before,
a::after,
p::before,
p::after,
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;
}

a:hover,
.link input:hover {
  opacity: 0.7;
}

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

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

  a:hover {
    opacity: 1;
  }
}

/*============================
flex
============================*/

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

/*============================
脚注文字表記etc.
============================*/

.eng {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

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

.list-square li {
  display: block;
  position: relative;
  padding-left: 14px;
}

.list-square li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: #ccc;
  position: absolute;
  top: 12px;
  left: 0;
}

.note {
  display: block;
  position: relative;
  padding-left: 16px;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: #777;
}

.note::before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}

.googlemaps {
  display: block;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}


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

.sp-only {
  display: none;
}

@media only screen and (max-width: 1040px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

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

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

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

.inner {
  margin: 0 auto;
  padding: 0 7vw;
  max-width: 1840px;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 1040px) {
  .inner {
    width: 90.625%;
    padding: 0;
    margin: auto;
    float: none;
  }
}

/*============================
header
============================*/

#top {
  display: block;
  width: 100%;
  z-index: 20000;
  transition: 0.5s;
  position: fixed;
  margin-top: 20px;
}

#top.transform {
  /*
  left: 0;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #222;
*/
}


@media only screen and (max-width: 1040px) {
  #top {
    display: block;
    width: 100%;
    z-index: 20000;
    transition: 0.5s;
    position: fixed;
    margin-top: 10px;
  }
}


/*
header-nav
============================*/

#top .header-nav .inner {
  /*  padding-bottom: 90px;*/
  align-items: center;
  justify-content: flex-start;
  transition: 0.5s;
}

/*
#top.transform .header-nav .inner {
  padding-top: 14px;
  padding-bottom: 14px;
}
*/

#top .header-nav .siteTitle {
  width: 140px;
  transition: 0.5s;
}

@media only screen and (max-width: 1110px) {
  #top .header-nav .siteTitle {
    width: 100px;
    margin-top: 10px;
  }
}

#top .header-nav h1.siteTitle {
  display: none;
}

#top .header-nav .siteTitle a {
  padding-top: 38.6666%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/logo/logo.svg) no-repeat left center;
  background-size: contain;
  color: #fff;
}

/*
#top.transform .header-nav .siteTitle {
  width: 54px;
}
*/

/*
nav
*/

#top .header-nav nav {
  margin-left: auto;
  padding: 10px;
  border-radius: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 1110px) {
  #top .header-nav nav {
    display: none;
  }
}

/*
li
*/

#top .header-nav ul li {
  margin-left: 60px;
}

#top .header-nav ul li {
  display: block;
  line-height: 1.4;
  font-size: 14px;
  width: auto;
  position: relative;
}

#top .header-nav ul li a {
  display: block;
  line-height: 1.3;
  font-size: 14px;
  color: #0d347a;
  width: auto;
  position: relative;
  font-weight: 500;
  text-align: center;
}

#top .header-nav ul li a .eng {
  display: block;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
}

#top .header-nav ul li.contact a {
  background-color: #ffa70d;
  border-radius: 30px;
  padding: 12px 40px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

/*現在地とhoverの設定*/

#top .globalNav li a::after,
#top .globalNav li.current a::after,
#top .globalNav li a:hover::after {
  display: none;
}

/*
side-menu（menu ハンバーガー）
*/

#top .side-menu .menu {
  position: absolute;
  top: 3px;
  right: 10px;
  display: block;
  background-color: #0d347a;
  width: 56px;
  height: 56px;
  z-index: 9999;
  border-radius: 50%;
}

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

/*
menu-trigger
*/

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

#top .side-menu .menu .menu-trigger {
  position: relative;
  width: 56px;
  height: 56px;
  cursor: pointer;
}

#top .side-menu .menu .menu-trigger span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 1px;
  background-color: #fff;
}

#top .side-menu .menu .menu-trigger span:nth-of-type(1) {
  top: 20px;
}

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

#top .side-menu .menu .menu-trigger span:nth-of-type(3) {
  bottom: 20px;
}

/* anime */

#top .side-menu.active .menu-trigger span {
  background-color: #fff;
}

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

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

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


/*-------------
inner nav
-------------*/

#top .side-menu nav {
  margin: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  background-color: #fff;
  overflow-y: scroll;
}

#top .side-menu nav > .flex {
  align-items: center;
}

#top .side-menu nav .photo {
  background-color: #0d347a;
  width: 40%;
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: block;
}

@media only screen and (max-width: 1110px) {
  #top .side-menu nav {
    padding-top: 100px;
  }
  #top .side-menu nav .photo {
    display: none;
  }
}

#top .side-menu nav .photo p {
  background: url(../images/common/logo/logo_w.svg) no-repeat center;
  -webkit-background-size: 100%;
  background-size: 100%;
  display: block;
  width: 200px;
  padding-top: 78px;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top .side-menu .side-menu-inner {
  justify-content: center;
  width: 100%;
  flex: 1;
}

#top .side-menu .side-menu-inner ul {
  width: 70%;
}

#top .side-menu .side-menu-inner li {
  padding: 20px 0;
  border-bottom: 1px solid #0d347a;
}

#top .side-menu .side-menu-inner li a {
  color: #0d347a;
}

#top .side-menu .side-menu-inner li a .eng {
  font-size: 30px;
  font-weight: 700;
}

#top .side-menu .side-menu-inner li a .jp {
  font-size: 14px;
  margin-left: 20px;
}

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

  /*
  #top .side-menu .side-menu-inner .left .each a,
  #top .side-menu .side-menu-inner .right li a {
    position: relative;
    padding-left: 10px;
  }

  #top .side-menu .side-menu-inner .left .each a::before,
  #top .side-menu .side-menu-inner .right li a::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid #222;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
*/
}


/*============================
cont_img
============================*/

.cont_img {
  padding: 240px 0 100px;
  position: relative;
}

.cont_img::before {
  content: '';
  display: block;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background-color: #f3f3f3;
  position: absolute;
  top: -30px;
  left: -90px;
  z-index: -1;
}

.cont_img::after {
  content: '';
  background: url(../images/home/parts/bridge.svg) no-repeat center;
  width: 794px;
  height: 330px;
  display: block;
  position: absolute;
  top: 225px;
  right: -150px;
  z-index: -2;
}

.cont_img h1 {
  line-height: 1;
}

.cont_img h1 .eng {
  font-size: 65px;
  font-weight: 700;
  display: block;
}

.cont_img h1 .jp {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  margin-left: 10px;
}


@media only screen and (max-width: 1040px) {
  .cont_img {
    padding: 140px 0 0;
    position: relative;
  }

  .cont_img::before {
    width: 300px;
    height: 300px;
    top: -30px;
    left: -90px;
  }

  .cont_img::after {
    width: 290px;
    height: 122px;
    top: 135px;
    right: -140px;

  }

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

  .cont_img h1 .jp {
    margin-top: 5px;
  }
}


/*============================
パンくず
============================*/

.root {
  margin-top: 80px;
  font-size: 14px;
  font-weight: 600;
  color: #79c5db;
  letter-spacing: 0.08em;
}

.root ul {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
}

.root li {
  position: relative;
  letter-spacing: 0;
  padding-bottom: 0;
  white-space: nowrap;
}

.root li::before,
.root li:first-child,
.root li:first-child a {
  color: #0d347a;
}

.root li:nth-child(n + 2) {
  margin-left: 24px;
}

.root li:nth-child(n + 2)::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #39acd7;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -14px;
  margin: auto;
}

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

@media only screen and (max-width: 1040px) {
  .root {
    margin-top: 50px;
  }
}

/*============================
container
============================*/

.cont .container {
  width: 100%;
}

.cont .container article {
  padding-top: 140px;
}

.container article p {
  margin-top: 25px;
}

.container article p:first-of-type {
  margin-top: 0;
}

@media only screen and (max-width: 1040px) {
  .cont .container article {
    padding-top: 60px;
  }

  .container article p {
    margin-top: 20px;
  }
}

/*============================
lead
============================*/

#lead {
  padding: 120px 0;
  background-color: #f5f5f5;
}

#lead p {
  font-size: 16px;
}

#lead p.eng {
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
  color: #ccc;
}

@media only screen and (max-width: 1040px) {
  #lead {
    padding: 60px 0;
    background-color: #f5f5f5;
  }

  #lead p {
    font-size: 15px;
  }

  #lead p.eng {
    margin-bottom: 15px;
    font-size: 28px;
  }
}

/*============================
h2~h3
============================*/

h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  position: relative;
}

h2::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background-color: #39acd7;
  position: absolute;
  top: 15px;
  left: 0;
}

h2 .eng,
h2 .jp {
  display: block;
  padding-left: 30px;
  line-height: 1.1;
}

h2 .eng {
  font-size: 40px;
  font-weight: 700;
}

h2 .jp {
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (max-width: 1040px) {
  h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.3;
  }
}

/*============================
Link
============================*/

.link {
  width: 100%;
  margin: auto;
  padding-top: 60px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.link li {
  margin: 0 20px;
  border-bottom: 2px solid #fbc213;
  position: relative;
}

.link li::after {
  content: '';
  height: 4px;
  width: 60px;
  background-color: #fbc213;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.link li a {
  display: block;
  line-height: inherit;
  width: 100%;
  padding: 0 60px 14px 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  color: #fff;
}

.link li a span::before {
  position: absolute;
  content: '';
  bottom: 10px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #fbc213;
  border-radius: 50%;
}

.link li a span::after {
  position: absolute;
  top: -11px;
  bottom: 0px;
  right: 17px;
  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;
}


/*============================
#section-contact
============================*/

#section-contact {
  margin-top: 100px;
}

#section-contact a {
  background-color: #ffa70d;
  border-radius: 100px 100px 0 0;
  color: #fff;
  display: block;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}

#section-contact a::before {
  content: 'Contact us';
  font-family: "Montserrat", sans-serif;
  display: block;
  color: rgba(255, 137, 0, 0.7);
  position: absolute;
  bottom: -30px;
  right: 80px;
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
}

#section-contact a:hover {
  opacity: 1;
  background-color: #ff9b0d;
}

#section-contact a .flex {
  justify-content: flex-start;
}

#section-contact h2::before {
  background-color: #fff;
}

#section-contact a p {
  margin-left: 80px;
  margin-top: 10px;
}

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

  #section-contact a {
    border-radius: 50px 50px 0 0;
    padding: 40px 0;
  }

  #section-contact a::before {
    bottom: -6px;
    right: 0;
    font-size: 50px;
  }

  #section-contact a p {
    margin-left: 0;
    margin-top: 10px;
  }
}


/*============================
footer
============================*/

footer {
  background-color: #1a2c4d;
  color: #fff;
  padding: 100px 0 60px;
}

/*
footer-detail
============================*/

footer .footer-detail .footer-logo {
  width: 190px;
}

footer .footer-detail .footer-logo a {
  display: block;
  background: url(../images/common/logo/logo_w.svg) no-repeat center;
  -webkit-background-size: 100%;
  background-size: 100%;
  width: 100%;
  padding-top: 38.6666%;
  height: 0;
  overflow: hidden;
}

footer .footer-detail p {
  font-size: 14px;
  margin-top: 15px;
}

@media only screen and (max-width: 1040px) {
  footer .inner > .flex {
    display: block;
  }

  footer .footer-detail .footer-logo {
    width: 190px;
    margin: 0 auto 30px;
  }


  footer .footer-detail p {
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
  }
}

/*
footer-nav
============================*/

footer .footer-nav {
  width: 50%;
}

footer .footer-nav .mainlink {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #2b3e5f;
  justify-content: flex-end;
}

footer .footer-nav .mainlink li:not(:first-child) {
  margin-left: 50px;
}

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

footer .footer-nav .mainlink a .eng,
footer .footer-nav .mainlink a .jp {
  text-align: center;
  line-height: 1.3;
  display: block;
}

footer .footer-nav .mainlink a .eng {

  font-size: 20px;
  font-weight: 700;
}

footer .footer-nav .mainlink a .jp {
  font-size: 14px;
}

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

footer .footer-nav .sublink a {
  font-size: 15px;
  font-weight: 600;
  color: #79c5db;
  margin-left: 40px;
}


@media only screen and (max-width: 1040px) {
  footer .footer-nav {
    width: 100%;
  }

  footer .footer-nav .mainlink {
    display: block;
  }

  footer .footer-nav .mainlink li:not(:first-child),
  footer .footer-nav .mainlink li {
    margin-left: 0;
    margin-top: 20px;
  }

  footer .footer-nav .mainlink a .eng {

    font-size: 20px;
    font-weight: 700;
  }

  footer .footer-nav .mainlink a .jp {
    font-size: 14px;
  }

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

  footer .footer-nav .sublink a {
    font-size: 15px;
    font-weight: 600;
    color: #79c5db;
    margin-left: 40px;
  }
}


footer .copyright {
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-top: 60px;
  text-align: right;
  font-weight: 300;
}

/*============================
アニメーション関連
============================*/

/*
1文字ずつ出現させるためのCSS
============================*/

.anime-up {
  opacity: 0;
}

.anime-up.displayed {
  opacity: 1;
}

.anime-up.displayed span {
  animation: showText 0.5s backwards;
  display: inline-block;
}

.anime-up.displayed > span {
  overflow: hidden;
}

.anime-up.displayed > span > span {
  animation: showTextFromBottom 0.9s backwards;
}

/*text animetions*/

@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0px);
  }
}

/*
common_js
============================*/

.blur {
  opacity: 0;
}

.blur.is-show {
  animation-name: blur;
  animation-duration: 1s;
  opacity: 1;
}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(20px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}


.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);
}
