/*
Theme Name: mlct 
Description: cunelwork client theme
Author: cunelwork
Version: 0.1.1
 */

/* ============================
	common
============================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
	--leading-trim: calc((1em - 1lh) / 2);
	--main-color: #1e298e;
	--sub-color: #6da7f4;
	--main-text-color: #202227;
	--bg-color: #fff;
	--border-color: #f0f0f0;
	--tag-color: #BFD1E2;
	--blue: #3e5ca0;
	--white: #fff;
	--container-size: 1000px;
	--container-padding: 20px;
}

.poppins {
	font-family: "Poppins", sans-serif;
}

.flex-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.ofi {
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

.bold {
  font-weight: 700;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/* ============================
	sp-menu
============================ */
#sp-menu {
  box-sizing: border-box;
  position: fixed;
  transition: all 0.3s ease;
  top: 60px;
  left: 0;
  background-color: var(--white);
  width: 100%;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
	z-index: 10;
}

#sp-menu.opening {
  opacity: 1;
  pointer-events: auto;
  height: calc(100dvh - 60px);
	overflow-y: auto;
}

#sp-menu ul {
	margin-inline: auto;
	max-width: 500px;
}

#sp-menu .menu-item a {
  text-align: left;
  line-height: 1;
  display: block;
  width: 100%;
  padding: 15px 0;
  font-weight: 700;
}

#sp-menu .sub-menu li {
	column-gap: 10px;
	display: flex;
	position: relative;
}

#sp-menu .sub-menu li::before {
	border: 1px solid var(--sub-color);
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	content: "";
	display: block;
	height: 7px;
	position: relative;
	top: 21px;
	transform: rotate(45deg);
	transform-origin: center;
	width: 7px;
}

#sp-menu .sp-contact-box {
  margin: 30px 0 0;
}

#sp-menu .sp-contact-box a {
  box-sizing: border-box;
  display: block;
  background-color: var(--main-color);
	line-height: 1.4;
	margin-inline: auto;
	max-width: 500px;
  text-align: center;
  padding: 6px 0;
}

#sp-menu .sp-contact-box a span {
	color: #fff;
	font-size: 1.5rem;

}

/* btn-hamburger */
#btn-hamburger {
  position: relative;
  top: 0;
  right: 0;
  background-color: var(--main-color);
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
}

#btn-hamburger .border {
  position: absolute;
  left: 15px;
  transition: opacity, transform 0.2s ease;
  background: #fff no-repeat left top;
  width: 30px;
  height: 2px;
  z-index: 1;
}

#btn-hamburger .border:first-child {
  top: 33%;
}

#btn-hamburger .border:nth-child(2) {
  transform: rotate(0);
  opacity: 1;
  top: 50%;
}

#btn-hamburger .border:nth-child(3) {
  top: 67%;
}

#btn-hamburger.opening .border:first-child {
  transform: rotate(45deg);
  top: 50%;
}

#btn-hamburger.opening .border:nth-child(2) {
  opacity: 0;
}

#btn-hamburger.opening .border:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

/* ============================
	header
============================ */
#header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header.h-fixed {
  position: fixed;
}

#header .h-inner {
	background-color: var(--white);
	box-shadow: 0 1px 1px 0 rgb(64 42 38 / 0.2);
	align-items: center;
	display: flex;
	justify-content: space-between;
  padding: 0 0 0 20px;
	width: 100%;
}

#h-site-logo img {
	height: auto;
	max-width: 311px;
	width: 100%;
}

@media screen and (max-width: 767px) {
	#h-site-logo img {
		max-width: 230px;
	}
}

#h-gnav-box {
	column-gap: 36px;
	display: flex;
}

#h-gnav-box .menu-item a {
  font-size: 1.6rem;
  font-weight: 700;
}

@media (hover: hover) {
	#h-gnav-box .menu-item a:hover {
		color: var(--main-color);
		opacity: 1;
	}
}

#h-gnav-contact a {
  display: block;
  box-sizing: border-box;
  background-color: var(--main-color);
  text-align: center;
  font-weight: 700;
  line-height: 1;
  width: 220px;
  height: 100%;
  padding: 18.5px 0;
}

#h-gnav-contact a span {
	color: var(--white);
	font-size: 1.8rem;
	line-height: 1.2;
}

@media screen and (max-width: 767px) {
  #header {
    margin: 0 auto;
    right: 0;
  }

  #header .h-inner {
    padding: 0 0 0 10px;
  }
}

#menu-header-nav {
	align-items: center;
	column-gap: 36px;
	display: flex;
}

#header .h-inner #menu-header-nav .menu-item.item-business {
	cursor: pointer;
	position: relative;
	transition: all .2s;
}

#header .h-inner #menu-header-nav .menu-item.menu-item-has-children a {
	align-items: center;
	column-gap: 15px;
	display: flex;
	position: relative;
	z-index: 1;
}

#header .h-inner #menu-header-nav .menu-item.menu-item-has-children > a::after {
	background-image: url("./images/common/arrow_down.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 8px;
	width: 12px;
}

