@charset "UTF-8";
/* CSS Document */
span.color-blue {
  color: #335e9d; }

span.color-yellow {
  color: #bf9a0e; }

/*---------- header ----------*/
header #global-nav {
  display: block;
  position: fixed;
  max-width: 100%;
  width: 100%;
  height: 90px;
  z-index: 10;
  background-color: #fff; }

.header .logo-box a .logo {
  background: url("/img/logo_white.svg");
  width: 250px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 3rem;
  transition: 0.3s; }

.header-inner ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 90px;
  text-align: right;
  margin: 0 auto; }

.header-inner ul li {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500; }
  @media screen and (max-width: 1199px) {
    .header-inner ul li {
      font-size: 13px;
      font-size: 1.3rem; } }
  @media screen and (max-width: 991px) {
    .header-inner ul li {
      font-size: 12px;
      font-size: 1.2rem; } }
  .header-inner ul li a {
    color: #1a1a1a;
    display: block;
    padding: 0 1em;
    transition: 0.3s; }
    .header-inner ul li a:hover {
      opacity: 0.5; }

header #global-nav {
  background-color: transparent;
  transition: background-color .5s, color .5s; }

.header-inner ul li a {
  color: #fff;
  transition: 0.3s; }
  .header-inner ul li a:hover {
    opacity: 0.5; }

.header-contact a {
  background-color: #003685;
  border: 1px solid #003685;
  height: 90px;
  width: 90px;
  margin-left: 1.5rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s; }
  .header-contact a .contact-icon {
    background: url("../img/contact-icon.svg");
    height: 25px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center; }
.header-contact a:hover {
  background-color: #fff;
  border: 1px solid #003685; }
  .header-contact a:hover .contact-icon {
    background: url("../img/contact-icon-ho.svg");
    height: 25px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center; }

/* headerの色を変える */
.header.change-color {
  background-color: #fff !important; }

.header .logo-box a .logo.change-color {
  background: url("/img/logo_color2.svg");
  width: 250px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 3rem;
  transition: 0.3s; }
.header .header-inner ul li a.change-color {
  color: #4d4d4d !important; }

.header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 2000;
  transition: 0.3s; }
  .header .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem; }
    @media screen and (max-width: 575px) {
      .header .header__inner {
        padding: 1rem 2rem; } }
  .header .logo {
    display: flex; }
    .header .logo a img {
      width: 200px; }
      .header .logo a img:hover {
        opacity: 0.5; }

.drawer__button {
  position: relative;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; }
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 2px;
    background-color: #003685;
    transform: translateX(-50%); }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 1rem));
    transition: transform 0.3s ease; }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease; }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 1rem));
    transition: transform 0.3s ease; }

.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg); }
.drawer__button.active > span:nth-child(2) {
  opacity: 0; }
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg); }

.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden; }
  .drawer__nav .drawer__nav__inner {
    position: relative;
    width: 60%;
    height: 100%;
    background-color: #fff;
    padding: 0;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease; }
    .drawer__nav .drawer__nav__inner .drawer__nav__menu {
      list-style: none;
      padding-left: 0;
      padding-top: 7.5rem; }
      .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link {
        font-size: 20px;
        font-size: 2rem;
        display: block;
        color: #003685;
        text-decoration: none;
        padding: 2rem;
        border-bottom: solid 1px lightgray;
        transition: 0.3s; }
        .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link:hover {
          background-color: #f0f0f0; }
      .drawer__nav .drawer__nav__inner .drawer__nav__menu li:last-child {
        border-bottom: none; }

.drawer__nav.active {
  opacity: 1;
  visibility: visible; }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0); }

body.active {
  height: 100%;
  overflow: hidden; }

h2 {
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 3.5rem;
  text-align: center;
  margin-bottom: 4rem; }
  h2 span {
    font-family: "Montserrat", sans-serif;
    display: block;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #003685;
    letter-spacing: 0.15em; }

.link-box a {
  color: inherit;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  border: solid 0.7px #666666;
  display: inline-block;
  padding: 0.6rem 5rem;
  transition: 0.3s; }
