@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
	--primary-color: #22234B;
	--brown-color: #7A5B3A
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
	display: block;
}

ul,
li,
ol,
dl {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	display: inline-block;
	margin: 0;
	padding: 0;
	color: var(--default-text-color);
	text-decoration: none !important;
	transition: all .3s;
}
@media (hover: hover) and (pointer: fine) {
	a:hover {
		opacity: .8;
	}
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 0.1rem dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:after,
*:before {
	-webkit-appearance: none;
	word-break: break-all;
	box-sizing: border-box;
}

video {
	filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media print,screen and (min-width: 1080.01px) {
	.tab-off {
		display: none !important;
	}
}
/* PC(768px以上)のみ非表示 */
@media print,screen and (min-width: 767.01px) {
	.pc-off {
		display: none !important;
	}
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
	.sp-off {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--default-text-color);
	}
}
@media screen and (min-width: 767.01px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

html {
	font-size: 62.5%;
	letter-spacing: 0;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;
	color: var(--default-text-color);
	letter-spacing: 2px;

	@media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
		font-size: calc(10 / 1920 * 100 * 1vw);
	}

	/* あまりにも文字サイズが小さくなった場合 */
	@media screen and (min-width: 767.01px) and (max-width: 1080px) {
		font-size: calc(12 / 1920 * 100 * 1vw);
	}

	/* スマホ用（デザインサイズが375の場合） */
	@media screen and (max-width: 767px) {
		/* font-size: calc(10 / 375 * 100 * 1vw); */
	}
}

body {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background-size: contain;
        background-repeat: repeat;
        background-image: url(../../common/img/line-bg.png);
        width: 100%;
        height: 100%;
        z-index: -2;
		
		@media screen and (max-width: 767px) {
			background-image: url(../../common/img/line-bg-sp.png);
		  
		}
    }
}

body {
	font-size: 1.6rem;
	line-height: 1;
	overflow: auto;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		pointer-events: none;
	}
}


