@charset "UTF-8";
/* CSS Document */

html,body{
	font-family:"zen-old-mincho",YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	letter-spacing: 0.1rem;
	color:#060723;
	background:#fff;
}


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

a{ color:unset; }
a:visited{ color:unset; }

p{ line-height: 3.0rem; }
@media screen and (max-width: 768px) {
	p{ line-height: 2.3rem; }
}


h1,h2,h3,h4{
	font-weight: normal;
}
.inline-text{
	display: inline-block;
}

main{
	width:100%;
	height:100%;
}

/*▼スクロールアニメーションCSS*/

/* 要素に透過0を指定　*/
.fadeInTrigger,
.fadeDownTrigger,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.blurTrigger,
.lineTrigger,
.fadeLeftfastTrigger,
.lineTrigger{
    opacity: 0;
}

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 上から */
.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
transform: translateY(-50px);
  }
  to {
    opacity: 1;
transform: translateY(0);
  }
}

/* 下から */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2.0s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
transform: translateY(50px);
  }
  to {
    opacity: 1;
transform: translateY(0);
  }
}

/* 左から */
.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:2.0s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
transform: translateX(-50px);
  }
  to {
    opacity: 1;
transform: translateX(0);
  }
}

/* 右から */
.fadeRight{
animation-name:fadeRightAnime;
animation-duration:2.0s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
transform: translateX(50px);
  }
  to {
    opacity: 1;
transform: translateX(0);
  }
}

/* ブラー */
.blur{
animation-name:blurAnime;
animation-duration:2.0s;
animation-fill-mode:forwards;
}
.blur50{
animation-name:blurAnime;
animation-duration:5.0s;
animation-fill-mode:forwards;
}
@keyframes blurAnime{
  from {
filter: blur(10px);
transform: scale(1.02);
opacity: 0;
  }
  to {
filter: blur(0);
transform: scale(1);
opacity: 1;
  }
}

.wrapper {
    overflow: hidden;
}

header{
	width:100%;
	position:fixed;
	top:0;
	left:0;
	background:rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3rem;
	z-index:9;
}
nav{
	display: flex;
	justify-content: center;
	align-items: center;
}
.header-logo{
	width:8%;
    max-width: 50rem;
}
.header-logo img{
	width:100%;
	height: auto;
	display: block;
}
nav ul{
	display: flex;
	justify-content: stretch;
	align-items: center;
	list-style: none;
	padding: 0 2.0rem;
}
nav li{
	font-size:1.5rem;
	padding: 1.0rem;
	border-radius: 1.0rem;
    text-align: center;
	margin: 0 3rem;
}
nav li span{
	display: block;
	font-size:1.1rem;
	margin-top: 0.3rem;
}
nav li:last-child{
	background:#060723;
	color:#fff;
	padding: 0.3rem 1.5rem 0.8rem 1.5rem;
}
.sns-icon a {
    display: inline-block;
}
.sns-icon a{
	width:3.0rem;
	height: auto;
	margin: 0 2.0rem 0 0;
}
.sns-icon a:last-of-type{
	margin: 0 0 0 2.0rem;
}
.sns-icon img{
	width:100%;
	display: block;
}
@media screen and (max-width: 768px) {
	main{
		margin-top:8rem !important;
	}
	header{
		padding:1.0rem 0;
		justify-content: flex-end;
		min-height: 7rem;
	}
	nav.blurTrigger.blur {
    position: relative;
    width: 100%;
	display: flex;
    justify-content: flex-end;
    align-items: center;
}
	.header-logo {
    width: 10rem;
    max-width: 10rem;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding:1.0rem 0;
}
	.header-logo img{
	width:100%;
}
	.sns-icon a {
    width: 2.8rem;
    margin: 0 1.0rem 0 0;
}
	.sns-icon a:last-of-type {
    margin: 0 1.5rem 0 0;
}
	.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}
	.sp-header-bottomfix{
		width:100%;
		position:fixed;
		bottom:0;
		left:0;
		z-index:99;
		padding-bottom: 0.5rem;
}
	.sp-header-bottomfix--front{
		display: flex;
        justify-content: flex-end;
        align-items: center;
	}
	.sp-header-bottomfix--contact{
		background: #060723;
		color: #fff;
		padding: 0.3rem 1.5rem 0.8rem 1.5rem;
		text-align:center;
		border-radius: 1.0rem;
		filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.8));
	}
	.sp-header-bottomfix--contact span {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.3rem;
}
	.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 0.2rem;
  background: #060723;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
	filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.9));
}
	.hamburger-menu__bar:first-child {
  top: 1.6rem;
}
	.hamburger-menu__bar:nth-child(2) {
  top: 2.4rem;
}
	.hamburger-menu__bar:last-child {
  top: 3.2rem;
}
	.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
	.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
	.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
	.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
	.navigation {
  display: none;
  position: relative;
  z-index: 99;
}
	.navigation__list {
		width: 15rem;
        text-align: center;
        margin: 0 0.5rem 0 auto;
}
	.navigation__list-item {
          border-radius: 1.0rem;
        margin-top: 0.8rem;
        background: #060723;
		filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.8));
}
	.navigation__list-item span {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.3rem;
}
	.navigation__list-item a{
          color: #fff;
        text-decoration: none;
        display: block;
        padding: 0.3rem 1.5rem 0.8rem 1.5rem;
        border-radius: 1.0rem;
        transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    background: #333;
  }
}

}

