@charset "utf-8";

/* 
 * Reset
 * ==================================================================================================== */
:root {
	--font_serif: 'Shippori Mincho B1', serif;
	--font-sans_serif: 'Noto Sans JP', sans-serif;
	--font_gara: 'EB Garamond', serif;
	--white: #fff;
	--black: #000;
	--bourgogne_light: #DAC6CF;
	--bourgogne: #6D1A3F;
	--gold: #AA8746;
	--red: #A81313;
	--blue: #2431A2;
	--gray: #EDF0F2;
	--gray_dark: #444;
	--gray_light: #F7F8F9;
	--header_h: 100px;
	--max_w: 1080px;
	--easing: cubic-bezier(.8,0,.4,1);
	
	@media screen and (max-width: 999px) {
		--header_h: 60px;
	}
}

/* 
 * Reset
 * ==================================================================================================== */
*:where(:not(iframe, canvas, img, svg, video, summary):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*:before,
*:after {
  font-family: var(--font_serif);
  box-sizing: border-box;
}

*:where(iframe, canvas, img, svg, video) {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

*:where(:focus-visible) {
  outline: 3px solid v.$color-blue;
  outline-offset: 2px;
  border-radius: 4px;
}

*:where(input, button, textarea, select) {
  cursor: auto;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

*:where(a, button, [role="button"]) {
  cursor: pointer;
}

::selection {
  color: var(--black);
  background-color: var(--bourgogne_light);
}

html {
	font-size: 62.5%;
	background-color: var(--white);
	overflow-y: scroll;
	overflow-x: hidden;
	cursor: default;
	scroll-behavior: smooth;
}

.g-body {
	color: var(--black);
	font-size: 1.6rem;
	font-family: var(--font_serif);
	font-feature-settings: 'palt';
	line-height: 1;
	letter-spacing: 0;
	width: 100%;
	margin: 0;
	padding: 0;
}

input,
textarea,
button,
select,
option,
textarea {
	font-family: var(--font-family);
	font-weight: 300;
	margin: 0;
	padding: 0;
	outline: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

a:link,
a:before,
a:after,
a img,
a svg,
input[type='image'],
input[type='submit'],
button,
button:before,
button:after {
	color: var(--gray_dark);
	text-decoration: none;
	transition: .2s var(--easing);
}

a:visited {
	color: var(--gray_dark);
}

a:hover {
	text-decoration: none;
	opacity: .8;
}

a:focus {
	outline: none;
}

a:focus-visible,
button:focus-visible {
	outline: solid;
	outline-color: var(--blue);
}

img {
	width: 100%;
	max-width: none;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

svg {
	width: 100%;
	height: auto;
}

button {
	margin:0;
	padding:0;
	border:0;
	background:transparent;
}

sup {
	font-size: .5em;
	line-height: 1;
	letter-spacing: .1em;
	vertical-align: text-top;
}

sub {
	font-size: .75em;
	line-height: 1;
	letter-spacing: .1em;
	vertical-align: 0;
}

strong,
em,
b {
	font-weight: 700;
}



/* 
* Utility
* ==================================================================================================== */
.u-contents {
	position: relative;
}


.u-inner {
	max-width: calc(var(--max_w) + (30px * 2));
	margin-right: auto;
	margin-left: auto;
	padding: 0 60px;
	position: relative;
}

.u-show_mobile {
	display: none !important;
}

.u-hide_mobile {
	display: block !important;
}

.u-show_tablet {
	display: none !important;
}

.u-hide_tablet {
	display: block !important;
}

.u-cover {
	background: rgba(50,50,50,.75);
	position: fixed;
	visibility: hidden;
	opacity: 0;
	transition: .6s var(--easing);
	z-index: 500;
	inset: 0;
}

.active_modal .u-cover {
	opacity: 1;
	visibility: visible;
}

.u-font_10 { font-size: 1rem !important; }
.u-font_11 { font-size: 1.1rem !important; }
.u-font_12 { font-size: 1.2rem !important; }
.u-font_13 { font-size: 1.3rem !important; }
.u-font_14 { font-size: 1.4rem !important; }
.u-font_15 { font-size: 1.5rem !important; }
.u-font_16 { font-size: 1.6rem !important; }
.u-font_17 { font-size: 1.7rem !important; }
.u-font_18 { font-size: 1.8rem !important; }
.u-font_19 { font-size: 1.9rem !important; }
.u-font_20 { font-size: 2rem !important; }
.u-font_21 { font-size: 2.1rem !important; }
.u-font_22 { font-size: 2.2rem !important; }
.u-font_23 { font-size: 2.3rem !important; }
.u-font_24 { font-size: 2.4rem !important; }
.u-font_25 { font-size: 2.5rem !important; }
.u-font_26 { font-size: 2.6rem !important; }
.u-font_27 { font-size: 2.7rem !important; }
.u-font_28 { font-size: 2.8rem !important; }
.u-font_29 { font-size: 2.9rem !important; }
.u-font_30 { font-size: 3rem !important; }

.u-font_light {
	font-weight: 300 !important;
}

.u-font_normal {
	font-weight: 400 !important;
}

.u-font_middle {
	font-weight: 500 !important;
}

.u-font_bold {
	font-weight: 700 !important;
}

.u-font_italic {
	font-style: italic;
}

.u-font_rl {
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}





.u-align_right {
	text-align: right !important;
}

.u-align_center {
	text-align: center !important;
}

.u-align_left {
	text-align: left !important;
}

.u-vertical_align_top {
	vertical-align: top !important;
}

.u-float__right {
	float: right !important;
}

.u-float__left {
	float: left !important;
}

.u-display--block {
	display: block;
}

.u-display--inline-block {
	display: inline-block;
}

.u-display--none {
	display: none;
}

.u-color_white {
	color: var(--white) !important;
}

.u-color_black {
	color: var(--black) !important;
}

.u-color_gold {
	color: var(--gold) !important;
}

.u-color_gray {
	color: var(--gray) !important;
}

.u-color_blue {
	color: var(--blue) !important;
}

.u-color_red {
	color: var(--red) !important;
}

.u-color_orange {
	color: #e1521b !important;
}

.u-image {
	margin-bottom: 1em;
}

.u-text {
	line-height: 2;
}

.u-text b {
	font-weight: 700;
}

.u-text + * {
	margin-top: 25px;
}

.u-text--read {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.75;
}

.u-text_main_read {
	font-size: 1.6rem;
	font-weight: 400;
}

.u-text-deco {
	text-decoration: underline;
}

.u-text-deco--none {
	text-decoration: none;
}

.u-list {
	margin-top: 1.5em;
}

.u-list li {
	line-height: 1.75;
	margin: .5em 0 0;
	padding-left: 1em;
	position: relative;
}

.u-list li:first-child {
	margin-top: 0;
}

.u-list li:before {
	content: '';
	width: .45em;
	height: .45em;
	background: var(--blue);
	border-radius: 50%;
	position: absolute;
	top: .6em;
	left: 0;
}

.u-list li i {
	color: var(--blue);
	vertical-align: top;
	white-space: nowrap;
	padding: 0 .25em 0 0;
	display: table-cell;
}

.u-list li span {
	vertical-align: top;
	display: table-cell;
}

.u-list li ul {
	margin-top: .25em;
}

.u-list li ul li {
	margin-top: .25em;
}

.u-list li ul li:before {
	width: 6px;
	height: 6px;
	background: #7A828F;
}

.u-list.u-flex.-row2 > li:nth-child(n + 3) {
	margin-top: 15px;
}

.u-list_num {
	display: table
}

.u-list_num li {
	padding-left: 0;
}

.u-list_num li:before {
	display: none;
}

.u-list_note {
	display: table
}

.u-list_note li {
	font-size: 1.4rem;
	padding-left: 0;
}

.u-list_note li:before {
	display: none;
}

.u-list_note li i {
	color: var(--red);
}

.u-list--inline li {
	display: inline-block;
}

.u-list--inline li:nth-child(n + 1) {
	margin-right: 1em;
}

.u-list.u-font--14 li {
	padding-left: .75em;
}

.u-list.u-font--14 li:before {
	width: 6px;
	height: 6px;
}

/* Template Table */
.u-intoScroll-desc {
	display: none;
}

.u-table_corner + .u-table_corner {
	margin-top: 60px;
}

.u-table_corner .u-table {
	table-layout: fixed;
	border-top: 1px solid var(--gray-dark);
}

.u-table_corner th {
	color: var(--black);
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
	word-wrap: break-word;
	vertical-align: middle;
	padding: 1.25em 1em;
	background: var(--gray-light);
	border-bottom: 1px solid var(--gray-dark);
	position: relative;
}

:lang(en) .u-table_corner th {
	line-height: 1.35
}

.u-table_corner td {
	line-height: 1.5;
	vertical-align: middle;
	word-wrap: break-word;
	padding: 1.25em 1em;
	border-bottom: 1px solid var(--gray-dark);
	border-left: 1px solid var(--gray-dark);
	position: relative;
}

:lang(en) .u-table_corner td {
	line-height: 1.35
}

.u-table_corner td > * {
	margin-top: 0;
}

.u-table_corner_head th {
	background: var(--gray);
}

.u-table_corner_head th:not(:first-child) {
	border-left: 1px solid var(--gray-dark);
}

.u-table_corner_head th.border-left {
	border-left: 1px solid var(--gray-dark);
}

.u-table_corner-important th {
	font-weight: 700;
	background: #E2F0FB;
}

.u-table_corner-important td {
	font-weight: 700;
	background: #E2F0FB;
}

.u-table_corner .border-left-none {
	border-left: 0;
}

.u-table_corner .border-left {
	border-left: 1px solid var(--gray-dark) !important;
}

.u-table_corner.-compact th,
.u-table_corner.-compact td {
	font-size: 1.4rem;
	line-height: 1.35;
	padding: .75em .8em .8em .8em;
}

.u-table_corner .u-icon_arrow_basic--after:after {
	vertical-align: -.45em;
	transform-origin: top left;
	transform: scale(.85);
}

.u-table .u-font--rl {
	letter-spacing: .5em;
}

:lang(en) .u-table .u-font--rl {
	letter-spacing: 0;
}

.u-table .u-font--rl {
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	white-space: pre;
	display:inline-block;
}

.u-table_corner .u-align--center th {
	text-align: center;
	padding-right: 1em;
	padding-left: 1em;
}

.u-table_corner .u-align--center td {
	text-align: center;
	padding-right: .5em;
	padding-left: .5em;
}

.u-table_corner th sup {
	font-weight: 400;
}

.u-table_corner .u-icon--pdf:after,
.u-table_corner .u-icon--window:after {
	vertical-align: -.2em;
}

.u-table_corner .u-table small {
	vertical-align: baseline;
}

.u-intoScroll__inner {
	overflow-x: auto;
	overflow-y: visible;
	position: relative;
	-webkit-overflow-scrolling: touch;
}


/*button*/
.u-button {
	
	& > * {
		text-align: left;
		white-space: nowrap;
		min-width: calc(100% / 3);
		display: inline-block;
		min-height: 64px;
		background: var(--gold);
		position: relative;
		overflow: hidden;
		transform: translateZ(0);
		
		&:before {
			content: '';
			width: 110%;
			height: 110%;
			display: block;
			background: var(--bourgogne);
			transform-origin: left center;
			transform: translate(-100%,-50%);
			position: absolute;
			top: 50%;
			left: 0;
			transition-duration: .6s;
			opacity: 0;
		}
		
		&:after {
			content: url("/house/yamatedaiminori/_assets/img/common/arrow_01_black.svg");
			position: absolute;
			top: 50%;
			right: 25px;
			transform: translate(0,-50%);
			filter: invert(100%);
			opacity: .75;
			z-index: 10;
			transition-delay: .2s;
		}
		
		&:hover {
			opacity: 1;
			
			&:before {
				transform-origin: right center;
				transform: translate(0,-50%);
				opacity: 1;
			}
			
			&:after {
				transition-delay: .6s;
			}
		}
		
		&:hover:after {
			right: 20px;
		}
		
		& > * {
			color: var(--white);
			font-weight: 700;
			line-height: 1.35;
			margin: 0 0 0 30px;
			display: inline-block;
			position: absolute;
			top: calc(50% - .1em);
			left: 0;
			transform: translate(0,-50%);
			z-index: 10;
			transition: .3s;
		}
		
		&.u-link_border {
			
			& .border {
				background-image: linear-gradient(var(--white), var(--white));
			}
		}
	}
	
	@media screen and (max-width: 767px) {
		& > * {
			min-width: 75%;
		}
	}
}


.u-arrow {
	vertical-align: bottom;
	
	&:before {
		content: url(/house/yamatedaiminori/_assets/img/common/arrow_01_black.svg"");
		vertical-align: -.25em;
		margin: 0 4px 0 0;
		display: inline-block;
	}
	
	&.u-link_border:before {
		margin-bottom: -.5em;
	}
}


.u-link_border {
	
	& .border {
		background-image: linear-gradient(var(--black),var(--black));
		background-size: 0 1px;
		background-position: bottom right;
		background-repeat: no-repeat;
		padding-bottom: 2px;
		transition: background-size .4s var(--easing);
	}
	
	&:hover {
		
		& .border {
			text-decoration: none;
			background-size: 100% 1px;
			background-position: bottom left;
		}
	}
	
}

.u-title_head {
	padding: 120px 0 0;
	position: relative;
	
	@media screen and (max-width: 999px) {
		padding-top: 100px;
	}
	
	& + * {
		margin-top: 80px;
		
		@media screen and (max-width: 999px) {
			margin-top: 60px;
		}
	}
	
	& .u-title_en {
		color: var(--gold);
		font-size: 5rem;
		padding-right: 0;
		padding-left: 0;
		
		&:after {
			content: attr(data-num);
			font-family: var(--font_bodoni);
			font-size: 3em;
			font-weight: 700;
			margin: -.6em 0 0 .1em;
			position: absolute;
			left: 0;
			opacity: .1;
		}
		
		@media screen and (max-width: 999px) {
			&:after {
				font-size: 3em;
			}
		}
		
		& b {
			display: inline-block;
			position: relative;
			
			@media screen and (max-width: 999px) {
				font-size: 3.6rem;
			}
			
			@media screen and (max-width: 999px) {
				&:before {
					margin-top: 2.25em;
				}
			}
			
			&:after {
				content: '';
				width: 1px;
				height: 2em;
				margin: .25em -.5em 0 0;
				display: block;
				background: var(--gold);
				position: absolute;
				top: 0;
				right: 0;
				transform: skewX(-10deg);
				opacity: .25;
			}
			
			@media screen and (max-width: 999px) {
				&:after {
					height: 1.5em;
				}
			}
		}
	}
	
	& .title {
		color: var(--black);
		font-size: 3.2rem;
		font-weight: 600;
		line-height: 1.5;
		letter-spacing: .05em;
		text-align: center;
		margin: -1.75em 0 0 1em;
		
		@media screen and (max-width: 999px) {
			font-size: 2.6rem;
			margin-top: 1em;
			margin-left: 0;
		}
	}
}

.u-title__hi {
	text-align: center;
	margin: 80px 0 0;
	position: relative;
	
	& + * {
		margin-top: 60px;
	}
	
	&:after {
		content: '';
		width: 100%;
		height: 1px;
		margin: 1.25em 0 0;
		display: block;
		opacity: .5;
		background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(109,26,63,1) 50%, rgba(255,255,255,1) 100%);
	}
	
	.name {
		font-size: 2.4rem;
		font-weight: 500;
		letter-spacing: .1em;
		line-height: 1.5;
			
		@media screen and (max-width: 999px) {
			font-size: 2rem;
		}
	}
}




.u-position__center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.u-position__absolute {
	position: absolute;
}

.u-position__fixed {
	position: fixed;
}

.u-position__relative {
	position: relative;
}

.u-flex {
	display: flex;
	flex-wrap: wrap;
}

.u-flex.-center {
	justify-content: center;
}

.u-flex.-right {
	justify-content: flex-end;
}

.u-flex.-middle {
	align-items: center;
}

.u-flex.-bottom {
	align-items: flex-end;
}

.u-flex.-reverse {
	flex-direction: row-reverse;
}

.u-flex.-between {
	justify-content: space-between;
}

.u-mgt_125 { margin-top: 125px !important; }
.u-mgt_120 { margin-top: 120px !important; }
.u-mgt_115 { margin-top: 110px !important; }
.u-mgt_110 { margin-top: 110px !important; }
.u-mgt_105 { margin-top: 100px !important; }
.u-mgt_100 { margin-top: 100px !important; }
.u-mgt_95 { margin-top: 95px !important; }
.u-mgt_90 { margin-top: 90px !important; }
.u-mgt_85 { margin-top: 85px !important; }
.u-mgt_80 { margin-top: 80px !important; }
.u-mgt_75 { margin-top: 75px !important; }
.u-mgt_70 { margin-top: 70px !important; }
.u-mgt_65 { margin-top: 65px !important; }
.u-mgt_60 { margin-top: 60px !important; }
.u-mgt_55 { margin-top: 55px !important; }
.u-mgt_50 { margin-top: 50px !important; }
.u-mgt_45 { margin-top: 45px !important; }
.u-mgt_40 { margin-top: 40px !important; }
.u-mgt_35 { margin-top: 35px !important; }
.u-mgt_30 { margin-top: 30px !important; }
.u-mgt_25 { margin-top: 25px !important; }
.u-mgt_20 { margin-top: 20px !important; }
.u-mgt_15 { margin-top: 15px !important; }
.u-mgt_10 { margin-top: 10px !important; }
.u-mgt_5 { margin-top: 5px !important; }
.u-mgt_0 { margin-top: 0 !important; }
.u-mgt_-10 { margin-top: -10px !important; }
.u-mgt_-20 { margin-top: -20px !important; }
.u-mgt_-30 { margin-top: -30px !important; }
.u-mgt_-40 { margin-top: -40px !important; }
.u-mgt_-50 { margin-top: -50px !important; }
.u-mgt_-60 { margin-top: -60px !important; }
.u-mgt_-70 { margin-top: -70px !important; }

.u-width_100 { width: 100% !important; }
.u-width_95 { width: 95% !important; }
.u-width_90 { width: 90% !important; }
.u-width_85 { width: 85% !important; }
.u-width_80 { width: 80% !important; }
.u-width_75 { width: 75% !important; }
.u-width_70 { width: 70% !important; }
.u-width_65 { width: 65% !important; }
.u-width_60 { width: 60% !important; }
.u-width_55 { width: 55% !important; }
.u-width_50 { width: 50% !important; }
.u-width_45 { width: 45% !important; }
.u-width_40 { width: 40% !important; }
.u-width_35 { width: 35% !important; }
.u-width_40 { width: 40% !important; }
.u-width_30 { width: 30% !important; }
.u-width_25 { width: 25% !important; }
.u-width_20 { width: 20% !important; }
.u-width_15 { width: 15% !important; }
.u-width_10 { width: 10% !important; }

.u-anchor_nav {
	padding: 80px 0 0;
	
	@media screen and (max-width: 999px) {
		padding-top: 60px;
	}
	
	& ul {
		display: flex;
		justify-content: center;
		
		@media screen and (max-width: 767px) {
			flex-wrap: wrap;
		}
	}
	
	& li {
		margin: 0 20px;
		
		@media screen and (max-width: 999px) {
			margin-right: 5px;
			margin-left: 5px;
			
			@media screen and (max-width: 767px) {
				width: 100%;
				margin-inline: 0;
				padding-bottom: 1em;
			}
		}
	}
	
	& a {
		line-height: 1.35;
		letter-spacing: .1em;
		padding: 0 0 0 28px;
		display: inline-block;
		position: relative;
		
		@media screen and (max-width: 999px) {
			font-size: 1.4rem;
			
			@media screen and (max-width: 767px) {
				width: 100%;
			}
		}
		
		&:hover {
			color: var(--gold);
			opacity: 1;
		}
		
		&:before {
			content: url("/house/yamatedaiminori/_assets/img/common/arrow_01_black.svg");
			margin: -.1em 0 0;
			transform: rotate(90deg);
			position: absolute;
			top: 0;
			left: 0;
		}
		
		& .border {
			background-image: linear-gradient(var(--gold), var(--gold));
		}
	}
	
	& .green a {
		
		&:hover {
			color: #22AC38;
		}
		
		&:before {
			content: url("/house/yamatedaiminori/_assets/img/common/arrow_01_black.svg");
		}
		
		& .border {
			background-image: linear-gradient(#22AC38, #22AC38);
		}
	}
	
	& .red a {
		
		&:hover {
			color: #C30D23;
		}
		
		&:before {
			content: url("/house/yamatedaiminori/_assets/img/common/arrow_01_black.svg");
		}
		
		& .border {
			background-image: linear-gradient(#C30D23, #C30D23);
		}
	}
	
	& .blue a {
		
		&:hover {
			color: #036EB8;
		}
		
		&:before {
			content: url("/house/yamatedaiminori/_assets/img/common/arrow_01_black.svg");
		}
		
		& .border {
			background-image: linear-gradient(#036EB8, #036EB8);
		}
	}
	
	& .purple a {
		
		&:hover {
			color: #601986;
		}
		
		&:before {
			content: url("/house/yamatedaiminori/_assets/img/common/arrow_01_black.svg");
		}
		
		& .border {
			background-image: linear-gradient(#601986, #601986);
		}
	}
}

.u-sp-zoom {
	font-size: 1rem;
	text-align: center;
	padding: 15px 0;
	display: block;
	opacity: .75;
}








/*
 * Layout
 * ==================================================================================================== */
.g-wrapper {
	position: relative;
	z-index: 10;
}

.g-container {
	position: relative;
	z-index: 10;
}

.g-main {
	padding: 0 0 100px;
	background: url("/house/yamatedaiminori/_assets/img/common/bg_03.webp") no-repeat right bottom / 600px auto;
	position: relative;
	z-index: 10;
	
	@media screen and (max-width: 999px) {
		background-size: 75% auto;
	}
}



/*
 * Breadcrumb
 * ------------------------------------------------------------------------------------------------ */
.g-breadcrumb {
	width: calc(100% - (360px + (60px * 2)));
	max-width: calc(var(--max_w) + (60px * 2));
	margin: var(--header_h) 0 0;
	padding: 0 60px;
	position: absolute;
	top: 10px;
	left: calc(50% - ((360px + 120px) / 2));
	transform: translate(-50%,0);
	z-index: 20;
}

.g-breadcrumb-item {
	padding: 0 1.25em 0 0;
	display: inline-block;
	position: relative;
}

.g-breadcrumb-item:after {
	content: '';
	width: .4em;
	height: .4em;
	border-top: 1px solid var(--black);
	border-right: 1px solid var(--black);
	display: inline-block;
	position: absolute;
	top: 50%;
	right: .35em;
	transform: translate(0,-.2em) rotate(45deg);
}

.g-breadcrumb-item:last-child:after {
	display: none;
}

.g-breadcrumb-item a {
	font-size: 1.2rem;
	line-height: 1.35;
}

.g-breadcrumb-item a:hover {
	text-decoration: underline;
}

.g-breadcrumb-item:last-child a {
	pointer-events: none;
}

.g-breadcrumb-name {
	font-size: 1.2rem;
	line-height: 1.35;
	white-space: nowrap;
	display: inline-block;
}

.g-breadcrumb.-white,
.g-breadcrumb.-white .g-breadcrumb-item a{
	color: var(--white);
}

.g-breadcrumb.-white .g-breadcrumb-item:after {
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
}

.g-breadcrumb.-white .u-link_border .-border {
	background-image: linear-gradient(var(--white),var(--white));
}



/*header*/
.g-header {
	color: var(--white);
	width: 100%;
	height: var(--header_h);
	background: linear-gradient(to bottom, rgba(109,26,63,1) 10%, rgba(109,26,63,0.9) 100%);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 300;
	
	@media screen and (max-width: 999px) {
		background: transparent;
	}
	
	&:after {
		content: '';
		width: 100%;
		height: 100%;
		background: linear-gradient(to right, rgba(109,26,63,1) 10%, rgba(109,26,63,.25) 100%);
		position: absolute;
		inset: 0;
		opacity: 0;
		visibility: hidden;
		transition: 1s;
		backdrop-filter: blur(20px);
		
		@media screen and (max-width: 999px) {
			opacity: 1;
			visibility: visible;
		}
	}
	
	a {
		color: var(--white);
	}
	
	.logo {
		width: 96px;
		margin: 0 0 0 60px;
		position: absolute;
		top: 50%;
		left: 0;
		translate: 0 -50%;
		z-index: 30;
		transition: 1s;
		
		@media screen and (max-width: 1209px) {
			margin-left: 30px;
			
			@media screen and (max-width: 999px) {
				width: 80px;
				margin-left: 20px;
			}
		}
	}
	
	.land_button {
		margin: 20px 0 0 180px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 30;
		
		@media screen and (max-width: 1209px) {
			margin-left: 150px;
			
			@media screen and (max-width: 999px) {
				margin: 20px 80px 0 0;
				right: 0;
				left: auto;
			}
		}
		
		a {
			font-size: 1.1rem;
			font-weight: 400;
			text-decoration: underline;
			opacity: .8;
			
			&:hover {
				text-decoration: none;
				opacity: 1;
			}
		}
	}
}

.active_scroll {
	
	.g-header {
		
/*
		&:after {
			
			@media screen and (max-width: 999px) {
				opacity: 0;
				visibility: hidden;
			}
		}
		
		.logo {
			
			@media screen and (max-width: 999px) {
				opacity: 0;
				visibility: hidden;
			}
		}
*/
	} 
}

.g-navi__button {
	width: 60px;
	height: 60px;
	background-color: var(--bourgogne);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	display: none;

	@media screen and (max-width: 999px) {
		display: block;
	}

	& > * {
		width: 20px;
		height: 2px;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		background-color: var(--white);
		transition: .2s;

		&:nth-child(1) {
			margin-top: -8px;
		}

		&:nth-child(3) {
			margin-top: 8px;
		}
	}
}

.g-navi {
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	
	@media screen and (max-width: 999px) {
		top: 0;
		left: 0;
		height: 100vh;
		background: linear-gradient(to bottom, rgba(109, 26, 63, 1) 10%, rgba(109, 26, 63, .8) 100%);
		backdrop-filter: blur(20px) brightness(150%);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		transition: clip-path .3s ease;
	}
	
	.entry_button {
		letter-spacing: .15em;
		margin: 0 20px -20px 0;
		position: absolute;
		bottom: 0;
		right: 0;
		translate: 0 100%;
		transform-origin: right top;
		
		@media screen and (max-width: 1209px) {
			scale: .85;
			
			@media screen and (max-width: 999px) {
				width: 100%;
				margin: 20px 0 0;
				position: relative;
				bottom: auto;
				right: auto;
				translate: 0;
				scale: 1;
			}
		}
		
		a {
			color: var(--white);
			font-size: 1.5rem;
			font-weight: 600;
			line-height: 1.35;
			text-align: center;
			padding: 12px calc(30px + 20px) 13px 30px;
			border-radius: 100vmax;
			display: block;
			background-color: rgba(150,110,30,.5);
			backdrop-filter: blur(10px) brightness(200%) contrast(50%);
			border: 1px solid rgba(255,255,255,.75);
			
			@media screen and (max-width: 999px) {
				font-size: 1.6rem;
				padding: 16px calc(30px + 20px) 17px 30px;
			}
			
			&:after {
				content: '';
				width: 22px;
				aspect-ratio: 1;
				margin: 0 15px 0 0;
				display: block;
				background: url("/house/yamatedaiminori/_assets/img/common/arrow_01_white.svg") no-repeat center / contain;
				position: absolute;
				top: 50%;
				right: 0;
				translate: 0 -50%;
			}
			
			&:hover {
				filter: brightness(120%);
				opacity: inherit;
			}
			
			small {
				font-size: 1.1rem;
				font-weight: 700;
				display: block;
				
				@media screen and (max-width: 999px) {
					font-size: 1.6rem;
					display: inline-block;
				}
			}
		}
	}
	
	.g-navi__menu {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-end;
		
		@media screen and (max-width: 999px) {
			height: 100%;
			margin: 100px 0 0;
			padding-inline: 20px;
			flex-direction: column;
			align-items: flex-start;
		}
	}
	
	.item {
		padding: 0 0 0 40px;
		display: flex;
		align-items: center;
		position: relative;
		
		@media screen and (max-width: 1209px) {
			padding-left: 28px;
			
			@media screen and (max-width: 999px) {
				padding-left: 0;
				display: block;
			}
		}

		&:before {
			content: '';
			width: 1px;
			height: 1em;
			display: block;
			background-color: var(--white);
			opacity: .5;
			position: absolute;
			top: calc(50% + .1em);
			left: 0;
			transform: skewX(-20deg) translate(18px,-50%);
			
			@media screen and (max-width: 1209px) {
				height: .8em;
				top: calc(50% + .05em);
				transform: skewX(-20deg) translate(14px,-50%);
				
				@media screen and (max-width: 999px) {
					display: none;
				}
			}
		}

		&:first-child {
			padding-left: 0;

			&:before {
				content: inherit;
			}
		}
		
		a {
			font-size: 1.3rem;
			
			@media screen and (max-width: 1209px) {
				font-size: 1.2rem;
				
				@media screen and (max-width: 999px) {
					font-size: 1.6rem;
					letter-spacing: .1em;
				}
			}
			
			b {
				font-weight: 400;
			}
		}
		
		&.-button {
			padding-left: 5px;
			
			@media screen and (max-width: 999px) {
				text-align: center !important;
				margin-top: 30px;
				padding: 0 0 0 5px !important;
			}
			
			a {
				font-size: 1.5rem;
				margin: -10px 0 -10px;
				padding: 9px 40px 11px;
				display: inline-block;
				border-radius: 100vmax;
				border: 1px solid rgba(255,255,255,.4);
				background-color: rgba(0,0,0,.5);
				
				@media screen and (max-width: 1209px) {
					padding-inline: 30px;
					
					@media screen and (max-width: 999px) {
						width: 100%;
						margin-block: 0;
						padding: 1em 0 1.25em;
					}
				}
				
				&:hover {
					color: var(--bourgogne);
					border: 1px solid rgba(255,255,255,1);
					background-color: rgba(255,255,255,1);
					opacity: 1;
				}
			}
			
			&[data-order="1"] {
				letter-spacing: .2em;
				margin-left: 20px;
				
				@media screen and (max-width: 999px) {
					margin-left: 0;
					padding-left: 0 !important;
					border-right: 0 !important;
				}
				
				a {
					padding-inline: 30px;
				}
			}
			
			&:before {
				display: none;
			}
		}
		
		&.-button:first-of-type {
			margin-left: 30px;
		}
		
		&.-invalid {
			
			a {
				pointer-events: none;
				opacity: .35;
			}
		}
	}
	
	.main {
		width: calc(100% - 180px);
		padding: 0 60px 0 0;
		background: linear-gradient(to right, rgba(64,19,39,0) 0%, rgba(64,19,39,0.5) 10%, rgba(64,19,39,1) 100%);
		
		@media screen and (max-width: 1209px) {
			width: calc(100% - 150px);
			padding-right: 30px;
			
			@media screen and (max-width: 999px) {
				width: 100%;
				padding-right: 0;
				background: transparent;
			}
		}
		
		.items {
			height: 45px;
			padding: 0 0 .4em;
			display: flex;
			justify-content: flex-end;
			
			@media screen and (max-width: 999px) {
				height: auto;
				flex-direction: column;
				justify-content: flex-start;
				flex-wrap: wrap;
				border-top: 1px solid rgba(255,255,255,.25);
			}
		}
		
		.item {
			
			@media screen and (max-width: 999px) {
				border-bottom: 1px solid rgba(255,255,255,.25);
			}
			
			a {
				
				@media screen and (max-width: 999px) {
					text-align: center;
					padding: 1em;
					display: block;
				}
			}
		}
	}
	
	.sub {
		padding: 0 60px 18px 0;
		
		@media screen and (max-width: 1209px) {
			padding-right: 30px;
			
			@media screen and (max-width: 999px) {
				width: 100%;
				margin-top: 30px;
				padding-right: 0;
				padding-bottom: 0;
			}
		}
		
		.items {
			display: flex;
			justify-content: flex-end;
			
			@media screen and (max-width: 999px) {
				flex-wrap: wrap;
				justify-content: flex-start;
			}
		}
		
		.item {
			
			@media screen and (max-width: 999px) {
				width: calc(100% / 2);
				padding-block: .1em .25em;
				padding-inline: 1.5em;
			}
			
			&:nth-child(odd) {
				
				@media screen and (max-width: 999px) {
					text-align: right;
					vertical-align: middle;
					border-right: 1px solid rgba(255,255,255,.25);
				}
			}
		}
		
		a {
			font-size: 1.3rem;
			
			@media screen and (max-width: 1209px) {
				font-size: 1.2rem;
				
				@media screen and (max-width: 999px) {
					font-size: 1.4rem;
				}
			}
			
			b {
				font-weight: 400;
			}
		}
	}
}

.active_gnavi {
	
	.g-navi__button {
		background-color: var(--white);
		
		& > * {
			background-color: var(--bourgogne);
			
			&:nth-child(1) {
				margin-top: 0;
				rotate: -35deg;
			}
			
			&:nth-child(2) {
				opacity: 0;
			}
			
			&:nth-child(3) {
				margin-top: 0;
				rotate: 35deg;
			}
		}
	}
	
	.g-navi {
	
		@media screen and (max-width: 999px) {
			clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		}
	}
	
	.g-floating {
		translate: 0 100%;
		opacity: 0;
	}
}

.g-contact {
	text-align: center;
	padding-bottom: 60px;
	background: url("/house/yamatedaiminori/_assets/img/common/bg_01.webp") no-repeat center / cover;
	
	&:before {
		content: '';
		width: 100%;
		height: 120px;
		display: block;
		background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
		position: absolute;
		top: 0;
		left: 0;
		opacity: .1;
	}
	
	& .u-inner {
		padding-top: 30px;
	}
	
	& .page_note {
		color: var(--gray_dark);
		font-size: 1.1rem;
		line-height: 1.5;
		letter-spacing: .15em;
		
		@media screen and (max-width: 767px) {
			font-size: 1rem;
			text-align: left;
		}
	}
	
	& .title {
		color: var(--black);
		font-size: 2rem;
		font-weight: 500;
		letter-spacing: .075em;
		margin: 100px 0 0;

		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
			line-height: 1.75;
			letter-spacing: .075em;
			margin: 60px 0 0;
		}
	}
	
	& .tel {
		margin: 20px 0 0;
		
		@media screen and (max-width: 767px) {
				margin: 15px 0 0;
			}
		
		& a {
			color: var(--black);
			font-size: 6.2rem;
			@media screen and (max-width: 767px) {
				font-size: 4.2rem;
			}
		}
	}
	
	& .note {
		color: var(--black);
		font-size: 1.8rem;
		letter-spacing: .075em;
		margin: 20px 0 0;
		@media screen and (max-width: 767px) {
			font-size: 1.4rem;
			margin: 15px 0 0;
		}
		
		& small {
			font-size: 1.2rem;
			letter-spacing: .025em;
			margin: 1.25em;
			display: block;
			@media screen and (max-width: 767px) {
				font-size: 1.1rem;
			}
		}
	}
	
	& .devs {
		font-size: 1.2rem;
		margin: 40px 0 0;
		display: flex;
		justify-content: center;
		@media screen and (max-width: 767px) {
			margin: 40px 0 0;
		}
		
		& .item {
			color: var(--black);
			display: flex;
			align-items: center;
			
			& figure {
				padding: 0 5px;
				@media screen and (max-width: 767px) {
					width: 190px;
				}
			}
		}
	}
}

/*footer*/
.g-footer {
	color: var(--white);
	padding: 0 0 60px;
	background: #959595;
	
	.g-links {
		
		.items {}
		
		.item {
			padding: 60px 0;
			
			&.-land {
				background: url("/house/yamatedaiminori/_assets/img/common/bg_02.webp") no-repeat center / cover;
				
				@media screen and (max-width: 999px) {
					padding: 40px 20px;
					background-image: url("/house/yamatedaiminori/_assets/img/common/bg_02_mobile.webp");
				}
			}
			
			a {
				max-width: var(--max_w);
				margin-inline: auto;
				display: block;
				
				&:hover {
					opacity: 1;
					filter: brightness(110%);
				}
			}
		}
	}
	
	& .menu {
		border-bottom: 1px solid rgba(255,255,255,.25);
		
		& ul {
			padding: 20px 0 22px;
			display: flex;
			justify-content: center;
			
			
			@media screen and (max-width: 767px) {
				display: block;
			}
			
			& li {
				margin: 0 20px;
				
				@media screen and (max-width: 767px) {
					padding: .5em 0;
				}
				
				& a {
					color: var(--white);
					font-size: 1.4rem;
					letter-spacing: .05em;
				
					@media screen and (max-width: 767px) {
						font-size: 1.3rem;
					}
					
					&:before {
						content: url("/house/yamatedaiminori/_assets/img/common/arrow_01_black.svg");
						margin: 0 7px 0 0;
						vertical-align: text-top;
						display: inline-block;
						scale: .85;
						filter: invert(100%);
					}
				}
			}
		}
	}
	
	& .copyright {
		font-size: 1.3rem;
		font-weight: 400;
		text-align: center;
		letter-spacing: .05em;
		padding: 20px 0;
		display: block;

		@media screen and (max-width: 767px) {
			font-size: 1.1rem;
		}
	}
}

.g-floating {
	display: none;
}

@media screen and (max-width: 999px) {
	.g-floating {
		display: block;
		color: var(--white);
		width: 100%;
		background: linear-gradient(to bottom, rgba(109, 26, 63, 1) 10%, rgba(109, 26, 63, 0.9) 100%);
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 300;
		transition: .3s;
		backdrop-filter: blur(5px);
		
		ul {
			display: flex;
			
			li {
				width: calc(100% / 4);
				border-right: 1px solid rgba(255,255,255,.25);
				
				&:nth-child(1) {
					width: calc(100% / 4 * 3);
				}
				
				&:last-child {
					border-right: 0;
				}
				
				a {
					color: var(--white);
					font-size: 1.4rem;
					font-weight: 400;
					letter-spacing: .15em;
					white-space: nowrap;
					height: 60px;
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
				}
			}
		}
	}
}

/*pagetop*/
.g-pagetop {
	margin: 0 20px 30px 0;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 90;
	transform: translateX(calc(60px + 100%));
	transition: .6s var(--easing);
	
	@media screen and (max-width: 999px) {
		margin: 0 20px 80px 0;
	}
	
	& a {
		width: 50px;
		height: 50px;
		border-radius: 100vmax;
		border: 1px solid rgba(0,0,0,.25);
		background: var(--bourgogne) url("/house/yamatedaiminori/_assets/img/common/arrow_01_white.svg") no-repeat center / calc(100% + 2px) auto;
		display: block;
		position: relative;
		rotate: -90deg;
		
		&:hover {
		}
	}
}

.active_scroll {
	
	& .g-pagetop {
		transform: translateX(0);
	}
}


.l-mv {
	background-color: var(--bourgogne);
	position: relative;
	
	&:after {
/*		content: '';*/
		width: calc(100% - (60px * 2));
		height: 70px;
		background-color: var(--white);
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		translate: -50% 1px;
		
		@media screen and (max-width: 999px) {
			width: calc(100% - (20px * 2));
			height: 30px;
		}
	}
	
	.title {
		width: 100%;
		position: absolute;
		top: calc(50% + (var(--header_h) / 2));
		left: 0;
		translate: 0 -50%;
		text-shadow:
			0 0 1px var(--white),
			0 0 10px var(--white),
			0 0 30px var(--white)
		;
		z-index: 10;
		
		@media screen and (max-width: 999px) {
		}
		
		.name {
			color: var(--black);
			font-size: 1.8rem;
			font-weight: 600;
			text-align: center;
			letter-spacing: .2em;
			
			@media screen and (max-width: 999px) {
				font-size: 1.4rem;
			}
			
			&:before {
				content: attr(data-en);
				font-family: var(--font_gara);
				font-size: 7rem;
				font-weight: 400;
				letter-spacing: 0;
				margin: 0 0 .15em;
				display: block;
				
				@media screen and (max-width: 999px) {
					font-size: 5rem;
				}
			}
		}
		
		&.-white {
			text-shadow:
				0 0 1px var(--black),
				0 0 10px var(--black),
				0 0 30px var(--black)
			;
			
			.name {
				color: var(--white);
			}
		}
	}
	
	.image {
		
		&:after {
			content: '';
			width: 75%;
			height: 100%;
			display: block;
			background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
			position: absolute;
			top: 0;
			left: 50%;
			translate: -50% 0;
			opacity: .5;
			mix-blend-mode: plus-lighter;
		}
		
		img {
			height: 500px;
			object-fit: cover;
			object-position: bottom center;
			
			@media screen and (max-width: 999px) {
				height: 60vw;
			}
		}
		
		&.-noimage {
			background: linear-gradient(to right, #e1e1e1 0%, #fff 50%, #e1e1e1 100%);
			
			&:after {
				display: none;
			}
			
			img {
				opacity: 0;
			}
		}
	}
	
	&.-bgnone {
		
		.title {
			text-shadow: none;
		}
		
		.image {
		
			&:after {
				display: none;
			}
		}
	}
}










.l-modal_stage {
	& .video_player {
		& p {
			font-weight: 2.4rem;
			font-weight: 700;
			text-align: center;
			
			& span {
				font-size: 2.2rem;
				margin: 0 0 -.1em .1em;
				display: inline-block;
			}
		}
		
		& .video_player_inner {
			width: 100%;
			margin: 25px 0 0;
			padding: 56.25% 0 0;
			border-radius: 12px;
			position: relative;
			overflow: hidden;
			transform: translateZ(0);

			& video {
				width: 100%;
				height: 100%;
				display: block;
				position: absolute;
				top: 0;
				left: 0;
			}
			
			@media screen and (max-width: 767px) {
				margin: 0;
			}
		}
	}
}



/*modal*/
.u-modal {
	width: calc(100% - (90px * 2));
	height: calc(100vh - (90px * 2));
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%,-50%);
	transition: .4s .2s var(--easing);
	
	@media screen and (max-width: 999px) {
		width: calc(100% - (30px * 2));
	}
	
	@media screen and (max-width: 767px) {
		width: calc(100% - (10px * 2));
		height: auto;
	}
	
	&:after {
		content: '';
		width: 100%;
		height: 100%;
		border-radius: 30px;
		background: rgba(255,255,255,.9);
		position: absolute;
		inset: 0;
		z-index: 0;
	}
		@media screen and (max-width: 767px) {
			&:after {
			border-radius: 20px;
				}
		}
	
	& .u-modal_inner {
		width: 100%;
		height: 100%;
		margin: 0 auto;
		padding: 0 60px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		overflow-y: auto;
		z-index: 10;
		
		@media screen and (max-width: 999px) {
			padding-right: 30px;
			padding-left: 30px;
		}
		
		@media screen and (max-width: 767px) {
			padding: 0 5%;
		}
	}
	
	& .l-modal_stage {
		width: 100%;
		padding: 30px 0;
		position: relative;
		
		@media screen and (max-width: 767px) {
			padding-top: 60px;
			padding-bottom: 60px;
		}
	}
	
	& .u-modal_button_close {
		color: transparent;
		font-size: 0;
		width: 44px;
		height: 44px;
		margin: 30px 30px 0 0;
		border-radius: 50%;
		background: rgba(0,0,0,1);
		position: absolute;
		top: 0;
		right: 0;
		z-index: 20;
		
		@media screen and (max-width: 767px) {
			margin: -10px -10px 0 0;
		}
		
		&:before,
		&:after {
			content: '';
			width: 20px;
			height: 4px;
			display: block;
			background: var(--white);
			position: absolute;
			top: 50%;
			left: 50%;
		}
		
		&:before {
			transform: translate(-50%,-50%) rotate(45deg);
		}
		
		&:hover:before {
			transform: translate(-50%,-50%) rotate(135deg);
		}
		
		&:after {
			transform: translate(-50%,-50%) rotate(135deg);
		}
		
		&:hover:after {
			transform: translate(-50%,-50%) rotate(225deg);
		}
	}
}

.active_modal {
	& .u-modal {
		opacity: 1;
		visibility: visible;
	}
	
	& .g-navi_button {
		z-index: 400;
	}
}

/*2024.11*/
.l-new_section ul li.l-plan_button {
	margin-top: 60px;
	padding-inline: 90px;
	background: transparent;
}

@media screen and (max-width: 767px) {
	.l-new_section ul li.l-plan_button {
		margin-top: 30px;
		padding-inline: 0;
	}
}

@media screen and (max-width: 999px) {
	.l-plan_button {
		padding: 50px 0 0;
	}
}

.l-plan_button a {
	color: var(--black);
	padding: 20px 30px;
	background: #FFFFB3;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 30px;
	border: 2px solid #ddd;
	position: relative;
}

@media screen and (max-width: 767px) {
	.l-plan_button a {
		padding: 20px 15px;
		flex-direction: column;
		border-radius: 15px;
	}
}

.l-plan_button a:after {
	content: '';
	width: 20px;
	height: 20px;
	display: block;
	background: url(/yamatedai/land/_assets/img/common/arrow_01@black.svg) no-repeat center / 100% 100%;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0, -50%);
}

@media screen and (max-width: 767px) {
	.l-plan_button a:after {
		right: 15px;
	}
}

.l-plan_button a:hover:after {
	background-image: url(/yamatedai/land/_assets/img/common/arrow_01@gold.svg);
	right: 25px;
}

@media screen and (max-width: 767px) {
	.l-plan_button a:hover:after {
		right: 10px;
	}
}

.l-plan_button p {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	flex-grow: 1;
	padding-left: 30px	;
}

@media screen and (max-width: 999px) {
	.l-plan_button p {
		font-size: 2.2vw;
	}
}

@media screen and (max-width: 767px) {
	.l-plan_button p {
		font-size: 4.2vw;
		text-align: center;
		margin-top: 10px;
		padding-left: 0;
	}
}

.l-plan_button p b {
	font-size: 3rem;
	font-weight: 700;
}

@media screen and (max-width: 999px) {
	.l-plan_button p b {
		font-size: 3.2vw;
	}
}

@media screen and (max-width: 767px) {
	.l-plan_button p b {
		font-size: 5.2vw;
	}
}

.l-plan_button span {
	width: 200px;
	padding: 15px 20px;
	border-radius: 10px;
	background: #fff;
}

@media screen and (max-width: 999px) {
	.l-plan_button span {
		width: 30%;
	}
}

@media screen and (max-width: 767px) {
	.l-plan_button span {
		width: 60%;
		padding: 10px 25px;
	}
}

.l-plan_button small {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: -.05em;
	white-space: nowrap;
	padding: 0 2em 0 0;
}

@media screen and (max-width: 999px) {
	.l-plan_button small {
		display: none;
	}
}

.l-plan_button.-new a:before {
	content: 'NEW';
	color: var(--white);
	font-size: 1.5rem;
	letter-spacing: .1em;
	padding: .45em 2em .6em;
	background: var(--red);
	border-radius: 3px;
	position: absolute;
	top: -3px;
	left: 50%;
	z-index: 10;
	box-shadow:
		0 0 10px 0 #fff,
		0 0 40px 0 #fff
	;
	transform: translate(-50%,-50%);
	filter: brightness(135%);
	animation: 1.2s ease-in 1s infinite alternate forwards running expansion;
}

@keyframes expansion{
	0%{
		box-shadow:
			0 0 10px 0 #fff,
			0 0 40px 0 #fff
		;
		filter: brightness(135%);
	}
	100%{
		box-shadow:
			0 0 10px 0 #fff
		;
		filter: brightness(100%);
	}
}

@media screen and (max-width: 767px) {
	.l-plan_button.-new a:before {
		font-size: 1.3rem;
	}
}


/*
* Slick Plugin - Reset
* ==================================================================================================== */
.slick-dots {
	position: absolute;
	bottom: 0;
	z-index: 10;
}

.g-side_menu ul li ul li > .active {
	color: var(--red);
	background: var(--gray-light);
	position: relative;
}

.g-side_menu ul li ul li > .active:before {
	content: '';
	width: 4px;
	height: calc(100% - 20px);
	display: block;
	background: var(--red);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}

.g-side_menu ul li ul li ul li .active-focus {
	color: var(--red);
}
