@charset "UTF-8";

/*******************************
 スクロール
 *******************************/

.scroll_down {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100vh;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.scroll_down:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    content: "";
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 80%, rgba(0, 0, 0, .8) 100%); */
}

/* “見えている”高さにフィット */
@supports (height: 100svh) {
    .scroll_down {
        height: 100svh;
    }
}

.scroll_down span {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 20px;
    margin: auto;
    padding: 10px 5px 110px;
    overflow: hidden;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: .2em;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

.scroll_down span:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: #ddd;
    content: "";
}

.scroll_down span:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: #000;
    content: "";
    animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
    -webkit-animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/*******************************
 スライダー
 *******************************/
/* ==== FVスライダー 最終CSS（高さ100%固定） ==== */

/* コンテナを常に画面高いっぱいに */
.mv01 {
    position: relative;
    height: 100vh;

    /* フォールバック */
    height: 100svh;

    /* モバイルのURLバー影響なし */
}

/* ★ Swiper階層すべてを100%に */
.mv01 .swiper,
.mv01 .swiper-wrapper,
.mv01 .swiper-slide,
.mv01 .slide {
    height: 100%;
}

/* 中央に重ねるコピー画像（必要なら） */
.mv01__txt {
    position: absolute;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    inset: 50% auto auto 50%;
}

/* スライド画像領域：親にフィット */
.slide-media {
    position: relative;
    height: 100%;
    overflow: hidden;
    /* .mv01 の高さに追従 */
}

/* 画像は全面トリミング表示 */
.slide-media img {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 7s ease-out 1s;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
    /* ゆっくりズーム演出 */
}

/* アクティブ時のわずかなズーム */
.mv01 .swiper-slide[class*="-active"] .slide-media img {
    transform: scale(1.05);
    transition-delay: 0s;
}

/* （必要なら）ページネーション位置調整
.mv01 .swiper-pagination { bottom: 16px; }
*/

/*******************************
 スライダー2
 *******************************/
/* ===== 既存スタイルはそのままでOK。以下を追加/置換 ===== */

/* 共通：mv02の土台 */
.mv02 {
    position: relative;
    overflow: hidden;
    /* 万一のはみ出し防止 */
}

/* 画像フィット */
.mv02 .slide-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px 0 0 14px;
}

.mv02 .slide-media img {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 7s ease-out 1s;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
    /* ゆっくりズーム */
}

/* アクティブ時のズーム演出 */
.mv02 .swiper-slide[class*="-active"] .slide-media img {
    transform: scale(1.05);
    transition-delay: 0s;
}

/* 左縦ページャー（全ブレイクポイントで左配置） */
.mv02 .swiper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-left: 14px;

    /* ページャーが画像に被らないよう左に余白 */
    box-sizing: border-box;
}

.mv02 .swiper-pagination {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 2;
    width: auto;
    height: auto;
    gap: 8px;
}

.mv02 .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}

.mv02 .swiper-pagination-bullet {
    opacity: 1;
    width: 1px;
    height: 26px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, .5);
    transition: transform .2s ease, background-color .2s ease;
}

.mv02 .swiper-pagination-bullet-active {
    background: #000;
}

/* ---SPでは比率で高さを作る --- */
@media (max-width: 767px) {

    /* モバイルは見た目優先で比率指定に */
    .mv02 .slide-media {
        aspect-ratio: 16 / 9;
    }

    .mv02 .swiper {
        padding-left: 44px;
    }

    .mv02 .swiper-pagination {
        left: 12px;
        gap: 10px;
    }
}

/* --- ≥600px（タブレット/PC）：左テキストの高さに右スライダーを合わせる --- */
@media (min-width: 768px) {

    /*  スライダーの高さを親（= 左カラムと同じ高さ）に追従させる */
    .strengths__swiper .mv02 {
        flex: 1;

        /* 幅いっぱい */
        height: 100%;

        /* 親の“確定した高さ”をそのまま受け取る */
    }

    /* Swiper階層すべてに高さを連鎖（fadeで黒くなるのを防止） */
    .strengths__swiper .mv02 .swiper,
    .strengths__swiper .mv02 .swiper-wrapper,
    .strengths__swiper .mv02 .swiper-slide,
    .strengths__swiper .mv02 .slide,
    .strengths__swiper .mv02 .slide-media {
        height: 100%;
    }
}

