@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=New+Tegomin&display=swap');



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
	--red: #d60039;
}
body {
	background: url(../img/texture.jpg) top center;
	background-size: 80rem auto;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}
a {
	color: #000;
}



/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
    font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}



/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 7.5rem;
	background: var(--red);
	padding: 0 5rem;
	position: relative;
	z-index: 99999;
}
header h1 {
	width: 20rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	header {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 6rem;
		padding: 0;
	}
	header h1 {
		width: 16rem;
	}	
}



/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
ul.gnav-menu {
	display: flex;
	align-items: center;
}
ul.gnav-menu > li {
	font-size: 1.6rem;
	white-space: nowrap;
	position: relative;
}
ul.gnav-menu > li:not(:first-child) {
	margin-left: 3rem;
}
ul.gnav-menu > li > a {
	display: flex;
	align-items: center;
	height: 7.5rem;
	position: relative;
	color: #fff;
}
ul.gnav-menu > li > a::after {
	position: absolute;
	background: #fff;
	bottom: 1.8rem;
	content: '';
	height: 1px;
	left: 0;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
	width: 100%;	
}
ul.gnav-menu > li > a:hover::after {
	transform: scale(1,1);
}
ul.gnav-menu > li > a:hover {
	opacity: 1;  
	filter: alpha(opacity=100);  
}
.service-list {
	position: absolute;
	left: 0;
	top: 7.5rem;
	transform: translateY(-1rem);
	transition: all .3s;
	opacity: 0;
	background: var(--red);
	padding: 2rem;
	z-index: 999;
	pointer-events: none;
}
ul.gnav-menu > li:hover > .service-list {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}
.service-list li a {
	color: #fff;
}
.service-list li:not(:last-child) {
	margin-bottom: 1rem;
}



/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
	background: url(../img/bg-footer.png) no-repeat center top;
	background-size: 100% auto;
	position: relative;
	padding: 16rem 0 4rem 0;
}
footer > figure {
	width: 10rem;
	position: absolute;
	right: 15rem;
	top: 8rem;
}
footer .wrap {
	display: flex;
	align-items: center;
	width: 80rem;
	margin: 0 auto;
}
footer .logo {
	width: 20rem;
	margin-bottom: 1rem;
}
footer .sns {
	display: flex;
	justify-content: center;
}
footer .sns a {
	display: flex;
	justify-content: center;
	line-height: 1;
	font-size: 3.2rem;
	color: var(--red);
  padding: 0 1rem;
}
footer address {
	margin-left: 2rem;
}
footer address a {
	display: block;
}

footer small {
	display: block;
	width: 80rem;
	margin: 0 auto;
	text-align: right;
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
	footer {
		background: url(../img/bg-footer.png) no-repeat center top;
		background-size: 100% auto;
		position: relative;
		padding: 12rem 0 14rem 0;
	}
	footer > figure {
		width: 12rem;
		position: absolute;
		right: 3rem;
		top: 4rem;
	}
	footer .wrap {
		flex-direction: column;
		width: auto;
		margin: 0 auto;
	}
	footer .sns a {
		margin-bottom: 3rem;
	}
	footer address {
		margin-left: 0;
		margin-bottom: 3rem;
		text-shadow:0.8px 0.8px 0 rgb(173, 173, 173), -0.8px -0.8px 0 rgb(173, 173, 173),
                  -0.8px 0.8px 0 rgb(173, 173, 173), 0.8px -0.8px 0 rgb(173, 173, 173),
                  0px 0.8px 0 rgb(173, 173, 173),  0-0.8px 0 rgb(173, 173, 173),
                  -0.8px 0 0 rgb(173, 173, 173), 0.8px 0 0 rgb(173, 173, 173);
	}
	footer address a {
		display: block;
	}
	
	footer small {
		width: auto;
		text-align: center;
		text-shadow:0.8px 0.8px 0 rgb(173, 173, 173), -0.8px -0.8px 0 rgb(173, 173, 173),
                  -0.8px 0.8px 0 rgb(173, 173, 173), 0.8px -0.8px 0 rgb(173, 173, 173),
                  0px 0.8px 0 rgb(173, 173, 173),  0-0.8px 0 rgb(173, 173, 173),
                  -0.8px 0 0 rgb(173, 173, 173), 0.8px 0 0 rgb(173, 173, 173);
	}
}




