@charset "UTF-8";

/**
* @file _reset.scss
**/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    border: 0;
}

a {
    font-size: 16px;
    color: #351A0E;
}

html {
    scroll-behavior: smooth;
    font-family: "Noto Sans JP";
    background-color: #FAFAFA;
    overflow-x: hidden;
}

body {
    font-family: "Noto Sans JP";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
    margin-bottom: 0;
}

ol,
ul {
    list-style: none;
}

*:focus {
    outline: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

button {
    cursor: pointer;
    border: 0;
    outline: none;
}

table td,
table th {
    padding: 0;
    border: 0;
}

img {
    max-width: 100%;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    visibility: visible !important;
}

input:focus {
    outline: 0;
}

td,
th,
tr {
    vertical-align: middle;
}

*,
dd,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
picture,
table,
ul {
    margin: 0;
}

ol,
ul {
    padding: 0;
    list-style-type: none;
}

textarea {
    resize: vertical;
}

fieldset,
legend {
    padding: 0;
}

figure {
    display: flex;
    align-items: center;
    justify-content: center;
}


/**
* @file _common.scss
**/

.is-pc {
    display: block;
}

@media screen and (max-width: 769px) {
    .is-pc {
        display: none !important;
    }
}

.is-sp {
    display: none !important;
}

@media screen and (max-width: 769px) {
    .is-sp {
        display: block !important;
    }
}

.no-display {
    top: 0 !important;
    opacity: 0;
}

.__container {
    max-width: 1184px;
    width: 100%;
}

.slick-list {
    transform: scale(1.1) !important;
}

@media screen and (max-width: 769px) {
    .slick-list {
        transform: scale(1.5) !important;
    }
}

.c-header .c-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.c-header .c-header__inner h1 {
    width: 350px;
    height: auto;
}

@media screen and (max-width: 769px) {
    .c-header .c-header__inner h1 {
        width: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.c-header .c-header__inner h1 img {
    width: 100%;
}

.c-header .c-header__inner .c-header-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-header .c-header__inner .c-header-right .c-header__items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 32px;
}

@media screen and (max-width: 1280px) {
    .c-header .c-header__inner .c-header-right .c-header__items {
        gap: 15px;
    }
}

@media screen and (max-width: 1200px) {
    .c-header .c-header__inner .c-header-right .c-header__items {
        display: none;
    }
}

.c-header .c-header__inner .c-header-right .c-header__items li {
    font-weight: 700;
    font-size: 16px;
    position: relative;
    padding: 10px 0;
}

.c-header .c-header__inner .c-header-right .c-header__items li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 1.5px;
    background-color: #333333;
    transition: all 0.1s ease-out;
}

.c-header .c-header__inner .c-header-right .c-header__items li:hover::after {
    width: 100%;
    left: 0;
}

.c-header .c-header__inner .c-header-right .c-header__items li a {
    text-decoration: none;
}

.c-header .c-header__inner .c-header-right .c-header__items li:nth-child(3) {
    padding-right: 20px;
}

.c-header .c-header__inner .c-header-right .c-header__items li:nth-child(3):hover {
    transition: all 0.3s;
}

.c-header .c-header__inner .c-header-right .c-header__items li:nth-child(3):hover::before {
    content: "";
    display: block;
    transform-origin: center;
    transform: rotate(-180deg) translateY(-10px);
}

.c-header .c-header__inner .c-header-right .c-header__items li:nth-child(3)::before {
    content: "";
    background-image: url(../img/ico-down.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: absolute;
    width: 14px;
    height: 8px;
    right: 0;
    transform: translateY(10px);
    transition: 0.5s;
}

.c-header .c-header__inner .c-header-right .c-header__items li:last-child .submenu {
    right: 0;
    left: auto;
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    /* 初期状態で高さを0にする */
    overflow: hidden;
    /* 中の要素が見えないようにする */
    position: absolute;
    left: 0;
    top: 61px;
    background-color: white;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: -moz-max-content;
    width: max-content;
    transition: opacity 0.6s ease, visibility 0.3s ease, max-height 1s ease;
    /* max-heightをアニメーションさせる */
    padding: 0;
    background-color: unset;
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu li {
    text-align: center;
    width: 226px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    margin-top: 2px;
    background-color: #fafafa;
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu li:hover {
    background-color: #e5e6e9;
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu li a {
    text-align: center;
    color: #e9514e;
    font-size: 16px;
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu li:nth-child(3) {
    padding-right: 0;
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu li:nth-child(3):hover {
    transition: all 0.3s;
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu li:nth-child(3):hover::before {
    content: "";
    display: none;
    transform-origin: center;
    transform: rotate(-180deg) translateY(-10px);
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu li:nth-child(3):nth-child(3)::before {
    content: "";
    background-image: url(../img/ico-down.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: absolute;
    width: 14px;
    height: 8px;
    right: 0;
    transform: translateY(10px);
    transition: 0.5s;
    display: none;
}

.c-header .c-header__inner .c-header-right .c-header__items li .submenu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 1.5px;
    background-color: #e9514e;
    transition: all 0.1s ease-out;
}

.c-header .c-header__inner .c-header-right .c-header__items li:hover .submenu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    /* 必要な高さに変更（調整可能） */
}

.c-header .c-header__inner .hambtn {
    display: none;
}

@media screen and (max-width: 1200px) {
    .c-header .c-header__inner .hambtn {
        display: block;
    }
}

.c-header .c-header__inner .hamburger-menu-icon-wrap {
    width: 28px;
    height: 16px;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
    opacity: 1;
}

.c-header .c-header__inner .hamburger-menu-icon-wrap .hamburger-menu-line.top {
    top: 0;
}

.c-header .c-header__inner .hamburger-menu-icon-wrap .hamburger-menu-line.middle {
    top: 50%;
    transform: translateY(-50%);
}

.c-header .c-header__inner .hamburger-menu-icon-wrap .hamburger-menu-line.bottom {
    bottom: 0;
}

.c-header .c-header__inner .hamburger-menu-icon-wrap .hamburger-menu-line.top.open {
    transform: translateY(2px) rotate(-45deg);
}

.c-header .c-header__inner .hamburger-menu-icon-wrap .hamburger-menu-line.middle.open {
    opacity: 0;
    visibility: visible;
}

.c-header .c-header__inner .hamburger-menu-icon-wrap .hamburger-menu-line.bottom.open {
    transform: translateY(-12px) rotate(45deg);
}

.c-header .c-header__inner .hamburger-menu-icon-wrap .hamburger-menu-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: transform 0.3s, opacity 0.1s;
}

.hamburger-menu {
    width: 100%;
    padding: 32px;
    background-color: #fafafa;
    position: fixed;
    transition: all 0.2s;
    z-index: 100;
    top: -600px;
    opacity: 1;
    height: -moz-max-content;
    height: max-content;
}

.hamburger-menu .hambuger-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger-menu .hambuger-menu-head figure {
    width: 250px;
    height: auto;
}

.hamburger-menu .hambuger-menu-head figure a {
    display: block;
}

.hamburger-menu .hambuger-menu-head figure a img {
    width: 100%;
}

.hamburger-menu .hambuger-menu-head svg {
    cursor: pointer;
}

.hamburger-menu .hamburger-menu-list li {
    padding-top: 20px;
    position: relative;
    width: -moz-max-content;
    width: max-content;
}

.hamburger-menu .hamburger-menu-list li a {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}

.hamburger-menu .hamburger-menu-list li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2.5px;
    background-color: #333333;
    transition: all 0.2s ease-out;
}

.hamburger-menu .hamburger-menu-list li:hover::after {
    width: 100%;
    left: 0;
}

.hamburger-menu .hamburger-menu-list li a {
    text-decoration: none;
}

.hamburger-menu .hamburger-menu-list li:nth-child(3) {
    padding-right: 20px;
}

.hamburger-menu .hamburger-menu-list li:nth-child(3):hover {
    transition: all 0.3s;
}

.hamburger-menu .hamburger-menu-list li:nth-child(3):hover::before {
    content: "";
    display: block;
    transform-origin: center;
    transform: rotate(-180deg) translateY(-10px);
}

.hamburger-menu .hamburger-menu-list li:nth-child(3):hover::after {
    width: 0;
    left: 0;
}

.hamburger-menu .hamburger-menu-list li .submenu {
    padding-left: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.hamburger-menu .hamburger-menu-list li .submenu li {
    padding-top: 15px;
}

.hamburger-menu .hamburger-menu-list li .submenu li a {
    font-size: 13px;
}

.hamburger-menu .hamburger-menu-list li .submenu li:nth-child(3)::before {
    content: "";
    background-image: unset;
}

.c-footer .p-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-plink.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    .c-footer .p-link {
        background-size: cover;
        background-position: right;
        background-image: url(../img/bg-plink@2x.jpg);
    }
}

.c-footer .p-link .__container {
    padding: 64px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

@media screen and (max-width: 769px) {
    .c-footer .p-link .__container {
        padding: 64px 16px;
        flex-direction: column;
        gap: 40px;
    }
}

.c-footer .p-link .__container .__link-item {
    padding: 40px;
    border: 1px solid #fafafa;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    background-color: rgba(255, 255, 255, 0.062745098);
    max-width: 520px;
    width: 100%;
}

.c-footer .p-link .__container .__link-item .__link-ttl {
    color: #fafafa;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
    font-weight: 500;
    text-align: center;
}

.c-footer .p-link .__container .__link-item .__link-ttl .en-ttl {
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    .c-footer .p-link .__container .__link-item .__link-ttl .en-ttl {
        font-size: 33px;
    }
}

.c-footer .p-link .__container .__link-item .__link-ttl .jp-ttl {
    font-size: 20px;
    padding-top: 8px;
}

@media screen and (max-width: 769px) {
    .c-footer .p-link .__container .__link-item .__link-ttl .jp-ttl {
        font-size: 16px;
    }
}

.c-footer .p-link .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.c-footer .p-link .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

.c-footer .p-link .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

.c-footer .p-link .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

.c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    .c-footer .p-footer {
        background-size: cover;
    }
}

.c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    .c-footer .p-footer .__container {
        padding: 32px;
    }
}

.c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

.c-footer .p-footer .__container .__link-wraps .__link-wrap a,
.c-footer .p-footer .__container .__link-wraps .__link-wrap p,
.c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

.c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

.c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

.c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#top .p-fv {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/img-fv.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #top .p-fv {
        background-size: cover;
    }
}

#top .p-fv .__container {
    max-width: 1184px;
    text-align: center;
    padding: 166px 32px 176px;
    width: 100%;
}

@media screen and (max-width: 769px) {
    #top .p-fv .__container {
        padding: 104px 16px;
    }
}

#top .p-fv .__container h2 {
    font-size: 61px;
    font-weight: 700;
    background-image: url(../img/bg-fvh2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    margin: auto;
    color: #e9514e;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #top .p-fv .__container h2 {
        font-size: 40px;
        margin-left: 0;
        padding: 10px;
        color: #333333;
        margin-bottom: 24px;
    }
}

#top .p-fv .__container h2 span {
    font-size: 49px;
    color: #333333;
}

#top .p-fv .__container h2 strong {
    color: #333333;
}

#top .p-fv .__container h2::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background: #211515;
    animation: borderBg 1.4s cubic-bezier(1, 0, 0, 1) 0s forwards;
}

@keyframes borderBg {
    0% {
        left: -100%;
    }
    30% {
        left: 0;
    }
    70% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

@keyframes borderBg {
    0% {
        left: -100%;
    }
    30% {
        left: 0;
    }
    70% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

@keyframes borderTxt {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

#top .p-fv .__container .h2_sec {
    margin-top: 10px;
    margin-bottom: 10px;
}

#top .p-fv .__container .h2_sec span {
    font-size: 49px;
    color: #333333;
}

#top .p-fv .__container h3 {
    font-size: 39px;
    font-weight: 700;
    background-image: url(../img/bg-fvh2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    margin: auto;
    color: #333333;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #top .p-fv .__container h3 {
        font-size: 16px;
        margin-top: 16px;
        margin-left: 0;
        padding: 4px 8px;
    }
}

