@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    min-width: auto !important;
}



/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */


/*=================================

* media

=================================*/

@media screen and (max-width:767px) {
    .u-hidden-sp {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .u-hidden-pc {
        display: none;
    }
}

@media print {
    .l-footer__sp-menu {
        display: none;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*=================================

* コンテナ

=================================*/

.c-button-container {
    padding: 50px 0 0 0;
    text-align: center;
}

/*
　プライマリボタン
================================*/
.c-button--primary {
    display: block;
    width: 90%;
    padding: 15px 10px;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    background-color: #035aa6;
    border: solid 1px transparent;
}

.c-button--primary i {
    margin-left: 10px;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
    text-decoration: none;
    color: #fff;
}

.c-button--primary:hover {
    opacity: 1.0;
    color: #035aa6;
    background: #fff;
    border: solid 1px #035aa6;
}

@media screen and (min-width:768px) {
    .c-button--primary {
        width: 380px;
    }
}

/*
　H2タイトル
================================*/
h2.tit {
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    line-height: 1.4;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: transparent !important;
}

h2.tit::first-letter {
    color: #035aa6;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        max-width: 1140px;
        margin: 0 auto 50px auto;
        font-size: clamp(28px, 32 / 1140 * 100vw, 32px);
    }
}



/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 50px 0;
}

.l-section.l-section--gray {
    background: #f5f5f5;
}

.l-section__container {
    padding: 0 8px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-section {
        padding: 80px 0;
    } 

    .l-section__container {
        max-width: 1140px;
        margin: 0 auto;
    }
}


/*=================================

* ヘッダー

=================================*/

header {
    margin-bottom: 0;
}

.l-header {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.l-header h1 {
    margin-bottom: 13px;
    font-size: 14px;
}
    
.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
/* ロゴ */
.l-header__logo a {
    display: block;
    text-decoration: none;
}

.l-header__logo span {
    font-size: 20px !important;
    font-weight: 900;
    color: #333;
}
                
.l-header__logo img {
    display: block;
    max-width: 200px;
    height: auto;
}

/* ナビゲーション */
.l-header__nav {
    display: none;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-header {
        max-width: 1140px;
        margin: 0 auto;
        padding: 5px 8px 20px 8px;
    }

    .l-header h1 {
        margin-bottom: 15px;
        text-align: right;
        font-size: 16px;
    }

    .l-header__inner {
        align-items: baseline;
    }

    /* ロゴ */
    .l-header__logo span {
        line-height: 40px;
        font-size: clamp(24px, 30 / 1140 * 100vw, 30px) !important;
    }

    .l-header__logo img {
        max-width: clamp(200px, 270 / 1140 * 100vw, 270px);
    }

    /* ナビゲーション */
    .l-header__nav {
        display: block;
    }
                
    .l-header__nav ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
                    
    .l-header__nav li {
        padding: 0 15px;
    }

    .l-header__nav li:last-child {
        padding-right: 0;
    }

    .l-header__nav a {
        position: relative;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        font-size: clamp(14px, 16 / 1140 * 100vw, 16px);
        font-weight: bold;
        color: #000;
    }

    .l-header__nav a::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        bottom: -4px;
        left: 0;
        background: #000;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
    }

    .l-header__nav a:hover::after {
        transform: scale(1, 1);
    }

    /* ページタイトル */
    .l-header__page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 8px;
        font-size: 14px;
    }
}


/*=================================

* メインビジュアル

=================================*/
.l-main-visual {
    min-height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/main-visual.jpg);
    background-position: center;
}

.l-main-visual__wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.l-main-visual__title h2 {
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
    font-size: 26px;
    font-weight: 900;
    color: #035aa6;
    text-shadow: 
        #fff 3px 3px 3px, #fff -3px -3px 3px, 
        #fff -3px 3px 3px, #fff 3px -3px 3px, 
        #fff 3px 0px 3px, #fff -3px 0px 3px, 
        #fff 0px 3px 3px, #fff 0px -3px 3px;
}

.l-main-visual__inner {
    width: 85%;
    margin: 0 auto;
}

.l-main-visual__request {
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    background-color: #767171;
}

