@charset "utf-8";

@font-face {
	font-family: "Shippori Mincho";
	src: url(/fonts/ShipporiMincho-Regular.ttf);
	font-weight: 400;
}

@font-face {
	font-family: "Shippori Mincho";
	src: url(/fonts/ShipporiMincho-Medium.ttf);
	font-weight: 500;
}

@font-face {
	font-family: "Shippori Mincho";
	src: url(/fonts/ShipporiMincho-SemiBold.ttf);
	font-weight: 600;
}

@font-face {
	font-family: "Shippori Mincho";
	src: url(/fonts/ShipporiMincho-Bold.ttf);
	font-weight: 700;
}

/* 変数定義 */
:root {
    --org-main-color: #A38C61;
    --org-sub-color: #313C4C;
    --accent-color: #CD8650;
    --text-color: #333333;
    --white-color: #FFFFFF;
    --bg-light-color: #EFEAE4;
    --bg-dark-color: #F4EADE;
}

/* 基本設定 */
.l-main * {
    font-family: 'Shippori Mincho', serif;
    color: var(--text-color);
}

/* レイアウト */

.l-contents {
    overflow: hidden;
}

.l-main,
#contents {
    width: 100%;
    margin: auto;
    padding: 0;
	background: #fff;
	overflow: hidden;
}

.main-visual {
	width: 100%;
	height: 648px;
	padding: 0;
}

.main-visual__title {
	width: 100%;
	height: 648px;
}

.main-visual__title img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* セクション共通 */
section {
    padding: 80px 0;
}

section:first-child {
    padding-top: 0;
}

/* 見出し共通 */
.section-title {
    font-size: 38px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 44px;
    line-height: 1.45;
    color: var(--org-main-color);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
}

/* ボタン共通 */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 10px;
    min-width: 200px;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.button:hover {
    opacity: 0.7;
}

.button--primary {
	width: 320px;
	height: 70px;
	border-radius: 6px;
    background-color: var(--accent-color);
    color: var(--white-color);
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.10);
}

.button--primary::before {
	content: "";
	display: inline-block;
	width: 29px;
	height: 32px;
	background: url(../images/mail_icn.svg) no-repeat center / contain;
}

.button--secondary {
	width: 320px;
	height: 70px;
	border-radius: 6px;
    background-color: #333;
    color: var(--white-color);
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.10);
}

.button--secondary::before {
	content: "";
	display: inline-block;
	width: 29px;
	height: 32px;
	background: url(../images/satei_icn.svg) no-repeat center / contain;
}

/* お悩みセクション */
.concerns {
    padding: 140px 0 95px;
}

.concerns__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 1140px;
    margin: 0 auto;
}

.concern-card {
    width: 204px;
    text-align: center;
}

.concern-card__image {
    width: 204px;
    height: 204px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 11px;
    background-color: var(--bg-light-color);
}

.concern-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concern-card__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
}

/* 選ばれる理由・強み */
.strengths {
    padding: 120px 0;
}

.strengths__container {
    max-width: 1140px;
    margin: 0 auto;
}

.strengths__list {
    display: flex;
	flex-direction: column;
	margin-bottom: 70px;
}

.strength-feature {
    position: relative;
	z-index: 1;
    width: 100%;
	padding: 30px 0;
    margin-bottom: 30px;
}

.strength-feature:last-child {
    margin-bottom: 0;
}

.strength-feature__image {
	width: 900px;
	height: 383px;
	position: absolute;
	top: 0;
	right: -389px;
	z-index: -1;
}

.strength-feature:nth-child(even) .strength-feature__image {
	top: 0;
	left: -391px;
}

.strength-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-feature__content {
    width: 722px;
    padding: 70px 60px;
    background-color: var(--white-color);
}

.strength-feature:nth-child(even) .strength-feature__content {
    margin-left: auto;
}

.strength-feature__header {
    margin-bottom: 20px;
}

.strength-feature__icon {
    width: 35px;
    height: 35px;
}

.strength-feature__icon svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-color);
}

.strength-feature__title {
	display: flex;
	gap: 8px;
	align-items: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.17;
    color: var(--accent-color);
	border-bottom: 1px solid rgba(205, 134, 80, .2);
	padding-bottom: 14px;
}

.strength-feature__title::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #CD8650;
}

.strength-feature__text {
    font-size: 16px;
    line-height: 1.875;
}

.strengths__support {
    text-align: center;
}

.strengths__support-text {
    font-size: 26px;
    line-height: 1.77;
    margin-bottom: 30px;
}

.support-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 20px;
    justify-content: center;
}

.support-item {
    width: 212px;
    text-align: center;
}

.support-item__icon {
    width: 204px;
    height: 204px;
    margin: 0 auto 8px;
    border-radius: 50%;
}

.support-item__text {
    font-size: 16px;
    line-height: 1.5625;
    color: #333333;
}

