@charset "UTF-8";

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 99999;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  color: #000;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  align-items: center;
  background: #ccc;
  overflow: scroll;
}

/*
nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

nav.globalMenuSp ul li a {
	display: block;
	color: #000;
	padding: 1em 0;
	text-decoration: none;
}
*/

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
追加
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ハンバーガーメニュー */
.hamburger {
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  background: #cabab5;
  border-radius: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  left: 13px;
  background: #fff;
}

.hamburger span:nth-child(1) {
  top: 16px;
}

.hamburger span:nth-child(2) {
  top: 23px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active span:nth-child(1) {
  top: 23px;
  left: 14px;
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 23px;
}

/* 中身 */
nav.globalMenuSp {
  height: 100dvh;
  color: #282223;
  background: #FDF7F2;
  padding: 28.21vw 5.13vw 24.87vw;
  text-align: left;
}

nav.globalMenuSp .menus {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.56vw;
}

nav.globalMenuSp .menu {
  border-bottom: 1px solid rgba(202, 186, 181, 0.3);
  padding-bottom: 2.31vw;
}

nav.globalMenuSp .menu a {
  display: block;
  font-size: 4.62vw;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #282223;
}

nav.globalMenuSp .btns {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.85vw;
  margin-top: 8.97vw;
}

nav.globalMenuSp .btn a {
  min-width: 66.67vw;
  padding: 3.85vw 3.85vw 3.85vw 6.41vw;
  border-radius: 12.82vw;
}

nav.globalMenuSp .c_btn_text {
  font-size: 3.85vw;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

nav.globalMenuSp .c_btn .c_arrow {
  width: 7.69vw;
  height: 7.69vw;
}

nav.globalMenuSp .box {
  margin-top: 7.69vw;
}

nav.globalMenuSp .lists {
  gap: 7.69vw;
}

nav.globalMenuSp .list a {
  display: block;
  font-size: 3.08vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #282223;
}

nav.globalMenuSp .copyright {
  display: block;
  font-family: "urbane-rounded", sans-serif;
  font-size: 3.59vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #282223;
  margin-top: 3.85vw;
}

nav.globalMenuSp .illust {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

nav.globalMenuSp .illust img {
  display: block;
  width: 100%;
}