#top .p-fv .__container h3 span {
    color: #e9514e;
}

#top .p-fv .__container h3::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background: #211515;
    animation: borderBg 1.4s cubic-bezier(1, 0, 0, 1) 0s forwards;
}

@keyframes borderBg {
    0% {
        left: -100%;
    }
    30% {
        left: 0;
    }
    70% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

@keyframes borderTxt {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

#top .p-fv .__container .mt-40 {
    margin-top: 40px;
}

#top .p-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url(../img/bg-badge.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#top .p-badge .__container {
    padding: 64px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: unset;
    padding: 107px 32px;
}

@media screen and (max-width: 769px) {
    #top .p-badge .__container {
        padding: 80px 32px;
        transform: translateX(14%);
    }
}

#top .p-badge .__container figure {
    max-width: 386px;
}

@media screen and (max-width: 769px) {
    #top .p-badge .__container figure {
        max-width: 290px;
        padding-right: 16px;
        padding-left: 16px;
    }
}

#top .p-badge .__container figure img {
    width: 100%;
}

#top .p-about {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-about.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100% 89%;
    margin-top: -5px;
}

@media screen and (max-width: 769px) {
    #top .p-about {
        background-size: 439% 79%;
    }
}

#top .p-about .__container {
    padding-top: 80px;
}

@media screen and (max-width: 769px) {
    #top .p-about .__container {
        padding-top: 64px;
    }
}

#top .p-about .__container .p-about-ttl {
    color: #fafafa;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #top .p-about .__container .p-about-ttl {
        text-align: center;
    }
}

#top .p-about .__container .p-about-ttl .en-ttl {
    font-size: 49px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

@media screen and (max-width: 769px) {
    #top .p-about .__container .p-about-ttl .en-ttl {
        font-size: 33px;
    }
}

#top .p-about .__container .p-about-ttl .jp-ttl {
    font-size: 20px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

#top .p-about .__container .p-about-main {
    margin-top: 40px;
}

@media screen and (max-width: 769px) {
    #top .p-about .__container .p-about-main {
        margin-top: 88px;
    }
}

#top .p-about .__container .p-about-main .__main-ctn {
    width: 810px;
    background-color: rgba(255, 255, 255, 0.1450980392);
    transform: translateX(-160px);
    padding: 40px 40px 48px 160px;
    border: 1px solid #fafafa;
    color: #fafafa;
    font-size: 25px;
    font-weight: 500;
}

#top .p-about .__container .p-about-main .__main-ctn span {
    padding-top: 32px;
    display: block;
    font-size: 16px;
}

@media screen and (max-width: 769px) {
    #top .p-about .__container .p-about-main .__main-ctn {
        width: 100%;
        transform: unset;
        padding: 40px 16px 64px;
        background: rgba(250, 250, 250, 0.8);
        font-size: 23px;
        color: #333333;
    }
}

#top .p-about .__container .p-about-main .__main-btn {
    padding: 12px 72px 12px 24px;
    color: #fafafa;
    position: relative;
    background-color: #e9514e;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-24px);
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

@media screen and (max-width: 769px) {
    #top .p-about .__container .p-about-main .__main-btn {
        transform: unset;
        margin-top: 40px;
        margin-right: auto;
        margin-left: auto;
    }
}

#top .p-about .__container .p-about-main .__main-btn::after {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../img/ico-btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 21px;
    height: 4px;
    transform: translate(24px, 21px);
    transition: transform 0.3s ease;
}

#top .p-about .__container .p-about-main .__main-btn:hover {
    color: #e9514e;
    background-color: #ffffff;
}

#top .p-about .__container .p-about-main .__main-btn:hover::after {
    transform: translate(40px, 21px);
    background-image: url("../img/ico-btnr.png");
}

#top .p-domains {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

#top .p-domains::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 295px;
    background-color: #333333;
    bottom: 0;
    z-index: 2;
}

@media screen and (max-width: 769px) {
    #top .p-domains::before {
        height: 80%;
    }
}

#top .p-domains .__container {
    padding: 66px 32px;
    position: relative;
    z-index: 20;
}

@media screen and (max-width: 769px) {
    #top .p-domains .__container {
        padding: 80px 32px;
    }
}

#top .p-domains .__container .p-domains-ttl {
    width: -moz-max-content;
    width: max-content;
    margin: auto;
}

#top .p-domains .__container .p-domains-ttl .en-ttl {
    font-size: 49px;
    font-weight: 700;
    color: #333333;
}

@media screen and (max-width: 769px) {
    #top .p-domains .__container .p-domains-ttl .en-ttl {
        font-size: 33px;
    }
}

#top .p-domains .__container .p-domains-ttl .jp-ttl {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    padding-top: 8px;
    text-align: center;
}

@media screen and (max-width: 769px) {
    #top .p-domains .__container .p-domains-ttl .jp-ttl {
        font-size: 19px;
        padding-top: 16px;
    }
}

#top .p-domains .__container .p-domains-main {
    padding-top: 64px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 13px;
}

@media screen and (max-width: 769px) {
    #top .p-domains .__container .p-domains-main {
        flex-direction: column;
        gap: 40px;
    }
}

#top .p-domains .__container .p-domains-main .__main-item .__item-ttl {
    width: 271px;
    height: 270px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 101% 100%;
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fafafa;
    font-size: 23px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

@media screen and (max-width: 769px) {
    #top .p-domains .__container .p-domains-main .__main-item .__item-ttl {
        height: -moz-max-content;
        height: max-content;
        margin-left: 0;
        font-size: 28px;
        padding: 104px 24px 16px;
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    #top .p-domains .__container .p-domains-main .__main-item .__item-ttl {
        width: 28vw;
    }
}

#top .p-domains .__container .p-domains-main .__main-item.bg-1 .__item-ttl {
    background-image: url(../img/bg-domain_1.jpg);
}

#top .p-domains .__container .p-domains-main .__main-item.bg-2 .__item-ttl {
    background-image: url(../img/bg-domain_2.jpg);
}

#top .p-domains .__container .p-domains-main .__main-item.bg-3 .__item-ttl {
    background-image: url(../img/bg-domain_3.jpg);
}

#top .p-domains .__container .p-domains-main .__main-item.bg-4 .__item-ttl {
    background-image: url(../img/bg-domain_4.jpg);
}

#top .p-domains .__container .p-domains-main .__main-item .__item-ctn {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    padding-top: 40px;
}

#top .p-domains .__container .p-domains-main .__main-item-sp {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

#top .p-domains .__container .p-domains-main .__main-item-sp.bg-1 {
    background-image: url(../img/img-domain_1@2x.jpg);
}

#top .p-domains .__container .p-domains-main .__main-item-sp.bg-2 {
    background-image: url(../img/img-domain_2@2x.jpg);
}

#top .p-domains .__container .p-domains-main .__main-item-sp.bg-3 {
    background-image: url(../img/img-domain_3@2x.jpg);
}

#top .p-domains .__container .p-domains-main .__main-item-sp.bg-4 {
    background-image: url(../img/bg-domain_4.jpg);
}

#top .p-domains .__container .p-domains-main .__main-item-sp .__item-ttl {
    padding: 104px 24px 16px;
    color: #fafafa;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

#top .p-domains .__container .p-domains-main .__main-item-sp .__item-ctn {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3137254902);
    background: rgba(255, 255, 255, 0.1450980392);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: #fafafa;
}

#top .p-domains .__container .p-domains-main .__domain-more {
    padding: 12px 72px 12px 24px;
    background-color: #fafafa;
    position: relative;
    color: #e9514e;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin-top: 24px;
}

#top .p-domains .__container .p-domains-main .__domain-more::after {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../img/ico-btnr.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 21px;
    height: 4px;
    transform: translate(24px, 21px);
}

#top .p-portfolio {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#top .p-portfolio .__container {
    padding: 104px 0;
}

@media screen and (max-width: 769px) {
    #top .p-portfolio .__container {
        padding: 80px 0 0;
    }
}

#top .p-portfolio .__container .p-portfolio-ttl {
    text-align: center;
    color: #333333;
    font-weight: 49px;
    display: block;
}

#top .p-portfolio .__container .p-portfolio-ttl .en-ttl {
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #top .p-portfolio .__container .p-portfolio-ttl .en-ttl {
        font-size: 33px;
        display: none;
    }
}

#top .p-portfolio .__container .p-portfolio-ttl .jp-ttl {
    font-size: 20px;
    padding-top: 8px;
}

@media screen and (max-width: 769px) {
    #top .p-portfolio .__container .p-portfolio-ttl .jp-ttl {
        font-size: 33px;
        margin-top: 0;
        font-size: 700;
    }
}

#top .p-portfolio .__container .p-portfolio-main {
    padding-top: 65px;
    transform: translateX(220px);
}

@media screen and (max-width: 769px) {
    #top .p-portfolio .__container .p-portfolio-main {
        transform: translateX(161px);
        padding-top: 100px;
    }
}

#top .p-portfolio .__container .p-portfolio-main .__main-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

#top .p-portfolio .__container .p-portfolio-main .portfolio_slider-item {
    padding: 0 16px;
}

@media screen and (max-width: 769px) {
    #top .p-portfolio .__container .p-portfolio-main .portfolio_slider-item {
        padding: 0 8px;
    }
}

#top .p-portfolio .__container .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    float: right;
    margin-top: 64px;
    gap: 91px;
}

@media screen and (max-width: 769px) {
    #top .p-portfolio .__container .btn-group {
        float: unset;
        margin-top: 104px;
    }
}

#top .p-portfolio .__container .btn-group .portfolio_more {
    padding: 12px 72px 12px 24px;
    color: #fafafa;
    position: relative;
    background-color: #e9514e;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    border: 1px solid #e9514e;
    transition: all 0.3s;
}

#top .p-portfolio .__container .btn-group .portfolio_more::after {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../img/ico-btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 21px;
    height: 4px;
    transform: translate(24px, 21px);
}

#top .p-portfolio .__container .btn-group .portfolio_more:hover {
    background-color: #fafafa;
    color: #e9514e;
}

#top .p-portfolio .__container .btn-group .portfolio_more:hover::after {
    background-image: url(../img/ico-btnr.png);
}

#top .p-portfolio .__container .btn-group .__slider-controll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#top .p-news {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 96px;
}

@media screen and (max-width: 769px) {
    #top .p-news {
        padding-top: 80px;
    }
}

#top .p-news .__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 16px;
    padding-left: 16px;
}

@media screen and (max-width: 769px) {
    #top .p-news .__container {
        flex-direction: column;
        gap: 64px;
    }
}

#top .p-news .__container .p-new-ttl {
    color: #333333;
    font-weight: 700;
}

#top .p-news .__container .p-new-ttl .en-ttl {
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #top .p-news .__container .p-new-ttl .en-ttl {
        font-size: 33px;
    }
}

#top .p-news .__container .p-new-ttl .jp-ttl {
    font-size: 20px;
    padding-top: 8px;
}

#top .p-news .__container .p-news-main {
    max-width: 864px;
    width: 100%;
}

#top .p-news .__container .p-news-main .__news-items {
    width: 100%;
}

#top .p-news .__container .p-news-main .__news-items .__news-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 24px 16px;
    background-color: #e5e6e9;
    margin-bottom: 16px;
    text-decoration: none;
}

@media screen and (max-width: 769px) {
    #top .p-news .__container .p-news-main .__news-items .__news-item {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}

#top .p-news .__container .p-news-main .__news-items .__news-item .__news-date {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

#top .p-news .__container .p-news-main .__news-items .__news-item .__news-ttl {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

#top .p-news .__container .p-news-main .__news-btn {
    padding: 12px 72px 12px 24px;
    color: #fafafa;
    position: relative;
    background-color: #e9514e;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    float: right;
    margin-top: 48px;
    border: 1px solid #e9514e;
    transition: all 0.3s;
}

@media screen and (max-width: 769px) {
    #top .p-news .__container .p-news-main .__news-btn {
        float: unset;
        margin-right: auto;
        margin-left: auto;
    }
}

#top .p-news .__container .p-news-main .__news-btn::after {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../img/ico-btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 21px;
    height: 4px;
    transform: translate(24px, 21px);
}