.link-box a:hover {
  color: #fff;
  background-color: #666666; }

.link-arrow a {
  color: inherit;
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  /*アニメーションの指定*/
  transition: ease .2s; }
.link-arrow a::after {
  content: '';
  background-repeat: no-repeat;
  background-image: url("../img/viewmore-arrow.svg");
  display: inline-block;
  height: 10px;
  width: 140px;
  vertical-align: middle;
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: -25%;
  left: 0;
  /*アニメーションの指定*/
  transition: all .3s; }
.link-arrow a:hover::after {
  left: 11px; }

#header-img {
  height: 300px;
  position: relative; }
  @media screen and (max-width: 767px) {
    #header-img {
      margin-top: 90px; } }
  @media screen and (max-width: 575px) {
    #header-img {
      margin-top: 74px; } }
  #header-img .header-title {
    position: absolute;
    background: #003685;
    color: #fff;
    text-align: center;
    padding: 4rem 4rem 3.5rem;
    bottom: -5rem;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; }
    #header-img .header-title p {
      font-size: 25px;
      font-size: 2.5rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      line-height: 2.5rem;
      margin-bottom: 0;
      white-space: nowrap; }
    #header-img .header-title span {
      font-family: "Montserrat", sans-serif;
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 0.15em; }
  #header-img .copyright-lower {
    position: absolute;
    writing-mode: vertical-rl;
    bottom: -20rem;
    right: 0;
    font-size: 10px;
    font-size: 1rem;
    z-index: 1; }
    #header-img .copyright-lower p {
      color: #B3B3B3;
      margin: 0;
      margin-right: 1rem;
      letter-spacing: 0.15rem; }

#footer-upper {
  background-image: url("../img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 345px;
  display: flex;
  align-items: center;
  color: #fff; }
  @media screen and (max-width: 991px) {
    #footer-upper {
      height: 295px; } }
  @media screen and (max-width: 767px) {
    #footer-upper {
      height: 410px; } }
  @media screen and (max-width: 575px) {
    #footer-upper h2 {
      margin-bottom: 3rem; } }
  #footer-upper h2 span {
    color: #fff; }
  #footer-upper .contact-tel {
    border-right: solid 1px #fff; }
    @media screen and (max-width: 767px) {
      #footer-upper .contact-tel {
        border-right: none;
        margin-bottom: 3rem; } }
    @media screen and (max-width: 575px) {
      #footer-upper .contact-tel {
        margin-bottom: 2rem; } }
    #footer-upper .contact-tel p {
      font-size: 14px;
      font-size: 1.4rem; }
      #footer-upper .contact-tel p span {
        font-size: 40px;
        font-size: 4rem;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        letter-spacing: 0.2rem; }
  #footer-upper .contact-mail .link-box a {
    border: #ffffff;
    background-color: #ffffff;
    color: #666666;
    padding: 1rem 7rem;
    transition: 0.3s; }
  #footer-upper .contact-mail .link-box a:hover {
    color: #fff;
    background-color: #666666; }
  #footer-upper .contact-tel, #footer-upper .contact-mail {
    text-align: center; }
    #footer-upper .contact-tel h5, #footer-upper .contact-mail h5 {
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 600;
      color: #d2b856;
      margin-bottom: 2.3rem; }
      @media screen and (max-width: 575px) {
        #footer-upper .contact-tel h5, #footer-upper .contact-mail h5 {
          margin-bottom: 1.3rem; } }

#footer-under .left-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media screen and (max-width: 575px) {
    #footer-under .left-box {
      margin: 2rem 0 4rem 0; } }
  #footer-under .left-box img {
    height: 155px; }
    @media screen and (max-width: 575px) {
      #footer-under .left-box img {
        height: 130px; } }
  #footer-under .left-box p {
    padding: 2.5rem 0 2rem 0;
    line-height: 1.6em; }
    #footer-under .left-box p span {
      font-weight: 600; }
  #footer-under .left-box .link-box i {
    color: #4c72aa; }
  #footer-under .left-box .link-box a:hover i {
    color: #fff; }
#footer-under .googlemap iframe {
  height: 465px;
  display: block; }
  @media screen and (max-width: 991px) {
    #footer-under .googlemap iframe {
      height: 400px; } }
  @media screen and (max-width: 575px) {
    #footer-under .googlemap iframe {
      height: 200px; } }

#page-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 5; }
  #page-top a {
    width: 56px;
    display: block;
    transition: 0.3s; }
  #page-top a:hover {
    transform: scale(1.1); }
