@CHARSET "UTF-8";
/*
Theme Name: アクティブアート様
date: 2026.02.07
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root { 
  --bk: #333;
	--gray: #666;
	--blue: #005788;
	--btn: #00b7ff;
	--hover: #5195d8;
	--orange: #c08b00;
	--bg: #f8f6f4;
	--border: #0000001a;
	--line_green: #06c755;
	--katachi: #4793cd;
	--re: #ae2b1d;
	--kurumu: #1c3968;
	--homehug: #f8b62d;
	--header_height: 5rem;
}
@media screen and (min-width: 1024px){
  :root {
		--header_height: 90px;
	}
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 400;
	font-family: "Lato","Noto Sans JP", sans-serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
}



/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 400;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 400;
	line-height: 1.5;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}
.wide_wrap{
	max-width: 1300px;
}
.short_wrap{
	max-width: 800px;
}
.hidden{
	overflow: hidden;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}

*:focus {
  outline: none;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}

input[type="submit"]{
	outline: 0;
	box-shadow: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
	overflow: hidden;
}
.img_clip::before{
	content: '';
	padding-top: 70%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}

.tub{
	display: flex;
}
.tub_cont{
	display: none;
}
.cont_current{
	display: block;
}



/* =slide base
-------------------------------------------------------------- */

.swiper img{
	width: 100%;
}
.swiper-wrapper{
	transition-timing-function:linear; 
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: rgba(255,255,255,.7);
	border-radius: 50%;
	border: #ccc solid 1px;
}
.swiper-button-prev{
	left: 1rem;
}
.swiper-button-next{
	right: 1rem;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
	color: var(--bk);
}
.swiper-pagination-bullet{
	background: #fff;
	border: var(--purpul) solid 1px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--grad);
}


.slick-arrow{
	width: 4rem;
  height: 4rem;
	background: rgba(0,0,0,.3);
	border-radius: 50%;
  z-index: 10;
}
.slick-prev{
  left: -1rem;
}
.slick-next{
  right: -1rem;
}
.slick-arrow::before{
	content: '' !important;
  width: 30%;
  height: 30%;
  border-top: #fff solid 1px;
  border-left: #fff solid 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}
.slick-prev:before{
  transform: translate(-35%,-50%) rotate(-45deg);
}
.slick-next:before{
  transform: translate(-65%,-50%) rotate(135deg);
}
.slick-slide:focus{
  outline: 0;
}
.slick-dots > li:first-child:last-child {
   display: none;
}
.slick-dots{
	bottom: -3rem;
	z-index: 10;
}
.slick-dots li{
	width: 1rem;
	height: 1rem;
}
.slick-dots li button{
	width: 100%;
	height: 100%;
	background: #ccc;
	border-radius: 50px;
}
.slick-dots li.slick-active button{
	background: var(--blue);
}
.slick-dots li button:before{
	content: none;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}

.swiper-slide{
	align-self: stretch;
	height: auto;
}




/* =site basic
-------------------------------------------------------------- */

#page{
	padding-top: var(--header_height);
}
.btn_link{
	background: var(--btn);
	border: #000 solid 1px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1rem;
	font-size: 1.2rem;
	width: 100%;
	max-width: 25rem;
	margin: 0 auto;
	text-align: center;
  position: relative;
	transition: .3s;
	font-weight: 700;
}
.btn_link__small{
	padding: .5rem 1rem;
}
.btn_link__large{
	font-size: 120%;
}
.btn_link .arrow{
	width: 2.5rem;
	height: 2.5rem;
	border: #fff solid 1px;
	border-radius: 50%;
	position: relative;
	margin-left: 1rem;
}
.btn_link__small .arrow{
	width: 1.5rem;
	height: 1.5rem;
}
.btn_link .arrow::before{
	content: '';
	background: url('images/common/arrow.svg') no-repeat center center / contain;
	width: 70%;
	height: 1.5rem;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}
.btn_back{
	display: flex;
	flex-direction: row-reverse;
	max-width: 22rem;
}
.btn_back .arrow{
	margin: 0 1rem 0 0;
	scale: -1 1;
}
.section{
	padding: 5rem 0;
}
.bg{
	background: var(--bg);
}

.section_head{
	text-align: center;
	margin-bottom: 3rem;
}
.section_title{
	font-size: 2.6rem;
	text-align: center;
	margin-bottom: 2rem;
}
.section_title rt{
	font-size: 40%;
}
.section_head p{
	margin: 2rem 0;
}
.txt_edging{
	text-shadow: #fff 2px 0px 0px, #fff -2px 0px 0px, #fff 0px 2px 0px, #fff 0px -2px 0px, #fff 2px 2px 0px, #fff -2px -2px 0px, #fff 2px -2px 0px, #fff -2px 2px 0px;
	font-weight: 700;
}

.txt_shadow{
	text-shadow: rgb(255, 255, 255) 0px 0px 2px, rgb(255, 255, 255) 0px 0px 4px, rgb(255, 255, 255) 0px 0px 6px, rgb(255, 255, 255) 0px 0px 8px, rgba(255, 255, 255, 0.9) 0px 0px 10px, rgba(255, 255, 255, 0.8) 0px 0px 12px, rgba(255, 255, 255, 0.7) 0px 0px 16px, rgba(255, 255, 255, 0.6) 0px 0px 20px;
}

.box_shadow{
	box-shadow: 0 5px 5px rgba(0,0,0,.1);
	transition: .3s;
}
.illust{
	position: absolute;
	z-index: 10;
}
.illust_house{
	width: 12rem;
	right: 1rem;
	top: -3em;
}
.illust_child{
	width: 10rem;
	left: 1rem;
	top: -4rem;
}
.illust_dog{
	width: 10rem;
	left: 0;
	top: -3rem;
}
.illust_gal{
	width: 8rem;
	right: 0;
	top: -3rem;
}
.illust_chaim{
	width: 7rem;
	left: 0;
	top: -5rem;
}

.page_header{
	position: relative;
	height: 20rem;
	background: #000;
}
.page_header::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url('images/header/default.jpg') no-repeat center center / cover;
	opacity: .6;
	width: 100%;
	height: 100%;
}
#page_blog .page_header::before{
	background: url('images/header/blog.jpg') no-repeat center center / cover;
}
#page_interview .page_header::before{
	background: url('images/header/interview.jpg') no-repeat center center / cover;
}
#page_concept .page_header::before{
	background: url('images/header/concept.jpg') no-repeat center center / cover;
}
#page_service .page_header::before{
	background: url('images/header/service.jpg') no-repeat center center / cover;
}
#page_catalog .page_header::before{
	background: url('images/header/catalog.jpg') no-repeat center center / cover;
}
#page_works .page_header::before{
	background: url('images/header/works.jpg') no-repeat center center / cover;
}
#page_contact .page_header::before{
	background: url('images/header/contact.jpg') no-repeat center center / cover;
}
#page_qa .page_header::before{
	background: url('images/header/qa.jpg') no-repeat center center / cover;
}
#page_privacy .page_header::before{
	background: url('images/header/privacy.jpg') no-repeat center center / cover;
}
#page_recruit .page_header::before{
	background: url('images/header/recruit.jpg') no-repeat center center / cover;
}
#page_consultation .page_header::before{
	background: url('images/header/consultation.jpg') no-repeat center center / cover;
}
#page_tours .page_header::before{
	background: url('images/header/tour.jpg') no-repeat center center / cover;
}
.page_title{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 100%;
	color: #fff;
	font-size: 2.4rem;
	margin: 0;
	font-weight: 400;
	line-height: 1.4;
}

.page_intro{
	border-bottom: var(--border) solid 1px;
}
.page_container{
	padding: 5rem 0;
}

#message_404{
	text-align: center;
}
#message_404 .btn_link{
	margin-top: 5rem;
}

.table{
	border: var(--border) solid 1px;
}
.table tr:not(:last-child){
	border-bottom: var(--border) solid 1px;
}
.table th,
.table td{
	padding: 1.5rem;
}
.table th{
	background: #fbf9fa;
	width: 25%;
}

.post_list{
	margin-bottom: 3rem;
}
.post_list>li{
	margin-bottom: 4rem;
}
.post_box{
	border-radius: 2rem;
	overflow: hidden;
	height: 100%;
	display: block;
	position: relative;
}
.post_img .img_clip::before{
	padding-top: 70%;
}
.post_box__inner{
	padding: 2rem;
	color: var(--bk);
}

.no_posts{
	padding: 2rem 1rem;
	text-align: center;
	margin: 2rem 0;
	background: var(--bg);
}





/* =page nav
-------------------------------------------------------------- */

.page_links{
  text-align: center;
  display: flex;
  justify-content: center;
	align-items: center;
  margin: 3rem 0 5rem;
}
.page_links a, 
.page_links span{
  text-decoration: none;
	font-size: 1.2rem;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 .2rem;
	border: var(--border) solid 1px;
	border-radius: 50%;
}
.page_links span.current{
	background: var(--blue);
	color: #fff;
}
.page_links a:hover{
	background: var(--blue);
	color: #fff;
}
.page_links a.next{
  margin-left: 1rem;
	width: auto;
	height: auto;
	border-radius: 50px;
	padding: 0 1rem;
}
.page_links a.prev{
  margin-right: 1rem;
	width: 8rem;
	height: 2rem;
	border-radius: 50px;
	padding: 0 1rem;
}
.page_links a.next:hover,
.page_links a.prev:hover{
	background: var(--orange);
	color: #fff;
}
.page_links span.dots{
	border: 0;
	width: auto;
}
.nav_single{
	clear: both;
	display: flex;
  justify-content: center;
  margin: 5rem 0;
  border-top: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
	font-size: 1.2rem;
}
.nav_single li{
	width: 33.33%;
}
.nav_single li a{
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding: 1.5rem 1rem;
}
.nav_archive{
	border-left: #ccc solid 1px;
	border-right: #ccc solid 1px;
}
.nav_archive a{
	align-items: center;
}
.nav_next a{
	text-align: right;
}