#top .p-news .__container .p-news-main .__news-btn:hover {
    background-color: #fafafa;
    color: #e9514e;
}

#top .p-news .__container .p-news-main .__news-btn:hover::after {
    background-image: url(../img/ico-btnr.png);
}

#top .p-recruit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 104px;
    background-image: url(../img/bg-recruit.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #top .p-recruit {
        background-size: cover;
    }
}

#top .p-recruit .__container {
    padding: 64px 32px 0 0;
}

@media screen and (max-width: 769px) {
    #top .p-recruit .__container {
        padding: 64px 0 0;
    }
}

#top .p-recruit .__container .p-recruit-ttl {
    text-align: center;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
    color: #fafafa;
    font-weight: 700;
}

#top .p-recruit .__container .p-recruit-ttl .en-ttl {
    font-size: 49px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

@media screen and (max-width: 769px) {
    #top .p-recruit .__container .p-recruit-ttl .en-ttl {
        font-size: 33px;
    }
}

#top .p-recruit .__container .p-recruit-ttl .jp-ttl {
    font-size: 20px;
    padding-top: 8px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

#top .p-recruit .__container .p-recruit-main {
    margin-top: 80px;
    background-color: rgba(255, 255, 255, 0.1450980392);
    border: 1px solid #ffffff;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    padding: 40px 40px 0 0;
    max-width: 810px;
    transform: translateX(-160px);
}

@media screen and (max-width: 769px) {
    #top .p-recruit .__container .p-recruit-main {
        transform: unset;
        margin-top: 104px;
        padding: 40px 16px;
        width: 100vw;
        -webkit-backdrop-filter: unset;
        backdrop-filter: unset;
        border: none;
        padding: 40px 16px 0 16px;
        background-color: rgba(250, 250, 250, 0.8);
    }
}

#top .p-recruit .__container .p-recruit-main .__recruit-ctn {
    margin-left: 160px;
}

@media screen and (max-width: 769px) {
    #top .p-recruit .__container .p-recruit-main .__recruit-ctn {
        margin-left: 0;
    }
}

#top .p-recruit .__container .p-recruit-main .__recruit-ctn .__ctn-ttl {
    font-size: 25px;
    font-weight: 700;
    color: #fafafa;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3137254902);
}

@media screen and (max-width: 769px) {
    #top .p-recruit .__container .p-recruit-main .__recruit-ctn .__ctn-ttl {
        font-size: 23px;
        color: #333333;
        text-shadow: unset;
    }
}

#top .p-recruit .__container .p-recruit-main .__recruit-ctn .__ctn-desc {
    font-size: 16px;
    font-weight: 700;
    color: #fafafa;
    padding-top: 32px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

@media screen and (max-width: 769px) {
    #top .p-recruit .__container .p-recruit-main .__recruit-ctn .__ctn-desc {
        color: #333333;
        padding-top: 16px;
        text-shadow: unset;
    }
}

#top .p-recruit .__container .p-recruit-main .__recruit-btn {
    padding: 12px 72px 12px 24px;
    color: #fafafa;
    position: relative;
    background-color: #e9514e;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transform: translateY(26px);
    margin-left: 160px;
    border: 1px solid #e9514e;
    transition: all 0.3s;
}

@media screen and (max-width: 769px) {
    #top .p-recruit .__container .p-recruit-main .__recruit-btn {
        transform: unset;
        margin: auto;
        transform: translateY(26px);
    }
}

#top .p-recruit .__container .p-recruit-main .__recruit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../img/ico-btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 21px;
    height: 4px;
    transform: translate(24px, 21px);
}

#top .p-recruit .__container .p-recruit-main .__recruit-btn:hover {
    background-color: #fafafa;
    color: #e9514e;
}

#top .p-recruit .__container .p-recruit-main .__recruit-btn:hover::after {
    background-image: url(../img/ico-btnr.png);
}

#top .p-irinfo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 128px;
    background-image: url(../img/bg-irinfo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    overflow-x: visible;
    position: relative;
    z-index: 9;
}

@media screen and (max-width: 769px) {
    #top .p-irinfo {
        margin-top: 118px;
        background-size: cover;
        overflow: unset;
    }
}

#top .p-irinfo .__container {
    padding: 64px 32px 0;
}

@media screen and (max-width: 769px) {
    #top .p-irinfo .__container {
        padding: 64px 0 0;
    }
}

#top .p-irinfo .__container .p-irinfo-ttl {
    text-align: center;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
    color: #fafafa;
    font-weight: 700;
}

#top .p-irinfo .__container .p-irinfo-ttl .en-ttl {
    font-size: 49px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

#top .p-irinfo .__container .p-irinfo-ttl .jp-ttl {
    font-size: 20px;
    padding-top: 8px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
}

@media screen and (max-width: 769px) {
    #top .p-irinfo .__container .p-irinfo-ttl .jp-ttl {
        font-size: 33px;
        font-weight: 700;
    }
}

#top .p-irinfo .__container .p-irinfo-main {
    margin-top: 80px;
    max-width: 760px;
    float: right;
    background: rgba(255, 255, 255, 0.2509803922);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    border: 1px solid #ffffff;
    padding: 40px 40px 0;
    width: 100%;
    transform: translateX(160px);
}

@media screen and (max-width: 1200px) {
    #top .p-irinfo .__container .p-irinfo-main {
        transform: translateX(4%);
    }
}

@media screen and (max-width: 769px) {
    #top .p-irinfo .__container .p-irinfo-main {
        margin-top: 104px;
        width: 100vw;
        -webkit-backdrop-filter: unset;
        backdrop-filter: unset;
        border: unset;
        padding: 40px 16px 0;
        transform: unset;
        background-color: rgba(250, 250, 250, 0.8);
    }
}

#top .p-irinfo .__container .p-irinfo-main .__irinfo-ctn {
    color: #fafafa;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
    padding-bottom: 14px;
}

@media screen and (max-width: 769px) {
    #top .p-irinfo .__container .p-irinfo-main .__irinfo-ctn {
        color: #333333;
        text-shadow: unset;
    }
}

#top .p-irinfo .__container .p-irinfo-main .__irinfo-btn {
    padding: 12px 72px 12px 24px;
    color: #fafafa;
    position: relative;
    background-color: #e9514e;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transform: translateY(26px);
    border: 1px solid #e9514e;
    transition: all 0.3s;
}

@media screen and (max-width: 769px) {
    #top .p-irinfo .__container .p-irinfo-main .__irinfo-btn {
        margin: auto;
    }
}

#top .p-irinfo .__container .p-irinfo-main .__irinfo-btn::after {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../img/ico-btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 21px;
    height: 4px;
    transform: translate(24px, 21px);
}

#top .p-irinfo .__container .p-irinfo-main .__irinfo-btn:hover {
    background-color: #fafafa;
    color: #e9514e;
}

#top .p-irinfo .__container .p-irinfo-main .__irinfo-btn:hover::after {
    background-image: url(../img/ico-btnr.png);
}

#about {
    padding-top: 80px;
}

#about .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#about .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#about .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#about .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #about .p-pagettl {
        background-size: cover;
    }
}

#about .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #about .p-pagettl .__container {
        padding-top: 104px;
    }
}

#about .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #about .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#about .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #about .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#about .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #about .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#about .p-pageslider {
    display: flex;
    gap: 4px;
}

#about .p-ourvision {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: bottom;
    background-size: 100% 50%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #about .p-ourvision {
        background-size: cover;
    }
}

#about .p-ourvision .__container {
    padding-top: 190px;
    padding-bottom: 116px;
}

@media screen and (max-width: 769px) {
    #about .p-ourvision .__container {
        padding-top: 104px;
        padding-bottom: 104px;
    }
}

#about .p-ourvision .__container .__vision-item {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    padding-top: 53px;
    padding-bottom: 21px;
    width: 100%;
    border-bottom: 1px solid #263238;
}

@media screen and (max-width: 769px) {
    #about .p-ourvision .__container .__vision-item {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 32px;
        gap: 16px;
    }
}

#about .p-ourvision .__container .__vision-item .__vision-item-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
    min-width: 194px;
}

@media screen and (max-width: 769px) {
    #about .p-ourvision .__container .__vision-item .__vision-item-ttl {
        font-size: 33px;
    }
}

#about .p-ourvision .__container .__vision-item .__vision-item-ctn {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

@media screen and (max-width: 769px) {
    #about .p-ourvision .__container .__vision-item .__vision-item-ctn {
        font-size: 15px;
    }
}

#about .p-ourvision .__container .__absolute {
    position: absolute;
    top: 86px;
    left: -566px;
    max-width: 748px;
}

@media screen and (max-width: 769px) {
    #about .p-ourvision .__container .__absolute {
        top: 36px;
        left: -76px;
        max-width: 248px;
    }
}

#about .p-strong {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    overflow: hidden;
}

#about .p-strong .__container {
    padding-top: 300px;
    padding-bottom: 366px;
    max-width: 1122px;
}

@media screen and (max-width: 769px) {
    #about .p-strong .__container {
        padding-bottom: 80px;
    }
}

#about .p-strong .__container .__strong-ctn {
    max-width: 610px;
    width: 100%;
    float: right;
    position: relative;
}

#about .p-strong .__container .__strong-ctn::before {
    content: "";
    position: absolute;
    width: 892px;
    height: 466px;
    background-image: url(../img/about/img-strong.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    top: 0;
    z-index: -1;
    transform: translate(-714px, -160px);
}

@media screen and (max-width: 769px) {
    #about .p-strong .__container .__strong-ctn::before {
        width: 100vw;
        height: 266px;
        background-size: 100% 100%;
        top: 0;
        z-index: -1;
        transform: translate(-16px, -220px);
    }
}

#about .p-strong .__container .__strong-ctn .__ctn-ttl {
    color: #FAFAFA;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1450980392);
    font-size: 25px;
    font-weight: 700;
}

#about .p-strong .__container .__strong-ctn .__ctn-desc {
    color: #FAFAFA;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3137254902);
    font-size: 16px;
    font-weight: 700;
    padding-top: 32px;
    z-index: 10;
}

@media screen and (max-width: 769px) {
    #about .p-strong .__container .__strong-ctn .__ctn-desc {
        color: #333333;
        text-shadow: unset;
        font-size: 16px;
        font-weight: 700;
        padding-top: 40px;
    }
}

#about .p-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ceo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #about .p-message {
        background-size: cover;
    }
}

#about .p-message .__container {
    padding-top: 88px;
    padding-bottom: -41px;
    display: flex;
    align-items: flex-start;
    gap: 62px;
    max-width: 1122px;
}

@media screen and (max-width: 769px) {
    #about .p-message .__container {
        padding-top: 80px;
        flex-direction: column;
        padding-bottom: 80px;
    }
}

#about .p-message .__container .__message-ctn .__ctn-ttl {
    font-size: 25px;
    font-weight: 700;
    color: #FAFAFA;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1450980392);
}

@media screen and (max-width: 769px) {
    #about .p-message .__container .__message-ctn .__ctn-ttl {
        font-size: 23px;
    }
}

#about .p-message .__container .__message-ctn .__ctn-desc {
    font-size: 16px;
    font-weight: 700;
    color: #FAFAFA;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3137254902);
    padding-top: 32px;
}

@media screen and (max-width: 769px) {
    #about .p-message .__container .__message-ctn .__ctn-desc {
        font-size: 15px;
        font-weight: 500;
    }
}

#about .p-message .__container .__ctn-img {
    max-width: 448px;
    width: 100%;
    transform: translateY(-234px);
}

@media screen and (max-width: 769px) {
    #about .p-message .__container .__ctn-img {
        transform: unset;
    }
}

#about .c-footer .p-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/bg-plink.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-link {
        background-size: cover;
        background-position: right;
        background-image: url(../img/bg-plink@2x.jpg);
    }
}

#about .c-footer .p-link .__container {
    padding: 64px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-link .__container {
        padding: 64px 16px;
        flex-direction: column;
        gap: 40px;
    }
}

#about .c-footer .p-link .__container .__link-item {
    padding: 40px;
    border: 1px solid #fafafa;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    background-color: rgba(255, 255, 255, 0.062745098);
    max-width: 520px;
    width: 100%;
}

