@charset "utf-8";

/* 
	lastup date: 2026.07.08
*/

/* default
=============================================== */

* {
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html,body,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,table,th,td {
	list-style: none;
	line-height: 1;
	border-collapse: collapse;
	border-spacing: 0;
}
html {
	min-height: 100%;
	font-size: 62.5%; /* font-size 1em = 10px on default browser settings */
	position: relative;
    scroll-behavior: smooth;
}
body {
	font-family: 'M PLUS 1','Noto Sans JP',"Yu Gothic",YuGothic,"メイリオ",Meiryo,Arial,Helvetica,Verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HiraKakuPro-W3","ＭＳ Ｐゴシック","MS PGothic",Sans-serif;
	font-weight: 400;
}
q:before,q:after {
	content:'';
}
object,embed {
	vertical-align: top;
}
img {
	max-width: 100%;
	height: auto;
	max-height: 100%;
	width: auto;
	vertical-align: bottom;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}
img,abbr,acronym,fieldset {
	border: 0;
}


body#vdebugmode::before {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: red;
    pointer-events: none;
    z-index: 99999;
}




/* link
=============================================== */

a {
	color: #333;
	text-decoration: underline;
	transition: .1s ease;
}
a:visited {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #333;
	text-decoration: none;
}
a[id]:hover {
	color: #333;
}
a:active {
	color: #333;
}
a[href^="tel:"] {
    pointer-events: none;
}



/* loading
=============================================== */

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: #FFF;
}
#splash_logo {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 240px;
}
#splash_logo img.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* base
=============================================== */

html {
	background-color: #FFF;
}
body {
	color: #333;
	min-width: 1000px;
	background-color: #FFF;
}
.pc {
	display: block;
}
br.pc {
	display: inline-block;
}
.sp, br.sp {
	display: none;
}
.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.inline-block {
    display: inline-block !important;
}
.lead {
	font-size: 2.4rem !important;
}
.txt-list, .dec-list {
	margin: 1em 0 3em 1.8em;
}
.txt-list li, .dec-list li {
	margin: .5em 0;
	font-size: 1.6rem;
	line-height: 1.8;
}
.txt-list li {
	list-style: circle;
}
.dec-list li {
	list-style: decimal;
}
.ex {
	margin: 1em 0;
}
.exp {
	padding-left:  1em;
	text-indent: -1em;
}
.exp + .exp {
    margin-top: 0;
}
.ex li {
	margin: .5em 0;
	padding-left:  1em;
	text-indent: -1em;
	font-size: 1.6rem;
	line-height: 1.8;
}
.longurl {
	word-break: break-all;
}
.email img {
	height: 20px;
}


/* swiper
=============================================== */

.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* button
=============================================== */

.btn03 {
	margin: 35px 0;
}
.btn-arrow {
	position: relative;
	display: inline-block;
	padding: 15px 35px 15px 15px;
	font-size: 1.6rem;
	text-decoration: none;
	line-height: 1;
	transition: 0.3s ease;
	opacity: 1;
}
.btn-arrow:hover {
	opacity: .6;
}
.btn-bk {
	border: 1px solid #111;
	color: #111;
}
.btn-gd,
.btn-gd:hover {
	background: #AA7D45;
	color: #FFF !important;
}
.btn-gd a {
	color: #FFF;
}
.btn-wt,.btn-wt:hover {
	border: 1px solid #FFF;
	color: #FFF !important;
}
.btn-arrow::after {
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	right: 15px;
	width: 9px;
	height: 14px;
	background-size: 9px 14px;
	transition: 0.3s ease;
}
a:hover.btn-arrow::after {
	right: 10px;
}
.btn-arrow.btn-bk::after {
	background: url(../img/common/arrow_rt_bk.svg) 100% 50% no-repeat;
}
.btn-arrow.btn-wt::after,
.btn-arrow.btn-gd::after {
	background: url(../img/common/arrow_rt_wt.svg) 100% 50% no-repeat;
}

.contact-set01 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}
.contact-set01 .btn-contact a {
	display: inline-block;
	padding: 25px 60px;
	font-size: 2.0rem;
	font-weight: bold;
	text-decoration: none;
    border: 2px solid #111;
	background-color: #111;
    border-radius: 8px;
	color: #FFF;
	transition: .1s ease;
}
.contact-set01 .btn-contact a:hover {
    border: 2px solid #444;
	background-color: #444;
}
.contact-set01 .btn-line a {
    display: inline-block;
    padding: 25px 60px 25px 90px;
    font-size: 2.0rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #06C755;
    background-color: #FFF;
    border-radius: 8px;
    color: #06C755;
    transition: .1s ease;
    background-image: url("../img/common/icon_line.png");
    background-repeat: no-repeat;
    background-size: 40px auto;
    background-position: 25px center;
}
.contact-set01 .btn-line a:hover {
    background-color: #F0F0F0;
}

/* box
=============================================== */

.box01 {
	padding: 25px;
	background-color: #EEE;
	font-size: 2.0rem;
    line-height: 1.6;
	font-weight: bold;
}



/* header
=============================================== */

#global-header {
	margin: 0;
}
#global-header.hide {
	transition: .5s ease;
	transform: translateY(-150px);
}
#header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 20px 120px 20px 60px;
}
#global-header #logo img {
	height: 50px;
}



/* navigation
=============================================== */

#pc-nav {
	display: flex;
	flex-direction: column-reverse;
	display: none;
}
#pc-nav #main-nav {
	display: flex;
}
#pc-nav #main-nav li {
	margin: 0 10px;
}
#pc-nav #main-nav li a {
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 1px;
	color: #111;
	background-position: 0 100%;
}
#pc-nav #main-nav li a:hover {
	transition: .2s ease;
	opacity: .7;
}
#pc-nav #sub-nav {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 10px;
}
#pc-nav #sub-nav li {
	margin: 0 10px;
}
#pc-nav #sub-nav li a {
	padding: 8px 30px 6px;
	border-radius: 15px;
	border-bottom: solid 2px #357FCE;
	font-size: 1.4rem;
	background-color: #3496DC;
	color: #FFF;
}
#pc-nav #sub-nav li a:hover {
	transition: .2s ease;
	opacity: .7;
}
#sp-nav {
	display: block;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #FFF;
	transition: .5s;
}
#sp-nav.hide {
    transform: translateY(-100%);
	transition: .5s;
}
#overlay_menu {
	z-index: 19;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	transition: 0.3s;
	padding-top: 90px;
	visibility: hidden;
	background-color: #FFF;
}
.open #overlay_menu {
	opacity: 1;
	transition: 0.3s;
	visibility: visible;
}
#overlay_btn, #overlay_btn span {
	z-index: 20;
	top: 0;
	right: 0;
	position: fixed;
	transition: 0.3s;
}
#overlay_btn {
	width: 90px;
	height: 90px;
	cursor: pointer;
	background-color: #111;
}
#overlay_btn span {
	position: absolute;
	left: 20px;
	width: 50px;
	height: 2px;
	background-color: #FFF;
	transition: 0.3s;
}
.open #overlay_btn span {
	background-color: #FFF;
} 
#overlay_btn span:nth-of-type(1) { top: 35px;}
#overlay_btn span:nth-of-type(2) { top: 45px;}
#overlay_btn span:nth-of-type(3) { top: 55px;}
.open #overlay_btn span:nth-of-type(1) {
	top: 45px;
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.open #overlay_btn span:nth-of-type(2) {
	opacity: 0;
}
.open #overlay_btn span:nth-of-type(3) {
	top: 45px;
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#overlay_menu #sp-nav-wrap {
	margin-bottom: 20px;
}
#overlay_menu #sp-nav-wrap ul {
	width: 100%;
	margin: 0;
}
#overlay_menu #sp-nav-wrap ul li {
	padding: 10px 0;
	text-align: center;
}
#overlay_menu #sp-nav-wrap ul li#netshop {
	padding-top: 0;
}
#overlay_menu #sp-nav-wrap ul li a {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	color: #111;
}
#overlay_menu #sp-nav-wrap ul li a:hover,
#overlay_menu #sp-nav-wrap ul li.current a {
	color: #999;
}
#overlay_menu #sp-nav-contact {
	margin: 30px 30px 35px;
}
#overlay_menu #sp-nav-contact ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
}
#overlay_menu #sp-nav-contact ul li {
	width: calc(50% - 25px);
	padding: 0;
	text-align: center;
}
#overlay_menu #sp-nav-contact ul li a {
	display: block;
	padding: 25px 15px;
	font-size: 2.0rem;
	font-weight: bold;
	text-decoration: none;
	background-color: #111;
	color: #FFF;
}
#overlay_menu #sp-nav-contact ul li a:hover {
	opacity: .7;
}
#overlay_menu #nav-info {
	margin: 30px 30px 0;
	padding-top: 30px;
	border-top: 1px solid #CCC;
	background-color: #FFF;
}
#overlay_menu #nav-info dl dt {
	margin-bottom: 15px;
	font-size: 1.8rem;
}
#overlay_menu #nav-info dl dd {
	font-size: 1.6rem;
	line-height: 1.8;
}
#overlay_menu #nav-info p#sp-tel {
	margin: 12px 0;
	font-size: 1.6rem;
	line-height: 1.8;
}
#overlay_menu #nav-info p#sp-tel a {
	text-decoration: none;
}
#overlay_menu #sns {
	padding: 0 30px 30px;
	display: flex;
}
#overlay_menu #sns li {
	margin-right: 15px;
	padding: 0;
}
#overlay_menu #sns li img {
	height: 24px;
}
#fixed-side-nav {
	position: fixed;
	right: 0;
	z-index: 99;
}
#fixed-side-nav div {
	margin-top: 3px;
}
#fixed-side-nav div a {
	display: block;
	width: 90px;
	height: 90px;
	font-size: 1.2rem;
	text-align: center;
	text-decoration: none;
	line-height: 90px;
	color: #FFF;
	background: #111;
}



/* footer
=============================================== */

#global-footer {
	background-color: #F0F0F0;
}
#footer-inner  {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: auto;
	padding: 50px 90px 50px 60px;
}
#footer-info {
	width: 50%;
	color: #111;
}
#footer-info dt {
	margin-bottom: 15px;
}
#footer-info dt img {
	height: 30px;
}
#footer-info dd p {
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #111;
}
#footer-info dd p#footer-tel {
	margin-top: 15px;
}
#footer-info dd p#footer-tel a {
	text-decoration: none;
	color: #111;
}
#footer-info dd#footer-sns ul {
	padding: 20px 0 0 0;
	display: flex;
}
#footer-info dd#footer-sns ul li {
	margin-right: 15px;
	padding: 0;
}
#footer-info dd#footer-sns ul li img {
	height: 24px;
}
#footer-info dd#footer-bloglink {
	margin-top: 20px;
}
.fnav {
	width: 25%;
	margin: 0;
}
.fnav li {
	padding-bottom: 20px;
}
.fnav li a {
	font-size: 1.4rem;
	line-height: 1.6;
	text-decoration: none;
	color: #111;
}
.fnav li a:hover {
	color: #999;
}
#copyright {
	width: 100%;
	padding-top: 60px;
	font-size: 1.4rem;
	text-align: center;
	color: #111;
}



/* page
=============================================== */

#page-header {
	position: relative;
	background-size: cover !important;
	min-height: 20vw;
}
#page-header::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	opacity: .5;
}
#page-header.page-about {
	background: url(../img/home/home_about01.jpg) 50% 50% no-repeat;
}
#page-header.page-coordinate {
	background: url(../img/home/home_coordinate01.jpg) 50% 50% no-repeat;
}
#page-header.page-ordercurtain {
	background: url(../img/home/home_ordercurtain01.jpg) 50% 50% no-repeat;
}
#page-header.page-interior {
	background: url(../img/home/home_interior01.jpg) 50% 50% no-repeat;
}
#page-header.page-renovation {
	background: url(../img/home/home_renovation01.jpg) 50% 50% no-repeat;
}
#page-header.page-showcase {
	background: url(../img/home/home_showcase01.jpg) 50% 50% no-repeat;
}
#page-header.page-homestaging {
	background: url(../img/homestaging/homestaging00.jpg) 50% 50% no-repeat;
}
#page-header.page-micscurtain {
	background: url(../img/micscurtain/micscurtain_01pc.jpg) 50% 10% no-repeat;
}
#page-header.page-mics-coordinate {
	background: url(../img/micsoffice/mics01477.jpg) 50% 40% no-repeat;
}
#page-business #page-header {
	background: url(../img/business/business_vis01.jpg) 50% 50% no-repeat;
}

#page-header.page-info,
#page-header.page-staffblog,
#page-header.page-company,
#page-header.page-recruit,
#page-header.page-contact,
#page-header.page-access,
#page-header.page-reserve,
#page-header.page-faq,
#page-header.page-showroom,
#page-header.page-sitemap,
#page-header.page-privacy,
#page-header.page-e404 {
	background: url(../img/page/page_sitemap.jpg) 50% 50% no-repeat;
}
#page-header h1 {
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	padding: 30px 120px 30px 55px;
	background: #FFF;
}
#page-header h1 span {
	font-size: 4.0rem;
	font-weight: 600;
	letter-spacing: .1em;
	color: #111;
}
#page-header-img {
	margin: 60px 90px 0 0;
}
.page-sttl {
	font-size: 2.4rem;
	line-height: 1.8;
	font-weight: 600;
}
.page-sttl02 {
	position: relative;
	margin-bottom: 60px;
	font-size: 3.0rem;
	line-height: 1.8;
	font-weight: 600;
}
.page-sttl02::after {
	content:'';
	position: absolute;
	left: 0;
	bottom: -.75em;
	background: #111;
	width: 10%;
	height: 3px;
}
.sec-ttl {
	font-size: 2.4rem;
	padding-bottom: 15px;
	border-bottom: 1px solid #EEE;
	font-weight: 600;
	line-height: 1.6;
}
p + .sec-ttl,
ul + .sec-ttl {
	margin-top: 50px;
}
.page-contents {
	background: #F0F0F0;
}
.page-contents-inner {
	margin: 0 90px 0 0;
	padding: 60px;
	background: #FFF;
}
.page-contents-txt {
	margin: 60px 0;
    max-width: 1280px;
}
/* インナー中央テスト用 */
.page-contents-inner {
    max-width: 1280px;
    margin: auto;
    padding-right: 90px;
}
/* インナー中央テスト用 */
.page-contents-txt {
	margin: 60px 0;
    max-width: none;
}
.page-contents-inner > .page-contents-txt:first-child {
	margin-top: 0;
}
.page-contents-txt p {
	margin: 30px 0;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
}
.page-contents-img,
.page-contents-img2,
.page-contents-img3,
.page-contents-img4,
.page-contents-img-2c {
	margin: 50px -20px 50px -60px; 
}
.page-contents-img img,
.page-contents-img2 img,
.page-contents-img3 img,
.page-contents-img4 img,
.page-contents-img-2c img {
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}
.page-contents-img2,
.page-contents-img3,
.page-contents-img4,
.page-contents-img-2c {
	display: flex;
}
.page-contents-img2 img:first-child,
.page-contents-img3 img:first-child,
.page-contents-img4 img:first-child {
	margin-left: 60px;
}
.page-contents-img2 img {
	margin: 0 20px 0 0;
}
.page-contents-img3 img {
	margin: 0 20px 0 0;
	width: calc(100% / 3 - 40px);
}
.page-contents-img4 img {
	margin: 0 20px 0 0;
}
.page-contents-img-2c {
	align-items: center;
}
.page-contents-img-2c .cimg {
	flex-shrink: 0;
	margin-left: 60px;
	margin-right: 50px;
	width: calc(100% / 3 - 30px);
}
.row {
	display: flex;
	flex-wrap: wrap;
}
.row .left {
	width: 50%;
	padding-right: 25px;
}
.row .right {
	width: 50%;
	padding-left: 25px;
}

.two-col-fixed {
    display: flex;
    gap: 20px;
    align-items: center;
}

.two-col-fixed .img {
    flex: 0 0 calc((100% - 20px) / 2);
}

.two-col-fixed .text {
    flex: 1;
}

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

@media (max-width: 768px) {
  .two-col-fixed {
    flex-direction: column;
  }
  .two-col-fixed .img {
    flex-basis: auto;
    width: 100%;
  }
}



/* home
=============================================== */

.eye img {
	object-fit: cover;
	object-position: 50% 100%;
	height: 800px;
	width: 100%;
}
.eye.page01 img,
.eye.page02 img {
    height: auto;
}
.hero-wrap {
    position: relative;
    width: 100%;
    height: 700px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-copy {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 60px 0;
    font-family: "Noto Sans JP", sans-serif;
}
.hero-copy p {
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    text-align: left;
    color: #FFF;
}
.hero-copy p span {
    display: block;
    font-size: 3.4rem;
    font-weight: 600;
    text-align:center;
}
.hero-copy p span:nth-of-type(3) {
    padding-bottom: .5em;
}
.hero-link {
    display: flex;
    gap: 0 20px;
    margin-top: 30px;
}
.hero-link a {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    padding: 20px 35px 20px 20px;
    font-size: 2.0rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: .1s ease;
    color: #111;
    background: #FFF;
}
.hero-link a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
	width: 9px;
	height: 14px;
	background-size: 9px 14px;
	transition: 0.3s ease;
	background: url(../img/common/arrow_rt_bk.svg) 100% 50% no-repeat;
}
.hero-link a:hover::after {
	right: 10px;
}