/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
}
.heading-1 span {
	display: block
}
.heading-2 {
    border-top: solid 0.4rem #353535;
    border-bottom: solid 0.4rem #353535;
    padding: 0.4rem 0;
    margin-bottom: 3rem;
		text-shadow:0.8px 0.8px 0 rgb(173, 173, 173), -0.8px -0.8px 0 rgb(173, 173, 173),
              -0.8px 0.8px 0 rgb(173, 173, 173), 0.8px -0.8px 0 rgb(173, 173, 173),
              0px 0.8px 0 rgb(173, 173, 173),  0-0.8px 0 rgb(173, 173, 173),
              -0.8px 0 0 rgb(173, 173, 173), 0.8px 0 0 rgb(173, 173, 173);
}
.heading-2 span {
    border-top: solid 0.2rem #353535;
    border-bottom: solid 0.2rem #353535;
    display: block;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 2.8rem;
    font-weight: normal;
}
@media (prefers-color-scheme: dark) {
	.heading-2 {
		color: #000 !important;
	}
}
@media screen and (max-width: 768px) {
    .heading-2 span {
        padding: 1.2rem 0;
        font-size: 2.4rem;
    }
}

/* more */
.more {
	text-align: center;
	line-height: 1;
	display: block;
	color: #fff;
	width: 24rem;
	padding: 2rem 0;
}
@media screen and (max-width: 768px) {

}

/* ttl */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
}
.ttl.wt {
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
.ttl:after {
	border-bottom: solid 4px var(--color);
	bottom: -4px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}

/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	font-weight: bold;
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
}
dl.detail dd {
	padding: 1.5rem;
	width: 75%;
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
dl.wt dt,
dl.wt dd {
	border-bottom: 1px solid rgba(255,255,255,0.25);
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}
	dl.detail dt {
		font-weight: bold;
		padding: 1.2rem 1.2rem 0 1.2rem;
		width: 100%;
	}
	dl.detail dd {
		padding: 0 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
	dl.bk dt {
		border-bottom: none;
	}
	dl.wt dt {
		border-bottom: none;
	}
}



/*  ----------------------------------------------------------

gallery

----------------------------------------------------------  */
.gallery-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	width: 100%;
	margin: 5rem auto 0;
	gap: 2rem;
}	
.gallery-list li {
	list-style: none;
	width: 100%;
}
.gallery-list img {	
	height: auto;
	width: 100%;
	object-fit: cover;	
}
.gallery-list span {	
	display: block;
	font-size: 1.2rem;
	line-height: 1.7;
	margin: 1.2rem 0 0 0;
	text-align: center;
	width: 14vw;
}
.object-fit-img {
	object-fit: contain;
	font-family: 'object-fit: contain;'
}
@media screen and (max-width: 768px) {
	.gallery-list {
		margin: 2rem auto 0;
		gap: 1rem;
	}
	.gallery-list span {	
		font-size: 1rem;
		line-height: 1.6;
		margin: 1rem auto 0 auto;
		width: 20vw;
	}
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: var(--red);	
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu > li {
	font-size: 2rem;
	text-align: center;
}
.gnav-sp-menu > li > a {
	display: block;
	padding: 1.5rem 0;
	white-space: nowrap;
	color: #fff;
}
.gnav-sp-menu > li > ul {
	display: flex;
	justify-content: center;
	background: rgba(0,0,0,0.15);
	padding: 1rem 2.5rem 1.5rem 2.5rem;
	border-radius: 0.6rem;
	margin-bottom: 1rem;
}
.gnav-sp-menu > li > ul li:not(:last-child) {
	margin-right: 2rem;
}
.gnav-sp-menu > li > ul li a {
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
}
/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 1000000;
	background: var(--red);
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 999999;
}
.open .toggle-btn span {
	background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
	background: url(../img/mv.jpg) no-repeat center / cover;
	position: relative;
	height: 28rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 4rem;
}
.page-ttl::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    background: url(../img/top-kv-3.png) no-repeat bottom;
    background-size: 100% auto;
    z-index: 100;
}
.page-ttl h2 {
	color:#fff;
	font-size: 4rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		height: 20rem;
	}.page-ttl h2 {
		font-size: 3.4rem;
	}
}



/*  ----------------------------------------------------------

local menu

----------------------------------------------------------  */
ul.lcmenu {
	display:flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	justify-content: space-between;
}
ul.lcmenu li {
	width: 32%;
	text-align: center;
}
ul.lcmenu li a {
	display: block;
	padding: 1.8rem 0 2rem 0;
	border: solid #333 1px;
	background: #fff;	
	white-space: nowrap;
}
ul.lcmenu li.current a {
	color: #fff;
	border: solid #333 1px;
	background: var(--color);	
}
@media screen and (max-width: 768px) {
	ul.lcmenu li {
		width: 49%;
	}
	ul.lcmenu li a {
		padding: 1.2rem 0 1.3rem 0;
	}	
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
	margin: 4rem auto 10rem auto;
	width: 88rem;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
}