#about .c-footer .p-link .__container .__link-item .__link-ttl {
    color: #fafafa;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5019607843);
    font-weight: 500;
    text-align: center;
}

#about .c-footer .p-link .__container .__link-item .__link-ttl .en-ttl {
    font-size: 49px;
    text-wrap: nowrap;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-link .__container .__link-item .__link-ttl .en-ttl {
        font-size: 33px;
    }
}

#about .c-footer .p-link .__container .__link-item .__link-ttl .jp-ttl {
    font-size: 20px;
    padding-top: 8px;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-link .__container .__link-item .__link-ttl .jp-ttl {
        font-size: 16px;
    }
}

#about .c-footer .p-link .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#about .c-footer .p-link .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#about .c-footer .p-link .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#about .c-footer .p-link .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#about .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-footer {
        background-size: cover;
    }
}

#about .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#about .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#about .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#about .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#about .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #about .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #about .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#about .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#about .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#about .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #about .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#real_estate {
    padding-top: 80px;
}

#real_estate .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#real_estate .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#real_estate .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#real_estate .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #real_estate .p-pagettl {
        background-size: cover;
    }
}

#real_estate .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #real_estate .p-pagettl .__container {
        padding-top: 104px;
    }
}

#real_estate .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #real_estate .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#real_estate .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 61px;
}

@media screen and (max-width: 769px) {
    #real_estate .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#real_estate .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #real_estate .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#real_estate .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/real_estate/bg-intro-1.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #real_estate .p-intro {
        padding-left: 16px;
        background-color: #FFFFFF;
        background-size: 100% 50%;
    }
}

#real_estate .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 40px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #real_estate .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#real_estate .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

#real_estate .p-asset {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #FFFFFF;
}

#real_estate .p-asset .__container {
    max-width: 1120px;
    padding-top: 104px;
    padding-bottom: 104px;
    display: flex;
    flex-direction: column;
    gap: 104px;
}

@media screen and (max-width: 769px) {
    #real_estate .p-asset .__container {
        padding-top: 80px;
        padding-bottom: 80px;
        gap: 80px;
    }
}

#real_estate .p-asset .__container .__asset-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

@media screen and (max-width: 769px) {
    #real_estate .p-asset .__container .__asset-item {
        gap: 0px;
        flex-direction: column;
    }
}

#real_estate .p-asset .__container .__asset-item.__reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 769px) {
    #real_estate .p-asset .__container .__asset-item.__reverse {
        flex-direction: column;
    }
}

#real_estate .p-asset .__container .__asset-item .__asset-ttl .en-ttl {
    font-size: 25px;
    font-weight: 700;
    color: rgba(233, 81, 78, 0.6);
}

@media screen and (max-width: 769px) {
    #real_estate .p-asset .__container .__asset-item .__asset-ttl .en-ttl {
        font-size: 16px;
        text-align: center;
    }
}

#real_estate .p-asset .__container .__asset-item .__asset-ttl .jp-ttl {
    font-size: 39px;
    font-weight: 700;
    color: #333333;
    padding-top: 8px;
}

@media screen and (max-width: 769px) {
    #real_estate .p-asset .__container .__asset-item .__asset-ttl .jp-ttl {
        font-size: 23px;
        text-align: center;
    }
}

#real_estate .p-asset .__container .__asset-item .__asset-ttl .__asset-desc {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

#real_estate .p-asset .__container .__asset-item .__asset-img {
    max-width: 448px;
    width: 100%;
}

@media screen and (max-width: 769px) {
    #real_estate .p-asset .__container .__asset-item .__asset-img {
        margin-top: 16px;
    }
}

#real_estate .p-asset .__container .__asset-item .__asset-desc {
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    padding-top: 32px;
}

@media screen and (max-width: 769px) {
    #real_estate .p-asset .__container .__asset-item .__asset-desc {
        padding-top: 0;
    }
}

#real_estate .p-asset .__container .__asset-item .__asset-detail {
    margin-top: 40px;
}

#real_estate .p-asset .__container .__asset-item .__asset-detail .__detail-ctn {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

#real_estate .p-asset .__container .__asset-item .__asset-detail .__detail-items {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

#real_estate .p-asset .__container .__asset-item .__asset-detail .__detail-items .__detail-item {
    width: 96px;
    height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 100%;
    background-color: rgba(233, 81, 78, 0.6);
}

#real_estate .p-asset .__container .__asset-item .__asset-detail .__detail-items .__detail-item .year {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
}

#real_estate .p-asset .__container .__asset-item .__asset-detail .__detail-items .__detail-item .number {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}

#real_estate .p-asset .__container .__asset-item .__asset-detail .__detail-items .__detail-item .number span {
    font-size: 13px;
}

#real_estate .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#real_estate .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#real_estate .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#real_estate .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#real_estate .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#real_estate .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#real_estate .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#real_estate .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#real_estate .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#real_estate .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-footer {
        background-size: cover;
    }
}

#real_estate .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#real_estate .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#real_estate .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #real_estate .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#crowdfunding {
    padding-top: 80px;
}

#crowdfunding .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#crowdfunding .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#crowdfunding .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#crowdfunding .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-pagettl {
        background-size: cover;
    }
}

#crowdfunding .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-pagettl .__container {
        padding-top: 104px;
    }
}

#crowdfunding .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#crowdfunding .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-pagettl .__container .jp-ttl {
        font-size: 28px;
    }
}

#crowdfunding .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#crowdfunding .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/real_estate/bg-intro-2.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-intro {
        padding-left: 16px;
        background-color: #FFFFFF;
        background-size: 100% 50%;
    }
}

#crowdfunding .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 40px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#crowdfunding .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

#crowdfunding .p-appeal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/crowdfunding/bg-appeal.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-appeal {
        background-size: 100% 86%;
    }
}

#crowdfunding .p-appeal .__container {
    max-width: 1120px;
    padding-top: 104px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-appeal .__container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

#crowdfunding .p-appeal .__container .__appeal-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 39px;
    text-align: center;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-appeal .__container .__appeal-ttl {
        font-size: 19px;
    }
}

#crowdfunding .p-appeal .__container .__appeal-main {
    padding-top: 80px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 39px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-appeal .__container .__appeal-main {
        flex-direction: column;
        padding-top: 40px;
        gap: 40px;
    }
}

#crowdfunding .p-appeal .__container .__appeal-main .__appeal-item {
    padding: 25px 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1490196078);
    min-height: 525px;
    background-color: #FFFFFF;
}

#crowdfunding .p-appeal .__container .__appeal-main .__appeal-item .__appeal-img {
    max-width: 216px;
    max-height: 160px;
}

#crowdfunding .p-appeal .__container .__appeal-main .__appeal-item .__appeal-item_ttl {
    text-align: center;
}

#crowdfunding .p-appeal .__container .__appeal-main .__appeal-item .__appeal-item_ttl .en-ttl {
    font-size: 20px;
    font-weight: 900;
    color: rgba(233, 81, 78, 0.6);
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-appeal .__container .__appeal-main .__appeal-item .__appeal-item_ttl .en-ttl {
        font-size: 19px;
    }
}

#crowdfunding .p-appeal .__container .__appeal-main .__appeal-item .__appeal-item_ttl .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 25px;
    padding-top: 25px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-appeal .__container .__appeal-main .__appeal-item .__appeal-item_ttl .jp-ttl {
        font-size: 23px;
    }
}

#crowdfunding .p-appeal .__container .__appeal-main .__appeal-item .__appeal-ctn {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

#crowdfunding .p-service {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

#crowdfunding .p-service .__container {
    padding-top: 104px;
    padding-bottom: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-service .__container {
        flex-direction: column;
        padding-top: 64px;
        padding-bottom: 80px;
    }
}

#crowdfunding .p-service .__container .__service-img {
    max-width: 547px;
    width: 100%;
}

#crowdfunding .p-service .__container .__service-main .__service-ttl {
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-service .__container .__service-main .__service-ttl {
        text-align: center;
    }
}

#crowdfunding .p-service .__container .__service-main .__service-ttl .en-ttl {
    font-size: 25px;
    color: rgba(233, 81, 78, 0.6);
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-service .__container .__service-main .__service-ttl .en-ttl {
        font-size: 23px;
    }
}

#crowdfunding .p-service .__container .__service-main .__service-ttl .jp-ttl {
    font-size: 39px;
    color: #333333;
    padding-top: 8px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-service .__container .__service-main .__service-ttl .jp-ttl {
        font-size: 33px;
    }
}

#crowdfunding .p-service .__container .__service-main .__service-ctn {
    padding-top: 32px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

#crowdfunding .p-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/crowdfunding/bg-appeal.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 50%;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature {
        background-size: 106% 66%;
        background-position: 0 54%;
    }
}

#crowdfunding .p-feature .__container {
    padding-top: 0;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container {
        padding-bottom: 80px;
    }
}

#crowdfunding .p-feature .__container .__feature-ttl {
    text-align: center;
    font-weight: 700;
}

#crowdfunding .p-feature .__container .__feature-ttl .en-ttl {
    font-size: 25px;
    color: rgba(233, 81, 78, 0.6);
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-ttl .en-ttl {
        font-size: 23px;
    }
}

#crowdfunding .p-feature .__container .__feature-ttl .jp-ttl {
    padding-top: 8px;
    font-size: 39px;
}

#crowdfunding .p-feature .__container .__feature-ttl .jp-ttl span {
    font-size: 49px;
    color: #E9514E;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-ttl .jp-ttl {
        font-size: 28px;
    }
    #crowdfunding .p-feature .__container .__feature-ttl .jp-ttl span {
        font-size: 40px;
    }
}

#crowdfunding .p-feature .__container .__feature-main {
    padding-top: 64px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-main {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        padding-bottom: 64px;
    }
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item {
    padding: 16px;
    background-color: white;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.0823529412);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-width: 352px;
    width: 100%;
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item .__feature-img {
    width: 202px;
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ttl {
    text-align: center;
    padding-top: 32px;
    font-size: 31px;
    color: #E9514E;
    font-weight: 900;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ttl {
        font-size: 28px;
        padding-top: 24px;
    }
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn {
    padding-top: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn:first-child {
    gap: 24px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn {
        padding-top: 16px;
        gap: 16px;
    }
    #crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn:first-child {
        gap: 16px;
    }
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn .__ctn-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn .__ctn-item h6 {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: rgba(233, 81, 78, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn .__ctn-item h6 {
        font-size: 19px;
    }
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn .__ctn-item p {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn .__ctn-item p {
        font-size: 19px;
    }
}

#crowdfunding .p-feature .__container .__feature-main .__feature-item .__item-ctn .__ctn-item p span {
    font-size: 16px;
    font-weight: 500;
}

#crowdfunding .p-feature .__container .__feature-btn {
    padding-top: 104px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-btn {
        padding-top: 80px;
    }
}

#crowdfunding .p-feature .__container .__feature-btn .__btn-desc {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
    position: relative;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-btn .__btn-desc {
        font-size: 16px;
    }
}

#crowdfunding .p-feature .__container .__feature-btn .__btn-desc span {
    font-weight: 900;
    color: #E9514E;
}

#crowdfunding .p-feature .__container .__feature-btn .__btn-desc::before {
    content: "";
    width: 20px;
    border-bottom: 2px solid #333333;
    position: absolute;
    transform: rotate(45deg) translate(-11px, 27px);
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-btn .__btn-desc::before {
        width: 40px;
        transform: rotate(48deg) translate(-1px, 32px);
    }
}

#crowdfunding .p-feature .__container .__feature-btn .__btn-desc::after {
    content: "";
    width: 20px;
    border-bottom: 2px solid #333333;
    position: absolute;
    transform: rotate(-45deg) translate(0px, 16px);
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-btn .__btn-desc::after {
        width: 40px;
        transform: rotate(-47deg) translate(68px, 65px);
    }
}

#crowdfunding .p-feature .__container .__feature-btn a {
    display: block;
    margin: auto;
    padding-top: 24px;
    width: -moz-max-content;
    width: max-content;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-btn a {
        padding-top: 16px;
    }
}

