@charset "utf-8";

/*///////////////////// font-face 読み込み ///////////////////////////*/
/*Zen Kaku Gothic New 400*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Regular.woff2);
    font-weight: 400;
    font-display: swap;
}
/*Zen Kaku Gothic New 500*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Medium.woff2);
    font-weight: 500;
    font-display: swap;
}
/*Zen Kaku Gothic New 700*/
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url(/fonts/ZenKakuGothicNew-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}

/*Zen Old Mincho 700*/
@font-face {
    font-family: 'Zen Old Mincho';
    src: url(/fonts/ZenOldMincho-Bold.woff2);
    font-weight: 700;
    font-display: swap;
}
/*///////////////////// font-face 読み込み ///////////////////////////*/


body {
	/*スマホで勝手に文字が大きくなる対策*/
	-webkit-text-size-adjust: 100%;
}

#content,
#contents,
.l-main {
	width: 100%;
	padding: 0;
	background-color: #fafafa;
}

/* components */
.headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    white-space: nowrap;
}

.headline__title {
    margin: 0;
    color: #263238;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    letter-spacing: 0.688px;
    line-height: 1;
}

.headline__title-text {
	font-family: 'Zen Old Mincho', serif;
    font-size: 30px;
    line-height: 1;
}

.headline__title-text--accent {
	font-family: 'Zen Old Mincho', serif;
    font-size: 40px;
}

.headline__en {
    margin: 0;
    color: #16b8c4;
    font-family: 'Zen Old Mincho', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
}

.slider-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.slider-pager__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    background: transparent;
    color: #16b8c4;
    cursor: pointer;
    transition: color 0.2s ease;
}

.slider-pager__arrow:hover:not(:disabled):not(.is-disabled) {
    color: #fff;
}

.slider-pager__arrow:hover:not(:disabled):not(.is-disabled) .slider-pager__icon path {
    stroke: #16b8c4;
}

.slider-pager__arrow.is-disabled,
.slider-pager__arrow:disabled {
    color: #cfd8dc;
    cursor: default;
}

.slider-pager__arrow.is-disabled:hover,
.slider-pager__arrow:disabled:hover {
	opacity: 1;
}

.slider-pager__arrow.is-disabled .slider-pager__icon rect,
.slider-pager__arrow:disabled .slider-pager__icon rect {
    stroke: #cfd8dc;
}

.slider-pager__icon {
    display: block;
    width: 35px;
    height: 35px;
    fill: none;
}

.slider-pager__icon rect {
    stroke: #16b8c4;
    stroke-width: 1;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.slider-pager__icon path {
    transition: stroke 0.2s ease;
}

.slider-pager__arrow--prev .slider-pager__icon {
    transform: scaleX(-1);
}

.slider-pager__dots {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 10px;
}

.slider-pager__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #cfd8dc;
    cursor: pointer;
}

.slider-pager__dot.is-active {
    background-color: #16b8c4;
}

.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 240px;
    height: 50px;
    border: 1px solid #16b8c4;
    border-radius: 9999px;
    background-color: #fff;
    color: #16b8c4;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 1.7;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-more:hover {
	opacity: 1;
    background-color: #16b8c4;
    color: #fff;
}


/* mv */
.mv {
    position: relative;
    width: 100%;
    height: 676px;
}

.mv__inner {
    position: relative;
    width: 100%;
    height: 467px;
    overflow: hidden;
    background-color: #fafafa;
}

.mv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.mv__box {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    box-sizing: border-box;
    width: 900px;
    height: 347px;
    margin: 0 auto;
    padding: 5px;
    border: 3px solid #fff;
    border-radius: 37px;
}

.mv__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 18px;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: #fff;
}

.mv__ttl-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 750px;
}

.mv__title {
    width: 100%;
    margin: -13px 0 -5px;
    font-size: 0;
    line-height: 1;
    text-align: center;
}