.l-main-visual__request h3 {
    margin-bottom: 13px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.l-main-visual__request p {
    margin-bottom: 15px;
    font-weight: bold;
}

.l-main-visual__request p span {
    font-size: 20px;
    color: #f4bd49;
}

.l-main-visual__request__button a {
    display: block;
    padding: 10px 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    color: #333;
    background-color: #fff;
}

.l-main-visual__request__button a:hover {
    color: #fff;
    background-color: #f4bd49;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual__wrapper {
        display: flex;
        justify-content: space-between;
        max-width: 1140px;
        width: 100%;
        padding: 100px 8px;
        box-sizing: border-box;
    }

    .l-main-visual__title {
        width: 60%;
    }
    
    .l-main-visual__title h2 {
        margin-bottom: 0;
        text-align: left;
        font-size: clamp(38px, 48 / 1140 * 100vw, 48px);
    }

    .l-main-visual__inner {
        max-width: 350px;
        width: 100%;
        margin: 0 0 0 auto;
    }

    .l-main-visual__request {
        padding: 30px 40px 40px 40px;
    }

    .l-main-visual__request h3 {
        margin-bottom: 10px;
        font-size: 35px;
    }

    .l-main-visual__request p {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .l-main-visual__request p span {
        font-size: 24px;
    }

    .l-main-visual__request__button a {
        padding: 15px 5px;
    }
}


/*=================================

* フッター

=================================*/
.l-footer {
    background: #035aa6;
}

.l-footer__request {
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.l-footer__request__announce {
    margin-bottom: 25px;
}

.l-footer__request__announce p {
    line-height: 1.6;
    font-weight: bold;
}

.l-footer__request__action h2 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 26px;
}

.l-footer__request__action p {
    margin-bottom: 25px;
    font-weight: bold;
}

.l-footer__request__action p span {
    font-size: 20px;
    color: #f4bd49;
}

.l-footer__request__action__button a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    border: solid 1px #f4bd49;
    background: #f4bd49;
}

.l-footer__request__action__button a:hover {
    opacity: 1;
    border: solid 1px #fff;
    background: #035aa6;
}

.l-footer__nav {
    display: none;
}

.l-footer__bottom__nav {
    position: fixed;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 0 6px rgb(0 0 0 / 20%);
    z-index: 50;
}

.l-footer__bottom__nav ul {
    display: flex;
    justify-content: space-around;
}

.l-footer__bottom__nav li {
    width: 20%;
}
                
.l-footer__bottom__nav a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}
                    
.l-footer__bottom__nav i {
    font-size: 30px;
}
        
.l-footer__bottom__nav span {
    display: block;
    font-size: 12px;
    font-weight: bold;
}

/* ハンバーガーメニュー */
.l-footer__sp-menu {
    width: 100%;
    height: 100%;
    background: #fefefe;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 72px 20px 65px 20px;
    transform: translateY(min(-100%,-1000px));
    transition: transform .5s;
}

.l-footer__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-footer__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-footer__sp-menu ul li:hover {
    background: #747474;
}

.l-footer__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-footer__sp-menu ul li a {
    margin-left: 1em;
    text-decoration: none;
    font-size: 1em;
    line-height: 3em;
    color: #035aa6;
    display: block;
    width: 100%;
    height: 3em;
}