#home-information {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 60px 60px 30px 60px;
	background: #FFF;
}
#home-information #column,
#home-information #news {
    margin: 0 auto;
    max-width: 1200px;
}
#home-information #column {
    margin-bottom: 75px;
}
#home-information #column #column_header,
#home-information #news #news_header {
	margin-bottom: 55px;
}
#home-information #column h2,
#home-information #news h2 {
	font-size: 3.6rem;
    text-align: center;
}
#home-information .post-all {
	margin-top: 50px;
    text-align: center;
}

#home-msg {
	margin: auto;
	padding: 50px 20px 75px;
	max-width: 1200px;
}
#home-msg h2 {
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
}
#home-msg h2 span {
	display: block;
	font-size: 1.6rem;
	font-weight: normal;
	color: #666;
}
#home-msg p {
	margin: 30px 0;
	font-size: 1.6rem;
	line-height: 1.8;
}
#home-msg .home-content-link {
	text-align: center;
}
#instagram-feed {
	margin: auto;
	padding: 50px 20px 100px;
	max-width: 1280px;
    background: #FFF;
}
#instagram-feed h2 {
	text-align: center;
}
:root {
    --instagam-icon-size: 40px;
}
#instagram-feed h2 span {
    position: relative;
    padding-left: calc(var(--instagam-icon-size) * 1.5);
	font-size: 3.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
	font-weight: 500;
	line-height: 1.8;
}
#instagram-feed h2 span::before {
    position: absolute;
    content: "";
    top: calc(50% - (var(--instagam-icon-size)/2) + 2.5px);
    left: 0;
    width: var(--instagam-icon-size);
    height:  var(--instagam-icon-size);
    background: url(../img/common/icon_instagram_gr.png) 0 50% no-repeat;
    background-size: cover;
}



.home-content-l {
	position: relative;
	padding: 0 90px 120px 60px;
	display: flex;
	justify-content: right;
}
.home-content-r {
	position: relative;
	padding: 0 90px 120px 60px;
	display: flex;
	justify-content: left;
	flex-direction: row-reverse;
}
.home-content-l .home-content-text {
	width: 40%;
	margin: 0;
	padding: 0 60px 60px 0;
	background: #FFF;
}
.home-content-r .home-content-text {
	width: calc(45% + 60px);
	margin: 0;
	padding: 0 30px 60px 60px;
	background: #FFF;
}
.home-content-l .home-content-text-header,
.home-content-r .home-content-text-header {
	margin-top: 30px;
	margin-bottom: 30px;
}
.home-content-l .home-content-text-header p,
.home-content-r .home-content-text-header p {
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.6;
}
.home-content-l .home-content-text-body p,
.home-content-r .home-content-text-body p {
	margin: 30px 0;
	font-size: 1.6rem;
	line-height: 1.8;
}
.home-content-l .home-content-fig {
	margin-right: 0;
	width: 60%;
}
.home-content-r .home-content-fig {
	margin-left: -60px;
	width: 55%;
}
.home-content-l .home-content-fig img,
.home-content-r .home-content-fig img {
	height: 100%;
	object-fit: cover;
}
.home-content-l .home-content-text-header p.text-header-stitle,
.home-content-r .home-content-text-header p.text-header-stitle {
	font-size: 3.6rem;
}
.home-content-fig #showcase-list li {
	width: calc((100% / 3) - 3px);
}
.home-content-fig #showcase-list li img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1;
}
.home-for-business {
    position: relative;
    z-index: 1;
    margin: 0 90px 100px 60px;
    height: 350px;
    background: url(../img/micsoffice/mics01475.jpg) no-repeat 50% 50%;
    background-size: cover;
}
.home-for-business::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(rgba(255,255,255,0) 50%, rgba(0,0,0,.5) 100%);
}
.home-for-business a {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: end;
    width: 100%;
    height: 100%;
    padding: 60px 60px 50px 50px;
    text-decoration: none;
}
.home-for-business .home-for-business-ttl {
    position: relative;
    z-index: 4;
    font-size: 2.8rem;
    line-height: 1.4;
    color: #FFF;
}
.home-for-business .home-for-business-ttl span {
    display: block;
    font-weight: 500;
}
.home-for-business .home-for-business-ttl span:first-child {
    font-size: 2.0rem;
    font-weight: 400;
}
.home-for-business .home-for-business-ttl span:last-child {
    padding-right: 25px;
	background: url(../img/common/arrow_rt_wt.svg) 100% 55% no-repeat;
    background-size: auto 20px;
}




.sec-smenu-wrap {
	background: #FFF;
}
.sec-smenu-inner {
	padding: 60px;
	background: #EEE;
}
.sec-smenu {
    max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
    gap: 5px;
}
.sec-smenu li {
	margin: 0;
	width: calc(50% - 5px);
}
.sec-smenu li a {
	display: block;
	padding: 30px;
	font-size: 1.6rem;
	text-decoration: none;
	background: #FFF;
	color: #111;
	transition: .3s;
}
.sec-smenu li a:hover {
	background: #111;
	color: #FFF;
}



.sec-contact {
	background: #000;
}
.sec-contact-inner {
	padding: 120px 90px 120px 90px;
}
.sec-contact-header {
	margin-bottom: 35px;
}
.sec-contact-header p {
	font-size: 5.0rem;
	font-weight: 600;
	color: #FFF;
	text-align: center;
}
.sec-contact-body p {
	font-size: 1.6rem;
	font-weight: 400;
	color: #FFF;
	text-align: center;
}
.sec-contact-btn {
	display: flex;
	justify-content: center;
	margin-top: 35px;
}
.sec-contact-btn li {
	margin: 0 30px;
}


#gmap {
	height: 100px;
}
#gmap.access-map {
	padding-top: 50%;
	margin: 0;
	max-width: none;
}



/* about
=============================================== */

.about-msg-wrap {
	position: relative;
	display: flex;
	align-items: top;
	height: 400px;
	margin-bottom: 120px;
	margin-left: -60px;
}
.about-msg-wrap > .page-contents-txt {
	margin: 0;
	padding-left: 30px;
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.about-msg-wrap .page-contents-txt p {
	font-size: 2.2rem;
	margin: 0;
	width: 100%;
	text-align: center;
}
.about-msg-fig {
	width: 50%;
}
.about-msg-fig img {
	width: 100%;
	object-fit: cover;
}
.about-vt-fig {
	margin: 60px 0 60px -60px;
	display: flex;
	align-items: top;
}
.about-vt-fig li {
	width: 33.33333%
}
.about-vt-fig li:nth-of-type(2) {
	margin-top: 60px;
}
.about-vt-fig li:nth-of-type(3) {
	margin-top: 120px;
}
.about-msg-txt {
	margin: 0 0 60px;
}
.about-msg-txt .st {
	font-size: 3.6rem;
	font-weight: bold;
}
.about-msg-txt p {
	font-size: 1.8rem;
	line-height: 2;
}



/* ordercurtain
=============================================== */

.curtain-slider {
	margin: 0 0 60px -60px;
}
.mics-curtain-slider {
	margin: 0 0 60px 0;
}
.curtain-type {
	margin: 50px 0;
}
.curtain-type .page-contents-img2,
.curtain-type .page-contents-img3,
.curtain-type .page-contents-img4 {
	margin-bottom: 0px !important;
}


/* micscurtain
=============================================== */

#micscurtain-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 60px 90px 0 0;
	height: 80vh;
	background: url(../img/micscurtain/concept02.jpg) 50% 50% no-repeat;
	background-size: cover;
	animation-delay: 0s;
}
#micscurtain-header-txt {
	margin: auto;
	padding: 75px 50px;
	text-align: center;
	background-color: rgba(255,255,255,.75);
	animation-delay: .5s;
}
#micscurtain-header-txt h2 {
	margin: 0 0 0.5em 0;
	font-size: 5.4rem;
	letter-spacing: 2px;
	color: #111;
}
#micscurtain-header-txt p {
	margin: 1em 0 0;
	line-height: 1.8;
	font-size: 2.8rem;
	font-weight: bold;
	color: #111;
}
.micscurtain-photo {
	max-width: 1600px;
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0;
}
.micscurtain-photo img:nth-of-type(1) {
	width: 50%;
	padding-right: 5px;
}
.micscurtain-photo img:nth-of-type(2) {
	width: 50%;
	padding-left: 5px;
}

#micscurtain ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px 0 0;
}
#micscurtain ul li {
	margin: 0 5px 5px 0;
	width: calc((100% / 3) - 5px);
}
.goods-single {
	margin: 35px 0;
	text-align: center;
}
.tab-container {
	margin: 75px auto;
	max-width: 1060px;
}
.tab-group{
	display: flex;
	justify-content: center;
	padding: 0 15px;
	border-bottom: 3px solid #111;
}
.tab {
	width: calc(100%/3 - 30px);
	margin: 0 15px;
	padding: 15px 0 12px;
	background-color: #EEE;
	text-align: center;
	color: #111;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	transition: all 0.2s ease;
	cursor: pointer;
}
.tab:hover,
.tab.tab-active {
	background-color: #111;
	color: #FFF;
}
.panel {
	display: none;
}
.panel.panel-show{
  display: block;
}
.goods-list {
	max-width: 1000px;
	margin: 50px auto;
}
.goods-list ul {
	display: flex;
	flex-wrap: wrap;
}
.goods-list ul li {
	margin: 15px;
	width: calc(33.333% - 30px);
	background-color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
}
.goods-list ul li iframe {
	border: none;
}
.goods-list-flex {
	display: flex;
	flex-wrap: wrap;
	max-width: 1030px;
	margin: 50px auto;
}
.goods-list-flex a {
	text-decoration: underline;
	color: #805C08;
}
.goods-list-flex a:hover {
	text-decoration: none;
}
.goods-list-flex dl {
	margin: 0 15px 15px;
	width: calc(100% / 3 - 30px);
	display: flex;
	flex-wrap: wrap;
	transition: 1s ease;
	opacity: 0;
}
.goods-list-flex dl.fadeIn {
	opacity: 1;
}
.goods-list-flex dl dt {
	margin-bottom: 10px;
	width: 100%;
	position: relative
}
.goods-list-flex dl dt::before {
	content: '';
	display: block;
	padding-top: 100%;
}
.goods-list-flex dl dt img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.goods-list-flex dl dd {
	width: 100%;
	font-size: 0.8rem;
	line-height: 1.6;
	text-align: center;
}
.btn-shop {
	padding: 50px 0;
	text-align: center;
}
.btn-shop a {
	display: inline-block;
	padding: 25px 60px;
	font-size: 2.4rem;
	font-weight: bold;
	text-decoration: none;
	background-color: #111;
	color: #FFF;
	transition: .1s ease;
}
.btn-shop a:hover {
	background-color: #444;
}




/* homestaging
=============================================== */

#homestaging-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 60px 90px 0 0;
	height: 70vh;
	max-height: 600px;
	background: url(../img/homestaging/homestaging01.jpg) 50% 50% no-repeat;
	background-size: cover;
	animation-delay: 0s;
}
#homestaging-header-txt {
	text-align: center;
}
#homestaging-header-txt h2 {
	margin: 0 0 0.5em 0;
	font-size: 8.0rem;
	letter-spacing: 2px;
	text-shadow: #FFF 2px 2px 0;
	color: #111;
	animation-delay: .5s;
}
#homestaging-header-txt p {
	margin: 1em 0;
	line-height: 1.8;
	font-size: 4.0rem;
	font-weight: bold;
	text-shadow: #FFF 1px 1px 0;
	color: #111;
	animation-delay: .8s;
}
#hsprofile {
	max-width: 1200px;
}
#hsprofile .row .left {
	width: 45%;
}
#hsprofile .row .right {
	width: 55%;
}
#hsprofile .row .right p:first-child {
	margin-top: 0;
	font-size: 2.8rem;
	text-align: center;
}
#hsprofile .row .right p:last-child {
	font-size: 2.0rem;
	text-align: center;
}
.homestaging-model {
	margin: 50px 0;
}
.homestaging-model .right h3 {
	font-size: 2.4rem;
}



/* showroom
=============================================== */

.mics-showroom-info {
	display: inline-block;
	border: 3px solid #CCC;
	padding: 0 25px;
}
.mics-showroom-info a.access {
	text-decoration: underline;
}
.mics-showroom-photo {
	max-width: 1600px;
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0;
}
.mics-showroom-photo img {
	width: calc(100% / 4);
}
.showroom-list {
	margin: 35px 0;
}
.showroom-list dl .list-item {
	display: flex;
	max-width: 900px;
	margin-bottom: 35px;
}
.showroom-list dt.list-img {
	width: 200px;
	padding-right: 30px;
}
.showroom-list dt.list-img img {
	object-fit: cover;
	width: 100%;
}
.showroom-list dd.list-info {
	width: 700px;
	font-size: 1.6rem;
	line-height: 1.6;
}
.showroom-list dd.list-info a {
	font-size: 1.7rem;
	font-weight: bold;
}


/* showcase
=============================================== */

#showcase-list {
	display: flex;
	flex-wrap: wrap;
}
#showcase-list li {
	margin: 0 3px 3px 0;
	width: calc(25% - 3px);
}
#showcase-list li img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1;
}
.entry-body .pic2,
.entry-body .showcase-pic2 {
	margin: 25px 0;
	display: flex;
	justify-content: space-between;
}
.entry-body .pic2 picture {
    display: inline;
    margin: 0;
}
.entry-body .pic2 > img,
.entry-body .pic2 picture,
.entry-body .showcase-pic2 img {
 	width: calc(100% / 2 - 12px);
}
.page-turn {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
}
.page-turn div a {
	position: relative;
}
.page-turn div a::after {
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 16px;
	transition: 0.3s ease;
}
.page-turn div.pt-prev a::after {
	left: 0;
	background: url(../img/common/arrow_rt_bk.svg) 100% 50% no-repeat;
}
.page-turn div.pt-next a::after {
	right: 0;
	background: url(../img/common/arrow_lt_bk.svg) 100% 50% no-repeat;
}

/* curtain collection
=============================================== */

.curtaincollection {
	max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
}
.curtaincollection p {
	margin: 0 3px 3px 0;
	width: calc(25% - 3px);
}
.curtaincollection p img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1;
}




/* company
=============================================== */

#company-profile,
.recruit-info {
	margin-bottom: 50px;
	width: 100%;
}
#company-profile th,
.recruit-info th {
	padding: 15px 10px 15px 0;
	width: 180px;
	border-bottom: 1px solid #EEE;
	vertical-align: top;
	text-align: left;
	line-height: 1.8;
	font-size: 1.6rem;
}
#company-profile th span,
.recruit-info th span {
	font-weight: normal;
}
#company-profile td,
.recruit-info td {
	overflow: hidden;
	padding: 15px 0 15px 10px;
	border-bottom: 1px solid #EEE;
	line-height: 1.8;
	font-size: 1.6rem;
}
#company-profile td p,
.recruit-info td p {
	margin-top: 0 !important;
	margin-bottom: 1em;
}
#company-profile td ul,
.recruit-info td ul {
	float: left;
	width: 257px;
}
#company-profile td ul.right,
.recruit-info td ul.right {
	margin-left: 16px
}
#company-profile td ul li,
.recruit-info td ul li {
	margin: 0 0 5px 15px;
	line-height: 1.8;
	list-style: circle;
}
#mics-area {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 25px;
}
#mics-area #area-map {
	padding-right: 50px;
	width: 500px;
}
#mics-area #area-division dl dt {
	display: block;
	margin-top: 25px;
	padding: 15px 15px 14px;
	width: 170px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background-color: #C0AF8C;
	color: #FFF;
}
#mics-area #area-division dl dd {
	padding: 15px 0 15px 15px;
	font-size: 1.6rem;
	line-height: 1.6;
}
.brand-logo {
	margin: 50px 0;
}
.brand-logo img {
	max-width: 300px;
}


/* access
=============================================== */

.access-map {
	position: relative;
	margin: 0 0 30px;
	max-width: 800px;
	padding-top: 45%;
}
.access-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* contact
=============================================== */

#contact .inner {
	margin: auto;
	max-width: 1000px;
}
#contact .faq {
	margin-bottom: 75px;
}
#contact .faq dl.faq-list {
	margin: 30px auto;
	padding-bottom: 30px;
	max-width: 900px;
	border-bottom: 1px dotted #CCC;
}
#contact .faq dl.faq-list dt,
#contact .faq dl.faq-list dd {
	display: flex;
	align-items: top;
	padding: 0 0 0 45px;
	position: relative;
	font-size: 1.6rem;
	line-height: 1.8;
}
#contact .faq dl.faq-list dt::before,
#contact .faq dl.faq-list dd::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
}
#contact .faq dl.faq-list dt::before {
	background: url(../img/contact/icon_q.svg) 0 0 no-repeat;
}
#contact .faq dl.faq-list dd::before {
	background: url(../img/contact/icon_a.svg) 0 0 no-repeat;
}
#contact .faq dl.faq-list dt {
	margin-bottom: 20px;
	font-weight: bold;
}


/* faq
=============================================== */

.faq p {
	margin: 0 !important;
}
.faq .faq-item {
	margin-bottom: 35px;
	padding-bottom: 34px;
	border-bottom: 1px solid #CCC;
}
.faq .faq-title {
	margin-bottom: 20px;
}
.faq .faq-title span,
.faq .faq-body span {
	display: inline-block;
	margin: 0 15px 15px 0;
	width: 30px;
	height: 30px;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	background-color: #111;
	color: #FFF;
}



/* form
=============================================== */