/* =Contact
-------------------------------------------------------------- */

#contact_way__list li{
	margin-bottom: 2rem;
}
.contact_way__box{
	border-radius: 1rem;
	background: #fff;
	padding: 2rem 5%;
	display: flex;
	align-items: center;
	height: 100%;
	text-align: center;
}
.contact_way__title{
	flex: 0 0 8rem;
	margin-right: 1rem;
}
.contact_way__icon{
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.contact_way__icon svg{
	width: 3rem;
	stroke: #fff;
}
.contact_way__title h3{
	font-size: 1.6rem;
}
.contact_way__txt{
	flex: 1;
}
.contact_way__txt h4{
	color: var(--blue);
	margin-bottom: 1rem;
	font-size: 1.6rem;
}
.contact_way__txt h4#txt_tel{
	font-size: 2rem;
}
.contact_way__txt p{
	line-height: 1.5;
	color: var(--gray);
	font-size: 1.2rem;
	margin: .5rem 0;
}

#contact_form{
	background: var(--blue);
}
#contact_form h2{
	color: #fff;
}
.form_wrap{
	background: #fff;
	padding: 2rem 5%;
	border-radius: 1rem;
}
.required{
	color: #960014;
	margin-left: 1rem;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  font-size: 1.4rem;
  border: var(--border) solid 1px;
	min-height: 4rem;
	display: block;
	background: var(--bg);
	border-radius: .5rem;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 150px;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

input[type="date"]{
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

.form_wrap label{
	cursor: pointer;
}
.wpcf7 form .wpcf7-response-output{
	text-align: center;
	padding: 1rem;
}
.form_wrap .wpcf7-list-item{
	margin: 0;
}
.form_wrap .btn_link[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	scale: none !important;
	box-shadow: none;
	transform: none;
}
.form_name{
	display: flex;
	justify-content: space-between;
}
.form_name dl{
	width: 49%;
}
.form_wrap dl{
	margin-bottom: 2rem;
}
.form_wrap dt{
	font-weight: 700;
	margin-bottom: .5rem;
}
.policy_check{
	margin: 3rem 0;
}
.policy_check a{
	text-decoration: underline;
	color: var(--blue);
}
.policy_check a:hover{
	text-decoration: none;
}
.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: #960014;
}
.form_submit .btn_link{
	font-size: 1.6rem;
	font-weight: 700;
}

.wpcf7-turnstile{
	text-align: center;
	margin: 3rem 0;
}

.ui-datepicker-calendar{
	table-layout: fixed;
}



/* =header
-------------------------------------------------------------- */

#site_header{
	height: var(--header_height);
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
	background: #fff;
	box-shadow: 0 2px 3px rgba(0,0,0,.2);
}
#site_header__inner{
	width: 100%;
	display: flex;
	align-items: center;
	height: 100%;
}
#header_logo{
  display: block;
  width: 9rem;
  margin: 0 auto 0 0;
	padding-left: 1rem;
}
#header_nav__btn{
	width: var(--header_height);
	height: var(--header_height);
	text-align: center;
	z-index: 9999;
  cursor: pointer;
	background: var(--blue);
	position: relative;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
	width: 50%;
}
#header_nav__btn .border{
	width: 100%;
	height: 2px;
	background: #fff;
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
.nav_active #header_nav__btn .border{
  background: #fff;
}
.nav_active #header_nav__btn .border:nth-of-type(1) {
	transform: translateY(7px) rotate(-45deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	transform: translateY(-7px) rotate(45deg);
}


#header_nav__inner{
	width: 80%;
	max-width: 40rem;
	height: 100%;
	background: var(--bg);
	z-index: 999;
	position: fixed;
	top: var(--header_height);
	right: -40rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
	right: 0;
}
.main_navigation{
	position: relative;
}
.nav_link{
	display: block;
	padding: 1.5rem;
	position: relative;
	border-bottom: var(--border) solid 1px;
	font-weight: 700;
}
.nav_arrow{
	display: block;
	width: 1rem;
	height: 1rem;
	border-top: var(--bk) solid 1px;
	border-right: var(--bk) solid 1px;
	rotate: 135deg;
	position: absolute;
	right: 2rem;
	top: 50%;
	translate: 0 -50%;
	transition: .3s;
}
.btn_acc{
	position: relative;
}
.btn_acc a{
	pointer-events: none;
}

.sub_nav {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.open .nav_arrow{
	rotate: -45deg;
}
.sub_nav__wrap.is_open .nav_arrow {
  transform: rotate(180deg);
}

.sub_nav ul{
	padding: 1rem 1.5rem;
}
.sub_nav a{
	display: block;
	padding: 1rem 0;
	font-size: 1.2rem;
	color: var(--gray);
	line-height: 1.5;
}
.sub_nav a span{
	color: var(--blue);
	font-size: 120%;
	display: block;
	font-weight: 700;
}
.sub_nav__top a{
	border-bottom: var(--border) solid 1px;
}


#header_contact{
	margin-top: 2rem;
	padding: 0 5%;
}
#header_contact li{
	margin-bottom: 1rem;
}
.btn__header_contact{
	display: flex;
	align-items: center;
	justify-content: center;
	border: var(--bk) solid 1px;
	border-radius: 50px;
	padding: 1rem 2rem;
	background: #fff;
	font-weight: 700;
}
.header_contact__icon{
	flex: 0 0 2rem;
	margin-right: .5rem;
}
.btn_line{
	background: var(--line_green);
	color: #fff !important;
	border: var(--bk) solid 1px !important;
}
.btn_line .header_contact__icon{
	fill: #fff;
}




/* =footer
-------------------------------------------------------------- */

#site_footer{
	background: var(--bk);
	color: #fff;
}
.footer_section{
	border-bottom: #364153 solid 1px;
}
.footer_section h2{
	font-size: 1.6rem;
	font-weight: 700;
}
.sns_links{
	display: flex;
	justify-content: center;
}
.sns_links li{
	margin: 0 .5rem;
}
.btn_sns{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
}
.sns_icon{
	fill: #fff;
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
}
.sns_line{
	background: var(--line_green);
}
.sns_instagram{
	background: linear-gradient(135deg,#741AFA,#FF30C4,#FF5D21,#FFD735);
}
.sns_youtube{
	background: #ff0000;
}
.sns_facebook{
	background: #1877f2;
}
.icon_stroke{
	fill: none;
	stroke: #fff;
}
#footer_access a,
#footer_links a{
	color: #d1d5dc;
}
#footer_links{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 0;
}
#footer_links li{
	margin-bottom: .5rem;
	font-size: 1.2rem;
}
.footer_links__inner{
	width: 50%;
}
#footer_links h2{
	margin-bottom: 1rem;
}
.footer_access__inner:not(:last-child){
	margin-bottom: 3rem;
}
.footer_access__icon{
	margin-right: .5rem;
	width: 2rem;
	display: inline-block;
}
.footer_access__icon svg *{
	stroke: var(--orange);
}
.footer_access__inner p{
	margin-bottom: 1rem;
	padding-left: 2.5rem;
	line-height: 1.5;
	color: #d1d5dc;
	font-size: 1.2rem;
}
#footer_access .footer_tel a{
	color: var(--orange);
	font-size: 2.4rem;
	font-weight: 700;
}
#footer_last{
	padding: 3rem 0 2rem;
}
#footer_last a{
	color: #99a1af;
	font-size: 1.2rem;
}
#footer_copyright{
	font-size: 1.2rem;
	text-align: center;
	margin-top: 3em;
	color: #99a1af;
}






/* =common parts
-------------------------------------------------------------- */

.common_section{
	border-top: var(--bk) solid 1px;
	border-bottom: var(--bk) solid 1px;
	margin-top: -1px;
	position: relative;
}
.common_section .wrapper{
	position: relative;
}
.bnr_line{
	background: var(--line_green);
	color: #fff;
}
.bnr_line .section_title{
	font-size: 1.6rem;
}
.bnr_line h2{
	font-size: 1.8rem;
	text-align: center;
	font-weight: 700;
	margin-bottom: 2rem;
}
.bnr_line h2 span{
	font-size: 150%;
	display: block;
}
.bnr_line__flex{
	display: flex;
	align-items: center;
}
.bnr_line__icon{
	background: #fff;
	border-radius: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 8rem;
	height: 8rem;
	margin-right: 2rem;
}
.bnr_line__icon svg{
	fill: var(--line_green);
	width: 4rem;
}
.bnr_line .btn_line{
	color: var(--line_green) !important;
	background: #fff;
	flex: 1;
}
.bnr_line .btn_line .header_contact__icon{
	fill: var(--line_green);
}
.bnr_line__img{
	margin-top: 3rem;
	display: flex;
}
.bnr_line__img li{
	width: 50%;
}
.bnr_homehug{
	background: url('images/common/homehug_bg.jpg') no-repeat center center / cover;
	padding: 5rem 0;
	text-align: center;
}
.bnr_homehug p{
	margin: 5rem 0;
	font-size: 1.6rem;
}
.pamph_present{
	background: #000;
	position: relative;
	z-index: 5;
	color: #fff;
	padding: 5rem 0 8rem;
}
.pamph_present::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('images/common/pamph_bg.jpg') no-repeat center center / cover;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: .3;
}
.pamph_present__list{
	margin: 5rem 0;
}
.pamph_present__list li{
	margin: 3rem 0;
	display: flex;
	align-items: center;
}
.pamph_present__icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	background: rgba(255,255,255,.2);
	backdrop-filter: blur(8px);
	margin-right: 2rem;
}
.pamph_present__txt{
	flex: 1;
}
.pamph_present__txt h3{
	font-size: 150%;
}
.pamph_present__txt p{
	line-height: 1.5;
	margin-top: .5rem;
}