/*******************************
 scroll-photo
 *******************************/
.scroll-photo {
    padding: 40px 0;
    overflow: hidden;
    background: #f7f6f5;
}

/* 横一列・折り返さない・下端で揃える（任意） */
.scroll-photo__wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 40px;
    will-change: transform;
}

/* ←重要：フレックスの縮小を禁止 */
.scroll-photo__img {
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

/* ←重要：グローバルの img{max-width:100%} で潰れないように */
.scroll-photo__img img {
    display: block;
    width: auto;
    max-width: none;
    /* 内在幅を使う */
    height: auto;
    /* 幅0潰れを防ぐ */
}

/* 既存の上下ズレはそのまま */
.scroll-photo__img.-photo02 {
    margin-top: 30px;
}

.scroll-photo__img.-photo03 {
    margin-top: 10px;
}

@media screen and (min-width: 600px) {
    .scroll-photo__img.-photo02 {
        margin-top: 100px;
    }

    .scroll-photo__img.-photo03 {
        margin-top: 25px;
    }
}

/*******************************
 私たちのこと
 *******************************/
.about {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 30px 0;
}

.about__title {
    padding: 5px 0;
    background: #4c4c4c;
    color: #fff;
    font-size: clamp(2rem, 1.2rem + 1.5vw, 2.5rem);
    text-align: center;
}

.about__subtitle {
    padding: 20px 0;
    font-size: clamp(1.7rem, 1.2rem + 1.5vw, 3.3rem);
    text-align: center;
}

.about__image {
    margin-top: 30px;
}

.about__link-wrapper {
    margin-top: 20px;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .about__text {
        text-align: center;
    }

    .about__image {
        max-width: 487px;

        margin-inline: auto;
    }
}

/* 768px以上：タブレット
------------------------------ */
@media screen and (min-width: 768px) {
    .about {
        display: flex;
        flex-direction: row-reverse;
    }

    .about__header {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        width: 40%;
    }

    .about__title,
    .about__subtitle {
        white-space: nowrap;
        /* 自動改行を抑えて列をそろえる（任意） */
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl;
        -webkit-text-orientation: upright;
        text-orientation: upright;
        /* 句読点・数字を起こす */
    }

    .about__title {
        padding: 30px 0;
        letter-spacing: .8rem;
        text-align: center;
    }

    .about__subtitle {
        margin-right: 5rem;
        padding: 30px 0 0 0;
        font-weight: 400;
        letter-spacing: .3rem;
        text-align: left;
    }

    .about__content {
        width: 60%;
    }

    .about__text {
        font-size: 1.6rem;
        text-align: left;
    }

    .about__link-wrapper {
        width: 150px;
        margin-top: 20px;
        margin-left: auto;
    }

    .about__image {
        max-width: 100%;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .about {
        padding: 70px 0;
    }

    .about__title {
        padding: 50px 5px;
        font-size: 2.5rem;
    }

    .about__subtitle {
        margin-right: 20%;
        padding-top: 50px;
        font-size: 3.3rem;
    }

    .about__text {
        font-size: 1.9rem;
        line-height: 2;
    }
}

/*******************************
 丸堀製茶の４つの強み
 *******************************/
.strengths__wrapper {
    width: 100%;
    max-width: 1124px;
    margin: 0 auto;
    padding: 50px 0;
}

.strengths__text-content {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}

.strengths__title {
    padding: 5px 0;
    background: #4c4c4c;
    color: #fff;
    font-size: clamp(2rem, 1.2rem + 1.5vw, 2.5rem);
    text-align: center;
}

.strengths__text {
    margin-top: 30px;
}

.strengths__image {
    width: 203px;
    margin: 30px auto 0;
}

.strengths__swiper {
    margin-top: 30px;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .strengths__text {
        text-align: center;
    }
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 768px) {
    .strengths__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 auto;
        padding-left: 5%;
        padding-block: 70px;
    }

    .strengths__text-content {
        width: 40%;
        max-width: 350px;
    }

    .strengths__swiper {
        display: flex;
        width: 60%;
        margin-top: 0;
    }

    .strengths__text-block {
        display: flex;
        align-items: flex-start;
    }

    .strengths__title,
    .strengths__text {
        white-space: nowrap;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl;
        -webkit-text-orientation: upright;
        text-orientation: upright;
    }

    .strengths__title {
        padding: 30px 0;
        letter-spacing: .8rem;
        text-align: center;
    }

    .strengths__text {
        margin-top: 0;
        margin-left: 2rem;
        font-size: 1.6rem;
        text-align: left;
    }

    .strengths__image {
        margin-top: 5px;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .strengths__wrapper {
        padding-left: 0;
    }

    .strengths__title {
        padding: 50px 5px;
        font-size: 2.5rem;
    }

    .strengths__text {
        margin-left: 4rem;
        font-size: 1.9rem;
        line-height: 2;
    }
}


/*******************************
 安心・安全な お茶づくりのために
 *******************************/

.environment-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
}

.environment {
    width: 90%;
    max-width: 1110px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
    background: #f2f2f2;
}

.environment__title {
    padding: 5px 0;
    background: #fff;
    font-size: clamp(2rem, 1.2rem + 1.5vw, 2.5rem);
    text-align: center;
}

.environment__subtitle {
    padding: 20px 0;
    font-size: clamp(1.7rem, 1.2rem + 1.5vw, 3.3rem);
    text-align: center;
}

.environment__figure {
    display: none;
}

.environment__link-wrapper {
    width: 100px;
    margin-top: 20px;
    margin-inline: auto;
}

.environment__decoration {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 15px;
}

.environment__decoration img {
    width: 100%;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .environment__text {
        text-align: center;
    }
}

/* 768px以上：タブレット
 ------------------------------ */
@media screen and (min-width: 768px) {
    .environment-wrap {
        position: relative;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .environment {
        padding: 20px;
        border-radius: 15px;
    }

    .environment__title,
    .environment__subtitle,
    .environment__text {
        white-space: nowrap;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl;
        -webkit-text-orientation: upright;
        text-orientation: upright;
    }

    .environment__inner {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        width: 50%;
        margin-left: auto;
        gap: 24px;
    }

    .environment__inner2 {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
        align-items: stretch;

        /* Safari で子幅が 0 にならないよう明示 */
        width: 100%;
        gap: 24px;
    }

    .environment__title {
        margin-right: 5%;
        font-weight: 400;
        letter-spacing: .3rem;
    }

    .environment__subtitle {
        padding: 0;
        font-weight: 400;
        letter-spacing: .3rem;
        text-align: left;
    }

    .environment__content {
        flex: 1 1 auto;
        position: relative;
        margin-right: 0;
    }


    .environment__decoration {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        width: 45%;
        max-height: 460px;
        overflow: hidden;
        border-radius: 0 15px 15px 0;
        margin-top: 0;
    }

    .environment__decorationInner {
        width: 100%;
        height: 100%;
    }

    .environment__decoration img {
        width: 100%;
        height: auto;
    }



    .environment__intro {
        display: flex;
        flex: 0 0 clamp(90px, 10vw, 140px);
        flex-direction: column;
        align-self: stretch;
        position: relative;
        box-sizing: border-box;
    }

    .environment__figure {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .environment__text {
        width: 100%;
        font-size: 1.6rem;
        text-align: left;
    }

    /* Safari対策 */
    .environment__intro,
    .environment__content {
        min-width: 0;
        /* flex 子の縮小許可（Safari必須） */
    }

    .environment-wrap.-recruit .environment__inner {
        width: 60%;
    }

    .environment-wrap.-recruit .environment__decoration {
        width: 40%;
    }

    .environment__link-wrapper {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .environment-wrap.-recruit .environment__link-wrapper {
        margin-top: 50px;
    }
}

/* 960px以上：小型PC
 ------------------------------ */
@media screen and (min-width: 960px) {
    .environment-wrap {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .environment {
        height: 550px;
        padding-top: 50px;
    }

    .environment__decoration {
        width: 50%;
    }

    .environment__inner {
        width: 40%;
        margin-left: auto;
    }

    .environment__title {
        margin-right: 0;
        padding: 40px 5px;
        letter-spacing: 1rem;
    }

    .environment__text {
        font-size: 1.9rem;
        line-height: 2;
    }

    .environment-wrap.-recruit .environment__inner {
        width: 55%;
    }

    .environment-wrap.-recruit .environment__decoration {
        width: 42%;
    }
}

/**リンクボタン**/
.link-button {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px 0;
}

.link-button:hover .link-button__label {
    text-decoration: none;
}

.link-button__label {
    display: block;
    margin-right: 5px;
    font-size: 1.4rem;
    line-height: 1.3;
    text-decoration: underline;
}

.link-button::after {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/top/arrow@2x.png) no-repeat;
    background-size: 20px 20px;
    content: "";
    transition: transform .2s ease;

    transform-origin: center;
}

.link-button:hover::after {
    transform: scale(1.3);
}

/* アニメ無効設定の環境配慮 */
@media (prefers-reduced-motion: reduce) {
    .link-button::after {
        transition: none;
    }
}

/*******************************
 インタビュー
 *******************************/

.interview-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
}

.interview {
    width: 90%;
    max-width: 1110px;
    margin: 0 auto;
}

.interview__title {
    padding: 5px 0;
    background: #656565;
    color: #fff;
    font-size: clamp(2rem, 1.2rem + 1.5vw, 2.5rem);
    text-align: center;
}

.interview__subtitle {
    padding: 20px 0;
    font-size: clamp(1.7rem, 1.2rem + 1.5vw, 3.3rem);
    text-align: center;
}

.interview__figure {
    display: none;
}

.interview__link-wrapper {
    width: 100px;
    margin-top: 20px;

    margin-inline: auto;
}

.interview__decoration {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 15px;
}

.interview__decoration img {
    width: 100%;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .interview__text {
        text-align: center;
    }
}

/* 768px以上：タブレット
 ------------------------------ */
@media screen and (min-width: 768px) {
    .interview-wrap {
        position: relative;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .interview {
        padding: 20px;
        border-radius: 15px;
    }

    .interview__title,
    .interview__subtitle,
    .interview__text {
        white-space: nowrap;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl;
        -webkit-text-orientation: upright;
        text-orientation: upright;
    }

    .interview__inner {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        width: 50%;
        margin-right: auto;
        gap: 24px;
    }

    .interview__inner2 {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
        align-items: stretch;
        /* Safari で子幅が 0 にならないよう明示 */
        width: 100%;
    }

    .interview__title {
        margin-right: 5%;
        font-weight: 400;
        letter-spacing: .3rem;
    }

    .interview__subtitle {
        padding: 0;
        font-weight: 400;
        letter-spacing: .3rem;
        text-align: left;
    }

    .interview__content {
        flex: 1 1 auto;
        position: relative;
        margin-left: 0;
    }

    .interview__decoration {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
        width: 45%;
        max-height: 460px;
        overflow: hidden;
        border-radius: 15px 0 0 15px;
        margin-top: 0;
    }

    .interview__decorationInner {
        width: 100%;
        height: 100%;
    }

    .interview__decoration img {
        width: 100%;
        height: auto;
    }

    .interview__intro {
        display: flex;
        flex: 0 0 clamp(90px, 10vw, 140px);
        flex-direction: column;
        align-self: stretch;
        position: relative;
        box-sizing: border-box;
    }

    .interview__figure {
        display: block;
        position: absolute;
        bottom: 0;
    }

    .interview__text {
        width: 100%;
        font-size: 1.6rem;
        text-align: left;
    }

    /* Safari対策 */
    .environment__intro,
    .environment__content {
        min-width: 0;
        /* flex 子の縮小許可（Safari必須） */
    }

    .interview-wrap.-recruit .interview__inner {
        width: 60%;
    }

    .interview-wrap.-recruit .interview__decoration {
        width: 40%;
    }

    .interview__link-wrapper {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .interview-wrap.-recruit .interview__link-wrapper {
        margin-top: 50px;
    }
}

/* 960px以上：小型PC
 ------------------------------ */
@media screen and (min-width: 960px) {
    .interview-wrap {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .interview {
        height: 550px;
        padding-top: 50px;
    }

    .interview__decoration {
        width: 50%;
    }

    .interview__inner {
        width: 40%;
    }

    .interview__title {
        margin-right: 0;
        padding: 40px 5px;
        letter-spacing: 1rem;
    }

    .interview__text {
        font-size: 1.9rem;
        line-height: 2;
    }

    .interview__content {
        margin-left: 40px;
    }
}

/*******************************
 PROFILE
 *******************************/
.info-card__link {
    display: block;
    position: relative;
}

.info-card__link:hover {
    opacity: .7;
}

.info-card__header {
    padding: 10px 0;
    background: #6ba9e5;
    color: #fff;
    text-align: center;
}

.info-card__title {
    font-weight: 500;
    font-size: 3rem;
}

.info-card__subtitle {
    font-size: 1.3rem;
}

.info-card__img img {
    width: 100%;
}


/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .info-card__header {
        position: absolute;
        width: 100%;
        padding: 0;
        background: none;
    }

    .info-card__title {
        font-size: 3.5rem;
        letter-spacing: .05em;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .info-card__header {
        padding: 40px 0 0 0;
    }
}


/*******************************
 法人のお客様
 *******************************/
.business {
    width: 90%;
    max-width: 984px;
    margin: 0 auto;
    padding: 20px 0;
}

.business__title {
    padding: 5px 0;
    background: #4c4c4c;
    color: #fff;
    font-size: clamp(2rem, 1.2rem + 1.5vw, 2.5rem);
    text-align: center;
}

.business__subtitle {
    padding: 20px 0;
    font-size: clamp(1.7rem, 1.2rem + 1.5vw, 3.3rem);
    text-align: center;
}

.business__image {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 15px;
}

.business__image img {
    width: 100%;
}

.business__link-wrapper {
    width: 100px;
    margin-top: 20px;

    margin-inline: auto;
}


/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .business__text {
        text-align: center;
    }
}

/* 768px以上：タブレット
------------------------------ */
@media screen and (min-width: 768px) {
    .business__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .business__title {
        width: 400px;
        margin-right: auto;
        margin-left: auto;
        padding: 5px 0;
        letter-spacing: .8rem;
        text-align: center;
    }

    .business__subtitle {
        padding: 30px 0 0 0;
        font-weight: 400;
        letter-spacing: .3rem;
    }

    .business__text {
        font-size: 1.6rem;
        text-align: left;
    }

    .business__link-wrapper {
        width: 150px;
        margin-right: 0;
        margin-left: auto;
    }

    .business__text-block {
        width: 48%;
    }

    .business__image {
        width: 48%;
        margin-top: 0;
    }

    .business__content {
        margin-top: 40px;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {

    .business__title {
        padding: 10px 5px;
        font-size: 2.5rem;
    }

    .business__subtitle {
        padding-top: 50px;
        font-size: 3.3rem;
    }

    .business__text {
        font-size: 1.9rem;
        line-height: 2;
    }
}


/*******************************
 news
 *******************************/
.news {
    width: 90%;
    max-width: 1150px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 15px;
}

.news__title {
    font-size: clamp(2rem, 1.2rem + 1.5vw, 2.5rem);
    text-align: center;
}

.news__figure {
    text-align: center;
}

.news__image {
    display: inline-block;
}

.news__link-wrapper {
    width: 100px;
    margin-top: 20px;
    margin-left: auto;
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .news {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 80px;
        padding: 30px 60px 30px 40px;
    }

    .news__title {
        width: 40px;
        margin-right: auto;
        margin-left: auto;
        font-size: 2.7rem;
        letter-spacing: .3em;
        text-align: center;
        white-space: nowrap;

        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl;
        -webkit-text-orientation: upright;
        text-orientation: upright;
    }

    .news__link-wrapper {
        margin-top: 40px;
    }
}
}