.l-footer__sp-menu ul li a:hover {
    color: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    footer {
        border-top: none;
    }
    
    .l-footer {
        width: 100%;
    }
    
    .l-footer__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 8px;
    }
    
    .l-footer__request {
        width: 100%;
        padding: 50px 10px;
        box-sizing: border-box;
    }

    .l-footer__request__announce p {
        font-size: 20px;
    }

    .l-footer__request__action h2 {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .l-footer__request__action p {
        margin-bottom: 35px;
        font-size: 22px;
    }

    .l-footer__request__action p span {
        font-size: 26px;
    }
    
    .l-footer__request__action__button a {
        max-width: 380px;
        margin: 0 auto;
        font-size: 18px;
    }
    
    .l-footer__nav {
        display: block;
        padding: 7px 0;
        text-align: center;
        background: #767171;
    }
    
    .l-footer__nav ul {
        max-width: 1140px;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    
    .l-footer__nav li {
        margin: 0 20px;
    }
    
    .l-footer__nav a {
        color: #fff;
        text-decoration: none;
    }
    
    .l-footer__nav a:hover {
        opacity: 1.0;
        color: #f4bd49;
    }

    .l-footer__bottom__nav {
        display: none;
    }

    .l-footer__sp-menu {
        display: none;
    }
}


/*=================================

* Copyright

=================================*/

.copyright {
    background-color: #52575d !important;
    padding: 8px 0 75px 0 !important;
    color: #fff;
}

/* PC */
@media screen and (min-width:768px) {
    .copyright {
        padding: 8px 0 8px 0 !important;
    }
}


/*=================================

* ページの先頭へ

=================================*/

/* SP */
@media screen and (max-width: 767px) {
    .btn__page_top {
      display: none !important;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* トップ

=================================*/

/*
　あいさつ-07
================================*/
.c-about-07 {
    width: 95%;
    margin: 0 auto;
    padding: 30px 30px 40px 30px;
    background: #fff;
    border-radius: 7px;
    box-sizing: border-box;
}

.c-about-07__image {
    margin-bottom: 20px;
}

.c-about-07__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
    
.c-about-07__text {
    line-height: 1.6;
}

.c-about-07__text__button {
    padding: 20px 0 0 0;
    text-align: center;
}

.c-about-07__text__button a {
    display: block;
    padding: 15px 10px;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #035aa6;
    border: solid 1px transparent;
}

.c-about-07__text__button a:hover {
    opacity: 1.0;
    color: #035aa6;
    background: #fff;
    border: solid 1px #035aa6;
}

/* PC */
@media screen and (min-width:768px) {
    .c-about-07 {
        width: 100%;
        padding: 40px 45px 45px 45px;
    }

    .c-about-07 h2 {
        padding-left: 0;
        text-align: left;
    }

    .c-about-07__body {
        display: flex;
        justify-content: space-between;
    }
    
    .c-about-07__image {
        order: 2;
        max-width: 450px;
        margin-bottom: 0;
    }

    .c-about-07__text {
        order: 1;
        width: calc(100% - 20%);
        margin-right: 30px;
    }

    .c-about-07__text__button {
        padding-top: 30px;
    }

    .c-about-07__text__button a {
        width: 380px;
        margin: 0 auto 0 0;
    }
}

/*
　特徴（３カラム）-02
================================*/
.c-feature-col3-02 {
    width: 100%;
}

.c-feature-col3-02 li {
    margin-bottom: 80px;
}

.c-feature-col3-02 li:last-child {
    margin-bottom: 20px;
}

.c-feature-col3-02__image {
    margin-bottom: 20px;
}

.c-feature-col3-02__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.c-feature-col3-02__text {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.c-feature-col3-02 h3 {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:768px) {
    .c-feature-col3-02 {
        max-width: 1140px;
        margin: 0 auto;
    }

    .c-feature-col3-02 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .c-feature-col3-02 ul::after {
        content: '';
        display: block;
        width: 30%;
    }

    .c-feature-col3-02 li {
        width: 30%;
        margin-bottom: 50px;
    }

    .c-feature-col3-02 h3 {
        text-align: center;
        font-size: 28px;
    }
}

/*
　挨拶-06
================================*/
.c-greeting-06 {
    position: relative;
    overflow: hidden;
}

.c-greeting-06__wrapper {
    position: relative;
    margin-top: 100px;
}

.c-greeting-06__wrapper::before {
    content: "";
    position: absolute;
    display: block;
    top: -50px;
    right: 0;
    left: 0;
    bottom: -50px;
    background-color: #f5f5f5;
    z-index: -1;
}

.c-greeting-06__image {
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
}

.c-greeting-06__image img {
    max-width: 100%;
}

.c-greeting-06__content {
    width: 85%;
    margin: 0 auto;
    padding: 30px 0;
}

.c-greeting-06__text {
    margin-bottom: 30px;
}

.c-greeting-06__text__intro {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 26px;
    font-weight: 900;
    color: #035aa6;
}

.c-greeting-06__text__detail {
    margin-bottom: 10px;
    text-align: justify;
    line-height: 1.75;
}

.c-greeting-06__text__post,
.c-greeting-06__text__name {
    text-align: right;
}

.c-greeting-06__text__post {
    font-size: 15px;
}

.c-greeting-06__text__name {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: bold;
}

/* PC */
@media screen and (min-width:900px) {
    .c-greeting-06__wrapper {
        margin-top: 120px;
    }

    .c-greeting-06__wrapper::before {
        top: -70px;
        right: -100px;
        left: 130px;
        border-radius: 0 0 0 50px;
    }

    .c-greeting-06__body {
        position: relative;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 50px;
    }

    .c-greeting-06__image {
        max-width: 40%;
        margin: 0 60px 0 0;
    }

    .c-greeting-06__image img {
        max-width: 75%; 
    }

    .c-greeting-06__content {
        width: 47%;
        max-width: 47%;
        margin: 0;
        padding: 0;
    }

    .c-greeting-06__text {
        margin-bottom: 50px;
    }

    .c-greeting-06__text__intro {
        margin-bottom: 40px;
        font-size: 30px;
    }

    .c-greeting-06__text__detail {
        font-size: 18px;
    }

    .c-greeting-06__text__post {
        font-size: 18px;
    }
    
    .c-greeting-06__text__name {
        font-size: 20px;
    }
}

/* PC */
@media screen and (min-width:1500px) {
    .c-greeting-06__content {
        width: 40%;
        max-width: 40%;
    }
}

/*
　物件情報-07
================================*/
.c-estate-list-col3-07 li {
    position: relative;
    width: 90%;
    margin:0 auto 50px auto;
    border: solid 1px #9c9c9c;
    background-color: #f5f5f5;
}

.c-estate-list-col3-07 li:last-child {
    margin-bottom: 20px;
}

.c-estate-list-col3-07 a {
    display: block;
    text-decoration: none;
    color: #333;
}
                
.c-estate-list-col3-07__image {
    position: relative;
}

.c-estate-list-col3-07__image img:last-of-type {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
    
.c-estate-list-col3-07__label {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.c-estate-list-col3-07__price {
    line-height: 1.3;
    font-size: 20px;
    font-weight: bold;
}

.c-estate-list-col3-07__price span {
    margin-left: 2px;
    font-size: 17px;
}
    
.c-estate-list-col3-07__textarea {
    padding: 15px 20px;
}
                    
.c-estate-list-col3-07__type {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    line-height: 1.6;
    font-size: 14px;
    color: #fff;
    background-color: #035aa6;
}

.c-estate-list-col3-07__type[data-type*="賃貸"]{
    background: #f4bd49;
}

.c-estate-list-col3-07__address {
    margin-bottom: 10px;
    font-weight: bold;
}

.c-estate-list-col3-07__access {
    margin-bottom: 10px;
    font-size: 15px;
}
                        
.c-estate-list-col3-07__catchcopy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-size: 15px;
    color: #035aa6;
}

/* PC */
@media screen and (min-width:768px) {
    .c-estate-list-col3-07 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 8px;
    }

    .c-estate-list-col3-07::after {
        content: '';
        display: block;
        width: 30%;
    }

    .c-estate-list-col3-07 li {
        width: 30%;
        margin: 0 0 50px 0;
    }

    .c-estate-list-col3-07 li:last-child {
        margin-bottom: 50px;
    }

    .c-estate-list-col3-07 a {
        height: 100%;
    }

    .c-estate-list-col3-07 a:hover {
        opacity: 0.6;
    }

    .c-estate-list-col3-07__price {
        font-size: 22px;
    }

    .c-estate-list-col3-07__price span {
        font-size: 18px;
    }
}


/*=================================

* 下層ページ

=================================*/

/*=================================
* 物件リクエスト
=================================*/
/*
　導入
================================*/
.p-mp-request__intro {
    position: relative;
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

.p-mp-request__intro::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 131px;
    top: 0;
    left: 0;
    background: url(../img/mp-request-01__icon--01.svg);
    background-repeat: no-repeat;
}

.p-mp-request__intro::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 121px;
    bottom: 0;
    right: 0;
    background: url(../img/mp-request-01__icon--02.svg);
    background-repeat: no-repeat;
}

.p-mp-request__intro__title {
    position: relative;
    margin-bottom: 20px;
    z-index: 50;
}

.p-mp-request__intro__title span {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 15px 8px 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border-radius: 7px;
    background: #035aa6;
}

.p-mp-request__intro__title span::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top: 12px solid #035aa6;
}

.p-mp-request__intro__title h2 {
    line-height: 1.5;
    text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
    font-size: 22px;
    font-weight: bold;
}

.p-mp-request__intro__title h2 em {
    font-style: normal;
    font-size: 24px;
    font-weight: 900;
}

.p-mp-request__intro__body {
    position: relative;
    z-index: 50;
}

.p-mp-request__intro__body__note {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold
}

.p-mp-request__intro__body__detail {
    line-height: 1.6;
    text-align: left;
    text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
}

/* PC */
@media screen and (min-width:768px) {
    .p-mp-request__intro {
        max-width: 900px;
    }

    .p-mp-request__intro::before {
        width: 200px;
        height: 177px;
    }
    
    .p-mp-request__intro::after {
        width: 200px;
        height: 161px;
    }
    
    .p-mp-request__intro__title {
        margin-bottom: 40px;
    }
    
    .p-mp-request__intro__title span {
        margin-bottom: 25px;
        padding: 7px 25px 8px 25px;
        font-size: 24px;
    }
    
    .p-mp-request__intro__title h2 {
        line-height: 1.5;
        font-size: 28px;
    }
    
    .p-mp-request__intro__title h2 em {
        font-size: 38px;
    }
    
    .p-mp-request__intro__body__note {
        margin-bottom: 40px;
        font-size: 24px;
    }
    
    .p-mp-request__intro__body__detail {
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 18px;
    }
}

/*
　概要
================================*/
.p-mp-request__description h2 {
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.5;
    font-size: 22px;
    font-weight: bold;
}

.p-mp-request__description h2 span {
    font-weight: bold;
    background: linear-gradient(transparent 65%, #ffd1a3 65%);
}

.p-mp-request__description__step {
    width: 95%;
    margin: 0 auto;
}

.p-mp-request__description__step__unit {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: solid 1px #035aa6;
    border-radius: 5px;
    box-sizing: border-box;
}

.p-mp-request__description__step__unit:last-child {
    margin-bottom: 0;
}
    
.p-mp-request__description__step__unit__head {
    margin-bottom: 10px;
}

.p-mp-request__description__step__unit__head span {
    display: block;
    margin-bottom: 15px;
    padding: 5px 10px 3px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #035aa6;
    border-radius: 50px;
}

.p-mp-request__description__step__unit__head h3 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.p-mp-request__description__step__unit__body img {
    display: block;
    object-fit: cover;
    width: 35%;
    height: auto;
    margin: 0 auto 10px auto;
}

.p-mp-request__description__step__unit__body p {
    line-height: 1.5;
}

/* PC */
@media screen and (min-width:768px) {
    .p-mp-request__description h2 {
        margin-bottom: 50px;
        font-size: 28px;
    }

    .p-mp-request__description__step {
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .p-mp-request__description__step ul {
        display: flex;
        justify-content: space-between;
    }

    .p-mp-request__description__step__unit {
        width: 31%;
        margin-bottom: 0;
        padding: 25px 20px;
    }

    .p-mp-request__description__step__unit__head h3 {
        font-size: 22px;
    }

    .p-mp-request__description__step__unit__body img {
        width: 45%;
        margin-bottom: 15px;
    }

    .p-mp-request__description__step__unit__body p {
        line-height: 1.6;
    }
}

/*
　流れ
================================*/
.l-section.p-mp-request__flow {
    padding-bottom: 20px;
}

.p-mp-request__flow__detail {
    width: 95%;
    margin: 0 auto;
}

.p-mp-request__flow__detail h2 {
    margin-bottom: 35px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.p-mp-request__flow__wrapper {
    margin-bottom: 50px;
}

.p-mp-request__flow_unit {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.p-mp-request__flow_unit:last-child {
    margin-bottom: 0;
}

.p-mp-request__flow_unit__image {
    position: relative;
}

.p-mp-request__flow_unit__image span {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 25px;
    text-align: center;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    font-weight: bold;
    background: #035aa6;
    color: #fff;
}

.p-mp-request__flow_unit__image img {
    display: block;
    width: 100px;
    height: auto;
}

.p-mp-request__flow_unit__body {
    margin-left: 15px;
}

.p-mp-request__flow_unit__body h3 {
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: bold;
}

.p-mp-request__flow__catch {
    margin: 0 auto;
    padding: 7px 5px 33px 5px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 95%, 0 60%, 0 0);
    background: #035aa6;
}

/* PC */
@media screen and (min-width:768px) {
    .p-mp-request__flow__detail {
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .p-mp-request__flow__detail h2 {
        margin-bottom: 50px;
        font-size: 28px;
    }

    .p-mp-request__flow__wrapper {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    .p-mp-request__flow_unit {
        display: block;
        width: 26%;
        margin-bottom: 0;
    }

    .p-mp-request__flow_unit__image {
        width: 150px;
        margin: 0 auto 15px auto;
    }

    .p-mp-request__flow_unit__image span {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 22px;
    }

    .p-mp-request__flow_unit__image img {
        width: 150px;
    }

    .p-mp-request__flow_unit__body {
        margin-left: 0;
        text-align: center;
    }

    .p-mp-request__flow_unit__body h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .p-mp-request__flow_unit__body p {
        font-size: 18px;
    }

    .p-mp-request__flow__catch {
        max-width: 550px;
        padding: 10px 10px 45px 10px;
        font-size: 24px;
        clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 90%, 0 50%, 0 0);
    }
}

/*
　CTA
================================*/
.l-section.p-mp-request__action {
    background: #eaf0fa;
}