@charset "utf-8";
/*
theme Name: crecer_realestate
Description: クレシア不動産のテーマです
version： 1.0
*/

/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
    font-size: 62.5%;
    color: #333;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 400;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
    height: auto;
}

ul {
    list-style-type: none;
}

#container {
    overflow: hidden;
}

.bold {
    font-weight: bold;
}


@media screen and (max-width:768px) {
    body {
        font-size: 1.4rem;
    }
}

/*----------------------------------------
	common
----------------------------------------*/

.c-inner01 {
    width: 1000px;
    margin: auto;
}

.c-inner02 {
    width: 1300px;
    margin: auto;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.75;
}

.c-button {
    text-align: center;
    display: block;
    width: 350px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: #0086D1;
    border: 1px solid #0086D1;
    transition: all 0.3s;
    position: relative;
    font-weight: bold;
    transition: all 0.4s;
    border-radius: 100px;
    margin: 50px auto 0;
}

.c-button:after {
    content: "";
    display: inline-block;
    width: 41px;
    height: 41px;
    background-image: url(images/button_arrow.svg);
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
    transition: all 0.4s;
}

.c-button02 {
    border: 1px solid #fff;
    color: #fff;
}

.c-button02:after {
    background-image: url(images/button_arrow_white.svg);
}

.color {
    color: #006FB9;
}

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

.lookforward-close-btn {
    display: none;
}

@media screen and (min-width:769px) {
    .c-button:hover {
        background-color: #CBE6F6;
    }

    .c-button:hover:after {
        right: 4px;
    }
}

@media screen and (max-width:1300px) {
    .c-inner01 {
        width: 100%;
        padding: 0 5.5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 5%;
    }

    .c-inner03 {
        width: 100%;
        padding: 0 4.5%;
    }
}

@media screen and (max-width:1300px) {
    .c-inner01 {
        width: 100%;
        padding: 0 4.5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 4%;
    }

    .c-inner03 {
        width: 100%;
        padding: 0 3.5%;
    }
}

@media screen and (max-width:768px) {
    .c-text {
        font-size: 1.4rem;
    }

    .c-button {
        width: 200px;
        height: 45px;
        font-size: 1.4rem;
        margin: 25px auto 0;
    }

    .c-inner01 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner03 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-button:after {
        background-size: 100%;
        width: 20px;
        height: 20px;
    }
}

/*----------------------------------------
	animation
----------------------------------------*/

.appear {
    transform-origin: center top;
    animation: show 1s both;
}

span.appear {
    display: inline-block;
}

.d1 {
    animation-delay: 0.5s;
}

.d2 {
    animation-delay: 1s;
}

.d3 {
    animation-delay: 1.5s;
}

.d4 {
    animation-delay: 2s;
}

.d5 {
    animation-delay: 2.5s;
}

.d6 {
    animation-delay: 3s;
}

.d8 {
    animation-delay: 3.5s;
}

.d10 {
    animation-delay: 10s;
}

.d12 {
    animation-delay: 12s;
}