/* 空き家・空き地 */


.vacant-house__problems {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    width: 204px;
    text-align: center;
}

.problem-card__image {
    width: 204px;
    height: 204px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: var(--bg-light-color);
}

.problem-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-card__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
}

.vacant-house__cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.vacant-house__cta-text {
    font-size: 26px;
    line-height: 1;
    color: var(--text-color);
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
}

.vacant-house__cta-box {
    background-color: var(--bg-light-color);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vacant-house__cta-box .button {
    min-width: 399px;
    margin: 0;
    white-space: nowrap;
}

/* 不動産売却プロセス */
.sale-process {
    padding: 160px 0;
}

.sale-process__container {
    width: 1140px;
    margin: 0 auto;
}

.sale-process__header {
    margin-bottom: 70px;
}

.sale-process__header .section-title {
	    margin-bottom: 10px;
}

.sale-process__content-ttl {
	font-size: 28px;
	font-weight: 500;
	color: #333;
	text-align: center;
}

.sale-process__diagram {
    margin-top: 43px;
}

.sale-process__diagram img {
	width: 100%;
    height: auto;
    margin: 0 auto;
}

.sale-process__content {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.sale-process__flow {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 1140px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    width: 1140px;
}

.process-step__number {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 48px;
    color: var(--org-main-color);
	margin-right: 81px;
	position: relative;
}

.process-step__number::after {
	content: "";
	width: 1px;
	height: 168px;
	background: #A38C61;
	position: absolute;
	top: -48px;
    right: -41px;
}

.process-step__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 710px;
	margin-right: 40px;
}

.process-step__title {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: var(--org-main-color);
}

.process-step__text {
    font-family: 'Shippori Mincho', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
}

.process-step__image {
    width: 257px;
    height: 170px;
}

.sale-process__additional {
	margin-top: 66px;
	position: relative;
}

.additional-table__cell--header {
	margin-bottom: 28px;
}

.additional-table__cell--header h3 {
	font-size: 28px;
	font-weight: 500;
	text-align: center;
	color: #333;
}

.sale-process__additional-box {
	border-top: 1px solid #333333;
}

.sale-process__additional-item {
	display: flex;
	gap: 20px;
	border-bottom: 1px solid #333333;
	padding: 50px 29px 49px;
}

.item__ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 108px;
	height: 46px;
	font-size: 22px;
	font-weight: 400;
	color: #fff;
}

.item__ttl-top {
	width: 118px;
}

.sale-process__additional-item-top {
	background: #F4EADE;
}

.sale-process__additional-item-top .item__ttl {
	background: #A38C61;
}

.sale-process__additional-item-bottom .item__ttl {
	background: #9A9A9A;
	height: 48px;
}

.item__detail-flex {
	margin-top: 7px;
}

.item__detail-flex-bottom {
	width: 384px;
}

.item__detail-flex dt {
	font-size: 20px;
	font-weight: 400;
	color: #333;
	margin-bottom: 10px;
}

.item__detail-flex dd {
	display: flex;
	font-size: 16px;
	font-weight: 400;
	color: #333;
	line-height: 1.37;
}

.item__detail-flex dd span {
	flex-shrink: 0;
}

.last__line-txt {
	margin-top: 11px;
}

.item__detail-flex-bottom .last__line-txt {
	margin-top: 6px;
}

.sale-process__additional-item-bottom {
	align-items: center;
	gap: 30px;
    padding: 30px 29px 29px;
}

.item__detail {
	font-size: 20px;
	font-weight: 400;
}

.sale-process-floatbox {
	width: 479px;
	height: 356px;
	padding: 43px 40px 0;
	background: #fff;
	position: absolute;
	top: 116px;
    right: 21px;
}

.floatbox__ttl {
	font-size: 26px;
	font-weight: 500;
	color: #CD8650;
	text-align: center;
	margin-bottom: 16px;
}

.floatbox__txt {
	font-size: 16px;
	line-height: 1.87;
	color: #333;
}

.sale-process-bt a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 399px;
	height: 70px;
	border-radius: 6px;
	background: #CD8650;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.10);
	font-size: 20px;
	font-weight: 500;
	color: #FFF;
	margin-top: 19px;
}

.sale-process-bt a::before {
	content: "";
	display: inline-block;
	width: 29px;
	height: 30px;
	background: url(../images/mail_icn.svg) no-repeat center / contain;
}

/* 売却プラン */
.sale-plans {
    padding: 160px 0;
}

.sale-plans__header .section-title {
	margin-bottom: 11px;
}

.sale-plans__container {
    width: 1140px;
    margin: 0 auto;
}

.sale-plans__header {
    margin-bottom: 44px;
}

.sale-plans__content {
    display: flex;
    gap: 30px;
    margin-bottom: 70px;
	padding-top: 52px;
}

