header {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  padding: 2rem 1em 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media all and (min-width: 1024px) {
  header.js-is-scroll {
    box-shadow: 1rem 0 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
@media all and (max-width: 1023px) {
  .front header, .under header {
    padding: 0;
  }
}
@media all and (max-width: 1023px) {
  .front header, .under header {
    background: var(--c_white);
  }
}
header > .wrapper {
  max-width: 123rem;
  margin: auto;
}
header > .wrapper .head-grid-wrap {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 2rem 0;
  grid-template-areas: "logo-wrap sub-nav-wrap" "main-nav-wrap main-nav-wrap";
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap {
    display: flex;
    flex-flow: column;
    gap: 0;
  }
}
header > .wrapper .head-grid-wrap .logo-wrap {
  grid-area: logo-wrap;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .logo-wrap {
    min-height: 5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 6rem 0 1rem;
  }
}
header > .wrapper .head-grid-wrap .logo-wrap .logo {
  width: 100%;
  max-width: 29rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .logo-wrap .logo {
    max-width: 26rem;
  }
}
header > .wrapper .head-grid-wrap .logo-wrap .logo picture {
  width: 100%;
}
header > .wrapper .head-grid-wrap .logo-wrap .logo picture img {
  width: 100%;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap {
    display: contents;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap {
    max-height: calc(100vh - var(--header-height));
    background: var(--c_white);
    display: grid;
    grid-template-rows: 0fr;
    position: absolute;
    top: var(--header-height);
    left: 0;
    transition: grid-template-rows 0.5s;
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap.open {
  grid-template-rows: 1fr;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .head-nav-inner-hidden {
  height: 100%;
  overflow: hidden;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .head-nav-inner-hidden {
    display: contents;
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .head-nav-inner-hidden .head-nav-inner-pad {
  height: 100%;
  padding: 0 1em 1lh;
  visibility: visible;
  overflow-y: auto;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .head-nav-inner-hidden .head-nav-inner-pad {
    display: contents;
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .main-nav {
  grid-area: main-nav; /*
@include OTHER(1023px){
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: stretch;
}
.main-nav-list {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	gap: 0 2rem;
	@include OTHER(1023px){
		flex-flow: column;
		justify-content: flex-start;
	}
	> li {
		font-size: 1.5rem;
		@include OTHER(1023px){
			border-bottom: .1rem solid var(--bdr_gray_pale);
		}
		&:first-child {
			@include OTHER(1023px){
				border-top: .1rem solid var(--bdr_gray_pale);
			}
		}
		> a {
			padding: 0 0 1em;
			@include MIN-OTHER(1024px){
				border-bottom: .3rem solid transparent;
				@include transition;
				&:hover, &:focus {
					color: var(--c_primary);
					border-color: var(--c_primary_light);
				}
			}
			@include OTHER(1023px){
				//padding: .5lh 1em;
				padding: .5lh 0;
			}
		}
		&.parent-item {
			@include MIN-OTHER(1024px){
				&:hover, &:focus {
					> a {
						color: var(--c_primary);
						border-color: var(--c_primary_light);
					}
					> .child-list {
						//display: block;
						//box-shadow: 0 0 1rem 0 rgb(0 0 0 / 10%);
					}
				}
			}
			&.open {
				> a {
					color: var(--c_primary);
					border-color: var(--c_primary_light);
				}									
				> .child-list {
					//display: block;
					//box-shadow: 0 0 1rem 0 rgb(0 0 0 / 10%);
					grid-template-rows: 1fr;
					.child-list-hidden {
						.child-list-pad {
							visibility: visible;
							transition-delay: 0s;
						}
					}
				}
			}
			> .child-list {
				width: calc(100vw - var(--scrollbar));
				max-height: calc(100vh - var(--header-height));
				//background: var(--c_white_alpha);
				background: var(--c_white);
				border-top: .1rem solid var(--bdr_gray_pale);
				//display: none;
				display: grid;
				grid-template-rows: 0fr;
				position: absolute;
				top: 100%;
				left: 0;
				//padding: 1.5em 1em;
				transition: grid-template-rows .5s;
				@include OTHER(1023px){
					max-height: none;
					position: static;
					border-top: none;
				}
				.child-list-hidden {
					height: 100%;
					overflow: hidden;
					@include OTHER(1023px){
						height: auto;
					}
					.child-list-pad {
						height: 100%;
						padding: 1.5em 1em;
						visibility: hidden;
						overflow-y: auto;
						transition-property: visibility;
						transition-delay: .5s;
						@include OTHER(1023px){
							height: auto;
							border-top: .1rem solid var(--bdr_gray_pale);
							padding: .5lh 1em;
						}
					}
				}
				.child-list-inner {
					max-width: 113rem;
					//max-height: calc(100vh - var(--header-height));
					//height: auto;
					margin: auto;
					position: relative;
					.close-btn {
						width: 4.5rem;
						height: 4.5rem;
						text-indent: 100%;
						background: var(--c_primary);
						border: .1rem solid var(--c_primary);
						border-radius: 100vw;
						position: absolute;
						top: -.5lh;
						left: calc(100% + .5lh);
						overflow: hidden;
						aspect-ratio: 1 / 1;
						@include MIN-OTHER(1024px){
							@include transition;
						}
						@include OTHER(1023px){
							display: none;
						}
						&::before, &::after {
							content: "";
							background: var(--c_white);
							position: absolute;
							top: 50%;
							left: 50%;
							translate: -50% -50%;
							rotate: 45deg;
							@include MIN-OTHER(1024px){
								@include transition;
							}
						}
						&::before {
							width: 35%;
							height: .2rem;
						}
						&::after {
							width: .2rem;
							height: 35%;
						}
						&:hover, &:focus {
							@include MIN-OTHER(1024px){
								background: var(--c_white);
							}
							&::before, &::after {
								@include MIN-OTHER(1024px){
									background: var(--c_primary);
									rotate: calc(45deg + 180deg);
								}
							}
						}
					}
					.child-list-inner-flex-wrap {
						display: flex;
						flex-flow: wrap;
						//justify-content: center;
						justify-content: flex-end;
						@include OTHER(1023px){
							justify-content: flex-start;
						}
						+ .child-list-inner-flex-wrap {
							margin-top: 6rem;
						}
						.child-list-inner-flex {
							display: flex;
							flex-flow: wrap;
							justify-content: flex-start;
							align-items: stretch;
							gap: 6rem;
							@include OTHER(1023px){
								gap: 1lh 6rem;
								flex-flow: column;
								justify-content: flex-start;
								align-items: stretch;
							}
							.child-nav {
								li {
									&:not(.child-ttl) {
										font-size: 1.4rem;
										+ li {
											margin-top: .5em;
										}
										a {
											display: flex;
											justify-content: flex-start;
											align-items: baseline;
											span {
												&.arrowhead-obj {
													translate: 0 .1em;
												}
											}
											@include MIN-OTHER(1024px){
												@include transition;
												&:hover, &:focus {
													color: var(--c_primary);
													span {
														&.arrowhead-obj {
															&::before {
																border-color: var(--c_primary);
															}
														}
													}
												}
											}
										}
									}
								}
							}
						}
					}
				}
				.child-ttl {
					font-size: 1.8rem;
					color: var(--c_primary);
					a {
						display: flex;
						justify-content: flex-start;
						align-items: baseline;
						gap: .5em;
					}
					+ * {
						margin-top: 1em;
					}
				}
			}
		}
	}
}*/
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav {
  grid-area: sub-nav;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0 2rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav {
    justify-content: center;
    align-items: center;
    padding: 1lh 0;
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5em;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap {
    display: none;
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap .font-size-ttl {
  font-size: 1.2rem;
  font-weight: 500;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap .font-size-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.25em;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap .font-size-list li .fs-btn {
  font-size: 1.2rem;
  line-height: 1;
  background: transparent;
  border: 0.1rem solid var(--c_primary);
  border-radius: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25em 0.5em;
  cursor: pointer;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap .font-size-list li .fs-btn.current {
  color: var(--c_white);
  background: var(--c_primary);
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap .font-size-list li .fs-btn {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap .font-size-list li .fs-btn:hover, header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .font-size-wrap .font-size-list li .fs-btn:focus {
    color: var(--c_white);
    background: var(--c_primary_pale);
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--c_primary);
  border-right: 0.1rem solid var(--c_primary);
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li:first-child {
  border-left: 0.1rem solid var(--c_primary);
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a {
  min-width: 8rem;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1em;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a span.icon {
  width: 2.27em;
  height: 2.27em;
  aspect-ratio: 1/1;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a span.icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_primary);
  display: block;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a span.icon::before {
    transition: all 0.3s;
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a span.icon-access::before {
  -webkit-mask: url(../img/dummy/icon/icon_access_line.svg) no-repeat center/contain;
          mask: url(../img/dummy/icon/icon_access_line.svg) no-repeat center/contain;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a span.icon-search::before {
  -webkit-mask: url(../img/dummy/icon/icon_search.svg) no-repeat center/contain;
          mask: url(../img/dummy/icon/icon_search.svg) no-repeat center/contain;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a:hover, header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a:focus {
    color: var(--c_white);
    background: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a:hover .icon::before, header > .wrapper .head-grid-wrap .head-nav-wrap .sub-nav .icon-nav-wrap li a:focus .icon::before {
    background: var(--c_white);
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav {
    position: static;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li.txt-vertical-writing {
    justify-content: center;
    align-items: flex-start;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li.txt-vertical-writing p {
    writing-mode: unset;
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel {
  font-size: 2.4rem;
  text-align: center;
  color: var(--c_white);
  background: var(--c_primary_light);
  border: 0.1rem solid var(--c_primary_light);
  border-radius: 0.5lh 0 0 0.5lh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5lh;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel .icon-tel::before {
  -webkit-mask: url(../img/dummy/icon/icon_tel.svg) no-repeat center/1em auto;
          mask: url(../img/dummy/icon/icon_tel.svg) no-repeat center/1em auto;
  background: var(--c_primary_light);
}
header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel .icon-tel {
  background: var(--c_white);
  border-radius: 100vw;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel:hover, header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel:focus {
    color: var(--c_primary_light);
    background: var(--c_white);
  }
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel:hover span.icon-obj, header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel:focus span.icon-obj {
    background: var(--c_primary_light);
  }
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel:hover span.icon-obj::before, header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel:focus span.icon-obj::before {
    background: var(--c_white);
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel {
    border-radius: 100vw;
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel span.icon-obj {
    transition: all 0.3s;
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel span.icon-obj::before {
    transition: all 0.3s;
  }
}
header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel span.num {
  font-family: var(--f_Oswald);
  letter-spacing: 0.1em;
}
header > .wrapper .head-grid-wrap .head-nav-wrap .fixed-nav .fixed-wrap li a.tel span.txt {
  font-size: 1.5rem;
  font-weight: 700;
  text-indent: -1em;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap {
  display: contents;
}
@media all and (max-width: 1023px) {
  .front header > .wrapper .head-grid-wrap .sp-contents-wrap, .under header > .wrapper .head-grid-wrap .sp-contents-wrap {
    width: 100%;
    border-top: 0.1rem solid var(--c_white);
    padding: 2rem;
  }
}
@media all and (max-width: 1023px) {
  .front header > .wrapper .head-grid-wrap .sp-contents-wrap, .under header > .wrapper .head-grid-wrap .sp-contents-wrap {
    max-height: calc(100svh - 100%);
    background: var(--c_white);
    position: absolute;
    top: 100%;
    left: 0;
    overflow-y: auto;
    display: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap {
  grid-area: main-nav-wrap;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav {
  grid-area: main-nav;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0 2rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list {
    flex-flow: column;
    justify-content: flex-start;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li {
  font-size: 1.5rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li {
    border-bottom: 0.1rem solid var(--bdr_gray_pale);
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li:first-child {
    border-top: 0.1rem solid var(--bdr_gray_pale);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li > a {
  padding: 0 0 1em;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li > a {
    border-bottom: 0.3rem solid transparent;
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li > a:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li > a:focus {
    color: var(--c_primary);
    border-color: var(--c_primary_light);
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li > a {
    padding: 0.5lh 0;
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item:hover > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item:focus > a {
    color: var(--c_primary);
    border-color: var(--c_primary_light);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item.open > a {
  color: var(--c_primary);
  border-color: var(--c_primary_light);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item.open > .child-list {
  grid-template-rows: 1fr;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item.open > .child-list .child-list-hidden .child-list-pad {
  visibility: visible;
  transition-delay: 0s;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list {
  width: calc(100vw - var(--scrollbar));
  max-height: calc(100vh - var(--header-height));
  background: var(--c_white);
  border-top: 0.1rem solid var(--bdr_gray_pale);
  display: grid;
  grid-template-rows: 0fr;
  position: absolute;
  top: 100%;
  left: 0;
  transition: grid-template-rows 0.5s;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list {
    max-height: none;
    position: static;
    border-top: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-hidden {
  height: 100%;
  overflow: hidden;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-hidden {
    height: auto;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-hidden .child-list-pad {
  height: 100%;
  padding: 1.5em 1em;
  visibility: hidden;
  overflow-y: auto;
  transition-property: visibility;
  transition-delay: 0.5s;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-hidden .child-list-pad {
    height: auto;
    border-top: 0.1rem solid var(--bdr_gray_pale);
    padding: 0.5lh 1em;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner {
  max-width: 113rem;
  margin: auto;
  position: relative;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn {
  width: 4.5rem;
  height: 4.5rem;
  text-indent: 100%;
  background: var(--c_primary);
  border: 0.1rem solid var(--c_primary);
  border-radius: 100vw;
  position: absolute;
  top: -0.5lh;
  left: calc(100% + 0.5lh);
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn {
    transition: all 0.3s;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn {
    display: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn::after {
  content: "";
  background: var(--c_white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn::after {
    transition: all 0.3s;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn::before {
  width: 35%;
  height: 0.2rem;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn::after {
  width: 0.2rem;
  height: 35%;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn:focus {
    background: var(--c_white);
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn:hover::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn:hover::after, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn:focus::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .close-btn:focus::after {
    background: var(--c_primary);
    rotate: 225deg;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap {
    justify-content: flex-start;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap + .child-list-inner-flex-wrap {
  margin-top: 6rem;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 6rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex {
    gap: 1lh 6rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) {
  font-size: 1.4rem;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) + li {
  margin-top: 0.5em;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) a {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) a span.arrowhead-obj {
  translate: 0 0.1em;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) a {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) a:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) a:focus {
    color: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) a:hover span.arrowhead-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-list-inner .child-list-inner-flex-wrap .child-list-inner-flex .child-nav li:not(.child-ttl) a:focus span.arrowhead-obj::before {
    border-color: var(--c_primary);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-ttl {
  font-size: 1.8rem;
  color: var(--c_primary);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-ttl a {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.5em;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap .main-nav .main-nav-list > li.parent-item > .child-list .child-ttl + * {
  margin-top: 1em;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .main-nav-wrap {
  /*
  .main-nav {
  	display: flex;
  	justify-content: flex-end;
  	align-items: stretch;
  	@include OTHER(1023px){
  		flex-flow: column;
  	}
  	> li {
  		position: relative;
  		&::after {
  			content: "";
  			width: 0;
  			height: 1.5em;
  			border-left: .1rem solid var(--c_txt);
  			display: block;
  			position: absolute;
  			top: 50%;
  			right: 0;
  			translate: 0 -50%;
  			@include OTHER(1023px){
  				content: none;
  			}
  		}
  		&:first-child {
  			&::before {
  				content: "";
  				width: 0;
  				height: 1.5em;
  				border-left: .1rem solid var(--c_txt);
  				display: block;
  				position: absolute;
  				top: 50%;
  				left: 0;
  				translate: 0 -50%;
  				@include OTHER(1023px){
  					content: none;
  				}
  			}
  		}
  		> a, > p {
  			min-width: 16.4rem;
  			font-weight: 300;
  			text-align: center;
  			@include OTHER(1023px){
  				color: var(--c_white);
  			}
  		}
  		@include MIN-OTHER($min_pc){
  			> a, > p {
  				@include transition;
  			}
  			&:hover, &:focus-within {
  				> a, > p {
  					color: var(--c_primary);
  					//background: rgb(255 255 255 / 25%);
  					border-color: var(--c_primary);
  				}
  			}
  		}
  	}
  	li {
  		display: flex;
  		flex-flow: column;
  		justify-content: stretch;
  		align-items: stretch;
  		a, p {
  			font-size: 1.7rem;
  			border-bottom: .3rem solid transparent;
  			padding: .5em 1rem;
  			@include OTHER(1023px){
  				text-align: left;
  				color: var(--c_white);
  				border: none;
  				//padding: 0;
  				padding: .5em 3rem .5em 0;

  			}
  			span {

  			}
  		}
  		&.parent-item {
  			position: relative;
  			//&.active {
  			@include MIN-OTHER($min_pc){
  				&:hover, &:focus-within {
  					.child-list {
  						display: block;
  						//&::before {
  						//	@include MIN-OTHER(1024px){
  						//		content: "";
  						//		width: 200vw;
  						//		height: 100%;
  						//		background: rgb(255 255 255 / 75%);
  						//		position: absolute;
  						//		top: 0;
  						//		left: 50%;
  						//		translate: -50% 0;
  						//	}
  						//}
  						//li {
  						//	@include MIN-OTHER(1024px){
  						//		position: relative;
  						//	}
  						//}
  					}
  				}
  			}
  			@include OTHER(1023px){
  				&.active {
  					.icon-toggle-obj-sp {
  						&::before, &::after {
  							rotate: 180deg;
  						}
  						&::after {
  							opacity: 0;
  						}
  					}
  				}
  			}
  			> a, > p{
  				position: relative; //.child-list -.3rem
  				z-index: 1; //.child-list -.3rem
  				@include OTHER(1023px){
  					//pointer-events: none;
  				}
  			}
  			.child-list {
  				width: max-content;
  				max-width: none;
  				min-width: 25rem;
  				//background: var(--c_white);
  				background: rgb(255 255 255 / 75%);
  				padding: 1em 0 0;
  				display: none;
  				position: absolute;
  				top: 100%;
  				left: 0;
  				//translate: 0 -.3rem;
  				@include MIN-OTHER($min_pc){
  					@include transition;
  				}
  				@include OTHER(1023px){
  					width: 100%;
  					background: none;
  					padding: 0;
  					position: static;
  					//display: block;
  				}
  				li {
  					&:not(.child-ttl) + li {
  						border-top: .1rem solid var(--bdr_gray);
  						@include OTHER(1023px){
  							border: none;
  						}
  					}
  					&.child-ttl {
  						border-bottom: .1rem solid var(--c_primary);
  						@include OTHER(1023px){
  							border: none;
  							position: relative;
  						}
  						a, p {
  							font-size: 1.5rem;
  							font-weight: 500;
  							color: var(--c_primary);
  							@include MIN-OTHER(1024px){
  								pointer-events: none;
  							}
  							@include OTHER(1023px){
  								color: var(--c_white);
  								padding-right: 3rem;
  							}
  							span {

  							}
  						}
  					}
  					a, p {
  						font-size: 1.3rem;
  						display: flex;
  						justify-content: flex-start;
  						align-items: center;
  						gap: 1rem;
  						padding: 1em 2rem;
  						@include OTHER(1023px){
  							padding: 1em 0 1em 1em;
  						}
  						span {
  							&.arrowhead-obj {
  								&::before {
  									@include OTHER(1023px){
  										border-color: var(--c_white)
  									}
  								}
  							}
  						}
  					}
  					a {
  						@include MIN-OTHER($min_pc){
  							@include transition;
  							&:hover, &:focus-within {
  								color: var(--c_primary);
  								span {
  									&.arrowhead-obj {
  										&::before {
  											border-color: var(--c_primary);
  										}
  									}
  								}
  							}
  						}
  					}
  				}
  			}
  		}
  	}
  	.icon-toggle-obj-sp, .icon-arrow-obj-sp {
  		width: 2rem;
  		height: 2rem;
  		text-indent: 100%;
  		border: .1rem solid var(--c_white);
  		border-radius: 100vw;
  		position: absolute;
  		top: 50%;
  		right: 0;
  		translate: 0 -50%;
  		overflow: hidden;
  		@include MIN-OTHER(1024px){
  			display: none;
  		}
  	}
  	.icon-toggle-obj-sp {
  		&::before, &::after {
  			content: "";
  			position: absolute;
  			top: 50%;
  			left: 50%;
  			translate: -50% -50%;
  			background: var(--c_white);
  			@include transition;
  		}
  		&:before {
  			width: .8rem;
  			height: .1rem;
  		}
  		&::after {
  			width: .1rem;
  			height: .8rem;
  		}
  	}
  	.icon-arrow-obj-sp {
  		&::before {
  			content: "";
  			width: .5rem;
  			height: .5rem;
  			border-top: .1rem solid var(--c_white);
  			border-right: .1rem solid var(--c_white);
  			position: absolute;
  			top: 50%;
  			left: 50%;
  			translate: calc(-50% - .1rem) -50%;
  			rotate: 45deg;
  		}
  	}
  }*/
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap {
  grid-area: sub-nav-wrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem 0.5rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap {
    flex-flow: column;
    padding-top: 5rem;
    position: relative;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap::before {
    content: "";
    width: calc(100vw - var(--scrollbar));
    height: 0;
    border-top: 0.1rem solid var(--c_white);
    position: absolute;
    top: 2rem;
    left: -2rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sp-sub-nav-contents-wrap {
  display: contents;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sp-sub-nav-contents-wrap {
    width: 100%;
    display: flex;
    flex-flow: column-reverse;
    gap: 2.5rem 0.5rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 1rem 0.5rem;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav {
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem 2.5rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item {
  position: relative;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item:hover .child-list, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item:focus-within .child-list {
    display: block;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item > p {
  position: relative;
  z-index: 1;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list {
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list {
    transition: all 0.3s;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list {
    width: 100%;
    max-width: 100%;
    display: block;
    position: static;
    translate: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li:not(.child-ttl) + li {
  border-top: 0.1rem solid var(--bdr_gray);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li.child-ttl {
  border-bottom: 0.1rem solid var(--c_primary);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li.child-ttl a, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li.child-ttl p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c_primary);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li p {
  font-size: 1.3rem;
  padding: 1em 2rem;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li.parent-item .child-list li a:focus-within {
    color: var(--c_primary);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] {
  width: 3.7rem;
  height: 3.7rem;
  background: var(--c_primary);
  border: 0.1rem solid var(--c_primary);
  border-radius: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] {
    width: 5rem;
    height: 5rem;
    background: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a::before {
  content: "";
  width: 1lh;
  height: 1lh;
  background: var(--c_white);
  display: block;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a::before {
    width: 100%;
    height: 100%;
    background: var(--c_primary);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a span {
  position: absolute;
  top: 100%;
  left: 100%;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-instagram > a {
  background: linear-gradient(90deg, #d300c5, #ff0069, #ff7a00);
  border-color: var(--c_white);
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-instagram > a {
    transition: all 0.3s;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-instagram > a::before {
  -webkit-mask: url(../img/icon/icon_instagram.svg) no-repeat center/contain;
          mask: url(../img/icon/icon_instagram.svg) no-repeat center/contain;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-instagram > a::before {
    transition: all 0.3s;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-instagram > a::before {
    -webkit-mask: url(../img/icon/icon_instagram.svg) no-repeat center/50% auto;
            mask: url(../img/icon/icon_instagram.svg) no-repeat center/50% auto;
    background: var(--c_white);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-access > a::before {
  -webkit-mask: url(../img/dummy/icon/icon_access.svg) no-repeat center/contain;
          mask: url(../img/dummy/icon/icon_access.svg) no-repeat center/contain;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-access > a::before {
    -webkit-mask: url(../img/dummy/icon/icon_access_line.svg) no-repeat center/50% auto;
            mask: url(../img/dummy/icon/icon_access_line.svg) no-repeat center/50% auto;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-contact > a::before {
  -webkit-mask: url(../img/dummy/icon/icon_contact.svg) no-repeat center/contain;
          mask: url(../img/dummy/icon/icon_contact.svg) no-repeat center/contain;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-contact > a::before {
    -webkit-mask: url(../img/dummy/icon/icon_contact_line.svg) no-repeat center/50% auto;
            mask: url(../img/dummy/icon/icon_contact_line.svg) no-repeat center/50% auto;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search {
  background: var(--c_txt);
  border: 0.1rem solid var(--c_txt);
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search {
    width: 100%;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: auto;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search > a {
    display: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search > a::before {
  -webkit-mask: url(../img/icon/icon_search.svg) no-repeat center/contain;
          mask: url(../img/icon/icon_search.svg) no-repeat center/contain;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list {
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list {
    background: none;
    translate: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap {
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap {
    border-radius: 1rem;
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap {
    width: 100%;
    max-width: 33.5rem;
    border-radius: 0.5rem;
    margin: auto;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box {
  display: flex;
  justify-content: stretch;
  align-items: center;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input {
  width: 100%;
  border: none;
  padding: 1rem 4rem 1rem 1rem;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input::-moz-placeholder {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c_placeholder);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input::placeholder {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c_placeholder);
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input::-moz-placeholder {
    font-size: 1.8rem;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box input::placeholder {
    font-size: 1.8rem;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit {
  width: auto;
  height: 100%;
  text-indent: 100%;
  color: transparent;
  background: none;
  border: none;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  cursor: pointer;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit::before {
  content: "";
  width: 1lh;
  height: 1lh;
  -webkit-mask: url(../img/icon/icon_search.svg) no-repeat center/contain;
          mask: url(../img/icon/icon_search.svg) no-repeat center/contain;
  background: var(--c_txt);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit::before {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit:focus-within {
    background: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit:hover::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-].icon-search .child-list > li.search-box-wrap .search-box .search-submit:focus-within::before {
    background: var(--c_white);
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-] > a::before {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:focus-within {
    background: var(--c_white);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:hover > a::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:focus-within > a::before {
    background: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:hover.icon-instagram > a, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:focus-within.icon-instagram > a {
    background: var(--c_white);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:hover.icon-instagram > a::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:focus-within.icon-instagram > a::before {
    background: linear-gradient(90deg, #d300c5, #ff0069, #ff7a00);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:hover.icon-search > a::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav > li[class^=icon-]:focus-within.icon-search > a::before {
    background: var(--c_txt);
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav.sp-show-link {
  gap: 1em;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav.sp-show-link {
    display: none;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .sub-nav-wrap .sub-nav.sp-show-link li {
  font-size: 1.2rem;
  color: var(--c_white);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav {
    position: static;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li.txt-vertical-writing {
    justify-content: center;
    align-items: flex-start;
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li.txt-vertical-writing p {
    writing-mode: unset;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel {
  font-size: 2.4rem;
  text-align: center;
  color: var(--c_white);
  background: var(--c_primary);
  border: 0.1rem solid var(--c_primary);
  border-radius: 0.5lh 0 0 0.5lh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5lh;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel .icon-tel::before {
  -webkit-mask: url(../img/dummy/icon/icon_tel.svg) no-repeat center/1em auto;
          mask: url(../img/dummy/icon/icon_tel.svg) no-repeat center/1em auto;
  background: var(--c_primary);
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel .icon-tel {
  background: var(--c_white);
  border-radius: 100vw;
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel {
    transition: all 0.3s;
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel:hover, header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel:focus {
    color: var(--c_primary_light);
    background: var(--c_white);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel:hover span.icon-obj, header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel:focus span.icon-obj {
    background: var(--c_primary);
  }
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel:hover span.icon-obj::before, header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel:focus span.icon-obj::before {
    background: var(--c_white);
  }
}
@media all and (max-width: 1023px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel {
    border-radius: 100vw;
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel span.icon-obj {
    transition: all 0.3s;
  }
}
@media all and (min-width: 1024px) {
  header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel span.icon-obj::before {
    transition: all 0.3s;
  }
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel span.num {
  font-family: var(--f_Oswald);
  letter-spacing: 0.1em;
}
header > .wrapper .head-grid-wrap .sp-contents-wrap .fixed-nav .fixed-wrap li a.tel span.txt {
  font-size: 1.5rem;
  font-weight: 700;
  text-indent: -1em;
}

#nav-toggle, #nav-toggle span {
  width: 100%;
  display: block;
  transition: all 0.4s;
  z-index: 9999;
}

#nav-toggle {
  width: 5rem;
  height: 5rem;
  background: var(--c_primary);
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  cursor: pointer;
}
@media all and (max-width: 1023px) {
  #nav-toggle {
    display: block;
  }
}
#nav-toggle > span {
  width: 3rem;
  height: 0.2rem;
  background: var(--c_white);
  position: absolute;
  left: 50%;
  rotate: 0;
  translate: -50% -50%;
}
#nav-toggle > span:nth-of-type(1) {
  top: 25%;
}
#nav-toggle > span:nth-of-type(2) {
  top: 50%;
}
#nav-toggle > span:nth-of-type(3) {
  width: 1.8rem;
  bottom: 25%;
  translate: calc(-50% - 0.6rem) -50%;
}
#nav-toggle.active {
  background: transparent;
}
.front #nav-toggle.active > span, .under #nav-toggle.active > span {
  background: var(--c_primary);
}
#nav-toggle.active > span:nth-of-type(1) {
  top: 50%;
  translate: -50% -50%;
  rotate: -45deg;
}
#nav-toggle.active > span:nth-of-type(2) {
  width: 0;
  rotate: 0;
}
#nav-toggle.active > span:nth-of-type(3) {
  width: 3rem;
  top: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}

@media all and (min-width: 1024px) {
  .head-nav-wrap {
    display: contents;
  }
}
@media all and (max-width: 1023px) {
  .head-nav-wrap {
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    background: var(--c_white);
    display: grid;
    grid-template-rows: 0fr;
    position: absolute;
    top: 100%;
    left: 0;
    transition: grid-template-rows 0.5s;
    overflow: hidden;
  }
}
@media all and (max-width: 1023px) {
  .head-nav-wrap.open {
    grid-template-rows: 1fr;
  }
}
.head-nav-wrap .head-nav-inner-hidden {
  height: 100%;
  overflow: hidden;
}
@media all and (min-width: 1024px) {
  .head-nav-wrap .head-nav-inner-hidden {
    display: contents;
  }
}
.head-nav-wrap .head-nav-inner-pad {
  height: 100%;
  overflow-y: auto;
}
@media all and (min-width: 1024px) {
  .head-nav-wrap .head-nav-inner-pad {
    display: contents;
  }
}
@media all and (max-width: 1023px) {
  .head-nav-wrap .head-nav-inner-pad {
    padding: 0;
  }
}
/*# sourceMappingURL=maps/header.css.map */