.bnr_event .section_title{
	margin: 3rem 0;
	font-size: 5.5vw;
}
.bnr_event__inner li{
	margin-top: 2rem;
}
.bnr_event__inner a{
	display: block;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}
.bnr_event__txt{
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 90%;
	text-align: center;
	color: var(--bk);
}
.bnr_event__txt h3{
	font-weight: 700;
	font-size: 2.4rem;
	margin-bottom: 1rem;
}
.bnr_event__txt p{
	margin-bottom: 2rem;
	font-weight: 700;
}
.bnr_event__txt .btn_link{
	width: 80%;
	padding: 1rem;
	max-width: 22rem;
}

.service_list>li{
	margin-bottom: 4rem;
}
.service_list__box{
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 2rem 5%;
	border-radius: 1rem;
	background: #fff;
	height: 100%;
}
.service_list__icon{
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	margin: 0 auto 2rem;
	overflow: hidden;
	box-shadow: 0 3px 5px rgba(0,0,0,.1);
	transition: .3s;
}
.service_list__icon img{
	transition: .3s;
}
.service_list__icon .img_clip::before{
	padding-top: 100%;
}
.service_list__txt{
	flex: 1;
	text-align: center;
	color: var(--bk);
}
.service_list__txt h3{
	font-size: 2.2rem;
	margin-bottom: 1rem;
}
.service_list__txt h3 span{
	font-size: 1.4rem;
	display: block;
}
.service_list__txt p{
	margin-bottom: 2rem;
	font-size: 1.4rem;
	white-space: nowrap;
}
.service_list__box .btn_link{
	padding: 1rem 0;
	width: 80%;
	margin-top: auto;
}


#btn_fixed{
	width: 100%;
	bottom: 0;
	right: 0;
	z-index: 999;
	position: fixed;
	opacity: 0;
	visibility: hidden;
	transition: .2s;
	display: flex;
}
#btn_fixed.is-active{
	opacity: 1;
	visibility: visible;
	bottom: 1rem;
}
#btn_fixed li{
	margin-top: .5rem;
	position: relative;
	transition: .3s;
	width: 50%;
	padding: 0 .2rem;
}
#btn_fixed .btn_link{
	display: flex;
	position: relative;
	align-items: center;
	background: var(--blue);
	color: #fff;
	padding: .5rem 1rem;
	border-radius: 1rem;
	overflow: hidden;
	justify-content: flex-start;
	text-align: left;
	border: #fff solid 1px;
}
.btn_fixed__icon{
	width: 2rem;
	margin-right: 1rem;
}
.btn_fixed__icon svg{
	width: 100%;
}
.btn_fixed__txt{
	flex: 1;
	font-size: .9rem;
}
.btn_fixed__txt h2{
	font-size: 1.4rem;
	font-weight: 700;
}
.btn_fixed__txt p{
	display: flex;
	align-items: center;
}
#btn_fixed .arrow{
	width: 1.5rem;
	height: 1.5rem;
	margin-left: 1rem;
	display: none;
}
.btn_fixed__close{
	position: absolute;
	top: 0;
	right: .2rem;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 1;
	border-radius: 50%;
	background: rgba(255,255,255,0);
	z-index: 20;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.btn_fixed__close svg{
	width: 70%;
}
.btn_fixed__close:hover{
	background: rgba(255,255,255,.1);
}
#btn_fixed__consultation .btn_link{
	background: var(--orange);
}






/* =TOP
-------------------------------------------------------------- */

#main_visual{
	background: #000;
	position: relative;
	height: 100svh;
}
#main_visual video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .6;
	display: block;
}
#main_visual__txt{
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 10;
	text-align: center;
	width: 100%;
	font-size: 8vw;
}
#main_visual__txt span{
	display: block;
	font-size: 60%;
	margin-top: 3rem;
}

.top_bnrs__list li{
	margin-bottom: 1rem;
}
.top_bnr__box{
	display: block;
	overflow: hidden;
	border: var(--bk) solid 2px;
	position: relative;
}
.top_bnr__box .img_clip::before{
	padding-top: 30%;
}
.top_bnr__txt{
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 10;
	width: 100%;
	text-align: center;
	color: var(--bk);
}
.top_bnr__txt h3{
	font-size: 2rem;
}
.top_bnr__txt p{
	font-weight: 500;
}

#top_concept h2{
	padding-top: 3rem;
	margin-bottom: 0;
}
#top_concept__message{
	text-align: center;
	line-height: 2.2;
}
#top_concept__message p{
	font-size: 1.6rem;
}
#top_concept__message p span{
	font-size: 140%;
	color: var(--blue);
}
#top_concept__photo{
	margin: 3rem 0;
	display: flex;
	justify-content: space-between;
}
#top_concept__photo li{
	width: 32%;
	border-radius: 1rem;
	overflow: hidden;
}
#top_concept__photo .img_clip::before{
	padding-top: 100%;
}

.top_information__inner{
	background: #fff;
	padding: 3rem 5%;
	border-radius: 1rem;
}
.news_header{
	margin-bottom: 3rem;
}
.news_title{
	font-size: 1.8rem;
	margin-bottom: .5rem;
	font-weight: 700;
}
.news_date{
	font-size: 1.2rem;
	display: flex;
	align-items: center;
}
.news_date svg{
	width: 1.5rem;
	margin-right: .5rem;
}
.top_information__inner .entry_content{
	padding: 0;
	font-size: 1.4rem;
}





/* =voice
-------------------------------------------------------------- */

.vocie_bg{
	background: #fdfcfb;
}

.voice_box{
	border-radius: 1rem;
	overflow: hidden;
	background: var(--bg);
}
.voice_stars{
	margin: 1rem 0;
}
.voice_star{
	fill: var(--orange);
	stroke: var(--orange);
	width: 1.5rem;
	margin-right: .2rem;
}
.voice_star__empty{
	fill: none;
}
.voice_owner{
	display: flex;
	align-items: center;
	margin: 1rem 0;
}
.voice_owner__icon{
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	width: 6rem;
	height: 6rem;
	margin-right: 1rem;
}
.voice_owner__icon .img_clip::before{
	padding-top: 100%;
	background: #fff;
}
.voice_owner__name{
	flex: 1;
}
.vocie_slider__wrap{
	overflow: hidden;
	padding-bottom: 1rem;
}
.vocie_slider__wrap .wrapper{
	width: 50%;
}
.vocie_slider{
	margin-bottom: 5rem;
}
.vocie_slider .swiper-slide{
	padding: 0 1rem;
}
.slide__voice_box{
	background: #fff;
	overflow: visible;
	padding: 2rem;
	height: 100%;
}
.slide__voice_box .voice_stars{
	margin-bottom: 2rem;
}
.slide__voice_box .voice_owner{
	margin: 2rem 0 0;
	padding-top: 1rem;
	border-top: var(--border) solid 1px;
	font-weight: 700;
}
.slide__voice_box .voice_owner__name span{
	display: block;
	color: var(--orange);
	font-size: 1.2rem;
	font-weight: 400;
}





/* =privacy
-------------------------------------------------------------- */

.privacy_wrap{
	max-width: 920px;
	padding-bottom: 5rem;
}
.privacy_block{
	border-bottom: #d1d5dc dashed 1px;
	padding: 4rem 0;
}
.privacy_block:last-child{
	border: 0;
}
.privacy_block h2{
	font-size: 2rem;
	color: var(--blue);
	margin-bottom: 1rem;
}
.privacy_block h3{
	font-size: 1.8rem;
	margin: 3rem 0 1rem;
}
.privacy_block p{
	margin: 1rem 0;
}
.privacy_box{
	background: #fbf9fa;
	border: #ebe6e7 solid 1px;
	padding: 2rem 5%;
	margin-top: 2rem;
	line-height: 2;
}




/* =sitemap
-------------------------------------------------------------- */

.sitemap_block{
	margin-bottom: 3rem;
}
.sitemap_block h2{
	font-size: 2rem;
	border-bottom: var(--blue) solid 1px;
	color: var(--blue);
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}
.sitemap_block ul{
	padding-left: 2rem;
}
.sitemap_block li{
	margin-bottom: 1rem;
}
.sitemap_block li span{
	margin-right: .5rem;
}
.sitemap_block li a:hover{
	text-decoration: underline;
}



/* =concept
-------------------------------------------------------------- */

#concept01{
	padding: 5rem 0 10rem;
}
#concept01_header h2{
	margin-bottom: 1rem;
}
#concept01_header p{
	font-size: 3rem;
	line-height: 1.4;
}
#concept01_header p span{
	display: inline-block;
	margin: 0 1rem;
}
#concept01_inner{
	background: var(--blue);
	padding: 1rem 5%;
	border-radius: 2rem;
	margin: 3rem 0;
	color: #fff;
}
#concept01_inner li{
	margin: 3rem 0;
	font-size: 1.6rem;
}
#concept01_bottom{
	text-align: center;
}

