/*
Theme Name: Barberin Partners 2025
Version: 1.0
*/

html {
	color: rgb(75, 75, 75);
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 88px !important;
	overflow-x: hidden;
}

body {
	margin: 0px;
	overflow-x: hidden;
}

.section-title {
    /* position: relative;
    height: 30vh;
    background: url('/wp-content/uploads/2025/02/1920500-2.png') no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    z-index: 1; */
}

.section-title::before {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0; */
}

.section-title_en {
	writing-mode: vertical-rl;
	position: absolute;
	left: -1%;
}
.section-title_en h2 {
	font-size: 120px;
	color: #D3D3D3;
}
.section-title-wrapper {
    margin-top: 4rem;
}

#result .section-title {
    /* background: url('/wp-content/uploads/2025/02/1920500-1.png') no-repeat center / cover; */
}

#result .section-title::before {
    background: rgba(0, 0, 0, 0.4); 
}

.section-title h2 {
	font-size: 44px;
	margin: 1rem 0 2rem 0;
	color: #6C6C6C;
	border-bottom: 5px solid #6C6C6C;
	padding-bottom: 20px;
	margin-bottom: 100px;
	/* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}

h2.title-black {
    color: #003849;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

h2 {
	font-size: 36px;
	margin: 1rem 0 2rem 0;
	color: #fff;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

p,
a {
	margin: 0;
	font-size: 16px;
    color: #333333;
}

@media (max-width: 600px) {
	h2,.section-title h2 {
		font-size: 26px;
	}

	h3 {
		font-size: 21px;
	}

	h4 {
		font-size: 16px;
	}

	p.a {
		font-size: 14px;
	}
}

br.sp-only {
	display: none;
}

@media screen and (max-width: 600px) {
	br.sp-only {
		display: block;
	}
}

/* header */
.site-top {
    /* border-bottom: 1px solid #dddddd; */
	position: fixed;
	width: -webkit-fill-available;
	background-color: #fff;
	z-index: 999;
	top: 0;
}

.top-menu {
	max-width: 1580px;
	margin: 0 auto;
	display: flex;
	padding: 0px 5%;
	align-items: center;
	justify-content: space-between;
}

h1.site-logo img {
    width: 300px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    h1.site-logo img {
        width: 200px;
        height: auto;
    }
}

.logo-text {
    color: #333;
    text-align: center;
}
@media (min-width: 768px) {
    .logo-text {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .logo-text {
        font-size: 10px;
    }
}

.top-menu h1 {
    margin: 0.5rem 0;
}

div#\#menu-header-menu {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

div#\#menu-header-menu p a {
	color: #fff;
	background-color: #333;
	text-decoration: none;
}

div#\#menu-header-menu p a:hover {
	color: #333;
	background-color: #fff;
}

p.consultation-btn a {
	color: #fff;
    background-color: #00B8D4;
    border: 1px solid #00B8D4;
	text-decoration: none;
	padding: 10px 16px;
	border-radius: 5px;
}

p.consultation-btn a:hover {
	opacity: 0.8;
}

svg.lucide.lucide-chevron-right.ml-2.h-4.w-4 {
	transform: translateY(3px);
	margin-left: 10px;
}

@media screen and (max-width: 768px) {
	html {
		margin-top: 47px !important;
	}

	.top-menu h1 a img {
		width: 200px;
		margin-top: 8px;
	}

	.nav-menu {
		display: none;
	}
	.consultation-btn {
		/* display: none; */
	}
}

/* ハンバーガーボタン */
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 36px;
	height: 25px;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 1000;
}

.hamburger-btn .line {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #555;
	border-radius: 2px;
	transition: all 0.25s ease;
}

.hamburger-btn.active .line1 {
	opacity: 0;
}

.hamburger-btn.active .line2 {
	opacity: 0;
}

.hamburger-btn.active .line3 {
	opacity: 0;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.88);
	z-index: 999;
	justify-content: center;
	align-items: center;
	transform: translateY(-100%);
	transition: transform 0.25s ease;
}

.mobile-menu .consultation-btn a{
	color: white;
}
.mobile-menu.active {
	display: flex;
	transform: translateY(0);
}