#crowdfunding .p-feature .__container .__feature-btn a figure {
    max-width: 419px;
    width: 100%;
}

@media screen and (max-width: 769px) {
    #crowdfunding .p-feature .__container .__feature-btn a figure {
        max-width: 361px;
    }
}

#crowdfunding .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#crowdfunding .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#crowdfunding .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#crowdfunding .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#crowdfunding .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#crowdfunding .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#crowdfunding .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#crowdfunding .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#crowdfunding .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#crowdfunding .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-footer {
        background-size: cover;
    }
}

#crowdfunding .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#crowdfunding .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#crowdfunding .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #crowdfunding .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#investment {
    padding-top: 80px;
}

#investment .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#investment .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#investment .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#investment .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #investment .p-pagettl {
        background-size: cover;
    }
}

#investment .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #investment .p-pagettl .__container {
        padding-top: 104px;
    }
}

#investment .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #investment .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#investment .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #investment .p-pagettl .__container .jp-ttl {
        font-size: 28px;
    }
}

#investment .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #investment .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#investment .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/real_estate/bg-intro.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #investment .p-intro {
        padding-left: 16px;
        background-color: #FFFFFF;
        background-size: 100% 50%;
    }
}

#investment .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 40px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #investment .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#investment .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

#investment .p-ads {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: white;
}

#investment .p-ads .__container {
    padding-top: 104px;
    padding-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

@media screen and (max-width: 769px) {
    #investment .p-ads .__container {
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

#investment .p-ads .__container .__ads-img {
    max-width: 444px;
    width: 100%;
}

#investment .p-ads .__container .__ads-main {
    max-width: 639px;
}

#investment .p-ads .__container .__ads-main .__ads-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 25px;
}

@media screen and (max-width: 769px) {
    #investment .p-ads .__container .__ads-main .__ads-ttl {
        font-size: 23px;
        text-align: center;
    }
}

#investment .p-ads .__container .__ads-main .__ads-ctn {
    padding-top: 32px;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
}

#investment .p-record {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 32px;
    padding-left: 32px;
    margin-bottom: 104px;
    background-image: url(../img/investment/bg-record.jpg);
    background-position: bottom;
    background-size: contain;
    padding-bottom: 63px;
    background-repeat: no-repeat;
    background-color: white;
}

@media screen and (max-width: 769px) {
    #investment .p-record {
        margin-bottom: 0;
        padding-bottom: 64px;
        background-image: url(../img/investment/bg-record@2x.png);
    }
}

#investment .p-record .__container .__record-ttl {
    text-align: center;
    font-weight: 700;
    font-size: 39px;
    color: #333333;
}

@media screen and (max-width: 769px) {
    #investment .p-record .__container .__record-ttl {
        font-size: 33px;
    }
}

#investment .p-record .__container .__record-main {
    padding-top: 49px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 35px;
}

@media screen and (max-width: 769px) {
    #investment .p-record .__container .__record-main {
        flex-direction: column;
        padding-top: 40px;
    }
}

#investment .p-record .__container .__record-main .__record-item {
    background-color: white;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.0823529412);
    max-width: 352px;
    padding: 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

#investment .p-record .__container .__record-main .__record-item .__item-ttl {
    text-align: center;
    font-size: 25px;
    color: #333333;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #investment .p-record .__container .__record-main .__record-item .__item-ttl {
        font-size: 23px;
    }
}

#investment .p-record .__container .__record-main .__record-item .__item-sub {
    padding-top: 8px;
    font-size: 16px;
    color: #333333;
    font-weight: 700;
}

#investment .p-record .__container .__record-main .__record-item .score {
    color: #333333;
    font-size: 25px;
    font-weight: 700;
    padding-top: 32px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 769px) {
    #investment .p-record .__container .__record-main .__record-item .score {
        font-size: 23px;
        padding-top: 24px;
    }
}

#investment .p-record .__container .__record-main .__record-item .score span {
    font-size: 39px;
}

@media screen and (max-width: 769px) {
    #investment .p-record .__container .__record-main .__record-item .score span {
        font-size: 33px;
    }
}

#investment .p-record .__container .__record-main .__record-item .score::before {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 16px solid rgba(233, 81, 78, 0.3019607843);
    bottom: 0;
    right: 0;
    z-index: -1;
}

#investment .p-record .__container .__record-main .__record-item .__item-detail {
    padding-top: 32px;
    text-align: center;
}

#investment .p-record .__container .__record-main .__record-item .__item-detail .date {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
}

#investment .p-record .__container .__record-main .__record-item .__item-detail .info {
    padding-top: 8px;
    font-weight: 700;
    font-size: 16px;
    color: #333333;
}

#investment .p-record .__container .__record-main .__record-item .__item-detail .info span {
    font-weight: 500;
    font-size: 10px;
    padding-bottom: 8px;
}

#investment .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#investment .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#investment .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#investment .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#investment .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#investment .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#investment .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#investment .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#investment .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#investment .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-footer {
        background-size: cover;
    }
}

#investment .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#investment .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#investment .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#investment .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#investment .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #investment .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #investment .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#investment .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#investment .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#investment .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #investment .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#owned {
    padding-top: 80px;
}

#owned .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#owned .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#owned .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#owned .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #owned .p-pagettl {
        background-size: cover;
    }
}

#owned .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #owned .p-pagettl .__container {
        padding-top: 104px;
    }
}

#owned .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #owned .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#owned .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #owned .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#owned .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #owned .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#owned .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/real_estate/bg-intro.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #owned .p-intro {
        padding-left: 16px;
        background-color: #FFFFFF;
        background-size: 100% 50%;
    }
}

#owned .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 40px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #owned .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#owned .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

#owned .p-owned-estate_lists {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #E5E6E9;
}

#owned .p-owned-estate_lists .__container {
    padding-top: 64px;
    padding-bottom: 64px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-direction: column;
}

#owned .p-owned-estate_lists .__container .__lists-item {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 64px;
    font-weight: 700;
    color: #333333;
    max-width: 927px;
    width: 100%;
    background-color: #FAFAFA;
    position: relative;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item {
        flex-direction: column;
        gap: 32px;
    }
}

#owned .p-owned-estate_lists .__container .__lists-item .item-img {
    max-width: 224px;
    width: 100%;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item .item-img {
        max-width: unset;
        width: 100%;
        max-height: 231px;
        overflow: hidden;
    }
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-ttl {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-ttl {
        flex-direction: column-reverse;
        gap: 8px;
    }
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-ttl .__name {
    font-size: 25px;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-ttl .__name {
        font-size: 23px;
    }
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-ttl .is-possible {
    color: #FAFAFA;
    font-size: 10px;
    background-color: #E9514E;
    padding: 4px 16px;
    border-radius: 50px;
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__address {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4px;
    gap: 16px;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item .item-main .__address {
        flex-direction: column;
        gap: 4px;
        align-items: center;
        justify-content: center;
    }
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__address a {
    display: block;
    -webkit-text-decoration: dashed;
    text-decoration: dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-bottom: 1px solid #333333;
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 32px;
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-info .__info-list {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-info .__info-list {
        flex-direction: column;
        gap: 8px;
    }
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-info .__info-list .__info-ttl {
    font-size: 16px;
    font-weight: 500;
    width: 100px;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-info .__info-list .__info-ttl {
        width: -moz-max-content;
        width: max-content;
        font-weight: 700;
    }
}

#owned .p-owned-estate_lists .__container .__lists-item .item-main .__item-info .__info-list .__info-ctn {
    font-size: 16px;
    font-weight: 500;
}

#owned .p-owned-estate_lists .__container .__lists-item .__item-btn {
    position: absolute;
    top: 32px;
    right: 34px;
    color: #E9514E;
    text-decoration: none;
    padding: 6px 32px;
    border: #E9514E 1px solid;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item .__item-btn {
        position: relative;
        top: auto;
        right: auto;
        color: #333333;
        border: #333333 1px solid;
    }
}

#owned .p-owned-estate_lists .__container .__lists-item .__item-btn:hover {
    background-color: #E9514E;
    color: white;
}

@media screen and (max-width: 769px) {
    #owned .p-owned-estate_lists .__container .__lists-item .__item-btn:hover {
        background-color: #333333;
        color: white;
    }
}

#owned .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#owned .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#owned .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#owned .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#owned .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#owned .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#owned .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#owned .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#owned .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#owned .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-footer {
        background-size: cover;
    }
}

#owned .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#owned .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#owned .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#owned .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#owned .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #owned .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #owned .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#owned .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#owned .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#owned .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #owned .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#recruit {
    padding-top: 80px;
}

#recruit .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#recruit .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#recruit .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#recruit .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #recruit .p-pagettl {
        background-size: cover;
    }
}

#recruit .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #recruit .p-pagettl .__container {
        padding-top: 104px;
    }
}

#recruit .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #recruit .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#recruit .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #recruit .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#recruit .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #recruit .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#recruit .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/recruit/bg-intro.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #recruit .p-intro {
        padding-left: 16px;
        background-size: 100% 36%;
    }
}

#recruit .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 40px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #recruit .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#recruit .p-intro .__intro-ctn h4 {
    padding-bottom: 24px;
    font-size: 25px;
    color: #333333;
    font-weight: 700;
}

#recruit .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

#recruit .p-career {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

#recruit .p-career .__container {
    padding-top: 104px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #recruit .p-career .__container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

#recruit .p-career .__container .__career-ttl {
    text-align: center;
    color: #333333;
    font-weight: 700;
}

#recruit .p-career .__container .__career-ttl h4 {
    font-size: 25px;
}

@media screen and (max-width: 769px) {
    #recruit .p-career .__container .__career-ttl h4 {
        font-size: 23px;
    }
}

#recruit .p-career .__container .__career-ttl .__ttl-date {
    padding-top: 9px;
    font-size: 16px;
}

#recruit .p-career .__container .__career-main {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#recruit .p-career .__container .__career-main .__career-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
    max-width: 768px;
    width: 100%;
    padding: 32px 35px 32px 16px;
    font-weight: 500;
    color: #333333;
    border-bottom: 2px solid #333333;
}

@media screen and (max-width: 769px) {
    #recruit .p-career .__container .__career-main .__career-item {
        flex-direction: column;
        gap: 8px;
        border: none;
    }
}

#recruit .p-career .__container .__career-main .__career-item .__item-ttl {
    width: 149px;
    font-size: 16px;
}

@media screen and (max-width: 769px) {
    #recruit .p-career .__container .__career-main .__career-item .__item-ttl {
        font-weight: 700;
        color: #333333;
        opacity: 0.5;
    }
}

#recruit .p-career .__container .__career-main .__career-item .__item-ctn {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

#recruit .p-career .__container .__career-main .__career-item .__item-ctn .star {
    font-size: 13px;
    text-align: right;
}

#recruit .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#recruit .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#recruit .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#recruit .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#recruit .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#recruit .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#recruit .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#recruit .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#recruit .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#recruit .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-footer {
        background-size: cover;
    }
}

#recruit .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#recruit .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#recruit .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #recruit .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#news {
    padding-top: 80px;
}

#news .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #ededed;
}

#news .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #ededed;
    gap: 16px;
}

#news .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#news .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #news .p-pagettl {
        background-size: cover;
    }
}

#news .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 104px;
    padding-bottom: 78px;
}

@media screen and (max-width: 769px) {
    #news .p-pagettl .__container {
        padding-top: 104px;
    }
}

#news .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #news .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#news .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 61px;
}

@media screen and (max-width: 769px) {
    #news .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#news .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #news .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#news .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/real_estate/bg-intro.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #news .p-intro {
        padding-left: 16px;
        background-color: #ffffff;
        background-size: 100% 50%;
    }
}

#news .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 40px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #news .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#news .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

#news .p-newsmain {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

#news .p-newsmain .__container {
    padding-top: 35px;
    padding-bottom: 80px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

@media screen and (max-width: 769px) {
    #news .p-newsmain .__container {
        padding-top: 0;
        flex-direction: column;
    }
}

#news .p-newsmain .__container .p-newsmain-mainblock {
    max-width: 768px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#news .p-newsmain .__container .p-newsmain-mainblock .p-news-main {
    width: 100%;
}