@media (hover: hover) {
	#header .h-inner #menu-header-nav .menu-item.menu-item-has-children:hover .sub-menu {
	  opacity: 1;
	  visibility: visible;
	  translate: -50% 100%;
	}
}

#header .h-inner #menu-header-nav .sub-menu {
	background-color: var(--white);
	bottom: 5px;
	cursor: default;
	left: 50%;
	opacity: 0;
	padding: 30px 20px 10px;
	position: absolute;
	translate: -50% 100%;
	transition: opacity 0.4s ease, visibility 0.4s ease, translate 0.4s ease;
	visibility: hidden;
	width: max-content;
	z-index: 1;
}

#header .h-inner #menu-header-nav .sub-menu .menu-item {
	border-bottom: 1px solid rgb(44 42 42 / 0.2);
	padding: 5px 0;
	position: relative;
}

#header .h-inner #menu-header-nav .sub-menu .menu-item::before {
	border: 1px solid var(--sub-color);
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	content: "";
	display: block;
	height: 8px;
	position: absolute;
	left: 0;
	top: 14px;
	transform: rotate(45deg);
	transform-origin: center;
	width: 8px;
}

#header .h-inner #menu-header-nav .sub-menu .menu-item:last-child {
	border-bottom: none;
}

#header .h-inner #menu-header-nav .sub-menu .menu-item a {
	font-size: 1.3rem;
	font-weight: 400;
	margin-left: 1.25em;
	padding-right: .5em;
}

@media (hover: hover) {
	#header .h-inner #menu-header-nav .sub-menu .menu-item a:hover {
		color: var(--main-color);
		font-weight: 500;
		opacity: 1;
	}
}


/* ============================
	footer
============================ */
#footer {
	background-color: #303745;
}

#footer .content-width {
	position: relative;
}

#footer .f-inner {
	padding: 60px 0 80px;
}

#footer .f-content {
	column-gap: 40px;
	display: flex;
	justify-content: space-between;
}

#footer .wrap-company-contents {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#footer .wrap-company-contents .company-contents img {
	height: auto;
	max-width: 297px;
	width: 100%;
}

#footer .f-content .company-information {
	margin-top: 30px;
}

#footer .f-content .company-information .name {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 700;
}

#footer .f-content .company-information address {
	color: var(--white);
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 400;
}

#footer .f-content .company-information .tel {
	line-height: 1.8;
	margin-top: 10px;
}

#footer .f-content .company-information .tel + .tel {
	margin-top: 0;
}

#footer .f-content .company-information .tel span {
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 500;
}

#footer .f-content .company-information .tel span + span {
	margin-left: 1em;
}

#footer .f-content .footer-nav-container {
	border-bottom: 1px solid var(--white);
	padding-bottom: 15px;
}

#footer .f-content .footer-nav-container .footer-nav {
	column-gap: 60px;
	display: flex;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list li + li {
	margin-top: 20px;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list a {
	color: var(--white);
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list .sub-menu {
	margin-left: 1em;
	margin-top: 20px;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list .sub-menu li + li {
	margin-top: 15px;
}

#footer .f-content .footer-nav-container .footer-nav .footer-nav-list .sub-menu a {
	display: block;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.4;
}

#footer .f-content .footer-nav-container .wrap-link {
	margin-top: 75px;
}

#footer .f-content .footer-nav-container .wrap-link .c-link {
	justify-content: space-between;
}

#footer .f-content .footer-nav-container .wrap-link .c-link .circle {
	background-color: #454B58;
	border: none;
}

@media (hover: hover) {
	#footer .f-content .footer-nav-container .wrap-link .c-link:hover .circle {
		background-color: var(--white);
	}
	
	#footer .f-content .footer-nav-container .wrap-link .c-link:hover .arrow {
		background-color: #454B58;
	}
}

#footer .f-content .footer-nav-container .wrap-link a .text {
	color: var(--white);
	font-size: 1.8rem;
}

#footer .f-content .footer-nav-container .wrap-link a .text span {
	color: var(--white);
	display: block;
	font-size: 1.4rem;
	font-weight: 300;
}

@media screen and (max-width: 767px) {
	#footer .f-content .footer-nav-container {
		width: 100%;
	}
	
	#footer .f-content .footer-nav-container .footer-nav {
		column-gap: 30px;
	}
	
	#footer .f-content .footer-nav-container .footer-nav .footer-nav-list a {
		font-size: 1.4rem;
	}
	
	#footer .f-content .footer-nav-container .wrap-link {
		margin-top: 30px;
	}
}

#copyright p {
  color: var(--white);
  font-size: 1.3rem;
	font-weight: 300;
  margin: 0;
}

#footer .page-top {
	align-items: center;
	background-color: #303745;
	border: 3px solid var(--white);
	border-radius: 50%;
	box-shadow: 0 2px 4px 4px rgb(64 42 38 / 0.2);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 2px;
	height: 80px;
	justify-content: center;
	right: -30px;
	position: absolute;
	top: -40px;
	transition: all 0.2s;
	width: 80px;
	z-index: 1;
}

#footer .page-top img {
	transform: translateY(0);
	transition: transform 0.4s;
}

