@charset "UTF-8";
/*----------------------------------------
表示を切り替える幅
----------------------------------------*/
/*----------------------------------------
フォント
----------------------------------------*/
/*----------------------------------------
カラー
----------------------------------------*/
/*----------------------------------------
ブレークポイント
----------------------------------------*/
body, html {
  width: 100vw;
  overflow-x: hidden;
}
/***** ヘッダー ******/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  pointer-events: none;
}
.header a, .header button, .header label {
  pointer-events: auto;
}
.header .inner {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .site_logo {
  margin: 16px 0;
}
.header .site_logo p {
  margin: 0;
  color: #ffffff;
}
.header .site_logo .main {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.header .site_logo .main.en {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.header .site_logo .sub {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 58px;
}
.nav ul.depth1, .nav ul.lang {
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.nav ul.depth1 a, .nav ul.lang a {
  color: #ffffff;
  z-index: 10;
}
.nav ul.depth1 li {
  height: 100%;
}
.nav ul.depth1 li.active a {
  color: #E3FD51;
  font-weight: 700;
}
.nav ul.depth1 li a {
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nav ul.lang {
  margin-left: 8px;
}
.nav ul.lang li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nav ul.lang li:before {
  content: "｜";
  color: #ffffff;
  font-weight: 300;
  width: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav ul.lang li:first-child:before {
  display: none;
}
.nav ul.lang li.active a {
  font-weight: 700;
}
.nav ul.lang li a {
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: "Inter", "Arial", "Helvetica", sans-serif;
  font-weight: 100;
}
.sp_title {
  font-family: "Inter", "Arial", "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  padding: 18px 56px 50px 16px;
}
@media screen and (max-width: 1150px) {
  .nav-open .nav {
    left: 0;
    pointer-events: auto;
    max-height: 100vh;
    overflow-y: scroll;
  }
  .nav {
    display: block;
    width: 100%;
    position: absolute;
    height: auto;
    top: 0;
    left: calc(100% + 20px);
    background: #E3FD51;
    transition: 0.3s;
  }
  .nav ul.depth1 {
    display: block;
    width: 100%;
    border-top: 1px solid white;
  }
  .nav ul.depth1 li.active a {
    color: #2C3E50;
  }
  .nav ul.depth1 li a {
    display: block;
    padding: 11px 48px;
    color: #2C3E50;
    border-bottom: 1px solid white;
  }
  .nav ul.lang {
    margin-left: 0;
  }
  .nav ul.lang li {
    width: 50%;
    justify-content: center;
    position: relative;
  }
  .nav ul.lang li:before {
    position: absolute;
    content: "";
    height: 100%;
    background: #ffffff;
    width: 1px;
    top: 0;
    left: 0;
  }
  .nav ul.lang li:after {
    position: absolute;
    content: "";
    height: 100%;
    z-index: 0;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    top: 0;
    left: 0;
  }
  .nav ul.lang li.active:after {
    display: none;
  }
  .nav ul.lang li a {
    color: #2C3E50;
    width: 100%;
    text-align: center;
    padding: 11px;
  }
}
@media screen and (max-width: 768px) {
  .header .inner {
    padding: 0 16px;
  }
  .header .site_logo {
    margin-top: 20px;
  }
  .header .site_logo .main {
    font-size: 14px;
    line-height: 20px;
  }
  .header .site_logo .main span {
    display: block;
  }
  .header .site_logo .main.en {
    font-size: 14px;
    line-height: 17px;
    margin-top: 4px;
  }
  .header .site_logo .sub {
    font-size: 10px;
    line-height: 12px;
    margin-top: 3px;
  }
}
.nav ul.depth1 li a {
  position: relative;
}
.nav ul.depth1 li a:hover {
  color: #E3FD51;
}
.nav ul.depth1 li a:hover:before {
  position: absolute;
  content: "";
  width: calc(100% - 32px);
  height: 1px;
  left: 16px;
  bottom: 0;
  background: #E3FD51;
}
.nav ul.lang li a {
  position: relative;
}
.nav ul.lang li a:hover {
  color: #E3FD51;
}
.nav ul.lang li a:hover:before {
  position: absolute;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  left: 8px;
  bottom: -15px;
  background: #E3FD51;
}
@media screen and (max-width: 1150px) {
  .nav ul.depth1 li a:hover {
    border-bottom: 1px solid #ffffff;
    color: #2C3E50;
    font-weight: 700;
  }
  .nav ul.lang li a:hover {
    font-weight: 700;
    color: #2C3E50;
  }
  .nav ul.lang li a:hover:before, .nav ul.depth1 li a:hover:before {
    display: none;
  }
}
/*****SP ハンバーガーメニュー******/
.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 58px;
  height: 58px;
  cursor: pointer;
  z-index: 1200;
  background: #E3FD51;
}
.menu span {
  position: relative;
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background-color: #2C3E50;
  float: left;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}
.menu span:nth-of-type(1) {
  transform: translateY(-5px);
}
.menu span:nth-of-type(3) {
  transform: translateY(5px);
}
#menu {
  display: none;
}
#menu:checked ~ .menu {
  background-color: transparent;
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}
#menu:checked ~ .menu span {
  transition: transform 0.5s ease;
}
#menu:checked ~ .menu span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}
#menu:checked ~ .menu span:nth-of-type(2) {
  display: none;
}
#menu:checked ~ .menu span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}
#menu:checked ~ .nav {
  right: 0;
  transition: right 0.3s ease;
}
#menu:checked ~ main {
  transform: translateX(250px);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1150px) {
  .top_menu {
    padding: 9px 24px;
    text-align: left;
  }
  .top_menu .small {
    font-size: 12px;
  }
  .top_menu .title {
    font-size: 16px;
    padding: 7px 0;
  }
  .top_menu .nav ul.depth1 li.first {
    display: block;
  }
  .menu {
    display: flex;
  }
  .fixed_menu {
    display: none;
  }
  .menu_list {
    border-left: 1px solid #2C3E50;
    background: #ffffff;
    position: fixed;
    top: 0;
    right: -300px;
    z-index: 1000;
    height: 100%;
    width: 240px;
    transition: 0.3s;
    padding: 48px 24px;
  }
  .menu_list .nav ul.depth1 {
    display: block;
    text-align: left;
    border-top: 1px solid #2C3E50;
    font-feature-settings: normal;
  }
  .menu_list .nav ul.depth1 li {
    border-bottom: 1px solid #2C3E50;
  }
  .menu_list .nav ul.depth1 li a {
    font-size: 16px;
    padding: 12px 0;
    line-height: 21px;
    display: block;
  }
  .menu_list .nav ul.depth1 li a:before {
    width: 100%;
    bottom: -1px;
    left: 0;
  }
  .nav-open .menu_list {
    right: 0;
    transition: 0.3s;
  }
  .menu_title {
    text-align: left;
    font-feature-settings: "palt";
  }
  .top_menu .nav ul.depth1 li.active a:before {
    width: 100%;
    left: 0;
    bottom: -1px;
  }
}
@media (hover: hover) {
  .menu {
    overflow: hidden;
  }
  .menu:before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    /* スタート位置：左側に完全に隠す */
    width: 60%;
    /* 光の線の太さ */
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
  }
  .menu:hover::before {
    left: 150%;
    transition: left 0.5s ease-in-out;
  }
}
/***** フッター ******/
.foot {
  background: #F1F5F9;
  padding: 24px 0 16px;
}
.foot p {
  line-height: 24px;
}
.foot .text_sub {
  line-height: 16px;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .foot {
    padding: 32px 0 8px;
  }
  .foot .inner_1200 {
    padding: 0 16px;
    width: calc(100% - 32px);
  }
  .foot p {
    font-size: 12px;
    line-height: 16px;
  }
  .foot p .text_bold {
    font-size: 14px;
    line-height: 24px;
  }
  .foot .tel {
    margin-top: 4px;
  }
  .foot .text_sub {
    font-size: 10px;
    line-height: 12px;
  }
  .foot .text_sub.text_right {
    margin-top: 26px;
  }
}
/****トップページ****/
.header {
  transition: 0.3s;
  /*	&:before {
	transition: 0.3s;
	background: $navy;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	opacity: 0;
} */
  /*	&.bg_top {
	pointer-events: auto;
	transition: 0.3s;
	&:before {
	opacity: 0.7;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
}
	*/
}
header {
  height: 0;
}
header:before {
  display: none;
}
.head-bg {
  opacity: 0;
  background: #074389;
  width: 100%;
  height: 93px;
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  transition: 0.3s;
  z-index: 10;
}
.head-bg.bg_top {
  opacity: 1;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .head-bg {
    height: 112px;
  }
}
/**** 下層ページ ヘッダー******/
.lower .head-bg {
  opacity: 1;
  height: 58px;
}
.lower .header:before {
  display: none;
}
.lower .header .site_logo {
  margin: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.lower .header .site_logo .main span {
  display: none;
}
.lower .header .site_logo .en {
  display: none;
}
.lower .nav ul.depth1 li a:hover:before {
  bottom: 0;
}
/*# sourceMappingURL=./head.css.map */