@keyframes show {
    0% {
        transform: translate(0, 2em);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.scroll_up__mv {
    transition: 0.8s ease-in-out;
    transform: translate(-50%, -35%);
    opacity: 0;
}

.scroll_up__mv.on {
    transform: translate(-50%, -50%);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}

/*----------------------------------------
	l-header
----------------------------------------*/

.l-header {
    max-width: 1300px;
    width: calc(100% - 100px);
    margin: 30px auto 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s ease;
}

/*.l-header.change-color {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.l-header.change-color02 {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}*/

.l-header__inner {
    width: 84.7%;
    height: 100%;
    background-color: #fff;
    padding: 0 37px 0 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
    border-radius: 100px;
}

.l-header__info {
    display: flex;
    align-items: center;
    margin: 0 0 26px;
}

.l-header__gnav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.l-header__gnavLists {
    display: flex;
    align-items: center;
}

.l-header__gnavList:last-child:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 36px;
    background-color: #707070;
}

.l-header__gnavList {
    height: 100%;
}

.l-header__gnavList:not(:last-child) {
    margin: 0 26px 0 0;
}

.l-header__gnavList a {
    position: relative;
    font-size: var(--pcFontSize15);
    font-weight: bold;
}

.l-header__contact {
    width: 188px;
    height: 70px;
    background: transparent linear-gradient(111deg, #FF9731 0%, #E8DB40 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000040;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: var(--pcFontSize18);
    margin: 0 0 0 10px;
    font-weight: bold;
}

.l-header__contact:before {
    content: "";
    display: inline-block;
    background-image: url(images/header_form_icon.svg);
    width: 23px;
    height: 17px;
    margin: 0 5px 0 0;
}

.l-header__tel .l-header__telNumber {
    font-size: var(--pcFontSize26);
    color: #0086D1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.03em;
}

.l-header__tel .l-header__telNumber:before {
    content: "";
    display: inline-block;
    background-image: url(images/header_tel_icon.svg);
    width: 21px;
    height: 23px;
    margin: 0 6px 0 0;
}

.l-header__tel .l-header__telTime {
    font-size: var(--pcFontSize10);
    display: block;
    text-align: center;
    margin: 8px 0 0;
}

.l-header__gnavList.sp {
    display: none;
}

.input-hidden {
    display: none;
}

.hamburger-demo-cover {
    display: none;
}

.logo a {
    display: block;
}

.logo a .sp {
    display: none;
}

@media screen and (min-width:1001px) {
    .l-header__gnavLists li a {
        transition: .3s;
        padding: 0 0 12px;
    }

    .l-header__gnavLists li.current a,
    .l-header__gnavLists li a:hover {
        color: #0086D1;
    }

    .l-header__gnavLists li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 2px;
        background: #0086D1;
        transition: all .3s;
        transform: scale(0, 1);
        transform-origin: left top;
    }

    .l-header__gnavLists li.current a::after,
    .l-header__gnavLists li a:hover::after {
        transform: scale(1, 1);
    }
}

@media screen and (max-width:1500px) {

    .l-header__gnavList a {
        font-size: 1vw;
    }

    .logo a {
        width: 185px;
    }

    .logo img {
        width: 100%;
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0px 22px 0 0;
    }
}

@media screen and (max-width:1300px) {
    .l-header__inner {
        padding: 0 20px 0 15px;
    }

    .l-header__tel .l-header__telNumber {
        font-size: var(--pcFontSize22);
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0px 18px 0 0;
    }

    .l-header__tel .l-header__telNumber:before {
        width: 16px;
        height: 18px;
        background-size: 100%;
    }

    .l-header__contact {
        font-size: var(--pcFontSize16);
    }
}

@media screen and (max-width:1100px) {
    .l-header {
        margin: 0;
    }

    .l-header__inner {
        background-color: transparent;
    }

    .logo a .sp {
        width: 100%;
        display: block;
    }

    .logo a .pc {
        display: none;
    }

    .change-color,
    .change-color02 {
        background-color: rgba(0, 134, 209, 0.6);
    }

    .l-header__gnavSp {
        display: flex;
    }

    .l-header__right {
        display: none;
    }

    #l-header {
        max-width: unset;
        width: 100%;
        height: 70px;
    }

    .l-header__inner {
        width: 100%;
        padding: 0 0 0 20px;
        border-radius: 0;
    }

    .l-header__gnavLists {
        flex-direction: column;
    }

    .l-header__gnavList {
        width: 100%;
        height: auto;
    }

    .l-header__gnavList_en {
        font-size: 2rem;
        color: #006FB9;
        margin: 0 0 7px 0;
    }

    .l-header__gnavList_jp {
        font-size: 1.8rem;
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0;
    }

    .l-header__gnavLists li > a {
        display: flex;
        flex-direction: column;
    }

    .l-header__gnavList a {
        font-size: 1.7rem;
    }

    .l-header__gnavLists li.has-child > a {
        position: relative;
    }

    .l-header__gnavLists li.has-child > a:after {
        content: '';
        position: absolute;
        right: 40px;
        width: 12px;
        height: 12px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
        transform: rotate(135deg) translateY(-50%);
    }

    .l-header__gnavLists li.has-child.active > a:after {
        transform: rotate(-45deg);
    }

    nav ul li a {
        padding: 10px 20px;
        border-bottom: 1px dashed #ccc;
    }

    .nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li:first-child a {
        border-top: 1px dashed #ccc;
    }

    nav ul li li a {
        padding: 0;
    }

    .input-hidden {
        display: none;
    }

    .hamburger-demo-switch {
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        width: 70px;
        height: 70px;
        background-color: var(--keyColor);
        border: 1px solid #fff;
    }

    .hamburger-switch-line1,
    .hamburger-switch-line1-before,
    .hamburger-switch-line1-after {
        width: 25px;
        height: 3px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transition: .3s;
        border-radius: 100px;
        content: "";
    }

    .hamburger-switch-line1 {
        transform: translate(-50%, -50%);
    }

    .hamburger-switch-line1-before {
        transform: translate(-50%, -300%);
    }

    .hamburger-switch-line1-after {
        transform: translate(-50%, 200%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1 {
        width: 0;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-before {
        background-color: #fff;
        transform: rotate(45deg) translate(-40%, 325%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-after {
        background-color: #fff;
        transform: rotate(-45deg) translate(-40%, -325%);
    }

    .l-header__gnav {
        position: fixed;
        height: 100vh;
        background: #fafafa;
        padding: 5em 3% 2em;
        z-index: 9998;
        transition: .3s;
        overflow-y: scroll;
        justify-content: flex-start;
        align-items: center;
        top: 0;
        left: 100%;
        width: 80%;
    }

    .l-header__gnavLists {
        width: 100%;
        margin-right: 3%;
        padding-left: 5% !important;
        list-style: none;
        margin-bottom: 40px;
    }

    .l-header__gnavLists li a {
        text-decoration: none;
        color: #006FB9;
        padding: 1.6em 0;
    }

    #hamburger-demo1:checked ~ .l-header__gnav {
        left: 20%;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-cover {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 9997;
        background: rgba(3, 3, 3, .5);
        display: block;
    }

    .l-header__gnavList > a {
        height: auto;
    }

    .l-header__gnavLists li a {
        padding: 1.5em 0;
    }

    .logo a {
        width: 205px;
    }

    .l-header__contact {
        display: none;
    }

    .l-header__tel a {
        border-bottom: none;
    }

    .l-header__tel .l-header__telNumber {
        font-size: var(--pcFontSize30);
    }

    .l-header__tel .l-header__telTime {
        font-size: var(--pcFontSize14);
    }

    .l-header__gnavList.sp {
        display: flex;
    }

    .l-header__gnavList.sp.l-header__contact {
        margin: 10px 0 0;
    }

    .l-header__gnavList.sp.l-header__contact a {
        color: #fff;
    }
}

@media screen and (max-width:590px) {

    #l-header {
        height: 55px;
    }

    .hamburger-demo-switch {
        width: 55px;
        height: 55px;
    }

    .l-header__gnav {
        padding: 5em 3% 2em;
    }

    .l-header__gnavList a {
        font-size: 1.5rem;
    }

    .l-header__inner {
        padding: 0 15px;
    }

    .l-header__gnavList {
        width: 100%;
    }

    .l-header__gnavLists li.has-child > a:after {
        right: 8px;
        width: 8px;
        height: 8px;
    }

    .logo a {
        width: 140px;
    }

    .l-header__gnavLists li a {
        padding: 0.9em 0;
    }

    .l-header__gnavWrap {
        flex-direction: column;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
    background: transparent linear-gradient(299deg, #0086D1 0%, #00B2CD 100%) 0% 0% no-repeat padding-box;
    border-radius: 60px 60px 0 0;
    padding: 175px 0 20px;
}

.l-footerWrap {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding: 60px 0 70px;
}

.l-footerLogo {
    display: block;
    margin: 0 0 50px;
}

.l-footerLogo span {
    display: block;
    color: #fff;
    margin: 20px 0 0;
}

.l-footerInfo h2 {
    font-size: 2rem;
    color: #fff;
    margin: 0 0 15px;
}

.l-footerInfo p {
    line-height: 1.444;
    color: #fff;
}

.l-footerSns {
    margin: 0 0 40px;
    padding: 16px 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.23);
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-footerSns__title {
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.l-footerSns__title span {
    font-size: 1.7rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 5px;
    letter-spacing: 0.04em;
}

.l-footerSns__title h2 {
    font-size: 1.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.l-footerSns__icon {
    display: flex;
    align-items: center;
}

.l-footerSns__icon:before {
    content: "";
    display: inline-block;
    width: 59px;
    height: 1px;
    background-color: #fff;
    margin: 0 16px;
}

.l-footerSns__icon li:first-child {
    margin: 0 18px 0 0;
}

.l-footerSns__icon a {
    display: block;
}

.l-footerRight {
    width: 39.6%;
}

.l-footerNav {
    display: flex;
    justify-content: space-between;
}

.l-footerNav__parentTitle {
    font-size: 1.5rem;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 20px;
}

.l-footerNav__child li a {
    font-size: 1.5rem;
    color: #fff;
}

.l-footerNav__child li a span {
    display: flex;
    align-items: center;
}

.l-footerNav__child li a span:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 1px;
    background-color: #fff;
    margin: 0 6px 0 0;
}

.l-footerNav__child li:not(:last-child) {
    margin: 0 0 17px;
}

.l-footerNav__parent li a {
    font-size: 1.5rem;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.l-footerNav__parent li:not(:last-child) {
    margin: 0 0 20px;
}

.l-footerNav__copyright {
    font-size: 1.4rem;
    text-align: center;
    padding: 0 0 20px;
    color: #fff;
}

.l-footer__linkWrap {
    display: none;
}

@media screen and (max-width:1200px) {

    .l-footerWrap {
        flex-direction: column;
        padding: 40px 0 50px;
        gap: 40px;
    }

    .l-footerRight {
        width: 100%;
    }

    .l-footerNav {
        justify-content: flex-start;
        gap: 50px;
    }

    .l-footerLeft {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .l-footerLogo img {
        width: 350px;
    }

    .l-footerLogo {
        margin: 0;
    }

    .l-footerLogo img {
        width: 300px;
    }
}

@media screen and (max-width:820px) {

    .l-footer {
        padding: 120px 0 20px;
    }

    .l-footerLogo {
        text-align: center;
        margin-bottom: 30px;
    }

    .l-footerLogo span {
        margin: 10px 0 0;
    }

    .l-footerSns {
        flex-direction: column;
        gap: 20px;
    }

    .l-footerSns__icon:before {
        display: none;
    }

    .l-footerNav {
        flex-direction: column;
        gap: 40px;
    }

    .l-footerNav__parentTitle {
        font-size: 1.4rem;
    }

    .l-footerNav__child li a,
    .l-footerNav__parent li a {
        font-size: 1.4rem;
    }

    .l-footerLeft {
        flex-direction: column;
        justify-content: center;
    }

    .l-footerNav__child li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    }

    .l-footerNav__child li a span::before {
        display: none;
    }

    .l-footerNav__child li:not(:last-child) {
        margin: 0;
    }

    .l-footerSns__icon li:first-child a {
        display: block;
        width: 32px;
        height: 31px;
    }

    .l-footerSns__icon li:last-child a {
        display: block;
        width: 30px;
        height: 30px;
    }

    .l-footerSns__icon li a img {
        width: 100%;
    }

    .l-footer__linkWrap {
        width: 100%;
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
    }

    .l-footer__linkWrap a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 33.3%;
        height: 50px;
    }

    .l-footer__linkWrap a:nth-of-type(1) {
        background-color: #0086D1;
    }

    .l-footer__linkWrap a:nth-of-type(2) {
        background-color: #01B2CD;
    }

    .l-footer__linkWrap a:nth-of-type(3) {
        background-color: #35AC36;
    }

    .l-footer__spText {
        display: flex;
        align-items: center;
        font-family: "Zen Kaku Gothic New", sans-serif;
        font-weight: 700;
        font-style: normal;
        color: #fff;
    }

    .l-footer__spText:before {
        content: "";
        width: 25px;
        height: 25px;
        background-repeat: no-repeat;
        background-size: 100%;
        margin: 0 6px 0 0;
    }

    .l-footer__linkWrap a:nth-of-type(1) .l-footer__spText:before {
        background-image: url(images/footer_bottom_icon_search.svg);
    }

    .l-footer__linkWrap a:nth-of-type(2) .l-footer__spText:before {
        background-image: url(images/footer_bottom_icon_sale.svg);
    }

    .l-footer__linkWrap a:nth-of-type(3) .l-footer__spText:before {
        background-image: url(images/footer_bottom_icon_line.svg);
    }
}

@media screen and (max-width:590px) {

    .l-footer {
        padding: 100px 0 20px;
        border-radius: 40px 40px 0 0;
    }

    .l-footerWrap {
        padding: 30px 0 40px;
    }

    .l-footerInfo h2 {
        font-size: 1.8rem;
    }

    .l-footerInfo p {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .l-footerSns {
        width: 100%;
        padding: 20px;
        flex-direction: column;
    }

    .l-footerNav {
        gap: 30px;
    }

    .l-footerNav__child li a,
    .l-footerNav__parent li a {
        font-size: 1.3rem;
    }

    .l-footerNav__copyright {
        font-size: 1.2rem;
    }

    .l-footerLogo img {
        width: 240px;
    }

    .l-footerLogo span {
        font-size: 3.2vw;
    }

    .l-footerInfo h2 {
        margin: 0 0 10px;
    }
}

/*----------------------------------------
	bottomContact     
----------------------------------------*/

.p-bottomContact {
    width: 100%;
    border-radius: 60px;
    background-image: url(images/bottom_contact_bg.jpg);
    padding: 80px 0 87px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-bottom: -105px !important;
}

.p-bottomContact h2 {
    text-align: center;
    font-size: var(--pcFontSize48);
    line-height: 1.4;
    margin: 0 0 35px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-bottomContact h2 span {
    font-size: var(--pcFontSize30);
    display: inline-block;
    border-radius: 100px;
    margin: 0 auto 18px;
    padding: 10px 27px;
    background: transparent linear-gradient(113deg, #01B2CD 0%, #0086D1 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    letter-spacing: 0.03em;
}

.p-bottomContact .c-text {
    margin: 0 0 75px;
    text-align: center;
    color: #fff;
}

.p-bottomContact__time {
    font-size: var(--pcFontSize14);
    margin: 0 0 0 18px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.p-bottomContact__time span {
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 4px 9px;
    background-color: #DFEFF9;
    color: var(--pcFontSize14);
}

.p-bottomContact__form .p-bottomContact__time {
    font-size: var(--pcFontSize14);
}

.p-bottomContact__wrap {
    display: flex;
    justify-content: space-between;
}

.p-bottomContact__wrap li {
    background-color: #fff;
    border-radius: 20px;
    width: 46%;
    height: 274px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 39px 50px;
}

.p-bottomContact__title {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.p-bottomContact__title h3 {
    font-size: var(--pcFontSize40);
    letter-spacing: 0.03em;
}

.p-bottomContact__title h3 span {
    display: flex;
    align-items: center;
}

.p-bottomContact__tel .p-bottomContact__title h3 span:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 33px;
    background-image: url(images/bottom_contact_tel_icon.svg);
    margin: 0 10px 0 0;
}

.p-bottomContact__form .p-bottomContact__title h3 span:before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 26px;
    background-image: url(images/bottom_contact_form_icon.svg);
    margin: 0 8px 0 0;
}

.p-bottomContact__wrap li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 93px;
    border-radius: 200px;
    color: #fff;
    position: relative;
}

.p-bottomContact__wrap li.p-bottomContact__tel a {
    font-size: var(--pcFontSize48);
    background-color: var(--keyColor);
}

.p-bottomContact__wrap li.p-bottomContact__form a {
    font-size: var(--pcFontSize24);
    background-color: var(--keyColor01);
}

.p-bottomContact__form h3 {
    color: #01B2CD;
}

.p-bottomContact__tel h3 {
    color: #0086D1;
}

.p-bottomContact__form a:before {
    content: "";
    display: inline-block;
    width: 49px;
    height: 49px;
    background-image: url(images/contact_button_form_arrow.svg);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.p-bottomContact__wrap li h3. {
    font-size: 4rem;
    margin: 0 0 30px;
}

@media screen and (max-width: 1500px) {

    .p-bottomContact {
        border-radius: 50px;
        padding: 70px 0 80px;
    }

    .p-bottomContact__wrap li {
        height: 250px;
        padding: 35px 30px 45px;
    }

    .p-bottomContact__title h3 {
        font-size: 3.2rem;
    }

    .p-bottomContact__wrap li.p-bottomContact__tel a {
        font-size: 4rem;
    }
}

@media screen and (max-width: 1300px) {

    .p-bottomContact {
        border-radius: 40px;
        padding: 60px 0 70px;
    }

    .p-bottomContact h2 {
        font-size: 4rem;
    }

    .p-bottomContact h2 span {
        font-size: 2.2rem;
    }

    .p-bottomContact__wrap li {
        height: 230px;
        padding: 30px 25px 40px;
    }

    .p-bottomContact__wrap li a {
        height: 80px;
        font-size: 2rem;
    }

    .p-bottomContact__wrap li.p-bottomContact__tel a {
        font-size: 3.2rem;
    }

    .p-bottomContact__title {
        flex-direction: column;
    }

    .p-bottomContact__wrap li {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .p-bottomContact__title {
        flex-direction: column;
        align-items: center;
    }

    .p-bottomContact__title h3 {
        margin: 0px 0px 20px;
    }

    .p-bottomContact__form a::before {
        width: 30px;
        height: 30px;
        background-size: 100%;
    }

    .p-bottomContact__wrap li.p-bottomContact__form a {
        font-size: var(--pcFontSize18);
    }
}

@media screen and (max-width: 820px) {

    .p-bottomContact {
        border-radius: 15px;
    }

    .p-bottomContact {
        padding: 50px 20px 60px;
        margin-bottom: -85px !important;
    }

    .p-bottomContact h2 {
        font-size: 3.2rem;
        margin-bottom: 25px;
    }

    .p-bottomContact h2 span {
        font-size: 2rem;
    }

    .p-bottomContact .c-text {
        margin-bottom: 50px;
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .p-bottomContact__wrap {
        flex-direction: column;
        gap: 25px;
    }

    .p-bottomContact__wrap li {
        width: 100%;
        height: auto;
        padding: 30px 25px 35px;
    }

    .p-bottomContact__title h3 {
        font-size: 2.8rem;
    }

    .p-bottomContact__wrap li a {
        height: 75px;
        font-size: 2rem;
    }

    .p-bottomContact__wrap li.p-bottomContact__tel a {
        font-size: 3rem;
    }

    .p-bottomContact__wrap li.p-bottomContact__form a {
        font-size: var(--pcFontSize15);
    }

    .p-bottomContact__wrap li {
        border-radius: 12px;
    }
}

@media screen and (max-width: 590px) {

    .p-bottomContact {
        padding: 40px 15px 50px;
        margin-bottom: -60px !important;
    }

    .p-bottomContact h2 {
        font-size: 1.9rem;
    }

    .p-bottomContact h2 span {
        font-size: 1.4rem;
        padding: 8px 18px;
    }

    .p-bottomContact .c-text {
        margin-bottom: 25px;
        font-size: 1.4rem;
    }

    .p-bottomContact__title {
        margin-bottom: 20px;
        flex-direction: column;
    }

    .p-bottomContact__title h3 {
        font-size: 2rem;
        margin: 0 0 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .p-bottomContact__wrap li {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 20px 20px;
    }

    .p-bottomContact__wrap li a {
        height: 48px;
        font-size: 1.6rem;
    }

    .p-bottomContact__wrap li.p-bottomContact__tel a {
        font-size: 2.4rem;
    }

    .p-bottomContact__form a:before {
        width: 35px;
        height: 35px;
        right: 10px;
    }

    .p-bottomContact__time {
        margin: 0;
    }

    .p-bottomContact__tel .p-bottomContact__title h3 span:before {
        width: 22px;
        height: 24px;
        background-size: 100%;
    }

    .p-bottomContact__form .p-bottomContact__title h3 span:before {
        width: 24px;
        height: 19px;
        background-size: 100%;
    }
}

/*----------------------------------------
	topCommon
----------------------------------------*/

.c-topTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 40px;
}

.c-topTitle span {
    display: flex;
    align-items: center;
    font-size: var(--pcFontSize22);
    letter-spacing: 0.08em;
    color: var(--keyColor);
    margin: 0 0 14px;
}

.c-topTitle h2 {
    font-size: var(--pcFontSize44);
    line-height: 1.455;
}


@media screen and (max-width:820px) {
    .c-topTitle span {
        font-size: var(--pcFontSize14);
    }

    .c-topTitle h2 {
        font-size: var(--pcFontSize28);
    }

    .c-topTitle {
        align-items: center;
        margin: 0px 0px 25px;
    }
}

@media screen and (max-width:590px) {
    .c-topTitle span {
        font-size: var(--pcFontSize13);
        margin: 0 0 7px;
    }

    .c-topTitle h2 {
        font-size: var(--pcFontSize22);
    }
}


/*----------------------------------------
	topMv
----------------------------------------*/

.p-topMv {
    position: relative;
    margin: 0 0 120px;
    padding: 142px 0 0;
    background: transparent linear-gradient(114deg, #0086D1 0%, #00B2CD 100%) 0% 0% no-repeat padding-box;
    width: 100%;
}

.p-topMv__slider .slick-slide {
    margin: 0 15px;
}

.p-topMv__slider .slick-slide img {
    width: 100%;
}

.p-topMv__newsWrap {
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    padding: 32px 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-topMv__newsText a {
    display: flex;
    align-items: center;
}

.p-topMv__newsText .p-newsArchive__info {
    flex-direction: row-reverse;
}

.p-topMv__newsText .p-newsArchive__category {
    margin: 0 17px 0 0;
}

.p-topMv__newsText .p-newsArchive__time {
    margin: 0;
    color: #000;
}

.p-topMv__newsTitle {
    font-size: 2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topMv__newsAll {
    color: #0086D1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.8rem;
}

.p-topMv__newsAll span {
    display: flex;
    align-items: center;
}

.p-topMv__newsAll span:before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 17px;
    margin: 0 10px 0 0;
    background-image: url(images/top_news_icon.svg);
}

.c-slider__controll {
    position: relative;
    box-sizing: border-box;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-inline: auto;
    padding-inline: 40px;
}

.c-slider .slick-next {
    right: 0;
}

.c-slider .slick-prev {
    left: 0;
}

.c-slider__arrows .slick-arrow::before {
    color: #fff;
}

.c-slider__arrows .slick-dots li button:before {
    font-size: 9px;
}

.c-slider__dots .slick-dots {
    position: static;
    font-size: 0;
}

.p-topMv__scroll {
    font-size: 1rem;
    text-align: center;
    color: #fff;
    margin: 40px 0 0;
}

.p-topMv__scroll:after {
    content: "";
    display: block;
    width: 1px;
    height: 38px;
    background-color: #fff;
    margin: 10px auto 0;
}

.c-slider__dots .slick-dots li button:before {
    font-size: 10px;
    color: #fff;
}

.c-slider__dots .slick-dots li.slick-active button:before {
    color: #fff;
}

.p-topMv__slider .slick-slide {
    position: relative;
}

.p-topMv__number {
    font-size: 2.7rem;
    background-color: #FEF100;
    padding: 12px 24px 22px 36px;
    border-radius: 100px 0 0 100px;
    color: #0086D1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    position: absolute;
    bottom: 37px;
    right: 0;
}

.p-topMv__number span {
    display: inline-block;
    font-size: 5.3rem;
    margin: 0 0 0 9px;
}

.p-topMv__slider .slick-slide img.sp {
    display: none !important;
}

@media screen and (max-width:820px) {
    .p-topMv__newsWrap {
        border-radius: 15px 15px 0px 0px;
        padding: 28px 25px 0px;
    }

    .p-topMv {
        margin: 0px 0px 75px;
    }

    .p-topMv__newsText a {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-topMv__newsText .p-newsArchive__category {
        margin: 0;
    }

    .p-topMv__newsText .p-newsArchive__info {
        margin: 0 0 8px;
    }

    .p-topMv__newsWrap {
        padding: 18px 15px 0px;
    }

    .p-topMv__slider .slick-slide img.pc {
        display: none !important;
    }

    .p-topMv__slider .slick-slide img.sp {
        display: block !important;
    }

    .p-topMv {
        padding: 80px 0px 0px;
    }

    .p-topMv__slider .slick-slide {
        margin: 0 7px;
    }

    .p-topMv__number {
        font-size: 1.8rem;
        line-height: 1.1;
        padding: 12px 15px 12px 20px;
        text-align: center;
        bottom: 50px;
    }

    .p-topMv__number span {
        font-size: 3rem;
    }

    .c-slider__dots .slick-dots li {
        margin: 0;
    }

    .p-topMv__slider.slick-dotted.slick-slider {
        margin-bottom: 15px;
    }

    .p-topMv__scroll {
        margin: 16px 0 0;
    }

    .p-topMv__scroll:after {
        height: 26px;
    }

    .p-topMv__newsTitle {
        font-size: 1.2rem;
    }

    .p-topMv__newsText .p-newsArchive__category {
        font-size: 1rem;
    }

    .p-topMv__newsText .p-newsArchive__time {
        font-size: 1rem;
    }

    .p-topMv__newsAll {
        font-size: 1.3rem;
    }
}

@media screen and (max-width:590px) {
    .p-topMv {
        margin: 0px 0px 45px;
    }

    .p-topMv__number {
        font-size: 4vw;
    }

    .p-topMv__number span {
        font-size: 8vw;
    }

    .c-slider__dots .slick-dots li button:before {
        font-size: 8px;
    }

    .p-topMv__newsAll span:before {
        width: 15px;
        height: 13px;
        background-size: 100%;
    }
}

/*----------------------------------------
	topAbout
----------------------------------------*/

.p-topAbout {
    margin: 0 0 70px;
}

.p-topAbout__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.p-topAbout__text .c-text {
    line-height: 2.5;
}

.p-topAbout .c-topTitle span:before {
    content: "";
    display: inline-block;
    background-image: url(images/top_about_icon.svg);
    width: 17px;
    height: 25px;
    margin: 0 14px 0 0;
}

@media screen and (max-width: 820px) {

    .p-topAbout {
        margin: 0 0 50px;
    }

    .p-topAbout__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .p-topAbout__text {
        width: 100%;
        position: relative;
    }

    .p-topAbout__text .c-text {
        line-height: 2.2;
        font-size: 1.5rem;
    }

    .p-topAbout .c-topTitle span:before {
        width: 12px;
        height: 17px;
        margin-right: 8px;
        background-size: 100%;
    }

    .p-topAbout__img {
        display: none;
    }

    .p-topAbout__text:before {
        content: "";
        display: block;
        width: 247px;
        height: 360px;
        background-image: url(images/top_about_logo.svg);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-repeat: no-repeat;
        opacity: 0.2;
        background-size: 100%;
    }
}

@media screen and (max-width: 590px) {

    .p-topAbout {
        margin: 0 0 40px;
    }

    .p-topAbout__wrapper {
        gap: 25px;
    }

    .p-topAbout__text {
        width: 100%;
    }

    .p-topAbout__text .c-text {
        line-height: 2;
        font-size: 1.4rem;
    }
}

/*----------------------------------------
	topProperty
----------------------------------------*/

.p-topProperty {
    background: transparent linear-gradient(180deg, #E6F4F4 0%, #DFEFF9 100%) 0% 0% no-repeat padding-box;
    padding: 85px 0 411px;
    border-radius: 64px;
}

.p-topProperty__box {
    position: relative;
}

.p-topProperty__box:not(:last-child) {
    margin: 0 0 40px;
}

.p-topProperty__box:last-child {
    margin: 0 0 90px;
}

.p-topProperty .p-topProperty__box .c-topTitle span:before {
    content: "";
    display: inline-block;
    background-image: url(images/top_search_icon.svg);
    width: 25px;
    height: 25px;
    margin: 0 9px 0 0;
}

.p-topProperty__box:first-child:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    width: 588px;
    height: 409px;
    background-image: url(images/top_about_deco01.svg);
    top: -58px;
    right: -28.5%;
}

.p-topProperty__box:first-child:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    width: 243px;
    height: 199px;
    background-image: url(images/top_about_deco02.svg);
    bottom: -35px;
    left: -24.5%;
}

.p-topProperty__box:last-child:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    width: 184px;
    height: 367px;
    background-image: url(images/top_about_deco03.svg);
    top: 0;
    right: -23.5%;
}

.p-topProperty__box:last-child:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    width: 254px;
    height: 265px;
    background-image: url(images/top_about_deco04.svg);
    bottom: -20px;
    left: -25.5%;
}

/*--------- topProperty__sold ---------*/

.p-topProperty__soldWrap {
    background-color: #0086D1;
    border-radius: 64px;
    padding: 70px 0 78px;
    position: relative;
}

.p-topProperty__soldWrap:before {
    content: "";
    display: block;
    width: 100%;
    height: 64px;
    background-color: #E6F4F4;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.p-topProperty__soldWrap .c-topTitle span:before {
    content: "";
    display: inline-block;
    background-image: url(images/top_sold_icon.svg);
    width: 37px;
    height: 23px;
    margin: 0 9px 0 0;
}


.p-topProperty__soldWrap .c-topTitle span {
    color: #fff;
}

.p-topProperty__soldWrap .c-topTitle h2 {
    color: #fff;
}

.p-topProperty__soldWrap .c-text {
    width: 68%;
    color: #fff;
}

.p-topProperty__titleWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 40px;
}

.p-topProperty__titleWrap .c-topTitle {
    margin: 0;
}

/*--------- topProperty__article ---------*/

.p-topProperty .grid-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.p-topProperty .grid-content li {
    width: 48.5%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
}

.p-topProperty .grid-content li a {
    width: 46%;
}

.p-topProperty .grid-content li .top_fudou_img {
    width: 100%;
}

.p-topProperty .grid-content li .top_fudou_img img {
    width: 100%;
    height: 185px;
    border-radius: 10px;
    object-fit: cover;
    object-position: right top;
}

.p-topProperty .grid-content li .top_fudou_wrap {
    width: 48%;
}

.p-topProperty .grid-content li .top_fudou_wrap br {
    display: none;
}

.p-topProperty .grid-content li:nth-child(n+3) {
    margin: 38px 0 0;
}

.p-topProperty .top_fudou_title {
    font-size: 2.3rem;
    line-height: 1.217;
    margin: 0 0 15px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topProperty .top_price {
    font-size: 3.3rem;
    letter-spacing: 0.02em;
    color: #E83A44;
    margin: 0 0 10px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topProperty .top_madori,
.p-topProperty .top_menseki {
    display: block;
    font-size: 1.6rem;
}


.p-topProperty .top_madori:before {
    content: "間取り：";
    display: inline-block;
}

.p-topProperty .top_menseki:before {
    content: "土地面積：";
    display: inline-block;
}

.p-topProperty .top_kotsu {
    display: flex;
    align-items: center;
    margin: 10px 0 0;
}

.p-topProperty .top_kotsu:before {
    content: "";
    display: inline-block;
    width: 31px;
    height: 31px;
    background-image: url(images/train_icon.svg);
    margin: 0 4px 0 0;
}

@media screen and (max-width: 1300px) {
    .p-topProperty .grid-content li .top_fudou_img img {
        height: 168px;
    }
}

@media screen and (max-width: 820px) {

    .p-topProperty {
        padding: 60px 20px 300px;
        border-radius: 15px;
    }

    .p-topProperty__box:first-child:before,
    .p-topProperty__box:first-child:after,
    .p-topProperty__box:last-child:before,
    .p-topProperty__box:last-child:after {
        width: auto;
        height: auto;
        top: auto;
        bottom: auto;
        right: auto;
        left: auto;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .p-topProperty__titleWrap {
        flex-direction: column;
        gap: 20px;
        margin: 0 0 20px;
    }

    .p-topProperty__soldWrap {
        border-radius: 15px;
        padding: 25px 20px 30px;
    }

    .p-topProperty__soldWrap .c-text {
        width: 100%;
    }

    .p-topProperty .grid-content {
        flex-direction: column;
        gap: 20px;
    }

    .p-topProperty .grid-content li {
        width: 100%;
        padding: 20px;
    }

    .p-topProperty .grid-content li a,
    .p-topProperty .grid-content li .top_fudou_wrap {
        width: 47%;
    }

    .p-topProperty .top_fudou_title {
        font-size: 2rem;
    }

    .p-topProperty .top_price {
        font-size: 2.5rem;
    }

    .p-topProperty .top_madori,
    .p-topProperty .top_menseki {
        font-size: 1.4rem;
    }

    .p-topProperty .grid-content li .top_fudou_img {
        margin: 0 0 20px;
    }

    .p-topProperty__box:last-child {
        margin: 0px 0px 40px;
    }

    .p-topProperty .p-topProperty__box .c-topTitle span:before {
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    .p-topProperty__soldWrap .c-topTitle span:before {
        width: 32px;
        height: 20px;
        background-size: 100%;
    }
}

@media screen and (max-width: 590px) {

    .p-topProperty {
        padding: 40px 10px 200px;
    }

    .p-topProperty__box:first-child:before,
    .p-topProperty__box:first-child:after,
    .p-topProperty__box:last-child:before,
    .p-topProperty__box:last-child:after {
        display: none;
    }

    .p-topProperty .top_fudou_title {
        font-size: 1.5rem;
    }

    .p-topProperty .top_price {
        font-size: 2rem;
    }

    .p-topProperty .top_madori,
    .p-topProperty .top_menseki {
        font-size: 1.2rem;
    }

    .p-topProperty .top_kotsu {
        font-size: 1.2rem;
    }

    .p-topProperty .grid-content li:nth-child(n+3) {
        margin: 0;
    }

    .p-topProperty .grid-content li {
        padding: 15px;
    }

    .p-topProperty .grid-content li a {
        width: 43%;
    }

    .p-topProperty .grid-content li .top_fudou_wrap {
        width: 52%;
    }

    .p-topProperty .grid-content li .top_fudou_img {
        margin: 0px;
    }

    .p-topProperty .grid-content li .top_fudou_img img {
        height: 105px;
    }
}

/*--------- topProperty__category ---------*/

.p-topCategory {
    max-width: 1450px;
    width: calc(100% - 100px);
    margin: -317px auto 209px;
    background-color: #fff;
    border-radius: 40px;
    padding: 92px 75px 0;
}

.p-topCategory__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-topCategory__box h2 {
    font-size: 3rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topCategory__box01 h2 {
    color: #01B2CD;
}

.p-topCategory__box:last-child h2 {
    color: #0086D1;
}

.p-topCategory__box h2 span:before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
}

.p-topCategory__box01 {
    margin: 0 0 35px;
}

.p-topCategory__box01 h2 span:before {
    background-image: url(images/top_shubetsu_icon.svg);
}

.p-topCategory__box02 h2 span:before {
    background-image: url(images/top_eki_icon.svg);
}

.p-topCategory__box01 ul {
    width: 75%;
    display: flex;
    justify-content: space-between;
}

.p-topCategory__box01 ul li {
    width: 180px;
    height: 140px;
    border-radius: 5px;
    background-color: #E6F4F4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.p-topCategory__box01 ul li:not(:nth-child(5n+5)) {
    margin-right: 2%;
}

.p-topCategory__box01 ul li a {
    font-size: 2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-topCategory__box01 ul li a span {
    text-align: center;
}

.p-topCategory__box01 ul li a span:before {
    content: "";
    display: block;
    margin: 0 auto 14px;
}

.p-topCategory__box01 ul li:nth-of-type(1) a span:before {
    background-image: url(images/shubetsu_mansion1_icon.svg);
    width: 42px;
    height: 47px;
}

.p-topCategory__box01 ul li:nth-of-type(2) a span:before {
    background-image: url(images/shubetsu_kodate1_icon.svg);
    width: 48px;
    height: 47px;
}

.p-topCategory__box01 ul li:nth-of-type(3) a span:before {
    background-image: url(images/shubetsu_kodate2_icon.svg);
    width: 61px;
    height: 51px;
}

.p-topCategory__box01 ul li:nth-of-type(4) a span:before {
    background-image: url(images/shubetsu_land_icon.svg);
    width: 53px;
    height: 46px;
}

.p-topCategory__box01 ul li:nth-of-type(5) a span:before {
    background-image: url(images/shubetsu_investment_icon.svg);
    background-repeat: no-repeat;
    width: 68px;
    height: 56px;
}

.p-topCategory__box02 .widgettitle {
    display: none;
}

.p-topCategory__box02 .widget_fudo_b_r {
    width: 75%;
    list-style-type: none;
}

.p-topCategory__box02 .widget_fudo_b_r > ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.p-topCategory__box02 .widget_fudo_b_r > ul > li.cat-item {
    width: 48%;
    font-size: 2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: #DFEFF9;
    border-radius: 5px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.p-topCategory__box02 .widget_fudo_b_r > ul > li.cat-item > a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    padding: 26px 0 28px;
    position: relative;
}

.p-topCategory__box02 .widget_fudo_b_r > ul > li.cat-item > a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 7.5px 0 7.5px;
    border-color: #0086D1 transparent transparent transparent;
}

.p-topCategory__box02 .widget_fudo_b_r ul.children li {
    width: 90%;
    margin: 0 auto 15px;
}

.p-topCategory__box02 .widget_fudo_b_r ul.children li a {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: #fff;
    border-radius: 5px;
}

@media screen and (max-width: 820px) {

    .p-topCategory {
        width: calc(100% - 40px);
        margin: -200px auto 120px;
        padding: 30px 10px 0px;
        border-radius: 15px;
    }

    .p-topCategory__wrap {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .p-topCategory__box {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 0px 0px 20px;
    }

    .p-topCategory__box h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .p-topCategory__box01 ul {
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .p-topCategory__box01 ul li {
        width: 28%;
        height: auto;
        margin-bottom: 20px;
    }

    .p-topCategory__box01 ul li a {
        font-size: 1.8rem;
        flex-direction: row;
        justify-content: flex-start;
    }

    .p-topCategory__box01 ul li a span:before {
        margin-bottom: 10px;
    }

    .p-topCategory__box02 .widget_fudo_b_r > ul > li.cat-item {
        width: 48%;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .p-topCategory__box02 .widget_fudo_b_r ul.children li {
        width: 95%;
    }

    .p-topCategory__box h2 span:before {
        width: 50px;
        height: 50px;
        background-size: 100%;
    }

    .p-topCategory__box01 ul li {
        width: 100%;
        height: 55px;
        margin-bottom: 15px;
        align-items: flex-start;
        padding: 0 15px;
    }

    .p-topCategory__box01 ul li:nth-of-type(1) a span:before {
        width: 30px;
        height: 33px;
        background-size: 100%;
    }

    .p-topCategory__box01 ul li:nth-of-type(2) a span:before {
        width: 34px;
        height: 33px;
        background-size: 100%;
    }

    .p-topCategory__box01 ul li:nth-of-type(3) a span:before {
        width: 43px;
        height: 36px;
        background-size: 100%;
    }

    .p-topCategory__box01 ul li:nth-of-type(4) a span:before {
        width: 37px;
        height: 32px;
        background-size: 100%;
    }

    .p-topCategory__box01 ul li:nth-of-type(5) a span:before {
        width: 40px;
        height: 33px;
        background-size: 100%;
    }

    .p-topCategory__box01 ul li a span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .p-topCategory__box01 ul li a span:before {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .p-topCategory__box02 .widget_fudo_b_r {
        width: 100%;
    }

    .p-topCategory__box02 .widget_fudo_b_r > ul > li.cat-item > a {
        padding: 20px 0;
    }
}

@media screen and (max-width: 590px) {

    .p-topCategory {
        margin: -140px auto 80px;
    }

    .p-topCategory__wrap {
        gap: 30px;
    }

    .p-topCategory__box h2 {
        font-size: 2rem;
    }

    .p-topCategory__box01 ul li a {
        font-size: 1.6rem;
    }

    .p-topCategory__box02 .widget_fudo_b_r > ul > li.cat-item {
        width: 100%;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .p-topCategory__box02 .widget_fudo_b_r ul.children li {
        width: 100%;
    }
}

/*----------------------------------------
	topService
----------------------------------------*/

.p-topService {
    position: relative;
    background-color: #E6F4F4;
    margin: 0 100px 90px 0;
    padding: 0 0 78px;
    border-radius: 0px 60px 60px 0px;
}

.p-topService__bg {
    width: 87.7%;
    height: 500px;
    background-image: url(images/top_service_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: auto;
    background-position: center;
    position: relative;
    top: -89px;
    border-radius: 0 20px 20px 0;
}

.p-topService__wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -24px 0 0;
}

.p-topService__wrap {
    display: flex;
    justify-content: space-between;
}

.p-topService__text .c-topTitle {
    margin-bottom: 20px;
}

.p-topService__text .c-text {
    line-height: 1.8;
    color: #333;
}

.p-topService__text .c-button {
    margin-left: 0;
    margin-right: 0;
}

.p-topService .c-topTitle span:before {
    content: "";
    display: inline-block;
    background-image: url(images/top_service_icon.svg);
    width: 25px;
    height: 25px;
    margin: 0 9px 0 0;
}

@media screen and (max-width: 1400px) {
    .p-topService__bg {
        height: 400px;
    }

    .p-topService__img {
        width: 34%;
    }

    .p-topService__img img {
        width: 100%;
    }

    .p-topService__text {
        width: 64%;
    }
}

@media screen and (max-width: 820px) {

    .p-topService {
        margin: 0 0 70px 0;
        padding-bottom: 40px;
        border-radius: 0 40px 40px 0;
    }

    .p-topService__bg {
        width: 100%;
        height: 240px;
        top: -60px;
        border-radius: 0 20px 20px 0;
        background-position: center;
    }

    .p-topService__wrap {
        flex-direction: column-reverse;
        align-items: center;
        margin-top: -10px;
        gap: 30px;
    }

    .p-topService__img {
        width: 47%;
    }

    .p-topService__img img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .p-topService__text {
        width: 100%;
        text-align: center;
    }

    .p-topService__text .c-topTitle {
        margin-bottom: 15px;
    }

    .p-topService__text .c-text {
        line-height: 1.8;
        font-size: 1.5rem;
    }

    .p-topService .c-topTitle span:before {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        background-size: contain;
    }

    .p-topService__text .c-button {
        margin: 20px auto 0;
    }
}

@media screen and (max-width: 590px) {
    .p-topService {
        margin: 0 0 35px 0;
        border-radius: 0 15px 15px 0;
    }

    .p-topService__bg {
        width: 100%;
        height: 160px;
        top: -40px;
    }

    .p-topService__wrap {
        gap: 25px;
    }

    .p-topService__img {
        width: 62%;
    }

    .p-topService__img img {
        max-width: 100%;
    }

    .p-topService__text .c-text {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .p-topService .c-topTitle span:before {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
}

/*----------------------------------------
	topLine
----------------------------------------*/

.p-topLine {
    margin: 0 0 98px;
}

@media screen and (max-width: 590px) {
    .p-topLine {
        margin: 0 0 40px;
    }
}

/*----------------------------------------
	contact
----------------------------------------*/

.p-contact {
    margin: 0 0 -90px;
}

.p-contact__lists {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 1170px;
    margin: auto;
}

.p-contact__list {
    width: 218px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    background-color: #006FB9;
    border-radius: 29px;
    color: #fff;
}

.p-contact__list:not(:nth-child(5n+5)) {
    margin-right: 1.6%;
}

.p-contact__list:nth-child(n+6) {
    margin-top: 20px;
}

.p-contact__listsWrap {
    display: inline-block;
    width: 100%;
    margin: 0 auto 82px;
}

.p-contact__form {
    width: 66.6%;
}

.p-contact__wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.table_contact_wrap {
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    padding: 80px 90px 75px;
}

.table_contact {
    display: block;
    width: 100%;
    margin: auto;
}

.table_contact th {
    color: #333333;
    width: 33.2%;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.table_contact th .small {
    font-size: 1.2rem;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    display: flex;
    margin-right: auto;
    padding: 25px 0;
    width: 75.5%;
    vertical-align: middle;
}

.table_contact td input.text {
    width: 400px;
    border: none;
    height: 60px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid #919191;
}

.table_contact td input.text.text2 {
    width: 282px;
    margin: 0 10px;
}

.table_contact td input.text.text3 {
    width: 185px;
    margin: 0 10px 0 0;
}

.table_contact td.menseki {
    align-items: center;
}

.table_contact td.menseki div:first-child {
    margin: 0 68px 0 0;
}

.table_contact td.age {
    align-items: center;
}

.table_contact td.age .select {
    margin: 0 20px 0 0;
}

.table_contact td.age .year {
    margin: 0 20px 0 0;
}

.table_contact td.madori select:first-child {
    margin: 0 20px 0 0;
}

.table_contact td input.text.title {
    width: 600px;
}

.table_contact td input.text.zip {
    width: 54%;
}

.table_contact td input[name="address"] {
    width: 100%;
    margin: 0 0 12px;
}

.table_contact td input[name="mansion"] {
    width: 100%;
}

.table_contact td textarea {
    width: 100%;
    border: none;
    height: 180px;
    padding: 20px 0 0 20px;
    border: 1px solid rgba(112, 112, 112, 0.3);
    background-color: #fff;
    font-size: 1.6rem;
    border-radius: 3px;
}

.table_contact td textarea.text_area_remarks {
    height: 237px;
}

.table_contact tr {
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
}

.table_contact tr:first-child {
    border-top: 1px solid #DDDDDD;
}

.required {
    display: inline-block;
    color: #ED1C24;
    font-weight: normal;
    letter-spacing: 0.06em;
    font-size: 1.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.hope {
    display: block;
    font-size: 1.3rem;
    margin: 5px 0 0;
}

.contact_button {
    width: 360px;
    height: 60px;
    margin: 40px auto 0;
    position: relative;
}

.contact_button input {
    background: none;
    border: none !important;
    background-color: #006FB9 !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 33px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.table_radio_wrap {
    display: flex;
}

.mwform-radio-field:last-child {
    margin: 0;
}

.agree_check {
    margin-bottom: 60px;
    color: #2B3A3F;
}

.agree_check a {
    color: #5BA560;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .option,
.mw_wp_form_confirm .agree_check {
    display: none;
}

.mw_wp_form mw_wp_form_complete .c-text {
    color: #000;
}

.selectbox {
    height: 40px;
    background-color: #EDEDED;
    border: 1px solid #DDDDDD;
    padding: 0 20px;
}

input {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
}

input::placeholder {
    color: #A0A0A0;
}

input[type="text"] {
    border: none;
}

input[type="text"]:focus {
    border: 1px solid #004DA0;
    outline: 0;
}

input::placeholder {
    color: #CECDCD;
}

.table_radio_wrap {
    display: flex;
    flex-direction: column;
}

.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

.p-contact__tel {
    background-color: #404040;
    width: 403px;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E6ECF8;
    position: relative;
}

.p-contact__tel:before {
    content: "";
    background-image: url(images/contact_tel_triangle.svg);
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    width: 68px;
    height: 100%;
    right: -68px;
}

.p-contact__tel h2 {
    font-size: 2.4rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.486;
    color: #000000;
    margin: 0 0 30px;
}

.p-contact__telTitle {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 97px 0 0;
}

.p-contact__telTitle p {
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-weight: 800;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: #2AAAA4;
}

.p-contact__telNumber {
    font-size: 4rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-contact__telNumber span {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.p-contact__telNumber a {
    font-size: 4rem;
    letter-spacing: 0.06em;
    color: #006FB9;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    margin: 0 0 18px;
}

.p-contact__telNumber a:before {
    content: "";
    display: inline-block;
    background-image: url(images/contact_tel_icon.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin-right: 9px;
}

.table_contact_privacy {
    color: #006FB9;
    display: block;
    text-align: center;
    margin: 45px auto 55px;
    padding: 0 0 8px;
    font-weight: bold;
}

.table_contact_privacy span {
    border-bottom: 1px solid #006FB9;
    padding: 0 0 8px;
}

.table_contact td select {
    width: 230px;
    border: none;
    height: 60px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid #919191;
    border-radius: 3px;
    font-weight: bold;
}

.table_contact td select.select1 {
    width: 400px;
}

.table_contact td select.select2 {
    width: 286px;
}

.table_contact td select.select_category {
    width: 400px;
}

.table_contact td select.select_time {
    width: 250px;
}

.table_contact td .schedule {
    width: 450px;
    border: none;
    height: 60px;
    margin: 0 28px 0 0;
    padding: 0 10px;
    background-color: #fff;
    font-size: 1.8rem;
    border: 1px solid #919191;
}

.table_check_wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.mwform-checkbox-field-text {
    color: #333;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
    width: 20px;
    height: 20px;
}

.c-form-submit {
    width: 420px;
    height: 70px;
    margin: 57px auto 0;
    position: relative;
}

.c-form-submit button {
    background: none;
    border: none !important;
    border-radius: 3px;
    background-color: #0086D1 !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.p-contactForm__privacy {
    background-color: #F5F5F5;
    margin: 30px 0 30px;
    padding: 35px 30px;
}

.p-contactForm__privacy .c-text {
    font-size: 1.6rem;
    color: #333;
    text-align: left;
}

.p-contactForm__privacy span {
    color: #ED1C24;
}

.p-contactForm__privacy a {
    display: inline-block;
    color: #ED1C24;
    border-bottom: 1px solid #ED1C24;
}

.p-contactForm__privacy h3 {
    font-size: 2rem;
    margin: 0 0 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
    text-align: left;
}

.p-contactTel {
    background-color: #F5F5F5;
    border-radius: 200px;
    margin: 0 0 80px;
    padding: 59px 0 75px;
}

.p-contactTel__title {
    font-size: 4rem;
    letter-spacing: 0.03em;
    color: #0086D1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
}

.p-contactTel__title h3 span:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 33px;
    background-image: url(images/bottom_contact_tel_icon.svg);
    margin: 0 10px 0 0;
}

.p-contactTel__time {
    font-size: 1.2rem;
    margin: 0 0 0 18px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.p-contactTel__time span {
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 4px 9px;
    background-color: #DFEFF9;
    font-size: 1.2rem;
}

.p-contactTel a {
    font-size: 4.8rem;
    background-color: var(--keyColor);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 520px;
    height: 93px;
    border-radius: 200px;
    color: #fff;
    position: relative;
    margin: 0 auto;
}

.p-contactForm {
    background: transparent linear-gradient(332deg, #FFFF88 0%, #01B2CD 69%, #01B2CD 100%) 0% 0% no-repeat padding-box;
    padding: 90px 0 130px;
    border-radius: 60px;
    position: relative;
}

.table_contact td.address {
    flex-direction: column;
}

.table_contact .address_wrap {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.address_wrap > div {
    display: flex;
    align-items: center;
}

.address_wrap > div:first-child {
    margin-right: 10px;
}

.address_wrap > div p {
    margin: 0 12px 0 0;
}

.table_contact input.text[name="mansion"] {
    font-size: 1.4rem;
}

.table_contact .address_wrap .city {
    width: 260px;
    border: none;
    height: 60px;
    padding: 0 0 0 10px;
    border: 1px solid #919191;
    font-size: 1.6rem;
    border-radius: 3px;
}

.table_contact .address_wrap select {
    height: 60px;
}

.table_contact .address_wrap select[name="pref"] {
    width: 180px;
}

.table_contact .address_wrap select[name="city"] {
    width: 260px;
}

.table_contact td #zip {
    width: 200px;
    height: 60px;
}

.table_contact .address_zip,
.table_contact .address_zip p {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.zip-button,
#js-zip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 143px;
    height: 47px;
    border-radius: 100px;
    background-color: #3E3A39;
    margin: 0 0 0 14px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
}

.table_contact td #zip {
    width: 200px;
    border: none;
    height: 60px;
    padding: 0 0 0 16px;
    border: 1px solid #919191;
    font-size: 1.6rem;
    border-radius: 3px;
}

.privacy-check .mwform-checkbox-field-text {
    display: none;
}

.privacy-check {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.p-contactForm__intro h2 {
    text-align: center;
    font-size: 4.8rem;
    line-height: 1.4;
    margin: 0 0 35px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-contactForm__intro h2 span {
    font-size: 3rem;
    display: inline-block;
    border-radius: 100px;
    margin: 0 auto 18px;
    padding: 10px 27px;
    background: #fff;
    color: #01B2CD;
    letter-spacing: 0.03em;
}

.p-contactForm__intro {
    margin: 0 0 68px;
}

.p-contactForm__intro .c-text {
    color: #fff;
    text-align: center;
}

.table_contact td .attention {
    color: #EC1C25;
}

.table_contact td.price {
    display: flex;
    align-items: center;
}

.table_contact td.price span {
    display: inline-block;
    margin: 0 0 0 10px;
}

.mw_wp_form_confirm .table_contact td {
    color: #333;
}

.mw_wp_form_confirm .table_contact td tr {
    align-items: center;
}

.mw_wp_form_confirm .p-contactForm__privacy {
    display: none;
}

.mw_wp_form_confirm .privacy-check label {
    display: none;
}

.mw_wp_form_confirm .address_button {
    display: none;
}

.mw_wp_form_confirm .address_wrap > div p {
    display: none;
}

@media screen and (max-width: 1300px) {
    .p-contact__tel {
        width: 30%;
        height: 210px;
    }
}

@media screen and (max-width: 1000px) {

    .table_contact_wrap {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .page_contact_subtitle {
        width: 100%;
    }

    .table_contact td input.text {
        width: 80%;
    }

    .table_contact th {
        width: 37%;
    }

    .table_contact td {
        width: 63%;
    }

    .table_radio_wrap {
        flex-direction: column;
        line-height: 2;
    }

    .c-table__date_wrap {
        display: flex;
        flex-direction: column;
    }

    .table_contact td span {
        margin: 0 0 5px 0;
    }

    .p-contact__wrap {
        flex-direction: column;
        justify-content: center;
    }

    .p-contact__form {
        width: 100%;
    }

    .p-contact__tel {
        width: 80%;
        margin: 0 0 50px;
    }

    .table_contact_privacy {
        font-size: 1.2rem;
        margin: 25px auto 35px;
    }
}

@media screen and (max-width: 820px) {
    .p-contact {
        margin: 0 0 -65px;
    }

    .p-contactForm {
        border-radius: 20px;
        padding: 40px 0 50px;
    }

    .table_contact tr:nth-of-type(1) td {
        display: flex;
        flex-direction: column;
        line-height: 2;
    }

    .mw_wp_form .bg01 {
        margin: 0 0 40px;
    }

    .table_contact tr {
        flex-direction: column;
        padding: 20px 0;
    }

    .table_contact th {
        width: 100%;
        font-size: 1.6rem;
        justify-content: flex-start;
        margin: 0 0 15px;
        padding: 0;
    }

    .table_contact td {
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }

    .mw_wp_form .bg01 {
        padding: 40px 0;
    }

    .table_contact td input.text {
        width: 100%;
        height: 45px;
        font-size: 1.5rem;
    }

    .table_contact td input.text.addr {
        width: 85%;
    }

    .selectbox {
        height: 45px;
    }

    .contact_time_wrap {
        margin: 0 0 30px;
    }

    .agree_check {
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .contact_time_wrap {
        font-size: 1.4rem;
    }

    .contact_button {
        width: 230px;
        height: 45px;
        margin: 30px auto 0;
    }

    .contact_button::before {
        left: 50px;
    }

    .mw_wp_form_confirm {
        margin: 0 0 80px;
    }

    .table_radio_wrap span:not(:last-child) {
        font-size: 1.4rem;
        margin: 0 0 8px;
    }

    .p-contact__list {
        width: 47%;
        font-size: 1.6rem;
    }

    .p-contact__flowTitle {
        font-size: 1.8rem;
        margin: 0 0 30px;
    }

    .p-contact__flowNumber {
        font-size: 2.8rem;
    }

    .p-contact__flowNumber span {
        font-size: 1.8rem;
    }

    .p-contact__flowList h3 {
        font-size: 2rem;
    }

    .p-contact__introArrow {
        margin: 0 auto 35px;
    }

    .p-contact__listsWrap {
        margin: 0 auto 60px;
    }

    .p-contact__flowList h3 {
        margin: 0 0 15px;
    }

    .p-contact__flowImg {
        height: 150px;
    }

    .p-contact__tel {
        width: 100%;
        height: auto;
        border-radius: 5px;
        padding: 30px 10px;
    }

    .p-contact__telNumber a {
        font-size: 3rem;
    }

    .p-contact__telNumber a:before {
        background-size: 100%;
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .p-contact__tel h2 {
        font-size: 1.8rem;
    }

    .p-contact__telNumber span {
        font-size: 1.2rem;
    }

    .p-contact__tel:before {
        display: none;
    }

    .p-contact__tel h2 {
        margin: 0 0 20px;
    }

    .contact_button input {
        font-size: 1.4rem;
    }

    .table_contact td select {
        width: 200px;
    }

    .c-form-submit {
        margin: 35px auto 0;
        width: 100%;
        height: 60px;
    }

    .p-fudoSingle_contact {
        padding: 0 0 50px;
    }

    .c-form-submit button {
        font-size: 1.5rem;
    }

    .p-contactForm__privacy h3 {
        font-size: 1.5rem;
        margin: 0px 0px 10px;
    }

    .p-contactTel {
        margin-bottom: 50px;
        padding: 40px 0 55px;
        border-radius: 120px;
    }

    .p-contactTel__title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .p-contactTel__title h3 span:before {
        width: 24px;
        height: 26px;
        margin-right: 8px;
        background-size: contain;
    }

    .p-contactTel a {
        width: 80%;
        height: 75px;
        font-size: 3.2rem;
    }

    .table_contact .address_wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .table_contact td {
        flex-direction: column;
    }

    .table_contact td .schedule {
        height: 45px;
    }

    .table_contact td select {
        height: 45px;
    }

    .table_contact td #zip {
        width: 168px;
        height: 45px;
    }

    .table_contact .address_wrap select {
        height: 45px;
    }

    .privacy-check {
        justify-content: flex-end;
        flex-direction: row-reverse;
    }

    .p-contactForm__privacy .c-text {
        font-size: 1.3rem;
    }

    .table_contact td input.text {
        width: 100%;
    }

    .table_contact .address_wrap .city {
        height: 45px;
    }

    .address_wrap > div:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .address_wrap > div:first-child {
        width: auto;
    }

    .p-contactForm__intro {
        margin: 0 0 30px;
    }

    .p-contactForm__intro h2 {
        font-size: 3rem;
        margin: 0 0 20px;
    }

    .p-contactForm__intro h2 span {
        font-size: 2rem;
        margin: 0 auto 12px;
        padding: 7px 12px;
    }

    .table_contact td .schedule {
        width: 100%;
        margin: 0 0 10px;
    }

    .required {
        font-size: 1.6rem;
    }

    .table_contact td.menseki {
        align-items: flex-start;
    }

    .table_contact td input.text.text2 {
        width: 200px;
    }

    .table_contact td.menseki div:first-child {
        margin: 0 0 10px;
    }

    .table_contact td.age {
        align-items: flex-start;
    }

    .table_contact td.age .year {
        margin: 0px 0px 10px 0px;
    }

    .table_contact td.price {
        flex-direction: row;
    }

    .table_contact td.price input.text {
        width: 200px;
    }

    .table_contact td.age .select {
        margin: 0 0 10px;
    }

    .table_contact td.madori select:first-child {
        margin: 0 0 10px;
    }

}

@media screen and (max-width: 590px) {
    .table_contact_wrap {
        padding: 50px 20px 80px;
    }

    .p-contact__list {
        width: 47%;
        height: 40px;
    }

    .p-contact__list:not(:nth-child(2n+2)) {
        margin-right: 1.6%;
    }

    .p-contact__list:nth-of-type(2n) {
        margin-right: 0;
    }

    .p-contact__list:nth-child(n+3) {
        margin-top: 15px;
    }

    .p-contact__introArrow {
        width: 80px;
    }

    .p-contact__introArrow img {
        width: 100%;
    }

    .p-contact__flowLists {
        margin: 0 0 60px;
    }

    .p-contact__flowList {
        width: 90%;
        padding: 40px 30px;
    }

    .p-contact__flowImg {
        margin: 0 0 -25px;
    }

    .table_contact td input.text.addr {
        width: 100%;
    }

    .table_contact td input.text.zip {
        width: 75%;
    }

    .p-recruit__entry {
        padding: 70px 3.7% 80px;
    }

    .table_contact td input.text.title {
        width: 100%;
    }

    .single-fudo .required {
        font-size: 1.1rem;
    }

    .table_contact th {
        margin: 0 0 5px;
    }

    .p-contactForm__privacy .c-text {
        font-size: 1.2rem;
    }

    .p-contactForm__privacy {
        margin: 20px 0;
        padding: 20px;
    }

    .p-contactTel {
        padding: 30px 15px 40px;
        border-radius: 20px;
        margin-bottom: 40px;
    }

    .p-contactTel__title {
        font-size: 2.4rem;
        flex-direction: column;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .p-contactTel__title h3 span:before {
        width: 22px;
        height: 24px;
        margin-right: 6px;
    }

    .p-contactTel__time {
        font-size: 1.1rem;
        margin: 10px 0 0 0;
    }

    .p-contactTel__time span {
        padding: 3px 7px;
        font-size: 1.1rem;
    }

    .p-contactTel a {
        width: 100%;
        height: 50px;
        font-size: 2.6rem;
        border-radius: 100px;
    }

    .p-contactForm__intro h2 {
        font-size: 2rem;
    }

    .p-contactForm__intro h2 span {
        font-size: 1.5rem;
    }
}

/*----------------------------------------
	page_common
----------------------------------------*/

.p-catch {
    width: 100%;
    height: 400px;
    position: relative;
    margin: 0 0 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position: right;
    border-radius: 0 0 64px 64px;
    background: transparent linear-gradient(96deg, #0086D1 0%, #00B2CD 100%) 0% 0% no-repeat padding-box;
}

.p-catch__textWrap {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    position: absolute;
    top: 47.3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
}

.p-catch__jp {
    font-size: 6rem;

    letter-spacing: 0.04em;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.p-catch__en {
    display: block;
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-style: normal;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.p-catch.p-catchSmall {
    height: 279px;
}

.p-catch.p-catchSmall .p-catch__jp {
    font-size: 4rem;
}

.p-catch.p-catchSmall .p-catch__en {
    font-size: 2.2rem;
    margin: 0 0 20px;
}

.c-page__intro {
    margin: 0 0 130px;
}

.c-pageTitle {
    margin: 0 0 50px;
}

.c-pageTitle h2 {
    font-size: 4.4rem;
    letter-spacing: 0.03em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.c-pageTitle h2 span {
    display: inline-block;
    font-size: 2.5rem;
    margin: 0 0 0 15px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.c-pageTitle > span {
    display: block;
    font-size: 2.2rem;
    letter-spacing: 0.06em;
    color: #0086D1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 24px;
}

.c-line {
    margin: 0 0 120px;
}

.c-lineBanner {
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 0 0 0 37px;
}

.c-lineBanner__text {
    display: flex;
    height: 100%;
    padding: 23px 0 0;
}

.c-lineBanner__text:before {
    content: "";
    display: inline-block;
    width: 192px;
    height: 294px;
    background-image: url(images/sns_illust.svg);
    background-repeat: no-repeat;
}

.c-lineBanner__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 93px 0 62px;
    padding: 0 93px 0 0;
    position: relative;
}

.c-lineBanner__title:before {
    content: "";
    width: 1px;
    height: 217px;
    background-color: rgba(112, 112, 112, 0.58);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.c-lineBanner__en {
    font-size: 6.3rem;
    margin: 0 0 37px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #0086D1;
}

.c-lineBanner h2 {
    font-size: 2.6rem;
    letter-spacing: 0.03em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.615;
    text-align: center;
}

.c-lineBanner__icon {
    display: flex;
    align-items: center;
}

.c-lineBanner__icon a {
    display: block;
}

.c-lineBanner__icon a:first-child {
    margin: 0 39px 0 0;
}

@media screen and (max-width: 1300px) {
    .c-lineBanner__icon img {
        width: 70px;
        height: auto;
    }

    .c-lineBanner__title {
        margin: 0 60px 0 50px;
        padding: 0 60px 0 0;
    }

    .c-lineBanner__text:before {
        width: 150px;
        height: 285px;
        background-size: 100%;
    }

    .c-lineBanner__en {
        font-size: 5rem;
    }

    .c-lineBanner h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 1200px) {
    .p-catch {
        height: 300px;
    }

    .p-catch__jp {
        font-size: 4rem;
    }

    .p-catch__en {
        font-size: 2.5rem;
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 820px) {
    .p-catch {
        height: 170px;
    }

    .p-catch.p-catchSmall {
        height: 170px;
    }

    .p-catch__jp {
        font-size: 3rem;
    }

    .p-catch__en {
        font-size: 1.8rem;
        margin: 0 0 12px;
    }

    .p-catch.p-catchSmall .p-catch__jp {
        font-size: 3rem;
    }

    .p-catch.p-catchSmall .p-catch__en {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-catch__textWrap {
        top: 42%;
    }

    .c-pageTitle > span {
        font-size: 1.8rem;
        margin: 0 0 10px;
    }

    .c-pageTitle h2 {
        font-size: 3rem;
    }

    .c-pageTitle {
        margin: 0 0 25px;
    }

    .c-pageTitle h2 span {
        font-size: 1.4rem;
    }

    .c-line {
        margin: 0 0 50px;
    }

    .c-lineBanner {
        padding: 20px;
    }

    .c-lineBanner__text {
        padding: 0;
    }

    .c-lineBanner__text:before {
        width: 150px;
        height: 230px;
    }

    .c-lineBanner__title {
        margin: 0 40px 0 30px;
        padding-right: 40px;
    }

    .c-lineBanner__en {
        font-size: 3.8rem;
        margin-bottom: 20px;
    }

    .c-lineBanner h2 {
        font-size: 1.4rem;
    }

    .c-lineBanner__icon img {
        width: 50px;
        height: auto;
    }
}

@media screen and (max-width: 590px) {
    .p-catch {
        height: 140px;
        margin: 0 0 30px;
        border-radius: 0px 0px 30px 30px;
    }

    .p-catch.p-catchSmall {
        height: 140px;
    }

    .p-catch__jp {
        font-size: 2.5rem;
    }

    .p-catch__en {
        font-size: 1.4rem;
        margin: 0 0 10px;
    }

    .p-catch.p-catchSmall .p-catch__jp {
        font-size: 2.2rem;
    }

    .p-catch.p-catchSmall .p-catch__en {
        font-size: 1.4rem;
        margin: 0 0 10px;
    }

    .p-catch__textWrap {
        top: 40%;
    }

    .c-pageTitle > span {
        font-size: 1.8rem;
        margin: 0 0 10px;
    }

    .c-pageTitle h2 {
        font-size: 1.8rem;
    }

    .c-pageTitle > span {
        font-size: 1.3rem;
    }

    .c-pageTitle h2 span {
        font-size: 1.2rem;
        display: block;
        margin: 5px 0px 0px 0px;
    }

    .c-lineBanner {
        flex-direction: column;
        padding: 20px 15px;
        text-align: center;
    }

    .c-lineBanner__text {
        flex-direction: column;
        align-items: center;
    }

    .c-lineBanner__text:before {
        width: 74px;
        height: 115px;
        margin-bottom: 15px;
    }

    .c-lineBanner__title {
        margin: 0;
        padding: 0;
    }

    .c-lineBanner__title:before {
        display: none;
    }

    .c-lineBanner__en {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .c-lineBanner h2 {
        font-size: 1.4rem;
    }

    .c-lineBanner__icon {
        margin-top: 20px;
    }

    .c-lineBanner__icon a:first-child {
        margin-right: 20px;
    }

    .c-lineBanner__icon img {
        width: 48px;
        height: auto;
    }
}


/*----------------------------------------
	fudo-common
----------------------------------------*/

.new_mark {
    display: inline-block;
    font-size: 12px;
    color: #FF4B4B;
    border-radius: 3px;
    margin: 0 0 0 5px;
    background: unset;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth"100;
    padding: 3px 4px;
}

/*----------------------------------------
	fudo-single
----------------------------------------*/

.single-fudo .entry-title {
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000000;
    text-align: left;
    display: flex;
    align-items: center;
}

.p-fudoSingle__titleWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.42);
}

.single-fudo .new_mark {
    margin: 0 0 0 10px;
}

.single-fudo .breadcrumbs {
    margin: 0 0 40px;
}

.single-fudo .list_simple_box {
    background-color: transparent;
}

.single-fudo .entry-title-category {
    background-color: #0086D1;
    display: inline-block;
    text-align: center;
    margin: 0 10px 0 0;
    padding: 4px 14px;
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
}

.single-fudo .list_price_others table {
    width: 100%;
    margin: 10px 0 40px;
    box-sizing: border-box;
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
}

.single-fudo .list_price_others table th,
.single-fudo .list_price_others table td,
.single-fudo .list_price_others table th,
.single-fudo .list_price_others table td {
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    box-sizing: border-box;
    padding: 5px 8px;
}

.single-fudo .list_price_others table th {
    background: #F4F7FD;
}

.single-fudo .list_price_others .list_price_others_th {
    width: 25%;
}

.single-fudo .list_price_others .list_price_others_td {
    min-width: 25%;
}


.single-fudo .list_price_others tr:last-child td {
    border-collapse: collapse;
    width: 100%;
}

.single-fudo .list_price_others tr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.single-fudo .list_price_others .th3,
.single-fudo .list_price_others .td3 {
    width: 100%;
}

.single-fudo .list_price table,
.single-fudo #list_add {
    font-size: 1.5rem;
}

.single-fudo .list_picsam {
    width: 100%;
    order: 2;
    margin: 0 0 30px;
}

.single-fudo .list_picsam .bukken_thumb_s {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.single-fudo .list_picsam .bukken_thumb_s img {
    width: 100%;
    object-fit: cover;
}

.single-fudo .list_picsam .slide-item {
    position: relative;
}

.single-fudo .list_picsam .slide-caption {
    width: 100%;
    padding: 8px 0;
    border-radius: 0 0 8px 8px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: rgba(56, 56, 56, 0.9);
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
}

.single-fudo .list_detail {
    width: 100%;
    order: 1;
    margin: 0 0 80px;
}

.single-fudo .list_detail table {
    font-size: 1.5rem;
}

.single-fudo .list_detail table tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-fudo .entry-excerpt {
    display: flex;
    align-items: center;
}

.single-fudo .entry_excerpt_title {
    color: #0086D1;
    letter-spacing: 0.04em;
    margin: 0 16px 0 0;
}

.single-fudo .page-title {
    margin: 20px 0 120px;
}

.single-fudo .dpoint3,
.single-fudo .dpoint4 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: -5px;
}

.single-fudo .kouku_dat {
    width: 100%;
}

.single-fudo #second_img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.single-fudo #second_img bukken_thumb_s {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 160px;
    border: 1px solid #EEE;
    box-sizing: border-box;
    margin: 0 20px 20px 0;
}

.single-fudo #second_img bukken_thumb_s img {
    width: auto;
    max-width: 198px;
    max-height: 158px;
}

.single-fudo .submit input[type="submit"] {
    display: block;
    width: 270px;
    margin: -2px auto 102px;
    padding: 12px 0;
    box-sizing: border-box;
    border: 0;
    border-radius: 30px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    color: #FFF;
    box-shadow: 0 0 4px 0 #CCC;
    background: #A6D24A;
}

.single-fudo .submit input[type="submit"]:hover {
    margin: 0 auto 100px;
    box-shadow: none;
    transition: .3s;
}

.single-fudo #list_add_table {
    margin: 0 0 100px;
}

.single-fudo #list_add_table table,
.single-fudo #list_add_table table th,
.single-fudo #list_add_table table td {
    border: 0;
}

.single-fudo #list_add_table table tr {
    display: flex;
}

.single-fudo #list_add_table table th {
    font-size: 1.8rem;
    width: 96px;
    background-color: #0086D1;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0 20px 0 0;
    padding: 7px 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    border-radius: 3px;
}

.single-fudo #list_add_table table td {
    width: 80%;
    line-height: 1.75;
}

.single-fudo .list_price_others table th,
.single-fudo .list_price_others table td {
    padding: 8px 5px;
    box-sizing: border-box;
}

.list_price_others table th {
    width: 20%;
}

.list_price_others .td1,
.list_price_others .td2 {
    width: 30%;
}

.list_price_others .td2b {
    width: 80%;
}

#nendebcopy {
    display: none;
}

.fudo-single-inner,
.fudo-archive-inner {
    width: 1100px;
    margin: auto;
}

.single-fudo-breadcrumbs {
    margin: 140px 0 40px;
    padding: 10px 0;
    background-color: #ededed;
}

.single-fudo-breadcrumbs .c-breadcrumbs {
    margin: 0 auto;
}

.list_detail .entry-content h3 {
    font-size: 3rem;
    font-weight: bold;
    padding: 10px 30px;
    margin-bottom: 1em;
    border-radius: 10px;
    background: #ffdeca;
}

.list_detail .entry-content h4 {
    font-size: 2.5rem;
    font-weight: bold;
    padding: 10px 30px 10px 25px;
    margin-bottom: 1em;
    border-left: 5px solid #ffdeca;
}

.list_detail .entry-content h5 {
    font-size: 2rem;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 1em;
    border-bottom: 3px solid #ffdeca;
}

.list_detail .entry-content h6 {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 1em;
    border-bottom: 3px dotted #ffdeca;
}

.list_detail .entry-content ul {
    list-style-type: disc;
}

.list_detail .entry-content ol {
    list-style-type: auto;
}

.list_detail .entry-content ul li,
.list_detail .entry-content ol li {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 0.2em 0;
}

.single-fudo .l-footer {
    margin-top: 0;
}

/*------ slider ------*/

.fudo_slider .slick-slide {
    position: relative;
}

.fudo_slider .slick-slide:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.fudo_slider .slick-center {
    opacity: 1;
}

.fudo_slider .slick-center:before {
    display: none;
}

.single-fudo .list_picsam img {
    object-fit: contain;
    height: 435px !important;
}

.single-fudo .list_picsam img {
    width: 100%;
    height: auto;
    display: inline-flex;
    padding: 0;
}

.fudo_slider .slick-track {
    height: 435px;
}

.single-fudo .list_picsam_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

#fudo_slider .slick-next:before {
    content: "";
    display: block;
    background: url(../img/fudo_slider_arrow_r.svg) !important;
    background-size: contain !important;
    background-repeat: no-repeat;
    width: 28px !important;
    height: 57px !important;
    top: 0;
}

#fudo_slider .slick-prev:before {
    content: "";
    display: block;
    background: url(../img/fudo_slider_arrow_l.svg) !important;
    background-size: contain !important;
    background-repeat: no-repeat;
    width: 28px !important;
    height: 57px !important;
    top: 0;
}

#fudo_slider .slick-prev,
#fudo_slider .slick-next {
    width: 28px;
    height: 57px;
}

#fudo_slider .slick-prev {
    left: 40px;
    z-index: 99;
}

#fudo_slider .slick-next {
    right: 40px;
    z-index: 99;
}

.fudo_slider.slide-one {
    width: 1100px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
}

.fudo_slider.slide-one a {
    width: 48%;
}

.fudo_slider.slide-one a:not(:nth-child(2n+2)) {
    margin-right: 2%;
}

.fudo_slider.slide-one > img {
    display: none;
}

.remarks_table {
    background-color: #F5F5F5;
    display: block;
    width: 100%;
}

.remarks_table tbody {
    display: block;
    width: 100%;
}

.remarks_table tr {
    display: flex;
    flex-direction: column;
}

.remarks_table th {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    width: 100%;
    padding: 12px 0 12px 13px;
    background-color: #0086D0;
    border-radius: 3px 3px 0 0;
    text-align: left;
}

.remarks_table td {
    display: block;
    width: 100%;
    padding: 30px 0 25px 30px;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
}

@media screen and (max-width: 1200px) {
    .fudo_slider.slide-one {
        width: 100%;
    }

    .fudo_slider .slick-track {
        height: 320px;
    }

    .single-fudo .list_picsam img {
        height: 320px !important;
    }

    .fudo-single-inner,
    .fudo-archive-inner {
        width: 100%;
        padding: 0 6%;
    }
}

@media screen and (max-width: 767px) {
    .single-fudo .list_picsam img {
        object-fit: contain;
        height: 230px !important;
    }

    .fudo_slider .slick-track {
        height: 230px;
    }

    .fudo_slider.slide-one {
        margin: 0 auto 20px;
    }

    #fudo_slider .slick-prev {
        left: 12px;
    }

    #fudo_slider .slick-next {
        right: 12px;
    }

    #fudo_slider .slick-prev:before,
    #fudo_slider .slick-next:before {
        width: 20px !important;
        height: 40px !important;
        background-size: 100% !important;
    }

    #fudo_slider .slick-prev,
    #fudo_slider .slick-next {
        width: 20px;
        height: 40px;
    }

    .fudo-single-inner,
    .fudo-archive-inner {
        width: 100%;
        padding: 0 4%;
    }

    .single-fudo #list_add_table {
        margin: 0 0 50px;
    }

    .list_detail .entry-content h3 {
        font-size: 2rem;
        padding: 10px 20px;
    }

    .list_detail .entry-content h4 {
        font-size: 1.7rem;
        font-weight: bold;
        padding: 10px 30px 10px 25px;
        margin-bottom: 1em;
        border-left: 5px solid #ffdeca;
    }

    .list_detail .entry-content h5 {
        font-size: 1.5rem;
        font-weight: bold;
        padding: 10px;
        margin-bottom: 1em;
        border-bottom: 3px solid #ffdeca;
    }

    .list_detail .entry-content h6 {
        font-size: 1.5rem;
        font-weight: bold;
        padding: 10px;
        margin-bottom: 1em;
        border-bottom: 3px dotted #ffdeca;
    }

    .p-fudoSingle__titleWrap {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 590px) {
    .fudo_slider.slide-one {
        padding: 0 3%;
        flex-direction: column;
    }

    .fudo_slider.slide-one a {
        width: 100%;
    }

    .fudo_slider .slick-track {
        height: 180px;
    }

    .fudo_slider.slide-one .list_picsam img {
        height: auto !important;
    }

    .fudo_slider.slide-one a:not(:nth-child(2n+2)) {
        margin: 0;
    }

    .fudo_slider.slide-one a:not(:last-child) {
        margin: 0 0 10px;
    }

    .fudo-single-inner,
    .fudo-archive-inner {
        width: 100%;
        padding: 0 3.5%;
    }
}

/*------ list_add ------*/

.single-fudo-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-fudo-price .list_price {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.single-fudo-price .list_price th {
    display: inline-block;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    margin: 0 10px 0 0;
}

.single-fudo-price .list_price td {
    font-size: 2.8rem;
    letter-spacing: 0.06em;
    color: #FF4B4B;
}

.single-fudo-price .c-button:after {
    transform: translateY(-50%) rotate(90deg);
}

#list_add {
    width: 100%;
}

#list_add tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-fudo #list_add_table table tr {
    width: 100%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(92, 92, 92, 0.3);
}

.single-fudo #list_add_table table tr:last-child {
    width: 100%;
}

.single-fudo #list_add_table table tr:nth-of-type(1) {
    border-top: 1px solid rgba(92, 92, 92, 0.3);
}

.entry-content_wrap {
    margin: 30px 0 0;
}

.entry-content-title {
    font-size: 2.6rem;
    letter-spacing: 0.04em;
    color: #0086D1;
    margin: 0 0 10px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth"100;
}

.entry-content_wrap p {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    line-height: 1.875;
}

#list_add_table table {
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
}

.entry-content_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 60px
}

.entry-content_wrap .entry-content {
    margin: 0
}

.entry-content_img {
    width: 12.76%;
    position: relative
}

.entry-content_img img {
    width: 100%
}

.entry-content {
    font-size: 1.6rem;
    line-height: 2.188;
}

.entry-content .wp-block-list {
    padding-left: 1em;
}

@media screen and (max-width: 767px) {

    .single-fudo-price .c-button {
        width: 270px;
        height: 50px;
        font-size: 1.6rem;
    }

    .single-fudo-price .list_price th {
        font-size: 1.8rem;
    }

    .single-fudo-price .list_price td {
        font-size: 3rem;
    }

    .single-fudo .entry-title-category {
        font-size: 1.1rem;
        margin: 0 5px 0 0;
        padding: 4px 10px;
    }

    .single-fudo .entry-title {
        font-size: 2.5rem;
    }

    .single-fudo .entry-title-category {
        padding: 4px 6px;
    }

    .single-fudo-breadcrumbs {
        margin: 100px 0 20px;
        padding: 0;
    }

    .single-fudo .entry-title {
        flex-direction: column;
        margin: 0 0 10px;
        align-items: flex-start;
    }

    .p-fudoSingle__titleWrap {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 590px) {
    .single-fudo .entry-title {
        font-size: 1.6rem;
    }

    .single-fudo-price .list_price th {
        font-size: 1.6rem;
    }

    .single-fudo-price .list_price td {
        font-size: 2.4rem;
    }

    .single-fudo-price .c-button {
        font-size: 1.4rem;
        height: 38px;
    }

    .single-fudo-price {
        flex-direction: column;
    }

    .single-fudo #list_add_table table tr {
        width: 100%;
    }

    .single-fudo .new_mark {
        display: none;
    }

    .single-fudo .entry-title-category {
        margin: 0 0 5px 0;
    }

    .single-fudo #list_add_table table tr:nth-of-type(2) {
        border-top: none;
    }

    .single-fudo #list_add_table table th {
        font-size: 1.4rem;
    }

    .single-fudo .list_simple_box {
        padding: 0;
    }

    .single-fudo #list_add_table table tr {
        flex-direction: column;
    }

    .single-fudo #list_add_table table th {
        width: 100%;
        margin: 0 0 10px;
    }

    .single-fudo #list_add_table table td {
        width: 100%;
    }

    .single-fudo-breadcrumbs .c-breadcrumbs-item {
        font-size: 1rem;
    }

    .single-fudo-breadcrumbs .c-breadcrumbs-item:not(:first-child) {
        padding-left: 12px;
    }

    .single-fudo-breadcrumbs .c-breadcrumbs-item:not(:first-child)::before {
        top: 0.8em;
        left: 8px;
    }

    .single-fudo-price .list_price td {
        font-size: 2rem;
    }
}

/*------ list_other ------*/

#list_other {
    display: block;
}

#list_other tbody {
    display: block;
}

#list_other_table {
    margin: 90px 0;
}

#list_other_table table {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    border: 1px solid rgba(92, 92, 92, 0.3);
    border-collapse: collapse;
}

#list_add_table table th,
#list_add_table table td,
#list_other_table table th,
#list_other_table table td {
    box-sizing: border-box;
}

#list_other_table table th {
    width: 25%;
    background: #ededed;
}

#list_other_table .td1,
#list_other_table .td2,
#list_other_table .td2b {
    width: 75%;
    background: #fff;
}

#list_other_table .td3 {
    background-color: #fff;
}

#list_other_table tr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(92, 92, 92, 0.3);
    justify-content: flex-start;
}

#list_other_table tr:last-child {
    border: none;
}

#list_other_table .th3,
#list_other_table .td3 {
    width: 100%;
}