#footer .page-top span {
	color: var(--white);
	font-size: 1.6rem;
	line-height: 1.5;
}

@media (hover: hover) {
	#footer .page-top:hover img {
		transform: translateY(-5px);
	}
}

@media screen and (max-width: 1129px) {
	#footer .page-top {
		right: 10px;
	}
}

@media screen and (max-width: 767px) {
  #footer .f-inner {
    padding: 60px 0 20px;
  }
	
	#footer .f-content {
		flex-wrap: wrap-reverse;
		row-gap: 60px;
	}
	
	#footer .wrap-company-contents {
		row-gap: 40px;
	}
}

/* ============================
	mainvisual
============================ */
.mainvisual {
  width: 100%;
  margin: 80px 0 0;
}

#top-mv .mv-inner {
  height: 600px;
  background-color: #e1e1e1;
}

@media screen and (max-width: 1000px) {
	.mainvisual {
		margin: 60px 0 0;
	}
}

@media screen and (max-width: 767px) {
  #top-mv .mv-inner {
    height: 300px;
  }
}


.page-mv.mainvisual {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.page-mv.mainvisual::before {
	background: linear-gradient(90deg,rgba(80, 88, 98, 1) 0%, rgba(255, 255, 255, 0.1) 100%);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: .5;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

.page-mv.mainvisual .mv-inner {
	position: relative;
	z-index: 3;
}

.page-mv.mainvisual .mv-inner .content-width {
	align-items: center;
	display: flex;
	height: 300px;
}

.page-mv.mainvisual .mv-inner .content-width .page-ttl {
	color: var(--white);
	display: block;
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 1.3;
}

.page-mv.mainvisual .mv-inner .content-width .page-sub-ttl {
	background: linear-gradient(90deg,rgba(199, 223, 255, 1) 0%, rgba(213, 255, 247, 1) 100%);
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	margin-top: 16px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
	.page-mv.mainvisual .mv-inner .content-width {
		height: 200px;
	}
	
	.page-mv.mainvisual .mv-inner .content-width .page-ttl {
		font-size: 3rem;
	}
	
	.page-mv.mainvisual .mv-inner .content-width .page-sub-ttl {
		font-size: 1.4rem;
		margin-top: 8px;
	}
}

body.category .link-info .category-list {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	line-height: 1;
}

body.category .link-info .category-list a {
	border: 1px solid var(--tag-color);
	border-radius: 15px;
	color: var(--main-text-color);
	font-size: 1.3rem;
	display: block;
	padding: 7px 25px;
	text-align: center;
	transition: all .2s;
	width: fit-content;
}

body.category .link-info .category-list a.active {
	border-color: var(--sub-color);
	color: var(--sub-color);
}

body.category .info-list {
	margin-top: 30px;
}

/* ============================
	section
============================ */
.sec-inner {
  padding: 80px 0;
}

.sec-ttl {
  text-align: center;
  margin: 0;
}

.content-width {
  box-sizing: border-box;
  width: min(100%, calc(var(--container-size) + var(--container-padding) * 2));
  padding: 0 20px;
  margin: 0 auto;
}

.content-box {
  margin: 50px 0 0;
}

@media screen and (max-width: 767px) {
	.sec-inner {
  	padding: 60px 0;
	}
	
  .content-width {
    width: 100%;
  }
	
	.content-box {
  	margin: 40px 0 0;
	}
}

.sec-ttl-box p .text {
	color: var(--sub-color);
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.5;
	white-space: nowrap
}

.sec-ttl-box p.add-border {
	align-items: center;
	display: flex;
	gap: 30px;
	position: relative;
}

.sec-ttl-box p.add-border span.border {
	background-color: #ccdfff;
	content: "";
	flex-grow: 1;
	height: 1px;
	width: 100%;
}

.sec-ttl-box p {
	color: var(--sub-color);
}

.sec-ttl-box .sec-ttl {
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 10px;
	text-align: left;
}

@media screen and (max-width: 767px) {
	.sec-ttl-box .sec-ttl {
		font-size: 2.8rem;
	}
}

/* ============================
	breadcrumb
============================ */
.breadcrumbs {
  padding: 15px 0;
  background-color: var(--white);
	border-bottom: 1px solid var(--border-color);
  font-size: 1.3rem;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  color: var(--main-text-color);
}

.breadcrumbs a span {
	color: var(--main-color);
	font-weight: 700;
}

.breadcrumbs .content-width {

}

.breadcrumbs .content-width > span {
	margin-right: 10px;
}

.breadcrumbs .content-width > span:nth-child(n + 2)::before {
	background-image: url("./images/common/breadcrumbs_arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 7px;
	margin-right: 10px;
	width: 6px;
}

/* ============================
	pagenavi
============================ */
.wp-pagenavi {
  clear: both;
  margin: 70px 0 0;
  font-size: 2rem;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  border: 1px solid #DEDEDE;
	border-radius: 50%;
  display: inline-block;
	font-family: "Poppins", sans-serif;
  width: 42px;
  height: 42px;
  margin: 0 0.5em;
  font-weight: 500;
  line-height: 2;
  color: var(--main-text-color);
  text-align: center;
  vertical-align: middle;
  transition: all 0.5s ease;
}

.wp-pagenavi span {
  background: var(--main-text-color);
  color: #fff;
  border-color: var(--main-text-color);
  opacity: 1;
  text-decoration: none;
}


@media (hover: hover) {
	.wp-pagenavi a:hover {
		background: var(--main-text-color);
		color: #fff;
		border-color: var(--main-text-color);
		opacity: 1;
		text-decoration: none;
		transition: all 0.5s ease;
	}
}
.wp-pagenavi .extend {
  width: 1em;
  color: #000;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
}

.wp-pagenavi .extend::after {
  content: "…";
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  width: 42px;
  height: 42px;
  background: #fff;
  text-indent: -999999px;
  vertical-align: middle;
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
}

.wp-pagenavi .previouspostslink::after {
  transform: rotate(225deg);
}

.wp-pagenavi .nextpostslink::after {
	left: -3px;
  transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  border-color: #fff;
}

@media (hover: hover) {
	.wp-pagenavi .previouspostslink:hover::after,
	.wp-pagenavi .nextpostslink:hover::after {
	  border-color: #fff;
	}
}

.result_count {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4rem;
  color: #999;
}

/* ============================
	post parts
============================ */
.post-meta {
	column-gap: 15px;
	display: flex;
}

.post-date {
  font-size: 1.5rem;
	font-weight: 500;
  min-width: 82px;
}

.post-cats {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	line-height: 1;
}

.post-cats + .post-cats {
	margin-left: 20px;
}

.post-cat {
	border: 1px solid var(--tag-color);
	border-radius: 15px;
  display: block;
  color: var(--main-text-color);
  font-size: 1.3rem;
  padding: 7px 25px;
  width: fit-content;
  text-align: center;
}

.post-cat + .post-cat {
  margin: 0 0 0 10px;
}

.post-cat:link {
  color: var(--main-text-color);
}

.post-cat:visited {
  color: var(--main-text-color);
}

/* ============================
	info list
============================ */
.info-item {
	align-items: flex-start;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 20px 0;
}

.info-item .post-ttl {
  font-size: 1.6rem;
	font-weight: 700;
	max-width: 440px;
}

@media screen and (max-width: 767px) {
  .info-item .post-meta {
    width: 100%;
  }
  .info-item .post-ttl {
    margin-left: 0;
  }
}

body.category-info .info-item .post-ttl {
	max-width: unset;
	width: 100%;
}

/* ============================
	card list
============================ */
.card-list {
  margin-top: -30px;
  margin-left: -80px;
}

.card-item {
  width: 280px;
  margin-top: 30px;
  margin-left: 80px;
}

.card-item .post-thumb img {
  width: 100%;
}

.card-item .post-info {
  margin-top: 20px;
}

.card-item .post-ttl {
  font-size: 1.5rem;
  margin: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .card-item {
    width: 100%;
  }
}

/* ============================
	contact form
============================ */
.contact-box {
	background-color: var(--white);
	border-radius: 20px;
	padding: 60px 60px;
}

.contact-box .required {
  background-color: #fe0000;
	border-radius: 2px;
  color: #fafafa;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 16px;
  padding: 4px 8px;
}

.contact-box .optional {
  background-color: #9F9F9F;
	border-radius: 2px;
  color: #fafafa;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 16px;
  padding: 4px 8px;
}

.contact-box .flex {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}

.contact-box .flex span {
	margin-right: 20px;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="email"],
.contact-box input[type="tel"],
.contact-box input[type="url"],
.contact-box input[type="number"],
.contact-box input[type="date"],
.contact-box textarea {
	background-color: #F8F8F8;
	border: 1px solid #E6E6E6;
	border-radius: 6px;
	box-shadow: unset;
	box-sizing: border-box;
	font-size: 1.7rem;
	font-weight: 500;
	padding: 4px 16px;
	width: 100%;
}

.contact-box input[type="text"].your-address {
	margin-top: 16px;
}

.contact-box input.size-m,
.contact-box select.size-m {
	width: 240px;
}

.contact-box input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.contact-box .wpcf7-radio {
	display: flex;
	gap: 20px 40px;
}

.contact-box .wpcf7-list-item {
	margin: 0;
}

.contact-box .wpcf7-radio .wpcf7-list-item {
	flex-basis: auto;
	width: auto;
}

.contact-box .wpcf7-radio .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}

.contact-box .wpcf7-radio .wpcf7-list-item-label::before {
  background-color: var(--white);
	border: 1px solid #ccc;
  border-radius: 100%;
  content: "";
  height: 16px;
  margin-bottom: auto;
  margin-right: .5em;
  margin-top: auto;
  transition: background-color .3s;
  width: 16px;
}

.contact-box input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--main-color);
  box-shadow: inset 0 0 0 2px var(--white);
}