.form {
	margin-bottom: 75px;
}
.formbox .formbox-ttl {
    margin: 50px 0;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
}
.formbox > .formbox-ttl:first-of-type {
    margin-top: 0;
}
.formbox .formbox-txt {
    margin: 30px 0;
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
}
.form-box .form-item {
	display: flex;
	align-items: flex-start;
    gap: 0 30px;
	margin: 0 auto 30px;
	max-width: 900px;
	padding-bottom: 30px;
	border-bottom: 1px solid #CCC;
}
.form-box .form-item .form-title {
    flex: 0 0 250px;
	display: flex;
	align-items: flex-start;
    gap: 0 10px;
	margin-bottom: 20px;
	font-size: 1.8rem;
    line-height: 1.6;
}
.form-box .form-item .form-title span {
    flex: 0 0 auto;
	padding: 3px 5px 4px;
	font-size: 1.4rem;
	background-color: #3496DC;
	color: #FFF;
}
.form-box .form-item .form-title span.must {
	background-color: #C00;
}
.form-box .form-item .form-body {
	flex: 1 1 auto;
	font-size: 1.8rem;
}
.form-box .form-item .form-body .form-body-sub-item {
    margin-bottom: 25px;
}
.form-box .form-item .form-body .form-body-sub-item:last-child {
    margin-bottom: 0;
}

.form-box .form-item .form-body p {
	margin: 0 0 15px;
	font-size: 1.6rem;
	line-height: 1.6;
}
.form-box .form-item .form-body .other01 {
	margin: 15px 0 0;
}
.form-box .form-item .form-body .other01 input {
	border: 1px solid #DDD;
	border-radius: 4px;
	background: #FFF;
	padding: 8px;
	width: 50%;
	font-size: 1.8rem;
}
.form-box .form-item .form-body.f-address dl {
	margin: 15px 0;
	display: flex;
	align-items: center;
}
.form-box .form-item .form-body.f-address dl dt {
	flex-shrink: 0;
	padding-right: 10px;
}
.form-box .form-item .form-body.f-address dl dd {
	width: 100%;
}
.form-box .form-item .form-body.f-name input,
.form-box .form-item .form-body.f-email input,
.form-box .form-item .form-body.f-address input,
.form-box .form-item .form-body.f-tel input,
.form-box .form-item .form-body.f-txt input,
.form-box .form-item .form-body span.f-txt input,
.form-box .form-item .form-body.f-message textarea,
.form-box .form-item .form-body span.f-message textarea {
	border: 1px solid #DDD;
	border-radius: 4px;
	background: #FFF;
	padding: 8px;
	width: 100%;
	font-size: 1.8rem;
}
.form-box .form-item .form-body.f-size input,
.form-box .form-item .form-body span.f-size input {
	border: 1px solid #DDD;
	border-radius: 4px;
	background: #FFF;
	padding: 8px;
	font-size: 1.8rem;
}
.form-box .form-item .form-body.f-size input[type="number"] {
    width: 5em;
}
.form-box .form-item .form-body.f-checkbox input[type="checkbox"],
.form-box .form-item .form-body.f-select select {
	border: 1px solid #DDD;
	border-radius: 4px;
	background: #FFF;
	padding: 8px;
	font-size: 1.8rem;
}
.form-box .form-item .form-body.f-checkbox .wpcf7-list-item {
    margin: 20px 0;
}
.form-box .form-item .form-body.f-checkbox .wpcf7-list-item.first {
    margin-top: 0;
}
.form-box .form-item .form-body.form-calendar select ,
.form-box .form-item .form-body.form-time select {
	padding: 5px;
	font-size: 1.8rem;
}
.form-box .form-item .form-body.f-message textarea {
	border: 1px solid #DDD;
	border-radius: 4px;
	background: #FFF;
	padding: 8px;
	width: 100%;
	height: 10em;
	font-size: 1.8rem;
}
.form-box .form-item .mf-item-list li {
	margin-bottom: 10px;
}
.form-box .form-item .mf-item-list li label input[type="checkbox"] {
	margin-right: 5px;
}
.form-box .form-item .form-body.f-size span,
.form-box .form-item .form-body.f-file span {
	display: inline-block;
    margin-top: 15px;
}
.form-box .form-item .form-body.f-size span:first-child,
.form-box .form-item .form-body.f-file span:first-child {
    margin-top: 0;
}



.submit {
	margin: 50px 0;
	max-width: 900px;
	text-align: center;
}
.submit button {
	width: 100%;
	max-width: 450px;
	margin: auto;
	padding: 20px 0 18px;
	border: none;
	font-size: 1.8rem;
	background-color: #000;
	color: #FFF;
	cursor: pointer;
}
.submit button:hover {
	transition: .2s ease;
	opacity: .7;
}



.con-ex {
    margin-bottom: 20px;
}
.con-ex-item {
    border-top: 1px solid #CCC;
    padding-top: 12px;
    margin-bottom: 12px;
    font-size: 1.6rem;
}
.con-ex-item dt {
    position: relative;
    font-weight: 500;
    line-height: 1.6;
    cursor: pointer;
}
.con-ex-item dt::before {
    content: "＋";
    display: block;
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}
.con-ex-item dt.active::before {
    content: "－";
}
.con-ex-item dd {
    display: none;
    padding-top: 5px;
}
.con-ex-item dd ul {
    padding-left: 18px;
}
.con-ex-item dd ul li {
    margin-bottom: 3px;
    padding-left: 5px;
    list-style: disc;
    line-height: 1.6;
}

.cdocter-ex {
    width: 100%;
    margin-bottom: 20px;
}
.cdocter-ex-item {
    font-size: 1.6rem;
}
.cdocter-ex-item dt p {
    margin: 0 !important;
}
.cdocter-ex-item dt {
    padding: 8px 10px 8px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    background-color: #DDD;
}
.cdocter-ex-item dt span {
    position: relative;
    cursor: pointer;
}

.cdocter-ex-item dt span::before {
    content: "[＋]";
    display: block;
    position: absolute;
    top: calc(50% - 1.0rem);
    right: -50px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}
.cdocter-ex-item dt.active span::before {
    content: "[－]";
}
.cdocter-ex-item dd {
    display: none;
    padding-top: 15px;
}
.cdocter-ex-item dd .meas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cdocter-ex-item dd div.measbox {
    width: calc(100% / 2 - 10px);
}
.cdocter-ex-item dd div.measbox.full {
    width: 100%;
}
.cdocter-ex-item dd p {
    margin-bottom: 1em;
    font-size: 1.6rem;
    line-height: 1.6;
}
#baguetteBox-overlay .full-image figcaption {
    font-size: 1.6rem;
    color: #FFF !important;
}

/* sitemap
=============================================== */

#sitemap {
	margin: 0 0 0 25px
}
#sitemap li {
	margin-bottom: 30px;
	font-size: 1.8rem;
	line-height: 1.8;
	list-style: disc;
}
#sitemap li ul {
	margin: 30px 0 0 30px;
}
#sitemap li ul li {
	list-style: circle;
}
#sitemap li a:hover {
	opacity: .7;
}
#sitemap li > a {
	font-weight: bold;
}
#sitemap li ul li > a {
	font-weight: normal;
}

/* info / news / blog
=============================================== */

#info {
    margin: 0;
    padding: 60px;
    background: #FFF;
}
#info .inner {
    max-width: 1200px;
    margin: 0 auto;
}
#blog {
	background: #FFF;
}
#blog .inner {
	padding: 90px 90px 120px 60px;
}
#blog-subtitle {
	margin-bottom: 35px;
	font-size: 2.8rem;
	text-align: center;
	color: #111;
}
.sub-title {
	margin-top: 20px;
	font-size: 2.0rem;
	font-weight: normal;
	color: #111;
}
.category-list-title {
    margin-bottom: 50px;
    font-size: 2.0rem;
    font-weight: bold;
    color: #111;
}
.staffblog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 285px));
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1200px;
}
.staffblog-list li.ready {
	font-size: 1.6rem;
}
.staffblog-list li.no-post {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.6;
}
.staffblog-list .post-thumbnail img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	aspect-ratio: 1;
}
.staffblog-list .post-date {
	margin-top: 15px;
	font-size: 1.2rem;
	color: #999;
}
.staffblog-list .post-title {
	margin-top: 15px;
	font-size: 1.6rem;
    font-weight: 600;
	line-height: 1.6;
}
.staffblog-list .post-title a {
	text-decoration: none;
}
.staffblog-list li:hover {
	transition: .2s ease;
	opacity: .7;
}
.btn-more {
    margin: 30px 0;
    text-align: center;
}
.btn-more a {
	display: inline-block;
	padding: 25px 60px;
	font-size: 2.0rem;
	font-weight: bold;
	text-decoration: none;
    border: 2px solid #111;
	background-color: #111;
    border-radius: 8px;
	color: #FFF;
	transition: .1s ease;
}
.btn-more a:hover {
    border: 2px solid #444;
	background-color: #444;
}

.entry-box {
	margin: 0 0 100px;
	max-width: 1000px;
}
.entry-meta {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
	margin: 0 0 25px;
}
.entry-date time {
    padding: 3px 12px;
	font-size: 1.6rem;
    background: #FFF;
}
.entry-category {
    display: flex;
    gap: 8px;
}
.entry-category span {
    padding: 3px 12px;
    font-size: 1.6rem;
    background: #EEE;
    color: #111;
}
.entry-category span a {
    text-decoration: none;
}
.entry-title {
	margin-bottom: 35px;
}
.entry-title h1 {
	font-size: 2.4rem;
	line-height: 1.5;
}
.entry-title a {
	text-decoration: none;
}
.entry-body p {
	margin: 1.5em 0;
	font-size: 1.6rem;
	line-height: 1.6;
}
.entry-body p img {
	width: 100%;
	max-width: 1200px;
}
.entry-body picture {
    display: block;
    margin: 25px 0;
}
.entry-body .youtube {
	position: relative;
	width: 100%;
	max-width: 1200px;
}
.entry-body .youtube::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 56.25%;
}
.entry-body .youtube iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
.btn-back {
    margin: 75px 0 50px;
	font-size: 1.6rem;
}
.entry-body .blog-clm2 {
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
}
.entry-body .blog-clm2 img {
	width: calc(100% / 2 - 15px);
}
#error {
	padding: 50px 0;
}
#error p {
	margin: 1.5em 0;
	font-size: 1.6rem;
	line-height: 1.8;
	text-align: center;
}

.entry-cta {
    margin-top: 50px;
}
.entry-cta a {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    padding: 20px 40px 20px 20px;
    font-size: 2.0rem;
    text-decoration: none;
    line-height: 1;
    transition: .1s ease;
    color: #FFF;
    background: #111;
}
.entry-cta a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
	width: 9px;
	height: 14px;
	background-size: 9px 14px;
	transition: 0.3s ease;
	background: url(../img/common/arrow_rt_wt.svg) 100% 50% no-repeat;
}
.entry-cta a:hover::after {
	right: 10px;
}
.entry-cta a br {
    display: none;
}

/* blog-side
=============================================== */

.side-area {
	margin-bottom: 50px;
}
.side-title {
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 2px solid #CCC;
	font-size: 1.8rem;
	font-weight: bold;
	color: #111;
}
.side-menu-list {
	display: flex;
	flex-wrap: wrap;
}
.side-menu-list li {
	width: 50%;
	margin: 0 0 10px;
	padding: 0 5px;
	font-size: 1.6rem;
	line-height: 1.6;
}



/* pager
=============================================== */

.pager {
	padding: 35px 0;
}
.pager a,
.pager span {
	display: inline-block;
	margin: 0 8px;
	font-size: 1.6rem;
	color: #111;
	text-decoration: none;
}
.pager a:hover {
	transition: 0.2s;
	color: #666;
}
.pager .current {
	color: #111;
	text-decoration: underline;
}



/* mics office 
=============================================== */

#mics-coordinate-eye {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1600px;
}
#mics-coordinate-eye img {
	position: relative;
	z-index: 2;
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}
#mics-coordinate-eye figcaption {
	position: absolute;
	z-index: 3;
	width: 60%;
	padding: 35px 0;
	font-size: 3.6rem;
	font-weight: bold;
	color: #000;
	line-height: 1.7;
	text-align: center;
	background: rgba(255,255,255,0.8);
}
.pmc .page-contents-txt {
	max-width: 1600px;
}
p.pmc-txt01 {
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
}
p.pmc-txt02 {
	font-size: 2.4rem;
	line-height: 2;
	text-align: center;
}
p.pmc-txt02 b {
	font-size: 2.8rem;
}
p.pmc-txt03 {
	font-size: 2.8rem;
	font-weight: bold;
}
.before-after {
	margin-bottom: 50px;
}
.before-after .ba-item {
	margin-bottom: 30px;
}
.before-after dt {
	margin-bottom: .75em;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.6;
}
.before-after dt span {
	background: linear-gradient(transparent 60%, #FFFE7F 60%);
}
.before-after dd {
	font-size: 1.6rem;
	line-height: 1.6;
}
.pmc-list {
	margin: 0 0 50px 30px;
}
.pmc-list li {
	margin-bottom: 5px;
	font-size: 1.6rem;
	line-height: 1.6;
	list-style: circle;
}
p.pmc-txt04 {
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}
.imgbox_pt01 {
	display: flex;
	flex-wrap: wrap;
}
.imgbox_pt01 p {
	width: 80%;
}
.imgbox_pt01 p:nth-of-type(odd) {
	margin-left: 0;
}
.imgbox_pt01 p:nth-of-type(even) {
	margin-left: 20%;
}
.imgbox_pt02 {
	margin: 50px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.imgbox_pt02 p {
	margin: 0;
	width: calc(50% - 15px);
}
.imgbox_pt02 p:nth-of-type(even) {
	margin-top: 100px;
}
.imgbox_pt03 {
	display: flex;
	flex-wrap: wrap;
}
.imgbox_pt03 p {
	width: 80%;
}
.imgbox_pt03 p:nth-of-type(1) {
	margin-left: 10%;
}
.imgbox_pt03 p:nth-of-type(2) {
	margin-right: 20%;
}
.imgbox_pt03 p:nth-of-type(3) {
	margin-left: 20%;
}
.imgbox_pt04 {
	display: flex;
	flex-wrap: wrap;
}
.imgbox_pt04 p {
	margin: 10px !important;
	width: calc(25% - 20px);
}


/* sub page
=============================================== */

#not-found {
	padding: 100px 0;
}
#not-found p {
	margin: 30px 0;
	font-size: 1.8rem;
	line-height: 1.8;
	text-align: center;
}



/* widget
=============================================== */

.widgettitle {
	margin-bottom: 10px;
	padding: 15px 0 14px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background-color: #CCC;
	color: #111;
}



/* margin
=============================================== */

.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt25 { margin-top: 25px !important; }
.mt30 { margin-top: 30px !important; }
.mt35 { margin-top: 35px !important; }
.mt40 { margin-top: 40px !important; }
.mt45 { margin-top: 45px !important; }
.mt50 { margin-top: 50px !important; }

.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb45 { margin-bottom: 45px !important; }
.mb50 { margin-bottom: 50px !important; }

/* radius
=============================================== */

.radx2 { border-radius: 2px !important; }
.radx4 { border-radius: 4px !important; }
.radx6 { border-radius: 6px !important; }
.radx8 { border-radius: 8px !important; }
.radx10 { border-radius: 10px !important; }
.radx25 { border-radius: 25px !important; }
.radx100 { border-radius: 100% !important; }

/* table press CSS
=============================================== */

.table01 {
	margin: 0 0 35px;
	width: 100%;
	padding-top: 3px;
	background: url(../img/common/dot2x02.png) repeat-x 0 0;
}
.table01 tr {
	background: url(../img/common/dot2x02.png) repeat-x 0 100%;
}
.table01 tbody th,
.table01 tbody td {
	padding: 15px 0 13px;
	font-size: 1.4rem;
	line-height: 1.6;
}
.table01 tbody th {
	width: 150px;
	vertical-align: top;
}


.table-type01 {
	margin: 30px 0;
}
.table-type01 tbody th,
.table-type01 tbody td {
	padding: 15px 0 13px;
	font-size: 1.4rem;
	line-height: 1.6;
	border: none !important;
}
.table-type01 tbody tr {
	border-bottom: 1px dotted #CCC;
}
.table-type01 tbody tr:last-child {
	border: none;
}
.table-type01 .column-1 {
	padding-right: 25px;
}



/* ===============================================
Set tablet 1024px
=============================================== */

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

/* header
=============================================== */

#header-inner {
	display: block;
	margin: 0;
	padding: 20px 0 20px 60px;
	width: auto;
}
#global-header #logo img.pc {
	display: inline-block;
}



/* navigation
=============================================== */

#pc-nav {
	display: none;
}
#overlay_menu #sp-nav-contact ul li a {
	padding: 20px 15px;
}



/* footer
=============================================== */

#footer-inner  {
	padding: 50px 60px;
}
#footer-info {
	width: 50%;
}
#footer-info dd p {
	font-size: 1.4rem;
}
#copyright {
	padding-top: 50px;
}



/* page
=============================================== */

body {
	min-width: 100%;
}
.totop {
	margin: 0 0 50px 0;
	text-align: center;
}
#page-header {
	min-height: 30vw;
}
#page-header h1 span {
	font-size: 3.6rem;
}
#page-header.page-mics-coordinate {
	background: url(../img/micsoffice/mics01477.jpg) 50% 50% no-repeat;
}
.h2-01 {
	font-size: 2.4rem;
}
.h2-01 span {
	padding-left: 1em;
	font-size: 1.6rem;
}
.h2-02 {
	font-size: 2.0rem;
	color: #111;
	text-align: center;
}
.h2-02 span {
	display: block;
	padding-top: 14px;
	font-size: 1.6rem;
	color: #999;
}
.h2-03 {
	font-size: 2.4rem;
}
.h3-01,
.content-area h3 {
	margin: 1em 0;
	font-size: 2.0rem;
	color: #111;
}
.h4-01 {
	margin: .75em 0;
	font-size: 1.8rem;
}