#news .p-newsmain .__container .p-newsmain-mainblock .__newsmain-item {
    padding: 24px 16px;
    border-bottom: 2px solid #bebebe;
    font-weight: 700;
    color: #333333;
    width: 100%;
    display: block;
}

#news .p-newsmain .__container .p-newsmain-mainblock .__newsmain-item:first-child {
    border-top: 2px solid #bebebe;
}

#news .p-newsmain .__container .p-newsmain-mainblock .__newsmain-item .date {
    opacity: 0.3;
    font-size: 16px;
}

#news .p-newsmain .__container .p-newsmain-mainblock .__newsmain-item .__item-ttl {
    padding-top: 24px;
    font-size: 20px;
    display: block;
    text-decoration: none;
}

#news .p-newsmain .__container .p-newsmain-mainblock .__newsmain-item .__item-cat_list {
    padding-top: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

#news .p-newsmain .__container .p-newsmain-mainblock .__newsmain-item .__item-cat_list a {
    padding: 4px 16px;
    color: #e9514e;
    border: 1px solid #e9514e;
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

#news .p-newsmain .__container .p-newsmain-mainblock .__newsmain-item .__item-cat_list a:hover {
    background-color: #e9514e;
    color: white;
}

#news .p-newsmain .__container .p-newsmain-rightblock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 256px;
    width: 100%;
    gap: 64px;
}

@media screen and (max-width: 769px) {
    #news .p-newsmain .__container .p-newsmain-rightblock {
        max-width: 100vw;
        margin-top: 104px;
        gap: 0;
    }
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat {
    color: #333333;
    font-weight: 700;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat {
        padding: 22px 16px;
        border-bottom: 2px solid #bebebe;
    }
    #news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat:first-child {
        border-top: 2px solid #bebebe;
    }
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-ttl {
    padding: 0 16px;
    border-left: 4px solid #e9514e;
    font-size: 20px;
    position: relative;
    width: 100%;
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all 0.3s;
}

@media screen and (max-width: 769px) {
    #news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body {
        padding: unset;
        max-height: 0;
    }
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body a {
    padding: 16px 8px;
    border-bottom: 2px solid #bebebe;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

@media screen and (max-width: 769px) {
    #news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body a {
        border-bottom: unset;
        padding: 17px 8px;
    }
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body a:hover {
    background-color: #e1e1e1;
    padding: 16px 16px;
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark-container span {
    position: absolute;
    height: 1px;
    width: 15px;
    background: #000;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark-container span:first-child {
    transition: transform 0.5s;
    transform: translate(-50%, -50%) rotate(90deg);
}

#news .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark.open .__item-collapse__mark-container span:first-child {
    transform: translate(-50%, -50%) rotate(0);
}

#news .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#news .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#news .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#news .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #fafafa;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#news .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#news .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #e9514e;
    position: relative;
    background-color: #fafafa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#news .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#news .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #e9514e;
    color: #ffffff;
}

#news .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#news .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-footer {
        background-size: cover;
    }
}

#news .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#news .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #fafafa;
    }
}

#news .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#news .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#news .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #fafafa;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #news .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #news .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#news .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#news .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#news .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #fafafa;
    border-top: 1px solid #fafafa;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #news .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#detail {
    padding-top: 80px;
}

#detail .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#detail .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#detail .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    text-wrap: nowrap;
}

#detail .p-nav .__container a:last-child {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#detail .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #detail .p-pagettl {
        background-size: cover;
    }
}

#detail .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 104px;
    padding-bottom: 78px;
}

@media screen and (max-width: 769px) {
    #detail .p-pagettl .__container {
        padding-top: 104px;
    }
}

#detail .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #detail .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#detail .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 61px;
    max-width: 721px;
}

@media screen and (max-width: 769px) {
    #detail .p-pagettl .__container .jp-ttl {
        font-size: 30px;
    }
}

#detail .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #detail .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#detail .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/real_estate/bg-intro.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #detail .p-intro {
        padding-left: 16px;
        background-color: #FFFFFF;
        background-size: 100% 50%;
    }
}

#detail .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 40px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #detail .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#detail .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

#detail .p-newsmain {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

#detail .p-newsmain .__container {
    padding-top: 35px;
    padding-bottom: 80px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container {
        padding-top: 0;
        flex-direction: column;
    }
}

#detail .p-newsmain .__container .p-newsmain-mainblock {
    max-width: 768px;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__backbtn {
    display: flex;
    gap: 23.5px;
    color: #E9514E;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #E9514E;
    width: -moz-max-content;
    width: max-content;
    transition: gap 0.3s;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__backbtn:hover {
    gap: 30px;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__detail-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 58px;
    gap: 40px;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-mainblock .__detail-nav {
        padding-top: 96px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__detail-nav .date {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    opacity: 0.5;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__detail-nav .__cat-lists {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-mainblock .__detail-nav .__cat-lists {
        padding-top: 6px;
    }
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__detail-nav .__cat-lists .__cat-list {
    padding: 4px 16px;
    border: 1px solid #E9514E;
    border-radius: 50px;
    color: #E9514E;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-mainblock .__detail-nav .__cat-lists .__cat-list {
        margin-bottom: 40px;
    }
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__detail-nav .__cat-lists .__cat-list:hover {
    background-color: #E9514E;
    color: white;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__detail-ttl {
    padding-top: 24px;
    padding-bottom: 32px;
    font-size: 31px;
    font-weight: 700;
    color: #333333;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-mainblock .__detail-ttl {
        font-size: 23px;
    }
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__detail-ctn {
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    padding-top: 32px;
    border-top: rgba(51, 51, 51, 0.3137254902) 1px solid;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-mainblock .__detail-ctn {
        font-weight: 700;
    }
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__social-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 32px;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-mainblock .__social-btn {
        padding-top: 45px;
    }
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__social-btn .__blue {
    background-color: #0866FF;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__social-btn .__black {
    background-color: #000000;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__social-btn .__green {
    background-color: #06C755;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__social-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 8px;
    text-decoration: none;
    color: white;
    font-weight: 700px;
    font-size: 13px;
    border-radius: 4px;
}

#detail .p-newsmain .__container .p-newsmain-mainblock .__detail-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    font-weight: 700;
    gap: 16px;
    background-color: #E9514E;
    text-decoration: none;
    width: -moz-max-content;
    width: max-content;
    margin-top: 64px;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-mainblock .__detail-btn {
        justify-content: center;
        margin-top: 96px;
        margin-right: auto;
        margin-left: auto;
    }
}

#detail .p-newsmain .__container .p-newsmain-rightblock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 256px;
    width: 100%;
    gap: 64px;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-rightblock {
        max-width: 100vw;
        margin-top: 104px;
        gap: 0;
    }
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat {
    color: #333333;
    font-weight: 700;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat:first-child {
        padding: 0;
    }
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat:first-child .__cat-body {
        max-height: -moz-max-content !important;
        max-height: max-content !important;
    }
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat:first-child .__cat-body .__cat-item {
    font-size: 13px !important;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat:first-child .__cat-body .__cat-item {
        font-size: 16px !important;
        border-bottom: 2px solid rgba(51, 51, 51, 0.3137254902);
    }
    #detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat:first-child .__cat-body .__cat-item:last-child {
        border-bottom: unset;
    }
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat {
        padding: 22px 16px;
        border-bottom: 2px solid #BEBEBE;
    }
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-ttl {
    padding: 0 16px;
    border-left: 4px solid #E9514E;
    font-size: 20px;
    position: relative;
    width: 100%;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-ttl {
        border-left: unset;
        padding: unset;
    }
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all 0.3s;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body {
        padding: unset;
        max-height: 0;
    }
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body a {
    padding: 16px 8px;
    border-bottom: 2px solid #BEBEBE;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

@media screen and (max-width: 769px) {
    #detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body a {
        border-bottom: unset;
        padding: 17px 8px;
    }
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__cat-body a:hover {
    background-color: #e1e1e1;
    padding: 16px 16px;
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark-container span {
    position: absolute;
    height: 1px;
    width: 15px;
    background: #000;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark-container span:first-child {
    transition: transform 0.5s;
    transform: translate(-50%, -50%) rotate(90deg);
}

#detail .p-newsmain .__container .p-newsmain-rightblock .__sade-cat .__item-collapse__mark.open .__item-collapse__mark-container span:first-child {
    transform: translate(-50%, -50%) rotate(0);
}

#detail .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#detail .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#detail .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#detail .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#detail .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#detail .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#detail .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#detail .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#detail .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#detail .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-footer {
        background-size: cover;
    }
}

#detail .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#detail .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#detail .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#detail .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#detail .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #detail .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #detail .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#detail .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#detail .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#detail .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#sitemap {
    padding-top: 80px;
}

#sitemap .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#sitemap .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#sitemap .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#sitemap .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #sitemap .p-pagettl {
        background-size: cover;
    }
}

#sitemap .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-pagettl .__container {
        padding-top: 104px;
    }
}

#sitemap .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #sitemap .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#sitemap .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#sitemap .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#sitemap .p-sitemap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
    background-color: #E5E6E9;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap {
        padding: 64px 16px;
    }
}

#sitemap .p-sitemap .__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #FAFAFA;
    padding: 64px 16px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container {
        padding: 24px 16px;
        flex-direction: column;
    }
}

#sitemap .p-sitemap .__container .__first {
    padding-left: 108px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__first {
        padding-left: unset;
    }
}

#sitemap .p-sitemap .__container .__first .__sitemap-ttl {
    display: block;
    padding: 0 16px;
    font-weight: 700;
    font-size: 25px;
    color: #333333;
    border-left: 4px solid #E9514E;
    margin-bottom: 64px;
    text-decoration: none;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__first .__sitemap-ttl {
        font-size: 23px;
        margin-bottom: 48px;
    }
}

#sitemap .p-sitemap .__container .__first .__sitemap-ttl:last-child {
    margin-bottom: 0;
    margin-top: 64px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__first .__sitemap-ttl:last-child {
        margin-top: 49px;
    }
}

#sitemap .p-sitemap .__container .__first .__sitemap-ttl:nth-child(3) {
    margin-bottom: 0;
}

#sitemap .p-sitemap .__container .__first ul {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    padding-top: 24px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__first ul {
        font-size: 19px;
    }
}

#sitemap .p-sitemap .__container .__first ul li {
    padding-left: 21px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__first ul li {
        padding-left: 0;
    }
}

#sitemap .p-sitemap .__container .__first ul a {
    text-decoration: none;
}

#sitemap .p-sitemap .__container .__first ul:last-child {
    margin-bottom: 64px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__first ul:last-child {
        margin-bottom: 49px;
    }
}

#sitemap .p-sitemap .__container .__sec {
    padding-right: 108px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__sec {
        padding-right: 0;
        padding-top: 49px;
    }
}

#sitemap .p-sitemap .__container .__sec .__sitemap-ttl {
    display: block;
    padding: 0 16px;
    font-weight: 700;
    font-size: 25px;
    color: #333333;
    border-left: 4px solid #E9514E;
    margin-bottom: 64px;
    text-decoration: none;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__sec .__sitemap-ttl {
        font-size: 23px;
        margin-bottom: 49px;
    }
}

#sitemap .p-sitemap .__container .__sec .__sitemap-ttl:last-child {
    margin-bottom: 0;
    margin-top: 64px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__sec .__sitemap-ttl:last-child {
        margin-top: 49px;
    }
}

#sitemap .p-sitemap .__container .__sec .__sitemap-ttl:nth-child(3) {
    margin-bottom: 0;
}

#sitemap .p-sitemap .__container .__sec .mt-64 {
    margin-top: 64px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__sec .mt-64 {
        margin-top: 49px;
    }
}

#sitemap .p-sitemap .__container .__sec ul {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    padding-top: 24px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__sec ul {
        font-size: 19px;
        padding-top: 16px;
    }
}

#sitemap .p-sitemap .__container .__sec ul li {
    padding-left: 21px;
}

@media screen and (max-width: 769px) {
    #sitemap .p-sitemap .__container .__sec ul li {
        padding-left: 0;
    }
}