#concept02 .illust_house{
	right: auto;
	left: 0;
	top: -8rem;
}
#concept02_list li{
	margin-bottom: 3rem;
}
.concept02_list__box h3{
	font-size: 2.4rem;
	color: var(--blue);
	text-align: center;
}
.concept02_list__img{
	border-radius: 2rem;
	overflow: hidden;
	margin: 1rem 0;
}
.concept02_list__box p{
	line-height: 1.5;
}

.concept03_list__box{
	margin-bottom: 3rem;
}
.concept03_list__img{
	border-radius: 2rem;
	overflow: hidden;
}
.concept03_list__txt h3{
	font-size: 2rem;
	color: var(--blue);
	margin: 1rem 0;
}

#concept04 h2{
	margin-bottom: 5rem;
}
.concept04_list__box{
	display: flex;
	align-items: center;
	margin: 2rem 0;
}
.concept04_list__icon{
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	margin-right: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
}
.concept04_list__icon svg{
	width: 4rem;
}
.concept04_list__icon svg *{
	stroke: #fff;
}
.concept04_list__txt{
	flex: 1;
}
.concept04_list__txt h3{
	font-size: 2rem;
	margin: 1rem 0;
}
.concept04_list__txt p{
	line-height: 1.5;
}

.concept_flow__box{
	margin: 3rem 0;
	display: flex;
	align-items: center;
}
.concept_flow__num{
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	margin-right: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	color: #fff;
	font-weight: 700;
}
.concept_flow__txt{
	flex: 1;
}
.concept_flow__txt h3{
	font-size: 2rem;
	margin: 1rem 0;
}
.concept_flow__txt p{
	line-height: 1.5;
}




/* =interview
-------------------------------------------------------------- */

.interview_box{
	border: #0000001a solid 1px;
	padding-bottom: 3rem;
	display: flex;
	flex-direction: column;
}
.interview_box .voice_owner__icon{
	width: 7rem;
	height: 7rem;
	margin-right: 2rem;
}
.interview_box .voice_owner__name{
	font-size: 2rem;
	line-height: 1.5;
}
.interview_box .voice_owner__name span{
	font-size: 70%;
	color: var(--gray);
}
.voice_cat{
	background: var(--btn);
	border: var(--bk) solid 1px;
	color: #fff !important;
	display: inline-block;
	padding: 0 1rem;
	margin: 1rem 0;
	border-radius: 50px;
}
.voice_title{
	margin: 1rem 0 2rem;
	color: var(--blue);
	font-size: 1.6rem;
}
.interview_box .btn_link{
	margin: auto auto 0;
	width: 90%;
	max-width: 25rem;
}
#voice_works{
	background: var(--blue);
	color: #fff;
}
#voice_works .wrapper{
	max-width: 900px;
}
#voice_works ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	justify-content: center;
}
#voice_works ul li{
	width: 50%;
	margin: 3rem 0;
	text-align: center;
}
.voice_works__icon{
	width: 8rem;
	height: 8rem;
	margin: 0 auto 1rem;
	display: block;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.voice_works__icon svg{
	width: 60%;
}





/* =works
-------------------------------------------------------------- */

.works_box{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.service_cat{
	background: var(--btn);
	color: #fff;
	font-size: 1.2rem;
	display: inline-block;
	padding: 0 1rem;
	border-radius: 50px;
}
.cat_kurumu{
	background: var(--kurumu);
}
.cat_katachi{
	background: var(--katachi);
}
.cat_re{
	background: var(--re);
}
.works_box .service_cat{
	position: absolute;
	top: .5rem;
	left: 1rem;
	z-index: 5;
	margin: 1rem 0;
}
.works_box__title{
	font-size: 1.8rem;
	color: var(--blue);
	margin-bottom: 1.5rem;
	line-height: 1.5;
}
.works_box__details,
.works_tag__wrap{
	display: flex;
	flex-wrap: wrap;
	margin: 1.5rem 0 2rem;
}
.works_box__details li{
	margin: 0 2rem .5rem 0;
	display: flex;
	align-items: center;
	color: #666;
}
.works_box__details li.works_box__place{
	width: 100%;
}
.works_tag__wrap li{
	margin: 0 .5rem .2rem 0;
	display: flex;
	align-items: center;
}
.works_box__icon{
	width: 2rem;
	margin-right: .5rem;
	color: #666;
}
.works_tag{
	display: inline-block;
	padding: .2rem 1rem;
	background: var(--gray);
	color: #fff;
	font-size: 1.2rem;
	border-radius: 50px;
}
.works_box__footer{
	padding: 2rem 0;
	margin: auto 2rem 1rem;
	display: flex;
	align-items: center;
	border-top: #ccc solid 1px;
}
.works_box__footer .btn_link{
	width: 45%;
}
.works_box__footer .works_box__price{
	flex: 1;
	line-height: 1.4;
	font-size: 1.2rem;
}
.works_box__footer .works_box__price span{
	display: block;
	font-size: 150%;
}

#works_header{
	overflow: hidden;
	padding-top: 0;
}
#works_header__details dt{
	color: #666;
	display: flex;
	align-items: center;
}
#works_header__details .works_box__icon{
	width: 3rem;
	margin-right: 1rem;
}
#works_header__details .works_box__icon *{
	stroke: var(--orange);
}
.swiper-main{
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	z-index: 1;
	border: #ccc solid 1px;
}
.swiper-main .img_clip::before{
	padding-top: 75%;
	background: none;
}
.swiper-main .img_clip img{
	object-fit: cover;
	width: auto;
	height: 100%;
	left: 50%;
	translate: -50% 0;
	scale: 1 !important;
}
.swiper-thumbnail{
	position: relative;
	margin-top: 1rem;
	border-radius: 1rem;
	overflow: hidden;
	z-index: 1;
}
.swiper-thumbnail .swiper-slide{
	padding: 0 .1rem;
}
.swiper-thumbnail .img_clip{
	border-radius: .5rem;
}
.swiper-thumbnail .swiper-button-next,
.swiper-thumbnail .swiper-button-prev{
	width: 3rem;
	height: 3rem;
	margin-top: -1.5rem;
}

#works_header__inner{
	margin: 2rem 0;
}
.works_title{
	font-size: 2.4rem;
	margin: 1.5rem 0;
	line-height: 1.5;
	color: var(--blue);
}
#works_header__details{
	margin: 2rem 0;
}
#works_header__details dd{
	font-size: 120%;
	margin-bottom: 1rem;
	font-weight: 700;
	padding-left: 4rem;
	color: #666;
	font-size: 1.6rem;
}

.works_block{
	border-radius: 2rem;
	padding: 2rem 5%;
}
.works_block.entry_content h2{
	margin-top: 2rem;
}
.works_bg{
	border: var(--orange) solid 2px;
	background: var(--bg);
}
#works_comment{
	margin-top: 3rem;
}


#works_concept .works_block{
	background: #fff;
	font-size: 1.6rem;
}

.works_point__inner{
	border: #ccc solid 1px;
}

#works_spec dl{
	display: flex;
	padding: 1rem 0;
	border-bottom: #ccc solid 1px;
}
#works_spec dt{
	width: 9rem;
	margin-right: 2rem;
}
#works_spec dd{
	flex: 1;
	margin: 0 0 0 auto;
	font-weight: 700;
	font-size: 110%;
	line-height: 1.5;
	text-align: right;
}
.works_point__inner{
	background: #fff;
	margin-bottom: 2rem;
}
.works_point__inner h3{
	color: var(--blue);
	font-size: 1.8rem;
	margin-bottom: 1rem;
	font-weight: 700;
}
.works_voice__inner{
	border: #ccc solid 1px;
}
.works_voice__inner .voice_owner__icon{
	width: 8rem;
	height: 8rem;
}
.works_voice__inner .voice_owner__name{
	font-size: 2rem;
	line-height: 1.4;
}
.works_voice__inner .voice_owner__name span{
	color: var(--gray);
	font-size: 70%;
}

#works_voice{
	border-bottom: 0;
	padding-bottom: 0;
}
.search_block{
	border-bottom: var(--border) solid 1px;
	margin-bottom: 5rem;
	padding: 5rem 0;
}
.search_list{
	display: flex;
	flex-wrap: wrap;
}
.search_list li{
	margin: .5rem .5rem .5rem 0;
}
.check_cat{
	display: none;
}
.cat_list__txt{
	display: inline-block;
	border: var(--border) solid 1px;
	padding: .2rem 1.5rem;
	border-radius: 50px;
}
.check_cat:checked + .cat_list__txt{
	background: var(--orange);
	color: #fff;
}
.cat_all.current a{
	background: var(--orange);
	color: #fff;
}

.post_loading{
	padding: 3rem 0;
	text-align: center;
}

#post_result{
	margin-bottom: 5rem;
}





/* =entry base
-------------------------------------------------------------- */

.blog_box__date{
	display: flex;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}