.btn01 {
	padding: 0 0 35px;
	text-align: center;
}
.btn01 a {
	display: inline-block;
	min-width: 240px;
	padding: 15px 20px;
	border-radius: 2px;
	font-size: 1.8rem;
	font-weight: bold;
	background-color: #111;
	color: #FFF;
}
.btn01 a:hover {
	opacity: 0.7;
	transition: .1s ease;
}
.btn02 {
	padding: 0 0 35px;
	text-align: center;
}
.btn02 a {
	display: block;
	min-width: auto;
	padding: 12px 18px;
	border-radius: 25px;
	font-size: 1.4rem;
}
.btn02 a:hover {
	opacity: 0.7;
	transition: .1s ease;
}
.btn-back {
	margin: 50px 0;
}
.btn-back:hover {
	opacity: 0.7;
	transition: .1s ease;
}
.clm2 {
	display: flex;
}
.clm2 .clm2-left {
	padding-right: 15px;
	width: 50%;
}
.clm2 .clm2-right {
	padding-left: 15px;
	width: 50%;
}
.txtbox01 p {
	margin: 1em 0;
	font-size: 1.6rem;
	line-height: 1.6;
}
.txtbox01 > p {
	margin-top: 0;
}
.page-contents-img,
.page-contents-img2,
.page-contents-img3,
.page-contents-img4,
.page-contents-img-2c {
	margin: 35px -30px 35px -60px; 
}
.page-contents-img2 img {
	margin: 0 15px 0 0;
	width: calc(100% / 2 - 15px);
}
.page-contents-img3 img {
	margin: 0 15px 0 0;
	width: calc(100% / 3 - 40px);
}
.page-contents-img4 img {
	margin: 0 15px 0 0;
	width: calc(100% / 4 - 15px);
}
.page-contents-img-2c .cimg {
	margin-left: 60px;
	margin-right: 30px;
	width: calc(100% / 3 - 30px);
}
.page-contents-img-2c .ctxt {
	margin-right: 15px;
}





/* home
=============================================== */

.home-content-l .home-content-text-header p,
.home-content-r .home-content-text-header p {
	font-size: 3.6rem;
}
.home-content-l .home-content-text-header p.text-header-stitle,
.home-content-r .home-content-text-header p.text-header-stitle {
	font-size: 2.4rem;
}



/* micscurtain
=============================================== */

#micscurtain-header-txt h2 {
	font-size: 4.0rem;
}
#micscurtain-header-txt p {
	font-size: 2.0rem;
}



/* homestaging
=============================================== */

#homestaging-header-txt h2 {
	font-size: 4.0rem;
}
#homestaging-header-txt p {
	font-size: 2.4rem;
}
#hsprofile .row .left,
#hsprofile .row .right {
	padding: 0;
	width: 100%;
}
#hsprofile .row .right p:first-child {
	margin-top: 35px;
	font-size: 2.4rem;
}
#hsprofile .row .right p:last-child {
	font-size: 1.8rem;
}
.homestaging-model {
	margin: 50px 0;
}
.homestaging-model .right h3 {
	margin: 35px 0;
	font-size: 2.0rem;
}
.homestaging-model .row .left,
.homestaging-model .row .right {
	padding: 0;
	width: 100%;
}


/* about
=============================================== */

.about-msg-wrap .page-contents-txt p {
	font-size: 1.8rem;
}


/* access
=============================================== */

.access-map {
	padding-top: 55%;
}



/* news / blog
=============================================== */

.sub-title {
	font-size: 2.0rem;
}
.staffblog-list {
    grid-template-columns: repeat(3, 1fr);
	max-width: none;
}
.entry-body p img {
	max-width: 100%;
}



/* blog-side
=============================================== */

.side-area {
	margin-bottom: 50px;
}
.side-title {
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 2px solid #CCC;
	font-size: 1.8rem;
	font-weight: bold;
	color: #111;
}
.side-menu-list {
	display: flex;
	flex-wrap: wrap;
}
.side-menu-list li {
	width: 50%;
	margin: 0 0 10px;
	padding: 0 5px;
	font-size: 1.6rem;
	line-height: 1.6;
}



/* pager
=============================================== */

.pager {
	padding: 35px 0;
}
.pager a,
.pager span {
	font-size: 1.4rem;
}

}



/* ===============================================
Set smartphone 767px
=============================================== */

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

/* link
=============================================== */

a[href^="tel:"] {
    pointer-events: auto;
}



/* base
=============================================== */

body {
	min-width: 100%;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	height: auto;
}
.pc, br.pc {
	display: none;
}
.sp {
	display: block;
}
br.sp {
	display: inline-block;
}
.txt-list, .dec-list {
	margin: 1em 0 3em 1.8em;
}
.txt-list li, .dec-list li {
	margin: .5em 0;
	font-size: 1.4rem;
}
.txt-list li {
	list-style: circle;
}
.dec-list li {
	list-style: decimal;
}
.lead {
	font-size: 1.8rem !important;
}
.ex {
	margin: 1em 0;
}
.ex li {
	margin: .5em 0;
	padding-left:  1em;
	text-indent: -1em;
	font-size: 1.4rem;
	line-height: 1.8;
}



/* button
=============================================== */

.contact-set01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    padding: 0 20px;
}
.contact-set01 .btn-contact a {
	display: block;
	padding: 25px 20px;
	font-size: 1.8rem;
    text-align: center;
}
.contact-set01 .btn-contact a:hover {
    border: 2px solid #444;
	background-color: #444;
}
.contact-set01 .btn-line a {
    display: block;
    padding: 25px 20px;
	font-size: 1.8rem;
    text-align: center;
    background-image: url("../img/common/icon_line.png");
    background-repeat: no-repeat;
    background-size: 40px auto;
    background-position: 25px center;
}
.contact-set01 .btn-line a:hover {
    background-color: #F0F0F0;
}


/* box
=============================================== */

.box01 {
	padding: 20px 10px;
	font-size: 1.6rem;
	line-height: 1.6;
}


/* header
=============================================== */

#header-inner {
	padding: 20px 120px 20px 20px;
}
#global-header #logo img {
	height: 20px;
}
#global-header #logo img.pc {
	display: none;
}

/* navigation
=============================================== */

#sp-nav {
	display: block;
}
#overlay_menu {
	z-index: 19;
	padding-top: 60px;
}
#overlay_btn, #overlay_btn span {
	z-index: 20;
}
#overlay_btn {
	width: 60px;
	height: 60px;
}
#overlay_btn span {
	left: 20px;
	width: 20px;
	height: 2px;
}
#overlay_btn span:nth-of-type(1) { top: 24px;}
#overlay_btn span:nth-of-type(2) { top: 30px;}
#overlay_btn span:nth-of-type(3) { top: 36px;}
.open #overlay_btn span:nth-of-type(1) {
	top: 30px;
}
.open #overlay_btn span:nth-of-type(3) {
	top: 30px;
}
#overlay_menu #sp-nav-wrap ul li {
	padding: 10px 0;
}
#overlay_menu #sp-nav-wrap ul li#netshop {
	padding-top: 0;
}
#overlay_menu #sp-nav-wrap ul li a {
	font-size: 1.6rem;
}
#overlay_menu #sp-nav-contact {
	margin: 25px 30px 25px;
}
#overlay_menu #sp-nav-contact ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
}
#overlay_menu #sp-nav-contact ul li {
	width: calc(50% - 10px);
}
#overlay_menu #sp-nav-contact ul li a {
	padding: 15px 15px 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
#overlay_menu #nav-info dl dt {
	font-size: 1.6rem;
}
#overlay_menu #nav-info dl dd {
	font-size: 1.4rem;
}
#overlay_menu #nav-info p#sp-tel {
	margin: 15px 0;
}
#overlay_menu #sns li img {
	height: 30px;
}
#fixed-side-nav {
    display: none;
	position: fixed;
	right: 0;
	z-index: 99;
}
#fixed-side-nav div {
	margin-top: 1px;
}
#fixed-side-nav div a {
	width: 60px;
	height: 60px;
	font-size: 1.0rem;
	line-height: 60px;
}

/* footer
=============================================== */

#footer-inner  {
	padding: 50px 30px 50px 30px;
}
#footer-info {
	width: 100%;
}
#footer-info dt img {
	height: 30px;
}
.fnav {
	display: none;
}
#copyright {
	font-size: 1.4rem;
}

/* page
=============================================== */

body {
	min-width: 100%;
}
#page-header {
	min-height: 50vw;
}
#page-header h1 {
	padding: 15px 15px 15px 20px;
}
#page-header h1 span {
	font-size: 2.2rem;
    line-height: 1.6;
}
#page-header-img {
	margin: 30px 0 0 0;
}
#page-header-img img {
	object-fit: cover;
	height: 70vh;
}
.page-sttl {
	font-size: 1.8rem;
	font-weight: 600;
}
.page-sttl02 {
	margin-bottom: 30px;
	font-size: 2.0rem;
}
.page-sttl02::after {
	bottom: -.75em;
	width: 10%;
	height: 2px;
}
.sec-ttl {
	font-size: 1.8rem;
	font-weight: 600;
}
.page-contents {
	padding-bottom: 60px;
	padding-bottom: 0px;	
	background: #F0F0F0;
}
.page-contents-inner {
	margin: 0;
	padding: 30px 20px;
	background: #FFF;
}
.page-contents-txt {
	margin: 35px 0;
    max-width: none;
}
.page-contents-txt p {
	margin: 20px 0;
	font-size: 1.4rem;
}
article > .page-contents:last-child {
	padding-bottom: 0;
}
.page-contents-img,
.page-contents-img2,
.page-contents-img3,
.page-contents-img4,
.page-contents-img-2c  {
	margin: 25px 0 0 0; 
	flex-wrap: wrap;
}
.page-contents-img img,
.page-contents-img2 img,
.page-contents-img3 img,
.page-contents-img4 img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
}
.page-contents-img2 img:first-child,
.page-contents-img3 img:first-child,
.page-contents-img4 img:first-child {
	margin-left: 0;
}
.page-contents-img2 img,
.page-contents-img3 img {
	margin: 0 0 20px 0;
	width: 100%;
}
.page-contents-img4 img {
	margin: 0 10px 10px 0;
	width: calc(100% / 2 - 10px);
}
.page-contents-img-2c .cimg {
	margin: 0 0 20px 0;
	width: 100%;
}
.page-contents-img-2c .ctxt {
	margin-right: 20px;
	width: 100%;
}

#page-header.page-renovation + #page-header-img img {
    object-fit: cover;
    height: auto;
}

/* home
=============================================== */

.eye {
	border-bottom: 1px solid #FFF;
}
.eye img {
	object-fit: cover;
	object-position: 50% 50%;
	height: auto;
	width: 100%;
}
.hero-wrap {
    height: 70vh;
}
.hero-copy {
    justify-content: flex-end;
    padding: 0 15px 20px;
    gap: 25px 0;
}
.hero-copy p {
    line-height: 1.4;
    text-align: center;
}
.hero-copy p span {
    display: inline-block;
    font-size: 2.0rem;
    letter-spacing: -0.05em;
    font-weight: 500;
}
.hero-copy p span:nth-of-type(1),
.hero-copy p span:nth-of-type(2),
.hero-copy p span:nth-of-type(3) {
    display: inline;
}
.hero-copy p span:nth-of-type(4) {
    padding-top: 15px;
}
.hero-link {
    margin-top: 0;
    gap: 15px;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.hero-link a {
    display: block;
    padding: 15px;
    font-size: 1.4rem;
    font-weight: bold;
}
.hero-link a::after {
    display: none;
}


#home-information {
	margin: 0;
	padding: 50px 20px;
}
#home-information #column #column_header,
#home-information #news #news_header {
	margin-bottom: 30px;
}
#home-information #column h2,
#home-information #news h2 {
	margin: 0;
	font-size: 2.4rem;
}
#home-information .staffblog-list {
	margin: 0;
}
#home-msg {
	margin: auto;
	padding: 35px 20px 50px;
	max-width: none;
}
#home-msg h2 {
	font-size: 2.4rem;
}
#home-msg h2 span {
	font-size: 1.4rem;
}
#home-msg p {
	margin: 30px 0;
	font-size: 1.4rem;
}

#instagram-feed {
	margin: auto;
	padding: 25px 20px 50px;
	max-width: none;
}
#instagram-feed h2 {
	text-align: center;
}
:root {
    --instagam-icon-size-sp: 40px;
}
#instagram-feed h2 span {
    position: relative;
    padding-left: calc(var(--instagam-icon-size-sp) * 1.5);
	font-size: 2.8rem;
}
#instagram-feed h2 span::before {
    position: absolute;
    content: "";
    top: calc(50% - (var(--instagam-icon-size-sp)/2) + 1.5px);
    left: 0;
    width: var(--instagam-icon-size-sp);
    height:  var(--instagam-icon-size-sp);
    background: url(../img/common/icon_instagram_gr.png) 0 50% no-repeat;
    background-size: cover;
}

#home-msg .home-content-link {
	text-align: left;
}
.home-content-l,
.home-content-r {
	padding: 0 0 60px 0;
	flex-wrap: wrap;
	justify-content: flex-start;
	flex-direction: column-reverse;
}

.home-content-l .home-content-text,
.home-content-r .home-content-text {
	width: 100%;
	margin: 0;
	padding: 0 20px 0 20px;
}
.home-content-l .home-content-text-header,
.home-content-r .home-content-text-header {
	margin-top: 30px;
	margin-bottom: 30px;
}
.home-content-l .home-content-text-header p,
.home-content-r .home-content-text-header p {
	font-size: 2.4rem;
}
.home-content-l .home-content-text-body p,
.home-content-r .home-content-text-body p {
	margin: 30px 0;
	font-size: 1.4rem;
}
.home-content-l .home-content-fig,
.home-content-r .home-content-fig {
	margin: 0;
	width: 100%;
}
.home-content-l .home-content-fig img,
.home-content-r .home-content-fig img {
	height: auto;
	min-height: 70vh;
}
.home-content-l .home-content-fig img.wide,
.home-content-r .home-content-fig img.wide {
	height: auto;
	min-height: auto;
}
.home-content-l .home-content-text-header p.text-header-stitle,
.home-content-r .home-content-text-header p.text-header-stitle {
	font-size: 1.8rem;
}

.home-content-fig #showcase-list {
    margin-left: 3px;
}
.home-content-fig #showcase-list li img {
	min-height: auto;
}
.home-for-business {
    margin: 0 0 30px;
    width: 100%;
    aspect-ratio: 1200/773;
    background: url(../img/micsoffice/mics01475.jpg) no-repeat 50% 50%;
    background-size: cover;
}
.home-for-business a {
    padding: 0 0 50px 20px;
}
.home-for-business .home-for-business-ttl {
    position: relative;
    z-index: 4;
    font-size: 2.8rem;
    line-height: 1.4;
    color: #FFF;
}
.home-for-business .home-for-business-ttl span {
    display: block;
    font-family: Noto Sans JP;
    font-weight: 500;
}
.home-for-business .home-for-business-ttl span:first-child {
    font-size: 2.0rem;
    font-weight: 400;
}
.home-for-business .home-for-business-ttl span:last-child {
    padding-right: 25px;
	background: url(../img/common/arrow_rt_wt.svg) 100% 55% no-repeat;
    background-size: auto 20px;
}

.sec-smenu-inner {
	margin: 0;
	padding: 15px 15px;
	background: #222;
}
.sec-smenu {
	display: flex;
	flex-wrap: wrap;
    gap: 1px;
}
.sec-smenu li {
	width: calc(100% / 2 - 1px);
}
.sec-smenu li a {
	padding: 20px 15px;
	font-size: 1.4rem;
}
.sec-smenu li:nth-of-type(7) a {
    font-size: 1.3rem;
}

.sec-smenu li a:hover {
	background-color: #CCC;
	color: #111;
}

.sec-contact-inner {
	padding: 60px 60px 60px 60px;
}
.sec-contact-header {
	margin-bottom: 30px;
}
.sec-contact-header p {
	font-size: 3.0rem;
}
.sec-contact-body p {
	font-size: 1.4rem;
}
.sec-contact-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 35px;
}
.sec-contact-btn li {
	margin: 15px 0;
	width: 100%;
}
.sec-contact-btn li a {
	width: 100%;
}


#gmap {
	min-height: 50vh;
}
#gmap.access-map {
	padding-top: 75%;
	margin: 0;
}


/* about
=============================================== */

.about-msg-wrap {
	flex-wrap: wrap;
	height: auto;
	margin-bottom: 30px;
	margin-left: -20px;
	margin-right: -20px;
}
.about-msg-wrap > .page-contents-txt {
	margin: 0;
	padding-left: 0;
	width: 100%;
	display: block;
}
.about-msg-wrap .page-contents-txt p {
	font-size: 1.6rem;
	margin: 20px 0;
	text-align: center;
}
.about-msg-fig {
	margin-bottom: 10px;
	width: 100%;
	height: auto;
}
.about-msg-fig img {
	height: 50vh;
	object-fit: cover;
}
.about-vt-fig {
	margin: 50px -20px 0 -20px;
}
.about-vt-fig li {
	width: 50%;
}
.about-vt-fig li:nth-of-type(2) {
	display: none;
}
.about-vt-fig li:nth-of-type(3) {
	margin-top: 40px;
}
.about-msg-txt {
	margin: 0 0 30px;
}
.about-msg-txt .st {
	font-size: 2.0rem;
	line-height: 1.8;
}
.about-msg-txt p {
	font-size: 1.6rem;
	line-height: 2;
}

/* ordercurtain
=============================================== */