#key-visual{
	width:100%;
	height:100%;
	background: url(img/image03.webp) no-repeat center center;
	background-size: cover;
	position:relative;
    min-height: 60vh;
}
.bk-layer{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: rgba(0, 0, 0, 0.5);
	z-index:1;
}
.keyvisual-text{
	width: 60%;
	max-width: 52rem;
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
}
.keyvisual-text h1{
	font-size:3.6rem;
	line-height: 5.0rem;
	letter-spacing: 0.2rem;
}
.keyvisual-text p{
	font-size:1.8rem;
	margin-top: 2.0rem;
	line-height: 3.5rem;
    letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
	#key-visual {
    background-position:left center;
}
	.keyvisual-text {
		width: 90%;
		max-width: 90%;
		position: absolute;
		top: 50%;
		left: 50%;
}
	.keyvisual-text h1 {
    font-size: 3.0rem;
    line-height: 4.5rem;
}
.keyvisual-text p {
    font-size: 1.5rem;
}
}

#our-service{
	width:70%;
	max-width:110rem;
	margin:auto;
	padding: 15rem 0;
}
#our-service p{
	font-size:1.8rem;
	line-height: 3.5rem;
    letter-spacing: 0.2rem;
}
.our-service-01{
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.our-service-01 p{
	width: 55%;
}
.our-service-01 img{
	width:35%;
	height: auto;
	display: block;
}
.our-service-02{
	margin-top: 10.0rem;
}
.our-service-02 p{
	width:80%;
	margin:0 auto 5.0rem auto;
	text-align: center;
}
.our-service-02 img:nth-of-type(1){
	width:30%;
	height: auto;
	display: inline-block;
	vertical-align: top;
}
.our-service-02 img:nth-of-type(2){
	width:30%;
	height: auto;
	display: inline-block;
	margin-left: 0.5rem;
}
.our-service-03{
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10.0rem;
}
.our-service-03 p{
	width: 55%;
}
.our-service-03 img{
	width:30%;
	height: auto;
	display: block;
}
@media screen and (max-width: 768px) {
	#our-service {
    width: 100%;
}
	.our-service-01 {
    display: block;
	}
	#our-service p {
    font-size: 1.3rem;
    line-height: 2.8rem;
}
	.our-service-01 p {
    width: 100%;
	margin-left: 10%;
}
.our-service-01 img {
    width: 45%;
	margin-top:2.0rem;
}
.our-service-02 p {
    width: 90%;
	margin: 0 auto 2.0rem auto;
}
.our-service-02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}
.our-service-03 {
    flex-wrap: wrap;
}
.our-service-03 p {
    width: 100%;
    margin: auto;
    order: 2;
    margin-top: -4rem;
    padding-left: 5%;
}
.our-service-03 img {
    margin: 0 0 0 auto;
}

}

