.global_header .link_list a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.global_header .link_list a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 1);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .4s;
}
.global_header .link_list a:hover::after {
  transform: scale(1, 1);
}

.global_header {
	position: fixed;
	margin-top: 0px;
}

.global_header {
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-left:18px;
  background-color: rgba(60, 174, 50, 0.9);
}

.global_header .logo {
  display: block;
  flex-shrink: 0;
}

.global_header .link_list {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
}

@media (max-width: 800px) {
  .global_header .link_list {
    display: none;
  }
}

.global_header .link_list .en,
.global_header .link_list .ja {
  text-align: center;
}

.global_header .link_list .en {
  font-family: var(--paragraph-en-md-font-family);
  font-size: var(--paragraph-en-md-font-size);
  font-weight: var(--paragraph-en-md-font-weight);
  line-height: 18px;
  color:  rgba(255, 255, 255, 1);
}

.global_header .link_list .ja {
  font-family: var(--paragraph-jp-xs-font-family);
  font-size: var(--paragraph-jp-xs-font-size);
  font-weight: var(--paragraph-jp-xs-font-weight);
  line-height: 16px;
  color:  rgba(255, 255, 255, 1);
}

.menu_button {
  position: fixed;
  top: 20px;
  right: 20px;
  align-self: stretch;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 11;  
}

.menu_button [class^="line"] {
  position: absolute;
  left: calc(50% - 24px / 2);
  width: 24px;
  height: 2px;
  background-color: rgba(255, 255, 255, 1);
}

.menu_button [class^="line"].line1 {
  top: calc(calc(50% - 2px / 2) - 7px);
}

.menu_button [class^="line"].line2 {
  top: calc(50% - 2px / 2);
}

.menu_button [class^="line"].line3 {
  top: calc(calc(50% - 2px / 2) + 7px);
}

.menu_button.on [class^="line"] {
  background-color: var(--white);
}

.menu_button.on .line1 {
  top: calc(50% - 2px / 2);
  transform: rotate(-45deg);
}

.menu_button.on .line2 {
  opacity: 0;
}

.menu_button.on .line3 {
  top: calc(50% - 2px / 2);
  transform: rotate(45deg);
}
@media (min-width: 800px) {
  .menu_button {
    display: none;
  }
}
.global_header .tel {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  width: 160px;
  height: 80px;
  font-family: var(--arial-font-family);
  color: white;
  background-color: rgba(60, 174, 50, 1);
}

.global_header .tel::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  padding-right: 16px;
  margin-right: 10px;
  content: "";
  background-image: url(../images/30.png);
  background-repeat: no-repeat;
  background-size: 17px 17px;
}

@media (max-width: 800px) {
  .global_header .tel {
    display: none;
  }
}