.contact-box input[type="checkbox"] {
	background-color: var(--white);
	border: 1px solid #ccc;
	border-radius: 3px;
  position: relative;
  width: 24px;
  height: 24px;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact-box input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(40deg);
  width: 8px;
  height: 15px;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  content: '';
}

.contact-box dl {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
}

.contact-box dl + dl {
	margin-top: 40px;
}

.contact-box dd {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 16px 0 0 0;
}

.contact-box dd .event-name input {
	background-color: transparent;
	border: none;
	padding: 0;
}

.contact-box dd.note {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 8px 0 24px 0;
}

.contact-box dd.flex-date {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 10px;
}

.contact-box dd.flex-check .wpcf7-checkbox {
	align-items: flex-start;
	display: flex;
	gap: 40px;
}

.contact-box dd.flex-check .wpcf7-checkbox .wpcf7-list-item-label {
	margin-left: .5em;
}

.contact-box .your-email {
  box-sizing: border-box;
  width: 100%;
}

.contact-box .zip {
  width: 150px;
  box-sizing: border-box;
}

.contact-box .your-address {
  box-sizing: border-box;
  width: 100%;
}

.contact-box .your-content {
  width: 100%;
  box-sizing: border-box;
}

.contact-box .wpcf7-acceptance input[type="checkbox"] {
	background-color: var(--white);
	border: 1px solid #ccc;
	border-radius: 3px;
  position: relative;
  width: 24px;
  height: 24px;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact-box .wpcf7-acceptance input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(40deg);
  width: 8px;
  height: 15px;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  content: '';
}