#purchase,
#products{
	width:100%;
	margin:auto;
	padding:10rem 0;
	background:#060723;
	color:#fff;
}
.purchase-inner,
.products{
	width:80%;
	max-width:110rem;
	margin:auto;
}
#purchase h2,
#products h2{
	font-size:3.0rem;
	text-align: center;
}
.purchase-01,
.products-01{
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 5.0rem;
}
.purchase-01 img,
.products-01 img{
	width:30%;
	height: auto;
	display: block;
}
.purchase-01 p,
.products-01 p{
	font-size:1.8rem;
	line-height: 3.5rem;
    letter-spacing: 0.2rem;
    margin-left: 10%;
}
.purchase-02{
	margin-top: 10.0rem;
}
.purchase-02 h3{
	font-size:2.5rem;
	margin-bottom: 3.0rem;
	text-align: center;
}
.kaitori-mono{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 3.0rem;
	margin-bottom: 10.0rem;
}
.kaitori-mono li{
	width:25%;
}
.kaitori-mono li img{
	width:100%;
	height: auto;
}
.kaitori-mono h4{
	font-size:1.5rem;
	margin-top: 1.0rem;
	text-align: center;
}
.kaitori-method{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.0rem;
	margin-top: 3.0rem;
	margin-bottom: 10.0rem;
}
.kaitori-method li{
	width:33%;
	position:relative;
	padding-top: 33%;
}
.kaitori-method li:nth-child(1){
	background: url(img/kaitori-method-image01.webp) no-repeat center center;
	background-size: cover;
}
.kaitori-method li:nth-child(2){
	background: url(img/kaitori-method-image02.webp) no-repeat center center;
	background-size: cover;
}
.kaitori-method li:nth-child(3){
	background: url(img/kaitori-method-image03.webp) no-repeat center center;
	background-size: cover;
}
.kaitori-method h4{
	font-size:2.5rem;
	text-align: center;
	color:#fff;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}
.kaitori-flow-tenpo,
.kaitori-flow-shucho{
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin-bottom: 5.0rem;
	color:#fff;
}
.kaitori-flow-tenpo li,
.kaitori-flow-shucho li{
	width:25%;
	text-align: center;
	border-right:#fff 0.1rem solid;
    padding: 0 1.5rem 0 1.5rem;
}
.kaitori-flow-tenpo li:last-child,
.kaitori-flow-shucho li:last-child{
	border-right:none;
}
.kaitori-flow-tips{
	display: inline-block;
    border-radius: 0.8rem;
    color: #fff;
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 1.0rem;
    border: #fff 0.1rem solid;
    padding: 0.3rem 1.0rem;
}
.kaitori-flow-tenpo h4,
.kaitori-flow-shucho h4{
	font-size:1.8rem;
	margin-bottom: 1.5rem;
	text-align: center;
}
.kaitori-flow-tenpo p,
.kaitori-flow-shucho p{
	font-size: 1.5rem;
    text-align: justify;
}
.kaitori-flow-attention{
	display: block;
	font-size:1.2rem;
}
.line-satei{
	text-align: center;
	margin-bottom: 5.0rem;
}
.line-satei h3{
	font-size:2.5rem;
	margin-bottom: 2.0rem;
}
.line-satei p{
	font-size:2.0rem;
	margin-bottom: 2.0rem;
}
.line-satei-attention{
	font-size:1.2rem;
	display: block;
}
.line-satei a{
	display: inline-block;
	background:#fff;
	color:#060723;
	font-size:2.0rem;
	padding: 2.0rem 5.0rem;
	border-radius: 1.0rem;
}
.kaitori-closing h3,
.products-closing h3{
	font-size:2.5rem;
	margin-bottom: 2.0rem;
}
.kaitori-closing-button,
.products-closing-button{
	display: flex;
	justify-content: center;
	gap: 2.0rem;
	margin-bottom: 2.0rem;
}
.kaitori-closing a,
.products-closing a{
	display: inline-block;
	background:#fff;
	color:#060723;
	font-size:2.0rem;
	padding: 2.0rem 5.0rem;
	border-radius: 1.0rem;
	text-align: center;
}
.accordion {
    margin-bottom: 1.0rem;
	border:#fff 0.1rem solid;
	color: #fff;
    cursor: pointer;
}
.accordion__title {
	font-size: clamp(1.5rem, 1.8vw, 2.3rem);
	text-align: center;
	padding:1.0rem 5.0rem 1.0rem 1.5rem;
	position: relative;
}
.accordion__title img{
	width:3.0rem;
	height: auto;
	vertical-align: bottom;
	margin-right: 1.0rem;
}
.accordion__content {
	width:100%;
    display: none;
	padding:2.0rem 2.0rem;
}
.accordion__content p{
	font-size:1.6rem;
	width: 90%;
    margin: 0 auto 3.0rem auto;
}
.accordion__inner h3{
	font-size:2.0rem;
}
.shoumeisho-list{
	width:90%;
	margin:auto;
	font-size:2.0rem;
}
.shoumeisho-list ul{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.shoumeisho-list li{
	width:33.3%;
	padding:1.5rem 2.0rem;
	border-collapse: collapse;
	border:#fff 0.1rem solid;
	font-size:1.5rem;
	text-align: center;
}
.shoumeisho-list li:nth-child(n+4):nth-child(-n+6){
	/*border-top:none;*/
}
.accordion__title::before {
    content: '';
    display: inline-block;
    width: 2.0rem;
    height: 0.2rem;
    background-color: #fff;
    position: absolute;
    right: 2.0rem;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.2s;
}
.accordion__title::after {
    content: '';
    display: inline-block;
    width: 2.0rem;
    height: 0.2rem;
    background-color: #fff;
    position: absolute;
    right: 2.0rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.2s;
}
.accordion__title.show::before {
    opacity: 0;
}
.accordion__title.show::after {
    transform: translateY(-50%) rotate(180deg);
}
.shoumeisho-attention{
	width: 90%;
    margin: 1.0rem auto 0;
	font-size:1.3rem;
	line-height:1.7rem;
	text-align: justify;
}
#products{
	width:100%;
	margin:auto;
	padding:10rem 0;
	background:#060723;
	color:#fff;
}
.products-inner{
	width:80%;
	max-width:110rem;
	margin:auto;
}
#products h2{
	font-size:3.0rem;
	text-align: center;
}
.products-01{
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 5.0rem;
}
.products-01 img{
	width:30%;
	height: auto;
	display: block;
}
.products-01 p{
	font-size:1.8rem;
	line-height: 3.5rem;
    letter-spacing: 0.2rem;
    margin-left: 10%;
}
#products .products-closing h3{
	max-width:60%;
    font-size: 2.2rem;
	margin:5.0rem auto 2.0rem auto;
	text-align: center;
    line-height: 3.8rem;
}
@media screen and (max-width: 768px) {
	.purchase-inner, .products {
    width: 90%;
    max-width: 90%;
	}
	.purchase-01, .products-01 {
    flex-wrap: wrap;
	}
	.purchase-01 img, .products-01 img {
    width: 50%;
	margin:auto;
    margin-bottom: 2.0rem;
	}
	.purchase-01 p, .products-01 p {
    font-size: 1.5rem;
    line-height: 3.0rem;
    margin-left: 0;
}
.purchase-01 p span, .products-01 p span {
	display: contents;
}
.kaitori-mono{
	flex-wrap: wrap;
}
.kaitori-mono li {
    width: 45%;
}
.kaitori-method{
	flex-wrap: wrap;
}
.kaitori-method li {
	width: 45%;
	padding-top: 45%;
}
.kaitori-method h4 {
    width: 90%;
    font-size: 2.0rem;
}
.kaitori-flow-tenpo, .kaitori-flow-shucho {
	flex-wrap: wrap;
}
.kaitori-flow-tenpo li, .kaitori-flow-shucho li {
    width: 90%;
    border-right: none;
    border-bottom: #fff 0.1rem solid;
    padding: 2.0rem 0;
}
.kaitori-flow-tenpo li:last-child, .kaitori-flow-shucho li:last-child {
    border-bottom: none;
}
.kaitori-flow-tenpo p, .kaitori-flow-shucho p {
    font-size: 1.3rem;
}
.kaitori-closing h3, .products-closing h3 {
    font-size: 2.0rem;
}
.line-satei a {
    width: 28rem;
    display: block;
	margin:auto;
	padding: 2.0rem 0;
}
.kaitori-closing-button, .products-closing-button {
	flex-wrap: wrap;
}
.kaitori-closing a, .products-closing a {
	width: 28rem;
    display: block;
	margin:auto;
	padding: 2.0rem 0;
}
.accordion {
    position: relative;
    margin-top: 5rem;
}
.accordion__title img {
    position: absolute;
    left: 45%;
    top: -19px;
}
.accordion__title {
	text-align: left;
	font-size: 1.3rem;
    padding-top: 1.5rem;
}
.accordion__content p {
	width:100%;
    font-size: 1.3rem;
    text-align: justify;
}
.shoumeisho-list ul {
	flex-wrap: wrap;
}
.shoumeisho-list li {
    width: 100%;
}
.shoumeisho-list li:nth-child(n+4):nth-child(-n+6){
	border-top:0.1rem solid #fff;
}
.shoumeisho-attention{
	width: 100%;
}
#products {
    padding: 0 0 10rem 0;
}
#products .products-closing h3 {
    max-width: 100%;
    font-size: 1.5rem;
    text-align: left;
    line-height: 3.0rem;
}
#products .products-closing h3 span{
    display:contents
}
}