.mv__title-char {
    font-family: 'Zen Old Mincho', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    background-image: linear-gradient(75.29deg, #f98500 12.61%, #d43900 83.92%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.mv__title-char--ls1 {
    letter-spacing: 1px;
}

.mv__title-char--ls3 {
    letter-spacing: 3px;
}

.mv__title-char--ls5 {
    letter-spacing: 5px;
}

.mv__title-char--ls-m3 {
    letter-spacing: -3px;
}

.mv__title-char--ls-m5 {
    letter-spacing: -5px;
}

.mv__title-char--ls-m10 {
    letter-spacing: -10px;
}

.mv__title-char--dot {
    font-size: 54px;
    letter-spacing: -10px;
}

.mv__catch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mv__catch-line {
    flex-shrink: 0;
    width: 14px;
    height: 2px;
    margin-top: 4px;
    border-radius: 999px;
    background-color: #e45000;
}

.mv__catch-text {
    margin: -11px 0 -8px;
    color: #e45000;
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}

.mv__keyword {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.mv__keyword-list {
    display: flex;
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mv__keyword-item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 50px;
    background-color: #73c3c9;
    color: #fff;
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.1px;
    line-height: 1.7;
    text-align: center;
    white-space: nowrap;
}

.mv__keyword-item--inherit {
    width: 186px;
    padding: 0 20px 0 26px;
    border-radius: 9999px 0 0 9999px;
}

.mv__keyword-item--sell {
    padding: 0 20px;
}

.mv__keyword-item--land {
    width: 186px;
    padding: 0 26px 0 20px;
    border-radius: 0 9999px 9999px 0;
}

.mv__keyword-catch {
    margin: 0;
    color: #5e9695;
    font-family: 'Zen Old Mincho', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}


/* feature */
.feature {
    position: absolute;
    top: 427px;
    right: 0;
    left: 0;
    width: 1140px;
    margin: 0 auto;
}

.feature__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    width: 249px;
    height: 249px;
    padding: 0 69px;
    border-radius: 9999px;
    background-image: linear-gradient(151.09deg, #fff7e9 23.7%, #ffe6db 97.68%);
    overflow: visible;
}

.feature__icon {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
}

.feature__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    white-space: nowrap;
}

.feature__title {
    margin: 0;
    color: #e45000;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.feature__text {
    margin: 0;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 1.7;
}

/* worries */
.worries {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding-top: 80px;
    overflow-x: clip;
}

.worries__viewport {
    width: 100%;
    max-width: 1280px;
    min-width: 0;
    container-type: inline-size;
    overflow: hidden;
    height: calc(588 * min(1, 100cqi / 1280) * 1px);
}

.worries__content {
    position: relative;
    width: 1280px;
    height: 588px;
    transform-origin: top left;
    transform: scale(min(1, calc(100cqi / 1280)));
}

.worries__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1280px;
    height: 588px;
}

.worries__text {
    position: absolute;
    margin: 0;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

.worries__text--cash {
    top: 88px;
    left: 481px;
    width: 108px;
}

.worries__text--delegate {
    top: 53px;
    left: 217px;
    width: 162px;
}

.worries__text--facility {
    top: 256px;
    left: 369px;
    width: 180px;
}

.worries__text--rejected {
    top: 199px;
    left: 84px;
    width: 144px;
}

.worries__text--remote {
    top: 415px;
    left: 225px;
    width: 144px;
}

.worries__text--furniture {
    top: 239px;
    left: 782px;
    width: 108px;
}

.worries__text--zone {
    top: 60px;
    left: 708px;
    width: 126px;
}

.worries__text--highprice {
    top: 51px;
    left: 985px;
    width: 126px;
}

.worries__text--accident {
    top: 244px;
    left: 1042px;
    width: 138px;
}

.worries__text--divorce {
    top: 441px;
    left: 844px;
    width: 198px;
}


/* solution */
.solution {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 50px 0;
    background-image: linear-gradient(114.21deg, #fab21a 21.29%, #f58c0c 58.89%);
}

.solution__text {
    margin: 0;
    color: #fff;
    font-family: 'Zen Old Mincho', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    white-space: nowrap;
}

.solution__emphasis {
    display: flex;
    align-items: center;
    gap: 6px;
}

.solution__emphasis-item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 74px;
    height: 74px;
    border-radius: 6px;
    background-color: #fff;
    color: #fe7600;
    font-family: 'Zen Old Mincho', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
    padding-bottom: 8px;
}


/* plan */
.plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 80px 0;
    background-image: linear-gradient(-13.68deg, #fbeae3 1.62%, #faf6eb 87.08%);
}

.plan__lead {
    width: 657px;
    margin: 0;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

.plan__content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    width: 1140px;
    height: 596px;
    margin-top: 1px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    width: 555px;
    padding: 55px 0 40px;
    border-radius: 20px;
    background-color: #fff;
}

.plan-card__badge {
    position: absolute;
    top: -25px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 50px;
    margin: 0;
    border-radius: 9999px;
    color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.9px;
    line-height: 1.7;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
}

.plan-card--brokerage .plan-card__badge {
    background-color: #1cb2d4;
}

.plan-card--purchase .plan-card__badge {
    background-color: #f57749;
}

.plan-card__title {
    width: 100%;
    margin: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.688px;
    line-height: 1;
    text-align: center;
}

.plan-card--brokerage .plan-card__title {
    color: #1cb2d4;
}

.plan-card--purchase .plan-card__title {
    color: #f57749;
}

.plan-card__points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.plan-card__point {
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-card__check {
    flex-shrink: 0;
    width: 23px;
    height: 23px;
}

.plan-card__point-text {
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.72;
    text-align: center;
    white-space: nowrap;
}

.plan-card__catch {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 76px;
	padding-top: 7px;
}

.plan-card--brokerage .plan-card__catch {
    background-color: #1cb2d4;
}

.plan-card--purchase .plan-card__catch {
    background-color: #f57749;
}

.plan-card__arrow {
    position: absolute;
    top: 0;
    left: 255px;
    width: 45px;
    height: 13px;
}

.plan-card__catch-text {
    margin: 0;
    color: #fff;
    font-family: 'Zen Old Mincho', serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}

.plan-card__catch-accent {
    color: #f9ff9f;
	font-family: 'Zen Old Mincho', serif;
    font-size: 26px;
    line-height: 1;
}

.plan-card__catch-accent--num {
	font-family: 'Zen Old Mincho', serif;
    font-size: 38px;
}

.plan-card__explain {
    width: 475px;
    margin: 0;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 1.69;
}


/* case */
.case {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
}

.case__bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1920px;
    height: 1031px;
    transform: translateX(-50%);
    pointer-events: none;
}

.case .headline,
.case__lead,
.case__list,
.case__cta {
    position: relative;
    z-index: 1;
}

.case__lead {
    width: 684px;
    margin: 0;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

.case__lead-accent {
	font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #068f9b;
}

.case__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    width: 1140px;
    margin: 0;
    padding: 0;
    list-style: none;
	margin-top: 1px;
}

.case-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    width: 264px;
    height: 253px;
    padding: 28px 55px;
    border: 3px solid #b5e8eb;
    border-radius: 16px;
    background-color: #fff;
}

