/*
Theme Name: Barberin Partners
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-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: 36px;
	margin: 1rem 0 2rem 0;
	color: #fff;
	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: #d96c06;
    border: 1px solid #e68f3c;
	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(0, 0, 0, 0.88);
	z-index: 999;
	justify-content: center;
	align-items: center;
	transform: translateY(-100%);
	transition: transform 0.25s ease;
}

.mobile-menu.active {
	display: flex;
	transform: translateY(0);
}

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

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

.mobile-menu-content p a {
	color: #fff;
	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(https://partners.barberin.jp/wp-content/uploads/2025/01/pc-main.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	width: 100%;
	height:40vh;
    margin-bottom: 8rem; 
}

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: 100%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%; 
	transform: translate(-50%,-50%); 
}

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

section.top-view p {
	font-size: 1.6rem;
	color: #fff;
	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.top-view a {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	background-color: #005f73;
	padding: 10px 30px;
	border-radius: 25px;
	margin: 1rem;
}

section.top-view a:hover {
	opacity: 0.8;
}

section.top-view a 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(https://partners.barberin.jp/wp-content/uploads/2025/01/sp-main.jpg);
		height: 40vh;
        margin-bottom: 4rem;
	}

	section.top-view {
		padding: 5.5rem 0.5rem;
	}

	.top-view h1 {
		font-size: 30px;
	}
	section.top-view p {
		font-size: 1.25rem;
	}

	section.top-view a {
		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: 23px;
	}

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

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

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



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

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

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

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

.top-service h3 {
    color: #1a5276;
	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: 3rem 0;
	flex-wrap: wrap;
}

.service-card {
	width: 22%;
	border-radius: 10px;
    color: #333333
}

.service-card h4 {
	margin: 0.8rem;
	margin-bottom: 0;
}

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

.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;
}

.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: 28px;
	}

	.service-item-box {
		display: block;
	}

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

	.service-card {
		width: initial;
	}

	.service-card p {
		font-size: 15px;
	}

	span.service-icon {
		padding: 12px 7px;
	}

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

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

/* top-page .top-result */
section.top-result {
    padding-bottom: 7rem;
    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: 4rem;
    }

    .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 {
	text-align: center;
    padding: 4rem 2rem 6rem 2rem;
    background-color: #f5f5f5;
	/* background-image: linear-gradient(0deg, #ffffff, #ffffff); */
}

.openings-contents {
	max-width: 1100px;
	margin: auto;
	/* padding: 0 1rem; */
}

.openings-item {
	position: relative;
}

.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: 1.5rem;
    width: 30%;
    max-width: 350px;
    text-align: center;
    border: solid 3px #005f73;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin: auto;
}


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

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

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

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

p.border-price {
	text-decoration: line-through;
    color: #666666;
}

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

.price-box p strong {
    font-size: 1.2em;
    color: #b33e32;
}

.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;
}

.price-comparison {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

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

.price-arrow {
    color: #b33e32;
    font-weight: bold;
    font-size: 24px;
    margin: 0 10px;
    display: inline-block;
}

.price-pack-highlight {
    color: #b33e32;
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(transparent 60%, #fee117 60%); 
    display: inline-block;
    padding: 5px 8px;
    border-radius: 5px;
}

.early-bird {
    background-color: #eaf7f7; 
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    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: 48%;
	}
	.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: 1rem;
	}
	.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;
	}

	section.top-openings {
		padding: 4rem 0rem 8rem 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;
    }
}

@media screen and (max-width: 600px) {
	.openings-item {
		padding-top: 2rem;
	}
	.openings-box {
		padding-right: 1rem;
		padding-left: 1rem;
	}
	.openings-box-item {
		padding: 1rem 0.8rem;
		width: 80%;
	}
	.openings-item .heading {
		width: 120px;
		top: -30px;
		left: -25px;
	}
}

@media screen and (max-width: 450px) {
	.openings-box-item {
		width: 100%;
	}
	.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 {
	padding: 0.7rem 0.8rem;
	line-height: 1rem;
	border-radius: 5px;
	border: 1px solid #ffffff;
	font-size: 14px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
	width: -webkit-fill-available;
	font-size: 15px;
	padding: 0.75rem;
	color: #fff;
    background-color: #D96C06;
	border: 1px solid #D96C06;
	border-radius: 7px;
	cursor: pointer;
	max-width: 300px;
	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: 4rem 1rem;
	}

	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-between;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1rem;
}

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

.f-contents h3 {
    color: #1a5276;
	margin: 1rem 0;
}

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

.f-contents p strong {
    color: #333333;
	margin-right: 5px;
}

.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: #d96c06;
    border: 1px solid #e68f3c;
	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;
}

.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: 100%;
    }
	.openings-contents-bottom h3 {
       padding: 1.5rem;
	}

	.service-contents {
		margin: 1rem 0rem 5rem;
	}

	.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;
	}
}

@media screen and (max-width: 480px) {
	.openings-box-item h3 {
		font-size: 14px;
	}
	.openings-contents-bottom h3 {
		font-size: 16px;
	}
	section.top-view p:before,
	section.top-view p:after {
		display: none;
	}
}

@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;
}