/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Sans */
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/noto-sans-jp-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("./fonts/noto-sans-jp-bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 900;
  src: local(""), url("./fonts/noto-sans-jp-black.woff2") format("woff2");
}
/* Open Sans */
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/open-sans-semibold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans Italic";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/open-sans-semibold-italic.woff2") format("woff2");
}
/*
====================================================================
 BASIC
====================================================================
*/
html,
body {
  min-width: 1100px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans", sans-serif;
  text-rendering: optimizeLegibility;
  vertical-align: baseline;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.025em;
  position: relative;
  color: #323232;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

em {
  font-style: normal;
  font-weight: 700;
}

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

table {
  border-spacing: 0;
}

a {
  color: #323232;
  text-decoration: none;
}

button {
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
}

small {
  font-size: 70%;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*
====================================================================
 HEADER
====================================================================
*/
header {
  position: absolute;
  width: 100%;
  background-color: white;
  left: 0;
  top: 0;
  z-index: 999;
}

/*
====================================================================
 GLOBAL NAVIGATION
====================================================================
*/
.global-navigation {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
.global-navigation__item {
  width: 20%;
}
.global-navigation__item a {
  height: 100px;
  color: #323232;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.global-navigation__item a.current, .global-navigation__item a:hover {
  color: #618ac6;
}
.global-navigation__item:not(:last-child) a {
  background: url(../images/dot.svg) right center no-repeat;
}

/*
====================================================================
 COMMON
====================================================================
*/
.tel {
  font-family: "Open Sans";
  font-size: 44px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  line-height: 1;
  letter-spacing: 0.025em;
}
.tel::before {
  content: "";
  display: block;
  position: unset;
  width: 48px;
  height: 48px;
  background: url(../images/icon_phone.svg) center center/contain no-repeat;
  border-radius: 50%;
}

main {
  width: 100%;
  overflow-x: hidden;
}

section {
  padding: 80px 0;
}
section .container {
  width: 1020px;
  margin: 0 auto;
}

h2 {
  margin-bottom: 60px;
  line-height: 1;
  font-size: 36px;
  font-weight: 400;
}
h2 .en {
  display: block;
  font-size: 14px;
  font-family: "Open Sans Italic", "Noto Sans", sans-serif;
  font-weight: 600;
  margin-top: 14px;
  color: #605e5d;
}

/*
====================================================================
 FOOTER
====================================================================
*/
.btn-pagetop {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 60px;
  right: 4%;
  cursor: pointer;
  background: #bbcfe8 url(../images/btn_pagetop.svg) center center/contain no-repeat;
  border-radius: 4px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  z-index: 999;
}

footer {
  background-color: #618ac6;
}

.copyright {
  color: white;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  padding: 34.5px 0;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / BASIC
  ====================================================================
  */
  html,
  body {
    min-width: initial;
    overscroll-behavior: none;
  }
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }
  img {
    max-width: 100%;
  }
  .nowrap {
    white-space: normal;
  }
  .pc {
    display: none !important;
  }
  /*
  ====================================================================
   SP / HEADER
  ====================================================================
  */
  header {
    background-color: transparent;
    position: fixed;
    transition: background-color 0.3s;
  }
  header.visible {
    background-color: white;
  }
  .header-container {
    padding: 0 15px;
    display: block;
  }
  .header-container .logo {
    padding: 5px 0;
  }
  .header-container .logo img {
    height: 40px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .visible .header-container .logo img {
    opacity: 1;
  }
  .header-container .contact {
    display: none;
  }
  .menu__button {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    top: 0;
    background: url(../images/sp/btn_menu_close.svg) center center/contain no-repeat;
    z-index: 1000;
  }
  .menu__button img {
    transition: opacity 0.4s;
  }
  .menu__button.is-active img {
    opacity: 0;
  }
  /*
  ====================================================================
   SP / GLOBAL NAVIGATION
  ====================================================================
  */
  .global-navigation {
    position: unset;
    display: block;
    padding-top: 50px;
  }
  .global-navigation-wrapper {
    height: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #78a0d2;
    overflow: hidden;
  }
  .global-navigation__item {
    width: 100%;
    background-color: white;
    margin-bottom: 1px;
  }
  .global-navigation__item a {
    height: auto;
    padding: 20px 15px;
    display: block;
    text-align: center;
    background: none !important;
  }
  /*
  ====================================================================
   SP / COMMON
  ====================================================================
  */
  .tel {
    font-size: 40px;
  }
  .tel::before {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  section {
    padding: 40px 0;
  }
  section .container {
    width: 100%;
    padding: 0 15px;
  }
  h2 {
    margin-bottom: 30px;
    font-size: 28px;
  }
  h2 .en {
    font-size: 12px;
    margin-top: 12px;
  }
  /*
  ====================================================================
   SP / FOOTER
  ====================================================================
  */
  .btn-pagetop {
    width: 45px;
    height: 45px;
    bottom: 40px;
    right: 15px;
  }
  .copyright {
    font-size: 12px;
    padding: 20px 0;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1120px) {
  /*----------------------------------------------------------------*/
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=common.css.map */