.case-card__icon {
    flex-shrink: 0;
    width: 111px;
    height: 111px;
}

.case-card__text {
    width: 224px;
    margin: 0;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.59;
    text-align: center;
}

.case-card__text--other {
    line-height: 1.73;
}

.case-card__text-sub {
	font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 2;
}

.case__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1140px;
    padding: 30px 0;
    background-color: #e3fdff;
}

.case__cta-text {
    margin: 0;
    color: #333;
    font-family: 'Zen Old Mincho', serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}


/* flow */
.flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 80px 0;
    background-color: #fff6e3;
	overflow: hidden;
}

.flow__tabs {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    max-width: 620px;
    padding: 6px;
    border: none;
    border-radius: 999px;
    background-color: #fff;
}

.flow__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-sizing: border-box;
    width: 304px;
    height: 62px;
    padding: 0 10px 4px;
    border: 1px solid transparent;
    border-radius: 999px;
    background-color: #fff;
    color: #78909c;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.flow__tab:hover {
	opacity: 1;
}

.flow__tab-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

.flow__tab-sub {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.flow__tab--brokerage.is-active {
    border-color: #1cb2d4;
    background-color: #1cb2d4;
    color: #fff;
}

.flow__tab--brokerage.is-active:hover {
    background-color: #fff;
    color: #1cb2d4;
}

.flow__tab--purchase.is-active {
    border-color: #f57749;
    background-color: #f57749;
    color: #fff;
}

.flow__tab--purchase.is-active:hover {
    background-color: #fff;
    color: #f57749;
}

.flow__panels {
    width: 1140px;
}

.flow__panel[hidden] {
    display: none;
}

.flow__slider.swiper {
    width: 1140px;
    overflow: visible;
}

.flow__slider .swiper-slide {
    width: 360px;
    height: auto;
    box-sizing: border-box;
}

.flow-card {
    position: relative;
    width: 100%;
    padding-top: 34px;
}

.flow-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-sizing: border-box;
    width: 100%;
    height: 370px;
    padding: 5px 0 30px;
    border-style: solid;
    border-width: 3px;
    border-radius: 20px;
    background-color: #fff;
}

.flow-card--brokerage .flow-card__body {
    border-color: #a1e0ee;
}

.flow-card--purchase .flow-card__body {
    border-color: #f4c6b6;
}

.flow-card__img-wrap {
    overflow: hidden;
    width: calc(100% - 9px);
    height: 200px;
    border-radius: 11px;
}

.flow-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-card--brokerage .flow-card__title {
    color: #1cb2d4;
}

.flow-card--purchase .flow-card__title {
    color: #f57749;
}