.curtain-slider {
	margin: 0 -20px 30px -20px;
	height: 70vh;
}
.mics-curtain-slider {
	margin: 0 0 30px -20px;
	height: 70vh;
}


/* micscurtain
=============================================== */

#micscurtain-header {
	margin: 0;
	height: 80vh;
}
#micscurtain-header-txt {
	padding: 35px;
}
#micscurtain-header-txt h2 {
	font-size: 2.4rem;
}
#micscurtain-header-txt p {
	font-size: 1.8rem;
}
#micscurtain ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1px 0 0;
}
#micscurtain ul li {
	margin: 0 1px 1px 0;
	width: calc(50% - 1px);
}
#micscurtain ul li img {
	object-fit: cover;
	height: calc(50vw - 21px);
}
#micscurtain ul li:last-child {
	display: none;
}
.micscurtain-photo {
	max-width: none;
	margin: 35px 0;
}
.micscurtain-photo img:nth-of-type(1),
.micscurtain-photo img:nth-of-type(2) {
	margin: 5px 0;
	padding: 0;
	width: 100%;
}

.goods-single {
	margin: 35px 0;
	text-align: center;
}
.tab-container {
	margin: 50px 0;
	max-width: none;
}
.tab-group{
	display: flex;
	justify-content: center;
	padding: 0 15px;
	border-bottom: 3px solid #111;
}
.tab {
	width: calc(100%/3 - 30px);
	margin: 0 15px;
	padding: 15px 0 12px;
	font-size: 1.0rem;
}
.tab:hover,
.tab.tab-active {
	background-color: #111;
	color: #FFF;
}
.panel {
	display: none;
}
.panel.panel-show{
  display: block;
}
.goods-list {
	max-width: none;
	margin: 50px 0;
}
.goods-list ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.goods-list ul li {
	margin: 0 0 25px 0;
	width: 100%;
	font-size: 1.0rem;
}
.goods-list ul li iframe {
	border: none;
}
.goods-list-flex {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px 0 0;
}
.goods-list-flex a {
	text-decoration: underline;
	color: #805C08;
}
.goods-list-flex a:hover {
	text-decoration: none;
}
.goods-list-flex dl {
	margin: 0 15px 25px 0;
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
}
.goods-list-flex dl dd {
	width: 100%;
	flex-grow: 0;
	font-size: 0.8rem;
	line-height: 1.8;
}
.goods-list-flex dl dt:first-child + dd {
	flex-grow: 0;
}
.btn-shop {
	padding: 35px 0;
}
.btn-shop a {
	display: block;
	padding: 25px 0;
	font-size: 1.8rem;
}






/* homestaging
=============================================== */

#homestaging-header {
	margin: 0;
	height: 70vh;
	max-height: auto;
}
#homestaging-header-txt h2 {
	font-size: 5.0rem;
}
#homestaging-header-txt p {
	font-size: 2.0rem;
}
#hsprofile {
	margin: 35px 0 15;
}
#hsprofile .row .right p:first-child {
	margin-top: 20px;
	font-size: 2.0rem;
}
#hsprofile .row .right p:last-child {
	font-size: 1.6rem;
}
.homestaging-model {
	margin: 50px 0;
}
.homestaging-model .right h3 {
	margin: 25px 0;
	font-size: 1.8rem;
}



/* showroom
=============================================== */

.mics-showroom-info {
	border: 2px solid #CCC;
	padding: 0 25px;
}
.mics-showroom-info a.access {
	text-decoration: underline;
}
.mics-showroom-photo {
	max-width: none;
	margin: 35px 0;
}
.mics-showroom-photo img {
	margin: 5px 0;
	width: 100%;
}
.showroom-list {
	margin: 35px 0;
}
.showroom-list dl .list-item {
	display: flex;
	flex-wrap: wrap;
	max-width: none;
	margin-bottom: 35px;
	padding-bottom: 34px;
	border-bottom: 1px dotted #CCC;
}
.showroom-list dt.list-img {
	width: 100%;
	flex-shrink: 0;
	margin-bottom: 15px;
	padding-right: 0;
}
.showroom-list dt.list-img img {
	object-fit: cover;
	max-width: 150px;
}
.showroom-list dd.list-info {
	width: 100%;
	font-size: 1.2rem;
}
.showroom-list dd.list-info a {
	font-size: 1.4rem;
}



/* showcase
=============================================== */

#showcase-list li {
	margin: 0 3px 3px 0;
	width: calc(50% - 3px);
}
.page-turn {
	max-width: none;
	padding: 0 10px;
}
.entry-body .pic2,
.entry-body .pic2 picture {
    display: block;
}
.entry-body .pic2 img,
.entry-body .pic2 picture {
    width: 100%;
}
.entry-body .pic2 img:first-child,
.entry-body .pic2 picture:first-child {
    margin-bottom: 25px;
}


/* curtain collection
=============================================== */

.curtaincollection {
	max-width: none;
}
.curtaincollection p {
	margin: 0 3px 3px 0;
	width: calc(50% - 3px);
}

/* company
=============================================== */

#company-profile,
.recruit-info {
	width: 100%;
}
#company-profile th,
.recruit-info th {
    display: block;
	width: 100%;
    border-bottom: none;
    padding-bottom: 5px;
	font-size: 1.4rem;
}
#company-profile td,
.recruit-info td {
    display: block;
	width: 100%;
    padding-top: 5px;
    padding-left: 0;
	font-size: 1.4rem;
}
#company-profile td ul,
.recruit-info td ul {
	float: none;
	width: auto;
}
#company-profile td ul.right,
.recruit-info td ul.right {
	margin-left: 0;
}
#mics-area {
	margin: 0 0 35px;
}
#mics-area #area-map {
	margin-bottom: 25px;
	padding-right: 0;
	width: 100%;
	text-align: center;
}
#mics-area #area-map img {
	width: 80%;
}
#mics-area #area-division dl dt {
	padding: 12px;
	font-size: 1.4rem;
}
#mics-area #area-division dl dd {
	padding: 15px;
	font-size: 1.4rem;
}
.brand-logo {
	margin: 35px 0;
	text-align: center;
}
.brand-logo img {
	max-width: none;
	height: 70px;
}



/* access
=============================================== */

.access-map {
	padding-top: 75%;
}


/* contact
=============================================== */

#contact .inner {
	margin: auto;
	padding: 0 15px;
	max-width: none;
}



/* form
=============================================== */


.formbox .formbox-ttl {
    margin: 30px 0;
    font-size: 1.8rem;
    line-height: 1.6;
}
.formbox > .formbox-ttl:first-of-type {
    margin-top: 0;
}
.formbox .formbox-txt {
    margin: 20px 0;
    font-size: 1.6rem;
    line-height: 1.7;
    text-align: left;
}

.form-box .form-item {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	margin: 0 0 30px;
	max-width: none;
	padding-bottom: 30px;
	border-bottom: 1px solid #CCC;
}
.form-box .form-item .form-title {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 1.6rem;
}
.form-box .form-item .form-title br {
    display: none;
}
.form-box .form-item .form-title span {
	font-size: 1.2rem;
	font-weight: bold;
}
.form-box .form-item .form-body {
	width: 100%;
	font-size: 1.6rem;
}
.form-box .form-item .form-body p {
	margin: 0 0 15px;
	font-size: 1.6rem;
	line-height: 1.6;
}
.form-box .form-item .form-body .other01 {
	margin: 15px 0 0;
}
.form-box .form-item .form-body .other01 input {
	border: 1px solid #DDD;
	border-radius: 4px;
	background: #FFF;
	padding: 8px;
	width: 50%;
	font-size: 1.6rem;
}
.form-box .form-item .form-body.f-address dl {
	margin: 15px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.form-box .form-item .form-body.f-address  dl:first-child {
    margin-top: 0;
}
.form-box .form-item .form-body.f-address  dl:last-child {
    margin-bottom: 0;
}
.form-box .form-item .form-body.f-address dl dt {
	width: 100%;
	flex-shrink: 0;
	margin-bottom: 8px;
	padding-right: 0;
}
.form-box .form-item dl dt p,
.form-box .form-item dd p:last-child {
    margin-bottom: 0 !important;
}
.form-box .form-item .form-body.f-address dl dd {
	width: 100%;
}
.form-box .form-item .form-body.f-name input,
.form-box .form-item .form-body.f-email input,
.form-box .form-item .form-body.f-address input,
.form-box .form-item .form-body.f-tel input,
.form-box .form-item .form-body.f-size input,
.form-box .form-item .form-body.f-message textarea {
	font-size: 1.6rem;
}
.form-box .form-item .form-body.form-calendar select ,
.form-box .form-item .form-body.form-time select {
	font-size: 1.6rem;
}
.form-box .form-item .form-body.f-checkbox input[type="checkbox"],
.form-box .form-item .form-body.f-select select {
	font-size: 1.6rem;
}
.form-box .form-item .form-body.f-message textarea {
	height: 10em;
	font-size: 1.6rem;
}
.form-box .form-item .mf-item-list li {
	margin-bottom: 15px;
}
.form-box .form-item .mf-item-list li label input[type="checkbox"] {
	margin-right: 5px;
}
.form-box .form-item .form-body.f-file span {
	display: inline-block;
    margin-top: 20px;
}
.submit {
	margin: 50px 0 25px;
	max-width: none;
}
.submit button {
	font-size: 1.6rem;
	font-weight: bold;
}


.con-ex-item dd ul {
    padding-left: 21px;
}
.con-ex-item dd ul li {
    margin-bottom: 3px;
    padding-left: 0;
}


.cdocter-ex {
    margin-bottom: 20px;
}
.cdocter-ex-item dd .meas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cdocter-ex-item dd div.measbox {
    width: 100%;
}
.cdocter-ex-item dd p {
    margin-bottom: 1em;
    font-size: 1.6rem;
    line-height: 1.6;
}
#baguetteBox-overlay .full-image figcaption {
    font-size: 1.6rem;
    color: #FFF !important;
}

/* sitemap
=============================================== */

#sitemap {
	margin: 0 0 0 15px
}
#sitemap li {
	font-size: 1.4rem;
}




/* info / news / blog
=============================================== */

#info {
    margin: 0;
    padding: 30px 20px;
    background: #FFF;
}
#blog-subtitle {
	margin: 0 0 15px;
	font-size: 1.6rem;
	text-align: center;
}
.sub-title {
	margin-top: 12px;
	font-size: 1.4rem;
}
#blog .inner {
	margin: 0;
	padding: 0 20px 50px 20px;
}
.category-list-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
}
.staffblog-list {
	margin: 0 0 35px;
    grid-template-columns: 1fr;
}
.staffblog-list li {
    display: flex;
    gap: 20px;
}
.staffblog-list li.no-post {
    padding: 25px 0;
    display: block;
}
.staffblog-list .post-thumbnail {
	flex: 0 0 30%;
}
.staffblog-list .post-info {
	flex: 1 1 calc(70% - 20px);
}
.staffblog-list .post-date {
	margin-top: 10px;
	font-size: 1.2rem;
}
.staffblog-list .post-title {
	margin-top: 10px;
	font-size: 1.4rem;
}

.btn-more a {
	display: block;
	padding: 25px 20px;
	font-size: 1.8rem;
    text-align: center;
}
.btn-more a:hover {
    border: 2px solid #444;
	background-color: #444;
}

.entry-box {
	margin-bottom: 50px;
	max-width: none;
}
.entry-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    justify-content: flex-start;
	margin: 30px 0;
}
.entry-date time {
    padding: 3px 6px;
	font-size: 1.4rem;
    background: #FFF;
}
.entry-category {
    display: flex;
    gap: 5px;
}

.entry-category span {
    padding: 3px 6px;
    font-size: 1.4rem;
    background: #EEE;
    color: #111;
}
.entry-date {
	font-size: 1.4rem;
    color: #666;
    text-align: right;
}
.entry-title {
	margin-bottom: 20px;
}
.entry-title h1 {
	font-size: 2.0rem;
}
.entry-title a {
	text-decoration: none;
}
.entry-body p {
	font-size: 1.6rem;
	line-height: 1.6;
}
.entry-body .blog-clm2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	margin: 18px 0;
}
.entry-body .blog-clm2 img {
	margin: 7px 0;
	width: 100%;
}
.btn-back {
    text-align: center;
}
.entry-cta {
    margin-top: 50px;
    text-align: center;
}
.entry-cta a {
    font-size: 1.6rem;
    line-height: 1.6;
}
.entry-cta a br {
    display: block;
}




/* blog-side
=============================================== */

#side {
	width: auto;
	padding: 0 15px;
}
.side-area {
	margin: 30px 0;
}
.side-title {
	margin-bottom: 15px;
	padding: 15px 0 14px;
	font-size: 1.6rem;
}

/* widget
=============================================== */

.widgettitle {
	margin-bottom: 10px;
	padding: 15px 0 14px;
	font-size: 1.6rem;
}



/* mics office 
=============================================== */

#mics-coordinate-eye {
	margin: 0 -20px;
	max-width: none;
}
#mics-coordinate-eye img {
	max-height: none;
	height: 100vw;
}
#mics-coordinate-eye figcaption {
	padding: 25px;
	width: auto;
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 2;
}
.pmc .page-contents-inner {
	padding-top: 0;
}
.pmc .page-contents-txt {
	max-width: auto;
}
p.pmc-txt01 {
	font-size: 1.8rem;
}
p.pmc-txt02 {
	font-size: 1.6rem;
	line-height: 2;
}
p.pmc-txt02 b {
	font-size: 1.8rem;
}
p.pmc-txt03 {
	font-size: 1.8rem;
	text-align: center;
}
.before-after {
	margin-bottom: 50px;
}
.before-after .ba-item {
	margin-bottom: 20px;
}
.before-after dt {
	margin-bottom: .5em;
	font-size: 1.8rem;
}
.before-after dd {
	font-size: 1.6rem;
}
.pmc-list {
	margin: 0 0 0 2em;
}
.pmc-list li {
	margin: 0 0 .75em 0;
	font-size: 1.6rem;
}
p.pmc-txt04 {
	font-size: 1.8rem;
	text-align: left;
}
p.pmc-txt04 br {
	display: none;
}

.imgbox_pt01 p {
	margin: 10px 0;
	width: 100%;
}
.imgbox_pt01 p:nth-of-type(odd), .imgbox_pt01 p:nth-of-type(even) {
	margin-left: 0;
}
.imgbox_pt02 {
	margin: 10px 0 0;
	justify-content: space-between;
}
.imgbox_pt02 p {
	margin: 0;
	width: calc(50% - 10px);
}
.imgbox_pt02 p:nth-of-type(odd), .imgbox_pt02 p:nth-of-type(even) {
	margin-top: 0;
}
.imgbox_pt03 p {
	margin: 10px 0;
	width: 100%;
}
.imgbox_pt03 p:nth-of-type(n+0) {
	margin-left: 0;
	margin-right: 0;
}
.imgbox_pt04 {
	margin: 0 -5px;
}
.imgbox_pt04 p {
	margin: 5px !important;
	width: calc(50% - 10px);
}

}




/* contact form
=============================================== */

.cdf-zipcode {
    width: 10em !important;
}
.cdf-size {
    width: 6em !important;
}
.cdf-size-fixed {
    width: 6em !important;
}
.cdf-privacy-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 75px 0 0;
}
.cdf-privacy-box div {
    padding: 25px 50px;
    font-size: 1.6rem;
    background-color: #EEE;
}
.cdf-submit-box {
	margin: 50px 0;
    text-align: center;
}
.cdf-submit {
	width: 100%;
	max-width: 450px;
	margin: auto;
	padding: 15px 0;
	border: none;
	font-size: 1.8rem;
	background-color: #000;
	color: #FFF;
	cursor: pointer;
}
.cdf-submit:hover {
	transition: .2s ease;
	opacity: .7;
}


.cdf-drapes-type {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1.5em;
}
.cdf-drapes-type > span {
    width: calc(100% / 4 - 10px);
    aspect-ratio: 1 / 1;
}
.cdf-drapes-type > span:first-child {
    margin-top: 15px !important;
}
.cdf-drapes-type label {
    position: relative;
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.cdf-drapes-type > span:nth-of-type(1) label {
    background: url(../img/curtaindocter/pleats_type01.jpg) no-repeat 0 0;
    background-size: cover;
}
.cdf-drapes-type > span:nth-of-type(2) label {
    background: url(../img/curtaindocter/pleats_type02.jpg) no-repeat 0 0;
    background-size: cover;
}
.cdf-drapes-type > span:nth-of-type(3) label {
    background: url(../img/curtaindocter/pleats_type03.jpg) no-repeat 0 0;
    background-size: cover;
}
.cdf-drapes-type > span:nth-of-type(4) label {
    background: url(../img/curtaindocter/pleats_type04.jpg) no-repeat 0 0;
    background-size: cover;
}
.cdf-drapes-type label > input {
    position: absolute;
    bottom: -25px;
}
.cdf-drapes-type label > span {
    position: absolute;
    bottom: -30px;
    left: 20px;
    font-size: 1.6rem;
}

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

.cdf-drapes-type {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.cdf-drapes-type > span {
    width: calc(100% / 2 - 10px);
    aspect-ratio: 1 / 1;
}
.cdf-drapes-type label {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.cdf-drapes-type label > input {
    position: absolute;
    bottom: -25px;
}
.cdf-drapes-type label > span {
    position: absolute;
    bottom: -30px;
    left: 20px;
    font-size: 1.6rem;
}
.cdf-privacy-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 35px 0 0;
}
.cdf-privacy-box div {
    flex: 1 1 100%;
    padding: 25px;
    text-align: center;
}


}


/* interior page
=============================================== */

.interior-sample-photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1px;
}
.interior-sample-photo div {
    width: calc(100% / 2 - 1px);
}
.interior-sample-photo div img {
    object-fit: cover;
    height: 100%;
}
.interior-photo {
    display: grid;
    gap: 2px;
}
.interior-photo li {
    display: grid
}
.interior-photo li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}
.interior-photo li:nth-of-type(1) { grid-column: 1 / 4; }
.interior-photo li:nth-of-type(2) { grid-column: 4 / 7; }
.interior-photo li:nth-of-type(3) { grid-column: 1 / 5; }
.interior-photo li:nth-of-type(4) { grid-column: 5 / 7; }
.interior-photo li:nth-of-type(5) { grid-column: 1 / 3; }
.interior-photo li:nth-of-type(6) { grid-column: 3 / 5; }
.interior-photo li:nth-of-type(7) { grid-column: 5 / 7; }
.interior-photo li:nth-of-type(8) { grid-column: 1 / 3; }
.interior-photo li:nth-of-type(9) { grid-column: 3 / 5; }
.interior-photo li:nth-of-type(10) { grid-column: 5 / 7; }
.interior-photo li:nth-of-type(11) { grid-column: 1 / 4; }
.interior-photo li:nth-of-type(12) { grid-column: 4 / 7; }