.posted_date{
	color: var(--gray);
	font-size: 1.2rem;
	display: flex;
	align-items: center;
}
.blog_box__date .posted_date{
	white-space: nowrap;
	margin: 0 0 0 auto;
}
.posted_date .blog_icon{
	width: 1.5rem;
	margin-right: .3rem;
}
.blog_cat{
	color: var(--orange);
	background: var(--bg);
	display: inline-block;
	padding: .2rem 1rem;
	font-size: 1.2rem;
	white-space: nowrap;
	margin: 0 .2rem .5rem 0;
}
.blog_box__title{
	color: var(--blue);
	font-weight: 700;
	line-height: 1.5;
	margin: 1rem 0;
}
.entry_content{
	padding-bottom: 5rem;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--blue) solid .4rem;
	font-weight: 700;
}
.entry_content h3{
	background: var(--blue);
	padding: 1rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
	font-weight: 700;
}
.entry_content h4{
	color: var(--blue);
	font-size: 1.6rem;
	margin: 2rem 0;
	font-weight: 700;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content a{
	text-decoration: underline;
	color: var(--orange);
}
.entry_content a:hover{
	text-decoration: none;
}
.entry_content table tr{
	border: 0;
}
.has-text-align-right{
	text-align: right;
}
.has-text-align-center{
	text-align: center;
}
.entry_content table th,
.entry_content table td{
	border: #999 solid 1px;
}

.entry_content ul,
.entry_content ol{
  padding: 2rem 5%;
  margin: 3rem 0;
  background: var(--bg);
}
.entry_content li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}
.entry_content ul li::before{
  content: '・';
  position: absolute;
  top: 2px;
  left: 0;
}
.entry_content ol{
  counter-reset: number;
}
.entry_content ol li::before{
  counter-increment: number;
  content: counter(number)'.';
  top: 0;
  left: 0;
  position: absolute;
}
.entry_content img{
	margin: 1rem 0;
	overflow: hidden;
}

#blog_header h1{
	margin: 1rem 0 3rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	border-bottom: var(--blue) solid .3rem;
	padding-bottom: 1rem;
}

.entry_author{
	border: var(--border) solid 1px;
	position: relative;
}
.entry_author h2{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	font-size: 1.2rem;
}
.ribbon{
	background: var(--blue);
	color: #fff;
	padding: .5rem 3rem .5rem 1rem;
	clip-path: polygon(0 0,100% 0,95% 50%,100% 100%,0 100%);
}
.author_box{
	display: flex;
	align-items: center;
	padding: 3rem 5% 2rem;
}
.author_box__photo{
	flex: 0 0 8rem;
	margin-right: 1rem;
}
.author_box__photo .img_clip{
	border-radius: 50%;
	overflow: hidden;
}
.author_box__photo .img_clip::before{
	padding-top: 100%;
}
.author_box__txt{
	flex: 1;
}
.author_box__name{
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 1rem;
}
.author_box__txt p{
	line-height: 1.5;
	font-size: 1.2rem;
}

#pickup_list .post_list{
	margin-bottom: 0;
}

#blog_container{
	padding-bottom: 0;
}

#featured_banner{
	margin-top: 5rem;
}
#featured_slide{
	margin: 0;
}
.featured_banner__inner{
	border: var(--blue) solid .3rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.featured_banner__txt__wrap{
	display: contents;
}
.featured_banner__txt{
	padding: 2rem 5%;
}
.featured_tag{
	display: inline-block;
	background: var(--orange);
	color: #fff;
	padding: .2rem 1.5rem;
	border-radius: 50px;
	font-size: 1.2rem;
}
.featured_banner__txt h2{
	color: var(--blue);
	margin: 1rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 700;
}
.featured_banner__txt p{
	font-size: 1.2rem;
}
.featured_banner__link{
	margin-top: auto;
	padding-top: 0;
}
.featured_banner__link .btn_link{
	width: 70%;
	max-width: 15rem;
}
#featured_slide .slick-slide{
	padding: 0 1rem;
}
#category_header{
	margin-bottom: 5rem;
}
#category_header .featured_banner__inner{
	border: none;
}
#category_header .featured_banner__txt p{
	color: var(--gray);
	font-size: 1.4rem;
	display: flex;
	align-items: center;
}
#category_header .featured_tag{
	margin-left: 1rem;
	font-size: 1.4rem;
}
#category_header .featured_banner__txt{
	padding-bottom: 0;
}






/* =service
-------------------------------------------------------------- */

.service_box{
	border: #ccc solid 1px;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.service_box__photo{
	position: relative;
}
.service_box__photo .post_img .img_clip::before{
	padding-top: 80%;
}
.service_box__photo .service_list__icon{
	position: absolute;
	top: 2rem;
	left: 2rem;
	z-index: 5;
}
.service_box__title{
	margin-bottom: 2rem;
}
.service_box__title h2{
	font-size: 3.4rem;
	color: var(--blue);
	margin-bottom: 2rem;
}
.service_box__title h2 span{
	display: block;
	color: var(--gray);
	font-size: 50%;
}
.service_box__title p{
	color: var(--orange);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}
.service_box__inner li{
	margin: .5rem 0;
	display: flex;
	align-items: center;
}
.service_box__inner li .icon_check{
	stroke: var(--blue);
	width: 2rem;
	margin-right: .5rem;
}
.service_box__footer{
	margin-top: auto;
}
.service_price__wrap{
	border-top: #ccc solid 1px;
	border-bottom: #ccc solid 1px;
	padding: 1rem 0;
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}
.service_price__wrap p{
	width: 50%;
	line-height: 1.5;
}
.service_span{
	text-align: right;
}
.service_price span{
	font-size: 130%;
	color: var(--blue);
	font-weight: 700;
	display: block;
}
.service_span span{
	display: block;
	font-weight: 700;
}
.service_box__footer .btn_link{
	width: 80%;
	max-width: 200px;
}
#service_compare__wrap{
	border-radius: 2rem;
	overflow: hidden;
	margin-bottom: 1rem;
}
#service_compare__table{
	background: #fff;
	table-layout: fixed;
	font-size: 1.2rem;
}
#service_compare__table th{
	vertical-align: middle;
	font-weight: 700;
	width: 25%;
	padding: 1rem;
	border: 0;
	line-height: 1.4;
}
#service_compare__table td{
	text-align: center;
	vertical-align: middle;
	line-height: 1.4;
	font-weight: 700;
	padding: 1rem 0;
	border: 0;
}
#service_compare__table thead{
	background: var(--blue);
	color: #fff;
}
#service_compare__table tbody tr:not(:last-child){
	border-bottom: #ccc solid 1px;
}
#service_compare__table tbody tr:nth-child(2n){
	background: rgba(248,246,244,.3);
}
#service_compare__table tbody td{
	font-size: 150%;
}
.compare_mark{
	color: var(--orange);
}
#service_compare__footer{
	margin-top: 2rem;
	font-size: 1.2rem;
	text-align: center;
}
#service_area__map{
	text-align: center;
	margin-bottom: 3rem;
}
#service_area__txt h3{
	font-size: 2rem;
	margin: 2rem 0;
}
.service_area__inner{
	margin: 2rem 0;
}
.service_area__inner h4{
	font-size: 1.6rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	margin-bottom: .5rem;
}
.service_area__inner p{
	padding-left: 3rem;
	font-size: 1.2rem;
}
.icon_area{
	width: 2.5rem;
	margin-right: .5rem;
	stroke: var(--orange);
}
.icon_area__blue{
	stroke: var(--blue);
}
#service_area__outer{
	padding: 2rem;
	border-radius: 1rem;
	background: var(--bg);
	margin-top: 3rem;
}
#service_area__outer h4{
	font-size: 1.4rem;
}
#service_area__outer p{
	padding: 0;
}

.service_header{
	position: relative;
	height: 45rem;
}
.service_header .service_list__icon{
	position: absolute;
	top: 2rem;
	left: 2rem;
	width: 15rem;
	height: 15rem;
	z-index: 20;
	border: rgba(255,255,255,.5) solid 3px;
}
#page_kurumu .service_header::before{
	background: url('images/service/kurumu/main.jpg') no-repeat center center / cover;
	opacity: 1;
}
#page_katachi .service_header::before{
	background: url('images/service/katachi/main.jpg') no-repeat center center / cover;
	opacity: 1;
}
#page_reform .service_header::before{
	background: url('images/service/reform/main.jpg') no-repeat center center / cover;
	opacity: 1;
}
#page_homehug .service_header::before{
	background: url('images/service/homehug/main.jpg') no-repeat center center / cover;
	opacity: 1;
}
.service_header__title{
	position: absolute;
	bottom: 5rem;
	left: 50%;
	translate: -50% 0;
	z-index: 5;
	background: rgba(0,0,0,.4);
	padding: 2rem;
	color: #fff;
	font-size: 6vw;
	white-space: nowrap;
}
.kurumu_title{
	line-height: 1.7;
}
.service_block{
	margin-bottom: 5rem;
}
.service_block:last-child{
	margin-bottom: 0;
}
.service_block__img{
	margin-bottom: 2rem;
}
.service_block__txt p{
	margin-bottom: 1rem;
}

.service_detail__list>li{
	margin-bottom: 2rem;
}
.service_detail__box{
	padding: 2rem 5%;
	background: #fff;
	height: 100%;
}
.service_detail__img .img_clip::before{
	padding-top: 60%;
}
.service_detail__txt h3{
	font-size: 1.8rem;
	margin: 2rem 0;
	color: var(--blue);
	font-weight: 700;
	text-align: center;
}
.service_detail__txt p{
	margin: 1rem 0;
}

.flex_wrap li{
	margin-bottom: 2rem;
}
.spec_box{
	border: #ebe6e7 solid 1px;
	padding: 2rem;
	height: 100%;
}
.spec_box__txt h3{
	margin: 1em 0;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--blue);
}

.gallery_slider .slick-slide{
	padding: .3rem;
}
.gallery_slider a{
	display: block;
	position: relative;
}
.icon_modal{
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 1rem;
	right: 1rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.3);
	z-index: 10;
}
.icon_modal::before{
	content: '';
	width: 1.5rem;
	height: 1.5rem;
	background: url('images/icon_search.svg') no-repeat center center / contain;
}

