@charset "UTF-8";

/* ------------------------------------------------------------
  Header
------------------------------------------------------------ */
.site-header {
	position:fixed;
	top:0;
	left:0;

	z-index:9999;

width:100%;
  background: #fff;
}

.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 0px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__logo { margin: 0; }
.site-header__logo a { display: inline-block; }
.site-header__logo img { max-width: 525px; height: auto; }

.site-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__utility {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__utilityItem { margin: 0; }
.site-header__utilityLink {
  display: inline-block;
  font-size: 14px;
  padding: 8px 10px;
}

.myAccountBtn .site-header__utilityLink{
	background:#2D6540;
	color:#fff;
}
.myAccountBtn .site-header__utilityLink span{
	background: url(../img/myAccountBtn_icon.png) no-repeat left center;
	padding-left:25px;
}
.myAccountBtn .site-header__utilityLink:hover{
	background:#085824;
}

@media screen and (max-width: 1400px) {
	.site-header__inner {
		padding-left:20px;
		padding-right:10px;
	}
}

@media screen and (max-width: 1000px) {
	.site-header__utility {
		display:none;
	}
}


/* SP */
@media screen and (max-width: 767px) {
	.site-header__inner {
	  padding: 12px 5px;
  }
	.site-header__logo img {
	max-width: 300px;
	}
}


/* ------------------------------------------------------------
  Hamburger
------------------------------------------------------------ */
.menu-toggle{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;

  /* ★追加：PCでは非表示 */
  display: none;

  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  padding-left: 11px;
}

.menu-toggle__line{
  width: 22px;
  height: 2px;
  background: #2D6540;
  display: block;
}

.menu-toggle__line:nth-child(3){
  width: 65%;
  margin: 0;                 /* ← 右寄せ/中央寄せを無効化 */
}


/* ★追加：スマホ時だけ表示 */
@media screen and (max-width: 1100px) {
  .menu-toggle{
    display: inline-flex;
  }
}

/* ------------------------------------------------------------
  Drawer
------------------------------------------------------------ */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .2s ease;
}
.drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba( 45 , 101 , 64 , 0.9);
  color: #fff;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer__header{
  display: flex;
  justify-content: flex-end;
  padding: 12px;
}
.drawer__close{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* open */
.drawer.is-open{ pointer-events: auto; }
.drawer.is-open .drawer__overlay{ opacity: 1; }
.drawer.is-open .drawer__panel{ transform: translateX(0); }
body.is-drawer-open{ overflow: hidden; }

/* ------------------------------------------------------------
  Drawer Navigation（親は toggle ボタンで開閉）
------------------------------------------------------------ */
.global-nav { padding: 0; }
.global-nav__list{ margin: 0; padding: 8px 16px 24px; }
.global-nav__item{ border-top: 1px solid rgba(255,255,255,.2); }

.global-nav__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.global-nav__row--sub{ padding-left: 12px; }

.global-nav__toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 14px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;

  text-align: left;
  font-size: 16px;
  line-height: 1.4;
}
.global-nav__toggle--sub{ font-size: 15px; }

.global-nav__icon{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* デフォルトは + */
.global-nav__toggle .global-nav__icon::before{
  content: "+";
  font-size: 20px;
  line-height: 1;
}

/* 展開中は ? */
.global-nav__toggle[aria-expanded="true"] .global-nav__icon::before{
  content: "-";
}


.global-nav__link,
.global-nav__subLink{
  color: #fff;
  display: block;
  padding: 14px 0;
  line-height: 1.4;
}

.global-nav__subList{ margin: 0; padding: 0 0 10px 12px; }
.global-nav__subList--small{ padding-left: 2em; }

/* utility */
.drawer__utility{
  margin-top: 16px;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: grid;
  gap: 10px;
}
.drawer__utility a{
  display: block;
  padding: 10px 0;
  color: #fff;
}






.site-header__utilityList{
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 18px;

  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  border-radius: 2px;
  white-space: nowrap;
}

.site-header__btn--purple{ background: #5C6CC0; }
.site-header__btn--green{ background: #2D6540; }

.site-header__btnIcon{
  width: 18px;
  height: 18px;
  margin-right: 8px;
  display: inline-block;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  /* 封筒アイコン（白） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpolyline points='3,7 12,13 21,7'/%3E%3C/svg%3E");
}

/* SPでは右3ボタンは非表示（spOFFが無い環境でも確実に消す） */
@media screen and (max-width: 1100px) {
  .site-header__utility{ display: none; }
}


/* ------------------------------------------------------------
  Drawer bottom CTA (SP)
------------------------------------------------------------ */
.drawer-cta{
  margin-top: 24px;
  padding: 0 16px 16px;
}

.drawer-cta__row{
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.drawer-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 12px 14px;

  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;

  border-radius: 2px;
  box-sizing: border-box;
  white-space: nowrap;
}

/* 上段2つ（白枠・透明） */
.drawer-cta__btn--outline{
  color: #fff;
  border: 2px solid #fff;
  background: #2D6540;
}

/* 下段（白ベタ・緑文字） */
.drawer-cta__btn--white{
  color: #2D6540;
  border: 2px solid #fff;
  background: #fff;
  gap: 14px;
}

.drawer-cta__icon{
  width: 24px;
  height: 24px;
  display: block;
}

.drawer-cta__text{
  display: inline-block;
}