/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1920 * 100 * 14px);
	}
	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
}
@page {
	size: A4;
	margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
	--sb-track-color: #ddd;
	--sb-thumb-color: #000;
	--sb-size: 0;
	/* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
	overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
	width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
	overflow: clip;
}

.menu-active {
	overflow: hidden;

	#header.home {
		background-color: #fff;
	}
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	padding-right: 4rem;
	height: 12rem;
	box-shadow: 0 1px 20px rgba(0,0,0,.2);
	background-color: #fff;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;

	/* Home page: transparent mặc định */
	&.home {
		background-color: transparent;
		box-shadow: none;
		
		&.scrolled {
			background-color: #fff;
			box-shadow: 0 1px 20px rgba(0,0,0,.2);
		}
	}

	@media screen and (max-width: 1081px) {
		flex-direction: column;
		height: auto;
	  
	}

	@media screen and (max-width: 767px) {
		flex-direction: column;
		padding-right: 2rem;
		padding-top: 1rem;
		height: 8rem;
		/* background: transparent; */
		box-shadow: none;
		background: #fff;
	}

	.left-col {
		display: flex;
		align-items: center;
		gap: 6px;
		padding-left: 2.4rem;

		@media screen and (max-width: 767px) {
		  padding-top: 1rem;
		}

		.desc-text {
			text-transform: uppercase;
			 font-family: "Oswald", sans-serif;
			 color: #5B5B5B;
			 transform: translateY(1rem);

			 @media screen and (max-width: 767px) {
			               transform: translateY(4px);
            font-size: 1.2rem;
			 }
		}

		& a {
			display: flex;
			align-items: center;
		}

		.logomark {
				/* height: 100%; */
				width: 20.4rem;

				& a {
					height: 100%;

					& img {
						height: 100%;
					}
				}

				@media screen and (max-width: 767px) {
				  width: 28%;
				}
		}
	}

	.right-col {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 5rem;

		.nav {

			.main-list {
				display: flex;
				align-items: center;
				gap: 4rem;

				@media screen and (max-width: 767px) {
					height: 100%;
				  flex-direction: column;
				  justify-content: center;
				  gap: 5rem;
				  overflow: scroll;
				  align-items: start;
                    padding-left: 4.5rem;
					color: #fff;
				}

				@media screen and (max-width: 376px) {
				  padding-top: 10rem;
				}

				.menu-item {

					@media screen and (max-width: 767px) {
					  width: 100%;
					}
				}

				.menu-item:first-child {
					@media screen and (max-width: 767px) {
						margin-top: -23rem;
					}

				}
			}

			.menu-link {
				font-size: 1.8rem;
				font-weight: bold;
				@media screen and (max-width: 767px) {
				  color: #fff;
				  font-size: 1.6rem;
				  font-weight: 500;
				  width: 70%;
				}
			}
		}

		.btn-entry {
			height: 5rem;
			width: 20rem;
			display: flex;
			justify-content: center;
			align-items: center;
			color: #fff;
			font-size: 1.4rem;
			font-weight: bold;
			background-color: var(--brown-color);
			border-radius: 5px;

			@media screen and (max-width: 767px) {
			              width: 9rem;
            height: 4rem;
            font-size: 1.2rem;
            position: absolute;
            top: 2rem;
            right: 20%;
			}
		}
	}


	/* メニューボタン */
	.menu-btn {
		position: absolute;
		display: none;
		top: 1rem;
		right: 0;
		z-index: 9999;

		@media screen and (max-width: 767px) {
			display: block;
		}

		&:after {
			/* content: "MENU"; */
			content: "";
			position: absolute;
			left: 50%;
			bottom: 1.1rem;
			color: var(--primary-color);
			font-weight: 500;
			letter-spacing: 0.05em;
			font-size: 1.1rem;
			transform: translateX(-50%);
			white-space: nowrap;
		}

		& a {
			position: relative;
			width: 10rem;
			height: 10rem;
			vertical-align: top;
			transition: ease 0.25s all;

			@media screen and (max-width: 767px) {
				width: 6rem;
				height: 6rem;
			}

			& span {
				position: absolute;
				left: 50%;
				top: 50%;
				display: block;
				margin-left: -1.8rem;
				width: 3.4rem;
				height: 0.2rem;
				background: var(--primary-color);
				border-radius: 0.3rem;

				@media screen and (max-width: 767px) {
					margin-left: -1.4rem;
					width: 2.8rem;
					height: 0.2rem;
				}

				&:before,
				&:after {
					content: "";
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: var(--primary-color);
					border-radius: 0.3rem;
					transition: ease 0.25s all;
				}

				&:before {
					margin-top: -1.1rem;
				}
				@media screen and (max-width: 767px) {
					&:before {
						margin-top: -0.7rem;
					}
				}
				&:after {
					margin-top: 1.1rem;
				}
				@media screen and (max-width: 767px) {
					&:after {
						margin-top: 0.7rem;
					}
				}
			}
		}
	}
}

@media screen and (max-width: 767px) {
	.nav {
		position: fixed;
		left: 100%;
		z-index: 999;
		width: 100%;
		pointer-events: none;
	}
}