.interior-coordination-fee {
    width: 100%;
}
.interior-coordination-fee thead th {
    width: 40%;
    padding: 12px 0 12px;
    font-size: 1.8rem;
    border-bottom: 2px solid #111;
}
.interior-coordination-fee thead th:first-child {
    width: 20%;
}
.interior-coordination-fee tbody th {
    padding: 20px;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    background-color: #111;
}
.interior-coordination-fee tbody td {
    padding: 20px 20px 15px;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
    border-right: 1px dotted #111;
    border-bottom: 1px solid #111;
}
.interior-coordination-fee tbody td br {
    display: none;
}
.interior-coordination-fee tbody td:last-child {
    border-right: none;
}
.interior-coordination-fee tbody tr:last-child th {
    border-bottom: 1px solid #111;
}



.interior-coordination-fee-personal {
    width: 100%;
    border-top: 1px solid #111;
    margin-bottom: 50px;
}
.interior-coordination-fee-personal tbody th {
    padding: 20px;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    background-color: #111;
}
.interior-coordination-fee-personal tbody td {
    padding: 20px 20px 18px;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
    border-right: 1px dotted #111;
    border-bottom: 1px solid #111;
}
.interior-coordination-fee-personal tbody td.price span {
    font-size: 1.6rem;
}
.interior-coordination-fee-personal tbody td:last-child {
    border-right: none;
}
.interior-coordination-fee-personal tbody tr:last-child th {
    border-bottom: 1px solid #111;
}


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

.interior-coordination-fee {
    margin-bottom: 0;
    min-width: 800px;
    border-collapse: collapse;
}
.interior-coordination-fee th, .interior-coordination-fee td {
    white-space: nowrap;
}

.interior-coordination-fee thead th {
    width: auto;
    padding: 12px 0 12px;
    font-size: 1.4rem;
}
.interior-coordination-fee thead th:first-child {
    width: auto;
}
.interior-coordination-fee tbody th {
    padding: 12px;
    font-size: 1.4rem;
    text-align: center;
    border-bottom: 1px solid #FFF;
    color: #FFF;
    background-color: #111;
}
.interior-coordination-fee tbody td {
    padding: 20px;
    font-size: 1.4rem;
    text-align: center;
    border-right: 1px dotted #111;
    border-bottom: 1px solid #111;
}
.interior-coordination-fee tbody td br {
    display: inline-block;
}
.interior-coordination-fee tbody td:last-child {
    border-right: none;
}

}



/* plusplan page
=============================================== */

#page-plusplan {
    background-color: #F7F4F2;
}
#plusplan-main {
    padding: 0 0 50px;
}
#plusplan-main picture {
    display: block;
    margin-bottom: 150px;
}
#plusplan-main-txt h1 {
    text-align: center;
}
#plusplan-main-txt h1 span {
    display: block;
    padding: 12px 0;
    font-size: 6.0rem;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 700;
}
#plusplan-main-txt h1 span:nth-of-type(3) {
    margin-top: 50px;
}
#plusplan-main-txt h1 span img {
    height: 100px;
}
#plusplan-menu {
    margin: 50px auto 100px;
    padding: 0 7.5%;
}
#plusplan-menu ul {
    display: flex;
    justify-content: space-between;
}
#plusplan-menu ul li {
    width: calc(100% / 4 - 20px);
    padding: 25px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 2.0rem;
    text-align: center;
    background-color: #999;
    color: #FFF;
}
#plusplan-menu ul li span {
    display: inline-block;
    line-height: 1.6;
}
.plusplan-wrap {
    padding: 75px 0;
}
.plusplan-wrap .inner {
    margin: 0 auto;
    padding: 0 7.5%;
}
.pp-gray {
    background-color: #E4E2E1;
}
.pp-slider-box {
    display: flex;
    align-items: center;
}
.pp-slider-box .pp-slider {
    width: 50%;
}
.pp-slider-txt {
    width: 50%;
    padding: 0 30px;
}
.pp-slider-large {
    margin: 0;
    height: 40vw;
}
.pp-slider-large .swiper-slide {
    height: auto !important;
}
.pp-slider-large .swiper-slide picture {
}
.pp-slider-large .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
}
.pp-slider-large .swiper-wrapper {
    transition-timing-function: linear;
}

.marker-yellow {
 	background: linear-gradient(transparent 60%, #FFFE7F 60%);
}
.marker-lightgreen {
 	background: linear-gradient(transparent 60%, #B8EACB 60%);
}
.marker-lightblue {
 	background: linear-gradient(transparent 60%, #A3BFD9 60%);
}
.marker-gold01 {
 	background: linear-gradient(transparent 60%, #C0B283 60%);
}
p.pp-txt01 {
    margin: 2em 0;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
	font-size: 2.8rem;
    line-height: 1.7;
	text-align: left;
}
p.pp-txt02 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    margin: 1.5em 0;
	font-size: 1.8rem;
    line-height: 1.7;
	text-align: left;
}
.pp-list {
	margin: 1.5em 0 1.5em 30px;
}
.pp-list li {
	margin-bottom: 5px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
	font-size: 1.8rem;
	line-height: 1.6;
	list-style: circle;
}
.pp-contact {
    margin: 50px 7.5%;
    display: flex;
    justify-content: space-around;
}
.pp-contact p {
    width: calc(100% / 3 - 20px);
}
.pp-contact p a {
    display: block;
    padding: 35px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 2.2rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    background-color: #494949;
    color: #FFF;
}
.pp-contact p a span {
    position: relative;
}
.pp-contact p a span::before {
    content: '';
    position: absolute;
    top: calc(50% - 14px);
    left: 0;
}
.pp-contact p.pp-btn-reserve a span {
    padding-left: 50px;
}
.pp-contact p.pp-btn-reserve a span::before {
    height: 40px;
    aspect-ratio: 100 / 102;
    background: url(../img/plusplan/icon_reserve_white.svg) no-repeat;
    background-size: cover;
}
.pp-contact p.pp-btn-contact a span {
    padding-left: 55px;
}
.pp-contact p.pp-btn-contact a span::before {
    height: 30px;
    aspect-ratio: 75 / 50;
    background: url(../img/plusplan/icon_mail_white.svg) no-repeat;
    background-size: cover;
}
.pp-contact p.pp-btn-tel a span {
    padding-left: 30px;
}
.pp-contact p.pp-btn-tel a span::before {
    height: 30px;
    aspect-ratio: 36 / 50;
    background: url(../img/plusplan/icon_tel_white.svg) no-repeat;
    background-size: cover;
}
.pp-flow-item {
    margin: 35px 0 65px;
}
.pp-flow .pp-contact {
    margin-left: 0;
    margin-right: 0;
}
.pp-ttl01 {
    margin-bottom: 1em;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 3.6rem;
    text-align: center;
}
.pp-ttl02 {
    margin-bottom: 1em;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 2.8rem;

}
.pp-flow p {
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    line-height: 1.6;
}

.pp-footer {
    padding: 60px 0;
    background-color: #494949;
}
.pp-footer .pp-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.pp-footer .pp-footer-nav li {
    padding: 12px 0;
}

.pp-footer .pp-footer-nav li a {
    font-family: 'Noto sans JP', sans-serif;
    font-size: 1.4rem;
    color: #FFF;
    text-decoration: none;
}
.pp-footer-info {
    margin: 50px 0;
    text-align: center;
}
.pp-footer-info dt {
    margin-bottom: 12px;
}
.pp-footer-info dt img {
    height: 30px;
}
.pp-footer-info dd,
.pp-footer-info dd a {
    font-family: 'Noto sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #FFF;
    text-decoration: none;
}
.pp-footer-info .footer-sns ul {
	padding: 20px 0 0 0;
	display: flex;
    justify-content: center;
}
.pp-footer-info .footer-sns ul li {
    margin: 0 12px;
}
.pp-footer-info .footer-sns ul li img {
	height: 24px;
}

#page-plusplan .home-content-r {
    padding: 0;
    align-items: center;
    background-color: #E4E2E1;
}
#page-plusplan .home-content-text {
    font-family: "Noto Serif JP", serif;
    background: none;
}
#page-plusplan .home-content-text-body p {
    font-size: 1.6rem;
}
#page-plusplan .btn-gd,
#page-plusplan .btn-gd:hover {
  background: #494949;
  color: #FFF !important;
}

#page-plusplan #copyright {
    padding-top: 0;
    color: #FFF;
}
.swiper-pagination-bullet-active {
    background: #FFF !important;
}

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

.pp-contact p span {
    font-size: 2.0rem;
}
.pp-contact p a {
    padding-left: 15px;
    padding-right: 15px;
}

}

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

.pp-contact {
    margin: 35px 0 0;
    padding: 0 20px;
    display: block;
}
.pp-contact p {
    margin: 15px 0;
    width: 100%;
}
.pp-contact p a {
    padding: 25px;
    font-size: 1.8rem;
}
.pp-contact p a span {
    position: relative;
}
.pp-contact p a span::before {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
}
.pp-contact p.pp-btn-reserve a span {
    padding-left: 45px;
}
.pp-contact p.pp-btn-reserve a span::before {
    height: 32px;
    aspect-ratio: 100 / 102;
    background: url(../img/plusplan/icon_reserve_white.svg) no-repeat;
    background-size: cover;
}
.pp-contact p.pp-btn-contact a span {
    padding-left: 45px;
}
.pp-contact p.pp-btn-contact a span::before {
    height: 24px;
    aspect-ratio: 75 / 50;
    background: url(../img/plusplan/icon_mail_white.svg);
    background-size: cover;
}
.pp-contact p.pp-btn-tel a span {
    padding-left: 25px;
}
.pp-contact p.pp-btn-tel a span::before {
    height: 24px;
    aspect-ratio: 36 / 50;
    background: url(../img/plusplan/icon_tel_white.svg);
    background-size: cover;
}

.pp-footer-nav ul li {
    width: calc(100% / 4 - 20px);
}
}


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

#plusplan-main {
    padding: 0;
}
#plusplan-main picture {
    margin-bottom: 50px;
}
#plusplan-main-txt h1 span {
    display: block;
    padding: 12px 15px;
    font-size: 2.4rem;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 600;
}
#plusplan-main-txt h1 span:nth-of-type(3) {
    margin-top: 0px;
}
#plusplan-main-txt h1 span img {
    height: 60px;
}
#plusplan-menu {
    margin: 25px auto 25px;
    padding: 0 20px;
}
#plusplan-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#plusplan-menu ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: calc(100% / 2 - 10px);
    margin: 10px 0;
    padding: 12px;
    font-size: 1.6rem;
}
.plusplan-wrap {
    padding: 35px 0;
}
.plusplan-wrap .inner {
    margin: 0 auto;
    padding: 0 20px;
}
.pp-slider-box {
    display: block;
}
.pp-slider-box .pp-slider,
.pp-slider-txt {
    width: 100%;
    padding: 0;
}

.pp-slider-large {
    margin: 0;
    height: 70vw;
}
p.pp-txt01 {
    margin: 1em 0 1.5em;
	font-size: 2.0rem;
}
p.pp-txt02 {
    margin: 1.5em 0;
	font-size: 1.8rem;
}
.pp-list {
	margin: 1.5em 0 1.5em 30px;
}
.pp-list li {
	margin-bottom: 5px;
	font-size: 1.8rem;
}
.pp-flow-item {
    margin: 35px 0 65px;
}
.pp-flow .pp-contact {
    padding: 0;
}
.pp-ttl01 {
    margin-bottom: 1em;
    font-size: 2.4rem;
}
.pp-ttl02 {
    margin-bottom: 1em;
    font-size: 2.0rem;

}
.pp-flow p {
    font-size: 1.8rem;
}

.pp-footer {
    padding: 50px 20px;
}
.pp-footer .pp-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.pp-footer .pp-footer-nav li {
    width: calc(100% / 2);
    padding: 12px 0;
}
.pp-footer .pp-footer-nav li a {
    font-size: 1.4rem;
}
.pp-footer-info {
    margin: 50px 0;
    text-align: left;
}
.pp-footer-info dt {
    margin-bottom: 12px;
}
.pp-footer-info dt img {
    height: 28px;
}
.pp-footer-info dd,
.pp-footer-info dd a {
    font-size: 1.4rem;
    line-height: 1.8;
}
.pp-footer-info .footer-sns ul {
	padding: 35px 0 0 0;
	display: flex;
    justify-content: center;
}
.pp-footer-info .footer-sns ul li {
    margin: 0 15px;
}
.pp-footer-info .footer-sns ul li img {
	height: 24px;
}

#page-plusplan .home-content-r {
    padding: 0 0 50px;
}

}






/* for business page
=============================================== */

#page-business .page-contents-txt {
    max-width: 1600px;
}
.business-slider {
    margin: 60px 90px 0 0;
    max-width: 1600px;
}
.business-txt  {
    max-width: 1600px;
    margin: 50px 0;
}
.bs-txt01 {
    margin: 1em 0;
	font-size: 2.0rem;
    line-height: 1.6;
}
.bs-txt02 {
    margin: 1em 0;
	font-size: 1.8rem;
    line-height: 1.6;
}
.bs-txt02 b {
	font-size: 2.8rem;
}
.bs-txt03 {
	font-size: 2.8rem;
	font-weight: bold;
}
.business-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 25px 0;
}
.business-img img {
    width: calc(100% / 2 - 15px);
}

.business-service {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
}
.business-service div {
    display: flex;
    align-items: center;
    margin: 0 25px 25px 0;
    width: calc(100% / 4 - 20px);
    background-color: #111;
    color: #FFF;
}
.business-service div a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px 10px;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    color: #FFF;
}

.business-flow p {
    margin-bottom: 1.5em;
    font-size: 1.8rem;
    line-height: 1.6;
}
.business-flow-ttl {
    margin-bottom: .5em;
    font-size: 2.4rem;
    line-height: 1.6;
}
.business-flow-ttl span {
    font-weight: bold;
    background: linear-gradient(transparent 60%, #FFFE7F 60%);
}

.btn-business {
    margin: 25px 0;
}
.btn-business a {
    display: inline-block;
    padding: 25px 35px;
	font-size: 2.0rem;
    text-decoration: none;
    background-color: #111;
    color: #FFF;
}


.business-contact {
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
}
.business-contact p {
    width: calc(100% / 2 - 20px);
}
.business-contact p a {
    display: block;
    padding: 35px;
    font-optical-sizing: auto;
    font-size: 2.2rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    background-color: #111;
    color: #FFF;
}
.business-contact p a span {
    position: relative;
}
.business-contact p a span::before {
    content: '';
    position: absolute;
    top: calc(50% - 14px);
    left: 0;
}
.business-contact p.business-btn-reserve a span {
    padding-left: 50px;
}
.business-contact p.business-btn-reserve a span::before {
    height: 40px;
    aspect-ratio: 100 / 102;
    background: url(../img/plusplan/icon_reserve_white.svg) no-repeat;
    background-size: cover;
}
.business-contact p.business-btn-contact a span {
    padding-left: 55px;
}
.business-contact p.business-btn-contact a span::before {
    height: 30px;
    aspect-ratio: 75 / 50;
    background: url(../img/plusplan/icon_mail_white.svg) no-repeat;
    background-size: cover;
}
.business-contact p.business-btn-tel a span {
    padding-left: 30px;
}
.business-contact p.business-btn-tel a span::before {
    height: 30px;
    aspect-ratio: 36 / 50;
    background: url(../img/plusplan/icon_tel_white.svg) no-repeat;
    background-size: cover;
}




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

.business-service div {
    display: flex;
    align-items: center;
    margin: 0 25px 25px 0;
    width: calc(100% / 2 - 25px);
    background-color: #111;
    color: #FFF;
}
.business-service div a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px 10px;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    color: #FFF;
}

}

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

.business-contact {
    margin: 35px 0 0;
    padding: 0;
    display: block;
}
.business-contact p {
    margin: 25px 0;
    width: 100%;
}
.business-contact p a {
    padding: 25px;
    font-size: 1.8rem;
}
.business-contact p a span {
    position: relative;
}
.business-contact p a span::before {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
}
.business-contact p.pp-btn-reserve a span {
    padding-left: 45px;
}
.business-contact p.pp-btn-reserve a span::before {
    height: 32px;
    aspect-ratio: 100 / 102;
    background: url(../img/plusplan/icon_reserve_white.svg) no-repeat;
    background-size: cover;
}
.business-contact p.business-btn-contact a span {
    padding-left: 45px;
}
.business-contact p.business-btn-contact a span::before {
    height: 24px;
    aspect-ratio: 75 / 50;
    background: url(../img/plusplan/icon_mail_white.svg);
    background-size: cover;
}
.business-contact p.business-btn-tel a span {
    padding-left: 25px;
}
.business-contact p.business-btn-tel a span::before {
    height: 24px;
    aspect-ratio: 36 / 50;
    background: url(../img/plusplan/icon_tel_white.svg);
    background-size: cover;
}


}


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