#list_other_table table th,
#list_other_table table td {
    padding: 16px 10px 16px 34px;
    font-size: 1.6rem;
    box-sizing: border-box;
}

#list_other_table table th {
    width: 20%;
    text-align: left;
}

#list_other_table .td1,
#list_other_table .td2 {
    width: 30%;
}

#list_other_table .td2b {
    width: 80%;
}

.single-fudo .c-pageTitle {
    justify-content: flex-start;
}

@media screen and (max-width: 767px) {
    #list_other_table {
        margin: 45px 0;
    }
}

@media screen and (max-width: 590px) {

    #list_other_table table th,
    #list_other_table table td {
        width: 100%;
        padding: 10px 5px 10px 15px;
        font-size: 1.4rem;
    }
}

/*------ fudo_single_map ------*/

.single_fudo_map {
    margin: 0 0 90px;
}

.single-fudo .gmap_single {
    width: 100%;
    height: 350px;
    border: none;
}

@media screen and (max-width: 767px) {
    .single_fudo_map {
        margin: 0 0 50px;
    }
}

/*------ fudo_single_contact ------*/

.fudo_single_contact_title {
    font-size: 3.4rem;
    letter-spacing: 0.04em;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    padding: 18px 0;
    background-color: #0086D1;
    text-align: center;
    color: #fff;
}