/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
	width: 18rem;
}
@media screen and (max-width: 768px) {
	.fixed-btn {
		top: auto;
		right: 0;
		bottom: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
	}
	.fixed-btn .sp {
    display: flex;
    justify-content: center;
  }
	.fixed-btn a {
		width: 50%;
		padding: 0;
		height: 5.6rem;
	}
	.fixed-btn a .linebtn {
    width: 100%;
  }
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: var(--red);
	color: #fff;	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.4rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 12rem;
	}
}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
} 
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* txt */
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.txt-vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-center.not {
		text-align: left;
	}
	.txt-right.not {
		text-align: left;
	}	
	.txt-vertical.not {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}

/* serif */
.serif {
	font-family: "游明朝", "YuMincho", 'Noto Serif JP', serif;	
}

/* position */
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 100%;
	z-index: 99;
}

/* list */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 1.5rem;
}

.bg-grd {
	background: linear-gradient(#000 80%, transparent 80%);
}

/* map */
.gmap iframe {
	width: 100%;
	height: 40rem;
}

/* margin */
.mb-10 { 
	margin-bottom: 1rem !important;
}
.mb-15 {
	margin-bottom: 1.5rem !important;
}
.mb-20 {
	margin-bottom: 2.0rem !important;
}
.mb-25 {
	margin-bottom: 2.5rem !important;
}
.mb-30 {
	margin-bottom: 3.0rem !important;
}
.mb-35 {
	margin-bottom: 3.5rem !important;
}
.mb-40 {
	margin-bottom: 4.0rem !important;
}
.mb-45 {
	margin-bottom: 4.5rem !important;
}
.mb-50 {
	margin-bottom: 5.0rem !important;
}
.mb-55 {
	margin-bottom: 5.5rem !important;
}
.mb-60 {
	margin-bottom: 6.0rem !important;
}
.mb-65 {
	margin-bottom: 6.5rem !important;
}
.mb-70 {
	margin-bottom: 7.0rem !important;
}
.mb-75 {
	margin-bottom: 7.5rem !important;
}
.mb-80 {
	margin-bottom: 8.0rem !important;
}
.mb-85 {
	margin-bottom: 8.5rem !important;
}
.mb-90 {
	margin-bottom: 9.0rem !important;
}
.mb-95 {
	margin-bottom: 9.5rem !important;
}
.mb-100	{
	margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}
@-ms-keyframes fadeInUp {
	0% {
		opacity: 0;
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
	-ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
    animation-fill-mode: both
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}
@-ms-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateY(0);
	}
	100% {
		opacity: 1;
		transform: translateY(20px);
	}
}
.fadeInLeft {
    -webkit-animation: fadeInLeft 0.6s ease;
    -moz-animation: fadeInLeft 0.6s ease;
	-ms-animation: fadeInLeft 0.6s ease;
    animation: fadeInLeft 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
    animation-fill-mode: both
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-moz-keyframes fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}
@-ms-keyframes fadeInRight {
	0% {
		opacity: 0;
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeInRight {
    -webkit-animation: fadeInRight 0.6s ease;
    -moz-animation: fadeInRight 0.6s ease;
	-ms-animation: fadeInRight 0.6s ease;
    animation: fadeInRight 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
    animation-fill-mode: both
}
.fade,
.fadeLeft,
.fadeRight {
	opacity: 0;
}
.delay-1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}
.delay-2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}
.delay-3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}
.delay-4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.delay-5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}



/*  ----------------------------------------------------------

cv

----------------------------------------------------------  */
.cv {
	padding-top: 13rem;
    position: relative;
}
.cv .wrap {
    width: 80rem;
    margin: 0 auto;
    border: solid 0.6rem #b49b78;
    padding: 0.7rem;
    position: relative;
    background: #f5efd5;
    z-index: 10;
}
.cv .wrap > div {
    border: solid 0.3rem #b49b78;
    padding: 3rem 0;
}
.cv .wrap figure {
    position: absolute;
    left: -0.5rem;
    bottom: -0.5rem;
    width: 0;
}
.cv dl {
    width: 41rem;
    margin-right: 4rem;
    margin-left: auto;
}
.cv dl dt {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 2.8rem;
    font-weight: bold;
}
.cv dl dt img {
    width: 3rem;
    height: auto;
    margin-right: 0.6rem;
    margin-top: 0.4rem;
}
.cv dl a {
    display: block;
    font-weight: 900;
    font-size: 5.6rem;
    line-height: 1;
    color: var(--red);
    text-align: center;
    white-space: nowrap;
    margin-bottom: 0.6rem;
}
.cv dl span {
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    display: flex;
    justify-content: center;
    font-size: 2.4rem;
    line-height: 1;
    padding: 0.6rem 0 0.8rem 0;
}
.cv .img-1 {
    position: absolute;
    left: 0;
    top: 4rem;
    width: 20rem;
}
.cv .img-2 {
    position: absolute;
    right: 0;
    top: 3rem;
    width: 32rem;
}
.cv .cv-inquiry .expanded {
    width: 33rem;
    transform-origin: 50% 50%;
    animation: cv-big 1s forwards;
}
@keyframes cv-big{
    0%{
        transform: scale(0);
    }
    40%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}