.contact-box .wpcf7-select {
	background-color: #F8F8F8;
	border: 1px solid #ccc;
	border-radius: 3px;
	color: var(--main-text-color);
	font-size: 1.7rem;
	font-weight: 500;
	height: 48px;
	padding: 4px 36px 4px 24px;
	position: relative;
	width: auto;
}

.contact-box .wrap-select > span {
	position: relative;
}

.contact-box .wrap-select > span::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 12px;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--main-text-color);
	border-left: 2px solid var(--main-text-color);
	transform: translateY(-50%) rotate(-135deg);
	font-size: 20px;
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	.contact-box .wpcf7-select {
		width: 100%;
	}
	
	.contact-box dd.flex-date {
		flex-wrap: wrap;
	}
}

#consent-box {
	margin-top: 50px;
  text-align: center;
}

#consent-box .wpcf7-list-item-label {
	font-size: 1.6rem;
	font-weight: 700;
	margin-left: 1em;
}

#consent-box .wpcf7-list-item-label a {
	text-decoration: underline;
}

#submit-box .wpcf7-response-output {
  text-align: center;
}

#submit-box {
  width: 300px;
  position: relative;
  margin: 0 auto;
}

#submit-box.wrap-send {
	height: auto;
	margin-top: 30px;
	max-width: 360px;
	position: relative;
	width: 100%;
}

#submit-box .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 0 0 10px;
}

#submit-box .btn-send {
	column-gap: 30px;
	background-color: var(--main-color);
	border: none;
	border-radius: 3px;
	color: var(--white);
	font-size: 2rem;
	font-weight: 700;
	height: 100%;
	line-height: 1;
	max-height: 74px;
	padding: 26px 20px 26px 20px;
	text-align: center;
	width: 100%;
}

.contact-box .content-policy .content-box {
	background-color: var(--white);
	border: 1px solid #E6E6E6;
	border-radius: 6px;
	margin-top: 20px;
	max-height: 150px;
	padding: 0 20px;
	overflow-y: auto;
	width: 100%;
}

.contact-box .content-policy .title p {
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.contact-box {
		padding: 40px 20px;
	}
	
  .contact-box input[type="text"],
  .contact-box input[type="password"],
  .contact-box input[type="email"],
  .contact-box input[type="tel"],
  .contact-box input[type="url"],
  .contact-box input[type="number"],
	.contact-box input[type="date"],
  .contact-box textarea {
    width: 100%;
  }
	
	.contact-box .wpcf7-radio {
		flex-direction: column;
	}

	.contact-box .wpcf7-radio .wpcf7-list-item {
		display: flex;
		flex-wrap: wrap;
	}
	
	.contact-box .wpcf7-radio .wpcf7-list-item label {
		flex-basis: 100%;
	}
	
	#consent-box .wpcf7-list-item-label {
		font-size: 1.3rem;
	}
	
	.contact-box .content-policy .content-box {
		max-height: 300px;
	}
}

.lp-mail-form .contact-box {
	max-width: 800px;
	margin-inline: auto;
	padding: 50px 0px 30px;
	width: 100%;
}

.lp-mail-form .contact-box .required {
	background-color: #F4FAFF;
	border-radius: 30px;
	color: var(--main-color);
	font-weight: 500;
	padding: 5px 11px;
}


.lp-mail-form .contact-box input.size-m {
	max-width: 330px;
	width: 100%;
}

.lp-mail-form .contact-box #form-box > dl {
	display: flex;
	padding-bottom: 15px;
}

.lp-mail-form .contact-box #form-box > dl + dl {
	border-top: 1px solid #E6E6E6;
	margin-top: 0;
	padding-top: 15px;
}