.single-fudo .required {
    display: inline-block;
    background-color: transparent;
    color: #ED1C24;
    margin-left: 0;
    padding: 0;
    font-weight: normal;
    font-size: 1.6rem;
}

.table_contact_privacy {
    color: #0086D1;
    display: block;
    text-align: center;
    margin: 20px 0 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.mw_wp_form_confirm .table_contact_privacy {
    display: none;
}

.privacy-check {
    text-align: center;
    color: #333;
}

.mw_wp_form .vertical-item {
    font-size: 1.6rem;
}

.contact_address_wrap input {
    width: 100%;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3) !important;
}

.contact_address_box:not(:last-child) {
    margin: 0 0 13px;
}

.contact_address_box:nth-of-type(1) input {
    width: 45.6%;
    margin: 0 0 20px;
}

.contact_address_box:nth-of-type(2) input {
    width: 26%;
}

.contact_address_box:nth-of-type(n+3) input {
    width: 60%;
}

.contact_address_box span {
    display: inline-block;
    width: 74px;
}

.contact_address_wrap {
    display: flex;
    flex-direction: column;
}

.contact_mail {
    padding: 110px 0;
    background-color: #F7F7F7;
}

.contact_text {
    line-height: 2;
    padding: 70px 0;
}

.contact_time_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 60px;
    font-size: 1.6rem;
}

.contact_time_title {
    display: inline-block;
    background-color: #2da266;
    color: #fff;
    padding: 7px 14px;
    margin-right: 10px;
}

