@charset "UTF-8";

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */

/*General Elements
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka,
    "MS PGothic", arial, helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  color: #000;
  position: relative;
}

body.active {
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: underline;
  outline: none;
}

a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*l-header
---------------------------------------------------------------------------- */
.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}

.l-header .content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 0 35px;
  display: flex;
  justify-content: space-between;
}

.l-header .logo {
  width: 184px;
  transition: 0.3s;
}

.l-header .logo a {
  display: block;
}

.l-header .detail {
  width: calc(100% - 210px);
}

.l-header .detail .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 0 20px;
}

.l-header .detail .catch {
  font-size: 1.4rem;
}

.l-header .detail .lan {
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.l-header .detail .lan a {
  color: #000;
  text-decoration: none;
  padding-left: 30px;
  position: relative;
  transition: 0.3s;
}

.l-header .detail .lan a::before {
  position: absolute;
  content: "";
  background: url("../../images/common/ico_lan.svg") no-repeat;
  background-size: 19px;
  background-position: center;
  width: 30px;
  height: 20px;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.l-header .menu {
  display: none;
}

.l-header.is-scrolled {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  .l-header .detail .lan a:hover {
    color: #0057a8;
  }

  .l-header .detail .lan a:hover::before {
    background: url("../../images/common/ico_lan_on.svg") no-repeat;
    background-size: 19px;
    background-position: center;
  }

  .l-header.is-scrolled .logo {
    width: 138px;
  }
}

@media screen and (max-width: 767px) {
  .l-header .logo {
    width: 200px;
    position: relative;
    z-index: 10;
  }

  .l-header .content {
    display: block;
    position: relative;
    padding: 0;
  }

  .l-header .menu {
    display: block;
    position: absolute;
    right: 15px;
    top: 0;
    padding-top: 28px;
    z-index: 10;
  }

  .l-header .detail .flex {
    display: none;
  }

  .l-header .detail {
    display: none;
    position: fixed;
    left: 0;
    background: #fff;
    width: 100%;
    top: 0;
    padding: 70px 0 0;
    height: 100%;
    /* overflow-y: scroll; */
  }

  .menu-trigger,
  .menu-trigger span {
    display: block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 32px;
    height: 10px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
  }

  .menu-trigger::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 5px;
    height: 2px;
    top: 0;
    left: 50%;
    margin-left: -1px;
    z-index: 1;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-4px) rotate(45deg);
  }

  .menu-trigger.active::before {
    display: none;
  }
}

/* l-gNav
---------------------------------------------------------------------------- */

.l-gNav ul {
  font-size: 0;
  text-align: center;
  /* overflow-y: scroll; */
}

.l-gNav li {
  display: inline-block;
  vertical-align: middle;
  max-width: 158px;
  width: calc(100% / 6);
  /* min-height: 124px; */
}

.l-gNav li a {
  display: block;
  /* text-align: center; */
  /* min-height: 124px; */
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  /* padding: 50px 0; */
  min-height: 84px;
  padding: 30px 0;
  transition: 0.3s;
}

.l-gNav li.parent {
  position: relative;
  background: none;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  /* .l-header.is-scrolled .l-gNav li {
		min-height: 84px;
	} */

  .l-header.is-scrolled .l-gNav li a {
    min-height: 64px;
    padding: 20px 0;
  }

  .l-gNav li.parent ul {
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 100%;
    padding-top: 10px;
  }

  .l-gNav li.parent ul li {
    display: block;
    width: 100%;
    background: #fff;
    min-height: auto !important;
  }

  .l-gNav li.parent ul li a {
    padding: 20px 0 !important;
    min-height: auto !important;
  }

  .btn {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease 0.2s;
  }

  /*ボタン内spanの形状*/
  .btn span {
    position: relative;
    z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #000;
  }

  .btn:hover span {
    color: #fff;
  }

  /*== 背景が流れる（左から右） */
  .bgleft:before {
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #0057a8; /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
  }

  /*hoverした際の形状*/
  .bgleft:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  .l-gNav li.parent.is-show {
    background: #0057a8;
  }

  .l-gNav li.parent.is-show a.btn span {
    color: #fff;
  }

  .l-gNav li.parent ul li a span {
    color: #000 !important;
  }

  .l-gNav li.parent ul li a:hover span {
    color: #fff !important;
  }
}

.toggle-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-gNav {
    /* height: 100vh; */
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 80px;
  }

  .l-gNav ul {
    display: block;
  }

  .l-gNav li {
    max-width: inherit;
    width: 100%;
    min-height: inherit;
    /* border-bottom: dotted 1px; */
    position: relative;
  }

  .l-gNav li a {
    min-height: inherit;
    padding: 20px 0 20px 20px;
    border-bottom: dotted 1px #0057a8;
    text-align: left;
  }
  .l-gNav li a:first-child {
    /* pointer-events: none; */
  }
  .l-gNav li ul {
    display: none;
  }

  .l-gNav li ul li a {
    background-color: rgba(0, 87, 168, 0.05);
    font-size: 14px;
    padding: 15px 0 15px 15px;
  }
  .l-gNav li ul li a .pc-show {
    display: none;
  }
  .l-gNav li ul li a:before {
    content: "ー";
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
  }

  .toggle-button {
    position: absolute;
    width: 30%;
    height: 68px;
    z-index: 999;
    display: block;
    top: 0;
    right: 0;
  }
  .toggle-button .box {
    position: absolute;
    top: 33px;
    right: 20px;
  }

  .toggle-button span {
    display: block;
    width: 12px;
    height: 1px;
    background-color: #000;
  }
  .toggle-button span:nth-child(2) {
    transform: rotate(90deg);
    position: relative;
    top: -0.9px;
    transition: 0.3s;
  }

  .toggle-button.open span:nth-child(2) {
    opacity: 0;
  }

  .l-gNav ul li:last-child .toggle-button {
    /* display: none; */
    /* pointer-events: none; */
  }
}