#blog{
	width:90%;
	max-width:110rem;
	margin:auto;
	padding: 10rem 0;
}
#blog h2{
	font-size:3.0rem;
	text-align: center;
    margin-bottom: 5rem;
}
.blog-inner{
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	gap: 3.0rem;
}
.blog-item{
	width:25%;
	height:100%;
	display: flex;  /* 直下の要素を並列に */
	flex-direction: column; /* 直下の要素を縦積みに */
}
.blog-eyecatch{
	width: 100%;
    max-height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}
.blog-eyecatch img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    display: block;
}
.blog-tips{
	display: inline-block;
	background:#060723;
	color: #fff;
	font-size: 1.3rem;
	text-align: center;
	margin-right: 1.0rem;
	padding: 0.3rem 0.8rem;
}
.blog-data{
	display: inline-block;
	font-size:1.2rem;
	color:#060723;
	margin: 2.0rem 0 1.0rem 0;
}
.blog-title{
	font-size:1.6rem;
	margin-bottom: 1rem;
}
.blog-content{
	font-size:1.3rem;
	line-height: 2.5rem;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}
.blog-content p {
    line-height: 2.3rem;
	flex-grow: 1; /* 比率を指定 */
}
.blog-morebutton a{
	display: block;
	color:#060723;
	text-align: center;
	border:#060723 0.1rem solid;
	font-size:1.4rem;
	padding: 1.5rem 3.0rem;
}
.blog-page-link {
    text-align: center;
    margin-top: 5.0rem;
}
.blog-page-link a{
	display: inline-block;
	background:#060723;
	color:#fff;
	font-size:2.0rem;
	padding: 2.0rem 5.0rem;
	border-radius: 1.0rem;
}
@media screen and (max-width: 768px) {
	.blog-inner {
		flex-wrap: wrap;
		gap:0;
}
	.blog-item {
	    width: 100%;
	    margin-bottom: 3.0rem;
		display: flex;
        justify-content: center;
        align-items: flex-start;
		flex-direction: unset;
}
.blog-item-inner{
	width:60%;
	margin-left:3%;
}
	.blog-eyecatch{
	width: 35%;
    padding-top: 35%;
}
	.blog-data {
    margin: 0 0 1.0rem 0;
}
	.blog-title {
		font-size: 1.5rem;
	}
.blog-morebutton a {
        width: 80%;
        margin: auto;
        padding: 0.5rem;
        font-size: 1.3rem;
}

}