.mobile-menu-content {
	text-align: center;
}

.mobile-menu-content p {
	margin: 50px 0;

}

.mobile-menu-content p a {
	color: #000;
	font-size: 20px;
	text-decoration: none;
	transition: color 0.25s ease;
}

.mobile-menu-content p a:hover {
	color: #00a0f0;
}

@media screen and (max-width: 768px) {
	.nav-menu,
	.consultation-btn {
		/* display: none; */
	}

	.top-menu h1 {
		margin: 0.1rem 0;
	}

	.hamburger-btn {
		display: flex;
	}
}

.close-btn {
	position: absolute;
	top: 26px;
	right: 26px;
	font-size: 36px;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	transition: transform 0.25s ease;
}

.close-btn:hover {
	transform: scale(1.1);
	color: #00a0f0;
}

.nav-menu {
	margin: 0 0 0 auto;
}
div#menu-header-menu p {
	padding: 0 60px 0 0;
}

div#menu-header-menu {
	display: flex;
	justify-content: space-between;
}

div#menu-header-menu p > a {
	text-decoration: none;
}

div#menu-header-menu p > a:hover {
	opacity: 0.8;
}


/* top-page .top-view */

section.top-view {
	padding: 17rem 0.5rem;
	background: linear-gradient(0deg, #ffffff 0%, #e5e5e5 100%);
	text-align: center;
	background-image: url(assets/images/mv.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	width: 100%;
	height:40vh;
    margin-bottom: 4rem; 
}

/* section.top-view::before {
	content: '';
	background-color: rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
} */

.top-content {
	width: 80%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%; 
	transform: translate(-50%,-50%); 
}

.top-view h1 {
	font-size: 50px;
	border-bottom: #fff 5px;
	text-align: left;
	margin: 1rem 0;
}

section.top-view .flex img {
	width: 160px;
	display: block;
}
section.top-view p.u-fb {
	font-size: 30px;
	color: #fff;
	background-color: #6C6C6C;
	padding: 10px;
	/* margin: 2rem 0 3.3rem; */
	/* display: flex;
	align-items: center;
	justify-content: center; */
}
/* section.top-view p:before,
section.top-view p:after {
	border-top: 1px solid;
	content: "";
	width: 40px;
} */

section.top-view p:before {
	margin-right: 1rem;
}

section.top-view p:after {
	margin-left: 1rem;
}

section .btn {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	background-color: #00B8D4;
	padding: 15px 20px;
	border-radius: 10px;
	margin: 1rem 0;
}

section.btn:hover {
	opacity: 0.8;
}

section.btn span {
	margin-left: 12px;
}

.top-sp {
	display: none;
}

@media screen and (max-width: 1800px) {
	section.top-view {
		padding: 10rem 0.5rem;
	}
}

@media screen and (max-width: 1024px) {
	section.top-view {
		padding: 7rem 0.5rem;
	}

	.top-view h1 {
		max-width: 768px;
		margin: auto;
		font-size: 38px;
	}
}

@media screen and (max-width: 768px) {
	section.top-view {
		padding: 20rem 0.5rem;
		background-image: url(assets/images/mv-sp.png);
		height: 65vh;
        margin-bottom: 4rem;
	}

	section.top-view p.u-fb {
		font-size: 18px;
		text-align: left;
		font-weight: 500;
	}
	.top-content .flex{
		flex-direction: column;

	}

	.sp-f {
		font-size: 34px;
	}

	section.top-view .flex img {
		width: 120px;
		margin-left: 180px;
		margin-top: 20px;
	}
	section.top-view {
		padding: 5.5rem 0.5rem;
	}

	.top-content p.white {
		font-size: 15px;
	}

	section .btn {
		font-size: 16px;
		padding: 9px 20px;
	}
	.top-view h1 {
		font-size: 30px;
	}
	section.top-view p {
		font-size: 1.25rem;
	}

	section.btn {
		font-size: 18px;
	}
}
@media screen and (max-width: 600px) {
	section.top-view {
		padding: 4rem 0.5rem;
	}

	.top-content {
		left: 48%; 
	}

	.top-view h1 {
		font-size: 26px;
		line-height: 1.6;
	}

	section.top-view p {
		font-size: 1.1rem;
	}

	section.btn {
		font-size: 16px;
	}
	section.btn span svg {
		transform: translateY(3px);
	}

	
}

@media screen and (max-width: 374px) {
	.top-sp {
		display: block;
	}
}



/* top-page .top-service */
section#service {
	position: relative;
	padding: 4rem 0rem;
	padding-top: 0;
	background-image: linear-gradient(180deg, #ffffff 97%, #fff);
}

section.top-service {
	/* text-align: center; */
}

.service-contents {
	background-color: #0547A0;
	margin: 2rem 0rem 5rem;
	padding-bottom: 10px;
	position: relative;
	border-radius: 10px;
}
.service-contents._02 {
	background-color: #12DAF9;
}
.service-contents._03 {
	background-color: #02D2AE;
}
.service-contents._04 {
	background-color: #FF6262;
}
.service-contents._05 {
	background-color: #FFBE4D;
}
.service-icon {
	position: absolute;
	right: 0%;
	top: 11%;
}
.service-contents .flex {
	align-items: flex-start;
	margin-left: 20px;
}
.service-contents .num{
	font-family: "Alatsi", sans-serif;
  	font-weight: 400;
	color: white;
	font-size: 110px; 
	margin-top: -50px;
	line-height: 0;
	margin-top: 10px;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
	/* position: absolute; */
}
.service-contents_box {
	position: relative;
	background-color: #fff;
	margin: 10px 10px 0;
	padding: 20px;
}
.service-contents_box > p {
	width: 90%;
	margin-left: auto;
	line-height: 1.6;
}

/* .top-service-box {
	max-width: 1300px;
	padding: 1rem;
	margin: auto;
} */

.top-service h3 {
    color: white;
	margin-bottom: 0;
	margin-top: 12px;
	margin-left: 50px;
	font-size: 32px;
	/* line-height: 4rem; */
}

span.service-icon {
    background-color: #003849;
	color: #fff;
	padding: 12px 10px;
	margin: auto;
	border-radius: 50%;
	margin-right: 15px;
}

span.service-icon svg {
	transform: translate3d(3px, 7px, 10px);
}

.service-item-box {
	display: flex;
	justify-content: space-between;
	gap: 0.6%;
	margin: 1rem 0 0;
	flex-wrap: wrap;
}

.service-card {
	width: 19%;
	/* border-radius: 10px; */
	border: 1px solid #D9D9D9;
    color: #333333;
	padding: 30px 20px 20px;;
	box-shadow: 5px 5px #D9D9D9;
}

.service-card h4 {
	margin: 0.8rem 0;
	margin-bottom: 0;
	font-size: 17px;
	text-align: center;
}

.service-card img {
	width: 100%;
	/* border-radius: 7.5px; */
	object-fit: cover;
	height: 140px;
}

.cta {
	background-image: url(assets/images/cta-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 0 30px;
}
.cta .btn {
	line-height: 4.6;
}
.arrow {
	width: 50%;
	margin: 50px auto;
	display: block;
}
.order-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.order-box .order {
	display: flex;
	align-items: center;
	justify-content: center;
}

.order-box p {
    font-size: 18px;
    /* color: #b33e32; */
    font-weight: bold;
}

.order-box .fee {
	margin-top: 10px;
}

.order-box .fee p {
	/* color: #fff; */
    /* background-color: #b33e32; */
	padding: 3px 8px;
	border-radius: 5px;
	/* font-size: 12px; */
	/* margin-right: 10px; */
}

.order-box .number {
	font-size: 35px;
	letter-spacing: 0.1em;
	color: #FF6262;
}

.order-box .unit {
	margin-top: 8px;
}

.service-item-box.start {
	justify-content: space-evenly;
}

@media screen and (max-width: 1024px) {
	.service-card {
		width: 45%;
		margin: 2rem 0;
	}

	.top-service-box {
		max-width: 768px;
	}
}

@media screen and (max-width: 768px) {
	section#service {
		padding-bottom: 2rem;
	}

	.top-service h2 {
		font-size: 22px;
	}
	.section-title h2 {
		margin-left: 40px;
		padding-bottom: 10px;
		margin-bottom: 30px;
	}
	.section-title_en {
		left: -14px;
	}
	.section-title_en h2 {
		font-size: 60px;
		line-height: 1;
	}
	.service-item-box {
		flex-wrap: wrap;
	}

	.top-service-box {
		max-width: 640px;
	}

	.service-card {
		width: 41%;
		margin: 10px 0;
	}

	.service-contents_box {
		padding: 20px 10px;
	}
	.service-card p {
		font-size: 15px;
	}

	.service-card {
		padding: 1rem 9px;
	}
	.service-card img {
		height: 90px;
	}

	.order-box .number {
		font-size: 28px;
	}
	span.service-icon {
		padding: 12px 7px;
	}

	span.service-icon svg {
		transform: translate3d(2.5px, 9px, 10px);
	}

	.service-contents p {
		font-size: 13px;
	}
    .section-title {
        /* height: 20vh; */
        font-size: 1.5rem;
    }
    .section-title-wrapper {
        margin-top: 2rem;
    }

	.service-contents .num {
		font-size: 90px;
		letter-spacing: -0.05em;
	}
	.top-service h3 {
		margin-left: 20px;
		font-size: 20px;
	}
	.service-contents .flex {
		margin-left: 10px;
	}
	.service-contents_box > p {
		width: 98%;
		font-size: 13px;
	}

	.service-card h4 {
		font-size: 12px;
	}
	.service-icon {
		width: 37%;
		top: 4%;
	}

	.cta {
		background-image: url(assets/images/cta-bg_sp.png);
		
	}
	.cta .inner02 {
		padding: 0 40px;
	}
	.cta .u-ml60 {
		margin-top: 20px;
	}
	.cta .flex {
		flex-direction: column;
	}
	.cta .txt-16 {
		font-size: 13px;
	}

	.arrow {
		width: 90%;
		margin-top: 20px;
	}
}

/* top-page .top-result */
section.top-result {
    padding: 3rem 0;
    /* text-align: center; */
    color: #333333;
    background-color: #f2f2f2;
}

.result {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* max-width: 1300px; */
	padding: 0 1rem;
	/* padding-top: 5rem; */
	margin: auto;
	align-items: anchor-center;
}

.result .result-item img {
	border-radius: 0px;
}

.result .result-item iframe {
	border-radius: 10px;
}

.result-item {
	width: 31%;
	margin: 1rem 0;
}

.result-item img {
	width: -webkit-fill-available;
	border-radius: 15px;
	cursor: pointer;
	object-fit: contain;
	height: revert-layer;
}

.result-item img:hover {
	opacity: 0.8;
}

.popup-content img {
	cursor: initial;
}

.popup-content img:hover {
	opacity: initial;
}

.result-item iframe {
	width: -webkit-fill-available;
	height: 260px;
	border-radius: 15px;
}

/**/
.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	justify-content: center;
	align-items: center;
	z-index: 99;
}

.result-item input:checked ~ .popup {
	display: flex;
}

.popup-content {
	background: #fff;
	padding: 20px 30px;
	border-radius: 15px;
	text-align: center;
	max-width: 800px;
	width: 90%;
	z-index: 9999;
}

.popup-content img {
	width: 100%;
	border-radius: 15px;
	margin-bottom: 15px;
}

.popup-content .details {
	font-size: 16px;
	color: #333;
	margin-bottom: 15px;
}

.popup-content .details-close-btn:hover {
	opacity: 0.8;
}

label.details-close-btn {
	width: 100%;
	height: 100%;
	position: absolute;
	cursor: pointer;
}

.popup-content .pup-close-btn {
	display: inline-block;
	background: #00a0f0;
	color: white;
	padding: 6px 12px;
	border-radius: 50%;
	text-decoration: none;
	font-size: 22px;
	font-weight: bold;
}

.popup-content .pup-close-btn:hover {
	opacity: 0.8;
}

label.pop-close-btn {
	background: #00a0f0;
	padding: 6px 12px;
	border-radius: 50%;
	font-weight: bold;
	font-size: 22px;
	position: absolute;
	top: 10%;
	right: 2.5%;
	color: #fff;
	cursor: pointer;
}

label.pop-close-btn:hover {
	opacity: 0.8;
	transform: scale(1.2);
	transition: 0.25s;
}
/**/

@media screen and (max-width: 1024px) {
	.result-item {
		width: 48%;
		margin: 1rem 0;
	}

	.result {
		max-width: 768px;
	}
}

@media screen and (max-width: 768px) {
    section.top-result {
        padding-bottom: 2rem;
    }

    /* .contact {
        padding: 0 1rem !important;
    }

    .contact h2 {
        font-size: 24px;
    }

    .contact .cta-btn {
        font-size: 16px;
        padding: 10px 20px;
    } */

	.result {
		/* padding-top: 3rem; */
	}

	.result-item {
		display: block;
		width: 100%;
	}

	.result2 .result-item {
		width: 48%;
	}

	.result2 .result-item img {
		height: 100%;
	}

	.result-item iframe {
		height: 350px;
	}
}

@media screen and (max-width: 480px) {
	.result-item iframe {
		height: 215px;
	}
}

/* top-page .top-openings */

section.top-openings {
	position: relative;
	text-align: center;
    padding: 4rem 2rem 6rem 2rem;
    /* background-color: #f5f5f5; */
	/* background-image: linear-gradient(0deg, #ffffff, #ffffff); */
}
section.top-openings .right{
	position: absolute;
	z-index: -1;
	right: 0;
	top: 15%;
}
section.top-openings .left{
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 12%;
}

.openings-contents {
	position: relative;
	border: 2px solid #FF6262;
	max-width: 1100px;
	margin: auto;
	padding: 120px 20px 40px;
	/* padding: 0 1rem; */
}

.openings-contents .special{
	position: absolute;
	width: 300px;
	left: -60px;
	top: -90px;
}
.openings-contents 
.openings-item {
	position: relative;
	padding: 0 60px;
}

.openings-item .heading {
    position: absolute;
    top: -30px;
    left: 15px;
    max-width: 150px;
    width: 100%;
}

.openings-title {
    background: linear-gradient(transparent 50%, #fee117 50%);
    display: inline-block;
    padding: 4px 8px;
    font-weight: bold;
}

.openings-item .heading {
	position: absolute;
	top: -30px;
	left: -30px;
	max-width: 165px;
	width: 100%;
}

.openings-item p {
    /* font-size: 20px; */
    color: #333333;
    /* font-size: 16px; */
    line-height: 1.6;
}

p.openings-item-text {
	/* font-size: 16px; */
    color: #333333;
}

.openings-box {
    /* padding: 40px 2rem; */
    /* display: flex; */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    /* gap: 0 40px; */
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 2rem;
    margin-top: 2rem;
}

.openings-box-item {
    /* padding: 1.5rem 0.8rem; */
    background-color: #fff;
    /* border-radius: 15px; */
    /* margin: 2rem 0; */
    /* width: 27%; */
    /* text-align: center; */
    /* border: solid 3px #005f73; */
    /* background-color: #fff; */
    /* border-radius: 15px; */
    padding: 0px 5px 20px 8%;
    width: 44%;
    /* max-width: 350px; */
    text-align: center;
    border: solid 2px #F3F3F4;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
    box-sizing: border-box;
    /* margin: auto; */
	position: relative;
	margin-top: 20px;
	margin-left: 20px;
}

.openings-box-item.last {
	position: relative;
	border: none;
	background-color: transparent;
}
.openings-box-item.last img {
	position: absolute;
	width: 380px;
    /* height: 470px; */
    left: 0;
    top: -132px;
    max-width: initial;
    right: 0;
    margin: auto;
	z-index: -1;
}
.openings-box-item .num {
	font-size: 50px;
	position: absolute;
	background-color: #6C6C6C;
	color: #fff;
	top: -24px;
	left: -24px;
	width: 70px;
	height: 70px;
	align-items: center;
	justify-content: center;
	line-height: 0;
	font-weight: bold;
}

.openings-box-item .openings-box-text {
	margin-bottom: 28px;
	font-size: 18px;
}

.openings-box-item h3 {
    font-size: 28px;
    /* margin: 0.5rem 0; */
    /* color: #005f73; */
    /* border-radius: 99px; */
    /* margin: 0.5rem 0; */
    /* text-align: center; */
    margin-bottom: 1rem;
    font-weight: bold;
	text-align: left;
}

.openings-box-item img {
    width: 100%;
    /* width: 150px; */
    /* margin-bottom: 1rem; */
    max-width: 130px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.openings-box-item p {
	/* font-size: 18px; */
	margin: 0.5rem 0;
	text-align: left;
}

p.border-price {
	text-decoration: line-through;
    /* color: #666666; */
	/* font-size: 18px; */
}

.price-box.flex {
	/* display: flex; */
	/* justify-content: space-between; */
	/* align-items: baseline; */
    /* margin-top: 1rem; */
	align-items: center;
	margin-left: -40px;
}

.price-box p {
	font-size: 22px;
}
.price-box p strong {
    /* font-size: 1.2em; */
    color: #FF6262;
}

.openings-contents-bottom {
    /* padding: 20px 8px 40px; */
    /* background-color: #fff; */
    /* border-radius: 0px 0px 10px 10px; */
    margin-top: 3rem;
    background-color: #eaf7f7;
    padding: 2rem;
    border-radius: 10px;
}

.openings-contents-bottom h3 {
    /* font-size: 20px; */
    color: #008f99;
    font-size: 22px;
    font-weight: bold;
}

.openings-contents-bottom p {
	font-size: 16px;
    color: #333333;
}

del.c_del_2 {
	background-image: linear-gradient(#e70000, #e70000);
  background-position: 0 50%;
  background-size: 100% 3px;
  background-repeat: repeat-x;
  text-decoration: none;
  padding: 0 2px;
  }
.price-comparison {
	background-color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
	border: 2px solid #F3F3F4;
	box-shadow: 2px 2px 4px #9b9b9b;
	padding: 15px 0 20px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.price-total {
    color: #000; 
    text-decoration: line-through;
    font-size: 24px;
    display: inline-block;
    margin-right: 10px;
}

.price-arrow {
    color: #E83B0C;
    font-weight: bold;
    /* font-size: 32px; */
    margin: 0 10px;
    display: inline-block;
}

.price-pack-highlight {
    color: #FF6262;
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(transparent 80%, #fee117 60%); 
    display: inline-block;
    padding: 5px 8px;
    border-radius: 5px;
	letter-spacing: .22em;
	line-height: 1.1;
	margin-top: -14px;
}
.price-pack-highlight span {
	font-size: 55px;

}
.early-bird img {
	width: 92%;
	margin: 0 auto;
    margin-top: 5rem;
    /* background-color: #eaf7f7; 
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    /* border: solid 2px #008f99;  */
}

.early-bird h3 {
    color: #008f99;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    text-decoration: underline;
}

.early-bird p {
    color: #333333;
    font-size: 18px;
    font-weight: bold;
}

.early-bird span {
    color: #b33e32;
    font-weight: bold;
    background: linear-gradient(transparent 50%, #fee117 50%); 
    padding: 3px 5px;
    display: inline-block;
}

@media screen and (max-width: 1024px) {
    .openings-box {
        /* flex-direction: column; */
        /* align-items: center; */
        justify-content: center;
        gap: 1.5rem;
    }
	.openings-box-item {
		/* width: 90%; */
        width: 46%;
	}
	.openings-item .heading {
		width: 130px;
		top: -50px;
	}
}

@media screen and (max-width: 768px) {
    h2.title-black {
        font-size: 28px;
    }
    .openings-item .heading {
        left: 5px;
        max-width: 120px;
    }
	.openings-box-item .openings-box-text {
		margin-bottom: 0rem;
		font-size: 10px;
	}
	.openings-box {
		/* gap: 0px 30px; */
        /* flex-direction: column; */
        align-items: center;
        gap: 1.5rem;
	}
	.openings-box-item {
		/* width: 40%; */
        width: 90%;
        max-width: 100%;
        padding: 1.2rem;
	}
    .openings-title {
        font-size: 20px;
    }

	.price-box {
		flex-direction: column;
		align-items: center;
	}

	.price-box p {
		margin: 0.2rem 0;
		font-size: 14px;
		letter-spacing: 0;
	}

	.price-box.flex {
		margin-left: 0;
	}

	.price-arrow {
	 font-size: 10px;
	}
	.openings-box-item img {
		width: 60px;
		display: inline-block;
		margin: 0 auto;
	}
	section.top-openings {
		padding: 2rem 0rem 4rem 0rem;
	}

	.openings-item {
		margin: 1rem 0.5rem;
		padding-top: 70px;
	}

	.openings-item .heading {
		width: 115px;
		top: -50px;
		left: -15px;
	}

	.openings-item p {
		font-size: 14px;
	}
    .openings-title {
        font-size: 20px;
    }
    .early-bird {
        /* padding: 1.2rem; */
        margin: 1rem;
    }
	.early-bird img	{
		width: 100%;
		margin-top: 0;
	}
	.price-comparison {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 10px;
	}
	
	.price-pack-highlight {
		margin-top: 0;
		
	}
	del.c_del_2 {
		font-size: 20px;
	}

	.price-pack-highlight {
		font-size: 20px;
		letter-spacing: 0.06em;
		line-height: .1;
	}
	.price-pack-highlight span {
		font-size: 40px;
	}
}

@media screen and (max-width: 600px) {
	.openings-item {
		padding-top: 2rem;
	}
	.openings-box {
		/* padding-right: 1rem;
		padding-left: 1rem; */
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 0;
		/* flex-direction: ; */
	}
	.openings-box-item {
		padding: 1rem 0.8rem;
		width: 80%;
		margin-left: 0px;
		margin-top: 0;
	}
	.openings-item .heading {
		width: 120px;
		top: -30px;
		left: -25px;
	}
	.openings-box-item .num {
		font-size: 16px;
		width: 30px;
		height: 30px;
		margin-left: 10px;
	}
	section.top-openings .right, section.top-openings .left{
		width: 65%;
	}
	.openings-box-item.last img {
		width: 210px;
		top: -152px;
		left: -40px;
	}
	.early-bird img {

	}
}

@media screen and (max-width: 450px) {
	.openings-box-item {
		width: 44%;
	}
	.openings-box-item 
	.openings-item .heading {
		width: 90px;
	}
}

/* contact-form */
/* .contact {
    background-color: #008f99;
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
}

.contact h2,
.contact h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact .cta-btn {
    background-color: #d96c06;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    margin-top: 1rem;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.contact .cta-btn:hover {
    background-color: #b95a00;
    border-color: #ffffff;
}

section .contact-form {
	max-width: 880px;
	margin: auto;
	text-align: center;
	padding: 7rem 1rem;
}

.contact-form h2 {
	text-align: center;
    color: #ffffff;
}

.contact-form p {
	text-align: left;
	margin-bottom: 15px;
    color: #ffffff;
}

.contact-form p label {
    color: #ffffff;
	font-size: 15px;
}

p.contact-text {
	text-align: center;
    color: #ffffff;
	font-size: 16px;
}
 */
div#wpcf7-f11-o1 {
	padding: 0 2rem;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	margin-top: 50px;
}

span.wpcf7-form-control-wrap {
	display: grid;
	padding: 10px 0 0 0;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
textarea.wpcf7-form-control.wpcf7-textarea {
	border: 1px solid #878787;
	padding: 1rem .8rem;
	/* padding: 0.7rem 0.8rem; */
	line-height: 1rem;
	border-radius: 5px;
	/* border: 1px solid #ffffff; */
	font-size: 14px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 300px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
	width: -webkit-fill-available;
	font-size: 18px;
	padding: 0.75rem;
	color: #fff;
    background-color: #32D8E8;
	border: 1px solid #32D8E8;
	border-radius: 7px;
	cursor: pointer;
	max-width: 150px;
	margin: 0 auto;
	display: block;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
	opacity: 0.8;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.custom-submit:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	section .contact-form {
		padding: 0rem 1rem 2rem;
	}

	div#wpcf7-f11-o1 {
		padding: 0 0rem;
		max-width: 100%;
		box-sizing: border-box;
	}

	p.contact-text {
		font-size: 15px;
	}
	input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
	textarea.wpcf7-form-control.wpcf7-textarea {
		width: 100%;
		box-sizing: border-box;
	}
}

/* footer.php */
footer {
    background-color: #f2f2f2;
	padding: 2.5rem;
}

footer h3 {
	font-size: 20px;
}

.footer-contents {
	display: flex;
	justify-content: space-evenly;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1rem;
}

.f-contents {
	width: 44%;
	margin-bottom: 1.5rem;
}

.f-contents h3 {
    color: #6C6C6C;
	font-size: 24px;
	margin: 1rem 0;
}

.f-contents p {
	margin: 1rem 0;
}

.f-contents p strong {
    color: #333333;
	margin-right: 5px;
}
.f-contents .right {
	border: 1px solid #6C6C6C;
	display: inline-block;
	padding: 10px 20px;
}

.f-contents p span svg {
    color: #333333;
}

.f-contents p span svg {
    color: #333333;
	transform: translateY(7px);
	margin-right: 5px;
}

a.footer-btn {
    background-color: #00B8D4;
    border: 1px solid #00B8D4;
	color: #fff;
	text-align: center;
	padding: 0.75rem;
	max-width: 300px;
	width: 100%;
	box-sizing: border-box;
	display: block;
	margin: 1.5rem 0;
	border-radius: 7px;
	text-decoration: none;
	font-size: 20px;
}

.f-contents-b {
	padding: 0 1rem;
	margin: 0 auto;
	max-width: 1100px;
}
.f-contents-b p {
	text-align: center;
	font-size: 13px;
}
.f-contents-b img {
	margin-bottom: 10px;
}

a.footer-btn:hover {
	opacity: 0.8;
}

.f-contents p a {
	text-decoration: none;
}

@media screen and (max-width: 1024px) {
	.footer-contents {
		display: block;
	}

	.f-contents {
		width: 100%;
	}

	.footer-contents {
		max-width: 768px;
	}
	.f-contents-b {
		max-width: 768px;
	}
}

@media screen and (max-width: 768px) {
    .openings-box-item {
        width: 46%;
    }
	.openings-contents-bottom h3 {
       padding: 1.5rem;
	}

	.service-contents {
		margin: 60px 0rem 2rem;
	}

	.openings-title {
		background: linear-gradient(transparent 50%, #fee117 50%);
	}

	footer {
    background-color: #f2f2f2;
		padding: 1rem;
	}

	footer h3 {
		font-size: 19px;
	}

	.f-contents p {
		font-size: 14px;
		margin: 0.25rem 0;
	}

	.f-contents-b {
		margin: 0.25rem 0;
		text-align: center;
	}

	.f-contents-b p {
		font-size: 13px;
		margin: 0.25rem 0;
	}
	.openings-contents {
		margin: 0 15px;
		padding-top: 40px;
	}
	.openings-contents .openings-item {
		padding: 0 0px;
		margin: 0;
	}
	.openings-contents .special {
		width: 160px;
		left: -20px;
		top: -50px;
	}

	.openings-content {
		flex-direction: column;
	}
}

@media screen and (max-width: 480px) {
	.openings-box-item h3 {
		font-size: 14px;
		margin-top: 0;
	}
	.openings-contents-bottom h3 {
		font-size: 16px;
	}
	section.top-view p:before,
	section.top-view p:after {
		display: none;
	}
	footer .flex {
		flex-direction: column;
	}
	footer .inner02 {
		padding :0 40px;
	}
	.f-contents h3 {
		font-size: 20px;
	}
}

@media screen and (max-width: 375px) {
	.openings-box-item {
		margin: 1.5rem 0;
	}
    .openings-item .heading {
        left: 0px;
        max-width: 100px;
    }
    .openings-title {
        font-size: 18px;
        padding: 3px 6px;
    }
    .openings-box-item {
        width: 100%;
        margin: auto;
    }
 
}

@media screen and (max-width: 370px) {
	.openings-title {
		font-size: 18px;
	}
	.openings-item p {
		font-size: 12px;
	}
	.openings-box-item h3 {
		font-size: 12px;
	}
}

.screen-reader-response ul {
    display: none;
}