#reform_service01{
	margin-bottom: 5rem;
}

.reform_service__inner .section_head h3{
	color: var(--blue);
	font-size: 2.4rem;
	margin-bottom: 2rem;
}

.katachi_point__box{
	background: #fff;
	padding: 2rem 5%;
	margin-bottom: 2rem;
}
.katachi_point__box .spec_box__txt{
	margin-bottom: 2rem;
}
.katachi_point__box .spec_box__txt p{
	margin: 1rem 0;
}
.katachi_point__img{
	text-align: center;
}
.spec_box__inner{
	margin-top: 2rem;
	padding: 2rem 5%;
	background: var(--bg);
}
.spec_box__inner h4{
	color: var(--blue);
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
#katachi_point01{
	display: block;
}
#katachi_point01 .spec_box__txt{
	text-align: center;
}
#katachi_point01__list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#katachi_point01__list li{
	width: 50%;
	padding: 0 .5rem;
	margin-bottom: 1rem;
}
.katachi_point01__img{
	text-align: center;
}
.katachi_point01__img figcaption{
	margin-top: .5rem;
	font-size: 1.2rem;
}

#katachi_spec__list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -.5rem;
}
#katachi_spec__list li{
	width: 50%;
	padding: 0 .5rem;
	margin-bottom: 2rem;
}
.katachi_spec__box{
	overflow: hidden;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
	border: var(--katachi) solid .3rem;
}
.katachi_spec__box h3{
	background: rgb(71, 147, 205,.8);
	color: #fff;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: .5rem;
	font-size: 1.2rem;
	font-weight: 700;
}

#homehug_osusume .service_block__img{
	width: 70%;
	padding-left: 3rem;
	margin: 0 auto 2rem;
}
#homehug_osusume .service_block__txt li{
	margin: 2rem 0;
	display: flex;
	align-items: flex-start;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

#homehug_osusume .service_block__txt li::before{
	content: '';
	background: url('images/service/homehug/icon_check.svg') no-repeat center center / contain;
	width: 4rem;
	height: 3rem;
	display: block;
	margin-right: .5rem;
}

#homehug_menu__list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -.5rem;
}
#homehug_menu__list li{
	width: 50%;
	padding: 0 .5rem;
	margin-bottom: 1rem;
}
.homehug_menu__box{
	border: var(--orange) solid .2rem;
	border-radius: 1rem;
	background: #fff;
	overflow: hidden;
	height: 100%;
	text-align: center;
	font-size: 1.2rem;
	padding: 1rem 0;
}
.homehug_menu__icon{
	width: 8rem;
	margin: 0 auto 1rem;
}

#homehug_flow__list{
	margin-bottom: 5rem;
}
#homehug_flow__list li{
	margin-bottom: 2rem;
}
.homehug_flow__box{
	background: var(--bg);
	border: var(--orange) solid .2rem;
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	height: 100%;
}
.homehug_flow__num{
	display: block;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	margin: 0 auto 1rem;
}
.homehug_flow__txt h3{
	color: var(--blue);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 1rem 0
}

#homuhug_logo{
	margin: 0 auto 3rem;
	width: 70%;
	max-width: 360px;
}
#homuhug_line__link{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}
#homuhug_line__link a{
	display: block;
	width: 30%;
	margin: 0 2rem;
	max-width: 180px;
}
#homuhug_line p{
	font-weight: 700;
	font-size: 1.6rem;
	text-align: center;
}





/* =event
-------------------------------------------------------------- */

#event_intro{
	border: 0;
}
#event_intro p{
	margin: 1rem 0;
}
#event_list__wrap{
	margin-bottom: 8rem;
}

.event_box{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.event_box__footer{
	margin: auto 2rem 0;
	padding-top: 2rem;
	border-top: var(--border) solid 1px;
}
.event_box__footer .btn_link{
	width: 90%;
	max-width: 15rem;
}
.event_box__details li span{
	font-size: 90%;
	color: var(--gray);
}
.event_box__day{
	margin-bottom: 1rem;
	color: var(--blue);
	font-weight: 700;
	line-height: 1.5;
}
.event_box__title{
	margin: 1rem 0;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}
.event_box__details li{
	margin: 1.5rem 0 2rem;
	display: flex;
	align-items: flex-start;
	line-height: 1.4;
}
.event_box__details li .works_box__icon{
	width: 2rem;
	margin-right: 1rem;
}
.event_box__details li p{
	flex: 1;
}
.event_description{
	line-height: 1.5;
	margin-top: 2rem;
}

.event_detail__inner{
	flex: 1;
	margin-top: -2px;
}
.event_detail__inner h3{
	color: var(--gray);
	font-size: 1.6rem;
}
.event_detail__inner p{
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--bk);
}
.event_detail__inner a{
	color: var(--blue);
	text-decoration: underline;
}
.event_detail__inner a:hover{
	text-decoration: none;
}
.event_detail__inner span{
	font-size: 90%;
	display: block;
	font-weight: 400;
}

#single_event .event_description{
	border: var(--orange) solid .2rem;
	border-radius: 1rem;
	padding: 2rem 5%;
	background: var(--bg);
	margin-top: 3rem;
}

#single_event .works_block{
	background: #fff;
}
.event_cat{
	background: var(--blue);
	color: #fff;
	display: inline-block;
	font-size: 50%;
	margin-bottom: 1.5rem;
	border-radius: 50px;
}
#works_header__inner .event_cat{
	margin: 0;
	font-size: 1.2rem;
}
#works_header__inner .event_detail__inner p{
	margin: 0;
}
#single_event .btn_back{
	max-width: 24rem;
}
#event_about .section_title{
	margin-bottom: 3rem;
}
#contact_form .event_cat{
	color: var(--blue);
	background: #fff;
}
#single_event .entry_content ul, 
#single_event .entry_content ol{
	margin: 1rem 0;
	background: none;
	padding: 0;
}
#single_event .entry_content ul li{
	padding-left: 2.5rem;
	margin: 1rem 0;
}
#single_event .entry_content ul li::before{
	content: '';
	background: url('images/icon_check.svg') no-repeat center center / contain;
	width: 2rem;
	height: 2rem;
}

#event_merit__list li{
	margin-bottom: 1rem;
	border: var(--border) solid 1px;
	border-radius: 1rem;
	padding: 1.5rem 5%;
	background: var(--bg);
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	font-weight: 700;
}
#event_merit__list li::before{
	content: '';
	background: url('images/icon_check.svg') no-repeat center center / contain;
	width: 3rem;
	height: 3rem;
	margin-right: 1rem;
}


.faq_box{
	background: #fff;
	border-radius: 1rem;
	margin-bottom: 2rem;
	padding: 2rem 5%;
	border: var(--border) solid 1px;
}
.faq_box dt{
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	color: var(--orange);
	font-weight: 700;
}



#catalog_way .contact_way__box{
	border: var(--blue) solid .2rem;
	display: block;
}
#catalog_way .contact_way__title h3{
	font-size: 2rem;
	margin-bottom: 1rem;
}
#catalog_way .contact_way__txt ul{
	margin-top: 2rem;
	display: inline-block;
	text-align: left;
}
#catalog_way .contact_way__txt ul li{
	margin: .5rem 0;
	width: 100% !important;
	display: flex;
	align-items: center;
}
#catalog_way .contact_way__txt ul li::before{
	content: '';
	background: url('images/icon_check.svg') no-repeat center center / contain;
	width: 2rem;
	height: 2rem;
	margin-right: 1rem;
	display: inline-block;
}

.tab_item__wrap{
	display: flex;
	justify-content: space-between;
	margin-bottom: 3rem;
}
.tab_item{
	width: 49%;
	border: #00578880 solid 1px;
	border-radius: 1rem;
	padding: 1.5rem 0;
	text-align: center;
	font-size: 1rem;
	transition: .3s;
	cursor: pointer;
}
.catalog_icon{
	display: block;
	width: 3rem;
	margin: 0 auto 1rem;
	stroke: #00578880;
}
.tab_item h3{
	font-size: 1.4rem;
	font-weight: 700;
}
.tab_item:hover{
	border: #005788 solid 1px;
}
.tab_item:hover .catalog_icon{
	stroke: #005788;
}
.tab_item.active{
	border: var(--blue) solid 1px;
	background: #0057880d;
}
.tab_item.active .catalog_icon{
	stroke: var(--blue);
}
.tab_panel{
	display: none;
}
.tab_panel.active{
	display: block;
}
#zip11{
	width: 15rem;
	display: inline-block;
}



