@charset "UTF-8";

/** PC 用 */
@media (min-width: 1025px) {
  /** グローバルナビリスト (1階層目) */
  .global-nav-item-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /** グローバルナビ項目 (1階層目) */
  .global-nav-item {
/*
    display: flex;
    position: relative;
*/
  }
  .global-nav-item > a {
    display: block;
    position: relative;
    width: 100%;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
    /*transform: rotate(0.05deg);*/
  }
  .global-nav-item > a::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: #006837;
    opacity: 0;
    transition: 0.2s opacity;
  }
  .global-nav-item:hover > a::after {
    opacity: 1;
  }
  .global-nav-contact {
    margin-left: 10px;
    font-size: 1.1rem;
    line-height: 2.0em;
  }
  .global-nav-contact a{
    display: flex;
    align-items: flex-end;
    color: #006837;
    font-size: 3.0rem;
    line-height: 1.0em;
  }
  .global-nav-contact a img{
    width: 23px;
    margin-right: 5px;
  }
  .global-nav-sub-item{
    display: none;
  }
  /** グローバルナビリスト (2階層目) */
  /** グローバルナビ項目 (2階層目) */
}
/** スマホ 用 */
@media (max-width: 1024px) {
  /** グローバルナビリスト (1階層目) */
  .global-nav-item-list {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    margin: auto;
    overflow: auto;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    /*background: rgba(0,27,83,0.97);*/
    transition: 0.2s all;
    pointer-events: none;
  }
  .global-nav.open .global-nav-item-list {
    left: 0;
    pointer-events: all;
    padding-top: 20px;
  }
  /** グローバルナビ項目 (1階層目, 2階層目) のリンク */
  .global-nav-item a {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    padding: 10px 30px;
    text-decoration: none;
    /*transform: rotate(0.05deg);*/
    transition: 0.5s all;
    color: #FFF;
  }
  .global-nav-item a:hover {
    background: rgba(1,60,137,0.85);
  }
  .global-nav-item > a::before, .global-nav-sub-item-list.open a::before {
    box-sizing: border-box;
    content: "";
    display: block;
    margin-right: 10px;
    width: 10px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 3px 3px 0;
    transform-origin: center;
    transform: translateX(-25%) rotate(-45deg);
    transition: 0.2s all;
  }
  .global-nav-item > a.open::before {
    transform: translate(-25%, -2.5px) rotate(45deg);
  }
  .global-nav-sub-item{
    display: block;
  }
  .global-nav-sub-item a {
    padding-left: 50px;
    color: #FFF;
  }
  /** トグルボタン */
  .global-nav-button {
    box-sizing: border-box;
    position: fixed;
    top: 18px;
    right: 10px;
    width: 39px;
    height: 39px;
    border-radius: 4px;
    background: #FFF;
    z-index: 101;
    cursor: pointer;
  }
  .global-nav-button-icon {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: calc(100% - 18px);
    height: 2px;
    margin-left: 9px;
    background: #006837;
    z-index: 100;
  }
  .global-nav-button-icon::before {
    position: relative;
    top: -8px;
    display: block;
    content: "";
    height: 2px;
    background: #006837;
    transition: 0.1s all;
  }
  .global-nav-button-icon::after {
    position: relative;
    top: 6px;
    display: block;
    content: "";
    height: 2px;
    background: #006837;
    transition: 0.1s all;
  }
  .global-nav-button.open .global-nav-button-icon {
    background: transparent;
  }
  .global-nav-button.open .global-nav-button-icon::before {
    top: -6px;
    transform: translateY(6px) rotate(45deg);
  }
  .global-nav-button.open .global-nav-button-icon::after {
    top: 3px;
    transform: translateY(-5px) rotate(-45deg);
  }
  .global-nav-contact {
    width: 600px;
    margin: 40px auto 0;
    font-size: 1.1rem;
    line-height: 2.0em;
    background-color: #FFF;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
  }
  .global-nav-contact a{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #006837;
    font-size: 3.0rem;
    line-height: 1.0em;
  }
  .global-nav-contact a img{
    width: 23px;
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  .global-nav-contact {
    width: 90%;
  }
}
.is-current{
  color: #006837;
  font-weight: 700;
}