#faq{
	width:90%;
	max-width:110rem;
	margin:auto;
	padding: 10rem 0;
}
#faq h2{
	font-size:3.0rem;
	text-align: center;
    margin-bottom: 5rem;
}
.faq-inner{
	display:flex;
	justify-content:center;
	align-items:flex-start;
	gap:3.0rem;
}
.faq-inner h3{
	font-size: 2.3rem;
    text-align: center;
    margin-bottom: 2.0rem;
}
.faq-inner-left, .faq-inner-right{
	width:50%;
}
.faq-inner dl{
	margin-bottom:2.0rem;
}
.faq-inner dt{
	width:100%;
	border-left:#060723 1.0rem solid;
	background:#f2f2f2;
	padding: 1.5rem 2.0rem;
	margin:0 0 1.0rem 0;
	font-size:1.8rem;
}
.faq-inner dd{
	width:100%;
	padding-left: 2.0rem;
	font-size:1.6rem;
	text-align: justify;
}
#faq a{
	border-bottom:#060723 0.1rem solid;
	padding-bottom:0.1rem
}

@media screen and (max-width: 768px) {
	.faq-inner{
		flex-wrap:wrap;
	}
	.faq-inner-left, .faq-inner-right{
	width:100%;
}
	.faq-inner dt{
		font-size:1.5rem;
		padding: 0.5rem 1.0rem;
		text-align: justify;
	}
	.faq-inner dd{
		font-size:1.3rem;
	}
	
}