/* l-search
---------------------------------------------------------------------------- */
.l-search {
  width: 200px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.l-search::before {
  position: absolute;
  content: "";
  z-index: 1;
  pointer-events: none;
  background: url("../../images/common/ico_search.svg") no-repeat;
  background-size: 19px;
  background-position: center;
  width: 30px;
  height: 25px;
  right: -30px;
  bottom: 0;
}

input.l-search-input {
  width: 100%;
  height: 25px;
  font-size: 1.4rem;
  border-bottom: solid 1px #000;
}

input.l-search-submit {
  position: absolute;
  color: #fff;
  width: 30px;
  height: 25px;
  right: -30px;
  bottom: 0;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
}

/* l-pageBody
---------------------------------------------------------------------------- */
.l-pageBody {
  width: 100%;
  overflow: hidden;
  padding-top: 185px;
}

@media screen and (max-width: 767px) {
  .l-pageBody {
    min-width: 0;
    padding-top: 68px;
  }
}

/* l-sitemap
---------------------------------------------------------------------------- */
.l-sitemap {
  padding-left: 30px;
}

.l-sitemap ul {
  display: flex;
  justify-content: space-between;
  line-height: 2;
}

.l-sitemap ul li strong {
  font-weight: bold;
  font-size: 1.6rem;
}

.l-sitemap ul li a {
  font-size: 1.5rem;
  color: #fff;
  transition: 0.3s;
}

.l-sitemap ul li ul {
  display: block;
  padding-top: 10px;
}

.l-sitemap ul li a:hover {
  color: #808080;
}

@media screen and (max-width: 767px) {
  .l-sitemap {
    display: none;
  }
}

/* l-pageTop
---------------------------------------------------------------------------- */
.l-pageTop {
  display: none;
  position: fixed;
  width: 45px;
  z-index: 10;
  right: 30px;
  bottom: 30px;
}

.l-pageTop a {
  display: block;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .l-pageTop a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .l-pageTop {
    right: 20px;
  }
}

/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
  background: #000000;
  color: #fff;
  padding: 80px 0 50px;
}

.l-footer a {
  color: #fff;
  text-decoration: none;
}

.l-footer .content {
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
}

.l-footer .flex {
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-footer .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .l-footer .logo {
    margin-bottom: 25px;
  }
}
.l-footer .logo .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .l-footer .logo .box {
    justify-content: flex-start;
  }
}

.l-footer .logo a {
  display: block;
  transition: 0.3s;
}

.l-footer .logo .logo01 {
  width: 109px;
  margin-right: 25px;
}

.l-footer .logo .logo02 {
  width: 166px;
  margin-right: 25px;
}

.l-footer .logo .logo03 {
  width: 209px;
}

.l-footer .logo .logo04 {
  width: 245px;
}

.l-footer .lead {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.8;
}

.l-footer .link {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}

.l-footer .copy {
  font-size: 1.1rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .l-footer .link a:hover {
    text-decoration: underline;
  }

  .l-footer .logo a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 50px 0 40px;
  }

  .l-footer .logo .logo01 {
    max-width: 66px;
    margin-right: 15px;
  }

  .l-footer .logo .logo02 {
    max-width: 101px;
    margin-right: 15px;
  }

  .l-footer .logo .logo03 {
    max-width: 127px;
  }
  .l-footer .logo .logo04 {
    max-width: 160px;
  }

  .l-footer .lead {
    display: none;
  }

  .l-footer .content {
    padding: 0 10px;
  }

  .l-footer .flex {
    justify-content: center;
    margin: 0 auto 40px;
  }

  .l-footer .link {
    margin-bottom: 40px;
    text-align: center;
  }

  .l-footer .copy {
    text-align: center;
  }
}

/* search.php
---------------------------------------------------------------------------- */
.search {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .search {
    font-size: 14px;
  }
}

.search_container {
  max-width: 1040px;
  width: 90%;
  margin: 80px auto;
  margin-top: 40px;
  background-color: #f7f7f7;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .search_container {
    padding: 10px 15px;
  }
}

.search_container .box01 {
  margin: 20px auto 40px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .search_container .box01 {
    padding-left: 5px;
  }
}

.search_container .ul-search {
  margin: 0 auto 40px;
}

.search_container .ul-search li {
  padding-bottom: 5px;
  margin-bottom: 25px;
  border-bottom: 1px solid #747474;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .search_container .ul-search li {
    padding-left: 5px;
  }
}

.search_container .ul-search li a {
  text-decoration: none;
  color: #000;
}

.search-none {
  text-align: center;
  width: 90%;
  margin: 100px auto;
}

#coming-soon .box {
  margin: 120px auto 180px;
  text-align: center;
  font-size: 30px;
  color: #333;
  letter-spacing: 0.05em;
}

#coming-soon .box p {
  margin-bottom: 20px;
}
#coming-soon .box p.en {
  color: #aaa;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #coming-soon .box {
    margin: 60px auto 80px;
    font-size: 20px;
  }

  #coming-soon .box p {
    margin-bottom: 15px;
  }
}