.flow-card__title {
    width: 100%;
    max-width: 300px;
    margin: 0;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

.flow-card__text {
    width: 100%;
    max-width: 301px;
    margin: 0;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 1.7;
}

.flow-card__step {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    width: 69px;
    height: 69px;
    padding-bottom: 4px;
    border-radius: 9999px;
    color: #fff;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    transform: translateX(-50%);
}

.flow-card--brokerage .flow-card__step {
    background-color: #1cb2d4;
}

.flow-card--purchase .flow-card__step {
    background-color: #f57749;
}

.flow-card__step-label,
.flow-card__step-num {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
	font-family: 'Zen Old Mincho', serif;
}

.flow-card__step-label {
    width: 32px;
    font-size: 16px;
}

.flow-card__step-num {
    width: 34px;
    font-size: 28px;
}


/* voice */
.voice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
}

.voice__slider {
    width: 100%;
    overflow: hidden;
}

.voice__slider .swiper-slide {
    width: 330px;
    height: auto;
    box-sizing: border-box;
}

.voice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 330px;
}

.voice-card:hover {
	opacity: 1;
}

.voice-card__img-wrap {
    overflow: hidden;
    width: 100%;
    height: 248px;
    border-radius: 16px;
}

.voice-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: transform 0.2s ease;
}

.voice-card:hover .voice-card__img {
	transform: scale(1.05);
}

.voice-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 310px;
}

.voice-card__name {
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.voice-card__text {
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.voice__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 80px 0;
    background-color: #fafafa;
}

.column__slider {
    width: 100%;
    overflow: hidden;
}

.column__slider .swiper-slide {
    width: 330px;
    height: auto;
    box-sizing: border-box;
}

.column-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 330px;
}

.column-card:hover {
	opacity: 1;
}

.column-card__img-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 248px;
    border-radius: 16px;
}

.column-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: transform 0.2s ease;
}

.column-card:hover img {
	transform: scale(1.05);
}

.column-card__date {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 78px;
    height: 27px;
    padding: 1px 8px;
    border-radius: 9999px;
    background-color: #f6a229;
    color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
    white-space: nowrap;
}

.column-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 310px;
}

.column-card__title {
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.column-card__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
    min-height: 26px;
}

.column-card__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 26px;
    padding: 1px 8px;
    border-radius: 4px;
    background-color: #d4e4e9;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
    white-space: nowrap;
}

.column__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 80px 0;
    background-color: #fff6e3;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 1140px;
    margin: 0 auto;
}

.faq-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
}

.faq-item__q {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item__mark {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 41px;
    height: 41px;
    border-radius: 9999px;
    background-color: #16b8c4;
    color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
}

.faq-item__question {
    margin: 0;
    color: #16b8c4;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
}

.faq-item__a {
    width: 100%;
}

.faq-item__answer {
    margin: 0;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 1.7;
}

.contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: 1920px;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
}

.contact__bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact__frame {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 1140px;
    padding: 7px;
    border: 3px solid #fff;
    border-radius: 20px;
}

.contact__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    width: 100%;
    padding: 50px 54px 42px;
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.contact__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact__btns {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact__tel {
    width: 310px;
	display: flex;
    align-items: center;
	justify-content: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
}

.contact__tel-icon {
    display: block;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
}

.contact__tel-num {
    color: #f6a229;
    font-family: 'Zen Old Mincho', serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    padding-bottom: 6px;
}

.contact__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-sizing: border-box;
    width: 310px;
    height: 60px;
    border: 1px solid transparent;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    padding-left: 3px;
    transition: background-color 0.2s ease, background-image 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact__btns .contact__btn {
	opacity: 1;
}

.contact__btn--mail {
    border-color: #16b8c4;
    background-color: #16b8c4;
}

.contact__btn--mail:hover {
    background-color: #fff;
    color: #16b8c4;
}

.contact__btn--mail:hover .contact__btn-text {
    color: #16b8c4;
}

.contact__btn--mail:hover .contact__btn-icon {
    filter: brightness(0) saturate(100%) invert(59%) sepia(53%) saturate(548%) hue-rotate(143deg) brightness(93%) contrast(87%);
}

.contact__btn--assessment {
    border-color: #fa7d01;
    border-radius: 9999px;
    background-image: linear-gradient(90deg, #ff9c00 0%, #fa7d01 100%);
}

.contact__btn--assessment:hover {
    background-image: none;
    background-color: #fff;
    color: #fa7d01;
}

.contact__btn--assessment:hover .contact__btn-text {
    color: #fa7d01;
}

.contact__btn--assessment:hover .contact__btn-icon {
    filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(1600%) hue-rotate(1deg) brightness(101%) contrast(101%);
}

.contact__btn-icon {
    display: block;
    flex-shrink: 0;
    width: 22px;
    height: 19px;
    transition: filter 0.2s ease;
}

.contact__btn-text {
    color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.contact__hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.contact__hours-item {
    margin: 0;
    color: #7a7a7a;
    font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.924;
    white-space: nowrap;
}
