@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/*==============================================================
>>> COMMON CONTENTS 
----------------------------------------------------------------
1.0 Common
  1.1 Reset
  1.2 Layout
2.0 Header
  2.1 top
  2.2 logo
  2.3 nav
4.0 Main
  1.1 H
  1.2 Common
  1.3 mv
4.0 Home
5.0 Page
6.0 Archive
7.0 Single
8.0 Etc
  8.1 CV
  8.2 SNS
  8.3 Breadcrumb
9.0 Footer
  9.1 nav
  9.2 terms
  9.2 copyright
==============================================================*/
/* 注意
  汎用classは単独で使わないように
  index, top, page, detail, inner
--------------------------------------------------------------*/
/*==============================================================
1.0 Common
--------------------------------------------------------------*/
/* 1.1 Reset
--------------------------------------------------------------*/
html {
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 2;
}
@media screen and (min-width:769px) and (max-width:1280px){
	html {
		font-size: 1.16vw;
	}
}
body {
	background: #FFF;
	font-family: "Zen Old Mincho", "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
a {
	color:#000;
	transition: 0.3s;
}
a:link {
	color:#000;
}
a:visited {
	color:#000;
}
a:hover {
	opacity: 0.7;
	transition: 0.3s;
}
::selection {
	background: #FFF;
	color: #000;
}
::-moz-selection {
	background: #FFF;
	color: #000;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.cf:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
figure {
	margin-bottom: 0;
	line-height: 1;
}
/* 1.2 Layout
--------------------------------------------------------------*/
.section.bgc {
	background: #F1F1F1;
	margin-top: 0;
	margin-bottom: 0;
}
.section.bg {
	margin-top: 0;
	margin-bottom: 0;
}
.container {
	z-index: 1;
}
/* media query : mobile */
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.section {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
	.section.bgc {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.sp {
		display: none; 
	}
	.container {
		max-width: 85rem;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.section {
		margin-top: 8rem;
		margin-bottom: 8rem;
	}
	.section.bgc {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}
/*==============================================================
2.0 Header
--------------------------------------------------------------*/
/* 2.1 top
--------------------------------------------------------------*/
.header {
    width: 100%;
    z-index: 100;
	transition: .3s;
}
.header .container {
	max-width: 100%;
}
.header-top .container {
	display: flex;
    justify-content: space-between;
    align-items: center;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.header-top {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.header-top {
		padding-top: 2rem;
		padding-bottom: 2rem;
		transition: .3s;
	}
}
/* scroll */
.header.scroll {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background: #FFF;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.07);
	transition: .3s;
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.header.scroll .header-top {
		padding-top: 1rem;
		padding-bottom: 1rem;
		transition: .3s;
	}
}
/* 2.2 logo
--------------------------------------------------------------*/
.header-logo {
	display: flex;
    align-items: center;
    justify-content: center;
}
.header-logo a {
	display: flex;
    width: 100%;
    line-height: 0;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.header-logo {
		max-width: 10rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.header-logo {
		max-width: 13rem;
	}
}
/* 2.3 nav
--------------------------------------------------------------*/
/* header-menu */
.header-menu {

}
#menu-header-menu {
	display: flex;
}
#menu-header-menu li {
	display: flex;
}
#menu-header-menu a {
	display: flex;
	line-height: 0;
}
/* active */
/*==============================================================
3.0 Main
--------------------------------------------------------------*/
.main {
	overflow: hidden;
}
/* 3.1 MV, H
--------------------------------------------------------------*/
/* h1 mv */

/* 3.2 Common
--------------------------------------------------------------*/
@media screen and (min-width:769px) {
	.cursor {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 0px;
		height: 0px;
		border-radius: 50%;
		background: #f1f1f1;
		z-index: 1000;
		transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
		transition-timing-function: ease-out;
		transform: translate(0, 0);
		pointer-events: none;
		mix-blend-mode: difference;
	}
	/*aタグにホバーした時に見た目変化*/
	.cursor.cursor--hover {
		top: -25px;
		left: -25px;
		width: 50px;
		height: 50px;
	}
}
.img-box {
	display: block;
	margin: 0;
}
.img-box:before {
	display: block;
    content: "";
	padding-top: 65%;
}
.img-box img {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.img-box.full {
	height: 100%;
}
.card-box {
	border-radius: 1.25rem;
	overflow: hidden;
}
.box-shd {
    box-shadow: 10px 10px 30px rgb(0 0 0/10%);
}
.block-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.button {
	display: block;
	width: 100%;
	max-width: 18rem;
}
.button a {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	display: block;
	background: #231815;
	color: #FFF;
	padding: 0.5rem 2.5rem 0.5rem 0.5rem;;
}
.button a:after {
	content: "";
	position: absolute;
	width: 0.7rem;
    height: 0.8rem;
	right: 1rem;
	top: calc(50% - 0.4rem);
	background: url(../img/icon-arrow-right-wht.svg) no-repeat center/contain;
}
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.button {
		max-width: 21rem;
	}
}
.fadeUp {
    opacity: 0;
    transform: translate(0, 70px);
    transition: transform 800ms, opacity 1000ms;
}
.fadeLeft {
    opacity: 0;
    transform: translate(-70px, 0);
    transition: transform 800ms, opacity 1000ms;
}
.fadeRight {
    opacity: 0;
    transform: translate(70px, 0);
    transition: transform 800ms, opacity 1000ms;
}
.fadeUp.appear {
    opacity: 1;
    transform: translate(0, 0);
}
.fadeLeft.appear {
    opacity: 1;
    transform: translate(0, 0);
}
.fadeRight.appear {
    opacity: 1;
    transform: translate(0, 0);
}
/* 3.3 MV
--------------------------------------------------------------*/

/*==============================================================
4.0 Home
--------------------------------------------------------------*/
/* 4.0 home.css
--------------------------------------------------------------*/

/*==============================================================
5.0 Page
--------------------------------------------------------------*/
/* 5.0 page.css
--------------------------------------------------------------*/
/* 5.1 404
--------------------------------------------------------------*/

/*==============================================================
6.0 Archive
--------------------------------------------------------------*/
/* 6.0 archive.css
--------------------------------------------------------------*/
.archive-jisseki__list {
	display: flex;
}
/*==============================================================
7.0 Single
--------------------------------------------------------------*/
/* 7.0 single.css
--------------------------------------------------------------*/

/*==============================================================
8.0 Etc
--------------------------------------------------------------*/
.contact-form {
	padding: 0 1.5rem;
}
.contact-form form {

}
.contact-form dt {
	display: block;
}
.contact-form .contact-input {
	border: 1px solid #FFF;
    padding: 0.2rem 1rem;
    background: #FFF;
    width: calc(100% - 2.2rem);
    display: block;
	margin-bottom: 1rem;
}
.contact-select {
	-webkit-appearance: none;
    appearance: none;
    padding: 0.2rem 1rem;
    background: #FFF;
}
.contact-radio label {
	display: flex;
	align-items: center;
    gap: 0.5rem;
}
.contact-radio .wpcf7-list-item {
	margin-left: 0;
	margin-right: 1rem;
}
.contact-radio input {
	display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
}
.contact-submit {
	display: block;
	width: 100%;
	margin-top: 2rem;
}
.contact-submit input {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	display: block;
	background: #231815;
	color: #FFF;
	padding: 0.5rem 2.5rem 0.5rem 0.5rem;;
	width: 100%;
}
.contact-submit input:after {
	content: "";
	position: absolute;
	width: 0.7rem;
    height: 0.8rem;
	right: 1rem;
	top: calc(50% - 0.4rem);
	background: url(../img/icon-arrow-right-wht.svg) no-repeat center/contain;
}
/* 8.1 CV
--------------------------------------------------------------*/

/* 8.2 SNS
--------------------------------------------------------------*/

/* 8.3 Breadcrumbs
--------------------------------------------------------------*/

/*==============================================================
9.0 Footer
--------------------------------------------------------------*/

/* 8.1 nav
--------------------------------------------------------------*/

/* 8.2 terms
--------------------------------------------------------------*/

/* 8.3 copyright
--------------------------------------------------------------*/

/* 8.4 Storking
--------------------------------------------------------------*/
.home-storcking {
	transition: .3s;
}
.footer.scroll .home-storcking {
	position: fixed;
    bottom: 0;
    background: #ccc;
    width: 100%;
    z-index: 999;
	transition: .3s;
}
.home-storcking .container {
	max-width: 100%;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
#menu-storking-menu {
	display: flex;
}
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.home-storcking .container {
		max-width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}