.plan-card {
    flex: 1;
    background-color: var(--bg-light-color);
	position: relative;
}

.plan-card--buy {
	background: #E8EDF4;
}

.plan-card__header {
	width: 344px;
    background-color: var(--org-main-color);
    padding: 18px 0 24px;
    text-align: center;
	position: absolute;
	top: -53px;
	left: 50%;
	transform: translate(-50%);
}

.plan-card__header--sub {
    background-color: var(--org-sub-color);
}

.plan-card__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--white-color);
    margin-bottom: 10px;
}

.plan-card__title {
    font-size: 32px;
    font-weight: 500;
    line-height: 0.8125;
    color: var(--white-color);
}

.plan-card__body {
    padding: 80px 40px 40px;
}

.plan-card__recommendation {
    text-align: center;
    margin-bottom: 17px;
    position: relative;
}

.plan-card__recommendation::before,
.plan-card__recommendation::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 64px;
    height: 1px;
    background-color: var(--org-main-color);
}

.plan-card__recommendation::before {
    left: 17px;
    transform: rotate(64deg);
}

.plan-card__recommendation::after {
	right: 19px;
    transform: rotate(116deg);
}

.plan-card--buy .plan-card__recommendation::before {
	background: #313C4C;
    left: 39px;
    transform: rotate(64deg);
}

.plan-card--buy .plan-card__recommendation::after {
	background: #313C4C;
	right: 41px;
    transform: rotate(116deg);
}

.plan-card__recommendation-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--org-main-color);
}

.plan-card--buy .plan-card__recommendation-text {
	color: #313C4C;
}

.plan-card__checklist {
    margin-bottom: 29px;
}

.plan-card__check-item {
    display: flex;
    align-items: center;
    gap: 10px;
	border-bottom: 1px solid rgba(163, 140, 97, .3);
	padding-bottom: 6px;
    margin-bottom: 19px;
}

.plan-card--buy .plan-card__check-item {
	border-bottom: 1px solid rgba(49, 60, 76, .3);
}

.plan-card__check-item:last-child {
    margin-bottom: 0;
}

.plan-card__check-item span {
    font-size: 18px;
    line-height: 1.67;
}

.plan-card__check-item::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/check_left.webp) no-repeat center / contain;
}

.plan-card--buy .plan-card__check-item::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/check_right.webp) no-repeat center / contain;
}

.plan-card__features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-card__feature-group {
    background-color: var(--white-color);
    padding: 15px 30px 20px;
}

.merit-group {
	height: 214px;
}

.demerit-group {
	height: 181px;
}

.plan-card__feature-title {
    background-color: var(--org-main-color);
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 10px 30px;
    margin: -15px -30px 15px;
}

.plan-card--buy .plan-card__feature-title {
	background: #313C4C;
}

.demerit-group .plan-card__feature-title {
	background: #9A9A9A;
}

.plan-card__feature-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.plan-card__feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.875;
}

.plan-card__feature-item::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--org-main-color);
}

.plan-card--buy .plan-card__feature-item::before {
	background: #313C4C;
}

.demerit-group .plan-card__feature-item::before {
    background-color: #9A9A9A;
}

.sale-plans__flow {
    text-align: center;
}

.sale-plans__flow-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 38px;
}

.sale-plans__flow-content {
	display: flex;
	flex-direction: column;
	gap: 31px;
}

.flow-card {
	display: flex;
	gap: 31px;
	position: relative;
	z-index: 1;
}

.flow-card::after {
	content: "";
	width: 972px;
	height: 18px;
	background: url(../images/slow_arrow.webp) no-repeat center / contain;
	position: absolute;
	top: 144px;
    left: 99px;
	z-index: -1;
}

.flow-card--speed::after {
	content: "";
	width: 635px;
	height: 18px;
	background: url(../images/speed_arrow.webp) no-repeat center / contain;
	position: absolute;
	top: 144px;
    left: 99px;
	z-index: -1;
}

.flow-card__header {
	width: 120px;
	height: 305px;
	padding: 31px 0 14px;
	background: #A38C61;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.flow-card--speed .flow-card__header {
	background: #313C4C;
}

.flow-card__title {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.17em;
	color: #FFFFFF;
	writing-mode: vertical-rl;
}

.flow-card__duration {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 38px;
	font-size: 16px;
	color: #A38C61;
	background: #fff;
}

.flow-card--speed .flow-card__duration {
	color: #313C4C;
}

.flow-card__steps {
	display: flex;
	gap: 20px;
}

.flow-step {
	width: 92px;
	height: 305px;
	background: #fff;
	padding: 10px 15px;
	border: 1px solid #A38C61;
}

.flow-step:last-of-type {
	position: relative;
	z-index: -2;
}

.flow-card--speed .flow-step {
	border: 1px solid #313C4C;
}