/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
	.illust_house{
		width: 15rem;
	}
	.illust_child{
		width: 15rem;
		top: -5rem;
	}
	.illust_dog{
		width: 15rem;
		top: -5rem;
	}
	.section{
		padding: 7rem 0;
	}
	.section_title{
		font-size: 2.8rem;
		margin-bottom: 3rem;
	}
	.page_header{
		height: 25rem;
	}
	.page_title{
		font-size: 5rem;
	}
	.page_intro{
		text-align: center;
		font-size: 1.5rem;
	}
	.page_container{
		padding: 5rem 0 8rem;
	}
	.post_list{
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1rem 3rem;
	}
	.post_list>li{
		width: 50%;
		padding: 0 1rem;
		margin-bottom: 4rem;
	}
	#btn_fixed{
		display: block;
		width: 23rem;
		right: 2rem;
	}
	#btn_fixed li{
		padding: 0;
		width: 100%;
	}
	.btn_fixed__icon{
		width: 3rem;
		height: 3rem;
	}
	.btn_fixed__txt{
		font-size: 1rem;
	}
	#btn_fixed .arrow{
		display: block;
	}
	#message_404{
		text-align: left;
	}
	#message_404 .btn_link{
		margin: 5rem 0 0;
	}
	.wp-block-gallery.columns-3 .wp-block-image{
		width: 33.33%;
	}
	.wp-block-gallery.columns-4 .wp-block-image{
		width: 25%;
	}
	.wp-block-gallery.columns-5 .wp-block-image{
		width: 20%;
	}
	.pamph_present{
		padding: 8rem 0;
	}
	.pamph_present__icon{
		width: 8rem;
		height: 8rem;
		margin-right: 3rem;
	}
	.pamph_present__icon svg{
		width: 4rem;
	}
	.sns_links li{
		margin: 0 1rem;
	}
	.footer_section{
		padding: 3rem 0;
	}
	.footer_links__inner{
		width: 25%;
	}
	#footer_access{
		display: flex;
	}
	.footer_access__inner{
		margin: 0 !important;
		width: 50%;
	}
	#footer_last ul{
		display: flex;
	}
	#footer_last ul li{
		margin-right: 2rem;
	}
	.bnr_line__link{
		width: 50%;
		margin: 0 auto;
	}
	.bnr_event__inner{
		display: flex;
		justify-content: space-between;
	}
	.bnr_event__inner li{
		width: 48%;
		margin: 0;#main_visual__txt
	}
	.bnr_event .section_title{
		margin: 0 0 5rem;
		font-size: 2.8rem;
	}
	.service_list{
		display: flex;
		flex-wrap: wrap;
		margin: 5rem -1rem 0;
	}
	.service_list>li{
		width: 50%;
		padding: 0 1rem;
		margin-bottom: 2rem;
	}
	.service_list__icon{
		margin: 0 auto 2rem;
		width: 15rem;
		height: 15rem;
	}
	.service_list__txt h3{
		margin: 0 0 3rem;
	}
	.service_list__txt p{
		margin-bottom: 3rem;
		letter-spacing: 0;
	}
	#main_visual__txt{
		font-size: 3rem;
	}
	.top_bnrs__list{
		display: flex;
		margin: 0 -1rem;
	}
	.top_bnrs__list li{
		width: 33.33%;
		padding: 0 1rem;
		margin: 0;
	}
	.top_bnr__txt p{
		font-size: 1rem;
	}
	#top_concept h2{
		padding: 0;
	}
	#top_concept__photo li{
		border-radius: 2rem;
	}
	#top_concept__photo .img_clip::before{
		padding-top: 60%;
	}
	.privacy_block h2{
		font-size: 2.6rem;
	}
	.privacy_block h3{
		font-size: 2rem;
	}
	#sitemap_wrap{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.sitemap_block{
		width: 45%;
		margin-bottom: 5rem;
	}
	#concept02_list{
		display: flex;
		justify-content: space-between;
	}
	#concept02_list li{
		margin: 0;
		width: 31%;
	}
	#concept03 h2{
		margin-bottom: 5rem;
	}
	.concept03_list__box{
		display: flex;
		align-items: center;
	}
	.concept03_list__img{
		width: 25rem;
		margin-right: 3rem;
	}
	.concept03_list__txt{
		flex: 1;
	}
	#concept04_list{
		display: flex;
		justify-content: space-between;
	}
	.concept04_list__box{
		width: 32%;
		margin: 0;
		display: block;
	}
	.concept04_list__icon{
		margin: 0 auto 2rem;
	}
	.concept04_list__txt{
		text-align: center;
	}
	#concept05{
		text-align: center;
	}
	#concept_flow{
		display: inline-block;
	}
	.concept_flow__box{
		text-align: left;
	}
	#works_header{
		display: flex;
	}
	#works_gallery{
		width: 50%;
		margin-right: 2rem;
	}
	#works_header__inner{
		flex: 1;
	}
	#works_header__inner{
		margin: 0;
	}
	#works_concept .works_block{
		text-align: center;
	}
	#works_concept .works_block p{
		display: inline-block;
		text-align: left;
	}
	#service_area__flex{
		display: flex;
	}
	#service_area__map{
		width: 50%;
		margin: 0 3rem 0 0;
	}
	#service_area__txt{
		flex: 1;
	}
	.service_header{
		height: 50rem;
	}
	.service_header__title{
		bottom: 50%;
		translate: -50% 60%;
		font-size: 3rem;
		padding: 3rem 5rem;
	}
	.service_flex{
		display: flex;
		justify-content: space-between;
	}
	.service_block:nth-child(2n) .service_flex{
		flex-direction: row-reverse;
	}
	.service_block__img{
		width: 48%;
		margin: 0;
	}
	.service_block__txt{
		width: 48%;
	}
	.service_detail__list{
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1rem;
	}
	.service_detail__list>li{
		width: 50%;
		padding: 0 1rem;
	}
	.flex_wrap{
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1rem;
	}
	.flex_wrap li{
		width: 33.33%;
		padding: 0 1rem;
	}
	#katachi_point01__list li{
		width: 33.33%;
	}
	.katachi_point__box{
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		padding: 3rem 5rem;
		min-height: 30rem;
	}
	.katachi_point__img{
		flex: 0 0 35%;
		margin-right: 4rem;
	}
	.katachi_point__box .spec_box__txt{
		flex: 1;
	}
	.katachi_point__box .spec_box__txt h3{
		text-align: left;
	}
	#katachi_point01 .spec_box__txt h3{
		text-align: center;
	}
	#katachi_spec__list li{
		width: 25%;
	}
	.search_list{
		justify-content: center;
	}
	.search_list li{
		margin: .5rem;
	}
	.author_box__photo{
		margin-right: 3rem;
	}
	#contact_way__list{
		display: flex;
	}
	#contact_way__list li{
		width: 33.33%;
		padding: 0 1rem;
		margin: 0;
	}
	.contact_way__box{
		display: block;
		padding: 3rem 1rem 2rem;
	}
	.contact_way__title{
		margin: 0;
	}
	.contact_way__title h3{
		margin: 2rem 0 1rem;
		font-size: 2rem;
	}
	.form_wrap{
		padding: 5rem;
		border-radius: 2rem;
	}
	#event_merit__list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#event_merit__list li{
		width: 49%;
		padding: 2rem;
	}
	#catalog_way #contact_way__list li{
		width: 50%;
	}
	#homehug_osusume .service_flex{
		flex-direction: row;
		align-items: center;
	}
	#homehug_osusume .service_block__img{
		width: 30%;
		margin: 0 5rem 0 0;
	}
	#homehug_osusume .service_block__txt{
		width: auto;
		flex: 1;
	}
	#homehug_menu__list li{
		width: 25%;
	}
	#homehug_flow__list{
		display: flex;
	}
	#homehug_flow__list li{
		width: 33.33%;
		padding: 0 1rem;
		margin: 0;
	}
	#homuhug_line p{
		font-size: 2rem;
	}
	.featured_banner__inner{
		flex-direction: row;
	}
	.featured_banner__img{
		width: 35%;
		align-self: stretch;
	}
	.featured_banner__img .img_clip{
		height: 100%;
	}
	.featured_banner__img .img_clip::before{
		content: none;
	}
	.featured_banner__txt__wrap{
		display: flex;
		flex-direction: column;
		flex: 1;
		padding: 3rem;
	}
	.featured_banner__txt{
		text-align: left;
		padding: 0;
	}
	.featured_banner__link .btn_link{
		margin: 2rem 0 0;
		padding: 1rem;
	}
	#category_header .featured_banner__inner{
		border-bottom: var(--border) solid 1px;
		height: 30rem;
		align-items: center;
	}
	#category_header .featured_banner__img{
		width: 50%;
	}
	#category_header .featured_banner__txt h2{
		font-size: 2.6rem;
		margin: 2rem 0 0
	}
	#category_header__txt{
		margin-top: 5rem;
		text-align: center;
	}
	#voice_works ul li{
		width: 33.33%;
		padding: 0 2rem;
		font-size: 1.8rem;
	}
	.voice_works__icon{
		width: 9rem;
		height: 9rem;
	}
	.swiper-thumbnail .swiper-wrapper{
		flex-wrap: wrap;
		width: 100%;
		transform: none;
		margin: 0 -.2rem;
	}
	.swiper-thumbnail .swiper-slide{
		width: 33.33%;
		padding: .2rem;
		cursor: pointer;
	}
	.swiper-thumbnail .swiper-button-next,
	.swiper-thumbnail .swiper-button-prev{
		display: none;
	}
	.event_detail__inner{
		margin: .2rem 0 0;
	}
	.page_links a,
	.page_links span{
		width: 5rem;
		height: 5rem;
		font-size: 1.4rem;
	}
	.page_links a.next,
	.page_links a.prev{
		height: 3rem;
	}
}




