@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
/* constant */ 
:root {
  --main-color: #2781d5;
  --font-color: #1b1b1b;
  --bg-color: #f3f2fb;
  --border-color: #e7e7e7;
  --bg-gray: #fafafa;
  --font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  --font-family-nav:'Poppins', sans-serif;
}
/*layout*/
body {
  font-family: var(--font-family);
  color: var(--font-color);
  background: var(--bg-color);
  font-size: 15px;
  letter-spacing: 0rem;
  line-height: 2.0;
}
a {
  color: inherit !important;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
p {
  margin: 0;
}
section {
  position: relative;
  padding: 80px 0;
}
#header .h-wrap {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.content {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1120px;
  padding: 0 10px;
}
#header a, #header #global #nav a, #footer a, #fnav a, #breadcrumbs a, a[href^="tel:"] {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/*main*/
#main {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 88px 0 0;
  line-height: 1.8;
}
@media only screen and (max-width:767px) {
  body {
    font-size: 14px;
  }
  section {
    padding: 40px 0;
  }
  #main {
    padding: 60px 0 0;
  }
}
h1, h2 {
  padding: 0;
  margin: 0;
  line-height: 1.2;
}
h3, .h3, h4, .h4, h5, .h5, h6, .h6, dl.box > dt {
  clear: both;
  font-weight: bold;
  font-size: 1.143em;
  line-height: 1.5;
  position: relative;
  margin-bottom: 16px;
  padding: .5em 2px;
}
/* clearfix */
.cf {
  overflow: hidden;
  zoom: 1;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
.pc-only {
  display: block !important;
}
.sp-only {
  display: none !important;
}
@media only screen and (max-width:767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
/*header*/
#header {
  width: 100%;
  background: #fff;
  position: fixed;  
  top: 0;
  left: 0;
  border-bottom: 1px solid #e8e8e8;
  z-index: 100;
}
#header .header-logo img{
  height:60px;
  width: auto;
}
.global-nav {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  column-gap: 1.5vw;
  align-items: center;
  font-family: var(--font-family-nav);
  font-weight: 700;
}
#header .lang{
  display: flex;
  align-items: center;
}
#header .bogo-language-switcher{
  display: flex;
}
#header .bogo-language-switcher .en::after{
  content:'|';
  margin: 0 7px;
}
@media only screen and (min-width:961px) {
  #header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
  #header .global-nav > li{
    padding: 20px 0;
  }
  #header .global-nav .sub-menu {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 5px rgba(0 0 0 / 20%);
    padding: 20px;
    top: 66px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
  }
  #header .global-nav .sub-menu li {
    padding: 10px 10px;
  }
  #header .global-nav > li:hover > a > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  #header .global-nav > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width:960px) {
  #header {
    padding: 10px 0;
    height: 60px;
  }
  #header .header-logo img{
    height: 40px;
    width: auto;
  }
  #header .global-nav, #header .header-mail {
    display: none;
  }
}
/* ハンバーガーメニュー */
#humburger, #header .drawer-nav-wrapper {
  display: none;
}
@media only screen and (max-width:1199px) {}
@media only screen and (max-width:960px) {
  #humburger {
    position: fixed;
    cursor: pointer;
    z-index: 999999;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    display: block;
  }
  #humburger > span {
    display: inline-block;
    transition: transform .2s, opacity .2s;
    will-change: transform;
    position: absolute;
    right: 15px;
    height: 3px;
    background: var(--font-color);
    width: 35px;
    perspective: 1000;
  }
  #humburger > span:nth-of-type(1) {
    top: 18px;
  }
  #humburger > span:nth-of-type(2) {
    top: 30px;
  }
  #humburger > span:nth-of-type(3) {
    top: 42px;
  }
  #humburger.active > span:nth-of-type(1) {
    transform: translateY(9px) rotate(45deg);
  }
  #humburger.active > span:nth-of-type(2) {
    opacity: 0;
  }
  #humburger.active > span:nth-of-type(3) {
    transform: translateY(-15px) rotate(-45deg);
  }
  #header .drawer-nav-wrapper {
    display: block;
    position: fixed;
    top: -100%;
    left:0;
    z-index: 99999;
    transition: all 0.5s;
    background: #ffffff;
    max-height: 100vh;
    width: 100%;
  }
  #header .drawer-nav-wrapper.open {
    top: 60px;
  }
  #header .drawer-nav-wrapper ul li {
    padding: 20px 10%;
    position: relative;
    font-weight: bold;
    font-family: var(--font-family-nav);
    font-size: 1.8rem;
  }
  #header .drawer-nav-wrapper .lang{
    margin-bottom: 40px;
    padding-left: 40px;
  }
  #header .drawer-nav-wrapper ul.bogo-language-switcher li {
    padding: 0;
  }
  #header .drawer-nav-wrapper {
    overflow-y: auto;
  }
  #header .drawer-nav-wrapper ul .sub-menu ul{
    list-style: "-";
  }
  #header .drawer-nav-wrapper ul .sub-menu ul li{
    font-weight: normal;
    margin-left: 20px;
  }
  #header .drawer-nav-wrapper ul.drawer-nav__sns{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}

/* パンくず */
#main .breadcrumbs{
  background:var(--bg-gray);
}
#main .breadcrumbs .content{
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 2.1;
  gap:5px;
  padding:10px 5px;
  flex-wrap: wrap;
}

#main .breadcrumbs .home .material-icons{
  vertical-align: -7px;
  margin-right:5px;
}
/* footer */
#footer {
  background: #282828;
  color: #fff;
  padding: 60px 0 40px;
}
#footer .footer-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
#footer .footer-nav .footer-logo img {
  width: 140px;
}
#footer .footer-nav__sns {
  display: flex;
  align-items: center;
  gap: 20px;
}
#footer .footer-nav__sns img{
  width: 30px;
  height:  30px;
}
#footer .f-link{
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight:400;
  font-size: 80%;
  padding: 20px 0;
}
#copyright {
  text-align: right;
  font-size: 11px;
  font-family: var(--font-family-nav);
  font-weight: 400;
}
@media only screen and (max-width:767px) {
  #footer {
    text-align: center;
    padding: 20px 0 20px;
  }
  #footer .footer-nav{
    justify-content: space-around;
  }
  #footer .footer-nav__sns{
    justify-content: center;
  }
  #footer .footer-nav .footer-logo img {
    width: 100px;
  }
}
/* common */
.font-primary{
  color:var(--main-color);
}
.bg-gray{
  background-color: var(--bg-gray);
}
