@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&family=Oswald:wght@300;400&family=Rokkitt:wght@400;500&family=Zen+Old+Mincho&display=swap");
html, body, div, span, main, header, footer, section, ::before, ::after,
h1, h2, h3, h4, h5, h6, p, a, img, nav,
dl, dt, dd, ol, ul, li,
table, caption, tr, th, td,
input, button, textarea, select, option {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	word-break: break-all;
}

ol, ul {
	list-style: none;
}

img {
	vertical-align: bottom;
	-webkit-box-shadow: #000 0 0 0;
	        box-shadow: #000 0 0 0;
	-webkit-backface-visibility: hidden;
	max-width: 100%;
	height: auto;
}

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

a {
	color: inherit;
	text-decoration: none;
	outline: none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

svg {
	width: 100%;
}

select,
textarea,
input[type=text],
input[type=email],
input[type=tel],
input[type=submit],
input[type=radio],
button {
	-webkit-appearance: none;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	border-radius: 0;
}

textarea:focus,
input:focus {
	outline: none;
}

:root {
	--c_base: #515c65;
	--w_pc: calc(100% - clamp(60px, 8vw, 120px));
	--w_pc2: calc(100% - clamp(120px, 16vw, 240px));
	--w_sp: 89.3334%;
	--mr_sp: 5.3334%;
	--f_serif: "Zen Old Mincho", serif;
	--f_en: "Rokkitt", serif;
	--f_num: "Oswald", sans-serif;
}

:root {
	--c_base: #61534e;
	--c_key: #823c35;
	--f_en: "Courier Prime", monospace;
}

@media screen and (min-width: 800px) {
	.pc_off {
		display: none !important;
	}
}
@media screen and (max-width: 800px) {
	body {
		min-width: 320px;
	}
	.sp_off {
		display: none !important;
	}
}
.p_hover a:hover {
	opacity: 0.7;
}

.box-fade {
	opacity: 0;
	-webkit-transform: translateY(30px);
	        transform: translateY(30px);
	-webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
	transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.box-fade.fadeIn {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

html {
	font-size: 10px;
}

body {
	color: #281b10;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS Pゴシック", sans-serif;
	font-weight: 400;
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	position: relative;
}
body::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../img/taiga/texture.png");
	background-position: 50% 50%;
	background-size: 300px 300px;
	mix-blend-mode: multiply;
	pointer-events: none;
	z-index: 9999;
}

.grecaptcha-badge {
	visibility: hidden;
}

@media screen and (max-width: 800px) {
	body::after {
		background-size: 150px 150px;
	}
}
/* ========================================

head

======================================== */
.header {
	background-color: var(--c_base);
}
.header.is-fade .header_nav .logo {
	opacity: 0;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
	-webkit-transition-delay: 2.4s;
	        transition-delay: 2.4s;
}
.header.is-fade .fv .img {
	opacity: 0;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
	-webkit-transition-delay: 0.4s;
	        transition-delay: 0.4s;
}
.header.is-fade .fv .copy .l01,
.header.is-fade .fv .copy .l02,
.header.is-fade .fv .copy .l03 {
	clip-path: polygon(0 0, 0 0, 0 99%, 0% 100%);
	-webkit-transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
	transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.header.is-fade .fv .copy .l01 {
	-webkit-transition-delay: 1.4s;
	        transition-delay: 1.4s;
}
.header.is-fade .fv .copy .l02 {
	-webkit-transition-delay: 2s;
	        transition-delay: 2s;
}
.header.is-fade .fv .copy .l03 {
	-webkit-transition-delay: 2.6s;
	        transition-delay: 2.6s;
}
.header.is-fade.fadeIn .header_nav .logo,
.header.is-fade.fadeIn .header_nav nav ul,
.header.is-fade.fadeIn .header_nav .btn {
	opacity: 1;
}
.header.is-fade.fadeIn .fv .img {
	opacity: 1;
}
.header.is-fade.fadeIn .fv .copy .l01, .header.is-fade.fadeIn .fv .copy .l02, .header.is-fade.fadeIn .fv .copy .l03 {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.header_inner {
	margin: 0 auto;
}
.header_nav ul li {
	font-family: var(--f_serif);
}
.header_nav .btn a {
	color: #fff;
	letter-spacing: 0.14em;
	display: block;
	position: relative;
	margin: 0 auto;
	background-color: var(--c_key);
	border: 1px solid #fff;
	border-radius: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.header_nav .btn a::before {
	width: 28px;
	aspect-ratio: 56/54;
	content: "";
	display: block;
	margin-right: 8px;
	background-image: url(../img/taiga/ico_sign.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.header_nav .btn a:hover {
	letter-spacing: 0.24em;
}
.header .fv {
	position: relative;
	z-index: 1;
}
.header .fv .img {
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	        mask-size: 100% 100%;
	-webkit-mask-position: 50% 50%;
	        mask-position: 50% 50%;
}
.header .fv .copy {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

@media screen and (min-width: 801px) {
	.header {
		padding: 60px 0 80px;
	}
	.header.is-fade .header_nav nav ul,
	.header.is-fade .header_nav .btn {
		opacity: 0;
		-webkit-transition: opacity 1s;
		transition: opacity 1s;
		-webkit-transition-delay: 2.4s;
		        transition-delay: 2.4s;
	}
	.header_inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.header_nav {
		width: clamp(140px, 11.1112vw, 160px);
		margin-left: 4.1667vw;
		padding-bottom: 80px;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.header_nav .logo {
		width: min(89.375%, 143px);
	}
	.header_nav nav ul li {
		color: #fff;
		font-size: 16px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.header_nav nav ul li:not(:last-of-type) {
		margin-bottom: 40px;
	}
	.header_nav nav ul li::before {
		width: 5px;
		height: 5px;
		content: "";
		display: block;
		margin-right: 16px;
		background-color: #fff;
		border-radius: 50%;
	}
	.header_nav nav ul li a {
		position: relative;
	}
	.header_nav nav ul li a svg {
		position: absolute;
		left: 0;
		bottom: -21px;
		width: 88px;
		aspect-ratio: 88/15;
	}
	.header_nav nav ul li a path {
		stroke: #fff;
		stroke-width: 1;
		fill: none;
		stroke-dasharray: 121;
		stroke-dashoffset: 121;
		-webkit-transition: stroke-dashoffset 0.6s ease;
		transition: stroke-dashoffset 0.6s ease;
	}
	.header_nav nav ul li a:hover path {
		stroke-dashoffset: 0;
	}
	.header_nav .btn {
		position: absolute;
		top: 60px;
		right: 4.1667vw;
		z-index: 5;
	}
	.header_nav .btn a {
		font-size: 14px;
		width: 218px;
		height: 50px;
	}
	.header .fv {
		width: calc(100% - 12.5vw - clamp(140px, 11.1112vw, 160px) - 4px);
		position: relative;
		margin-right: 4.1667vw;
		padding-top: 20px;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
	}
	.header .fv .img {
		height: clamp(515px, 51.5278vw, 742px);
		-webkit-mask-image: url(../img/taiga/fv_mask.png);
		        mask-image: url(../img/taiga/fv_mask.png);
	}
	.header .fv .img picture {
		width: 100%;
		height: 100%;
		display: block;
	}
	.header .fv .img img {
		width: 100%;
		max-width: none;
		height: 100%;
		display: block;
		-o-object-fit: cover;
		   object-fit: cover;
		-o-object-position: 50% 30%;
		   object-position: 50% 30%;
	}
	.header .fv .copy {
		right: 0;
		bottom: -20px;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
	.header .fv .copy span {
		display: block;
	}
	.header .fv .copy .l01 {
		width: min(46.5329%, 510px);
		margin-bottom: 20px;
	}
	.header .fv .copy .l02 {
		width: min(71.1679%, 780px);
	}
}
@media screen and (min-width: 801px) and (max-width: 1000px) {
	.header_nav {
		width: 140px;
	}
}
@media screen and (max-width: 800px) {
	.header_inner {
		padding: 30px 0 60px;
	}
	.header_nav .logo {
		width: min(24vw, 180px);
		position: absolute;
		top: 30px;
		left: 21px;
		z-index: 10;
	}
	.header_nav nav {
		width: 100%;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 101;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
		transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
		pointer-events: none;
	}
	.header_nav nav::before {
		width: 100vw;
		height: 100dvh;
		content: "";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		background-color: rgba(97, 83, 78, 0.7);
		z-index: -1;
	}
	.header_nav nav .header_nav_inner {
		width: 235px;
		position: relative;
		margin-left: auto;
		padding: 65px 0 60px;
		background-color: #fff;
		z-index: 1;
		translate: 100% 0%;
		-webkit-transition-delay: 0.2s;
		        transition-delay: 0.2s;
		-webkit-transition: translate 0.6s ease;
		transition: translate 0.6s ease;
	}
	.header_nav nav ul {
		width: 82.9788%;
		margin: 0 auto 20px;
	}
	.header_nav nav ul li {
		font-size: 15px;
	}
	.header_nav nav ul li:not(:last-of-type) {
		border-bottom: 0.5px solid var(--c_base);
	}
	.header_nav nav ul li a {
		width: 100%;
		height: 75px;
		display: block;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.header_nav nav ul li a svg {
		display: none;
	}
	.header_nav nav .btn a {
		font-size: 12px;
		width: 82.9788%;
		height: 50px;
	}
	.header .fv {
		width: min(89.3334vw, 670px);
		margin: 30px auto 0;
	}
	.header .fv .img {
		-webkit-mask-image: url(../img/taiga/fv_mask_sp.png);
		        mask-image: url(../img/taiga/fv_mask_sp.png);
	}
	.header .fv .copy {
		position: absolute;
		left: 0;
		bottom: -20px;
	}
	.header .fv .copy span {
		display: block;
	}
	.header .fv .copy .l01 {
		width: min(71.7334%, 538px);
		margin-bottom: 10px;
	}
	.header .fv .copy .l02 {
		width: min(81.3334%, 610px);
		margin-bottom: 10px;
	}
	.header .fv .copy .l03 {
		width: min(33.3334%, 250px);
	}
	.header .btn_nav {
		cursor: pointer;
		width: 32px;
		height: 32px;
		display: block;
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 999;
		-webkit-transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
		transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
	}
	.header .btn_nav span, .header .btn_nav::before, .header .btn_nav::after {
		width: 100%;
		height: 1px;
		display: block;
		position: absolute;
		left: 0;
		background: #fff;
		border-bottom: 1px solid var(--c_base);
		-webkit-box-sizing: content-box;
		        box-sizing: content-box;
		-webkit-transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
		transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
	}
	.header .btn_nav span {
		top: 50%;
	}
	.header .btn_nav::before, .header .btn_nav::after {
		content: "";
		-webkit-transform-origin: 50% 50%;
		        transform-origin: 50% 50%;
	}
	.header .btn_nav::before {
		-webkit-animation: btn_nav_top_off cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
		        animation: btn_nav_top_off cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
	}
	.header .btn_nav::after {
		-webkit-animation: btn_nav_bottom_off cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
		        animation: btn_nav_bottom_off cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
	}
	body.nav_active .header::before {
		height: 100vh;
	}
	body.nav_active .header_nav_inner {
		translate: 0 0;
	}
	body.nav_active .header_nav nav {
		opacity: 1;
		visibility: visible;
		pointer-events: unset;
	}
	body.nav_active .header .btn_nav span {
		opacity: 0;
	}
	body.nav_active .header .btn_nav::before {
		-webkit-animation: btn_nav_top_on cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
		        animation: btn_nav_top_on cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
	}
	body.nav_active .header .btn_nav::after {
		-webkit-animation: btn_nav_bottom_on cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
		        animation: btn_nav_bottom_on cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
	}
}
@-webkit-keyframes btn_nav_top_off {
	0% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(30deg);
		        transform: rotate(30deg);
	}
	50% {
		top: 50%;
		scale: 1 1;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: calc(50% - 7px);
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}
@keyframes btn_nav_top_off {
	0% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(30deg);
		        transform: rotate(30deg);
	}
	50% {
		top: 50%;
		scale: 1 1;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: calc(50% - 7px);
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}
@-webkit-keyframes btn_nav_top_on {
	0% {
		top: calc(50% - 7px);
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	50% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(30deg);
		        transform: rotate(30deg);
	}
}
@keyframes btn_nav_top_on {
	0% {
		top: calc(50% - 7px);
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	50% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(30deg);
		        transform: rotate(30deg);
	}
}
@-webkit-keyframes btn_nav_bottom_off {
	0% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(-30deg);
		        transform: rotate(-30deg);
	}
	50% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: calc(50% + 7px);
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}
@keyframes btn_nav_bottom_off {
	0% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(-30deg);
		        transform: rotate(-30deg);
	}
	50% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: calc(50% + 7px);
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}
@-webkit-keyframes btn_nav_bottom_on {
	0% {
		top: calc(50% + 7px);
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	50% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(-30deg);
		        transform: rotate(-30deg);
	}
}
@keyframes btn_nav_bottom_on {
	0% {
		top: calc(50% + 7px);
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	50% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	100% {
		top: 50%;
		scale: 1.2 1;
		-webkit-transform: rotate(-30deg);
		        transform: rotate(-30deg);
	}
}
/* ========================================

footer

======================================== */
.footer {
	color: #fff;
	position: relative;
	background-color: var(--c_base);
}
.footer_inner {
	width: min(87.5%, 1120px);
	margin: 0 auto;
}
.footer_bnr {
	margin: 0 auto;
}
.footer_link {
	margin-bottom: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer_link li a {
	width: 100%;
	background-color: #281b10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer_link li a em {
	font-family: var(--f_serif);
	font-style: normal;
}
.footer_link li a span {
	background-image: url(../img/taiga/foot_bnr_icon.png);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}
.footer_sponsorship {
	text-align: center;
}
.footer_sponsorship dd {
	letter-spacing: 0.02em;
}
.footer_info {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.footer_info > div {
	text-align: center;
}
.footer_info > div dt {
	letter-spacing: 0.02em;
}
.footer_info > div dt.num {
	font-family: var(--f_num);
}
.footer_info > div dd {
	letter-spacing: 0.02em;
}
.footer_bottom .copyright {
	font-family: var(--f_en);
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.02em;
	padding: 59px 0;
}
.footer_bottom .pagetop {
	font-family: var(--f_en);
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

@media screen and (min-width: 801px) {
	.footer {
		padding-top: 60px;
	}
	.footer_bnr {
		max-width: 683px;
		margin-bottom: 30px;
	}
	.footer_link {
		margin-bottom: 30px;
	}
	.footer_link li:nth-child(1) {
		width: 25.8929%;
	}
	.footer_link li:nth-child(2) {
		width: 18.9286%;
	}
	.footer_link li:nth-child(3) {
		width: 28.2143%;
	}
	.footer_link li:nth-child(4) {
		width: 18.9286%;
	}
	.footer_link li a {
		height: 90px;
	}
	.footer_link li a em {
		font-size: clamp(18px, 2.077vw, 27px);
		margin-bottom: 8px;
	}
	.footer_link li a span {
		font-size: clamp(10px, 1.077vw, 14px);
		padding-right: calc(clamp(4px, 0.7693vw, 10px) + clamp(10px, 1.077vw, 14px));
		background-size: clamp(10px, 1.077vw, 14px);
	}
	.footer_sponsorship {
		font-size: 14px;
		line-height: 1.5;
		margin-bottom: 100px;
	}
	.footer_info {
		padding: 30px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.footer_info > div {
		width: 50%;
		padding: 26px 0;
	}
	.footer_info > div dt:not(.num) {
		font-size: 24px;
		margin-bottom: 22px;
	}
	.footer_info > div dt.num {
		font-family: var(--f_num);
		font-size: 30px;
		margin-bottom: 20px;
	}
	.footer_info > div:first-of-type {
		border-right: 1px solid #fff;
	}
	.footer_info > div dd {
		font-size: 16px;
	}
	.footer_bottom .copyright {
		font-size: 12px;
	}
	.footer_bottom .pagetop {
		position: absolute;
		top: -60px;
		right: 4.1667vw;
	}
	.footer_bottom .pagetop::before, .footer_bottom .pagetop::after {
		width: 1px;
		content: "";
		display: block;
		margin-left: 2px;
	}
	.footer_bottom .pagetop::before {
		height: 60px;
		background-color: var(--c_base);
		-webkit-box-ordinal-group: -1;
		    -ms-flex-order: -2;
		        order: -2;
	}
	.footer_bottom .pagetop::after {
		height: 100px;
		margin-bottom: 8px;
		background-color: #fff;
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}
	.footer_bottom .pagetop a {
		font-size: 14px;
		-webkit-writing-mode: vertical-rl;
		    -ms-writing-mode: tb-rl;
		        writing-mode: vertical-rl;
	}
}
@media screen and (max-width: 800px) {
	.footer {
		padding-top: 30px;
	}
	.footer_inner {
		width: 89.3334%;
		margin: 0 auto;
	}
	.footer_bnr {
		width: 100%;
		margin-bottom: 20px;
	}
	.footer_link li {
		width: 48.6568%;
		margin-bottom: calc(100% - 97.3135%);
	}
	.footer_link li a {
		height: 45px;
	}
	.footer_link li a em {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.footer_link li a span {
		font-size: 10px;
		padding-right: 15px;
		background-size: 10px;
		scale: 0.8;
	}
	.footer_sponsorship {
		font-size: 11px;
		line-height: 1.5;
		margin-bottom: 55px;
	}
	.footer_info > div {
		padding: 50px 0;
	}
	.footer_info > div:first-of-type {
		border-bottom: 1px solid #fff;
	}
	.footer_info > div dt:not(.num) {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.footer_info > div dt.num {
		font-family: var(--f_num);
		font-size: 25px;
		margin-bottom: 14px;
	}
	.footer_info > div dd {
		font-size: 12px;
	}
	.footer_bottom {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.footer_bottom .copyright {
		text-align: left;
	}
	.footer_bottom .pagetop {
		margin-bottom: 16px;
	}
	.footer_bottom .pagetop::before {
		width: 10px;
		height: 10px;
		display: block;
		content: "";
		margin-bottom: 2px;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
		rotate: 45deg;
	}
	.footer_bottom .pagetop a {
		font-size: 15px;
	}
}
/* ========================================

common

======================================== */
.section_tit {
	text-align: center;
}
.section_tit h2 {
	font-family: var(--f_serif);
	font-weight: 600;
	font-size: 40px;
	margin-bottom: 20px;
}
.section_tit .en {
	font-family: var(--f_en);
	font-size: 16px;
	text-transform: uppercase;
}

@media screen and (max-width: 800px) {
	.section_tit h2 {
		font-size: 29px;
		margin-bottom: 12px;
	}
	.section_tit .en {
		font-size: 12px;
	}
}
/* ========================================

about

======================================== */
.about {
	position: relative;
}
.about::before {
	width: 100%;
	height: 5px;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/taiga/about_bg_top.png);
	background-repeat: repeat-x;
	background-position: 50% 0%;
	background-size: 1440px 5px;
	translate: 0 -5px;
}
.about_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.about .en {
	font-family: var(--f_en);
	text-transform: uppercase;
}
.about h2 {
	font-family: var(--f_serif);
	-webkit-writing-mode: vertical-rl;
	    -ms-writing-mode: tb-rl;
	        writing-mode: vertical-rl;
}
.about .txt {
	font-family: var(--f_serif);
}
.about_slides {
	overflow: hidden;
}
.about_slides ul {
	-webkit-animation: slide_loop 40s linear infinite;
	        animation: slide_loop 40s linear infinite;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.about_slides ul li {
	-webkit-mask-image: url(../img/taiga/about_img_mask.png);
	        mask-image: url(../img/taiga/about_img_mask.png);
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	        mask-size: 100% 100%;
	-webkit-mask-position: 50% 50%;
	        mask-position: 50% 50%;
	position: relative;
}

@media screen and (min-width: 801px) {
	.about {
		margin-bottom: 120px;
		padding-top: 110px;
	}
	.about_inner {
		width: min(87.5%, 1120px);
		margin: 0 auto 120px;
	}
	.about .en {
		font-size: 18px;
		letter-spacing: -0.02em;
		width: 100%;
		margin-bottom: 60px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.about .en::before {
		width: calc(100% - 70px);
		height: 1px;
		content: "";
		display: block;
		background-color: var(--c_base);
	}
	.about .en span {
		-ms-flex-negative: 0;
		    flex-shrink: 0;
	}
	.about h2 {
		font-size: clamp(28px, 3.2vw, 40px);
		line-height: 1.5;
	}
	.about .txt {
		line-height: 2;
	}
	.about_slides ul {
		width: calc((min(47.3vw, 473px) + 40px) * 12);
	}
	.about_slides ul li {
		width: min(47.3vw, 473px);
		margin-right: 40px;
	}
}
@media screen and (min-width: 1001px) {
	.about_inner {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.about h2 {
		margin-right: -0.25em;
		margin-left: 0.5em;
	}
	.about .txt {
		font-size: clamp(15px, 1.44vw, 18px);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
	}
	.about .txt p {
		-webkit-writing-mode: vertical-rl;
		    -ms-writing-mode: tb-rl;
		        writing-mode: vertical-rl;
		text-orientation: upright;
	}
	.about .txt p:not(:last-of-type) {
		margin-left: 1.5em;
	}
	.about .txt p:last-of-type {
		margin-left: calc(min(1.44vw, 18px) * 0.9);
	}
}
@media screen and (min-width: 801px) and (max-width: 1000px) {
	.about_inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.about h2 {
		margin-bottom: 40px;
	}
	.about .txt {
		font-size: 16px;
	}
	.about .txt p {
		margin-left: 1em;
	}
}
@media screen and (max-width: 800px) {
	.about {
		margin-bottom: 100px;
		padding-top: 95px;
	}
	.about_inner {
		margin-bottom: 90px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.about .en {
		font-size: 12px;
		margin-bottom: 15px;
	}
	.about h2 {
		font-size: 29px;
		line-height: 1.5;
		margin-bottom: 45px;
	}
	.about .txt {
		font-size: 16px;
		line-height: 2;
	}
	.about .txt p:not(:last-of-type) {
		margin-bottom: 2em;
	}
	.about_slides ul {
		width: calc((min(80.5334vw, 302px) + 20px) * 12);
	}
	.about_slides ul li {
		width: min(80.5334vw, 302px);
		margin-right: 20px;
	}
}
@-webkit-keyframes slide_loop {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
@keyframes slide_loop {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
/* ========================================

current

======================================== */
.current {
	color: #fff;
	text-align: center;
	background-image: url(../img/taiga/current_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.current h2 {
	display: inline-block;
	border-bottom: 1px solid #fff;
}
.current .txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.current .txt .num {
	font-family: var(--f_num);
	letter-spacing: -0.02em;
}
.current .btn a {
	letter-spacing: 0.02em;
	height: 60px;
	display: block;
	position: relative;
	margin: 0 auto;
	background-color: var(--c_key);
	border: 1px solid #fff;
	border-radius: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.current .btn a::after {
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	content: "";
	top: 50%;
	right: 22px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	rotate: 45deg;
	translate: 0 -70%;
}
.current .btn a:hover {
	letter-spacing: 0.1em;
}

@media screen and (min-width: 801px) {
	.current {
		padding: 100px 0;
	}
	.current h2 {
		font-size: 20px;
		letter-spacing: 0.04em;
		margin-bottom: 6px;
		padding-bottom: 10px;
	}
	.current .txt {
		font-size: 30px;
		margin-bottom: 45px;
	}
	.current .txt .num {
		font-size: 100px;
		margin: 0 6px -0.06em 4px;
	}
	.current .btn a {
		font-size: 18px;
		width: 260px;
	}
}
@media screen and (max-width: 800px) {
	.current {
		padding: 96px 0 100px;
	}
	.current h2 {
		font-size: 20px;
		margin-bottom: 9px;
		padding-bottom: 5px;
	}
	.current .txt {
		font-size: 24px;
		margin-bottom: 42px;
	}
	.current .txt .num {
		font-size: 81px;
		margin: 0 6px -0.06em;
	}
	.current .btn a {
		font-size: 15px;
		width: 275px;
	}
}
/* ========================================

doctor

======================================== */
.doctor {
	color: #fff;
	background-color: var(--c_base);
}
.doctor_inner {
	margin: 0 auto;
}
.doctor_pref_img .caption {
	color: #d0d0d0;
}

@media screen and (min-width: 801px) {
	.doctor {
		padding: 116px 0 120px;
	}
	.doctor_tit {
		margin-bottom: 54px;
	}
	.doctor_inner {
		width: min(87.5%, 1120px);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.doctor_prof {
		width: 43.75%;
	}
	.doctor_prof_img {
		margin-bottom: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.doctor_prof_img .img {
		width: 93.8776%;
		display: block;
	}
	.doctor_prof_img .caption {
		font-size: 12px;
		letter-spacing: 0.05em;
		-webkit-writing-mode: vertical-rl;
		    -ms-writing-mode: tb-rl;
		        writing-mode: vertical-rl;
		width: 1em;
		margin-left: 0.5em;
	}
	.doctor_prof .pos {
		font-size: 14px;
		margin-bottom: 19px;
	}
	.doctor_prof .name {
		font-size: 30px;
		margin-bottom: 19px;
	}
	.doctor_prof .year {
		font-size: 14px;
	}
	.doctor_cont {
		font-size: 16px;
		line-height: 2;
		width: 50.1786%;
		margin-top: -0.6em;
	}
}
@media screen and (max-width: 800px) {
	.doctor {
		padding: 95px 0 80px;
	}
	.doctor_tit {
		margin-bottom: 58px;
	}
	.doctor_tit h2 {
		font-size: 27px;
	}
	.doctor_inner {
		width: 89.3334%;
	}
	.doctor_prof {
		text-align: center;
		margin-bottom: 50px;
	}
	.doctor_prof_img {
		margin-bottom: 30px;
	}
	.doctor_prof_img .img {
		display: block;
		margin-bottom: 9px;
	}
	.doctor_prof_img .caption {
		letter-spacing: 0.05em;
	}
	.doctor_prof .pos {
		font-size: 11px;
		margin-bottom: 8px;
	}
	.doctor_prof .name {
		font-size: 21px;
		margin-bottom: 8px;
	}
	.doctor_prof .year {
		font-size: 11px;
	}
	.doctor_cont {
		font-size: 15px;
		line-height: 2;
	}
}
/* ========================================

signature

======================================== */
.signature {
	background-color: var(--c_base);
}
.signature_inner {
	margin: 0 auto;
	background-color: #fff;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	        mask-size: 100% 100%;
	-webkit-mask-position: 50% 50%;
	        mask-position: 50% 50%;
}
.signature_inner.fadeIn h2 span::after {
	scale: 1 1;
}
.signature h2 {
	font-family: var(--f_serif);
	font-weight: 600;
	text-align: center;
}
.signature h2 span {
	position: relative;
}
.signature h2 span::after {
	width: 100%;
	height: 1px;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	background-color: #281b10;
	scale: 0 1;
	-webkit-transition: all 1s;
	transition: all 1s;
	-webkit-transition-delay: 1s;
	        transition-delay: 1s;
	-webkit-transform-origin: 0 0;
	        transform-origin: 0 0;
}
.signature .txt {
	font-size: 15px;
	text-align: center;
}
.signature dl dd input[type=text] {
	width: 100%;
	border: 1px solid var(--c_base);
}
.signature dl dd textarea {
	width: 100%;
	border: 1px solid var(--c_base);
}
.signature input[type=submit] {
	color: #fff;
	display: block;
	margin: 0 auto;
	background-color: var(--c_key);
	border: 1px solid #fff;
	border-radius: 30px;
}
.signature .notice._recaptcha {
	margin-top: 1em;
	opacity: 0.8;
}
.signature .notice._recaptcha a {
	text-decoration: underline;
}
.signature .thanks {
	text-align: center;
	line-height: 1.3;
}

@media screen and (min-width: 801px) {
	.signature {
		padding: 120px 0 80px;
	}
	.signature_inner {
		width: min(87.5%, 1120px);
		padding: 87px 0 97px;
		-webkit-mask-image: url(../img/taiga/signature_bg_mask.png);
		        mask-image: url(../img/taiga/signature_bg_mask.png);
	}
	.signature h2 {
		font-size: min(3.8096vw, 40px);
		line-height: 1.5;
		margin-bottom: 70px;
	}
	.signature h2 span::after {
		bottom: 3px;
	}
	.signature dl {
		font-size: 16px;
		width: min(87.6191%, 920px);
		margin: 0 auto 59px;
	}
	.signature dl dt {
		margin-bottom: 12px;
	}
	.signature dl dd input[type=text] {
		padding: 25px 36px;
	}
	.signature dl dd input[type=text]::-webkit-input-placeholder {
		color: #b9b9b9;
	}
	.signature dl dd input[type=text]::-moz-placeholder {
		color: #b9b9b9;
	}
	.signature dl dd input[type=text]:-ms-input-placeholder {
		color: #b9b9b9;
	}
	.signature dl dd input[type=text]::-ms-input-placeholder {
		color: #b9b9b9;
	}
	.signature dl dd input[type=text]::placeholder {
		color: #b9b9b9;
	}
	.signature dl dd textarea {
		line-height: 1.5;
		padding: 25px 36px;
	}
	.signature dl dd textarea::-webkit-input-placeholder {
		color: #b9b9b9;
	}
	.signature dl dd textarea::-moz-placeholder {
		color: #b9b9b9;
	}
	.signature dl dd textarea:-ms-input-placeholder {
		color: #b9b9b9;
	}
	.signature dl dd textarea::-ms-input-placeholder {
		color: #b9b9b9;
	}
	.signature dl dd textarea::placeholder {
		color: #b9b9b9;
	}
	.signature dl dd:first-of-type {
		margin-bottom: 60px;
	}
	.signature input[type=submit] {
		cursor: pointer;
		font-size: 22px;
		letter-spacing: 0.02em;
		text-align: center;
		width: 260px;
		height: 60px;
		margin-bottom: 56px;
		-webkit-transition: all 0.2s;
		transition: all 0.2s;
	}
	.signature input[type=submit]:hover {
		letter-spacing: 0.1em;
	}
	.signature .notice {
		font-size: 16px;
		line-height: 1.5;
		text-align: center;
	}
	.signature .notice._recaptcha {
		font-size: 13px;
	}
	.signature .thanks {
		font-size: 22px;
	}
}
@media screen and (max-width: 800px) {
	.signature {
		padding: 95px 0 30px;
	}
	.signature_inner {
		width: 89.3334%;
		padding: 54px 0 56px;
		-webkit-mask-image: url(../img/taiga/signature_bg_mask_sp.png);
		        mask-image: url(../img/taiga/signature_bg_mask_sp.png);
	}
	.signature h2 {
		font-size: min(5.6001vw, 21px);
		line-height: 1.4286;
		margin-bottom: 44px;
	}
	.signature h2 span::after {
		bottom: 0;
	}
	.signature dl {
		font-size: 15px;
		width: min(82.0896%, 550px);
		margin: 0 auto 30px;
	}
	.signature dl dt {
		margin-bottom: 10px;
	}
	.signature dl dd {
		font-size: 11px;
	}
	.signature dl dd input[type=text] {
		padding: 22px 12px;
	}
	.signature dl dd textarea {
		line-height: 1.3637;
		letter-spacing: -0.02em;
		padding: 14px 12px;
	}
	.signature dl dd:first-of-type {
		margin-bottom: 28px;
	}
	.signature input[type=submit] {
		font-size: 15px;
		width: 130px;
		height: 50px;
		margin-bottom: 26px;
	}
	.signature .notice {
		font-size: 11px;
		line-height: 1.5;
		width: 82%;
		margin: 0 auto;
	}
	.signature .notice:not(._recaptcha) {
		text-indent: -1em;
		padding-left: 1em;
	}
	.signature .thanks {
		font-size: 15px;
	}
}
/* ========================================

news

======================================== */
.news .note {
	font-size: 14px;
	text-align: center;
	margin-bottom: 120px;
}
.news_list {
	margin: 0 auto;
}
.news_list li:not(:last-of-type) {
	border-bottom: 1px solid #26190f;
}
.news_list .date {
	font-family: var(--f_num);
}
.news_list h3 {
	font-family: var(--f_serif);
	font-weight: 600;
	letter-spacing: -0.04em;
}
.news_list .txt {
	letter-spacing: -0.03em;
}

@media screen and (min-width: 801px) {
	.news {
		padding-top: 120px;
	}
	.news_tit {
		margin-bottom: 50px;
	}
	.news_list {
		width: min(87.5%, 1120px);
	}
	.news_list li {
		padding-bottom: 70px;
	}
	.news_list li:not(:last-of-type) {
		margin-bottom: 76px;
	}
	.news_list li:last-of-type {
		margin-bottom: 44px;
	}
	.news_list .date {
		font-size: 16px;
		margin-bottom: 16px;
	}
	.news_list h3 {
		font-size: 30px;
		margin-bottom: 28px;
	}
	.news_list .txt {
		font-size: 16px;
		line-height: 2;
	}
}
@media screen and (max-width: 800px) {
	.news {
		padding-top: 98px;
	}
	.news_tit {
		margin-bottom: 55px;
	}
	.news_list {
		width: 89.3334%;
	}
	.news_list li {
		padding-bottom: 54px;
	}
	.news_list li:not(:last-of-type) {
		margin-bottom: 58px;
	}
	.news_list li:last-of-type {
		margin-bottom: 45px;
	}
	.news_list .date {
		margin-bottom: 12px;
	}
	.news_list h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.news_list .txt {
		font-size: 12px;
		line-height: 1.5;
	}
}
/* ========================================

dashboard

======================================== */
#dashboard {
	position: relative;
	padding: 30px;
	padding-top: 70px;
	background-color: rgba(40, 27, 16, 0.05);
}
#dashboard::after {
	opacity: 0.2;
}
#dashboard h1 {
	color: #fff;
	font-size: 12px;
	width: 100%;
	height: 40px;
	padding: 0 15px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #281b10;
	-webkit-box-shadow: 0 0 20px rgba(40, 27, 16, 0.1);
	        box-shadow: 0 0 20px rgba(40, 27, 16, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#dashboard .box {
	font-size: 15px;
	padding: 30px;
	padding-bottom: 60px;
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 20px rgba(40, 27, 16, 0.1);
	        box-shadow: 0 0 20px rgba(40, 27, 16, 0.1);
}
#dashboard .box h2 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
}
#dashboard .box code {
	background: #f3f3f3;
	padding: 2px 6px;
	border-radius: 4px;
}
#dashboard .box table {
	width: 100%;
	border-collapse: collapse;
}
#dashboard .box table thead {
	font-weight: bold;
	border-bottom: 3px double #aaa;
}
#dashboard .box table thead th {
	padding: 12px 8px 14px;
}
#dashboard .box table tr:nth-child(2n) th, #dashboard .box table tr:nth-child(2n) td {
	background-color: rgba(0, 0, 0, 0.05);
}
#dashboard .box table th,
#dashboard .box table td {
	padding: 8px;
	text-align: left;
	vertical-align: middle;
}
#dashboard .box table .size {
	width: 140px;
}
#dashboard .box table .date {
	width: 170px;
}
#dashboard .box table .btn {
	width: 130px;
	padding-left: 0;
	padding-right: 0;
}
#dashboard .box table .btn_dl {
	color: #fff;
	font-size: 13px;
	text-align: center;
	width: 110px;
	display: block;
	padding: 8px 0 10px;
	background-color: rgba(40, 27, 16, 0.85);
	border-radius: 3px;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
#dashboard .box table .btn_dl:hover {
	opacity: 0.8;
}