.menu-active {
	#header {
		.menu-btn {
			/* position: fixed; */
			& a {
				background-color: #fff;
				& span {
					background-color: transparent;
					&:before {
						margin-top: 0;
						transform: rotate(45deg);
						-webkit-transform: rotate(45deg);
					}
					&:after {
						margin-top: 0;
						transform: rotate(-45deg);
						-webkit-transform: rotate(-45deg);
					}
				}
			}
		}

		@media screen and (max-width: 767px) {
			.nav {
				top: 8rem;
				left: 0;
				pointer-events: auto;
				height: 100vh;
				background: linear-gradient(to right, #22234B, #646573);
				color: #fff;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
	padding: 0;

	@media screen and (max-width: 767px) {
		display: none;
	}
	& ol {
		display: flex;
		flex-wrap: wrap;
	}
	& li {
		position: relative;
		margin-right: 3rem;
		font-weight: 500;
		font-size: 1.2rem;
		letter-spacing: 0.1em;
		font-size: 1.6rem;
		font-family: "Zen Kaku Gothic New", sans-serif;
		
		
		&:last-child{
			margin-right: 0;
			                    text-overflow: ellipsis;
                    /* overflow: hidden; */
                    white-space: nowrap;
					width: 10%;
			&:after{
				display: none;
			}
		}

		&:after {
			content: "";
			position: absolute;
			right: -2rem;
			top: 50%;
			transform: translateY(-30%);
			z-index: 0;
			display: block;
			width: 6px;
			height: 12px;
			background-size: contain;
			background-repeat: no-repeat;
			background-image: url(../../common/img/breadcrumb-arrow-icon.svg);
			&:last-child:after {
				display: none;
			}
		}
	}
	& a {
		color: #ADADAD;
		transition: all .3s;

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				opacity: .7;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
	@media screen and (max-width: 767px) {
	  padding-top: 1rem;
	}
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
.block-cta{
	background: linear-gradient(to right, #22234B, #827363);
	padding-top: 15rem;
	padding-bottom: 18rem;
	position: relative;
	
	@media screen and (max-width: 767px) {
		background: linear-gradient(to bottom, #22234B, #827363);
	  
	}

	&::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: -1rem;
		width: 100%;
		height: 10rem;
		background-size: contain;
		background-repeat: no-repeat;
		background-image: url(../../common/img/cta-text.png);
		
		@media screen and (max-width: 767px) {
			bottom: 5rem;
			height: 6rem;
			background-image: url(../../common/img/cta-text-sp.png);
		}

	}

	@media screen and (max-width: 767px) {
	  padding: 16rem 0;
	  padding-top: 5rem;
	}
	
	.inner{
		display: flex;
		justify-content: space-between;

		@media screen and (max-width: 767px) {
		  flex-direction: column;
		  gap: 4.5rem;
		  width: 100vw;
		}
	
		.left-col{
			@media screen and (max-width: 767px) {
			  padding: 0 2.7rem;
			}

			.common-title-box {
				color: #fff;

				.ja-title {
					font-family: "Zen Kaku Gothic New", sans-serif;

					@media screen and (max-width: 767px) {
					  font-size: 2.6rem;
					}
				}
				
				.en-title {
					color: #fff;

					@media screen and (max-width: 767px) {
					  font-size: 1.6rem;
					}
				}
			}
		
		}
		
		.right-col{
			display: flex;
			gap: 3rem;
			@media screen and (max-width: 767px) {
			  flex-direction: column;
			  gap: 2rem;
			  padding: 0 1.4rem;
			}
		}
	}
}

#footer {
	padding-top: 8rem;
	padding-bottom: 5rem;
	background-color: #fff;
	@media screen and (max-width: 767px) {
	  padding-top: 4rem;
	  padding-bottom: 4.5rem;
	}

	.top-box {
		display: flex;
		justify-content: space-between;
		margin-bottom: 13rem;

		@media screen and (max-width: 767px) {
		  flex-direction: column;
		  margin-bottom: 7rem;
		}

		.left-col {
			display: flex;
			flex-direction: column;
			gap: 3rem;

			@media screen and (max-width: 767px) {
			  gap: 2.6rem;
			}
			
			.logo-box {
				display: flex;
				align-items: center;
				gap: 6px;

				@media screen and (max-width: 767px) {
				  justify-content: center;
				}

				& img {
					width: 230px;
				}
				.desc-text {
					color: #5B5B5B;
					font-size: 1.8rem;
					text-transform: uppercase;
					transform: translateY(1rem);
					 font-family: "Oswald", sans-serif;

					 @media screen and (max-width: 767px) {
					   font-size: 1.4rem;
					 }
				}

				@media screen and (max-width: 767px) {
				  & img {
					width: 50%;
				  }
				}

			}

			.company-name {
				font-size: 2rem;
				font-weight: bold;

				@media screen and (max-width: 767px) {
				  font-size: 1.8rem;
				  margin-top: 10px;
				}
			}

			.address {
				font-size: 1.6rem;
				font-weight: 500;
				line-height: 2;

				@media screen and (max-width: 767px) {
				  font-size: 1.4rem;
				}
			}

		}

		.right-col {
			display: flex;
			gap: 12.5rem;
			padding-top: 2rem;

			@media screen and (max-width: 767px) {
			  gap: 2rem;
			  padding-top: 6rem;
			  display: none;
			}

			.footer-links-col {
				display: flex;
				flex-direction: column;
				gap: 4rem;

				@media screen and (max-width: 767px) {
				  gap: 2rem;
				}

				& a {
					font-size: 1.8rem;
					font-weight: bold;

					@media screen and (max-width: 767px) {
					  font-size: 1.6rem;
					  line-height: 1.7;
					}
				}

				& a[target="_blank"] {
					position: relative;

					&::after {
						content: '';
						position: absolute;
						bottom: -2px;
                        right: -1rem;
						width: 2rem;
						height: 2rem;
						background-size: contain;
						background-repeat: no-repeat;
						background-position: center;
						background-image: url(../../common/img/icon_blank-link-blue.svg);
					}
				}
			}
		}
	}

	& small {
		display: block;
		font-size: 1.4rem;
		text-align: center;

		@media screen and (max-width: 767px) {
		  line-height: 1.7;
		  font-size: 1.2rem;
		}
	}

	.pageup {
		position: fixed;
		bottom: 8rem;
		right: 6rem;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background: var(--primary-color);
		z-index: 999;

		@media screen and (max-width: 767px) {
		  bottom: 10rem;
		  right: 2rem;
		}

		&::after {
			content: '';
			position: absolute;
			background-image: url(../../common/img/icon-btn-arrow.svg);
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
			width: 13px;
			height: 13px;
			top: 50%;
			left: 50%;
			transform: rotate(-90deg) translate(50%, -40%);

		}
	}
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 4rem);
	}
}

.w960 {
	max-width: 96rem;
}
.w1080 {
	max-width: 108rem;
}
.w1200 {
	max-width: 120rem;
}
.w1300 {
	max-width: 130rem;
}
.w1400 {
	max-width: 140rem;
}
.w1440 {
	max-width: 144rem;
}
.w1600 {
	max-width: 160rem;

	@media screen and (max-width: 1081px) {
		max-width: calc((100% - 20rem));
	  
	}

	@media screen and (max-width: 767px) {
	  max-width: 100%;
	}
}
.w1800 {
	max-width: 180rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.common-title.type01 {
	text-align: center;
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn-icon {
		width: 5rem;
		height: 3rem;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: var(--primary-color);

		@media screen and (max-width: 767px) {
		          width: 37px;
        height: 24px;
        padding-left: 3px;
		}
}

.common-btn {
	width: 46rem;
	height: 8rem;
	display: flex;
	align-items: center;
	padding: 0 2rem;
	border: 1.45px solid #fff;
	border-radius: 10px;

	@media screen and (max-width: 767px) {
	  width: 100%;
	  height: 7.2rem;
	}

	.btn-text {
		flex: 1;
		text-align: center;
		font-size: 2rem;
		font-weight: bold;
		font-family: "Zen Kaku Gothic New", sans-serif;
		padding-left: 4rem;

		@media screen and (max-width: 767px) {
		  font-size: 1.8rem;
		  padding-left: 0;
		}
	}

	

	&.transparent {
		background-color: transparent;
		color: #fff;

		.common-btn-icon {
			background-color: #fff;
		}
	}

	&.white {
		background-color: #fff;
		color: var(--brown-color);

		.common-btn-icon {
			background-color: var(--brown-color);
		}
	}
	&.main {
		background-color: var(--primary-color);
		color: #fff;
		.common-btn-icon {
			background-color: #fff;
		}
	}

	&.brown {
		background-color: var(--brown-color);
		color: #fff;
		.common-btn-icon {
			background-color: #fff;
		}

	}
}


.common-btn-type02 {
	font-size: 1.8rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 1.5rem;

	@media screen and (max-width: 767px) {
	  /* justify-content: center; */
	}
}

/* ------------------------------------------- */
/* vertical title */
/* ------------------------------------------- */
.v-title-box{
	font-size: 5rem;
	font-weight: bold;
	writing-mode: vertical-rl;
	letter-spacing: 4px;
	  font-family: "Zen Kaku Gothic New", sans-serif;

	@media screen and (max-width: 767px) {
	  letter-spacing: 1px;
	  writing-mode: horizontal-tb;
	  font-size: 2.4rem;
	}
	
	& span {
		position: relative;
		display: inline-block;
		padding: 2rem 0;

		@media screen and (max-width: 767px) {
		  padding: 1rem;
		}

		&::before, &::after {
			position: absolute;
			content: '';
			width: 8rem;
			height: 8rem;
			background-repeat: no-repeat;
			background-size: contain;

			@media screen and (max-width: 767px) {
			  width: 2.5rem;
			  height: 2.5rem;
			}
		}
	
		&::before {
			background-image: url(../../common/img/open-kakko.svg);
			top: -1rem;
			left: -60%;

			@media screen and (max-width: 767px) {
			  top: 0;
            left: 0;
        }
			}
	
			&::after {
				background-image: url(../../common/img/close-kakko.svg);
				bottom: 0;
				right: -60%;
	
				@media screen and (max-width: 767px) {
				  right: 0;
				  bottom: 0;
				}
		
			}
		}
	}



/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-title-box{
	display: flex;
	flex-direction: column;
	gap: 2rem;
	color: #000;

	.ja-title{
		font-size: 4.6rem;
		font-weight: bold;

		@media screen and (max-width: 767px) {
		  font-size: 3rem;
		}
	
	}
	.en-title{
		 font-family: "Oswald", sans-serif;
		font-size: 2.2rem;
		font-weight: 500;
		text-transform: uppercase;
		color: var(--primary-color);

		@media screen and (max-width: 767px) {
		  font-size: 1.8rem;
		}
	
	}
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;

	& p {
		margin-bottom: 2rem;
		&:last-child {
			margin-bottom: 0;
		}
	}
}
/* table-scroll */
@media screen and (max-width: 767px) {
	.table-scroll {
		position: relative;
		padding-bottom: 2rem;
		overflow-x: scroll;
		&:after {
			content: "←";
			position: absolute;
			right: 0;
			bottom: 0;
			z-index: 1;
			margin-left: -1.5rem;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			width: 3rem;
			height: 3rem;
			border-radius: 1.5rem;
			border: 0.1rem solid #000;
			animation: arrowtable 2s infinite forwards;
		}
		.common-table {
			width: 80rem;
		}
	}
}
@keyframes arrowtable {
	50% {
		opacity: 1;
		right: 0;
	}
	100% {
		opacity: 0;
		right: 100%;
	}
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
	margin-bottom: 0rem !important;
}
.mb10 {
	margin-bottom: 1rem !important;
}
.mb20 {
	margin-bottom: 2rem !important;
}
.mb30 {
	margin-bottom: 3rem !important;
}
.mb40 {
	margin-bottom: 4rem !important;
}
.mb50 {
	margin-bottom: 5rem !important;
}
.mb60 {
	margin-bottom: 6rem !important;
}
.mb70 {
	margin-bottom: 7rem !important;
}
.mb80 {
	margin-bottom: 8rem !important;
}
.mb90 {
	margin-bottom: 9rem !important;
}
.mb100 {
	margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
	.mb10 {
		margin-bottom: 0.5rem !important;
	}
	.mb20 {
		margin-bottom: 1rem !important;
	}
	.mb30 {
		margin-bottom: 1.5rem !important;
	}
	.mb40 {
		margin-bottom: 2rem !important;
	}
	.mb50 {
		margin-bottom: 2.5rem !important;
	}
	.mb60 {
		margin-bottom: 3rem !important;
	}
	.mb70 {
		margin-bottom: 3.5rem !important;
	}
	.mb80 {
		margin-bottom: 4rem !important;
	}
	.mb90 {
		margin-bottom: 4.5rem !important;
	}
	.mb100 {
		margin-bottom: 5rem !important;
	}
}

.mt0 {
	margin-top: 0rem !important;
}
.mt10 {
	margin-top: 1rem !important;
}
.mt20 {
	margin-top: 2rem !important;
}
.mt30 {
	margin-top: 3rem !important;
}
.mt40 {
	margin-top: 4rem !important;
}
.mt50 {
	margin-top: 5rem !important;
}
.mt60 {
	margin-top: 6rem !important;
}
.mt70 {
	margin-top: 7rem !important;
}
.mt80 {
	margin-top: 8rem !important;
}
.mt90 {
	margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
	.mt10 {
		margin-top: 0.5rem !important;
	}
	.mt20 {
		margin-top: 1rem !important;
	}
	.mt30 {
		margin-top: 1.5rem !important;
	}
	.mt40 {
		margin-top: 2rem !important;
	}
	.mt50 {
		margin-top: 2.5rem !important;
	}
	.mt60 {
		margin-top: 3rem !important;
	}
	.mt70 {
		margin-top: 3.5rem !important;
	}
	.mt80 {
		margin-top: 4rem !important;
	}
	.mt90 {
		margin-top: 4.5rem !important;
	}
	.mt100 {
		margin-top: 5rem !important;
	}
}

.pb0 {
	padding-bottom: 0 !important;
}
.pb10 {
	padding-bottom: 1rem !important;
}
.pb20 {
	padding-bottom: 2rem !important;
}
.pb30 {
	padding-bottom: 3rem !important;
}
.pb40 {
	padding-bottom: 4rem !important;
}
.pb50 {
	padding-bottom: 5rem !important;
}
.pb60 {
	padding-bottom: 6rem !important;
}
.pb70 {
	padding-bottom: 7rem !important;
}
.pb80 {
	padding-bottom: 8rem !important;
}
.pb90 {
	padding-bottom: 9rem !important;
}
.pb100 {
	padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pb10 {
		padding-bottom: 0.5rem !important;
	}
	.pb20 {
		padding-bottom: 1rem !important;
	}
	.pb30 {
		padding-bottom: 1.5rem !important;
	}
	.pb40 {
		padding-bottom: 2rem !important;
	}
	.pb50 {
		padding-bottom: 2.5rem !important;
	}
	.pb60 {
		padding-bottom: 3rem !important;
	}
	.pb70 {
		padding-bottom: 3.5rem !important;
	}
	.pb80 {
		padding-bottom: 4rem !important;
	}
	.pb90 {
		padding-bottom: 4.5rem !important;
	}
	.pb100 {
		padding-bottom: 5rem !important;
	}
}

.pt0 {
	padding-top: 0 !important;
}
.pt10 {
	padding-top: 1rem !important;
}
.pt20 {
	padding-top: 2rem !important;
}
.pt30 {
	padding-top: 3rem !important;
}
.pt40 {
	padding-top: 4rem !important;
}
.pt50 {
	padding-top: 5rem !important;
}
.pt60 {
	padding-top: 6rem !important;
}
.pt70 {
	padding-top: 7rem !important;
}
.pt80 {
	padding-top: 8rem !important;
}
.pt90 {
	padding-top: 9rem !important;
}
.pt100 {
	padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pt10 {
		padding-top: 0.5rem !important;
	}
	.pt20 {
		padding-top: 1rem !important;
	}
	.pt30 {
		padding-top: 1.5rem !important;
	}
	.pt40 {
		padding-top: 2rem !important;
	}
	.pt50 {
		padding-top: 2.5rem !important;
	}
	.pt60 {
		padding-top: 3rem !important;
	}
	.pt70 {
		padding-top: 3.5rem !important;
	}
	.pt80 {
		padding-top: 4rem !important;
	}
	.pt90 {
		padding-top: 4.5rem !important;
	}
	.pt100 {
		padding-top: 5rem !important;
	}
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 7rem;

	@media screen and (max-width: 767px) {
		margin-top: 3.5rem;
	}

	.back {
		margin: 0 8.3rem;
		@media screen and (max-width: 767px) {
			margin: 0 1rem;
		}
	}

	.prev,
	.next {
		width: 14rem;
		@media screen and (max-width: 767px) {
			width: 4.6rem;
		}
		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			width: 100%;
			height: 4.6rem;
			font-weight: 500;
			letter-spacing: 0.08rem;
			color: #000;
			box-sizing: border-box;
			transition: all .3s;

			@media screen and (max-width: 767px) {
				padding: 0;
				font-size: 0;
				color: transparent;
				opacity: .7;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					text-decoration: none;
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -2.3rem;
				display: block;
				width: 4.6rem;
				height: 4.6rem;
				border-radius: 2.3rem;
				background-color: var(--primary-color);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: var(--primary-color);
				}
			}
			@media screen and (max-width: 767px) {
				.&:after {
					width: 4.8rem;
					height: 4.8rem;
					margin-top: -2.4rem;
					border-radius: 0;
				}
			}

			&:before {
				content: "";
				position: absolute;
				top: 50%;
				z-index: 1;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.2rem solid #fff;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		& a {
			padding-left: 7.3rem;
			&:after {
				left: 0;
			}
			&:before {
				left: 2.2rem;
				border-left: 0.2rem solid #fff;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:before {
					border-left-color: #fff;
				}
			}
		}
	}
	.next {
		& a {
			padding-right: 7.3rem;
			&:after {
				right: 0;
			}
			&:before {
				right: 2.2rem;
				border-right: 0.2rem solid #fff;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
		}
	}
}

/* navigation pagination */
.navigation.pagination {
	margin: 7rem 0 0;

	@media screen and (max-width: 767px) {
		margin: 3rem 0 0;
	}

	.disable {
		display: none;
	}

	.nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;

		@media screen and (max-width: 767px) {
			position: relative;
			padding-bottom: 5rem;
		}
	}

	.pager {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 0 0.8rem;
		width: 5rem;
		height: 5rem;
		font-family: "Roboto", sans-serif;
		font-weight: bold;
		letter-spacing: 0.08em;
		color: #b2b2b2;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		/* border-radius: 0.4em; */
		border: 0.1rem solid #b2b2b2;
		border-radius: 50%;

		@media screen and (max-width: 767px) {
			width: 3rem;
			height: 3rem;
		}

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				color: #fff;
				background: var(--primary-color);
				border-color: var(--primary-color);
			}
		}
	}

	.pager.current {
		color: #fff;
		font-weight: bold;
		background: var(--primary-color);
		border-color: var(--primary-color);
	}

	.next,
	.prev {
		@media screen and (max-width: 767px) {
			/*position: absolute;*/
			/*bottom: 0;*/
			/*width: 48%;*/
			/*height: 4rem;*/
		}

		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			width: 5rem;
			height: 5rem;
			border-radius: 50%;
			font-size: 0;
			font-family: "Roboto", sans-serif;
			font-weight: bold;
			letter-spacing: 0.08em;
			text-decoration: none;
			color: #000;
			background: #fff;
			/* border: 0.1rem solid var(--primary-color); */
			transition: ease 0.25s background, ease 0.25s color;

			@media screen and (max-width: 767px) {
				width: 2.8rem;
				height: 2.8rem;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					color: #fff;
					background-color: var(--primary-color);
					&:after {
						border-top-color: #fff;
					}
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.1rem solid #b2b2b2;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		@media screen and (min-width: 767.01px) {
			margin-right: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-right: 1rem;
		}
		& a {
			&:after {
				left: 50%;
				margin-left: -0.2rem;
				border-left: 0.1rem solid #b2b2b2;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-left-color: #fff;
				}
			}
		}
	}
	.next {
		@media screen and (min-width: 767.01px) {
			margin-left: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-left: 1rem;
			/*right: 0;*/
		}
		& a {
			&:after {
				right: 50%;
				margin-right: -0.2rem;
				border-right: 0.1rem solid #b2b2b2;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-right-color: #fff;
				}
			}
		}
	}
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
	padding: 100px 30px;
	line-height: 1.8;
	text-align: center;
}