#sitemap .p-sitemap .__container .__sec ul a {
    text-decoration: none;
}

#sitemap .p-sitemap .__container .__sec ul:last-child {
    margin-bottom: 64px;
}

#sitemap .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#sitemap .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#sitemap .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#sitemap .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#sitemap .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#sitemap .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#sitemap .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#sitemap .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#sitemap .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#sitemap .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-footer {
        background-size: cover;
    }
}

#sitemap .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#sitemap .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#sitemap .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #sitemap .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#policy {
    padding-top: 80px;
}

#policy .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#policy .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#policy .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#policy .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #policy .p-pagettl {
        background-size: cover;
    }
}

#policy .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #policy .p-pagettl .__container {
        padding-top: 104px;
    }
}

#policy .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #policy .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#policy .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #policy .p-pagettl .__container .jp-ttl {
        font-size: 33px;
    }
}

#policy .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #policy .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#policy .p-policy {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E5E6E9;
    padding: 80px 16px;
}

@media screen and (max-width: 769px) {
    #policy .p-policy {
        padding: 64px 16px;
    }
}

#policy .p-policy .__container {
    padding: 64px;
    background-color: #FAFAFA;
}

@media screen and (max-width: 769px) {
    #policy .p-policy .__container {
        padding: 16px;
    }
}

#policy .p-policy .__container .__policy-item {
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #BEBEBE;
}

#policy .p-policy .__container .__policy-item .__item-ttl {
    padding-left: 16px;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    border-left: 4px #E9514E solid;
}

@media screen and (max-width: 769px) {
    #policy .p-policy .__container .__policy-item .__item-ttl {
        font-size: 19px;
    }
}

#policy .p-policy .__container .__policy-item .__item-ctn {
    padding-top: 24px;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}

#policy .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#policy .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#policy .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#policy .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#policy .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#policy .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#policy .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#policy .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#policy .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#policy .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-footer {
        background-size: cover;
    }
}

#policy .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#policy .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#policy .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#policy .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#policy .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #policy .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #policy .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#policy .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#policy .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#policy .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #policy .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#company {
    padding-top: 80px;
}

#company .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#company .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#company .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#company .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #company .p-pagettl {
        background-size: cover;
    }
}

#company .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #company .p-pagettl .__container {
        padding-top: 104px;
    }
}

#company .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #company .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#company .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #company .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#company .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #company .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#company .p-company {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    background-color: #E5E6E9;
}

#company .p-company .__container {
    max-width: 1120px;
    background-color: #FAFAFA;
    padding: 64px;
}

@media screen and (max-width: 769px) {
    #company .p-company .__container {
        padding: 16px;
    }
}

#company .p-company .__container .__company-item {
    padding: 24px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    border-bottom: 2px solid #333333;
}

#company .p-company .__container .__company-item .pt-16 {
    padding-top: 16px;
}

@media screen and (max-width: 769px) {
    #company .p-company .__container .__company-item {
        flex-direction: column;
        gap: 16px;
        border-bottom: 2px solid #BEBEBE;
    }
}

#company .p-company .__container .__company-item ._c-ttl {
    font-weight: 700;
    color: #333333;
    font-size: 16px;
    max-width: 279px;
    width: 100%;
}

#company .p-company .__container .__company-item ._c-ctn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 676px;
    gap: 8px;
}

#company .p-company .__container .__company-item ._c-ctn p {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

@media screen and (max-width: 769px) {
    #company .p-company .__container .__company-item ._c-ctn p {
        font-size: 15px;
    }
}

#company .p-company .__container .__company-item ._c-ctn .star {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 9px;
    padding-top: 8px;
}

#company .p-company .__container .__company-item ._c-ctn .star ._star-ttl {
    font-size: 13px;
    min-width: 40px;
}

#company .p-company .__container .__company-item ._c-ctn .star ._star-ctn {
    font-size: 13px;
}

#company .p-company .__container .__company-item ._c-ctn .__flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#company .p-company .__container .__company-item ._c-ctn .__flex .__ttl {
    min-width: 50px;
}

#company .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#company .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#company .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#company .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#company .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#company .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#company .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#company .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#company .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#company .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-footer {
        background-size: cover;
    }
}

#company .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#company .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#company .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#company .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#company .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #company .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #company .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#company .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#company .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#company .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #company .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#contact {
    padding-top: 80px;
}

#contact .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#contact .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#contact .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#contact .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #contact .p-pagettl {
        background-size: cover;
    }
}

#contact .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #contact .p-pagettl .__container {
        padding-top: 104px;
    }
}

#contact .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #contact .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#contact .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #contact .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#contact .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #contact .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#contact .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/contact/bg-intro.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #contact .p-intro {
        padding-left: 16px;
        background-size: 100% 61%;
    }
}

#contact .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 40px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #contact .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#contact .p-intro .__intro-ctn h4 {
    padding-bottom: 24px;
    font-size: 25px;
    color: #333333;
    font-weight: 700;
}

#contact .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

#contact .p-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

#contact .p-contact .__container {
    max-width: 960px;
    padding-top: 144px;
}

@media screen and (max-width: 769px) {
    #contact .p-contact .__container {
        padding-top: 100px;
    }
}

#contact .p-contact .__container .__form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-direction: column;
}

@media screen and (max-width: 769px) {
    #contact .p-contact .__container .__form {
        gap: 32px;
    }
}

#contact .p-contact .__container .__form .__form-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* Style for the container and label positioning */
    /* Hide the default checkbox */
    /* Create a custom checkbox */
    /* On mouse-over, add a grey background color */
    /* When the checkbox is checked, add a blue background */
    /* Create the checkmark/indicator (hidden when not checked) */
    /* Show the checkmark when checked */
    /* Style the checkmark/indicator */
}

@media screen and (max-width: 769px) {
    #contact .p-contact .__container .__form .__form-item {
        flex-direction: column;
        gap: 16px;
    }
}

#contact .p-contact .__container .__form .__form-item.__reverse {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#contact .p-contact .__container .__form .__form-item .__form-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#contact .p-contact .__container .__form .__form-item .__form-type .__isneed {
    padding: 2px 8px;
    color: white;
    font-weight: 700;
    border-radius: 4px;
    font-size: 13px;
}

#contact .p-contact .__container .__form .__form-item .__form-type .__isneed.isnt {
    background-color: rgba(51, 51, 51, 0.4392156863);
}

#contact .p-contact .__container .__form .__form-item .__form-type .__isneed.is {
    background-color: #E9514E;
}

#contact .p-contact .__container .__form .__form-item .__form-type .__item-ttl {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
}

#contact .p-contact .__container .__form .__form-item .__item-input {
    max-width: 672px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

#contact .p-contact .__container .__form .__form-item .__item-input.__reverse {
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

#contact .p-contact .__container .__form .__form-item .__item-input .star {
    font-size: 13px;
    color: #333333;
    font-weight: 700;
    opacity: 0.75;
}

#contact .p-contact .__container .__form .__form-item .__item-input input[type=text] {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    background: rgba(229, 230, 233, 0.7490196078);
    border-radius: 8px;
}

#contact .p-contact .__container .__form .__form-item .__item-input textarea {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    background: rgba(229, 230, 233, 0.7490196078);
    border-radius: 8px;
    height: 240px;
}

@media screen and (max-width: 769px) {
    #contact .p-contact .__container .__form .__form-item .__item-input textarea {
        height: 361px;
    }
}

#contact .p-contact .__container .__form .__form-item .__item-input select {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 16px;
    border-radius: 8px;
    border: 1px solid rgba(51, 51, 51, 0.4588235294);
    color: #333333;
    background-color: #FAFAFA;
}

#contact .p-contact .__container .__form .__form-item .__item-input select option {
    font-size: 16px;
}

#contact .p-contact .__container .__form .__form-item .agree {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    padding-top: 24px;
    text-align: center;
}

#contact .p-contact .__container .__form .__form-item .__agree {
    display: block;
    /* Change to 'flex' if you want elements in line */
    margin: 10px;
    /* Spacing around the label */
}

#contact .p-contact .__container .__form .__form-item .custom-checkbox label {
    position: relative;
    padding-left: 35px;
    /* Space for the custom checkbox */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 20px;
    /* Adjust line height to vertically center text with the box */
}

#contact .p-contact .__container .__form .submit {
    margin-top: 24px;
    text-decoration: none;
    color: #FAFAFA;
    background-color: #E9514E;
    padding: 12px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid #E9514E;
}

@media screen and (max-width: 769px) {
    #contact .p-contact .__container .__form .submit {
        padding: 12px 24px;
    }
}

#contact .p-contact .__container .__form .submit:hover {
    gap: 24px;
    background-color: white;
    color: #E9514E;
}

#contact .p-contact .__container .__form .submit:hover svg g path {
    stroke: #E9514E;
}

#contact .p-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

#contact .p-download .__container {
    padding-top: 85px;
    padding-bottom: 80px;
}

#contact .p-download .__container .__download-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 39px;
}

@media screen and (max-width: 769px) {
    #contact .p-download .__container .__download-ttl {
        font-size: 33px;
    }
}

#contact .p-download .__container .__download-main {
    padding-top: 34px;
}

#contact .p-download .__container .__download-main .__download-items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 25px;
    padding-left: 16px;
    border-left: 4px solid #E9514E;
}

@media screen and (max-width: 769px) {
    #contact .p-download .__container .__download-main .__download-items .__download-item .__item-ttl {
        font-size: 23px;
    }
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists {
    padding-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media screen and (max-width: 769px) {
    #contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists {
        grid-template-columns: 1fr;
    }
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists .__list {
    max-width: 545px;
    background-color: #E5E6E9;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists .__list .__list-ctn {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    flex-direction: column;
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists .__list .__list-ctn .__list-ttl {
    font-size: 15px;
    font-weight: 700;
    color: #E9514E;
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists .__list .__list-ctn .__list-desc {
    font-size: 15px;
    font-weight: normal;
    color: #333333;
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists .__list .__list-downloadbtns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists .__list .__list-downloadbtns .__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists .__list .__list-downloadbtns .__btn figure {
    max-width: 45px;
}

#contact .p-download .__container .__download-main .__download-items .__download-item .__item-lists .__list .__list-downloadbtns .__btn .__size {
    font-size: 12px;
    font-weight: 500;
    color: #333333;
}

#contact .p-download .__container .__download-btn {
    margin-top: 50px;
    width: -moz-max-content;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 15px 20px;
    background-color: #E9514E;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #E9514E;
    transition: all 0.3s;
    font-weight: 700;
}

#contact .p-download .__container .__download-btn:hover {
    background-color: white;
    color: #E9514E;
    gap: 24px;
}

#contact .p-download .__container .__download-btn:hover svg rect {
    fill: #E9514E;
}

#contact .p-download .__container .__download-btn:hover svg path {
    fill: #E9514E;
}

#contact .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#contact .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#contact .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#contact .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#contact .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#contact .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#contact .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#contact .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#contact .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#contact .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-footer {
        background-size: cover;
    }
}

#contact .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#contact .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#contact .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#contact .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#contact .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #contact .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #contact .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#contact .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#contact .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#contact .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #contact .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}

#irinformation {
    padding-top: 80px;
}

#irinformation .p-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-color: #EDEDED;
}

#irinformation .p-nav .__container {
    max-width: 1122px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8.5px;
    padding-bottom: 8.5px;
    background-color: #EDEDED;
    gap: 16px;
}

#irinformation .p-nav .__container a {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
}

#irinformation .p-pagettl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    background-image: url(../img/about/bg-ttl.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 769px) {
    #irinformation .p-pagettl {
        background-size: cover;
    }
}

#irinformation .p-pagettl .__container {
    max-width: 1122px;
    padding-top: 85px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-pagettl .__container {
        padding-top: 104px;
    }
}

#irinformation .p-pagettl .__container .en-ttl {
    color: rgba(233, 81, 78, 0.6);
    font-size: 25px;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #irinformation .p-pagettl .__container .en-ttl {
        font-size: 23px;
    }
}

#irinformation .p-pagettl .__container .jp-ttl {
    color: #333333;
    font-weight: 700;
    font-size: 49px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-pagettl .__container .jp-ttl {
        font-size: 48px;
    }
}