.business-slider {
    margin: 30px 0 0 0;
}
.business-txt  {
    margin: 35px 0;
}
.bs-txt01 {
    margin: 1em 0;
	font-size: 1.8rem;
    line-height: 1.6;
}
.bs-txt02 {
    margin: 1em 0;
	font-size: 1.6rem;
    line-height: 1.6;
}
.business-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 25px 0;
}
.business-img img {
    margin: 10px 0;
    width: 100%;
}

.business-flow p {
    margin-bottom: 1.5em;
    font-size: 1.8rem;
    line-height: 1.6;
}
.business-flow-ttl {
    margin-bottom: .5em;
    font-size: 2.0rem;
    line-height: 1.6;
}
.business-flow-ttl span {
    font-weight: bold;
    background: linear-gradient(transparent 60%, #FFFE7F 60%);
}

.btn-business {
    margin: 25px 0;
}
.btn-business a {
    display: inline-block;
    width: 100%;
    padding: 25px 15px;
	font-size: 1.8rem;
    text-align: center;
}

}



/* contact form7 Custom
=============================================== */

.wpcf7 form .wpcf7-response-output {
    max-width: 900px !important;
	margin: 2em 0 !important;
	padding: 1.5em !important;
	border: 2px solid #00a0d2;
    font-size: 1.8rem !important;
}
.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

span.wpcf7-list-item {
    margin: 15px 0 0 0;
    display: block;
}
span.wpcf7-list-item:first-child {
    margin-top: 0;
}
.wpcf7-response-output:empty {
    display: none;
}
.wpcf7-spinner {
    display: none !important;
}
.wpcf7-not-valid-tip {
    margin-top: 15px;
    font-size: 1.6rem !important;
}
.wpcf7-turnstile {
    margin: 25px 0 50px;
    text-align: center;
}

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

.wpcf7 form .wpcf7-response-output {
    max-width: none;
	margin: 1em 0 !important;
	padding: 1.5em !important;
	border: 2px solid #00a0d2; /* Blue */
    font-size: 1.6rem !important;
    line-height: 1.6 !important;
}

}


/* interior coordinat(共通)
=============================================== */

.per-ttl {
    margin-bottom: 35px;
    font-size: 3.6rem;
    line-height: 1.6;
    text-align: center;
}
.per-sttl {
    margin-bottom: 25px;
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
}

@media screen and (max-width:767px) {
.per-ttl {
    padding: 0 15px;
    margin-bottom: 25px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}
.per-ttl span {
    display: inline-block;
}
.per-sttl {
    margin-bottom: 15px;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}
}

/* interior coordinat(business)
=============================================== */

#page-cbusinessss {
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 400;
}

#page-cbusiness #page-header-vis {
    position: relative;
    width: 100%;
    height: 650px;
}
#page-cbusiness #page-header-vis-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#page-cbusiness #page-header-vis-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#page-cbusiness .page-header-copy {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
}
#page-cbusiness .page-header-copy h1 {
    font-size: 4.6rem;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    color: #FFF;
}
#page-cbusiness .page-header-copy h1 span {
    font-weight: 600;
    font-size: 6.0rem;
}
#page-cbusiness .top-copy {
    margin-bottom: 75px;
}
#page-cbusiness .top-copy p {
    font-size: 1.8rem;
}
#page-cbusiness .page-contents-txt {
    max-width: none;
}
#page-cbusiness .page-contents-txt.mgnone {
    margin: 0 !important
}
#page-cbusiness .page-personal-subwrap {
    border-top: 3px solid #111;
}
#page-cbusiness .per-ttl {
    margin-bottom: 35px;
    font-size: 3.6rem;
    line-height: 1.6;
    text-align: center;
}
#page-cbusiness .per-sttl {
    margin-bottom: 25px;
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
}
#page-cbusiness .per-ttl span,
#page-cbusiness .per-sttl span {
    display: inline-block;
}
#page-cbusiness .per-plan-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 35px 60px;
}
#page-cbusiness .per-plan-wrap.starter-plan {
    background: linear-gradient(90deg,#E3EEF4 0%,#E6E5F6 100%);
}
#page-cbusiness .per-plan-wrap.basic-plan {
    background: linear-gradient(90deg,#E3EEF4 0%,#E6E5F6 100%);
}
#page-cbusiness .per-plan-wrap.premiumfull-plan {
    background: linear-gradient(90deg,#E3EEF4 0%,#E6E5F6 100%);
}
#page-cbusiness .per-plan-wrap.total-plan {
    background: linear-gradient(90deg,#E3EEF4 0%,#E6E5F6 100%);
}
#page-cbusiness .per-plan-wrap.starter-plan .per-ttl {
    color: #24A056;
}
#page-cbusiness .per-plan-wrap.basic-plan .per-ttl {
    color: #1351A1;
}
#page-cbusiness .per-plan-wrap.premiumfull-plan .per-ttl {
    color: #9D883F;
}
#page-cbusiness .per-plan-wrap.total-plan .per-ttl {
    color: #4B2E83;
}

#page-cbusiness .per-plan-box {
    display: flex;
    flex-direction: column;
    width: 70%;
    max-width: 70%;
    margin: 35px 0;
    padding: 35px 50px;
    border-radius: 4px;
    background-color: #FFF;
}
#page-cbusiness .per-plan-box + #page-cbusiness .per-plan-box {
    margin-top: 0;
}
#page-cbusiness .plan-outline p {
    margin: 15px 0 !important;
}
#page-cbusiness .per-plan-items {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 15px auto;
    width: 100%;
}
#page-cbusiness .starter-plan .per-plan-items .per-plan-ttl p {
    color: #24A056;
}
#page-cbusiness .basic-plan .per-plan-items .per-plan-ttl p {
    color: #1351A1;
}
#page-cbusiness .premiumfull-plan .per-plan-items .per-plan-ttl p {
    color: #9D883F;
}
#page-cbusiness .per-plan-items .per-plan-txt.fullsize {
    width: 100%;
}
#page-cbusiness .per-plan-items .per-plan-ttl p {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 500;
}
#page-cbusiness .per-plan-items .per-plan-txt p {
    margin: 0;
    font-size: 1.8rem;
}
#page-cbusiness .per-plan-items.per-plan-price .per-plan-txt p span {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 600;
    font-size: 5.0rem;
}
#page-cbusiness .per-plan-items.per-plan-price .per-plan-txt p span:nth-child(2) {
    font-size: 2.4rem;
}
#page-cbusiness .per-plan-items.per-plan-detail .per-plan-txt ul {
    margin-top: 15px;
    width: 100%;
}
#page-cbusiness .per-plan-items.per-plan-detail .per-plan-txt ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px dotted #999;
    margin: 10px 0;
    padding-left: 35px;
    padding-bottom: 9px;
    font-size: 1.6rem;
    line-height: 1.6;
}
#page-cbusiness .starter-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-cbusiness .basic-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-cbusiness .premiumfull-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_gold.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-cbusiness .total-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_purple.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-cbusiness .per-plan-items.per-plan-detail .per-plan-txt ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
}
#page-cbusiness .per-plan-items .per-plan-txt .per-plan-flow-list .per-plan-flow-list-item {
    margin: 15px 0;
}
#page-cbusiness .per-plan-items .per-plan-txt .per-plan-flow-list dt p {
    font-weight: 500;
    font-size: 2.0rem;
}
#page-cbusiness .per-plan-flow-list dd {
    margin: 0;
    padding-left: 1.80em;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #555;
}
#page-cbusiness .per-photo {
	max-width: 1600px;
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	margin: 20px 0;
}
#page-cbusiness .per-photo-ttl {
    margin-bottom: 35px;
    width: 100%;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    color: #2A4A7B;
}
#page-cbusiness .per-photo img {
	width: calc(100% / 2 - 20px);
    border-radius: 8px;
}
#page-cbusiness .notice-box .notice-list {
    display: flex;
    justify-content: center;
}
#page-cbusiness .notice-box .notice-list ul {
    margin: 0 auto;
}
#page-cbusiness .notice-box .notice-list ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px dotted #999;
    margin: 10px 0;
    padding-bottom: 9px;
    font-size: 1.6rem;
    line-height: 1.8;
}
#page-cbusiness .notice-box .notice-list ul li b {
    font-size: 2.0rem;
}
#page-cbusiness .speed-plan {
    margin-top: 50px;
}
#page-cbusiness .speed-plan h3 span {
    font-weight: 600;
}
.speed-plan-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 50px;
    margin: 15px 0 50px;
}
.speed-plan-item {
    flex: 0 0 640px;
}
.speed-plan-item .sp-ttl {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 2.0rem;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    background-color: #666;
    color: #FFF;
}
#page-cbusiness .speed-plan .sp-price {
    text-align: center;
}
#page-cbusiness .speed-plan .sp-price b {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 600;
    font-size: 5.0rem;
}
.speed-plan-item ul {
    margin-top: 15px;
    width: 100%;
}
.speed-plan-item ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px dotted #999;
    margin: 10px 0;
    padding-bottom: 9px;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 1.6rem;
    line-height: 1.6;
}
#page-cbusiness .contact-tel-box {
    margin: 35px 0;
    text-align: center;
}
#page-cbusiness .contact-tel-box dl dt {
    margin-bottom: 15px;
    font-size: 2.0rem;
    font-weight: 500;
}
#page-cbusiness .contact-tel-box dl dd a {
    display: inline-block;
    padding: 20px 30px;
    font-size: 2.0rem;
    font-weight: 500;
    background-color: #111;
    color: #FFF;
    text-decoration: none;
}
#page-cbusiness .contact-tel-box dl dd + dd {
    margin-top: 15px;
}
#page-cbusiness .contact-tel-box dl dd p {
    margin: 0;
}




@media screen and (max-width:1280px) {
#page-cbusiness .per-plan-box {
    width: 70%;
    max-width: 70%;
}
}
@media screen and (max-width:960px) {
#page-cbusiness .per-plan-box {
    width: 80%;
    max-width: 80%;
}

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

#page-cbusiness .page-contents-inner {
    padding: 35px 0;
}
#page-cbusiness .page-personal-subwrap {
    margin: 0 20px;
}

#page-cbusiness #page-header-vis {
    height: 100vw;
}
#page-cbusiness .page-header-copy {
    padding: 0;
}
#page-cbusiness .page-header-copy h1 {
    font-size: clamp(1.8rem, 7vw, 4.6rem);
    font-weight: 500;
}
#page-cbusiness .page-header-copy h1 span {
    font-size: clamp(3.2rem, 8vw, 6.0rem);
}
#page-cbusiness .top-copy {
    margin: 0 20px 50px;
}
#page-cbusiness .top-copy p {
    font-size: 1.5rem;
}
#page-cbusiness .per-ttl {
    padding: 0 15px;
    margin-bottom: 25px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}
#page-cbusiness .per-ttl span {
    display: inline-block;
}
#page-cbusiness .per-sttl {
    margin-bottom: 15px;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}
#page-cbusiness .per-plan-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 20px 20px;
}
#page-cbusiness .per-plan-box {
    width: 100%;
    max-width: 100%;
    margin: 15px 0;
    padding: 30px 15px;
}
#page-cbusiness .per-plan-box + #page-cbusiness .per-plan-box {
    margin-top: 0;
}
#page-cbusiness .plan-outline p {
    font-size: clamp(1.6rem, calc(1.5rem + 0.5vw), 1.8rem);
}
#page-cbusiness .per-plan-items {
    margin: 15px 0;
}
#page-cbusiness .per-plan-items .per-plan-ttl p {
    font-size: clamp(2.0rem, 4vw, 2.4rem);
    text-align: center;
}
#page-cbusiness .per-plan-items .per-plan-ttl p span {
    display: inline-block;
}
#page-cbusiness .per-plan-items .per-plan-txt p {
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 1.8rem);
}
#page-cbusiness .per-plan-items.per-plan-price .per-plan-txt p span {
    font-size: clamp(3.6rem, 7vw, 5.0rem);
}
#page-cbusiness .per-plan-items.per-plan-detail .per-plan-txt ul {
    margin-top: 15px;
    width: 100%;
}
#page-cbusiness .per-plan-items.per-plan-detail .per-plan-txt ul li {
    margin: 10px 0;
    padding-left: 35px;
    padding-bottom: 9px;
    font-size: clamp(1.6rem, calc(1.5rem + 0.5vw), 1.8rem);
}
#page-cbusiness .starter-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-cbusiness .premiumfull-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_gold.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-cbusiness .per-plan-items .per-plan-txt .per-plan-flow-list .per-plan-flow-list-item {
    margin: 15px 0;
}
#page-cbusiness .per-plan-items .per-plan-txt .per-plan-flow-list dt p {
    font-weight: 500;
    font-size: clamp(1.6rem, calc(1.5rem + 0.5vw), 1.8rem);
}
#page-cbusiness .per-plan-flow-list dd {
    padding-left: clamp(1.6em, calc(1.5em + 0.5vw), 1.8em);
    font-size: clamp(1.6rem, calc(1.5rem + 0.5vw), 1.8rem);
}
#page-cbusiness .per-photo {
	max-width: none;
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
}
#page-cbusiness .per-photo + .per-photo {
    margin-top: -20px;
}
#page-cbusiness .per-photo-ttl {
    margin-bottom: 15px;
    width: 100%;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}
#page-cbusiness .per-photo img {
    margin: 10px 0;
	width: 100%;
    border-radius: 8px;
}
#page-cbusiness .notice-box {
    padding: 0 20px;
}
#page-cbusiness .notice-box .notice-list {
    display: flex;
    justify-content: center;
}
#page-cbusiness .notice-box .notice-list ul {
    margin: 0 auto;
}
#page-cbusiness .notice-box .notice-list ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px dotted #999;
    margin: 10px 0;
    padding-bottom: 9px;
    font-size: 1.6rem;
    line-height: 1.8;
}
#page-cbusiness .notice-box .notice-list ul li b {
    font-size: 1.8rem;
}


#page-cbusiness .speed-plan {
    margin-top: 50px;
}
#page-cbusiness .speed-plan h3 span {
    font-size: 2.4rem;
    font-weight: 600;
    display: inline-block;
}
.speed-plan-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px 0;
    margin: 15px 0 50px;
}
.speed-plan-item {
    flex: 1 1 100%;
}
.speed-plan-item .sp-ttl {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 1.8rem;
}
.speed-plan-item .sp-ttl span {
    display: inline-block;
}
#page-cbusiness .speed-plan .sp-price b {
    font-size: clamp(3.6rem, 7vw, 5.0rem);
}
#page-cbusiness .speed-plan .sp-price span {
    font-size: 1.6rem;
    display: block;
}

.speed-plan-item ul {
    margin-top: 15px;
    width: 100%;
}
.speed-plan-item ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px dotted #999;
    margin: 10px 0;
    padding-bottom: 9px;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 1.6rem;
    line-height: 1.6;
}



#page-cbusiness .contact-tel-box {
    margin: 35px 0;
}
#page-cbusiness .contact-tel-box dl dt {
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: center;
}
#page-cbusiness .contact-tel-box dl dd {
    text-align: center;
}
#page-cbusiness .contact-tel-box dl dd a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.8rem;
    font-weight: 500;
    background-color: #111;
    color: #FFF;
    text-decoration: none;
}
#page-cbusiness .contact-tel-box dl dd + dd {
    margin-top: 15px;
}
#page-cbusiness .contact-tel-box dl dd p {
    margin: 0;
}

}



/* interior coordinate(personal)
=============================================== */