@media screen and (min-width: 1024px){
  html{
    font-size: 71.5%;
  }
	.illust_house{
		width: 23rem;
		top: -4rem;
		right: 1rem;
	}
	.illust_child{
		width: 20rem;
		top: -6rem;
		left: 1rem;
	}
	.illust_dog{
		width: 20rem;
		left: 3rem;
	}
	.illust_gal{
		width: 15rem;
		top: -5rem;
		right: 1rem;
	}
	.illust_chaim{
		width: 12rem;
		left: 2rem;
	}
	.table th,
	.table td{
		padding: 2rem;
	}
	.section_title{
		font-size: 3rem;
	}
	.post_list{
		margin: 0 -1.5rem 3rem;
	}
	.post_list>li{
		width: 33.33%;
		padding: 0 1.5rem;
	}
	#site_header{
		padding: 0 1rem;
	}
	#site_header__inner{
		justify-content: center;
	}
	#header_nav,
	.menu_wrap,
	#header_nav__inner{
		display: contents;
	}
	#header_nav__btn{
		display: none;
	}
	#header_nav__inner{
		opacity: 1;
		position: static;
		width: auto;
		max-width: 100%;
		visibility: visible;
		background: none;
		overflow: visible;
	}
	.nav_sp{
		display: none;
	}
	.main_navigation{
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 1;
	}
	.main_navigation > li{
		margin: 0 1rem;
	}
	.nav_link{
		font-size: 1rem;
		border: 0;
		padding: .5rem 0;
	}
	.sub_nav__wrap{
		position: relative;
	}
	.nav_arrow{
		position: static;
		margin-left: 1rem;
		display: inline-block;
		translate: none;
		width: .5rem;
		height: .5rem;
	}
	.btn_acc a{
		display: flex;
		align-items: center;
	}
	.sub_nav{
		position: absolute;
		top: 100%;
		padding-top: 5rem;
		left: -2rem;
		z-index: 999;
		white-space: nowrap;
		min-width: 400px;
		border: 0;
		display: block;
		visibility: hidden;
		opacity: 0;
		transition: .3s;
		max-height: 100% !important;
		overflow: visible;
	}
	.sub_nav__wrap:hover .sub_nav{
		visibility: visible;
		opacity: 1;
	}
	.sub_nav__wrap:hover .nav_arrow{
		rotate: -45deg;
		border-color: var(--hover);
	}
	.sub_nav ul{
		background: #fff;
		border-radius: 2rem;
		box-shadow: 0 0 3px rgba(0,0,0,.2);
		padding: 2rem 3rem;
	}
	.sub_nav a{
		padding: 1.5rem 0;
		font-size: 1.2rem;
	}
	#header_contact{
		display: flex;
		align-items: center;
		margin: 0 0 0 auto;
		padding: 0;
	}
	#header_contact li{
		margin: 0 0 0 1rem;
	}
	#header_contact li:first-child{
		margin: 0;
	}
	.btn__header_contact{
		font-size: 1rem;
		padding: .5rem 1rem;
		white-space: nowrap;
	}
	.pamph_present::before{
		background-attachment: fixed;
	}
	#footer_sns{
		padding: 8rem 0;
	}
	.bnr_line__inner{
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		margin-top: 5rem;
	}
	.bnr_line__link{
		width: 45%;
		padding-left: 5rem;
	}
	.bnr_line__img{
		width: 55%;
		margin: 0;
	}
	.bnr_line__icon{
		margin-right: 3rem;
	}
	.bnr_line .btn_line{
		padding: 1.5rem;
		font-size: 1.6rem;
	}
	.bnr_event__inner a{
		border-radius: 2rem;
	}
	.bnr_event__inner .img_clip::before{
		padding-top: 60%;
	}
	.bnr_event__txt h3{
		font-size: 3rem;
	}
	.bnr_event__txt p{
		margin: 1rem 0 3rem;
	}
	#main_visual{
		height: calc(100vh - 90px);
	}
	#main_visual__txt{
		font-size: 4.5rem;
	}
	#main_visual__txt span{
		font-size: 50%;
	}
	#top_concept__message{
		line-height: 3;
	}
	.voice_box{
		border-radius: 2rem;
	}
	.slide__voice_box{
		padding: 3rem;
	}
	#concept01_header p{
		font-size: 4rem;
		margin: 1rem 0;
	}
	#concept01_inner{
		margin: 3rem 0;
		padding: 2rem 5rem;
	}
	#concept01_bottom p{
		font-size: 1.6rem;
	}
	#concept02 .illust_house{
		top: -10rem;
		left: 2rem;
	}
	#concept02 h2{
		font-size: 4rem;
		margin-bottom: 5rem;
	}
	#concept02_list{
		margin-top: 5rem;
	}
	.concept02_list__box h3{
		font-size: 2.6rem;
	}
	.concept02_list__img{
		margin: 2rem 0;
	}
	.concept03_list__txt h3{
		font-size: 2.2rem;
		margin-bottom: 2rem;
	}
	.concept_flow__num{
		width: 6rem;
		height: 6rem;
		font-size: 2rem;
		margin-right: 4rem;
	}
	.concept_flow__txt h3{
		font-size: 2.2rem;
	}
	.interview_box .post_box__inner{
		padding: 3rem;
	}
	.works_title{
		font-size: 3rem;
	}
	#works_header__details{
		margin: 3rem 0;
	}
	.works_block{
		padding: 4rem 5rem;
	}
	#works_comment{
		padding: 3rem;
	}
	#works_gallery{
		margin-right: 3rem;
	}
	#works_spec .works_block{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#works_spec .works_block dl{
		width: 48%;
		padding: 2rem 0;
	}
	.works_point__inner h3{
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.works_point__inner p{
		font-size: 1.6rem;
	}
	.works_voice__inner .voice_title{
		margin: 2rem 0 1rem;
	}
	.service_price__wrap{
		padding: 2rem 0;
	}
	.service_list>li{
		margin-bottom: 3rem;
	}
	#service_compare__table{
		font-size: 1.4rem;
	}
	#service_compare__table th{
		padding: 1.5rem 2rem;
	}
	#service_compare__table td{
		padding: 1.5rem;
	}
	#service_compare__table tbody td{
		font-size: 200%;
	}
	#service_compare__footer{
		font-size: 1.4rem;
	}
	#service_area__map{
		margin-right: 5rem;
	}
	#service_area__txt h3{
		font-size: 2.4rem;
	}
	.service_area__inner{
		margin: 3rem 0;
	}
	.service_header{
		height: calc(100vh - 90px);
	}
	.service_header__title{
		font-size: 3.8rem;
	}
	.service_header .service_list__icon{
		width: 20rem;
		height: 20rem;
		top: 3rem;
	}
	.service_block h2{
		margin-bottom: 4rem;
	}
	.service_block__txt p{
		margin-bottom: 2rem;
	}
	.service_detail__list>li{
		padding: 0 2rem;
		margin-bottom: 3rem;
	}
	.service_detail__box{
		padding: 3rem;
	}
	#katachi_spec__list li{
		width: 20%;
		padding: 0 1rem;
	}
	.katachi_spec__box h3{
		padding: 1rem 0;
	}
	#works_header__inner .event_box__details li .works_box__icon{
		width: 3rem;
	}
	#homehug_osusume .service_block__txt li{
		margin: 2rem 0;
	}
	.homehug_menu__box{
		padding: 2rem 0;
		font-size: 1.4rem;
	}
	#homehug_menu__list li{
		padding: 0 1rem;
		margin-bottom: 2rem;
	}
	.homehug_flow__box{
		padding: 3rem 2rem;
	}
	.homehug_flow__txt h3{
		margin: 2rem 0;
	}
	#homehug_flow__list{
		margin-bottom: 8rem;
	}
	#homuhug_line__link{
		margin: 5rem 0 3rem;
	}
	.featured_banner__txt h2{
		font-size: 2.2rem;
	}
	.featured_banner__txt p{
		font-size: 1.4rem;
	}
	#category_header .featured_banner__txt p{
		font-size: 1.8rem;
	}
	#category_header .featured_banner__txt h2{
		font-size: 3rem;
	}
	#category_header__txt{
		font-size: 1.6rem;
	}
	.top_information__inner{
		padding: 4rem 5rem;
	}
	.swiper-thumbnail .swiper-slide{
		width: 25%;
	}
}

@media screen and (min-width: 1200px){
	.btn__header_contact,
	.nav_link{
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1300px){
	#header_logo{
		width: 10rem;
		padding: 0;
	}
	.btn__header_contact,
	.nav_link{
		font-size: 1.3rem;
	}
	.main_navigation > li{
		margin: 0 1.5rem;
	}
	.top_bnr__txt h3{
		font-size: 2.2rem;
	}
	.top_bnr__txt p{
		font-size: 1.2rem;
	}
	.service_section .service_list>li{
		width: 25%;
		margin: 0;
	}
	.service_list__box{
		padding: 3rem 1rem;
	}
	.service_list__box .btn_link{
		width: 85%;
		font-size: 1rem;
	}
	.service_header .service_list__icon{
		width: 24rem;
		height: 24rem;
	}
}


@media (hover: hover) {
	a:hover{
		color: var(--hover);
	}
	.hover_scale:hover{
		scale: 1.05;
	}
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
	.btn__header_contact:hover{
		border: var(--hover) solid 1px;
	}
	#footer_last a:hover,
	#footer_links a:hover{
		color: var(--hover);
	}
	.btn_link:hover{
		color: #fff;
	}
	a:hover .img_clip img{
		scale: 1.1;
	}
	a:hover .btn_link,
	.bnr_event__inner a:hover .btn_link{
		scale: 1.05;
	}
	a.box_shadow:hover{
		box-shadow: 0 8px 10px rgba(0,0,0,.1);
	}
	.service_list__box:hover .service_list__icon,
	.service_list__box:hover .service_list__icon img,
	.service_list__box:hover .btn_link{
		scale: 1.05;
	}
}

.bnr_line,
#top_voice,
#top_concept,
.top_bnrs{
	padding-bottom: 8rem;
}
@media screen and (min-width: 1024px){
	.top_bnrs{
		padding-bottom: 10rem;
	}
}