#irinformation .p-pagettl .__container .__absolute {
    position: absolute;
    max-width: 676px;
    top: 32px;
    right: -134px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-pagettl .__container .__absolute {
        top: 0;
        right: 0;
    }
}

#irinformation .p-intro {
    padding-right: 16px;
    padding-left: 0;
    padding-top: 200px;
    background-image: url(../img/irinformation/bg-intro.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #irinformation .p-intro {
        padding-left: 16px;
        background-size: 100% 52%;
        padding-bottom: 40px;
    }
}

#irinformation .p-intro .__intro-ctn {
    max-width: 713px;
    width: 100%;
    padding: 40px 40px 64px 160px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media screen and (max-width: 769px) {
    #irinformation .p-intro .__intro-ctn {
        padding: 0;
        background-color: unset;
    }
}

#irinformation .p-intro .__intro-ctn h4 {
    padding-bottom: 24px;
    font-size: 25px;
    color: #333333;
    font-weight: 700;
}

#irinformation .p-intro .__intro-ctn p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
}

#irinformation .p-irinfo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    font-weight: 700;
    color: #333333;
}

#irinformation .p-irinfo .__container {
    padding-top: 104px;
    padding-bottom: 104px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

#irinformation .p-irinfo .__container .__irinfo-ttl h3 {
    font-size: 39px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container .__irinfo-ttl h3 {
        font-size: 24px;
    }
}

#irinformation .p-irinfo .__container .__irinfo-ttl .__btns {
    padding-top: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container .__irinfo-ttl .__btns {
        padding-top: 40px;
    }
}

#irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__irinfo-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__irinfo-tabs .jp-btn {
    padding: 10px 92px;
    font-size: 20px;
    border-bottom: 4px solid #E9514E;
    cursor: pointer;
    transition: all 0.3s;
}

#irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__irinfo-tabs .jp-btn:hover {
    background-color: #E9514E;
    color: white;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__irinfo-tabs .jp-btn {
        padding: 10px;
        font-size: 13px;
    }
}

#irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__irinfo-tabs .en-btn {
    padding: 10px 92px;
    font-size: 20px;
    border-bottom: 4px solid #333333;
    cursor: pointer;
    transition: all 0.3s;
}

#irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__irinfo-tabs .en-btn:hover {
    background-color: #333333;
    color: white;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__irinfo-tabs .en-btn {
        padding: 10px;
        font-size: 13px;
    }
}

#irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 1px solid #E9514E;
    color: #E9514E !important;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container .__irinfo-ttl .__btns .__back-btn {
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
    }
}

#irinformation .p-irinfo .__container .__irinfo-main {
    padding: 64px 95px 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container .__irinfo-main {
        padding: 16px;
    }
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 16px;
    background-color: #E5E6E9;
    width: 100%;
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-ctn {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    width: 100%;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-ctn {
        gap: 16px;
    }
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-ctn .__ctn-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-ctn .__ctn-head .head-cat {
    padding: 8px 16px;
    background-color: #333333;
    opacity: 0.8;
    color: white;
    font-size: 13px;
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-ctn .__ctn-head .date {
    font-size: 16px;
    opacity: 0.8;
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-ctn .__ctn-body {
    font-size: 16px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-ctn .__ctn-body {
        font-size: 13px;
    }
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-download {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    gap: 16px;
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-download .__item-img {
    max-width: 48px;
}

#irinformation .p-irinfo .__container .__irinfo-main .__irinfo-item .__item-download .__sizefile {
    font-size: 13px;
}

#irinformation .p-library {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

#irinformation .p-library .__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 104px;
    padding: 0 64px 104px 0;
}

@media screen and (max-width: 769px) {
    #irinformation .p-library .__container {
        padding: 16px;
        gap: 32px;
    }
}

#irinformation .p-library .__container .__library-item {
    color: #333333;
    font-weight: 700;
    width: 100%;
}

#irinformation .p-library .__container .__library-item .__library-ttl {
    font-size: 39px;
    border-left: 8px solid #E9514E;
    padding-left: 24px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-library .__container .__library-item .__library-ttl {
        font-size: 24px;
    }
}

#irinformation .p-library .__container .__library-item .__library-main {
    padding-top: 40px;
    padding-left: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 160px;
    column-gap: 160px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-library .__container .__library-item .__library-main {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 32px;
        padding-left: 0;
    }
}

#irinformation .p-library .__container .__library-item .__library-main ul {
    padding: 24px 59px 24px 16px;
    border-bottom: 1px solid #333333;
    max-width: 416px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-library .__container .__library-item .__library-main ul {
        padding: 16px 0;
    }
}

#irinformation .p-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
}

#irinformation .p-desc .__container {
    padding-bottom: 104px;
    padding-right: 64px;
    padding-left: 64px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-desc .__container {
        padding-bottom: 40px;
        padding-right: 0;
        padding-left: 0;
        padding-top: 40px;
    }
}

#irinformation .p-desc .__container .__desc-main {
    padding: 16px;
    background-color: #E5E6E9;
}

#irinformation .p-desc .__container .__desc-main .__desc-ttl {
    font-size: 25px;
    color: #E9514E;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #irinformation .p-desc .__container .__desc-main .__desc-ttl {
        font-size: 20px;
        font-weight: 500;
    }
}

#irinformation .p-desc .__container .__desc-main .desc-ctn {
    padding-top: 16px;
    color: #000000;
    font-weight: 700;
}

@media screen and (max-width: 769px) {
    #irinformation .p-desc .__container .__desc-main .desc-ctn {
        font-weight: 500;
        font-size: 13px;
    }
}

#irinformation .p-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 16px;
    padding-left: 16px;
    font-weight: 700;
    color: #333333;
}

#irinformation .p-download .__container {
    padding-bottom: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 769px) {
    #irinformation .p-download .__container {
        flex-direction: column;
        padding-bottom: 80px;
        align-items: flex-start;
        gap: 40px;
    }
}

#irinformation .p-download .__container .__download-ttl {
    padding-left: 64px;
    font-size: 30px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-download .__container .__download-ttl {
        padding-left: 0;
        font-size: 24x;
    }
}

#irinformation .p-download .__container .__download-main {
    max-width: 608px;
    width: 100%;
}

#irinformation .p-download .__container .__download-main .__download-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#irinformation .p-download .__container .__download-main .__download-tabs .jp-btn {
    padding: 10px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 4px solid #E9514E;
    transition: all 0.3s;
}

#irinformation .p-download .__container .__download-main .__download-tabs .en-btn {
    padding: 10px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 4px solid #333333;
    transition: all 0.3s;
}

#irinformation .p-download .__container .__download-main .__download-items {
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    font-weight: 700;
    color: #333333;
}

@media screen and (max-width: 769px) {
    #irinformation .p-download .__container .__download-main .__download-items {
        padding-top: 32px;
        gap: 16px;
    }
}

#irinformation .p-download .__container .__download-main .__download-items .__download-item {
    background-color: #E5E6E9;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#irinformation .p-download .__container .__download-main .__download-items .__download-item .__item-ctn .__ctn-ttl {
    font-size: 16px;
    color: #E9514E;
}

#irinformation .p-download .__container .__download-main .__download-items .__download-item .__item-ctn .__ctn-desc {
    padding-top: 16px;
    font-weight: 700;
    font-size: 16px;
}

@media screen and (max-width: 769px) {
    #irinformation .p-download .__container .__download-main .__download-items .__download-item .__item-ctn .__ctn-desc {
        font-size: 13px;
    }
}

#irinformation .p-download .__container .__download-main .__download-items .__download-item .__download-ico {
    max-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    flex-direction: column;
}

@media screen and (max-width: 769px) {
    #irinformation .p-download .__container .__download-main .__download-items .__download-item .__download-ico {
        font-size: 13px;
        max-width: 32px;
    }
}

#irinformation .p-download .__container .__download-main .__download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: white;
    background-color: #E9514E;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #E9514E;
    transition: all 0.3s;
}

#irinformation .p-download .__container .__download-main .__download-btn:hover {
    background-color: #E5E6E9;
    color: #E9514E;
}

#irinformation .c-footer .p-link_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#irinformation .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#irinformation .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#irinformation .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#irinformation .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#irinformation .c-footer .p-link_1 .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#irinformation .c-footer .p-link_1 .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#irinformation .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#irinformation .c-footer .p-link_1 .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

#irinformation .c-footer .p-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-footer {
        background-size: cover;
    }
}

#irinformation .c-footer .p-footer .__container {
    padding: 72px 32px 0;
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-footer .__container {
        padding: 32px;
    }
}

#irinformation .c-footer .p-footer .__container .__link-wraps {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 48px;
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-footer .__container .__link-wraps {
        margin-bottom: 24px;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap:last-child {
        margin-top: 16px;
        border-top: 1px solid #FAFAFA;
    }
}

#irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
#irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
#irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap a,
    #irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap p,
    #irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap li {
        font-weight: 500;
    }
}

#irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap p {
    line-height: 2.5;
}

#irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
    font-size: 20px;
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-footer .__container .__link-wraps .__link-wrap .__logo {
        padding-top: 32px;
        font-weight: 500;
        width: 100%;
    }
}

#irinformation .c-footer .p-footer .__container .__copyright {
    padding: 40px 32px;
    text-align: center;
    color: #FAFAFA;
    border-top: 1px solid #FAFAFA;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 769px) {
    #irinformation .c-footer .p-footer .__container .__copyright {
        padding: 24px 0;
        font-size: 13px;
    }
}


/*# sourceMappingURL=style.css.map */

form.mw_wp_form p {
    display: none;
    /* Hides all <p> tags in MW WP Form */
}

#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 64px;
}

.prev,
.next {
    background-color: #fafafa;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #2d2a29;
    transition: all 0.3s;
}

.prev:hover,
.next:hover {
    background-color: #2d2a29;
}

.prev:hover svg path,
.next:hover svg path {
    stroke: #fafafa;
}

.page-number {
    font-size: 18px;
}

.page-item {
    display: none;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-number-btn {
    background-color: #fafafa;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #2d2a29;
    transition: all 0.3s;
}

.page-number-btn.active {
    background-color: #2d2a29;
    color: white;
}

.page-number-btn.disabled {
    cursor: not-allowed;
    background-color: #dcdcdc;
}

#detail .c-footer .p-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-image: url(../img/real_estate/bg-contact.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 120%;
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-link {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#detail .c-footer .p-link .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#detail .c-footer .p-link .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#detail .c-footer .p-link .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#detail .c-footer .p-link .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

@keyframes moveDisappear {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

#detail .c-footer .p-link .__container .__link-item .__link-ctn {
    padding: 12px 72px 12px 24px;
    color: #E9514E;
    position: relative;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: -moz-max-content;
    width: max-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#detail .c-footer .p-link .__container .__link-item .__link-ctn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    background-image: url("../img/ico-btnr.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

#detail .c-footer .p-link .__container .__link-item .__link-ctn:hover {
    background-color: #E9514E;
    color: #FFFFFF;
}

#detail .c-footer .p-link .__container .__link-item .__link-ctn:hover::after {
    transform: translateY(-50%) translateX(10px);
    background-image: url("../img/ico-btn.png");
}

@media screen and (max-width: 769px) {
    #detail .c-footer .p-link_1 {
        background-size: cover;
        background-position: right;
        background-image: url(../img/real_estate/bg-contact.jpg);
    }
}

#detail .c-footer .p-link_1 .__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px;
}

#detail .c-footer .p-link_1 .__container .__link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 88px;
    flex-direction: column;
}

#detail .c-footer .p-link_1 .__container .__link-item .__link-ttl {
    color: #FAFAFA;
    font-size: 49px;
    font-weight: 700;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2509803922);
    position: relative;
}

#detail .c-footer .p-link_1 .__container .__link-item .__link-ttl::after {
    content: "";
    width: 10px;
    height: 40px;
    background-image: url("../img/real_estate/ico-before.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 50%;
    top: 115%;
    animation: moveDisappear 1s infinite;
}

.w-100 {
    width: 100%;
}