.bl-sec {
	padding: 10rem 0;

	@media screen and (max-width: 767px) {
	  padding: 6rem 0;
	}
}

.common-v-btn {
	font-size: 3rem;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.6rem;

	@media screen and (max-width: 767px) {
	  font-size: 2rem;
	}


	.btn-text {
		writing-mode: vertical-rl;
		letter-spacing: 2px;

		@media screen and (max-width: 767px) {
		  letter-spacing: 1px;
		}
	}

	.btn-icon {
		width: 5rem;
		height: 3.3rem;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
		background-color: var(--primary-color);

		@media screen and (max-width: 767px) {
		  width: 40px;
		  height: 26px;
		}
	}
}

.sec-news {
	background-color: #E4E4E4;
	.inner {
		display: flex;
		gap: 9rem;

		@media screen and (max-width: 767px) {
		  flex-direction: column;
		  gap: 4rem;
		}

	}

	.left-col {
		display: flex;
		flex-direction: column;
		gap: 6rem;
		flex: 0 0 25rem;

		@media screen and (max-width: 767px) {
		  flex: 0 0 100%;
		}
	}

	.right-col {
		flex: 1;
		max-width: 90%;

		@media screen and (max-width: 767px) {
		  max-width: 100%;
		}

		.news-list {
			.news-item {
				border-bottom: 1px solid #929292;
				&:first-child {
					border-top: 1px solid #929292;
				}
				.news-link {
					padding: 4rem 0;
					display: flex;
					flex-direction: column;
					gap: 1.6rem;

					.item-top-box {
						display: flex;
						align-items: center;
						gap: 1.6rem;
						font-size: 1.4rem;
						font-weight: 500;

						.date {
							font-size: 1.6rem;
							 font-family: "Jost", sans-serif;
						}

						.category {
							padding: 1rem 1.8rem;
							background-color: #929292;
							color: #fff;
						}
					}
					.title-box {
						font-size: 1.6rem;
						font-weight: bold;
						 overflow: hidden;
						white-space: nowrap;
						text-overflow: ellipsis;
					}
				}
			}
		}
	}

}

.bl-sec {
	padding: 10rem 0;
}