.lp-mail-form .contact-box #form-box > dl.radio-box dt {
	line-height: 1;
}

.lp-mail-form .contact-box #form-box > dl dt {
	line-height: 44px;
	width: 260px;
}

.lp-mail-form .contact-box #form-box > dl dd {
	margin: 0;
	width: calc(100% - 260px);
}

.lp-mail-form .contact-box #form-box > dl dd.wrap-name-box {
	display: flex;
	gap: 30px;
}

.lp-mail-form .contact-box #form-box > dl dd.wrap-name-box input[type="text"] {
	max-width: 180px;
}

.lp-mail-form .contact-box #form-box > dl dd.wrap-name-box span:first-child {
	margin-right: 10px;
}

.lp-mail-form .contact-box #form-box > dl dd .wrap-zip input[type="text"] {
	max-width: 180px;
}

.lp-mail-form .contact-box #form-box > dl dd .wrap-zip span:first-child {
	margin-right: 10px;
}

.lp-mail-form .contact-box #form-box > dl dd .flex {
	align-items: center;
	column-gap: 10px;
	display: flex;
	flex-wrap: nowrap;
	max-width: 210px;
	width: 100%;
}

.lp-mail-form .contact-box #form-box > dl dd .flex span:first-child,
.lp-mail-form .contact-box #form-box > dl dd .flex span:last-child {
	margin-right: 0;
}

.lp-mail-form .contact-box .wpcf7-radio {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.lp-mail-form .contact-box .wpcf7-radio .wpcf7-list-item-label {
	font-size: 1.6rem;
}

.lp-mail-form .contact-box .wpcf7-list-item-label::before {
	background-color: #F8F8F8;
	border-color: #EAEAEA;
	height: 20px;
	width: 20px;
}

.lp-mail-form .contact-box textarea {
	min-height: 120px;
	height: auto;
}

.lp-mail-form #consent-box .wpcf7-acceptance input[type="checkbox"]  {
	border-radius: 6px;
	height: 26px;
	width: 26px;
}

.lp-mail-form .contact-box .wpcf7-acceptance .wpcf7-list-item-label::before,
.lp-mail-form .contact-box .wpcf7-acceptance .wpcf7-list-item-label::after {
	content: none;
}

.lp-mail-form #consent-box .consent-check .wpcf7-list-item-label {
	font-weight:  500;
}

.lp-mail-form #submit-box.wrap-send {
	max-width: 300px;
}

.lp-mail-form #submit-box .btn-send {
	border-radius: 36px;
}

.lp-mail-form .recaptcha-note p {
	font-size: 1.3rem;
	font-weight: 400;
	margin-inline: auto;
	width: fit-content;
}

.lp-mail-form .content-policy {
	border-top: 1px solid #E6E6E6;
	padding-top: 15px;
}

@media screen and (max-width: 767px) {
	.lp-mail-form .contact-box #form-box > dl {
		flex-wrap: wrap;
		row-gap: 15px;
	}
	.lp-mail-form .contact-box #form-box > dl dt {
		width: 100%;
	}

	.lp-mail-form .contact-box #form-box > dl dd {
		width: 100%;
	}
	
	.lp-mail-form .contact-box #form-box > dl dd.wrap-name-box {
		flex-wrap: wrap;
	}
	
	.lp-mail-form .contact-box #form-box > dl dd.wrap-name-box input[type="text"] {
		max-width: unset;
	}
	
	.lp-mail-form .content-policy {
		margin-top: 40px;
	}
}

/* ============================
	404
============================ */
#error-404 .content-box p {
  text-align: center;
}

@media screen and (min-width: 1001px) {
  #sp-menu {
    display: none;
  }

  #btn-hamburger {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  #h-gnav-box {
    display: none;
  }
}

/* ============================
	link
============================ */
.c-link {
	align-items: center;
	column-gap: 30px;
	cursor: pointer;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	justify-content: flex-start;
	position: relative;
	transition: all .4s;
}

.c-link .text {
	color: var(--main-color);
	flex-basis: auto;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.5;
	width: auto;
}

.c-link .circle {
	background-color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 50%;
	display: grid;
	height: 50px;
	place-items: center;
	position: relative;
	transition: all .4s;
	width: 50px;
}

.c-link .arrow {
	background-color: var(--white);
	mask-image: url("./images/common/link_arrow.svg");
	mask-size: cover;
	display: block;
	height: 11px;
	left: -0;
	position: relative;
	transition: all .4s;
	width: 12px;
}

.c-link .arrow.external {
	mask-image: url("./images/common/icon_external_link.svg");
}

@media (hover: hover) {
	.c-link:hover {
		opacity: 1;
	}
	
	.c-link:hover .circle {
		background-color: var(--white);
	}
	
	.c-link:hover .arrow {
		background-color: var(--main-color);
	}
}

/* ============================
	link
============================ */
.c-lp-link {
	align-items: center;
	background-color: var(--white);
	border-radius: 90px;
	column-gap: 30px;
	cursor: pointer;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	height: 70px;
	justify-content: space-between;
	margin-inline: auto;
	padding: 0 20px 0 85px;
	position: relative;
	transition: all .4s;
	width: 360px;
}