#access{
	width:100%;
	margin:auto;
	padding: 10rem 0;
}
#access h2{
	font-size:3.0rem;
	text-align: center;
    margin-bottom: 5rem;
}
.access-inner{
	width:80%;
	margin:auto;
}
.access-inner img{
	width:100%;
	max-width: 110rem;
    display: block;
	margin:auto;
}
.shop-detail{
	margin-top:3.0rem;
	text-align: center;
}
.shop-detail img{
	max-width:22rem;
	height: auto;
	display: block;
	margin-bottom:2.0rem;
}
.shop-detail h3{
	font-size:2.0rem;
	margin-bottom:2.0rem;
}
.shop-tel{
	font-size:2.5rem;
	margin-bottom:2.0rem;
}
.shop-tel span{
	font-size:1.8rem;
}
.shop-hours{
	font-size:1.6rem;
	margin-bottom:0.5rem;
}
.shop-holiday{
	font-size:1.6rem;
	margin-bottom:2.0rem;
}
.shop-address{
	font-size:2.0rem;
	margin-bottom:1.5rem;
}
.map-button a{
	display: inline-block;
	background:#060723;
	color:#fff;
	font-size:1.8rem;
	padding: 1.5rem 4.0rem;
	border-radius: 1.0rem;
	margin-bottom:2.0rem;
}
#access iframe{
	width:100%;
	min-height:45.0rem;
	border: none;
	-webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media screen and (max-width:768px){
.shop-address {
    font-size: 1.5rem;
	}
}
#contact{
	width:90%;
	max-width:110rem;
	margin:auto;
	padding: 10rem 0;
}
#contact h2{
	font-size:3.0rem;
	text-align: center;
    margin-bottom: 5rem;
}
.contact-inner{
	width:90%;
	margin:auto;
}

footer{
	width:100%;
	background:#060723;
	padding: 3.0rem 0;
	margin-top: 10.0rem;
	text-align: center;
}
footer img{
	width:15.0rem;
	height: auto;
	display: block;
	margin:0 auto 2.0rem auto;
}
.kyoka-nomber{
	color:#fff;
	font-size:1.1rem;
	text-align: center;
	margin-bottom: 1.0rem;
	line-height: 2.0rem;
}
.copyright{
	color:#fff;
	font-size:1.1rem;
	text-align: center;
}

/*コンタクトフォーム*/
.cf-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	transition: all .3s;
}
.cf-area:last-child {
	border-bottom: none;
}
.cf-area dt {
  width: 200px;
  padding-right: 30px;
  text-align: right;
	line-height:1.5em;
}
.cf-area dd {
    flex: 1;
}
.cf-area input, .cf-area textarea,.cf-area select {
  width: 100%;
  padding: 0.8em;
  border: none;
  background-color: #f2f2f2;
  font-size: 16px;
	resize: vertical;
	transition: all .3s;
}
.cf-area input:focus,.cf-area textarea:focus {
	outline: none;
	background: #f2f2f2;
}
.cf-required {
	background: #060723;
	color: #fff;
	font-size: 0.8em;
	padding: 0 5px 2px;
	border-radius: 2px
}
.cf-send p{
	text-align:center;
}
.cf-send input {
	background: #060723;
	font-size:1.8rem;
	padding: 1.5rem 4.0rem;
	border-radius: 1.0rem;
	margin-bottom:2.0rem;
	border: none;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
}
.cf-send input:hover {
	filter: brightness(1.25);
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	background-color: #060723;
	border: none;
	text-align: center;
}
/*チェックボックス*/
.privacy-p-check, .send-check {
    display: block;
    text-align: center;
}
.privacy-p-link{
	width: 25rem;
    font-size: 1.3rem;
    border: 0.1rem solid #060723;
    text-align: center;
	margin:0 auto 1.0rem auto;
}
.privacy-p-link:hover{
	background:#060723;
	color:#fff;
}
.send-check {
    margin-bottom: 2.0rem;
}
.grecaptcha-badge { visibility: hidden; }