#page-personal #page-header-vis {
    position: relative;
    width: 100%;
    height: 600px;
}
#page-personal #page-header-vis-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#page-personal #page-header-vis-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#page-personal .page-header-copy {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
}
#page-personal .page-header-copy h1 {
    font-size: 4.6rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    color: #FFF;
}
#page-personal .page-header-copy h1 span {
    font-size: 6.0rem;
}
#page-personal .page-contents-txt {
    max-width: none;
}
#page-personal .per-ttl {
    margin-bottom: 35px;
    font-size: 3.6rem;
    line-height: 1.6;
    text-align: center;
}
#page-personal .per-sttl {
    margin-bottom: 25px;
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
}
#page-personal .per-plan-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px -60px 50px -60px;
    padding: 35px 60px;
}
#page-personal .per-plan-wrap.starter-plan {
    background-color: #F9F3EB;
}
#page-personal .per-plan-wrap.basic-plan {
    background-color: #F9F3EB;
}
#page-personal .per-plan-wrap.premiumfull-plan {
    background-color: #F9F3EB;
}
#page-personal .per-plan-box {
    display: flex;
    flex-direction: column;
    width: 60%;
    max-width: 60%;
    margin: 35px 0;
    padding: 25px 50px;
    border-radius: 4px;
    background-color: #FFF;
}
#page-personal .per-plan-box + #page-personal .per-plan-box {
    margin-top: 0;
}
#page-personal .per-plan-items {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 15px auto;
    width: 100%;
}
#page-personal .starter-plan .per-plan-items .per-plan-ttl p {
    color: #24A056;
}
#page-personal .basic-plan .per-plan-items .per-plan-ttl p {
    color: #1351A1;
}
#page-personal .premiumfull-plan .per-plan-items .per-plan-ttl p {
    color: #9D883F;
}
#page-personal .per-plan-items .per-plan-txt.fullsize {
    width: 100%;
}
#page-personal .per-plan-items .per-plan-ttl p {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 500;
}
#page-personal .per-plan-items .per-plan-txt p {
    margin: 0;
    font-size: 1.8rem;
}
#page-personal .per-plan-items.per-plan-price .per-plan-txt p span {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 600;
    font-size: 5.0rem;
}
#page-personal .per-plan-items.per-plan-price .per-plan-txt p span:nth-child(2) {
    font-size: 2.4rem;
}
#page-personal .per-plan-items.per-plan-detail .per-plan-txt ul {
    margin-top: 15px;
    width: 100%;
}
#page-personal .per-plan-items.per-plan-detail .per-plan-txt ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px dotted #999;
    margin: 10px 0;
    padding-left: 35px;
    padding-bottom: 9px;
    font-size: 1.6rem;
    line-height: 1.6;
}
#page-personal .starter-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-personal .basic-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-personal .premiumfull-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_gold.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-personal .per-plan-items.per-plan-detail .per-plan-txt ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
}
#page-personal .per-plan-items .per-plan-txt .per-plan-flow-list .per-plan-flow-list-item {
    margin: 15px 0;
}
#page-personal .per-plan-items .per-plan-txt .per-plan-flow-list dt p {
    font-weight: 500;
    font-size: 2.0rem;
}
#page-personal .per-plan-flow-list dd {
    margin: 0;
    padding-left: 1.80em;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #555;
}
#page-personal .per-photo {
	max-width: 1600px;
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	margin: 20px 0;
}
#page-personal .per-photo-ttl {
    margin-bottom: 35px;
    width: 100%;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    color: #68501B;
}
#page-personal .per-photo img {
	width: calc(100% / 2 - 20px);
    border-radius: 8px;
}
#page-personal .notice-box .notice-list {
    display: flex;
    justify-content: center;
}
#page-personal .notice-box .notice-list ul {
    margin: 0 auto;
}
#page-personal .notice-box .notice-list ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px dotted #999;
    margin: 10px 0;
    padding-bottom: 9px;
    font-size: 1.6rem;
    line-height: 1.8;
}
#page-personal .notice-box .notice-list ul li b {
    font-size: 2.0rem;
}

#page-personal .contact-tel-box {
    margin: 35px 0;
    text-align: center;
}
#page-personal .contact-tel-box dl dt {
    margin-bottom: 15px;
    font-size: 2.0rem;
    font-weight: 500;
}
#page-personal .contact-tel-box dl dd a {
    display: inline-block;
    padding: 20px 30px;
    font-size: 2.0rem;
    font-weight: 500;
    background-color: #111;
    color: #FFF;
    text-decoration: none;
}
#page-personal .contact-tel-box dl dd + dd {
    margin-top: 15px;
}
#page-personal .contact-tel-box dl dd p {
    margin: 0;
}




@media screen and (max-width:1280px) {
#page-personal .per-plan-box {
    width: 70%;
    max-width: 70%;
}
}
@media screen and (max-width:960px) {
#page-personal .per-plan-box {
    width: 80%;
    max-width: 80%;
}

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

#page-personal .page-contents-inner {
    padding: 35px 0;
}
#page-personal .page-personal-subwrap {
    padding: 0 20px;
}
#page-personal #page-header-vis {
    height: 100vw;
}
#page-personal .page-header-copy {
    padding: 0 30px;
}
#page-personal .page-header-copy h1 {
    font-size: clamp(1.8rem, 7vw, 4.6rem);
    font-weight: 500;
}
#page-personal .page-header-copy h1 span {
    font-size: clamp(3.2rem, 8vw, 6.0rem);
}
#page-personal .per-ttl {
    padding: 0 15px;
    margin-bottom: 25px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}
#page-personal .per-ttl span {
    display: inline-block;
}
#page-personal .per-sttl {
    margin-bottom: 15px;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}
#page-personal .per-plan-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 25px 0 0;
    padding: 20px 20px;
}
#page-personal .per-plan-box {
    width: 100%;
    max-width: 100%;
    margin: 15px 0;
    padding: 15px 15px;
}
#page-personal .per-plan-box + #page-personal .per-plan-box {
    margin-top: 0;
}
#page-personal .per-plan-items {
    margin: 15px 0;
}
#page-personal .per-plan-items .per-plan-ttl p {
    font-size: clamp(2.0rem, 4vw, 2.4rem);
    text-align: center;
}
#page-personal .per-plan-items .per-plan-ttl p span {
    display: inline-block;
}
#page-personal .per-plan-items .per-plan-txt p {
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 1.8rem);
}
#page-personal .per-plan-items.per-plan-price .per-plan-txt p span {
    font-size: clamp(3.6rem, 7vw, 5.0rem);
}
#page-personal .per-plan-items.per-plan-detail .per-plan-txt ul {
    margin-top: 15px;
    width: 100%;
}
#page-personal .per-plan-items.per-plan-detail .per-plan-txt ul li {
    margin: 10px 0;
    padding-left: 35px;
    padding-bottom: 9px;
    font-size: clamp(1.6rem, calc(1.5rem + 0.5vw), 1.8rem);
}
#page-personal .starter-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_green.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-personal .premiumfull-plan .per-plan-items.per-plan-detail .per-plan-txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    height: 20px;
    aspect-ratio: 30 / 27;
    background-image: url('../img/common/icon_check_gold.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
#page-personal .per-plan-items .per-plan-txt .per-plan-flow-list .per-plan-flow-list-item {
    margin: 15px 0;
}
#page-personal .per-plan-items .per-plan-txt .per-plan-flow-list dt p {
    font-weight: 500;
    font-size: clamp(1.6rem, calc(1.5rem + 0.5vw), 1.8rem);
}
#page-personal .per-plan-flow-list dd {
    padding-left: clamp(1.6em, calc(1.5em + 0.5vw), 1.8em);
    font-size: clamp(1.6rem, calc(1.5rem + 0.5vw), 1.8rem);
}
#page-personal .per-photo {
	max-width: none;
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
}
#page-personal .per-photo + .per-photo {
    margin-top: -20px;
}
#page-personal .per-photo-ttl {
    margin-bottom: 15px;
    width: 100%;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    color: #68501B;
}
#page-personal .per-photo img {
    margin: 10px 0;
	width: 100%;
    border-radius: 8px;
}
#page-personal .notice-box {
    padding: 0 20px;
}
#page-personal .notice-box .notice-list {
    display: flex;
    justify-content: center;
}
#page-personal .notice-box .notice-list ul {
    margin: 0 auto;
}
#page-personal .notice-box .notice-list ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px dotted #999;
    margin: 10px 0;
    padding-bottom: 9px;
    font-size: 1.6rem;
    line-height: 1.8;
}
#page-personal .notice-box .notice-list ul li b {
    font-size: 1.8rem;
}
#page-personal .contact-tel-box {
    margin: 35px 0;
}
#page-personal .contact-tel-box dl dt {
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: center;
}
#page-personal .contact-tel-box dl dd {
    text-align: center;
}
#page-personal .contact-tel-box dl dd a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.8rem;
    font-weight: 500;
    background-color: #111;
    color: #FFF;
    text-decoration: none;
}
#page-personal .contact-tel-box dl dd + dd {
    margin-top: 15px;
}
#page-personal .contact-tel-box dl dd p {
    margin: 0;
}

}





/* mics terrasse otaru single page
=============================================== */

.btn-airbnb {
    margin: 50px 0;
    text-align: center;
}
.btn-airbnb a {
    border-radius: 50px;
    padding: 15px 100px;
    font-size: 2.0rem;
    background-color: #FF385C;
    color: #FFF;
    text-decoration: none;
}
.btn-airbnb a:hover {
    background-color: #E0314B;
}
.mics-terrasse-header-vis {
    position: relative;
    width: 100%;
    height: 600px;
}
.mics-terrasse-header-vis-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mics-terrasse-header-vis-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mics-terrasse-header-copy {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
}
.mics-terrasse-header-copy h1 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 6.0rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    color: #FFF;
}
.mics-terrasse-header-copy h1 span {
    font-size: 4.8rem;
}
.mt-ttl {
    margin-bottom: 35px;
    font-size: 3.6rem;
    line-height: 1.6;
    text-align: center;
}
.mt-sttl {
    margin-bottom: 25px;
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
}

#page-mics-terrasse .page-contents-inner {
    max-width: 1280px;
    margin: auto;
    padding-right: 60px;
}
#page-mics-terrasse .page-contents-txt {
    max-width: none;
}
.mics-terrasse-msg {
    margin-bottom: 75px;
}
.mics-terrasse-msg p {
    margin: .5em 0;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
}
.about-mics-terrasse {
    margin-bottom: 75px;
}
.about-mics-terrasse-img {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}
.about-mics-terrasse-img picture {
    width: calc(100% / 4 - 2px);
}
.about-mics-terrasse-img img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1;
}
.about-mics-terrasse-txt {
    padding-top: 30px;
}
.about-mics-terrasse-txt p {
    margin: .5em 0;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
}
.mics-terrasse-showcase-wrap {
    margin-bottom: 75px;
}
.mics-terrasse-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}
.mics-terrasse-showcase div {
    width: calc(100% / 4 - 2px);
}
.mics-terrasse-showcase div img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1;
}
.mics-terrasse-showcase div:last-child {
    display: none;
}
.mics-terrasse-info {
    margin-bottom: 75px;
}
.mt-map {
	position: relative;
	margin: 0 auto 30px;
	max-width: 800px;
	padding-top: 45%;
}
.mt-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.mt-location {
    text-align: center;
}
.mt-location dt {
    margin-bottom: 15px;
    font-size: 2.4rem;
    font-weight: 500;
}
.mt-location dd {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 400;
}


@media screen and (max-width:1280px) {
}
@media screen and (max-width:960px) {
}
@media screen and (max-width:767px) {

#page-mics-terrasse .page-contents-inner {
    padding: 35px 0;
}
#page-mics-terrasse .page-personal-subwrap {
    padding: 0 20px;
}

.mics-terrasse-header-vis {
    height: 100vw;
}
.mics-terrasse-header-copy {
    padding: 0 30px;
}
.mics-terrasse-header-copy h1 {
    padding: 0;
    font-size: clamp(1.8rem, 7vw, 4.6rem);
    font-weight: 500;
}
.mics-terrasse-header-copy h1 span {
    font-size: clamp(1.8rem, 7vw, 4.6rem);
}
.mt-ttl {
    padding: 0 20px;
    margin-bottom: 25px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}
.btn-airbnb {
    margin: 50px 0;
    padding: 0 20px;
    text-align: center;
}
.btn-airbnb a {
    display: inline-block;
    width: 100%;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 1.8rem;
}
.mics-terrasse-msg {
    margin-bottom: 50px;
    padding: 0 20px;
}
.mics-terrasse-msg p {
    margin: .5em 0;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
}
.about-mics-terrasse {
    margin-bottom: 50px;
}
.about-mics-terrasse-img {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}
.about-mics-terrasse-img picture {
    width: calc(100% / 2 - 2px);
}
.about-mics-terrasse-img img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1;
}
.about-mics-terrasse-txt {
    padding: 20px 20px 0;
}
.about-mics-terrasse-txt p {
    margin: .5em 0;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
}
.mics-terrasse-showcase-wrap {
    margin-bottom: 50px;
}
.mics-terrasse-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}
.mics-terrasse-showcase div {
    width: calc(100% / 3 - 2px);
}
.mics-terrasse-showcase div img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1;
}
.mics-terrasse-showcase div:last-child {
    display: none;
}
.mics-terrasse-info {
    margin-bottom: 30px;
}
.mt-map {
	position: relative;
	margin: 0 20px 20px;
	padding-top: 100%;
}
.mt-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.mt-location {
    text-align: center;
}
.mt-location dt {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 400;
}
.mt-location dd {
    font-size: 1.5rem;
    font-weight: 400;
}

}




/* minpaku page
=============================================== */

.btn-minpaku {
    margin: 50px 0;
    text-align: center;
}
.btn-minpaku a {
    padding: 25px 100px;
    font-size: 2.0rem;
    border-radius: 8px;
    background-color: #111;
    color: #FFF;
    text-decoration: none;
}
.btn-minpaku a:hover {
    background-color: #333;
}
.minpaku-header-vis {
    position: relative;
    width: 100%;
    height: 600px;
}
.minpaku-header-vis-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.minpaku-header-vis-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.minpaku-header-copy {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
}
.minpaku-header-copy h1 {
    font-size: 6.0rem;
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    color: #FFF;
}
.minpaku-header-copy h1 span {
    font-size: 2.8rem;
}
.minpaku-ttl {
    margin-bottom: 35px;
    font-size: 3.6rem;
    line-height: 1.6;
    text-align: center;
}
.minpaku-sttl {
    margin-bottom: 25px;
    font-size: 2.8rem;
    line-height: 1.6;
    text-align: center;
}
#page-minpaku .page-contents-inner {
    max-width: 1280px;
    margin: auto;
    padding: 100px 0;
}
#page-minpaku .page-contents-txt {
    max-width: none;
}
.minpaku-img {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}
.minpaku-img picture {
    width: calc(100% / 2 - 25px);
}
.minpaku-img img {
	object-fit: cover;
	width: 100%;
    border-radius: 8px;
}

.minpaku-msg {
    margin-bottom: 100px;
}
.minpaku-msg-txt {
    padding: 15px 0;
}
.minpaku-msg-txt p {
    margin: .5em 0;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}
.minpaku-msg-txt p.lead {
    margin-bottom: 25px;
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
}
.minpaku-problems {
    padding: 100px 60px;
    background-color: #F9F9F9;
}
.minpaku-problems-list {
    margin: 50px 0 50px;
    display: flex;
    justify-content: center;
}
.minpaku-problems-list ul {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}
.minpaku-problems-list li {
    position: relative;
    list-style: none;
    padding-left: 1em;
    border-left: 5px solid #b8980a;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
}
.minpaku-reason {
    margin-bottom: 100px;
    padding-top: 100px;
    padding-left: 60px;
    padding-right: 60px;
}
.minpaku-reason-item-wrap {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.minpaku-reason-item {
    overflow: hidden;
    flex: 0 0 calc((100% / 2) - 25px);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    scroll-snap-align: center;
    background: #FFF 50% 50% / cover no-repeat;
}
.minpaku-reason-item .reason-ttl {
    padding: .75em .75em;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    color: #FFF;
    background-color: #111;
}
.minpaku-reason-item .reason-txt {
    padding: 30px;
}
.minpaku-reason-item .reason-txt p {
    font-size: 1.8rem;
    line-height: 1.6;
}
.page-minpaku-notice {
    margin: 0;
    padding: 30px 60px 0;
    background-color: #FFF;
}



@media screen and (max-width:1280px) {
}
@media screen and (max-width:960px) {
}
@media screen and (max-width:767px) {

#page-minpaku .page-contents-inner {
    padding: 35px 0;
}
#page-minpaku .page-personal-subwrap {
    padding: 0 20px;
}
.btn-minpaku {
    margin: 50px 0;
    padding: 0 20px;
    text-align: center;
}
.btn-minpaku a {
    display: inline-block;
    width: 100%;
    padding: 25px 20px;
    font-size: 1.8rem;
}
.minpaku-header-vis {
    height: 100vw;
}
.minpaku-header-copy {
    padding: 0 30px;
}
.minpaku-header-copy h1 {
    padding: 0 0 0;
    font-size: clamp(3.0rem, 4vw, 6rem);
    font-weight: 500;
    line-height: 1.2;
}
.minpaku-header-copy h1 span {
    display: inline-block;
    font-size: clamp(1.6rem, 7vw, 1.8rem);
}
.minpaku-header-copy h1 span:nth-of-type(2) {
    padding-bottom: 2em;
}
.minpaku-ttl {
    padding: 0;
    margin-bottom: 25px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}
.minpaku-sttl {
    margin-bottom: 25px;
    font-size: 1.8rem;
}
.minpaku-img {
    margin: 35px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}
.minpaku-img picture {
    width: 100%;
}
.minpaku-msg {
    margin-bottom: 0;
    padding: 0 20px;
}
.minpaku-msg-txt {
    padding: 0;
}
.minpaku-msg-txt p {
    margin: .5em 0;
    font-size: 1.6rem;
    line-height: 1.7;
    text-align: left;
}
.minpaku-msg-txt p.lead {
    margin-bottom: 25px;
    font-size: 1.8rem;
}
.minpaku-problems {
    padding: 50px 20px;
}
.minpaku-problems-list {
    margin: 35px 0;
    display: flex;
    justify-content: center;
}
.minpaku-problems-list ul {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}
.minpaku-problems-list li {
    position: relative;
    list-style: none;
    padding-left: .75em;
    border-left: 3px solid #b8980a;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
}
.minpaku-reason {
    margin-bottom: 50px;
    padding: 50px 20px 0;
}
.minpaku-reason-item-wrap {
    margin: 0 0 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.minpaku-reason-item {
    overflow: hidden;
    flex: 0 0 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    scroll-snap-align: center;
    background: #FFF 50% 50% / cover no-repeat;
}
.minpaku-reason-item .reason-ttl {
    padding: .75em .75em;
    font-size: 2.0rem;
    font-weight: 500;
}
.minpaku-reason-item .reason-txt {
    padding: 20px;
}
.minpaku-reason-item .reason-txt p {
    font-size: 1.6rem;
    line-height: 1.7;
}
.page-minpaku-notice {
    margin: 0;
    padding: 0 20px;
    background-color: #FFF;
}


}
