@charset 'UTF-8';
.global-Header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background .4s, height .4s;
  background: #ffffff;
}
@media (max-width: 640px) {
  .global-Header {
    height: 70px;
  }
}
.global-Header-Inner {
  width: 100%;
  height: 100%;
  max-width: 1464px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global-Header-Logo {
  width: 160px;
  margin-left: 70px;
}
@media (max-width: 1280px) {
  .global-Header-Logo {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .global-Header-Logo {
    width: 100px;
  }
}
.global-Header-Nav {
  height: 100%;
  position: relative;
}
@media (max-width: 1280px) {
  .global-Header-Nav {
    width: 100%;
    height: 100vh;
    background: #009370;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s;
  }
}
.global-Header-List {
  height: 100%;
  margin-right: 220px;
  display: flex;
}
@media (max-width: 1280px) {
  .global-Header-List {
    width: 100%;
    height: auto;
    border-top: 2px solid #FFFFFF;
    margin-right: 0;
    display: block;
  }
}
.global-Header-List li {
  height: 100%;
  padding: 0 20px;
}
@media (max-width: 1440px) {
  .global-Header-List li {
    padding: 0 calc(20vw * 100 / 1440);
  }
}
@media (max-width: 1280px) {
  .global-Header-List li {
    height: auto;
    border-bottom: 2px solid #FFFFFF;
    padding: 0;
  }
}
.global-Header-List li a {
  height: 100%;
  font-weight: 700;
  font-size: 1.0rem;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color .4s;
}
@media (max-width: 1280px) {
  .global-Header-List li a {
    padding: 20px 0;
    color: #FFFFFF;
  }
}
.global-Header-List li a:hover {
  color: #009370;
}
.global-Header-Contact {
  width: 184px;
  position: absolute;
  top: 0;
  right: 20px;
}
@media (max-width: 1280px) {
  .global-Header-Contact {
    display: none;
  }
}
.global-Header-Contact a {
  background: #e74939;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 5px 0px 0px black;
  border: 4px solid #000000;
  border-top: none;
  margin-top: -5px;
  padding: 30px 0 25px;
  text-align: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: #FFFFFF;
  display: block;
  transition: .3s;
}
.global-Header-Contact a:hover {
  background: #FFFFFF;
  color: #e74939;
  box-shadow: 0 0;
  transform: translateY(5px);
}
.global-Header.bg {
  height: 80px;
  background: #FFFFFF;
}
@media (max-width: 640px) {
  .global-Header.bg {
    height: 70px;
  }
}
.state-nav-open .global-Header-Nav {
  opacity: 1;
  pointer-events: auto;
  visibility: inherit;
  transform: translateY(0);
}
.sp-Button {
  width: 80px;
  height: 80px;
  background: none;
  padding: 0;
  display: none;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9999;
}
@media (max-width: 1280px) {
  .sp-Button {
    display: flex;
  }
}
@media (max-width: 640px) {
  .sp-Button {
    width: 70px;
    height: 70px;
    margin-right: -20px;
  }
}
.sp-Button-Box {
  width: 30px;
  height: 14px;
  margin-top: -4px;
  position: relative;
}
.sp-Button-Box:after {
  content: 'MENU';
  width: 100%;
  margin-top: 21px;
  text-align: center;
  font-weight: 700;
  font-size: 0.6rem;
  color: #009370;
  display: block;
}
.sp-Button span {
  position: absolute;
  display: block;
  background: #009370;
  width: 30px;
  height: 2px;
  transition: .3s;
}
.sp-Button span:nth-of-type(1) {
  top: 0;
}
.sp-Button span:nth-of-type(2) {
  top: 6px;
}
.sp-Button span:nth-of-type(3) {
  bottom: 0;
}
.state-nav-open .sp-Button-Box:after {
  color: #FFFFFF;
}
.state-nav-open .sp-Button span {
  background: #FFFFFF;
}
.state-nav-open .sp-Button span:nth-of-type(1) {
  top: calc(50% - 1px);
  transform: rotate(30deg);
}
.state-nav-open .sp-Button span:nth-of-type(2) {
  opacity: 0;
}
.state-nav-open .sp-Button span:nth-of-type(3) {
  top: calc(50% - 1px);
  transform: rotate(-30deg);
}
.global-Contact {
  width: 100%;
  max-width: 570px;
  box-sizing: border-box;
  margin: 20px auto 0;
  padding: 0 20px;
  display: none;
}
@media (max-width: 1280px) {
  .global-Contact {
    display: block;
  }
}
.global-Contact a {
  background: #e74939;
  box-shadow: 0px 3px 0px 0px black;
  border: 2px solid #000000;
  border-radius: 70px;
  padding: 15px 20px 16px;
  text-align: center;
  font-weight: 900;
  line-height: 1.5;
  font-size: 1.2rem;
  color: #FFFFFF;
  display: block;
}
.global-Contact span {
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.global-Contact span:before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  box-sizing: border-box;
  transform: rotate(60deg);
}
.global-Contact span:after {
  content: '';
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  box-sizing: border-box;
  transform: rotate(-60deg);
}
/* 202510修正 */
@media (max-width: 1350px) {
  .global-Header-List li a {
    font-size: 1.1vw;
  }
}
@media (max-width: 1280px) {
  .global-Header-List li a {
    font-size: 1.0rem;
  }
}
.global-Header-List {
  margin-right: 440px;
}
.global-Header-ContactWrapper {
  position: absolute;
  top: 0;
  right: 20px;
  display: flex;
  gap: 8px;
  align-items: stretch;
}
@media (max-width: 1280px) {
  .global-Header-ContactWrapper {
    display: none;
  }
}
.global-Header-Contact {
  width: 184px;
  position: relative;
  flex: 1;
  display: flex;
}
.global-Header-Contact a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*padding: 1em;*/
  padding: 0.7em 0.5em 0.6em;
  ;
  text-decoration: none;
  line-height: 1.2;
}
.global-Header-Contact.btn2 a {
  background: #fe8900;
}
.global-Header-Contact.btn2 a:hover {
  background: #FFFFFF;
  color: #fe8900;
}
/* 202512更新 */
.global-Header-Contact.btn1, .visual-Btn2 {}
@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
.global-Header-Contact.btn1 a {
  position: relative;
  background: radial-gradient(circle at 30% 30%, #ff4b2b, #d10000 70%);
  cursor: pointer;
  overflow: hidden;
}
.global-Header-Contact.btn1 a::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.global-Header-Contact.btn1 a span {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffeb3b;
  letter-spacing: 0.06em;
  text-shadow:
    0 2px 0 #000000, 0 4px 0 #b30000, 0 6px 0 #800000, 4px 6px 6px rgba(0, 0, 0, 0.6);
}
.global-Header-Contact.btn1 a span::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: #c40000;
  -webkit-text-stroke: 6px #c40000;
  filter: brightness(0.9);
}
.global-Header-Contact.btn1 a span::after {
  content: attr(data-text);
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -2;
  color: #400000;
  filter: blur(2px);
  opacity: 0.8;
}
.global-Header-Contact.btn2 a:hover {
  background: #fe8900;
  color: #FFFFFF;
}
.global-Contact2 {
  width: 100%;
  max-width: 570px;
  box-sizing: border-box;
  margin: 20px auto 0;
  display: none;
}
@media (max-width: 1280px) {
  .global-Contact2 {
    display: block;
  }
}
.global-Contact2 img, .visual-Btn2 img, .crv-Btn2 img {
  width: 100%;
  transition: transform 0.25s ease-out;
  transform-origin: center center;
  border-radius: 0;
}
.global-Contact2 a:hover img, .visual-Btn2 a:hover img, .crv-Btn2:hover img {
  transform: scale(1.05);
}
.global-Contact2 a:focus-visible img, .visual-Btn2 a:focus-visible img, .crv-Btn2:focus-visible img {
  transform: scale(1.05);
}
.global-Contact2 a:active img, .visual-Btn2 a:active img, .crv-Btn2:active img {
  transform: scale(0.98);
}
/* 202603更新 */
.global-Header-Logo {
  width: 350px;
  margin-left: 0;
}
@media (max-width: 640px) {
  .global-Header-Logo {
    width: 240px;
  }
}
.global-Header-List {
  margin-right: 420px;
}
.global-Header-Contact {
  right: 0;
}