.c-lp-link .text {
	color: var(--main-color);
	flex-basis: calc(100% - 60px);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.7;
	width: auto;
}

.c-lp-link .circle {
	background-color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 50%;
	display: grid;
	flex-basis: 30px;
	height: 30px;
	place-items: center;
	position: relative;
	transition: all .4s;
	width: 30px;
}

.c-lp-link .arrow {
	background-color: var(--white);
	mask-image: url("./images/airconditioner/link_arrow.svg");
	mask-size: cover;
	display: block;
	height: 6px;
	left: -0;
	position: relative;
	transition: all .4s;
	width: 10px;
}

.c-lp-link .arrow.external {
	mask-image: url("./images/airconditioner/icon_external_link.svg");
}

@media screen and (max-width: 767px) {
	.c-lp-link {
		column-gap: 10px;
		max-width: 360px;
		padding-left: 60px;
		width: 100%;
	}
	
	.c-lp-link .text {
		flex-basis: calc(100% - 40px);
	}
}

@media screen and (max-width: 413px) {
	.c-lp-link {
		padding-left: 40px;
	}
}

@media (hover: hover) {
	.c-lp-link:hover {
		opacity: 1;
	}
	
	.c-lp-link:hover .circle {
		background-color: var(--white);
	}
	
	.c-lp-link:hover .arrow {
		background-color: var(--main-color);
	}
}

/* ============================
	mod-contacts
============================ */
#mod_contact {
	background: url("./images/common/background01.png"), linear-gradient(225deg,rgba(243, 254, 253, 1) 0%, rgba(200, 223, 255, 1) 100%) !important;
	background-repeat: repeat, no-repeat;
	background-size: 100px 100px, cover;
}

#mod_contact .content-contact {
	display: block;
	overflow: hidden;
	position: relative;
}

#mod_contact .content-contact::before {
	background-image: url("./images/common/circle.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 60vw;
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	transition: all .3s;
	width: 60vw;
	z-index: 1;
}

#mod_contact .content-contact .sec-ttl-box .sec-ttl {
	font-size: 6.2rem;
	font-weight: 600;
	line-height: 1;
	margin: 0;
	text-align: center;
}

#mod_contact .content-contact .description {
	margin-top: 10px;
	text-align: center;
}

#mod_contact .content-contact .description p {
	font-size: 1.6rem;
	font-weight: 700;
}

@media (hover: hover) {
	#mod_contact .content-contact:hover {
		opacity: 1;
	}

	#mod_contact .content-contact:hover::before {
		height: 63vw;
		width: 63vw;
	}

	#mod_contact .content-contact:hover .sec-ttl-box .sec-ttl {
		color: var(--main-color);
	}
	
	#mod_contact .content-contact:hover .description p {
		color: var(--main-color);
	}
}

@media screen and (max-width: 767px) {
	#mod_contact .content-contact::before {
		height: 85vw;
		width:  85vw;
	}
	
	#mod_contact .content-contact .sec-inner {
		padding: 70px 0;
	}
	
	#mod_contact .content-contact .sec-ttl-box .sec-ttl {
		font-size: 4.8rem;
	}

	#mod_contact .content-contact .description {
		font-size: 1.4rem;
		font-weight: 700;
		text-align: center;
	}
}

#mod_cta_lp {
	background-color: var(--main-color);
	position: relative;
}

#mod_cta_lp .wrap-contents {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#mod_cta_lp .wrap-contents::before {
	background: linear-gradient(0deg,rgba(45, 57, 168, 1) 0%, rgba(255, 255, 255, 1) 100%);
	border-radius: 50%;
	content: '';
	height: 340px;
	left: 50%;
	opacity: .3;
	position: absolute;
	top: -160px;
	transform: translateX(-50%);
	width: 105%;
	z-index: 2;
}

#mod_cta_lp .speech-bubble {
	align-items: center;
	background-color: #E6F7FF;
	border: 2px solid var(--white);
	border-radius: 90px;
	display: flex;
	justify-content: center;
	height: 57px;
	left: 50%;
	position: absolute;
	top: 0;
	translate: -50% -50%;
	width: 270px;
	z-index: 3;
}

#mod_cta_lp .speech-bubble::before {
	border: 10px solid transparent;
	border-top: 12px solid #E6F7FF;
	content: '';
	height: 0;
	left: 50%;
	position: absolute;
	top: 100%;
	translate: -50% 0;
	width: 0;
	z-index: 4;
}

#mod_cta_lp .speech-bubble::after {
	border: 12px solid transparent;
	border-top: 14px solid var(--white);
	content: '';
	height: 0;
	left: 50%;
	position: absolute;
	top: 100%;
	translate: -50% 0;
	width: 0;
	z-index: 3;
}

#mod_cta_lp .speech-bubble p {
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
}

#mod_cta_lp .sec-inner {
	padding: 65px 0 50px;
}

#mod_cta_lp .content-width {
	position: relative;
}

#mod_cta_lp .content-width .image-left {
	background-image: url("./images/common/lp_cta01.png");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 190px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: -50% -53%;
	width: 270px;
	z-index: 2;
}