@media screen and (max-width:768px){
	.contact-inner {
    width: 100%;
	}
	.cf-area {
		display: block;
		padding: 1.0rem;
	}
	.cf-area dt {
    width: 100%;
		margin-bottom: 5px;
    padding-right: 0;
    text-align: left;
		line-height:1.5em;
	}
	.cf-send input {
		display: block;
		width:28rem;
		margin:auto;
	}
	.privacy-p-check, .send-check {
		font-size:1.3rem;
		margin:1.5rem auto;
	}
}

/*プライバシーポリシー*/
.privacy-p {
	width:90%;
            max-width: 110rem;
            margin: 0 auto;
            padding: 4.0rem 2.0rem;
        }

       .privacy-p h1 {
            font-size: 2rem;
            margin-bottom: 2.0rem;
        }

        .intro {
            font-size: 1.5rem;
            line-height: 1.8;
            margin-bottom: 5rem;
            padding: 2rem;
            background-color: #f8f8f8;
            border-left: 0.4rem solid #060723;
        }

        .privacy-p .section {
            margin-bottom: 5rem;
        }

        .privacy-p .section h2 {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 0.1rem solid #e0e0e0;
        }

        .privacy-p .section h3 {
            font-size: 1.3rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
        }

        .privacy-p .section p {
            margin-bottom: 1.5rem;
            font-size:1.3rem;
        }

        .privacy-p .section ul, .privacy-p .section ol {
            margin-left: 2rem;
            margin-bottom: 2rem;
        }

        .privacy-p .section li {
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }

        .subsection {
            margin-left: 2rem;
            margin-top: 2rem;
        }

        .contact-info {
            background-color: #f8f8f8;
            padding: 3rem;
            border-radius: 0.8rem;
            margin-top: 2rem;
        }

        .contact-info p {
            margin-bottom: 0.8rem;
        }

/*ブログ一覧ページ*/
.blog-page .blog-inner{
	flex-wrap:wrap;
	justify-content: flex-start;
}
.blog-page .blog-item {
    width: 22%;
}
.pagination {
    margin-top: 10.0rem;
    text-align: center;
}
.pagination a {
    margin: 0 0.5rem;
}
.page-numbers , .page-numbers.current{
    padding: 0.5rem 1.0rem;
    border: 0.1rem solid #060723;
    border-radius: 1.0rem;
}
.page-numbers.current{
	background:#060723;
	color:#fff;
}

@media screen and (max-width:768px){
	.blog-page .blog-item {
    width: 100%;
	}
		.pagination {
    margin-top: 3.0rem;
}
}

/*singleページ*/
#single {
	width:90%;
    max-width: 110rem;
    margin: 0 auto;
    padding: 4.0rem 0;
}
.single-innder{
	width:60%;
	margin:auto;
}
.single-eyecatch,.single-eyecatch img{
	width:100%;
	height:auto;
}
.single-title{
	font-size: 2.5rem;
	margin-bottom: 1.0rem;
    padding-bottom: 1.0rem;
    border-bottom: 0.3rem solid #060723;
}

.go-back-link {
    text-align: center;
    margin-top: 5.0rem;
}
.go-back-link a {
    display: inline-block;
    background: #060723;
    color: #fff;
    font-size: 2.0rem;
    padding: 2.0rem 5.0rem;
    border-radius: 1.0rem;
}



@media screen and (max-width:768px){
	#single {
	width:90%;
    max-width: 90%;
    margin: 0 auto;
    padding: 3.0rem 0;
}
	.single-innder{
	width:100%;
	margin:auto;
}
	.single-eyecatch{
	margin-bottom:1.0rem;	
	}
}