.page_contact_subtitle {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.table_contact {
    width: 100%;
    display: block;
}

.table_contact th {
    color: #333333;
    width: 24.5%;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    line-height: 1.722;
    text-align: left;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    width: 75.5%;
    vertical-align: middle;
}

.table_contact td textarea {
    width: 100%;
    border: none;
    height: 220px;
    padding: 20px 0 0 20px;
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
    font-size: 1.6rem;
}

::placeholder {
    color: #9D9D9D;
}

.table_contact tr {
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
}

.table_contact tr:first-child {
    border-top: 1px solid #DDDDDD;
}

.contact_button {
    width: 397px;
    height: 66px;
    margin: 70px auto 0;
    position: relative;
}

.contact_button input {
    background: none;
    border: none !important;
    border-radius: 3px;
    background-color: #0086D1 !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    box-shadow: 0px 5px 0px 0px rgba(170, 97, 31, 1);
}

.table_radio_wrap {
    display: flex;
}

.mwform-radio-field:last-child {
    margin: 0;
}

.agree_check {
    margin-bottom: 60px;
    color: #2B3A3F;
}

.agree_check a {
    color: #5BA560;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .option,
.mw_wp_form_confirm .agree_check,
.mw_wp_form_confirm .attention {
    display: none;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.selectbox {
    width: 320px;
    height: 40px;
    background-color: #EDEDED;
    border: 1px solid #DDDDDD;
    padding: 0 20px;
    border: none;
}

input::placeholder {
    color: #A0A0A0;
}

input[type="text"] {
    border: none;
}

input[type="text"]:focus {
    border: 1px solid #004DA0;
    outline: 0;
}

input::placeholder {
    color: #CECDCD;
}

.table_radio_wrap {
    display: flex;
    flex-direction: column;
}


.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

.fudo_single_contact .c-form-privacy {
    background-color: #fff;
}

.fudo_single_contact input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
}

.fudo_single_contact select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}

.fudo_single_contact input[type="radio"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
}

.table_contact_wrap .c-form-submit-txt {
    margin-top: 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #fff;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

.mw_wp_form .vertical-item + .vertical-item {
    margin-top: 14px;
}

.privacy-check a {
    display: inline-block;
    color: #4496D3;
    padding: 0 0 2px;
    border-bottom: 1px solid #4496D3;
}

@media screen and (max-width: 1000px) {
    .table_contact_wrap {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .table_contact th {
        width: 37%;
    }

    .table_contact td {
        width: 63%;
    }

    .table_radio_wrap {
        flex-direction: column;
        line-height: 2;
    }
}

@media screen and (max-width: 767px) {
    .fudo_single_contact_title {
        font-size: 2.5rem;
    }

    .table_contact tr:nth-of-type(1) td {
        display: flex;
        flex-direction: column;
        line-height: 2;
    }

    .mw_wp_form .bg01 {
        margin: 0 0 40px;
    }

    .table_contact tr {
        flex-direction: column;
        padding: 20px 0;
    }

    .table_contact th {
        width: 100%;
        font-size: 1.6rem;
        justify-content: flex-start;
        margin: 0 0 15px;
        padding: 0;
    }

    .table_contact td {
        width: 100%;
        padding: 0;
    }

    .mw_wp_form .bg01 {
        padding: 40px 0;
    }

    .table_contact td input.text.addr {
        width: 85%;
    }

    .selectbox {
        width: 240px;
        height: 35px;
    }

    .contact_time_wrap {
        margin: 0 0 30px;
    }

    .agree_check {
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .contact_time_wrap {
        font-size: 1.4rem;
    }

    .contact_button {
        width: 230px;
        height: 45px;
        margin: 30px auto 0;
    }

    .contact_button::before {
        left: 50px;
    }

    .contact_mail {
        padding: 60px 0;
    }

    .table_radio_wrap span:not(:last-child) {
        font-size: 1.4rem;
        margin: 0 0 8px;
    }

    .contact_button input {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 590px) {
    .fudo_single_contact_title {
        font-size: 2rem;
    }

    .fudo_single_contact_title {
        font-size: 4.7vw;
        padding: 15px 0;
    }

    .table_contact_wrap {
        padding: 30px 20px 50px;
    }
}

/*----------------------------------------
	company
----------------------------------------*/

/*----------- p-companyMessage -----------*/

.p-companyMessage {
    margin: 0 0 100px;
}

.p-companyMessage .c-pageTitle {
    text-align: center;
}

.p-companyMessage__text {
    padding: 68px 30px 70px;
    border-radius: 64px;
    background: transparent linear-gradient(181deg, #E6F4F4 0%, #DFEFF9 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 10px #0000001A;
    position: relative;
}

.p-companyMessage__text:before {
    content: "";
    background-image: url(images/company_message_logo.svg);
    width: 328px;
    height: 475px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -28px;
    background-repeat: no-repeat;
}

.p-companyMessage__text .c-text {
    font-size: 1.9rem;
    line-height: 2.105;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    position: relative;
}

.p-companyMessage__text .c-text:not(:last-child) {
    margin: 0 0 40px;
}

@media screen and (max-width: 820px) {
    .p-companyMessage {
        margin: 0 0 50px;
    }

    .p-companyMessage__text {
        padding: 40px 20px;
    }

    .p-companyMessage__text .c-text {
        font-size: 1.6rem;
    }

    .p-companyMessage__text:before {
        background-size: 100%;
        width: 260px;
        height: 380px;
    }
}

@media screen and (max-width: 590px) {
    .p-companyMessage__text .c-text {
        font-size: 1.3rem;
    }

    .p-companyMessage__text:before {
        width: 220px;
        height: 330px;
    }

    .p-companyMessage__text {
        border-radius: 20px;
    }

    .p-companyMessage__text .c-text:not(:last-child) {
        margin: 0 0 15px;
    }
}

/*----------- p-companyShop -----------*/

.p-companyShop {
    margin: 0 0 100px;
}

@media screen and (max-width: 768px) {
    .p-companyShop {
        margin: 0 0 50px;
    }
}

/*----------- p-companyOffice -----------*/

.p-companyOffice {
    margin: 0 0 100px;
}

@media screen and (max-width: 590px) {
    .p-companyOffice {
        margin: 0 0 50px;
    }
}

/*----------- p-companyAccess -----------*/

.p-companyAccess {
    margin: 0 0 130px;
    padding: 90px 0 110px;
    background-color: #E1F1F9;
    border-radius: 64px;
}

.p-companyAccess__title {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.p-companyAccess__title .c-pageTitle {
    margin: 0 80px 0 0;
}

.p-companyAccess__wrap {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 0 68px;
    border: 10px solid #fff;
}

.p-companyAccess__wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.p-companyAccess ul {
    display: flex;
    justify-content: space-between;
}

.p-companyAccess ul li {
    width: 47.6%;
}

.p-companyAccess ul li h3 {
    background-color: #0086D1;
    height: 54px;
    color: #fff;
    font-size: 2.3rem;
    text-align: center;
    border-radius: 20px 20px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-companyAccess ul li h3 span {
    display: flex;
    align-items: center;
}

.p-companyAccess ul li:first-child h3 span:before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    background-image: url(images/company_access_train_icon.svg);
    background-repeat: no-repeat;
    margin: 0 11px 0 0;
}

.p-companyAccess ul li:last-child h3 span:before {
    content: "";
    display: inline-block;
    width: 46px;
    height: 27px;
    background-image: url(images/company_access_bus_icon.svg);
    background-repeat: no-repeat;
    margin: 0 11px 0 0;
}

.p-companyAccess ul li p {
    padding: 40px 0;
    text-align: center;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
}

@media screen and (max-width: 768px) {
    .p-companyAccess {
        margin: 0 0 50px;
        padding: 30px 0 40px;
        border-radius: 20px;
    }

    .p-companyAccess__title .c-pageTitle {
        margin: 0 0 15px 0;
    }

    .p-companyAccess__wrap {
        height: 300px;
        margin: 0 0 40px;
    }

    .p-companyAccess__title {
        flex-direction: column;
        margin: 0 0 20px;
    }

    .p-companyAccess__title .c-pageTitle {
        margin: 0 0 30px 0;
        text-align: center;
    }

    .p-companyAccess ul li h3 {
        font-size: 1.5rem;
        height: 42px;
        border-radius: 12px 12px 0px 0px;
    }

    .p-companyAccess ul li:first-child h3 span:before {
        width: 28px;
        height: 28px;
        background-size: 100%;
    }

    .p-companyAccess ul li:last-child h3 span:before {
        width: 32px;
        height: 18px;
        background-size: 100%;
    }

    .p-companyAccess ul li p {
        padding: 25px 0;
        font-size: 1.3rem;
        border-radius: 0 0 12px 12px;
    }

    .p-companyAccess ul {
        flex-direction: column;
    }

    .p-companyAccess ul li {
        width: 100%;
    }

    .p-companyAccess ul li:first-child {
        margin: 0 0 15px;
    }
}

/*----------- p-companyGroup -----------*/

.p-companyGroup {
    margin: 0 0 100px;
}

.p-companyGroup .c-pageTitle {
    margin: 0 0 60px;
}

.p-companyGroup ul {
    display: flex;
    justify-content: space-between;
}

.p-companyGroup ul li {
    width: 47.6%;
}

.p-companyGroup ul li a {
    display: block;
    padding: 40px;
    border-radius: 10px;
    background-color: #E1F1F9;
    position: relative;
}

.p-companyGroup ul li a:after {
    content: "";
    display: inline-block;
    width: 41px;
    height: 41px;
    background-image: url(images/button_arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: translateY(-50%);
}

.p-companyGroup ul li a h2 {
    font-size: 3rem;
    color: #0086D1;
    margin: 0 0 27px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-companyGroup ul li a .c-text {
    font-size: 2rem;
    margin: 0 0 10px;
}

.p-companyGroup__telWrap {
    display: flex;
    align-items: center;
}

.p-companyGroup__telBox {
    font-size: 2.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #0086D1;
    letter-spacing: 0.04em;
}

.p-companyGroup__telBox:first-child {
    margin: 0 28px 0 0;
}

.p-companyGroup__telBox span {
    font-size: 2rem;
}

@media screen and (max-width: 820px) {
    .p-companyGroup ul {
        flex-direction: column;
    }

    .p-companyGroup ul li {
        width: 100%;
    }

    .p-companyGroup ul li:not(:last-child) {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .p-companyGroup {
        margin: 0 0 50px;
    }

    .p-companyGroup .c-pageTitle {
        margin: 0 0 30px;
    }

    .p-companyGroup ul li a {
        padding: 20px;
    }

    .p-companyGroup ul li a h2 {
        font-size: 2rem;
        margin: 0 0 12px;
    }

    .p-companyGroup ul li a .c-text {
        font-size: 1.4rem;
    }

    .p-companyGroup__telBox {
        font-size: 2.2rem;
    }

    .p-companyGroup ul li a:after {
        width: 25px;
        height: 25px;
        background-size: 100%;
        transform: unset;
    }
}

@media screen and (max-width: 590px) {
    .p-companyGroup__telWrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-companyGroup__telBox {
        font-size: 1.6rem;
    }

    .p-companyGroup__telBox span {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .p-companyGroup__telBox:first-child {
        margin: 0px 0 10px 0px;
    }

    .p-companyGroup ul li a h2 {
        font-size: 1.8rem;
    }
}


/*----------- p-companyOutline -----------*/

.p-companyOutline .c-pageTitle {
    margin: 0 0 75px;
}

.p-companyOutline {
    margin: 0 0 50px;
}

.table01 {
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: none;
}

.table01 tr:first-child th {
    border-top: 1px solid rgba(51, 51, 51, 0.4);
}

.table01 tr:first-child td {
    border-top: 1px solid rgba(128, 128, 128, 0.26);
}

.table01 tr th {
    width: 22%;
    font-size: 1.8rem;
    border-bottom: 1px solid #333333;
    justify-content: center;
    background-color: transparent;
    border-right: none;
    text-align: center;
    padding: 30px 0;
}

.table01 tr td {
    width: 78%;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(128, 128, 128, 0.6);
    padding: 30px 0;
    line-height: 1.444;
}

@media screen and (max-width: 769px) {
    .table01 tr th {
        width: 32%;
        font-size: 1.3rem;
    }

    .table01 tr th {
        padding: 20px 0;
    }

    .table01 tr td {
        padding: 20px 0;
        width: 68%;
        font-size: 1.4rem;
    }

    .p-companyOutline .c-pageTitle {
        margin: 0px 0px 35px;
    }
}

@media screen and (max-width: 590px) {

    .table01 tr th {
        padding: 14px 0;
    }

    .table01 tr td {
        padding: 14px 0;
    }

    .p-companyOutline .c-pageTitle {
        margin: 0px 0px 25px;
    }
}

/*----------------------------------------
	privacy policy
----------------------------------------*/

.privacy_title {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0.5em;
    background-color: rgba(196, 221, 180, 0.09);
    border-left: 4px solid #006FB9;
    margin: 0 0 15px;
}

.privacy_title02 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.5em;
    color: #fff;
    background-color: #006FB9;
    margin: 0 auto 30px;
    width: 500px;
    text-align: center;
}

.privacy_policy .text {
    margin: 0 0 30px;
}

.privacy_policy_list {
    font-weight: bold;
    color: #93C572;
    margin: 0 0 20px;
    line-height: 1.3;
}

.privacy_policy_lists li {
    line-height: 1.75;
}

.privacy_policy_list > ul {
    margin: 10px 0 0;
    color: #000;
    line-height: 1.7;
    font-weight: normal;
}

@media screen and (max-width: 768px) {
    .privacy_title {
        font-size: 1.6rem;
    }

    .privacy_title02 {
        font-size: 1.8rem;
    }

    .privacy_policy_list {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .privacy_title02 {
        width: 100%;
        margin: 0 auto 20px;
    }
}

/*----------------------------------------
	404 not found
----------------------------------------*/

.p-catch__404 {
    background-image: url(images/catch_404.jpg);
}

.error404 .c-button {
    margin: auto;
}

/*----------------------------------------
	test
----------------------------------------*/

.single-fudo .list_picsam {
    width: 1000px;
}

.fudo_slider_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.fudo_slider_main {
    width: 50%;
    flex: 1;
}

.fudo_slider_main img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.fudo_slider_thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 40%;
    overflow: scroll;
    max-height: 435px;
    scrollbar-width: none;
}

.fudo_slider_thumbs .thumb-item {
    width: 31%;
}

.fudo_slider_thumbs .thumb-item img {
    cursor: pointer;
    opacity: 0.7;
    border-radius: 6px;
    transition: 0.3s;
    width: 100%;
    height: 93px !important;
    object-fit: cover;
}

.fudo_slider_thumbs .thumb-item img:hover {
    opacity: 1;
    border: 2px solid #0078ff;
}

.p-fudoSingle__title {
    font-size: 2.4rem;
    margin: 0 0 30px;
    letter-spacing: 0.03em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.entry-title-point {
    font-size: 2.2rem;
    line-height: 1.455;
    letter-spacing: 0.06em;
    margin: 0 0 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: left;
}

.p-fudoSingle__title {
    font-size: 2.4rem;
    letter-spacing: 0.03em;
    margin: 0 0 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    display: flex;
    align-items: center;
}

.p-fudoSingle__title:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    transform: rotate(135deg);
    background-color: #0086D1;
    margin: 0 10px 0 0;
}

.p-fudoSingle__datail tr {
    display: block;
    width: 48%;
}

.p-fudoSingle__datail tr:not(:last-child) {
    margin: 0 0 12px;
}

.p-fudoSingle__datail th {
    font-size: 1.6rem;
    width: 163px;
    padding: 9px 0;
    background-color: #F5F5F5;
    border-radius: 3px;
}

.p-fudoSingle__datail td {
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 0 0 0 21px;
}

.p-fudoSingle__box {
    margin: 0 0 40px;
    padding: 0 0 40px;
    border-bottom: 1px dotted rgba(51, 51, 51, 0.5);
}

.p-fudoSingle__sales .wp-block-heading {
    font-size: 2.5rem;
    line-height: 1.44;
    margin: 0 0 20px;
    color: #FF4A4A;
}

.p-fudoSingle__sales .entry-content p {
    font-size: 1.8rem;
}

.p-fudoSingle__environment .kouku_dat {
    font-size: 1.8rem;
    line-height: 2;
}

.p-fudoSingle__environmentBox {
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    line-height: 2;
}

.p-fudoSingle__data table {
    display: block;
    border-collapse: collapse;
    border-spacing: 0;
}

.p-fudoSingle__data table tbody {
    display: flex;
    flex-wrap: wrap;
}

.p-fudoSingle__data table:not(:last-child) {
    margin: 0 0 20px;
}

.p-fudoSingle__data table tr {
    display: flex;
}

.p-fudoSingle__data table th {
    width: 190px;
    background-color: #F5F5F5;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-fudoSingle__data table th,
.p-fudoSingle__data table td {
    padding: 16px 20px;
    border: 1px solid #ddd;
    font-size: 1.5rem;
    vertical-align: top;
}

.p-fudoSingle__data table td {
    line-height: 1.5;
}

.p-fudoSingle__data table .tr1 {
    width: 100%;
}

.p-fudoSingle__data table .tr2 {
    width: 50%;
}

.p-fudoSingle__data table .tr1 th {
    width: 19%;
}

.p-fudoSingle__data table .tr2 th {
    width: 38%;
}

.p-fudoSingle__data table .td1 {
    width: 81%;
}

.p-fudoSingle__data table .td2 {
    width: 62%;
}

.list_detail_bottom_info {
    font-size: 1.2rem;
    margin: 10px 0 0;
}

.p-fudoSingle_contact {
    width: 89.5%;
    margin: 0 auto;
    padding: 0 0 110px;
    background-color: #E1F1F9;
    border-radius: 60px;
    text-align: center;
    color: #fff;
}

.p-fudoSingle_contact h2 {
    font-size: 3.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: #0086D1;
    border-radius: 60px 60px 0 0;
    margin: 0 0 90px;
    padding: 26px 0;
}

.map-container {
    width: 100%;
}

.acf-map {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    border: 1px solid #ccc;
    background: #f8f8f8;
}

@media screen and (max-width: 1000px) {
    .single-fudo .list_picsam {
        width: 100%;
    }

    .fudo_slider_main {
        width: 75%;
    }

    .fudo_slider_thumbs {
        gap: 8px;
        width: 100%;
    }

    .fudo_slider_wrapper {
        flex-direction: column;
    }

    .fudo_slider_thumbs .thumb-item {
        width: 11%;
    }

    .fudo_slider_thumbs .thumb-item img {
        height: 70px !important;
    }
}

@media screen and (max-width: 768px) {
    .p-fudoSingle__titleWrap {
        flex-direction: column;
    }

    .entry-title-point {
        font-size: 1.5rem;
    }

    .single-fudo .list_detail table tbody {
        flex-direction: column;
    }

    .p-fudoSingle__datail td {
        font-size: 1.2rem;
        line-height: 1.3;
        padding: 0 0 0 6px;
    }

    .p-fudoSingle__datail tr {
        width: 100%;
    }

    .p-fudoSingle__datail th {
        font-size: 1.2rem;
        width: 100px;
        padding: 6px 0;
    }

    .p-fudoSingle__datail tr:not(:last-child) {
        margin: 0 0 6px;
    }

    .p-fudoSingle__title {
        font-size: 1.8rem;
        margin: 0 0 12px;
    }

    .p-fudoSingle__title::before {
        width: 8px;
        height: 8px;
    }

    .p-fudoSingle__title:before {
        margin: 0 7px 0 0;
    }

    .p-fudoSingle__box {
        margin: 0 0 25px;
        padding: 0 0 25px;
    }

    .list_detail .entry-content ul li,
    .list_detail .entry-content ol li {
        font-size: 1.2rem;
    }

    .p-fudoSingle__sales .wp-block-heading {
        font-size: 1.6rem;
        margin: 0 0 6px;
    }

    .p-fudoSingle__environment .kouku_dat {
        font-size: 1.2rem;
    }

    .p-fudoSingle__environmentBox {
        font-size: 1.2rem;
    }

    .fudo_slider_thumbs .thumb-item {
        width: 13%;
    }

    .fudo_slider_thumbs {
        gap: 5px;
    }

    .single-fudo .list_picsam .slide-caption {
        padding: 5px 0;
    }

    .fudo_slider_main {
        width: 100%;
    }

    .fudo_slider_thumbs .thumb-item {
        width: 15%;
    }

    .fudo_slider_thumbs .thumb-item img {
        height: 40px !important;
    }

    .fudo_slider_wrapper {
        width: 100%;
        padding: 0px 3.5%;
    }

    .single-fudo .list_detail {
        margin: 0 0 40px;
    }

    .p-fudoSingle_contact {
        width: 93%;
    }

    .p-fudoSingle_contact h2 {
        margin: 0 0 30px;
        font-size: 2rem;
        border-radius: 15px 15px 0 0;
        padding: 14px 10px;
    }

    .p-fudoSingle_contact {
        border-radius: 20px;
        padding: 0 0 50px;
    }

    .p-fudoSingle__sales .entry-content p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 590px) {
    .single-fudo .list_picsam img {
        height: 230px !important;
    }

    .fudo_slider_thumbs .thumb-item img {
        height: 40px !important;
    }

    .p-fudoSingle__data table .tr1 {
        width: 100%;
    }

    .p-fudoSingle__data table .tr2 {
        width: 100%;
    }

    .p-fudoSingle__data table .tr1 th {
        width: 100%;
    }

    .p-fudoSingle__data table .tr2 th {
        width: 100%;
    }

    .p-fudoSingle__data table .td1 {
        width: 100%;
    }

    .p-fudoSingle__data table .td2 {
        width: 100%;
    }

    .p-fudoSingle__data table tr {
        flex-direction: column;
    }

    .p-fudoSingle__data table th,
    .p-fudoSingle__data table td {
        font-size: 1.2rem;
        padding: 7px 15px;
    }

    .list_detail_bottom_info {
        font-size: 1rem;
    }

    .p-fudoSingle_contact h2 {
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	staff
----------------------------------------*/

/*----------- staffArchive -----------*/

.p-staffArchive__contact {
    background-color: #DFEFF9;
}

.p-staffArchive__intro {
    margin: 0 0 90px;
}

.p-staffArchive__introText {
    text-align: center;
}

.p-staffArchive__introText h3 {
    font-size: 3.5rem;
    margin: 0 0 48px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-staffArchive__lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-staffArchive__list {
    width: 47.9%;
    border-radius: 20px;
    background-color: #fff;
    padding: 22px 15px 22px 22px;
    position: relative;
}

.p-staffArchive__list:nth-child(n+3) {
    margin: 50px 0 0;
}

.p-staffArchive__list a {
    display: flex;
    align-items: center;
}

.p-staffArchive__img {
    width: 31.6%;
    margin: 0 48px 0 0;
}

.p-staffArchive__img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.p-staffArchive__table {
    display: block;
}

.p-staffArchive__table tbody {
    display: block;
}

.p-staffArchive__table tr {
    display: block;
}

.p-staffArchive__table tr:not(:last-child) {
    margin: 0 0 8px;
}

.p-staffArchive__table tr th {
    font-size: 1.5rem;
    color: #898989;
}

.p-staffArchive__table tr td {
    font-size: 1.5rem;
    color: #898989;
}

.p-staffArchive__listsWrap {
    background-color: #DFEFF9;
    border-radius: 64px 64px 0 0;
    padding: 70px 0 120px;
}

.p-staffArchive__name {
    font-size: 1.5rem;
    margin: 0 0 30px;
    color: #0086D1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.07em;
}

.p-staffArchive__title {
    font-size: 2.8rem;
    margin: 0 0 12px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-staffArchive__arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0086D0;
    border-radius: 3px;
    height: 79.4%;
    width: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 820px) {

    .p-staffArchive__introText h3 {
        font-size: 3rem;
        margin-bottom: 35px;
    }

    .p-staffArchive__list {
        width: 100%;
        padding: 20px 15px 20px 18px;
    }

    .p-staffArchive__img {
        width: 22%;
        margin-right: 30px;
    }

    .p-staffArchive__img img {
        height: 150px;
    }

    .p-staffArchive__title {
        font-size: 2.4rem;
    }

    .p-staffArchive__name {
        font-size: 1.4rem;
    }

    .p-staffArchive__arrow {
        height: 75%;
        width: 14px;
    }

    .p-staffArchive__list:nth-child(n+2) {
        margin: 30px 0 0;
    }

    .p-staffArchive__listsWrap {
        border-radius: 20px 20px 0 0;
        padding: 40px 0 60px;
    }
}

@media (max-width: 590px) {

    .p-staffArchive__lists {
        flex-direction: column;
    }

    .p-staffArchive__list {
        width: 100%;
        padding: 20px;
    }

    .p-staffArchive__list a {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-staffArchive__img {
        width: 57%;
        margin: 0 auto 20px;
    }

    .p-staffArchive__img img {
        height: 200px;
        border-radius: 10px;
    }

    .p-staffArchive__title {
        font-size: 2.2rem;
    }

    .p-staffArchive__name {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .p-staffArchive__arrow {
        display: none;
    }

    .p-staffArchive__table tr th,
    .p-staffArchive__table tr td {
        font-size: 1.4rem;
    }

    .p-staffArchive__introText h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .p-staffArchive__intro {
        margin: 0px 0px 40px;
    }
}

/*----------- staffSingle -----------*/

.p-staffSingle {
    margin: 0 0 90px;
}

.p-staffSingle__intro {
    width: 100%;
    border-radius: 40px;
    background: #DFEFF9 0% 0% no-repeat padding-box;
    box-shadow: 8px 8px 0px #0086D1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 100px;
    padding: 60px 70px;
}

.p-staffSingle__img {
    width: 30.8%;
}

.p-staffSingle__img img {
    width: 100%;
}

.p-staffSingle__profile {
    width: 62.3%;
}

.p-staffSingle__role {
    margin: 0 0 0 52px;
}

.p-staffSingle__role span {
    display: block;
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 0 0 0 14px;
    border-left: 5px solid #0086D1;
    text-align: left;
}

.p-staffSingle__role span:not(:last-child) {
    margin: 0 0 15px;
}

.p-staffSingle__titleWrap {
    display: flex;
    align-items: center;
    margin: 0 0 44px;
}

.p-staffSingle__title {
    font-size: 4rem;
    letter-spacing: 0.1em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-staffSingle__title span {
    font-size: 2rem;
    display: block;
    color: #0086D1;
    margin: 12px 0 0;
}

.p-staffTable {
    display: block;
}

.p-staffTable tbody {
    display: block;
}

.p-staffTable tr {
    display: flex;
    align-items: center;
}

.p-staffTable tr:not(:last-child) {
    margin: 0 0 14px;
}

.p-staffTable tr th,
.p-staffTable tr td {
    font-size: 2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.1em;
}

.p-staffTable tr th {
    width: 37.9%;
    margin: 0 28px 0 0;
    padding: 14px 0 14px 20px;
    background-color: #0086D1;
    border-radius: 2px;
    color: #fff;
    text-align: left;
}

.p-staffTable tr td {
    width: 58.2%;
}

.p-staffSingle__profileIntro {
    margin: 0 0 100px;
    text-align: center;
}

.p-staffSingle__profileIntro h2 {
    font-size: 5rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 50px;
    color: #0086D1;
}

.p-staffSingle__profileIntro h2 span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-staffSingle__profileIntro h2 span:before {
    content: "";
    display: inline-block;
    width: 52px;
    height: 3px;
    background-color: #0086D1;
    margin: 0 24px 0 0;
}

.p-staffSingle__profileIntro h2 span:after {
    content: "";
    display: inline-block;
    width: 52px;
    height: 3px;
    background-color: #0086D1;
    margin: 0 0 0 24px;
}

.p-staffSingle__box {
    margin: 0 0 100px;
}

.p-staffSingle__boxItem {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-staffSingle__boxItem:nth-of-type(even) {
    flex-direction: row-reverse;
}

.p-staffSingle__boxItem:not(:last-child) {
    margin: 0 0 80px;
}

.p-staffSingle__boxText {
    width: 46.8%;
    text-align: left;
}

.p-staffSingle__boxText h2 {
    font-size: 2.8rem;
    color: #0086D1;
    line-height: 1.607;
    margin: 0 0 45px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-staffSingle__boxImg {
    width: 46.6%;
}

.p-staffSingle__boxImg img {
    width: 100%;
}

.p-staffSingle__line {
    margin: 0 0 60xp;
}

@media (max-width: 1300px) {
    .p-staffSingle__title span {
        font-size: 1.4rem;
    }

    .p-staffSingle__role span {
        font-size: 1.5rem;
    }

    .p-staffTable tr th,
    .p-staffTable tr td {
        font-size: 1.6rem;
    }

    .p-staffTable tr th {
        margin: 0 10px 0 0;
        padding: 10px 0 10px 15px;
    }

    .p-staffSingle__intro {
        padding: 50px 40px;
    }
}

@media (max-width: 820px) {

    .p-staffSingle__intro {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 4px 4px 0px #0086D1;
    }

    .p-staffSingle__img {
        width: 32%;
        margin: 0 0 30px;
    }

    .p-staffSingle__profile {
        width: 100%;
    }

    .p-staffSingle__role {
        margin: 0 0 0 30px;
    }

    .p-staffSingle__titleWrap {
        justify-content: center;
        margin-bottom: 30px;
    }

    .p-staffTable tr {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-staffTable tr th {
        width: 100%;
        margin: 0 0 10px;
    }

    .p-staffTable tr td {
        width: 100%;
        text-align: left;
    }

    .p-staffSingle__boxItem {
        flex-direction: column !important;
        text-align: center;
    }

    .p-staffSingle__boxText {
        width: 100%;
        margin: 30px 0 0;
    }

    .p-staffSingle__title {
        font-size: 3.4rem;
    }

    .p-staffSingle__intro {
        margin: 0px 0px 50px;
    }

    .p-staffSingle__boxImg {
        width: 80%;
    }

    .p-staffSingle__boxItem:not(:last-child) {
        margin: 0 0 40px;
    }

    .p-staffSingle__box {
        margin: 0px 0px 50px;
    }
}

@media (max-width: 590px) {

    .p-staffSingle {
        margin-bottom: 60px;
    }

    .p-staffSingle__intro {
        padding: 30px 20px;
    }

    .p-staffSingle__img {
        width: 48%;
    }

    .p-staffSingle__title {
        font-size: 2.4rem;
        margin: 0 0 10px;
    }

    .p-staffSingle__title span {
        font-size: 1.6rem;
    }

    .p-staffTable tr th,
    .p-staffTable tr td {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }

    .p-staffSingle__profileIntro {
        margin: 0px 0px 50px;
    }

    .p-staffSingle__profileIntro h2 {
        font-size: 1.8rem;
        margin: 0px 0px 15px;
    }

    .p-staffSingle__profileIntro h2 span::before {
        width: 25px;
        height: 2px;
    }

    .p-staffSingle__profileIntro h2 span::after {
        width: 25px;
        height: 2px;
    }

    .p-staffSingle__boxText h2 {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-staffSingle__boxItem:not(:last-child) {
        margin-bottom: 50px;
    }

    .p-staffSingle__titleWrap {
        flex-direction: column;
    }

    .p-staffSingle__role {
        margin: 0;
    }

    .p-staffSingle__title span {
        font-size: 1.2rem;
        margin: 8px 0 0;
        padding: 0px 0px 0px 6px;
    }

    .p-staffSingle__role span:not(:last-child) {
        margin: 0px 0px 8px;
    }

    .p-staffSingle__boxText {
        margin: 20px 0px 0px;
    }

    .p-staffSingle__boxImg {
        width: 100%;
    }
}

/*----------------------------------------
	service
----------------------------------------*/

.p-service {
    margin: 0 0 120px;
}

.p-serviceIntro {
    margin: 0 0 90px;
}

.p-serviceIntro h2 {
    font-size: 3rem;
    margin: 0 0 50px;
    text-align: center;
    line-height: 2.167;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-serviceIntro h2 span {
    font-size: 3.6rem;
    display: inline-block;
    background: transparent linear-gradient(206deg, #01B2CD 0%, #0086D1 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    margin: 0 16px 0 0;
}

.p-serviceIntro .c-text {
    font-size: 2rem;
    text-align: center;
}

.p-serviceInfo {
    margin: 0 0 220px;
}

.p-serviceInfo__wrap {
    background-color: #F5F5F5;
    padding: 0 0 74px;
    border-radius: 40px;
}

.p-serviceInfo__wrap h2 {
    background-color: #01B2CD;
    padding: 33px 0;
    border-radius: 40px 40px 0 0;
    text-align: center;
}

.p-serviceInfo__img {
    text-align: center;
    padding: 58px 0 74px;
    border-radius: 0 0 40px 40px;
    max-width: 911px;
    width: calc(100% - 100px);
    margin: 0 auto;
}

.p-servicePoint li {
    width: 94.7%;
    display: flex;
    padding: 0 0 100px;
}

.p-servicePoint li:not(:last-child) {
    margin: 0 0 189px;
}

.p-servicePoint li:nth-of-type(odd) {
    margin-right: auto;
    border-radius: 0px 60px 60px 0px;
    background-color: #E6F4F4;
}

.p-servicePoint li:nth-of-type(even) {
    margin-left: auto;
    border-radius: 60px 0px 0px 60px;
    background-color: #DFEFF9;
    flex-direction: row-reverse;
}

.p-servicePoint li .p-servicePoint__img {
    width: 43.9%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: -89px 0 0;
}

.p-servicePoint li:nth-of-type(1) .p-servicePoint__img {
    background-image: url(images/service01.jpg);
}

.p-servicePoint li:nth-of-type(2) .p-servicePoint__img {
    background-image: url(images/service02.jpg);
}

.p-servicePoint li:nth-of-type(3) .p-servicePoint__img {
    background-image: url(images/service03.jpg);
}

.p-servicePoint li:nth-of-type(4) .p-servicePoint__img {
    background-image: url(images/service04.jpg);
}

.p-servicePoint li:nth-of-type(5) .p-servicePoint__img {
    background-image: url(images/service05.jpg);
}

.p-servicePoint li .p-servicePoint__text {
    width: 44.5%;
    margin: 54px 0 0;
}

.p-servicePoint__text .c-text:not(:last-child) {
    margin: 0 0 40px;
}

.p-servicePoint__text h2 {
    font-size: 4rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 40px;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.p-servicePoint__text h2 span {
    font-size: 2.2rem;
}

.p-servicePoint li:nth-of-type(odd) .p-servicePoint__text h2 {
    border-bottom: 1px solid #01B2CD;
    color: #01B2CD;
}

.p-servicePoint li:nth-of-type(even) .p-servicePoint__text h2 {
    border-bottom: 1px solid #0086D1;
    color: #0086D1;
}

.p-servicePoint li:nth-of-type(odd) .p-servicePoint__img {
    margin-right: 90px;
    border-radius: 0px 20px 20px 0px;
}

.p-servicePoint li:nth-of-type(even) .p-servicePoint__img {
    margin-left: 90px;
    border-radius: 20px 0px 0px 20px;
}

.p-servicePoint__text h2:before {
    content: "";
    display: inline-block;
    width: 67px;
    height: 67px;
    margin: 0 10px 0 0;
}

.p-servicePoint li:nth-of-type(1) .p-servicePoint__text h2:before {
    background-image: url(images/service01_title_icon.svg);
}

.p-servicePoint li:nth-of-type(2) .p-servicePoint__text h2:before {
    background-image: url(images/service02_title_icon.svg);
}

.p-servicePoint li:nth-of-type(3) .p-servicePoint__text h2:before {
    background-image: url(images/service03_title_icon.svg);
}

.p-servicePoint li:nth-of-type(4) .p-servicePoint__text h2:before {
    background-image: url(images/service04_title_icon.svg);
}

.p-servicePoint li:nth-of-type(5) .p-servicePoint__text h2:before {
    background-image: url(images/service05_title_icon.svg);
}

.p-servicePoint__textNumber {
    font-size: 2.2rem;
    margin: 0 0 15px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-servicePoint li:nth-of-type(odd) .p-servicePoint__textNumber {
    color: #01B2CD;
}

.p-servicePoint li:nth-of-type(even) .p-servicePoint__textNumber {
    color: #0086D1;
}

@media (max-width: 1300px) {
    .p-servicePoint li:nth-of-type(odd) .p-servicePoint__img {
        margin-right: 55px;
    }

    .p-servicePoint li:nth-of-type(even) .p-servicePoint__img {
        margin-left: 55px;
    }

    .p-servicePoint li {
        width: 96%;
        padding: 0 0 70px;
    }

    .p-servicePoint li .p-servicePoint__img {
        width: 35%;
    }

    .p-servicePoint__text .c-text:not(:last-child) {
        margin: 0 0 20px;
    }

    .p-servicePoint li .p-servicePoint__text {
        width: 55%;
    }

    .p-servicePoint__text h2:before {
        width: 45px;
        height: 45px;
        background-size: 100%;
    }

    .p-servicePoint__text h2 {
        font-size: 2.6rem;
    }

    .p-servicePoint__textNumber {
        font-size: 2rem;
    }

    .p-serviceInfo__wrap h2 img {
        width: 80%;
    }
}

@media (max-width: 1100px) {
    .p-serviceInfo__img img {
        width: 100%;
    }
}

@media (max-width: 820px) {

    .p-serviceIntro {
        margin: 0 0 45px;
    }

    .p-serviceIntro h2 {
        font-size: 2.4rem;
        margin: 0 0 30px;
    }

    .p-serviceIntro h2 span {
        font-size: 2.2rem;
        margin: 0 8px 0 0;
    }

    .p-serviceIntro .c-text {
        font-size: 1.8rem;
    }

    .p-servicePoint li {
        width: 100%;
        padding-bottom: 70px;
    }

    .p-servicePoint li:not(:last-child) {
        margin-bottom: 130px;
    }

    .p-servicePoint__text h2 {
        font-size: 2rem;
    }

    .p-servicePoint__text h2 span {
        font-size: 1.5rem;
    }

    .p-servicePoint li .p-servicePoint__img {
        height: 380px;
        margin-top: -50px;
    }

    .p-servicePoint li:nth-of-type(odd) {
        border-radius: 0px 20px 20px 0px;
    }

    .p-servicePoint li:nth-of-type(even) {
        border-radius: 20px 0px 0px 20px;
    }

    .p-servicePoint__text .c-text:not(:last-child) {
        margin: 0 0 10px;
    }

    .p-servicePoint__textNumber {
        font-size: 1.5rem;
        margin: 0 0 8px;
    }

    .p-servicePoint li:not(:last-child) {
        margin-bottom: 85px;
    }

    .p-serviceInfo {
        margin: 0 0 100px;
    }

    .p-serviceInfo__wrap {
        padding: 0 0 40px;
    }

    .p-serviceInfo__wrap h2 {
        margin: 0 0 20px;
        padding: 14px 0;
        border-radius: 20px 20px 0 0;
    }

    .p-serviceInfo__wrap {
        padding: 0 0 25px;
        border-radius: 20px;
    }
}

@media (max-width: 590px) {

    .p-service {
        margin-bottom: 60px;
    }

    .p-serviceIntro {
        margin-bottom: 40px;
    }

    .p-serviceIntro h2 {
        font-size: 2rem;
        line-height: 1.7;
    }

    .p-serviceIntro h2 span {
        width: 100%;
        font-size: 2rem;
    }

    .p-serviceIntro h2 span:not(:last-child) {
        margin-bottom: 10px;
    }

    .p-serviceIntro .c-text {
        font-size: 1.6rem;
    }

    /* サービス情報ブロック */
    .p-serviceInfo {
        margin-bottom: 40px;
    }

    .p-serviceInfo__wrap h2 {
        padding: 20px 0;
        font-size: 2rem;
    }

    .p-serviceInfo__img {
        width: calc(100% - 40px);
        padding: 0;
    }

    .p-serviceInfo__img {
        width: calc(100% - 40px);
    }

    .p-serviceInfo__wrap h2 img {
        width: 90%;
    }

    /* サービスポイント */
    .p-servicePoint li {
        flex-direction: column !important;
        padding: 0 0 30px;
        border-radius: 20px;
        width: 100%;
    }

    .p-servicePoint li:not(:last-child) {
        margin-bottom: 45px;
    }

    .p-servicePoint li .p-servicePoint__img {
        width: 90%;
        height: 260px;
        margin: 0 0 30px;
        border-radius: 20px;
    }

    .p-servicePoint li:nth-of-type(odd) .p-servicePoint__img {
        margin-left: auto;
    }

    .p-servicePoint li:nth-of-type(even) .p-servicePoint__img {
        margin-right: auto;
    }

    .p-servicePoint li .p-servicePoint__text {
        width: 100%;
        margin-top: 0;
        padding: 0 20px;
        text-align: left;
    }

    .p-servicePoint__text h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .p-servicePoint__text h2 span {
        font-size: 1.6rem;
    }

    .p-servicePoint__textNumber {
        font-size: 1.4rem;
    }

    .p-servicePoint__text .c-text {
        font-size: 1.6rem;
    }

    .p-servicePoint__text h2:before {
        width: 32px;
        height: 32px;
        margin-right: 8px;
        background-size: contain;
    }
}

/*----------------------------------------
	category
----------------------------------------*/

.p-Category {
    margin: 0 0 110px;
}

.p-CategoryWrap {
    background-color: #E6F4F4;
    border-radius: 20px;
    padding: 60px 60px 68px;
}

.p-Category ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-Category.p-CategoryRent ul {
    max-width: 937px;
    margin: 0 auto;
}

.p-Category.p-CategoryRent ul {
    justify-content: center;
}

.p-Category.p-CategoryRent ul li:not(:nth-child(4n+4)) {
    margin-right: 2.5%;
}

.p-Category.p-CategoryRent ul li:nth-child(n+5) {
    margin-top: 43px;
}

.p-Category ul li {
    width: 216px;
    height: 168px;
    box-shadow: -3px -3px 8px #00000014;
}

.p-Category ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    font-size: 2.3rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: #fff;
}

.p-Category ul li a span {
    text-align: center;
}

.p-Category ul li a span:before {
    content: "";
    display: block;
    margin: 0 auto 17px;
}

.p-Category ul li:nth-of-type(1) a span:before {
    background-image: url(images/shubetsu_kodate1_icon.svg);
    background-repeat: no-repeat;
    width: 58px;
    height: 56px;
    background-size: 100%;
}

.p-Category ul li:nth-of-type(2) a span:before {
    background-image: url(images/shubetsu_kodate2_icon.svg);
    background-repeat: no-repeat;
    width: 73px;
    height: 61px;
    background-size: 100%;
}

.p-Category ul li:nth-of-type(3) a span:before {
    background-image: url(images/shubetsu_mansion_icon.svg);
    background-repeat: no-repeat;
    width: 50px;
    height: 56px;
    background-size: 100%;
}

.p-Category ul li:nth-of-type(4) a span:before {
    background-image: url(images/shubetsu_land_icon.svg);
    background-repeat: no-repeat;
    width: 63px;
    height: 55px;
    background-size: 100%;
}

.p-Category ul li:nth-of-type(5) a span:before {
    background-image: url(images/shubetsu_investment_icon.svg);
    background-repeat: no-repeat;
    width: 68px;
    height: 56px;
}

.p-Category.p-CategoryRent ul li:nth-of-type(1) a span:before {
    background-image: url(images/shubetsu_mansion_icon.svg);
    background-repeat: no-repeat;
    width: 50px;
    height: 56px;
    background-size: 100%;
}

.p-Category.p-CategoryRent ul li:nth-of-type(2) a span:before {
    background-image: url(images/shubetsu_mansion_icon.svg);
    background-repeat: no-repeat;
    width: 50px;
    height: 56px;
    background-size: 100%;
}

.p-Category.p-CategoryRent ul li:nth-of-type(3) a span:before {
    background-image: url(images/shubetsu_kodate1_icon.svg);
    background-repeat: no-repeat;
    width: 58px;
    height: 56px;
    background-size: 100%;
}

.p-Category.p-CategoryRent ul li:nth-of-type(4) a span:before {
    background-image: url(images/shubetsu_land_icon.svg);
    background-repeat: no-repeat;
    width: 63px;
    height: 55px;
    background-size: 100%;
}

.p-Category.p-CategoryRent ul li:nth-of-type(5) a span:before {
    background-image: url(images/shubetsu_tenant_icon.svg);
    background-repeat: no-repeat;
    width: 61px;
    height: 53px;
}

.p-Category.p-CategoryRent ul li:nth-of-type(6) a span:before {
    background-image: url(images/shubetsu_investment_icon.svg);
    background-repeat: no-repeat;
    width: 68px;
    height: 56px;
}

.p-Category.p-CategoryRent ul li:nth-of-type(7) a span:before {
    background-image: url(images/shubetsu_warehouse_icon.svg);
    background-repeat: no-repeat;
    width: 58px;
    height: 50px;
}

@media (max-width: 1200px) {
    .p-CategoryWrap {
        padding: 60px 20px 68px;
    }

    .p-Category ul li {
        width: 170px;
        height: 150px;
    }

    .p-Category ul li a {
        font-size: 1.8rem;
    }
}

@media (max-width: 820px) {

    .p-Category {
        margin: 0 0 50px;
    }

    .p-CategoryWrap {
        padding: 40px 30px 50px;
    }

    .p-Category ul {
        flex-direction: column;
        align-items: center;
    }

    .p-Category.p-CategoryRent ul li:nth-child(n+5) {
        margin-top: 20px;
    }

    .p-Category ul li {
        width: 90%;
        margin-top: 20px;
        height: auto;
    }

    .p-Category ul li a {
        font-size: 2rem;
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px;
    }

    .p-Category ul li a span {
        display: flex;
        align-items: center;
        margin-right: 15px;
    }

    .p-Category ul li a span:before {
        margin: 0 15px 0 0;
        background-size: 100%;
    }

    .p-Category ul li:nth-of-type(1) a span::before {
        width: 34px;
        height: 33px;
    }

    .p-Category ul li:nth-of-type(2) a span::before {
        width: 43px;
        height: 36px;
    }

    .p-Category ul li:nth-of-type(3) a span::before {
        width: 30px;
        height: 33px;
    }

    .p-Category ul li:nth-of-type(4) a span::before {
        width: 37px;
        height: 32px;
    }

    .p-Category ul li:nth-of-type(5) a span::before {
        width: 40px;
        height: 33px;
    }

    .p-Category.p-CategoryRent ul li:nth-of-type(1) a span:before {
        width: 30px;
        height: 33px;
    }

    .p-Category.p-CategoryRent ul li:nth-of-type(2) a span:before {
        width: 30px;
        height: 33px;
    }

    .p-Category.p-CategoryRent ul li:nth-of-type(3) a span:before {
        width: 34px;
        height: 33px;
    }

    .p-Category.p-CategoryRent ul li:nth-of-type(4) a span:before {
        width: 37px;
        height: 32px;
    }

    .p-Category.p-CategoryRent ul li:nth-of-type(5) a span:before {
        width: 36px;
        height: 31px;
    }

    .p-Category.p-CategoryRent ul li:nth-of-type(6) a span:before {
        width: 40px;
        height: 33px;
    }

    .p-Category.p-CategoryRent ul li:nth-of-type(7) a span:before {
        width: 40px;
        height: 33px;
    }

    .p-Category.p-CategoryRent ul li:not(:nth-child(4n+4)) {
        margin-right: 0;
    }
}

@media (max-width: 590px) {

    .p-CategoryWrap {
        padding: 15px 20px 30px;
    }

    .p-Category ul {
        flex-direction: column;
        align-items: center;
    }

    .p-Category ul li {
        width: 100%;
        margin-top: 20px;
        height: auto;
    }

    .p-Category ul li a {
        font-size: 1.6rem;
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 15px;
    }

    .p-Category ul li a span {
        display: flex;
        align-items: center;
        margin-right: 15px;
    }
}

/*----------------------------------------
	news
----------------------------------------*/

/*----------- news_archive -----------*/

.p-newsArchive {
    margin: 0 0 120px;
}

.p-newsArchive__list {
    width: 100%;
}

.p-newsArchive__list:not(:last-child) {
    margin: 0 0 5px;
}

.p-newsArchive__list a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 28px 30px 28px 30px;
    background-color: #F5F5F5;
}

.p-newsArchive__list a h3 {
    font-size: 1.9rem;
}

.p-newsArchive__list:first-child a {
    border-radius: 15px 15px 0 0;
}

.p-newsArchive__list:last-child a {
    border-radius: 0 0 15px 15px;
}

.p-newsArchive__text {
    display: flex;
    align-items: center;
}

.p-newsArchive__info {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}

.p-newsArchive__category {
    font-size: 1.6rem;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
}

.p-newsArchive__category:not(:last-child) {
    margin: 0 10px 0 0;
}

.p-newsArchive__category.news-cat-info {
    background-color: #0086D1;
}

.p-newsArchive__category.news-cat-jyoken {
    background-color: #01B2CD;
}

.p-newsArchive__category.news-cat-new {
    background-color: #FF9731;
}

.p-newsArchive__category.news-cat-bukken {
    background-color: #0086D1;
}

.p-newsArchive__time {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #0086D1;
    margin: 0 18px 0 0;
}

@media (max-width: 820px) {
    .p-newsArchive {
        margin: 0 0 50px;
    }

    .p-newsArchive__list a {
        padding: 22px 20px;
    }

    .p-newsArchive__list a h3 {
        font-size: 1.7rem;
    }

    .p-newsArchive__category {
        font-size: 1.4rem;
        padding: 4px 10px;
    }

    .p-newsArchive__time {
        font-size: 1.4rem;
        margin-right: 15px;
    }

    .p-newsArchive__info {
        margin-right: 20px;
    }
}

@media (max-width: 590px) {

    .p-newsArchive__list a {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 15px;
        gap: 10px;
    }

    .p-newsArchive__text {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .p-newsArchive__info {
        flex-wrap: wrap;
        margin: 0;
        gap: 8px;
    }

    .p-newsArchive__category {
        font-size: 1.3rem;
        padding: 3px 10px;
    }

    .p-newsArchive__time {
        font-size: 1.3rem;
        margin: 0;
    }

    .p-newsArchive__list a h3 {
        font-size: 1.6rem;
        line-height: 1.5;
    }
}

/*----------- news_single -----------*/

.p-newsSingle {
    margin: 0 0 130px;
}

.p-newsSingle__titleWrap {
    margin: 0 0 60px;
    padding: 0 0 35px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}

.p-newsSingle__title {
    width: 88%;
    font-size: 3.5rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-newsSingle__time {
    font-size: 1.5rem;
    color: #0086D1;
    margin: 0 18px 0 0;
}

.p-newsSingle__text {
    background-color: #F5F5F5;
    border-radius: 20px;
    margin: 0 0 60px;
    padding: 80px 100px 88px;
}

.p-newsSingle__text p {
    line-height: 2.222;
}

.p-newsSingle__img {
    width: 76%;
    margin: 0 auto 40px;
}

.p-newsSingle__img img {
    width: 100%;
    max-height: 700px;
}

.p-newsSingle__box .c-button {
    margin: 0 auto;
}

.p-newsSingle__category {
    display: inline-block;
    padding: 5px 12px;
    background-color: #0086D1;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
}

.p-newsSingle__category:not(:last-child) {
    margin: 0 10px 0 0;
}

.p-newsSingle__category.news-cat-info {
    background-color: #0086D1;
}

.p-newsSingle__category.news-cat-jyoken {
    background-color: #01B2CD;
}

.p-newsSingle__category.news-cat-new {
    background-color: #FF9731;
}

.p-newsSingle__category.news-cat-bukken {
    background-color: #0086D1;
}

.p-newsSingle__info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 15px;
}

.p-newsSingle .c-button {
    width: 420px;
}

@media screen and (max-width: 768px) {
    .p-newsSingle__title {
        font-size: 3rem;
        line-height: 1.3;
    }

    .p-newsSingle__time {
        font-size: 1.5rem;
    }

    .p-newsSingle__text iframe {
        width: 100%;
    }

    .p-newsSingle__text {
        padding: 60px 40px;
        border-radius: 10px;
    }

    .p-newsSingle__img {
        width: 100%;
    }

    .p-newsSingle {
        margin: 0 0 75px;
    }

    .p-newsSingle__category {
        font-size: 1.3rem;
        margin: 0 0 0 10px;
    }

    .p-newsSingle__time {
        font-size: 1.2rem;
        margin: 0 10px 0 0;
    }

    .p-newsSingle__info {
        margin: 0 0 8px;
    }
}

@media screen and (max-width: 590px) {
    .p-newsSingle__img img {
        max-height: none;
    }

    .p-newsSingle__text {
        margin: 0 0 40px;
        padding: 25px 15px;
    }

    .p-newsSingle__title {
        width: 100%;
        font-size: 1.8rem;
    }

    .p-newsSingle__time {
        margin: 0 0 5px;
    }

    .p-newsSingle__titleWrap {
        margin: 0 0 25px;
        padding: 0 0 12px;
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .p-newsSingle__text p {
        line-height: 1.9;
    }

    .p-newsSingle .c-button {
        width: 90%;
    }
}

/*----------- c-tabMenu -----------*/

ul.c-tabMenu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ul.c-tabMenu li {
    display: inline-block;
}

ul.c-tabMenu a {
    display: inline-block;
    padding: 8px 23px;
    border: 1px solid #B9B9B9;
    text-decoration: none;
    background: white;
    transition: background 0.2s, color 0.2s;
    border-radius: 2px;
}

ul.c-tabMenu li.current a {
    background: #808080;
    color: #fff;
    border: none;
}

.c-tabWrap {
    display: flex;
    align-items: center;
    margin: 0 0 60px;
}

.c-tabTitle {
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    margin: 0 22px 0 0;
    display: flex;
    align-items: center;
    color: #808080;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.c-tabTitle:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 38px;
    background-color: rgba(112, 112, 112, 0.6);
    margin: 0 0 0 20px;
}

@media screen and (max-width: 768px) {
    .c-tabWrap {
        flex-direction: column;
        align-items: flex-start;
        margin: 0 0 50px;
    }

    .c-tabTitle {
        font-size: 1.8rem;
        margin: 0 0 10px 0;
    }

    .c-tabTitle:after {
        display: none;
    }
}

@media screen and (max-width: 590px) {
    ul.c-tabMenu li a {
        font-size: 1.4rem;
        padding: 6px 8px;
    }

    .c-tabWrap {
        margin: 0 0 35px;
    }
}

/*----------------------------------------
	sale
----------------------------------------*/

.p-saleMv {
    width: 100%;
    height: 80vh;
    background-image: url(images/sale_mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.p-saleMv ul {
    display: flex;
    align-items: center;
    margin: 0 0 65px;
}

.p-saleMv ul li:not(:last-child) {
    margin: 0 20px 0 0;
}

.p-saleMv h2 {
    margin: 0 0 46px;
    text-align: center;
}

.p-saleMv h2 span {
    display: block;
    margin: 0 0 15px;
}

.p-saleMv .c-text {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.8;
    font-weight: bold;
    margin: 0 0 65px;
    text-align: center;
}

.p-saleMv ul li {
    width: 235px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-saleMv ul li img {
    width: 100%;
}

.p-saleMv__number {
    width: 100%;
    font-size: 2.7rem;
    line-height: 1.2;
    background-color: #FFF100;
    text-align: center;
    position: absolute;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    bottom: 0;
    left: 0;
    padding: 15px 0 25px;
}

.p-saleMv__number:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 38px 50.5px 0 50.5px;
    border-color: #FFF100 transparent transparent transparent;
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
}

.p-saleMv__number span {
    font-size: 5.3rem;
    color: #ED1C24;
    margin: 0 8px;
}

.p-saleMv__catch {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.p-saleTrouble {
    background-color: #EBEBEB;
    padding: 100px 0 0;
}

.p-saleTrouble__img {
    text-align: center;
    margin: 0 0 55px;
}

.p-saleTrouble__listCategory {
    font-size: 2.3rem;
    display: inline-block;
    padding: 6px 0;
    border-radius: 12px 12px 0 0;
    background-color: #0086D1;
}

.p-saleTrouble__lists {
    margin: 0 0 36px;
}

.p-saleTrouble__list:not(:last-child) {
    margin: 0 0 25px;
}

.p-saleTrouble__listTitle {
    padding: 25px 0 25px 30px;
    background-color: #fff;
    border-radius: 0 10px 10px 10px;
    border: 2px solid #0086D1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
    line-height: 1.3;
}

.p-saleTrouble__listTitle span {
    font-size: 4.1rem;
    color: #0081CC;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin: 0 10px 0 0;
}

.p-saleTrouble__listBox {
    padding: 25px 30px;
    display: none;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

.p-saleTrouble__listCategory {
    padding: 12px 30px;
    color: #fff;
    font-size: 2.3rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-saleFaq {
    background-color: #E8F3F3;
    margin: 0 0 84px;
}

.p-saleFaq__title {
    text-align: center;
}

.p-saleFaq__subTitle {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.8;
    text-align: center;
    margin: 0 0 40px;
}

.p-saleFaq__wrap h3 {
    margin: 0 0 -40px;
    padding: 0 0 0 75px;
}

.p-saleFaq__wrap ul {
    background-color: #fff;
    border-radius: 30px;
    padding: 87px 75px 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p-saleFaq__wrap ul li {
    width: 49.2%;
    padding: 20px 0 20px 20px;
    font-size: 2rem;
    line-height: 1.4;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: #E8F3F3;
}

.p-saleFaq__wrap ul li:nth-child(n+3) {
    margin: 20px 0 0;
}

.p-saleFaq__wrap ul li:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background-color: #466988;
    margin: 0 12px 0 0;
}

.p-saleFaq__img {
    margin: -34px auto 0;
    text-align: center;
}

.p-saleTrouble__solve {
    background-color: #FFFFE4;
    padding: 192px 0 80px;
    position: relative;
}

.p-saleTrouble__solve:before {
    content: "";
    width: 100%;
    height: 128px;
    background-image: url(images/sale_faq_triangle.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    background-position: top;
    background-size: 100%;
}

.p-saleTrouble__solveWrap h2 {
    font-size: 3.2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5;
    color: #0086D1;
    padding: 34px 0 30px;
    border-radius: 300px;
    background-color: #FFF000;
    text-align: center;
}

.p-saleInfo {
    margin: 0 0 110px;
}

.p-saleInfo .p-saleInfo__text {
    width: 90.5%;
    background-color: #F5F5F5;
    padding: 45px 0 45px 54px;
    border-radius: 20px;
    position: relative;
}

.p-saleInfo .p-saleInfo__text:before {
    content: "";
    background-image: url(images/sale_info_illust.svg);
    background-repeat: no-repeat;
    width: 312px;
    height: 372px;
    position: absolute;
    right: -14.4%;
    top: -50px;
}

.p-saleBanner {
    margin: 0 0 100px;
}

.p-saleStrength {
    background-color: #E8F3F3;
    padding: 0 0 105px;
}

.p-saleStrength > h2 {
    font-size: 4.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 80px;
    padding: 40px 0;
    background-color: #01B2CD;
    border-radius: 64px 64px 0 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: baseline;
}

.p-saleStrength > h2 span.big {
    font-size: 7rem;
    margin: 0 0 0 16px;
}

.p-saleStrength > h2 span.small {
    font-size: 3.7rem;
}

.p-saleStrength__lists {
    background-color: #fff;
    border-radius: 40px;
    padding: 70px 84px 90px;
}

.p-saleStrength__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-saleStrength__list:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0 0 50px;
    padding: 0 0 50px;
}

.p-saleStrength__list:nth-of-type(even) {
    flex-direction: row-reverse;
}

.p-saleStrength__list .p-saleStrength__listImg {
    width: 36.5%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.p-saleStrength__list .p-saleStrength__listText {
    width: 58%;
}

.p-saleStrength__list:nth-of-type(1) .p-saleStrength__listImg {
    background-image: url(images/sale_strength01.jpg);
}

.p-saleStrength__list:nth-of-type(2) .p-saleStrength__listImg {
    background-image: url(images/sale_strength02.jpg);
}

.p-saleStrength__list:nth-of-type(3) .p-saleStrength__listImg {
    background-image: url(images/sale_strength03.jpg);
}

.p-saleStrength__list:nth-of-type(4) .p-saleStrength__listImg {
    background-image: url(images/sale_strength04.jpg);
}

.p-saleStrength__list:nth-of-type(5) .p-saleStrength__listImg {
    background-image: url(images/sale_strength05.jpg);
}

.p-saleStrength__listText h2 {
    font-size: 2.8rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 22px;
    line-height: 1.607;
    display: flex;
    align-items: center;
}

.p-saleStrength__listText h2 span {
    color: #01B2CD;
    letter-spacing: 0.08em;
}

.p-saleManagement {
    margin: 0 0 100px;
}

.p-saleManagement__bg {
    width: 100%;
    height: 557px;
    background-image: url(images/sale_management_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 0 78px;
    display: flex;
    align-items: center;
}

.p-saleManagement__feature {
    margin: 0 0 100px;
}

.p-saleManagement__feature span {
    color: #0086D1;
}

.p-saleManagement__troubleLists li:last-child {
    margin: 0;
}

.p-saleManagement__troubleLists li {
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px dashed #707070;
    line-height: 1.2;
}

.p-saleManagement__troubleLists li span {
    display: flex;
    align-items: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-saleManagement__troubleLists li span:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(images/sale_management_check.svg);
    margin: 0 7px 0 0;
}

.p-saleManagement__troubleWrap .p-saleManagement__troubleLists {
    width: 66.8%;
}

.p-saleManagement__troubleWrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 82px;
}

.p-saleManagement__feature h2 {
    margin: 0 0 40px;
}

.p-saleManagement__feature h2,
.p-saleManagement__strength h2 {
    background: transparent linear-gradient(95deg, #0086D1 0%, #01B2CD 100%) 0% 0% no-repeat padding-box;
    border-radius: 100px;
    padding: 24px 0;
    font-size: 3.2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    text-align: center;
}

.p-saleManagement__feature .c-text {
    font-size: 2.4rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.875;
    text-align: center;
}

.p-saleManagement__strength ul {
    background-color: #DFEFF9;
    border-radius: 3px;
    padding: 50px 58px 47px;
    display: flex;
    justify-content: space-between;
}

.p-saleManagement__strength ul li {
    width: 30%;
    position: relative;
}

.p-saleManagement__strength ul li:not(:last-child):after {
    content: "";
    width: 1px;
    height: 300px;
    background-color: #0086D1;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.p-saleManagement__strength ul li h3 {
    font-size: 2.6rem;
    margin: 0 0 25px;
    line-height: 1.538;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #0086D1;
    text-align: center;
}

.p-saleManagement__strength ul li:nth-of-type(3) h3 {
    margin: 0 0 50px;
}

.p-saleManagement__strength ul li:nth-of-type(3) .p-saleManagement__strengthNumber {
    margin: 0 0 42px;
}

.p-saleManagement__strengthNumber {
    margin: 0 0 22px;
    text-align: center;
}

.p-saleSold {
    background-color: #FFFFE4;
    padding: 74px 0 98px;
}

.p-saleSold h3 {
    font-size: 3rem;
    margin: 0 0 38px;
    padding: 10px 0;
    background-color: #01B2CD;
    border-radius: 20px 20px 0 0;
    color: #fff;
    letter-spacing: 0.18em;
    text-align: center;
}

.p-saleSold h3 span:before {
    content: "";
    display: inline-block;
    background-image: url(images/sale_solve_icon.svg);
    width: 54px;
    height: 37px;
    background-color: #01B2CD;
    border-radius: 20px 20px 0 0;
    margin: 0 10px 0 0;
}

.p-saleSold__wrap {
    border-radius: 20px;
    background-color: #fff;
    height: 313px;
    overflow-y: scroll;
}

.p-saleSold__wrap ul {
    padding: 0 0 0 32px;
}

.p-saleSold h2 {
    text-align: center;
    margin: 0 0 38px;
}

.p-saleSold h2 span {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(transparent 60%, #FFF000 70%);
}

.p-saleSold h2 span:before {
    content: "";
    display: inline-block;
    background-image: url(images/sale_voice_title_deco.svg);
    width: 22px;
    height: 43px;
}

.p-saleSold h2 span:after {
    content: "";
    display: inline-block;
    background-image: url(images/sale_voice_title_deco.svg);
    transform: rotate(180deg);
    width: 22px;
    height: 43px;
}

.p-saleSold ul li {
    display: flex;
    align-items: center;
}

.p-saleSold ul li:not(:last-child) {
    margin: 0 0 28px;
}

.p-saleSold ul li span {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    display: flex;
}

.p-saleSold ul li {
    display: flex;
    align-items: center;
}

.p-saleSold ul li a {
    color: #0243F1;
    border-bottom: 1px solid #0243F1;
}

.p-saleReview {
    background-color: #E8F3F3;
    padding: 55px 0 125px;
}

.p-saleReview h2 {
    margin: 0 0 58px;
}

.p-saleReview ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-saleReview ul li {
    width: 47.2%;
}

.p-saleReview ul li:nth-child(n+3) {
    margin: 60px 0 0;
}

.p-saleReview ul li img {
    width: 100%;
}

.p-sale .p-bottomContact {
    background-image: unset;
    background-color: #fff;
    border: 4px solid #466989;
    position: relative;
    border-radius: 60px;
}

.p-sale .p-bottomContact:before {
    content: "";
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 266px;
    background-color: #E8F3F3;
    position: absolute;
    top: -4px;
    left: 0;
    z-index: -1;
}

.p-bottomContact__subTitle {
    font-size: 3.6rem;
    color: #466989;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.639;
    text-align: center;
    margin: 0 0 30px;
}

.p-sale .p-bottomContact__attention {
    font-size: 2.5rem;
    color: #466989;
    margin: 0 0 38px;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.p-sale .p-bottomContact__wrap li {
    border-radius: 20px;
    background-color: #F5F5F5;
}

.p-sale .p-bottomContact h2 {
    color: #466989;
}

.p-sale .p-bottomContact__line a {
    font-size: 2.4rem;
    background-color: #35AC36;
}

.p-sale .p-bottomContact__line h3 {
    color: #35AC36;
}

.p-sale .p-bottomContact__line a:after {
    content: "";
    display: inline-block;
    width: 49px;
    height: 49px;
    background-image: url(images/contact_button_line_arrow.svg);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.p-sale .p-bottomContact .c-text {
    color: #466989;
}

.p-sale .p-bottomContact__line h3 span:before {
    content: "";
    display: inline-block;
    width: 46px;
    height: 44px;
    background-image: url(images/bottom_contact_line_icon.svg);
    margin: 0 10px 0 0;
}

@media screen and (max-width: 1100px) {
    .p-saleMv__catch h2 > img {
        width: 92%;
    }

    .p-saleMv h2 span img {
        width: 48%;
    }
}

@media screen and (max-width: 820px) {

    .p-saleMv {
        height: 60vh;
    }

    .p-saleMv ul {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
    }

    .p-saleMv ul li {
        width: 180px;
        height: 55px;
    }

    .p-saleMv .c-text {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .p-saleMv__number span {
        font-size: 4rem;
    }

    .p-saleMv__catch {
        width: 90%;
    }

    .p-saleMv .c-text {
        font-size: 2rem;
    }

    .p-saleMv h2 {
        margin: 0 0 30px;
    }

    .p-saleMv .c-text {
        margin: 0 0 40px;
    }

    .p-saleMv__number {
        font-size: 2.4rem;
    }

    /* Trouble */

    .p-saleTrouble {
        padding: 40px 0 0;
    }

    .p-saleTrouble__img {
        width: 86%;
        margin: 0 auto 30px;
    }

    .p-saleTrouble__img img {
        width: 100%;
    }

    .p-saleTrouble {
        padding-top: 70px;
    }

    .p-saleTrouble__listCategory {
        font-size: 1.4rem;
        padding: 10px;
    }

    .p-saleTrouble__listTitle {
        padding: 20px;
        font-size: 2rem;
    }

    .p-saleTrouble__listTitle span {
        font-size: 3rem;
    }

    .p-saleTrouble__listBox {
        padding: 20px;
    }

    .p-saleTrouble__solve {
        padding: 100px 0px 50px;
    }

    .p-saleTrouble__solveWrap h2 {
        font-size: 2rem;
        padding: 18px 0;
    }

    /* FAQ */
    .p-saleFaq__wrap ul {
        padding: 60px 40px;
    }

    .p-saleFaq__wrap ul li {
        width: 100%;
    }

    .p-saleFaq__title img {
        width: 100%;
    }

    .p-saleFaq__img img {
        width: 46%;
    }

    .p-saleFaq__wrap ul li:nth-child(n+2) {
        margin: 20px 0 0;
    }

    .p-saleFaq__wrap h3 {
        margin: 0 0 -26px;
        padding: 0 0 0 4s2px;
    }

    .p-saleFaq__wrap h3 img {
        width: 60%;
    }

    .p-saleInfo .p-saleInfo__text {
        width: 100%;
        padding: 30px 20px;
    }

    .p-saleInfo .p-saleInfo__text:before {
        display: none;
    }

    .p-saleFaq {
        margin: 0 0 45px;
    }

    .p-saleInfo {
        margin: 0 0 40px;
    }

    .p-saleBanner {
        margin: 0 0 50px;
    }

    .p-saleFaq__subTitle {
        font-size: 1.2rem;
    }

    /* Strength */
    .p-saleStrength > h2 {
        font-size: 3rem;
        margin: 0 0 35px;
    }

    .p-saleStrength__list {
        flex-direction: column;
        gap: 20px;
    }

    .p-saleStrength__list:nth-of-type(even) {
        flex-direction: column;
    }

    .p-saleStrength__list .p-saleStrength__listImg {
        width: 100%;
        height: 200px;
    }

    .p-saleStrength__list .p-saleStrength__listText {
        width: 100%;
    }

    .p-saleStrength__listText h2 {
        font-size: 2.2rem;
    }

    .p-saleStrength__listText h2 {
        flex-direction: column;
    }

    .p-saleStrength {
        padding: 0px 0px 60px;
    }

    .p-saleStrength__lists {
        border-radius: 20px;
    }

    /* Management */

    .p-saleManagement {
        margin: 0 0 50px;
    }

    .p-saleManagement__troubleWrap {
        flex-direction: column;
        gap: 30px;
    }

    .p-saleManagement__troubleWrap .p-saleManagement__troubleLists {
        width: 100%;
    }

    .p-saleManagement__bg {
        height: 300px;
        margin: 0 0 40px;
    }

    .p-saleManagement__bg h2 img {
        width: 53%;
    }

    .p-saleManagement__strength ul {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
    }

    .p-saleManagement__strength ul li {
        width: 100%;
    }

    .p-saleManagement__strength ul li:not(:last-child):after {
        display: none;
    }

    .p-saleManagement__troubleImg {
        width: 47%;
        margin: 0 auto;
    }

    .p-saleManagement__troubleImg img {
        width: 100%;
    }

    .p-saleManagement__troubleWrap {
        margin: 0 0 40px;
    }

    .p-saleManagement__feature h2 {
        font-size: 2rem;
        padding: 15px 0;
    }

    .p-saleManagement__feature {
        margin: 0 0 50px;
    }

    .p-saleManagement__strength ul li:nth-of-type(3) h3 {
        margin: 0 0 25px;
    }

    .p-saleManagement__strength ul li:nth-of-type(3) .p-saleManagement__strengthNumber {
        margin: 0 0 22px;
    }

    .p-saleManagement__strength h2 {
        font-size: 2rem;
        padding: 15px 0;
    }

    /* Review */
    .p-saleReview ul li {
        width: 100%;
    }

    .p-saleSold h2 span:before {
        width: 14px;
        height: 27px;
        background-size: 100%;
    }

    .p-saleSold h2 span:after {
        width: 14px;
        height: 27px;
        background-size: 100%;
    }

    .p-saleSold h3 {
        font-size: 2.2rem;
    }

    .p-saleSold h3 span:before {
        width: 40px;
        height: 28px;
        background-size: 100%;
    }

    .p-saleSold ul li {
        flex-direction: column;
    }

    .p-saleSold ul li span {
        font-size: 1.2rem;
        margin: 0 0 8px;
    }

    .p-saleSold {
        padding: 40px 0 55px;
    }

    .p-saleSold h3 {
        margin: 0 0 20px;
    }

    .p-saleSold ul li {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-saleReview h2 {
        margin: 0 0 20px;
    }

    .p-saleReview h2 img {
        width: 100%;
    }

    .p-saleReview {
        padding: 40px 0 50px;
    }

    .p-saleReview ul li:nth-child(n+2) {
        margin: 20px 0 0;
    }

    .p-sale .p-bottomContact {
        border-radius: 20px;
    }

    .p-sale .p-bottomContact__attention {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 0 0 20px;
    }

    .p-bottomContact__subTitle {
        font-size: 2rem;
    }

    .p-bottomContact h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .p-sale .p-bottomContact__line a:after,
    .p-bottomContact__form a::before {
        width: 25px;
        height: 25px;
        background-size: 100%;
    }

    .p-sale .p-bottomContact__line a {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 590px) {

    .p-saleMv {
        height: 77vh;
    }

    .p-saleMv ul {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }

    .p-saleMv ul li {
        width: 150px;
        height: 48px;
    }

    .p-saleMv h2 span {
        margin: 0 0 5px;
    }

    .p-saleMv .c-text {
        font-size: 1.4rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .p-saleMv__number {
        font-size: 1.9rem;
        line-height: 1.1;
        padding: 10px 0 15px;
    }

    .p-saleMv__number span {
        font-size: 3.5rem;
        margin: 0 4px;
    }

    .p-saleMv__number:before {
        bottom: -16px;
        border-width: 16px 17.5px 0 17.5px;
    }

    .p-saleMv ul li:not(:last-child) {
        margin: 0;
    }

    .p-saleMv__catch h2 > img {
        width: 100%;
    }

    /* Trouble */
    .p-saleTrouble {
        padding-top: 15px;
    }

    .p-saleTrouble__listTitle {
        padding: 18px 15px;
        font-size: 1.8rem;
    }

    .p-saleTrouble__listTitle span {
        font-size: 2.4rem;
    }

    .p-saleTrouble__img {
        width: 100%;
    }

    .p-saleTrouble__list:not(:last-child) {
        margin: 0 0 12px;
    }

    .p-saleTrouble__solveWrap h2 {
        font-size: 3.5vw;
    }

    .p-saleTrouble__solve {
        padding: 40px 0px 30px;
    }

    /* FAQ */
    .p-saleFaq__wrap ul {
        padding: 40px 20px;
    }

    .p-saleFaq__wrap ul li {
        font-size: 1.4rem;
        padding-left: 15px;
        padding-right: 10px;
    }

    .p-saleFaq__wrap ul li:before {
        width: 12px;
        height: 12px;
    }

    .p-saleTrouble__listTitle {
        font-size: 1.4rem;
        padding: 12px 10px;
    }

    .p-saleFaq__wrap h3 {
        padding: 0 0 0 30px;
    }

    /* Strength */

    .p-saleStrength {
        border-radius: 20px 20px 0 0;
    }

    .p-saleStrength__lists {
        padding: 40px 20px;
    }

    .p-saleStrength__list .p-saleStrength__listImg {
        height: 160px;
    }

    .p-saleStrength > h2 {
        font-size: 2.8rem;
        padding: 15px 0;
        border-radius: 20px 20px 0 0;
    }

    .p-saleStrength > h2 span.small {
        font-size: 2rem;
    }

    .p-saleStrength > h2 span.big {
        font-size: 4rem;
        margin: 0 0 0 5px;
    }

    .p-saleStrength__listText h2 {
        font-size: 1.8rem;
    }

    /* Management */

    .p-saleManagement__feature h2 {
        font-size: 1.8rem;
    }

    .p-saleManagement__strength h2 {
        font-size: 1.8rem;
    }

    .p-saleManagement__bg {
        height: 140px;
    }

    .p-saleManagement__bg h2 img {
        width: 60%;
    }

    .p-saleManagement__strength ul li h3 {
        font-size: 2rem;
    }

    .p-saleManagement__strength ul {
        padding: 25px;
    }

    .p-saleManagement__strengthNumber img {
        width: 54%;
    }

    .p-saleManagement__feature .c-text {
        font-size: 1.4rem;
    }

    /* Sold */
    .p-saleSold__wrap {
        height: 220px;
    }

    /* Review */
    .p-saleReview ul li {
        width: 100%;
    }

    /* Bottom contact */
    .p-bottomContact__subTitle {
        font-size: 4.5vw;
    }

    .p-sale .p-bottomContact h2 {
        font-size: 1.9rem;
    }

    .p-sale .p-bottomContact__attention {
        font-size: 1.2rem;
        line-height: 1.5;
        margin: 0 0 10px;
    }
}

/*----------------------------------------
	search
----------------------------------------*/

.p-search {
    margin: 0 0 63px;
}

.search_lists {
    width: 875px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto 60px;
}

.search_list {
    width: 22.8%;
}

.search_list:nth-child(n+5) {
    margin: 19px 0 0;
}

.search_list a {
    display: block;
    width: 100%;
    height: 48px;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    letter-spacing: 0.1em;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    background-color: #f8b62b;
    color: #fff;
}

.search_list a:after {
    content: "";
    background-image: url(images/search_button_arrow.svg);
    background-repeat: no-repeat;
    width: 13px;
    height: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}

.search_box {
    margin: 0 0 105px;
}

.form_jsearch {
    width: 100%;
}

.form_jsearch tr {
    display: flex;
    flex-direction: column;
}

.form_jsearch tr {
    padding: 0 0 40px;
    margin: 0 0 40px;
    border-bottom: 3px dotted rgba(51, 51, 51, 0.3);
}

.form_jsearch tr:last-child {
    margin: 0;
}

.form_jsearch tr td ul {
    display: flex;
    flex-wrap: wrap;
}

.form_jsearch tr td ul li {
    width: 18.5%;
    height: 38px;
    border: 1px solid #CECECE;
    border-radius: 3px;
    display: flex;
    align-items: center;
    text-align: center;
}

.form_jsearch tr td ul li input {
    position: relative;
    left: 10px;
}

.form_jsearch tr td ul li:not(:nth-child(5n+5)) {
    margin-right: 1.3%;
}

.form_jsearch tr td ul li:nth-child(n+6) {
    margin-top: 10px;
}

.form_jsearch tr td h5 {
    font-size: 1.7rem;
    font-weight: bold;
    margin: 0 0 10px;
    border-left: none;
}

.form_jsearch tr td h5:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 3px;
    background-color: #f8b62b;
    vertical-align: middle;
    margin-right: 10px;
}

.form_jsearch tr td ul li label {
    font-size: 1.4rem;
    display: inline-block;
    width: 100%;
}

.form_jsearch tr th {
    width: 100%;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    padding: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    margin: 0 0 5px;
    text-align: left;
}

.form_jsearch tr:nth-of-type(1) th {
    margin-top: 10px;
}

#page_jsearch_page .submit input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 420px;
    height: 71px;
    margin: 30px auto 0;
    box-sizing: border-box;
    border: 0;
    font-size: 2.2rem;
    font-weight: bold;
    background-color: #0086D1;
    color: #FFF;
    border-radius: 100px;
}


.search_title {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    margin: 0 0 50px;
    padding: 19px 10px;
    background-color: rgba(13, 148, 135, 0.05);
}

.form_jsearch select {
    width: 154px;
    height: 45px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #CECECE;
    border-radius: 3px;
}

.j_kouku_ken:nth-child(n+2) {
    margin-top: 40px;
}

.j_choumei_ken:nth-child(n+2) {
    margin-top: 40px;
}

.eki h5:nth-child(n+2) {
    margin-top: 40px;
}

.p-commercial__searchList a:hover {
    background-color: #f8b62b;
    color: #fff;
}

.form_jsearch {
    width: 100%;
}

.form_jsearch th {
    width: 150px;
    vertical-align: top;
}

.form_jsearch th,
.form_jsearch td {
    display: inline-block;
    box-sizing: border-box;
    padding: 10px;
}

.form_jsearch td {
    max-width: 100%;
}

.form_jsearch td > ul > li {
    margin-right: 15px;
}

.txt_search {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px;
}

#page_jsearch_page {
    width: 100%;
}

#searchpage input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
}

#searchpage select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}

#searchpage input[type="radio"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
}

@media screen and (max-width:1000px) {
    .search_lists {
        width: 100%;
    }
}

@media screen and (max-width:820px) {
    .search_box {
        margin: 0 0 40px;
    }

    .form_jsearch tr td ul li:not(:nth-child(3n+3)) {
        margin-right: 1.2%;
    }

    .form_jsearch tr td ul li {
        width: 23%;
        height: 30px;
        font-size: 1.1rem;
        padding-left: 5px;
    }

    .form_jsearch tr td ul li {
        width: 31%;
        height: 28px;
        font-size: 1.2rem;
    }

    .search_box .submit {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        background-color: rgba(0, 0, 0, 0.4);
        padding: 20px 0;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
    }

    #page_jsearch_page .submit input {
        margin: 0 auto;
        height: 55px;
    }

    .form_jsearch tr th {
        font-size: 2rem;
        margin: 0 0 10px;
        padding: 4px 0 4px 10px;
    }

    .form_jsearch tr td h5 {
        margin: 0 0 12px;
    }

    .form_jsearch tr td h5:before {
        width: 18px;
        height: 3px;
    }

    .form_jsearch tr td ul li:nth-child(n+4) {
        margin-top: 8px;
    }

    .form_jsearch tr td ul li input {
        left: 0;
    }

    .search_list a:after {
        right: 6px;
    }

    .search_list a {
        height: 40px;
    }

    .form_jsearch tr {
        padding: 0px 0px 30px;
        margin: 0px 0px 30px;
        border-bottom: 2px dotted rgba(51, 51, 51, 0.3);
    }
}

@media screen and (max-width:590px) {
    .form_jsearch tr {
        padding: 0px 0px 20px;
        margin: 0px 0px 20px;
    }

    #page_jsearch_page .submit input {
        width: 90%;
        height: 50px;
        font-size: 1.7rem;
    }

    .search_lists {
        margin: 0 auto 30px;
    }

    .search_list:nth-child(n+3) {
        margin-top: 10px;
    }

    .search_list {
        width: 48%;
    }

    .search_list a {
        height: 30px;
    }

    .form_jsearch tr th {
        font-size: 1.8rem;
        margin: 0 0 5px;
    }

    .form_jsearch tr th {
        padding: 0 0 0 10px;
    }

    .form_jsearch tr td h5 {
        font-size: 1.5rem;
    }

    .form_jsearch tr td h5:before {
        margin-right: 5px;
    }

    .form_jsearch tr td ul li {
        width: 100%;
    }

    .form_jsearch tr td ul li:nth-child(n+2) {
        margin-top: 8px;
    }

    .form_jsearch select {
        width: 112px;
        height: 38px;
    }

    .form_jsearch tr th {
        font-size: 1.6rem;
        margin: 0 0 5px;
    }
}

/*----------------------------------------
	archive_fudo
----------------------------------------*/
#list_add_table table {
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
}

.new_mark {
    display: inline-block;
    font-size: 12px;
    color: #FF4B4B;
    border-radius: 3px;
    margin: 0 0 0 5px;
    background: unset;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth"100;
    padding: 3px 4px;
}

.archive-fudo .list_address table {
    margin: 0 auto 2px;
}

.archive-fudo .list_address_td {
    font-size: 1.4rem;
}

.archive-fudo #list_address table {
    margin: 0 0 2px;
}

.archive-fudo .entry-title {
    font-size: 2rem;
    letter-spacing: 0.06em;
    font-weight: bold;
}

.archive-fudo .entry-title a {
    display: flex;
    align-items: center;
}

.archive-fudo .entry-title a:hover {
    text-decoration: none;
}

.archive-fudo.archive .list_simple_box {
    width: 100%;
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 5px;
    background-color: #ededed;
}

.archive_fudo {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.archive_fudo_lists {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 25px;
}

.btn_detail_lists {
    display: flex;
    align-items: flex-start;
}

.btn_detail {
    margin-left: auto;
}

.list_simple_boxtitle {
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #DBDBDB;
    display: flex;
    align-items: center;
}

.archive_fudo_lists .list_picsam {
    width: 28.2%;
}

.archive_fudo_lists .list_detail {
    width: 68.2%;
}

.archive_fudo_price_wrap {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.archive_fudo_price_wrap span {
    font-size: 1.5rem;
}

.archive_fudo_price {
    font-size: 2.3rem;
    letter-spacing: 0.06em;
    color: #FF4B4B;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.archive_fudo_access {
    margin: 0 0 22px;
}

.archive_fudo_access_icon {
    margin: 0 9px 0 0;
}

.archive_fudo_access tr {
    display: flex;
    align-items: center;
}

.archive_fudo_access tr th {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    width: 113px;
    height: 29px;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.archive_fudo_access tr td {
    width: 80%;
    font-size: 1.6rem;
    vertical-align: middle;
    margin: 0 0 0 10px;
    line-height: 1.5;
}

.archive_fudo_madori {
    display: flex;
    align-items: center;
}

dl.list_price dt {
    width: auto;
    padding: 5px 8px 5px 0;
}

.archive_fudo_madori {
    display: none;
}


.archive_fudo .list_picsam_img,
.archive_fudo #second_img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
}

.list_picsam .bukken_thumb_s,
.list_picsam_img .bukken_thumb_s,
#second_img .bukken_thumb_s {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.list_picsam .bukken_thumb_s img,
#second_img .bukken_thumb_s img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
    object-position: right top;
    height: 197px;
}

.list_picsam .bukken_thumb_s a {
    width: 100%;
}

.list_price_others_th {
    background: #F4F7FD;
}

.icon_jyoutai_sell,
.icon_jyoutai_contract {
    background-color: #FF4B4B;
    display: inline-block;
    text-align: center;
    margin: 0 15px 0 0;
    padding: 6px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.5rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.icon_jyoutai_contract {
    background-color: #0086D1;
}

.dpoint2 {
    margin: 0 0 0 10px;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
}

.dpoint2:before {
    content: "/";
    display: inline-block;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
}

.list_price_wrap {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.btn_detail a {
    width: 135px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: transparent linear-gradient(116deg, #FF9731 0%, #E8DB40 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    margin: 15px auto 0;
    transition: all 0.3s;
    position: relative;
    border-radius: 100px;
}

.btn_detail a:after {
    content: "";
    position: absolute;
    background-image: url(images/button_arrow01.svg);
    width: 8px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.nav-previous {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 10px 0;
    padding: 17px 25px;
    background-color: #E1F1F9;
}

.nav-previous > b,
.nav-previous > a {
    font-size: 2rem;
    letter-spacing: 0.08em;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 20%;
    font-size: 1.5rem;
}

.nav-previous a img {
    display: inline-block;
    width: 18px;
    margin: 0 10px 0 0;
}

#nav-above1:first-child {
    margin: 0 0 10px;
}

.pageback {
    margin: 0 0 30px;
}

.c-page-headline-fudo {
    margin: 0 0 100px;
}

.list_detail_box {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 0;
}

.list_detail_box dl {
    width: 42.4%;
    display: flex;
    align-items: center;
}

.list_detail_box dl:nth-child(n+3) {
    margin: 10px 0 0;
}

.list_detail_box dl dt {
    font-size: 1.5rem;
    width: 105px;
    height: 26px;
    margin: 0 13px 0 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.list_detail_box dl dd {
    font-size: 1.5rem;
    width: 58%;
    line-height: 1.2;
}

.entry-title-category {
    display: block;
    font-size: 1.2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 5px;
}

.list_point {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #FF4A4A;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

@media screen and (max-width: 1400px) {
    .archive_fudo {
        width: 100%;
        padding: 0 5%;
    }

    .icon_jyoutai_sell,
    .icon_jyoutai_contract {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 1000px) {
    .archive_fudo {
        width: 100%;
        padding: 0 4%;
    }
}

@media (max-width: 820px) {

    .archive-fudo .list_simple_box {
        padding: 15px;
    }

    .archive_fudo_lists {
        flex-wrap: wrap;
        padding: 0 10px 20px;
    }

    .archive_fudo_lists .list_picsam {
        width: 40%;
        margin-bottom: 15px;
    }

    .archive_fudo_lists .list_detail {
        width: 58%;
    }

    .list_picsam .bukken_thumb_s img {
        height: 150px;
    }

    .archive_fudo_price {
        font-size: 2rem;
    }

    .archive_fudo_access tr th,
    .archive_fudo_access tr td {
        font-size: 1.4rem;
    }

    .btn_detail a {
        width: 120px;
        height: 38px;
        font-size: 1.3rem;
    }

    .list_detail_box dl:nth-child(n+3) {
        margin: 0;
    }

    .list_detail_box dl {
        width: 48%;
        margin-bottom: 10px;
    }

    .entry-title {
        font-size: 1.8rem;
    }

    .archive_fudo_lists {
        align-items: flex-start;
    }
}

@media (max-width: 590px) {

    .archive-fudo .list_simple_box {
        padding: 12px;
        margin-bottom: 25px;
    }

    .archive_fudo_lists {
        flex-direction: column;
        padding: 0 10px 20px;
    }

    .archive_fudo_lists .list_picsam {
        width: 100%;
        margin-bottom: 15px;
    }

    .archive_fudo_lists .list_detail {
        width: 100%;
    }

    .list_picsam .bukken_thumb_s img {
        height: auto;
        max-height: 220px;
        object-fit: cover;
    }

    .archive_fudo_price {
        font-size: 1.9rem;
    }

    .archive_fudo_price_wrap span {
        font-size: 1.3rem;
    }

    .archive_fudo_access {
        margin-bottom: 15px;
    }

    .archive_fudo_access tr {
        align-items: flex-start;
        flex-direction: column;
    }

    .archive_fudo_access tr th {
        width: auto;
        margin-bottom: 5px;
        font-size: 1.3rem;
        height: auto;
        padding: 5px 10px;
    }

    .archive_fudo_access tr td {
        width: 100%;
        margin-left: 0;
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .list_detail_box {
        margin: 10px 0px 0px;
    }

    .list_detail_box dl {
        width: 100%;
        margin-bottom: 6px !important;
    }

    .list_detail_box dl dt {
        width: 82px;
        padding: 5px 10px;
        margin-right: 10px;
        font-size: 1.3rem;
    }

    .list_detail_box dl dd {
        width: auto;
        font-size: 1.3rem;
    }

    .btn_detail a {
        width: 140px;
        height: 38px;
        margin-top: 10px;
        font-size: 1.3rem;
    }

    .entry-title {
        font-size: 1.7rem;
    }

    .nav-previous {
        padding: 8px 10px;
    }

    .nav-previous a {
        font-size: 1rem;
    }

    .nav-previous a img {
        width: 14px;
        margin: 0px 5px 0px 0px;
    }

    .archive-fudo .list_simple_box {
        padding: 0;
    }

    .list_simple_boxtitle {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon_jyoutai_sell,
    .icon_jyoutai_contract {
        font-size: 1.2rem;
        margin: 0 0 5px 0;
        padding: 6px 8px;
    }

    .archive-fudo .entry-title {
        font-size: 1.7rem;
    }

    .btn_detail {
        margin-right: auto;
    }
}