#mod_cta_lp .content-width .image-right {
	background-image: url("./images/common/lp_cta02.png");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 196px;
	right: 0;
	position: absolute;
	top: 50%;
	translate: 25% -53%;
	width: 246px;
	z-index: 2;
}

#mod_cta_lp .sec-ttl-box .sec-ttl {
	color: var(--white);
	font-size: 3.2rem;
	font-weight: 700;
	margin-top: 0;
	text-align: center;
}

#mod_cta_lp .c-lp-link {
	margin-top: 20px;
	position: relative;
	z-index: 3;
}

@media screen and (max-width: 959px) {
	#mod_cta_lp .content-width .image-box {
		align-items: center;
		display: flex;
		gap: 20px;
		justify-content: center;
	}
	
	#mod_cta_lp .content-width .image-left {
		position: static;
		translate: 0 0;
		height: auto;
		max-width: 140px;
		width: 100%;
	}
	
	#mod_cta_lp .content-width .image-right {
		position: static;
		translate: 0 0;
		height: auto;
		max-width: 140px;
		width: 100%;
	}
	
	#mod_cta_lp .sec-ttl-box .sec-ttl {
		margin-top: 30px;
	}
}

@media screen and (max-width: 767px) {
	#mod_cta_lp .wrap-contents::before {
		height: 50%;
		width: 120%;
	}
	
	#mod_cta_lp .sec-ttl-box .sec-ttl {
		font-size: 2.4rem;
	}
}

#mod_cta_lp02 {
	background-color: var(--main-color);
	position: relative;
}

#mod_cta_lp02 .wrap-contents {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#mod_cta_lp02 .wrap-contents::before {
	background: linear-gradient(0deg,rgba(45, 57, 168, 1) 0%, rgba(255, 255, 255, 1) 100%);
	border-radius: 50%;
	content: '';
	height: 340px;
	left: 50%;
	opacity: .3;
	position: absolute;
	top: -160px;
	transform: translateX(-50%);
	width: 105%;
	z-index: 2;
}

#mod_cta_lp02 .sec-inner {
	padding: 50px 0 40px;
}

#mod_cta_lp02 .content-width {
	position: relative;
}

#mod_cta_lp02 .content-width .image-left {
	background-image: url("./images/common/lp_cta01.png");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 190px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: -25% -15%;
	width: 270px;
	z-index: 2;
}

#mod_cta_lp02 .content-width .image-right {
	background-image: url("./images/common/lp_cta02.png");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 196px;
	right: 0;
	position: absolute;
	top: 50%;
	translate: 25% -15%;
	width: 246px;
	z-index: 2;
}

#mod_cta_lp02 .sec-ttl-box .sec-ttl {
	color: var(--white);
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-top: 0;
	text-align: center;
	position: relative;
	z-index: 2;
}

#mod_cta_lp02 .c-lp-link {
	margin-top: 40px;
	position: relative;
	z-index: 3;
}

#mod_cta_lp02 .point-box {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
	position: relative;
	z-index: 2;
}

#mod_cta_lp02 .point-box .point-item {
	align-items: center;
	background-color: var(--white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	height: 160px;
	position: relative;
	width: 160px;
}

#mod_cta_lp02 .point-box .point-item::before {
	border: 2px solid #E6F7FF;
	border-radius: 50%;
	content: "";
	display: block;
	height: 140px;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 140px;
}

#mod_cta_lp02 .point-box .point-item p {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

#mod_cta_lp02 .point-box .point-item p em {
	color: var(--main-color);
	display: block;
	font-size: 2.2rem;
	font-style: normal;
	margin-top: 4px;
}

@media screen and (max-width: 959px) {
	#mod_cta_lp02 .content-width .image-box {
		align-items: center;
		display: flex;
		gap: 20px;
		justify-content: center;
		margin-top: 30px;
	}
	
	#mod_cta_lp02 .content-width .image-left {
		position: static;
		translate: 0 0;
		height: auto;
		max-width: 140px;
		width: 100%;
	}
	
	#mod_cta_lp02 .content-width .image-right {
		position: static;
		translate: 0 0;
		height: auto;
		max-width: 140px;
		width: 100%;
	}
	
	#mod_cta_lp02 .sec-ttl-box .sec-ttl {

	}
}

@media screen and (max-width: 767px) {
	#mod_cta_lp02 .wrap-contents::before {
		height: 50%;
		width: 120%;
	}
	
	#mod_cta_lp02 .sec-ttl-box .sec-ttl {
		font-size: 2.4rem;
	}
	
	#mod_cta_lp02 .point-box .point-item {
		align-items: center;
		background-color: var(--white);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		height: 105px;
		position: relative;
		width: 105px;
	}
	
	#mod_cta_lp02 .point-box .point-item::before {
		height: 100px;
		width: 100px;
	}
	
	#mod_cta_lp02 .point-box .point-item p {
		font-size: 1.4rem;
	}

	#mod_cta_lp02 .point-box .point-item p em {
		font-size: 1.6rem;
	}
}