.flow-step__number {
	font-size: 26px;
	font-weight: 400;
	letter-spacing: 1.3px;
	color: #A38C61;
	border-bottom: 1px solid #A38C61;
	padding-bottom: 11px;
	margin-bottom: 16px;
}

.flow-card--speed .flow-step__number {
	color: #313C4C;
	border-bottom: 1px solid #313C4C;
}

.flow-step__content {
	display: flex;
	justify-content: center;
}

.flow-step__text {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.12em;
	color: #333;
	writing-mode: vertical-rl;
}

/* 空き家・空き地 */
.vacant-house {
    padding: 160px 0;
}

.vacant-house__header .section-title {
	margin-bottom: 10px;
}

.vacant-house__container {
    width: 1140px;
    margin: 0 auto;
}

.vacant-house__header {
    margin-bottom: 43px;
}

.vacant-house__content {
    display: flex;
    flex-direction: column;
    gap: 49px;
}

.vacant-house__problems {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    width: 204px;
    text-align: center;
}

.problem-card__image {
    width: 204px;
    height: 204px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 11px;
    background-color: var(--bg-light-color);
}

.problem-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-card__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.vacant-house__cta {
    text-align: center;
}

.vacant-house__cta-text {
    font-size: 26px;
    line-height: 1;
}

.vacant-house__cta-box {
	width: fit-content;
    background-color: var(--bg-light-color);
    padding: 6px 16px;
}

.vacant-house__cta-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--accent-color);
}

.vacant-house__cta-box .button {
    min-width: 399px;
}

/* FAQ */
.faq {
    padding: 159px 0;
}

.faq__container {
    width: 1140px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
	height: 178px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-item__question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 27px 28px 0;
}

.faq-item__answer {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 12px 27px 30px;
}

.faq-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item__question .faq-item__icon {
    background-color: #333;
}

.faq-item__answer .faq-item__icon {
    background-color: #A38C61;
}

.faq-item__icon span {
    font-family: 'Shippori Mincho', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1;
}

.faq-item__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.67;
    flex: 1;
}

.faq-item__question .faq-item__text {
    font-size: 20px;
    font-weight: 400;
	color: #333;
}

.faq-item__answer .faq-item__text {
    font-size: 16px;
	font-weight: 400;
	line-height: 1.87;
	color: #333;
}

/* 不動産購入 */
.purchase {
    padding: 161px 0;
}

.purchase__container {
    width: 1140px;
    margin: 0 auto;
}

.purchase__content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 44px;
}

.purchase__image {
    width: 510px;
    height: 391px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.purchase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purchase__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding-top: 1px;
}

.purchase__text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-color);
}

.purchase__list {
    display: flex;
    flex-direction: column;
    gap: 19px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.purchase__item {
    display: flex;
    align-items: center;
    gap: 10px;
	border-bottom: 1px solid rgba(163, 140, 97, .3);
	padding-bottom: 6px;
}

.purchase__item::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/check_left.webp) no-repeat center / contain;
}

.purchase__item span {
    font-size: 18px;
    line-height: 1.67;
    color: var(--text-color);
}

.purchase__cta .button {
    width: 590px;
    height: 70px;
	border-radius: 6px;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.10);
    font-size: 20px;
	font-weight: 500;
	color: #fff;
	background: #CD8650;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.purchase__cta .button::before {
	content: "";
	display: inline-block;
	width: 29px;
	height: 32px;
	background: url(../images/mail_icn.svg) no-repeat center / contain;
}

/* お問い合わせ */
.contact {
    position: relative;
    padding: 99px 0 92px;
    background: url(../images/contact_bg.webp) no-repeat center / cover;
}

.contact__container {
    position: relative;
    z-index: 1;
    width: 1140px;
    margin: 0 auto;
}

.contact__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.contact__header {
    text-align: center;
}

.contact__title {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--white-color);
    margin-bottom: 6px;
}

.contact__subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: var(--white-color);
}

.contact__info {
    display: block;
    padding: 60px 55px;
    background-color: var(--white-color);
}

.contact__main {
	display: flex;
    align-items: center;
    gap: 30px;
}

.contact__tel {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 52px;
    font-weight: 400;
    line-height: 0.46;
    color: #333333;
	flex-shrink: 0;
}

.contact__tel::before {
    content: "";
	display: inline-block;
	width: 38px;
	height: 38px;
	background: url(../images/tel_icn.webp) no-repeat center / contain;
	flex-shrink: 0;
}

.contact__buttons {
    display: flex;
    gap: 10px;
}

.flex__contact-info {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 19px;
}

.contact__hours {
    font-size: 16px;
    line-height: 1.375;
    color: var(--text-color);
}

/* 背景色付きセクション */
.bg-light {
    background-color: var(--bg-light-color);
}

.bg-dark {
    background-color: var(--bg-dark-color);
}