@media screen and (max-width: 768px) {
	.cv {
        padding: 8rem 3rem 0 3rem;
    }
    .cv .wrap {
        width: auto;
    }
    .cv .wrap > div {
        padding: 3rem 0 0 0;
    }
    .cv .wrap figure {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
    }
    .cv dl {
        width: auto;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 3rem;
    }
    .cv dl dt {
        font-size: 2rem;
				text-shadow:0.8px 0.8px 0 rgb(173, 173, 173), -0.8px -0.8px 0 rgb(173, 173, 173),
                  -0.8px 0.8px 0 rgb(173, 173, 173), 0.8px -0.8px 0 rgb(173, 173, 173),
                  0px 0.8px 0 rgb(173, 173, 173),  0-0.8px 0 rgb(173, 173, 173),
                  -0.8px 0 0 rgb(173, 173, 173), 0.8px 0 0 rgb(173, 173, 173);
    }
    .cv dl a {
        font-size: 3.6rem;
        margin-bottom: 1.5rem;
    }
    .cv dl span {
        font-size: 1.6rem;
        width: 90%;
        margin: 0 auto;
				text-shadow:0.8px 0.8px 0 rgb(173, 173, 173), -0.8px -0.8px 0 rgb(173, 173, 173),
                  -0.8px 0.8px 0 rgb(173, 173, 173), 0.8px -0.8px 0 rgb(173, 173, 173),
                  0px 0.8px 0 rgb(173, 173, 173),  0-0.8px 0 rgb(173, 173, 173),
                  -0.8px 0 0 rgb(173, 173, 173), 0.8px 0 0 rgb(173, 173, 173);
    }
    .cv .img-1 {
        top: 4rem;
        width: 12rem;
    }
    .cv .img-2 {
        top: 3rem;
        width: 14rem;
    }
    .cv .cv-inquiry figure {
        width: 0;
    }
    @keyframes cv-big{
        0%{
            width: 33rem;
            transform: scale(0);
        }
        40%{
            transform: scale(0);
        }
        100%{
            transform: scale(1);
        }
    }
}



/*  ----------------------------------------------------------

breadcrumb

----------------------------------------------------------  */
.breadcrumb {
	display: flex;
	font-size: 1.2rem;
	width: 88rem;
	margin: -2.5rem auto 0 auto;
	position: relative;
	z-index: 999;
}
.breadcrumb li {
	display: flex;
	align-items: center;
	text-shadow:0.8px 0.8px 0 rgb(173, 173, 173), -0.8px -0.8px 0 rgb(173, 173, 173),
              -0.8px 0.8px 0 rgb(173, 173, 173), 0.8px -0.8px 0 rgb(173, 173, 173),
              0px 0.8px 0 rgb(173, 173, 173),  0-0.8px 0 rgb(173, 173, 173),
              -0.8px 0 0 rgb(173, 173, 173), 0.8px 0 0 rgb(173, 173, 173);
}
.breadcrumb li a {
	color: var(--red);
}
.breadcrumb li:not(:last-child)::after {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: solid 0.12rem #000;
	border-right: solid 0.12rem #000;
	transform: rotate(45deg);
	margin: 0 2rem;
}
@media (prefers-color-scheme: dark) {
	.breadcrumb li {
		color: #000 !important;
	}
}
@media screen and (max-width: 768px) {
	.breadcrumb {
		width: auto;
		margin: 2rem auto 0 auto;
		padding: 0 3rem;
	}
}



/*  ----------------------------------------------------------

line

----------------------------------------------------------  */
.bnr-line {
	width: 88rem;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.bnr-line {
		width: auto;
		padding: 0 3rem;
	}
}


.recruit-item {
	display: flex;
	margin-bottom: 2rem;
	border-bottom: 1px solid #b49b78;
}

.recruit-left {
	width: 20%;
	font-size: 1.8rem;
	font-weight: bold;
}

.recruit-raight {
	width: 80%;
	font-size: 1.8rem;
}

@media screen and (max-width: 768px) {

	.recruit-item {
		flex-direction: column;
		margin-bottom: 3rem;
	}

	.recruit-left {
		width: 100%;
		font-size: 1.5rem;
	}
	
	.recruit-raight {
		width: 100%;
		font-size: 1.5rem;
	}
}