@charset "utf-8";

/* CSS Document */
/*Theme Name: origin
  Author: marudou-lanc
  Description: Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
/*  CSS Reset 
------------------------------------------------------------------*/

*,
*::before,
*::after {
    box-sizing: border-box
}

* {
    margin: 0
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}


picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%
}

img {
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    -webkit-appearance: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

#root,
#__next {
    isolation: isolate
}

/*ios form reset*/

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

/*
input[type="radio"] {
    display: none;
}
input[type="radio"]:checked + label {
    background: #ff0000;
}
*/
table {
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}

/* flex
--------------------------------------------------------*/
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex.start {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.flex.end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex.center {
    -webkit-justify-content: center;
    justify-content: center;
}

.flex.around {
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.flex.between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex.stretchf {
    -webkit-align-items: stretch;
    align-items: stretch;
}

.flex.ai_center {
    -webkit-align-items: center;
    align-items: center;
}

.flex.ai_start {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex.ai_end {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.flex.nowrap {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex.column {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex.row {
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.flex.c_reverse {
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex.r_reverse {
    -ms-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.noshrink {
    flex: 0 0 auto;
}

.grow {
    flex: 1 1 auto;
}

/* base
---------------------------------------------------------------*/

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

iframe {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    padding: 0;
}

li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    transition: .3s;
}

a[href^="tel:"]:hover {
    opacity: 1;
}

.slick-slide {
    outline: none;
}

.tb_only {
    display: none;
}

.sp_only {
    display: none;
}

.tb_pc {
    display: inherit;
}

.sp_tb {
    display: none;
}


.txt_center {
    text-align: center;
}

.txt_right {
    text-align: right;
}

.txt_left {
    text-align: left;
}

.inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;

    @media(max-width: 1279px) {
        max-width: 100%;
    }

    @media(max-width: 767px) {
        padding: 0 3.2vw;
    }

}

body {
    font-weight: 400;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

.js-scrollable {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--color-prim) rgba(255, 255, 255, 0.25);

    &::-webkit-scrollbar {
        width: 12px;
        height: 6px;
        border-radius: 15px;
    }

    &::-webkit-scrollbar-thumb {
        background-color: var(--color-prim);
        border-radius: 15px;
        border: 3px solid transparent;
        background-clip: padding-box;
    }

    &::-webkit-scrollbar-track {
        background-color: rgba(255, 255, 255, 0.25);
        border-radius: 15px;
    }
}


/* debug 
----------------------------------------------------------------------------------------------*/
html.int {
    margin-top: 0 !important;
}

#wpadminbar {
    z-index: 10000000 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    /* display: none;*/
}

/*--------------------------------------------------------------------------------------------*/
@media(min-width: 768px) and (max-width:1279px) {
    .pc_only {
        display: none;
    }

    .tb_only {
        display: inherit;
    }

    .sp_only {
        display: none;
    }

    .tb_pc {
        display: inherit;
    }

    .sp_tb {
        display: inherit;
    }

    .sp_pc {
        display: none;
    }


}

@media(max-width: 767px) {

    .pc_only {
        display: none;
    }

    .tb_only {
        display: none;
    }

    .sp_only {
        display: inherit;
    }

    .tb_pc {
        display: none;
    }

    .sp_tb {
        display: inherit;
    }

    .sp_pc {
        display: inherit;
    }

}


/*-----------------------------------------------------------
-------------------------------------------------------------

/* root
-----------------------------------------------------------*/
:root,
::before, ::after {
    /* font family */
    --font-original: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
    --font-sans: YakuHanJP_Noto, "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
    --font-serif: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    --font-en: sans-serif;

    /* line height */
    --line-height-s: 1.4;
    --line-height-m: 1.6;
    --line-height-l: 1.8;

    /* color */
    --color-prim: #f1644e;
    --color-sec: #31cfce;
    --color-third: #9e00ff;
    --color-red: #e50012;
    --color-text: #001738;
    --color-text-caption: #666;
    --color-text-link: cornflowerblue;
    --color-text-visited: #681da8;
    --color-text-caution: #C81432;

    /* color border*/
    --color-border-base: #EBEBEB;

    /*color bg*/
    --color-bg: #EEF9FC;

    /*color grad*/
    --color-key-grad: linear-gradient(to right, #bf9c50, #e50012);


    /*最後消す*/
    --color-key-grad-p: linear-gradient(135deg, #E6F7FF 0%, #E6FFF2 50%, #EEFFE6 100%);

    --color-bg-gray: #F7F7F7;
    --color-bg-caution: #FDE5E9;
    --color-pdf: #D81E1E;
    --color-blue: #0082CA;
    --color-green: #009900;
    --color-orange: #EB6100;
    --color-pink: #E61673;
    --color-purple: #6B1685;
    --color-navy: #0A2D88;
    --color-sky: #2EA7E0;
    --color-turquoise: #00A9AD;
    --color-lime: #CFDB00;
    --color-gold: #FFA40C;
    --color-blue-p: #F0FAFF;
    --color-green-p: #F7FFF0;
    --color-yellow-p: #FFFDF0;
    --color-orange-p: #FFF6F0;
    --color-pink-p: #FFF0F7;
    --color-red-p: #FFF0F2;
    --color-purple-p: #FBF0FF;
    --color-navy-p: #F0F4FF;
    --color-sky-p: #F0FAFF;
    --color-turquoise-p: #F0FFFF;
    --color-lime-p: #FEFFF0;
    --color-gold-p: #FFF9F0;
    --color-form-border: #CCCCCC;
    --color-form-bg: #EBEBEB;
    --color-form-placeholder: #999999;
    --color-form-error: #D81E1E;
    --color-form-error-bg: #FFF0F0;

}

/* base 
----------------------------------------------------------*/
html {
    width: 100%;
    font-size: 62.5%;
}

body {
    letter-spacing: 0em;
    font-size: 1.6rem;
    line-height: var(--line-height-l);
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
    margin-top: 0px;
    background-color: var(--color-bg);
    background-image: url(images/bg_mv02_01.jpg);
    background-attachment: fixed;
    background-size: cover;
    color: var(--color-text);
    @media(max-width: 767px) {
        position: relative;
        background-image: inherit;
        &::before{
            content: '';
            display: block;
            width: 100%;
            height: 100vh;
            background-image: url(images/bg_mv02_01.jpg);
            background-size: cover;
            position: fixed;
            top: 0;
            left: 0;
            z-index: -2;
        }
    }

}

.wrap_foot_stick {
    position: sticky;
    top: 100vh;
    width: 100%;
    padding-bottom: 0px;
}

#wrap_page {
    /*height: 100%;*/
}

.btn01 a, .wrap_submit input {
    width: 250px;
    background: var(--color-text);
    color: #fff;
    display: block;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 10px;
    max-width: 100%;
    border-radius: 128px;

}

.wrap_side_content01 {
    .btn01 {
        margin-bottom: 25px;

        & a {
            width: 100%;
            background: var(--color-sec);
            border: none;
            border-radius: 50px;
        }
    }
}

.btn01.inner_archive a {
    margin: auto 0;
    text-decoration: none !important;
    color: #fff !important;
}

.btn01.tel a {
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn01.tel a span {
    position: relative;
    padding-left: 50px;
    height: 100%;
    display: inline-block;
    font-size: 3.8rem;
    line-height: 1;

    &::before {
        content: '';
        width: 24px;
        height: 24px;
        background-image: url(images/icn_tel.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 11px;
        bottom: 0;
        left: 0;
        margin: auto;
    }
}

.btn01.mail a {
    padding-top: 3px;
    padding-bottom: 6px;
}

.btn01.mail a span {
    height: 100%;
    position: relative;
    padding-left: 33px;
    display: inline-block;

    &::before {
        content: '';
        width: 24px;
        height: 24px;
        background-image: url(images/icn_mail.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    body {
        min-width: 100%;
        max-width: 100%;
        overflow-y: scroll;
    }
}

@media(max-width: 767px) {
    body {
        min-width: 100%;
        max-width: 100%;
        font-size: 1.4rem;
    }
}

/* header -base
----------------------------------------------------------*/
#g-nav {
    display: none;
}

.header {
    position: fixed;
    padding: 25px 50px;
    /*background: var(--color-prim);*/
    color: var(--color-text);
    width: calc(100% - 120px);
    top: 0px;
    z-index: 100000;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(3px);

    @media(max-width: 1279px) {
        max-width: 100%;
        width: calc(100% - 6.4vw);
        padding: 15px 20px;
    }

    @media(max-width: 767px) {
        padding: 10px 15px;

    }

    & h1 {
        font-size: 32px;
        line-height: 1;
        padding-top: 0px;

        /*font-family: sans-serif;*/
        @media(max-width: 1279px) {
            font-size: 24px;
        }

        @media(max-width: 767px) {
            font-size: 20px;
        }


        & a {
            .icn {
                display: block;
                width: 40px;
                height: 40px;
                background-image: url(images/icn_foot.png);
                background-position: center center;
                background-size: contain;
                background-repeat: no-repeat;
            }

            .ttl {
                padding-bottom: 8px;
                padding-left: 9px;
            }
        }

    }
}

.pc_nav {
    height: 100%;

    & ul {
        height: 100%;
        gap: 15px 0;

        & li {
            border-left: 1px solid;
            padding: 0px 12px 0px;
            color: var(--color-text);
            font-size: 1.6rem;
            font-weight: bold;

            &.btn01 {
                border-left: none;

                a {
                    width: 185px;

                }
            }
        }
    }
}

.openbtn {
    display: none;
}

@media(max-width: 1279px) {

    .pc_nav {
        display: none;
    }

    /* btn */
    .openbtn {
        display: block;
        position: fixed;
        top: 9px;
        right: 0vw;
        background: var(--color-sec);
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
        z-index: 100000;
        /*transform: scale(0.7);*/
    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #fff;
    }


    .openbtn span:nth-of-type(1) {
        top: 15px;
        width: 45%;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
        width: 35%;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
        width: 20%;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-135deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(135deg);
        width: 30%;
    }

    /*sp_menu*/
    #g-nav {
        display: block;
    }

    #g-nav.panelactive {
        position: fixed;
        z-index: 99999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    .circle-bg {
        position: fixed;
        z-index: 3;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--color-sec);
        transform: scale(0);
        right: -50px;
        top: -50px;
        transition: all .6s;
    }

    .circle-bg.circleactive {
        transform: scale(50);
    }

    #g-nav-list {
        display: none;
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
    }

    #g-nav ul {
        opacity: 0;
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 335px;
        padding-top: 200px;
        padding-bottom: 80px;

    }

    #g-nav.panelactive ul {
        opacity: 1;
    }

    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
        background: var(--color-text);
        margin-bottom: 1rem;
    }

    #g-nav li.logo {
        font-size: 18px;
        line-height: 18px;
        padding-top: 3px;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
        margin-bottom: 2rem;
        font-weight: bold;

        & a {
            /*reset*/
            color: #333;
            text-decoration: none;
            padding: 0px;
            display: flex;
            text-transform: inherit;
            letter-spacing: inherit;
            font-weight: normal;
            background: inherit;

            .icn {
                display: block;
                width: 40px;
                height: 40px;
                background-image: url(images/icn_foot.png);
                background-position: center center;
                background-size: contain;
                background-repeat: no-repeat;
            }

            .ttl {
                padding-left: 0.75rem;
                color: #fff;
            }
        }

    }

}




/* footer - base
----------------------------------------------------------*/
.footer {
    background: var(--color-text);
    color: #fff;
    padding: 6rem 0rem 2rem;

    .area {
        padding-bottom: 8rem;

        .col_logo {
            width: 330px;
        }

        .col {
            max-width: calc((100% - 330px));

            @media(max-width: 1024px) {
                width: 100%;
                max-width: 100%;
                margin-top: 25px;
            }

            .links {
                line-height: 2.4;
                gap: 14px;

                @media(max-width: 1024px) {
                    &.flex.end {
                        -webkit-justify-content: flex-end;
                        justify-content: flex-start;
                    }
                }

                & li {
                    position: relative;
                    padding-left: 16px;
                    @media(max-width: 767px) {
                        padding-left: 8px;
                        text-align: left;
                    }


                    &::before, &::after {
                        content: "";
                        position: absolute;
                        top: calc(50% + 1px);
                        left: 0;
                        width: 8px;
                        height: 2px;
                        border-radius: 9999px;
                        background-color: var(--color-prim);
                        transform-origin: calc(100% + 0px) 50%;
                        @media(max-width: 767px) {
                            top: calc(50% + 3px);
                        }
                    }

                    &::before {
                        transform: rotate(45deg);
                    }

                    &::after {
                        transform: rotate(-45deg);
                    }


                    & a {
                        position: relative;
                        padding-bottom: 0px;

                        &::after {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0%;
                            width: 100%;
                            height: 1px;
                            background: #fff;
                            transition: all .3s;
                            transform: scale(0, 1);
                            transform-origin: left top;
                        }
                    }

                    & a:hover::after {
                        transform: scale(1, 1);
                        @media(max-width: 767px) {
                            transform: scale(0,1);
                        }
                    }

                }
            }
        }
    }

    .copyright {
        text-align: center;
        font-size: 1.2rem;
    }
}

.wrap_bread {
    padding: 1rem 0;
    font-size: 1.2rem;

    & a {
        text-decoration: underline;
    }
}

@media (min-width: 768px) and (max-width:1279px) {}

@media(max-width: 767px) {
    .footer {

        width: 100%;
        padding: 4rem 0vw 2rem;

        .copyright {
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.2;
            padding-top: 5rem;
        }

        .area {
            padding-bottom: 0;
            gap: 25px 20px;

            .col_logo {
                margin-bottom: 2rem;
                width: 100%;
                text-align: center;
            }

            .col {
                margin-bottom: 3rem;
                width: calc(50% - 10px);
                max-width: 50%;

                & ul {
                    text-align: center;

                    & li {
                        color: #fff;
                        line-height: 2.5;

                        & a {
                            display: inline-block;
                            padding: 5px 10px;
                            text-decoration: none;
                            width: 100%;
                        }
                    }
                }
            }
        }
    }

    /*custom*/
    .footer {

        .area {

            .col_logo {}

            .col {
                margin-bottom: 3rem;
                width: 100%;
                max-width: 100%;

                &.bnrs {
                    text-align: center;
                }

                & ul {
                    display: flex;
                    justify-content: flex-start;
                    flex-wrap: wrap;
                    gap: 0 15px;

                    & li {
                        width: calc((100% - 15px)/2);                        
                    }
                }
            }
        }
    }
}

/* page - base one clums
----------------------------------------------------------*/
.main_page_content {
    overflow-x: hidden;
    width: 100%;
}

.page_header {
    height: 325px;
    background-image: url(images/page_bg_hero.png);
    padding-top: 100px;
    background-size: cover;
    background-repeat: no-repeat;

    @media(max-width: 767px) {
        background-image: url(images/page_header_sp.png);
        background-size: cover;
    }

    & .wrap {
        height: 100%;

        & h1 {
            font-size: 4.8rem;
            color: var(--color-text);
            line-height: 1.25;
        }

        & p {
            font-weight: 800;
            font-size: 24px;
            color: var(--color-prim);
        }

    }
}

.page_main {
    padding: 100px 0 0;
    background-image: url(images/wallpaper_00021.jpg);

    & section {
        padding-bottom: 150px;

        &.bg_white {
            background: #fff;
            padding: 50px 20px 100px 20px;
            margin-bottom: 100px;

            @media(max-width: 767px) {
                padding: 20px;
            }

        }
    }
}

.ttl_page_content01 {
    margin-bottom: 75px;
    font-size: 3.6rem;
    position: relative;
    padding-bottom: 6px;

    .en {
        display: block;
        text-align: center;
        line-height: 1;
        font-size: 1.6rem;
        color: var(--color-prim);

    }

    .copy {
        display: block;
        text-align: center;
    }

    &.cta {
        margin-bottom: 45px;
    }

    &::before {
        content: '';
        width: 75px;
        border-radius: 6px;
        height: 6px;
        background-color: var(--color-prim);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
    .page_header {
        height: 180px;
        padding-top: 65px;

        & .wrap {
            & h1 {
                font-size: 3.2rem;
            }

            & p {
                font-size: 1.8rem;
            }

        }
    }

    .page_main {
        padding: 45px 0 0;

        & section {
            padding-bottom: 75px;
        }
    }

    .ttl_page_content01 {
        margin-bottom: 45px;
        font-size: 2.4rem;
        position: relative;
        padding-bottom: 18px;

        &::before {
            content: '';
            width: 50px;
            border-radius: 3px;
            height: 3px;
        }
    }
}


/* single - base two clums (if use one clum when use page base css)
----------------------------------------------------------*/
.side_stick {
    top: 160px;
    position: sticky;
}

.wrap_twclmn {
    width: 100%;
    margin-top: 60px;
    padding-bottom: 5rem;

    & main {
        padding-right: 40px;
        width: calc(100% - 300px);
        max-width: 100%;
        position: relative;
    }

    & aside {
        width: 300px;
    }
}

.common_the_content {

    .wp-caption {
        width: 100% !important;
    }

    & h2 {
        margin-bottom: 1.5rem;
    }

    & p {
        margin-bottom: 2rem;

        &.wp-caption-text {
            text-align: center;
            color: silver;
            margin-bottom: 2rem;
        }
    }

    & ul {
        padding-bottom: 1rem;
        padding-left: 2rem;

        & li {
            list-style-type: circle;
            margin-bottom: 1rem;
        }

    }

    & ol {
        padding-bottom: 1rem;
        padding-left: 2rem;

        & li {
            list-style-type: decimal;
            margin-bottom: 1rem;
        }
    }

    & a {
        color: var(--color-text-link);
        text-decoration: underline;
    }



}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
    .wrap_twclmn {
        width: 100%;
        margin-top: 60px;

        & main {
            width: calc(100% - 0px);
            max-width: 100%;
            margin-bottom: 50px;
            padding-right: 0;
        }

        & aside {
            width: 100%;
            margin-right: 0px;
            border-right: none;
        }
    }
}


/* archive - base
----------------------------------------------------------*/
.post_item {
    position: relative;
    margin-bottom: 50px;
    background: #fff;
    height: 200px;
    overflow: hidden;

    & a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .post_new {
        position: absolute;
        background: var(--color-gold);
        color: #333;
        font-weight: bold;
        font-size: 14px;
        top: 0;
        right: 0;
        padding: 4px 15px;
    }

    .img {
        font-size: 0;
        position: relative;
        width: 200px;
        height: 200px;

        &>img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        &>span {
            position: absolute;
            top: 0;
            left: 0;
            background: #ddd;
            color: #fff;
            padding: 4px 15px;
            font-size: 14px;
        }
    }

    .col {
        width: calc(100% - 200px);
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 24px;

        .data {
            font-weight: bold;
            color: #000;
            font-size: 2rem;
            margin-bottom: 15px;

        }

        .ttl {
            font-size: 3rem;
            font-weight: bold;
            line-height: 1.25;
        }
    }
}

.wrap_pagenation01 {
    margin-top: 75px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-numbers {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    font-size: 2rem;
    background-color: #fff;
    border-radius: 3px;
    transition: color .3s cubic-bezier(0.25, 1, 0.5, 1);
    width: 45px;
    height: 45px;
    font-weight: bold;

    &.next, &.prev {
        padding-bottom: 6px;
    }

    &::before {
        position: absolute;
        top: -2px;
        left: -2px;
        z-index: -1;
        border-radius: 10px;
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        content: "";
        background-color: #000;
        border-radius: 5px;
    }

    &:hover {
        color: var(--color-prim);
    }

    &:hover::before {
        background: var(--color-red);
        background: -webkit-linear-gradient(to right, #ffdc00, #e50012);
        background: var(--color-key-grad);
    }

    &.dots {
        color: #ddd;

        &::before {
            display: none;
        }
    }

    &.current {
        color: #a6a6a6;
        border-radius: 5px;
        background-color: #f2f2f2;

        &::before {
            display: none;
        }
    }

}

@media(max-width: 767px) {
    .nav-links {
        gap: 1rem;
    }

    .post_item {
        margin-bottom: 25px;
        height: 100px;

        .post_new {
            font-size: 12px;
            padding: 2px 10px;
        }

        .img {
            font-size: 0;
            position: relative;
            width: 100px;
            height: 100px;

            &>img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }

            &>span {
                position: absolute;
                top: 0;
                left: 0;
                background: #ddd;
                color: #fff;
                padding: 4px 10px;
                font-size: 10px;
            }
        }

        .col {
            width: calc(100% - 100px);
            padding-left: 20px;
            padding-right: 20px;
            padding-top: 2px;

            .data {
                font-weight: bold;
                color: #000;
                font-size: 1.4rem;
                margin-bottom: 0px;

            }

            .ttl {
                font-size: 1.6rem;
                font-weight: bold;
                line-height: 1.25;
            }
        }
    }
}


/* category -base
----------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}

/* contact -base
----------------------------------------------------------*/
input[type="checkbox"], input[type="radio"] {
    display: none;
}

/* checkbox*/
.wpcf7-list-item {
    line-height: 1;

    &.first {
        margin: 0;
    }
}

.wpcf7-list-item+.wpcf7-list-item {
    margin-top: 0;
}

.wpcf7-list-item-label {
    position: relative;
    height: 20px;
    line-height: 20px;
    padding-left: 36px;
    display: inline-block;
}

.search_form_properties li {
    position: relative;
}

.wpcf7-list-item-label::before, .search_form_properties li label::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid;
    background: #fafafa;
    position: absolute;
    left: 0;
    top: -3px;
    box-sizing: border-box;
}

.search_form_properties li label::before {
    top: 1px;
}

input[type="checkbox"]:checked+.wpcf7-list-item-label::before, input[type="radio"]:checked+.wpcf7-list-item-label::before {
    background: #fff;
}

input[type="checkbox"]:checked+.wpcf7-list-item-label::after, input[type="radio"]:checked+.wpcf7-list-item-label::after,
.search_form_properties li input[type="checkbox"]:checked+label::after {
    content: "";
    display: block;
    width: 20px;
    height: 10px;
    border-top: 3px solid var(--color-sec);
    border-right: 3px solid var(--color-sec);
    transform: rotate(135deg);
    position: absolute;
    left: 5px;
    top: 4px;
}

.search_form_properties li input[type="checkbox"]:checked+label::after {
    top: 9px;
}

.wpcf7-response-output {
    text-align: center;
}

.form-error {
    padding-top: 95px;
    margin-bottom: 60px;
    margin-top: -80px;
}

.wrap_form {
    width: 1080px;
    max-width: 100%;
    margin: 0 auto 60px;

    & dt {
        font-size: 1.8rem;
        margin-bottom: 50px;
        width: 275px;
        align-items: start;
        justify-content: flex-end;
        display: flex;
        flex-wrap: wrap;

        span {
            color: #fff;
            font-weight: bold;
            display: inline-block;
            padding: 0px 10px 2px;
            margin-left: 15px;
            font-size: 14px;
            background-color: var(--color-sec);
            position: relative;
            top: -3px;

            &.req {
                background-color: var(--color-prim);
            }
        }

        &:last-of-type {
            align-items: start;
        }
    }

    & dd {
        font-size: 1.6rem;
        width: calc(100% - 325px);
        margin-left: 50px;
        margin-bottom: 50px;

        & input, & textarea {
            width: 100%;
            border: none;
            padding: 7px 14px;
            background: #fafafa;

            &:focus {
                outline: none;
                background: #fafafa;
            }
        }
    }
}


@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 1023px) {
    .wrap_form {
        width: 100%;
        margin: 0 auto 0px;

        & dt {
            font-size: 1.6rem;
            margin-bottom: 15px;
            width: 100%;
            align-items: start;
            justify-content: flex-start;
            display: flex;
            flex-wrap: wrap;

            span {
                display: inline-block;
                padding: 0px 10px 2px;
                margin-left: 10px;
                font-size: 14px;
                position: relative;
                top: -3px;
            }
        }

        & dd {
            font-size: 1.6rem;
            width: calc(100% - 0px);
            margin-left: 0px;
            margin-bottom: 30px;

            & input, & textarea {
                &:focus {}
            }
        }
    }

    .wpcf7-list-item {
        width: calc((100% - 1em)/2);
    }

    .wpcf7-list-item:nth-of-type(2n+1) {
        margin: 0;
    }

    .wpcf7-list-item .wpcf7-list-item-label {
        margin-bottom: 20px;
    }

    .wpcf7-response-output {
        text-align: left;
    }
}

/* sitemap -base
----------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}

/* staff -base
----------------------------------------------------------*/
.txt_caption01 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 90px;

    &.txt_contact01 {
        margin-bottom: 0;
    }

    &.cta {
        margin-bottom: 45px;
    }

    &.archive {
        text-align: left;
    }
}

.item_staff {
    margin-bottom: 150px;

    .img {
        width: 350px;
        max-width: 100%;
        height: 400px;

        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top left;
        }
    }

    .col {
        width: calc(100% - 350px);
        padding-left: 50px;
    }

    .icn {
        display: inline-block;
        padding: 15px 20px;
        background: #ddd;
        margin-right: 30px;
    }

    .yaku {
        font-size: 3rem;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 35px;
    }

    .name {
        margin-bottom: 60px;
        line-height: 1;
        font-size: 3rem;
        font-weight: bold;
    }

    .txt {
        font-size: 18px;
        line-height: 1.4;
    }

    .ttl {
        font-size: 2.4rem;
        line-height: 1;
        padding-bottom: 15px;
        border-bottom: 2px solid;
        margin-bottom: 35px;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
    .item_staff {
        margin-bottom: 75px;

        .img {
            width: 100%;
            height: 260px;
            margin-bottom: 15px;
        }

        .col {
            width: calc(100% - 0px);
            padding-left: 0px;
        }

        .icn {
            display: inline-block;
            padding: 15px 20px;
            background: #ddd;
            margin-right: 15px;
        }

        .yaku {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .name {
            margin-bottom: 30px;
            font-size: 2rem;
            font-weight: bold;
        }

        .txt {
            font-size: 14px;
            line-height: 1.4;
            padding-bottom: 20px;
            border-bottom: 2px solid;
        }

        .ttl {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
    }

    .txt_caption01 {
        text-align: left;
        font-size: 18px;
    }

    .txt_caption01 {
        &.cta {
            margin-bottom: 45px;
            font-size: 1.6rem;
            padding: 0 12px;
            font-weight: bold;
        }
    }
}

/* faq -base
----------------------------------------------------------*/
.list_faq {
    dt {
        color: #fff;
        padding: 25px 25px 25px 80px;
        position: relative;
        background: var(--color-sec);
        font-size: 2.0rem;
        font-weight: bold;
        font-size: 2rem;

        & span {
            position: absolute;
            top: 0;
            left: 25px;
            bottom: 0;
            margin: auto;
            background: #fff;
            border-radius: 50%;
            display: inline-block;
            width: 36px;
            height: 36px;
            text-align: center;
            line-height: 36px;
            color: #000;
        }
    }

    dd {
        padding: 25px 10px 60px 80px;
        font-size: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
    .list_faq {
        dt {
            padding: 12px 25px 15px 65px;
            font-size: 1.4rem;

            & span {
                top: 9px;
                left: 15px;
                bottom: auto;
                line-height: 34px;
            }
        }

        dd {
            font-size: 1.4rem;
            padding: 20px 10px 35px 10px;
        }
    }
}

/* privacy -base
----------------------------------------------------------*/
.privacy_head_txt {
    font-size: 2rem;
    margin-bottom: 8rem;
}

.page_main {
    dl.list_pp {
        margin-bottom: 6rem;

        &:last-of-type {
            margin-bottom: 0;
        }

        & dt {
            font-size: 2rem;
            font-weight: bold;
            padding-left: 10px;
            border-left: 3px solid var(--color-prim);
            margin-bottom: 2rem;
        }

        & dd {
            font-size: 1.8rem;

            & a {
                color: var(--color-text-link);
                text-decoration: underline;
            }
        }
    }
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
    .privacy_head_txt {
        font-size: 1.6rem;
        margin-bottom: 6rem;
    }

    .page_main dl.list_pp {
        margin-bottom: 6rem;

        & dt {
            font-size: 1.6rem;
            border-left: 2px solid #000;
            margin-bottom: 2rem;
        }

        & dd {
            font-size: 1.4rem;
        }
    }
}



/************************* Do not delete until here **************************************/

/* header -custom
----------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}




/* footer - custom
----------------------------------------------------------*/
.wrap_foot_cta {
    position: relative;
    /*background-image: url(images/bg_cta.jpeg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding: 4px 0.5em;
    z-index: 10000;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 450px;
    padding: 60px 0;

    @media(max-width: 767px) {
      /*  background-image: url(images/bg_cta_sp.png);*/
    }
}

.in_cta {
    padding: 10px 0 8px;
    gap: 0 30px;
}

.wrap_cta01 .flex {
    gap: 40px;
}

.wrap_cta01 {
    .btn01 a {
        width: 310px;
        font-size: 1.8rem;
    }

    .btn01.mail a {
        width: 310px;
        font-size: 1.8rem;
        height: 55px;
        line-height: 55px;
        padding: 0;
    }

    .btn01.tel a span {
        font-size: 2.8rem;
        padding-left: 32px;

        &::before {
            top: 7px;
        }
    }
}



.logo_foot {
    &>a {
        -webkit-justify-content: start;
        justify-content: start;
    }

    .icn {
        display: block;
        width: 60px;
        height: 60px;
        background-image: url(images/icn_foot.png);
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .ttl {
        display: block;
        line-height: 60px;
        padding-left: 1rem;
        font-size: 4rem;
        padding-bottom: 4px;
        color: #fff;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
    .logo_foot {
        &>a {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .icn {
            width: 60px;
            height: 60px;
        }

        .ttl {
            font-size: 3.2rem;
        }
    }

    .wrap_cta01 .flex {
        gap: 20px;
    }
}



/* archive - custom
----------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}

/* category - custom
----------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}

/* single - custom
----------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}

/* corporation -custom
----------------------------------------------------------*/
.page_main {
    & dl.list_corp {
        margin-bottom: 0rem;
        width: 860px;
        max-width: 100%;
        margin: 0 auto;
        gap: 0rem 35px;

        & dt {
            /*reset*/
            font-size: 2rem;
            font-weight: bold;
            padding-left: 0;
            border-left: none;
            margin-bottom: 0;
            /*add*/
            width: 200px;
            padding-top: 4rem;
            border-top: 2px solid #333;
            padding-bottom: 4rem;

            &:last-of-type {
                border-bottom: 2px solid #333;
            }
        }

        & dd {
            /*reset*/
            font-size: 2rem;
            /*add*/
            width: calc(100% - 200px - 35px);
            padding-top: 4rem;
            border-top: 2px solid #d0d0d0;
            padding-bottom: 4rem;

            &:last-of-type {
                border-bottom: 2px solid #d0d0d0;
            }

            & a {
                /*default*/
                color: var(--color-text-link);
                display: inline-block;
                padding-bottom: 0px;
                line-height: 1.25;
                border-bottom: 1px solid;
            }
        }
    }
}

#access {
    margin: 0 auto;
    max-width: 100%;
    width: 860px;
    margin-top: -100px;
    padding-top: 100px;

    & iframe {
        width: 100%;
        margin-bottom: 45px;

    }
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {
    .page_main {
        & dl.list_corp {
            margin-bottom: 0rem;
            width: 100%;
            margin: 0 auto;
            gap: 0rem 35px;

            & dt {
                /*add*/
                width: 100%;
                padding-top: 1rem;
                padding-bottom: 0rem;
                padding-left: 10px;
                padding-right: 10px;
                font-size: 1.6rem;

                &:last-of-type {
                    border-bottom: none;
                }
            }

            & dd {
                /*add*/
                width: calc(100% - 0px - 0px);
                padding-top: 0rem;
                border-top: none;
                padding-bottom: 1rem;
                font-size: 1.4rem;
                padding-left: 10px;
                padding-right: 10px;

                &:last-of-type {
                    border-bottom: 2px solid #333;
                }

            }

        }
    }
}

/* properties
----------------------------------------------------------*/
.archive_properties_ttl {
    padding: 8px 10px;
    background-color: var(--color-prim);
    color: #FFF;
    text-align: center;
    font-size: 20px;
}

.archive_properties_ttl span {
    font-size: 36px;
    display: inline-block;
    padding-right: 5px;
    line-height: 1;
}

.post_properties {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid burlywood;
}

.post_properties .img {
    width: 300px;
    height: 250px;
    font-size: 0;
    position: relative;
}

.post_properties .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post_properties .img figcaption {
    position: absolute;
    padding: 0px 10px;
    background-color: var(--color-sec);
    color: #fff;
    top: 0;
    left: 0;
    font-size: 1.6rem;
}



.post_properties .col {
    width: calc(100% - 400px);
    margin-left: 50px;
}

.post_properties .col .name {
    width: 100%;
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.post_properties .col .name a:hover {
    opacity: 1;
    text-decoration: none;
}

.post_properties .col .price01 {
    width: 32.5%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    height: 50px;
    line-height: 50px;
}

.post_properties .col .price01 dt {
    width: 120px;
    text-align: center;
}

.post_properties .col .price01 dd {
    width: calc(100% - 120px);
    text-align: center;
    color: var(--color-prim);
    font-weight: bold;
    font-size: 18px;
}

.post_properties .col .price02 {
    width: 67.5%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    height: 50px;
    line-height: 50px;
}

.post_properties .col .price02 li:nth-child(2n+1) {
    width: 120px;
    text-align: center;
}

.post_properties .col .price02 li:nth-child(2n) {
    width: calc(50% - 120px);
    text-align: center;
}

.post_properties .col .access {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;

    & p {
        width: 100%;
    }
}

.post_properties .col .access dt {
    text-align: center;
    width: 120px;
    justify-content: center;
}

.post_properties .col .access dd {
    padding-left: 35px;
    width: calc(100% - 120px);
}

.post_properties .col .access dt:first-of-type {
    margin-bottom: 5px;
}

.post_properties .col .access dd:first-of-type {
    margin-bottom: 5px;
}

.post_properties .col .list {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.post_properties .col .list dt {
    width: 120px;
    text-align: center;
    margin-bottom: 5px;
}

.post_properties .col .list dd {
    width: calc(50% - 120px);
    text-align: center;
    border-left: 1px solid #eee;
    margin-bottom: 5px;
}

.post_properties .col .list dt:nth-of-type(n+3) {
    margin-bottom: 0px;
}

.post_properties .col .list dd:nth-of-type(n+3) {
    margin-bottom: 0px;
}

.post_properties .btns {
    padding-top: 25px;
    width: 100%;
}


@media(max-width: 767px) {
    .post_properties .img {
        width: 100%;
        margin-bottom: 15px;
    }

    .post_properties .col {
        width: 100%;
        margin-left: 0px;
    }

    .archive_properties_ttl {
        font-size: 18px;
    }

    .archive_properties_ttl span {
        font-size: 24px;
    }

    .post_properties {
        position: relative;
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 2px solid darkslategray;
    }

    .post_properties .col .price01 {
        width: 100%;
        height: 40px;
        line-height: 40px;
    }

    .post_properties .col .price02 {
        width: 100%;
        height: auto;
        line-height: inherit;
        border-bottom: none;
        border-top: none;
    }

    .post_properties .col .price02 li:nth-child(2n+1) {
        width: 120px;
        text-align: center;
        height: 40px;
        line-height: 40px;
        color: #fff;
        background: var(--color-sec);

    }

    .post_properties .col .price02 li:nth-child(2n) {
        overflow: hidden;
        width: calc(100% - 120px);
        text-align: center;
        height: 40px;
        line-height: 40px;
        border-bottom: 1px solid #eee;
        text-align: left;
        padding-left: 10px;
    }

    .post_properties .col .price02 li:nth-child(1) {}

    .post_properties .col .price02 li:nth-child(2) {
        border-bottom: 1px solid #eee;
    }

    .post_properties .col .access {
        width: 100%;
        padding: 0px 0;
        border-bottom: none;
        align-items: stretch;
    }

    .post_properties .col .access dt {
        height: auto;
        line-height: 1.75;
        text-align: center;
        color: #fff;
        background: var(--color-sec);
        padding: 10px;
    }

    .post_properties .col .access dd {
        height: auto;
        line-height: 1.75;
        text-align: center;
        border-bottom: 1px solid #eee;
        padding: 10px;
        text-align: left;
    }

    .post_properties .col .access dt:first-of-type {
        margin-bottom: 0px;
        border-bottom: none;
    }

    .post_properties .col .access dd:first-of-type {
        margin-bottom: 0px;
        border-bottom: 1px solid #eee;
        padding-left: 8px;
        padding-right: 8px;
    }

    .post_properties .col .access dd {
        padding-left: 8px;
        padding-right: 8px;
    }

    .post_properties .col .price01 dt {
        color: #fff;
        background: var(--color-sec);
        height: 40px;
        line-height: 40px;
    }

    .post_properties .col .list dd {
        width: calc(100% - 120px);
        text-align: left;
        padding-left: 10px;
        border-left: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 0px;
        height: 40px;
        line-height: 40px;
    }

    .post_properties .col .list {
        width: 100%;
        padding: 0px;
        border-bottom: none;
    }

    .post_properties .col .list dt {
        color: #fff;
        background: var(--color-sec);
        margin-bottom: 0px;
        height: 40px;
        line-height: 40px;
    }

    .post_properties .col .name {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .post_properties .col .price01 dt {
        font-size: 16px;
    }

    .post_properties .col .price01 dd {
        font-size: 16px;
        text-align: left;
        padding-left: 10px;
    }

    /*.post_properties .col .list dt:nth-of-type(1),
    .post_properties .col .list dd:nth-of-type(1) {
        display: none;
    }*/

    .post_properties .col .list dt:nth-of-type(3),
    .post_properties .col .list dd:nth-of-type(3) {
        display: none;
    }

    .post_properties .col .list dt:nth-of-type(4),
    .post_properties .col .list dd:nth-of-type(4) {
        display: none;
    }

    .post_properties .col dd {
        border-right: 1px solid #eee;
    }

}

/* lease -custom
----------------------------------------------------------*/
.single-properties main, .single-lease main {
    padding: 10rem 0 10rem;
}

.single_form {
    margin-top: 10rem;
    padding-bottom: 50px 40px;
    background: #fff;

    @media (max-width: 1279px) {
        padding: 20px;
    }

    .ttl_properties {
        margin-bottom: 0;
    }
}

.wrap_tax {
    padding: 10rem 0 10rem;
}

.single-properties .inner {
    max-width: 1280px;
}

.wrap_properties_images {
    width: 600px;
    font-size: 0;
}

.properties_slider01,
.properties_slider_thumb01 {
    display: none;
}

.properties_slider01.slick-initialized,
.properties_slider_thumb01.slick-initialized {
    display: block;
}

.properties_slider01 {
    width: 600px;
    height: 480px;
}

.properties_slider01 .slick-list,
.properties_slider01 .slick-track {
    height: 100%;
}

.properties_slider01 {
    background: #000;
}

.properties_slider01 li {
    width: 100%;
    height: 100%;
}

.properties_slider01 .slick-slide figure {
    position: relative;
    width: 100%;
    height: 100%;
}

.properties_slider01 .slick-slide img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
    object-position: center;
    top: 0;
    bottom: 0;
    margin: auto;
}

.properties_slider01 .slick-prev {
    left: 0;
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.75);
}

.properties_slider01 .slick-prev:before {
    content: '';
    display: inline-block;
    margin-bottom: 0px;
    margin-left: 3px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(-45deg);
}

.properties_slider01 .slick-next {
    right: 0;
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.75);
}

.properties_slider01 .slick-next:before {
    content: '';
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 3px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(135deg);
}

.properties_slider_thumb01 .slick-track {
    margin-left: 0;
}

.properties_slider_thumb01 .slick-slide {
    height: 75px;
    background: #333;
}

.properties_slider_thumb01 .slick-slide figure {
    height: 100%;
}

.properties_slider_thumb01 .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.properties_slider_thumb01 figure {
    opacity: .3;
    transition: opacity .3s linear;
}

.properties_slider_thumb01 .slick-current figure {
    opacity: 1;
}

.properties_detail01 {
    width: calc(100% - 600px);
    padding-left: 60px;
}


.post_properties .img figcaption.b1,
.properties_detail01 .syubetu .b1 {
    background-color: #12A7A3;
}

.post_properties .img figcaption.b2,
.properties_detail01 .syubetu .b2 {
    background-color: #FF4B4B
}

.post_properties .img figcaption.b3,
.properties_detail01 .syubetu .b3 {
    background-color: #2E497F;
}

.post_properties .img figcaption.b4,
.properties_detail01 .syubetu .b4 {
    background-color: #E4CF74
}

.properties_detail01 .list_tag {
    gap: 15px;
}

.properties_detail01 .syubetu span {
    background-color: var(--color-sec);
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
    font-size: 18px;
}

.properties_detail01 .name {
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.properties_detail01 .list {}

.properties_detail01 .list dt {
    width: 20%;
    color: #fff;
    background: darkslategray;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.properties_detail01 .list dd {
    width: 80%;
    height: 60px;
    line-height: 60px;
    padding-left: 1em;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.properties_detail01 .list dd:first-of-type {
    border-top: 1px solid #eee;
}

.properties_detail01 .list dd.price {
    font-size: 18px;
    height: 60px;
    line-height: 56px;
    color: #FF4B4B;
    font-weight: bold;
}

.ttl_properties {
    font-size: 30px;
    text-align: center;
    position: relative;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.ttl_properties::before {
    content: '';
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    width: 75px;
    height: 2px;
    background-color: var(--color-prim);
}

.properties_detail02, .properties_detail03 {
    margin-top: 10rem;
}

.properties_detail02 .list {
    width: 48%;
}

.properties_detail02 .list03 {
    width: 100%;
    margin-top: 2rem;
}

.properties_detail02 .list04 {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.properties_detail02 .list dt {
    width: 150px;
    padding: 10px;
    text-align: center;
    background-color: darkslategray;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.properties_detail02 .list dd {
    width: calc(100% - 150px);
    border-bottom: 1px solid #eee;
    padding: 10px 1em;
    border-right: 1px solid #eee;
}

.properties_detail02 .list dd:first-of-type {
    border-top: 1px solid #eee;
}

.btn_properties01 {
    text-align: center;
}

.btn_properties01 a {
    display: inline-block;
    width: 360px;
    background: #000;
    color: #fff;
    padding: 16px 10px;
    font-weight: 500;
    background-color: #FF4B4B;
}

.properties_data {
    margin-bottom: 6rem;
}

.wrap_search01 {
    margin-top: 5rem;
}

.lease_company {
    .img {
        width: 300px;
        height: 300px;
        font-size: 0;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    .list {
        width: calc(100% - 300px);
        padding-left: 50px;

        dt {
            max-width: 100%;
            width: 150px;
            text-align: center;
        }

        dd {
            max-width: 100%;
            width: calc(100% - 150px);

            br {
                display: none;
            }
        }
    }
}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 900px) {
    .properties_detail01 .list dt {
        width: 30%;
        height: 40px;
        line-height: 40px;
    }

    .properties_detail01 .list dd {
        width: 70%;
        height: 40px;
        line-height: 40px;
    }

    .properties_detail01 .list dd.price {
        font-size: 18px;
        height: 40px;
        line-height: 40px;
    }

    .wrap_tax {
        padding: 5rem 0 10rem;
    }

    .properties_data {
        margin-bottom: 3rem;
        display: none;
    }

    .single-properties main {
        padding: 2rem 0 6rem;
    }

    .wrap_properties_images {
        width: 100%;
    }

    .properties_detail01 {
        width: 100%;
        padding-left: 0px;
    }

    .properties_slider01 {
        width: 100%;
        height: 42vh;
    }

    .properties_slider_thumb01 .slick-slide {
        width: 25% !important;
    }

    .properties_slider_thumb01 .slick-track {
        width: 100% !important;
    }

    .properties_detail01 {
        width: 100%;
        padding-left: 0px;
        margin-top: 3rem;
    }

    .properties_detail02 {
        margin-top: 3rem;
    }

    .ttl_properties {
        font-size: 18px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .ttl_properties::before {
        width: 75px;
        height: 2px;
    }

    .properties_detail02 .list {
        width: 100%;
    }

    .properties_detail02 .list dt {
        width: 30%;
    }

    .properties_detail02 .list dd {
        width: 70%;
    }

    .properties_detail02 .list02 dd:first-of-type {
        border-top: none;
    }

    .btn_properties01 a {
        width: 100%;
    }

    .lease_company {
        .img {
            width: 100%;
            height: auto;
        }

        .list {
            margin-top: 5rem;
            width: calc(100% - 0px);
            padding-left: 0px;

            dt {
                max-width: 100%;
                width: 30%;
                text-align: right;
            }

            dd {
                max-width: 100%;
                width: calc(70% - 0px);

                br {
                    display: inherit;
                }
            }
        }
    }

    .form-error {
        padding-top: 100px;
        margin-top: -100px;
        margin-bottom: 25px;
    }

    .properties_detail02 .list03 {
        width: 100%;
        margin-top: 2rem;

        & dt {
            width: 100%;
        }

        & dd {
            width: 100%;
        }
    }
}

/* search_form_properties
----------------------------------------------------------*/
.search_form_properties {}

.search_form_properties .box {
    margin-bottom: 35px;

    .select {
        position: relative;
        background: #fff;
        width: calc(100% - 175px);
        text-align: left;
        padding-left: 1.5rem;
        display: block;

        &>select {
            width: 100%;
            height: 100%;
            display: block;
        }

        &:before {
            content: '▼';
            position: absolute;
            top: 0;
            bottom: 0;
            right: 15px;
            line-height: 1;
            height: 18px;
            margin: auto;
        }
    }
}

.search_form_properties .box2 .box {
    width: calc(100% / 3);
}

.search_form_properties .list {
    width: calc(100% - 175px);
    padding: 10px 15px 0;

}

.search_form_properties .list li {
    padding: 0px 15px 0px 30px;
    margin-bottom: 10px;
    width: 195px;
}

.search_form_properties .list li label {
    display: block;
    padding-left: 6px;
}

.search_form_properties .btn {
    text-align: center;
    margin-top: 100px;
}

.search_form_properties input[type="submit"] {
    display: inline-block;
    width: 100%;
    background: var(--color-sec);
    color: #fff;
    padding: 16px 10px;
    font-weight: 500;
    max-width: 350px;
    border-radius: 50px;
}

.search_form_properties .list li:last-of-type {}

.search_form_properties .ttl {
    width: 175px;
    padding: 10px 10px;
    background: var(--color-sec);
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.txt_search01 {
    font-size: 16px;
    padding: 15px 0 0 0;
    margin-bottom: 75px;
}

.wrap_archive_properties.archive {
    margin-top: 100px;
}

.wrap_search01 {
    margin-top: 100px;
}

.wrap_result01 {
    padding-top: 2rem;
}

.wrap_result01 p {
    margin-top: 6px;
}

.wrap_result01 p:first-of-type {
    margin-top: 0px;
}

@media(max-width: 767px) {
    .search_form_properties .ttl {
        width: 100%;
        padding: 6px 10px;
        font-size: 16px;
    }

    .search_form_properties .list {
        width: 100%;
        padding: 12px 0 0;
        border-top: none;
        border-right: none;
    }

    .search_form_properties .list li {
        padding: 0px 6px 12px 6px;
        padding-left: 36px;
        width: 50%;
    }

    .search_form_properties .box2 .box {
        width: 100%;
    }

    .search_form_properties .box {
        .select {
            width: 100%;
            text-align: left;
            display: block;
            line-height: 3;

            select {
                padding: 10px 15px;
            }
        }
    }

    .search_form_properties .btn {
        margin-top: 55px;
    }

    .search_form_properties input[type="submit"] {
        width: 75%;
        padding: 16px 10px;
        font-weight: 500;
        max-width: 350px;
        font-size: 16px;
    }

    .wrap_pagenation01 {
        margin-top: 2.5rem;
    }

    .wrap_result01 p {
        margin-top: 6px;
    }

    .wrap_result01 p:first-of-type {
        margin-top: 0px;
    }

    .wrap_archive_properties {
        margin-top: 50px;
    }

    .wrap_search01 {
        margin-top: 50px;
    }
}

/*  inner parts
----------------------------------------------------------*/
.mt100 {
    margin-top: 100px;
}

.mt150 {
    margin-top: 150px;

    @media(max-width: 767px) {
        margin-top: 75px;
    }
}

.list_img_txt01 {
    .item {
        gap: 50px 0px;
        border-radius: 50px;
        overflow: hidden;

        @media(max-width: 1279px) {
            gap: 0;
            border-radius: 30px;
        }
    }

    .img {
        font-size: 0;
        width: 40%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;

            @media(max-width: 1279px) {

                &.sp_tb_left {
                    object-position: left;
                }
            }

        }

        @media(max-width: 1279px) {
            width: 100%;
            height: 70vw;
        }
    }

    .col {
        width: calc(60% - 0px);
        background: #fff;
        padding: 35px 50px;

        @media(max-width: 1279px) {
            width: 100%;
            padding: 25px;
        }

        .ttl {
            font-size: 2rem;
            padding-left: 1.5rem;
            border-left: 2px solid var(--color-sec);
            margin-bottom: 2rem;
        }

        .btn01 {
            margin-top: 5rem;
        }
    }
}

.txt_intro01 {
    font-size: 2rem;

    @media(max-width: 767px) {
        font-size: 1.8rem;
    }
}

.list_triple01 {
    gap: 50px;

    @media(max-width: 1279px) {
        width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    & .item {
        width: calc((100% - 100px)/3);

        @media(max-width: 1279px) {
            width: 100%;
        }

        .img {
            font-size: 0;
            margin-bottom: 2rem;
        }

        .ttl {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;

            &::before,
            &::after {
                content: '';
                width: 3px;
                height: 40px;
                background-color: var(--color-sec);
            }

            &::before {
                margin-right: 30px;
                transform: rotate(-35deg)
            }

            &::after {
                margin-left: 30px;
                transform: rotate(35deg)
            }
        }
    }
}

.list_triple02 {
    gap: 25px;

    &>li {
        background: rgba(255, 255, 255, 0.75);
        width: calc((100% - 50px)/3);
        text-align: center;
        border-radius: 25px;

        @media(max-width: 767px) {
            max-width: 375px;
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

        .num {
            font-weight: bold;
            font-size: 4rem;
        }

        .img {
            font-size: 0;
            padding: 20px 100px 0;

            @media(max-width: 1024px) {
                padding: 20px 25px 0;
            }

            @media(max-width: 767px) {
                padding: 15px 80px 0;
            }
        }

        .copy {
            font-size: 2rem;
            margin-bottom: 1rem;

            @media(max-width: 767px) {
                font-size: 1.8rem;
            }
        }

        &:nth-of-type(1) .num {
            color: var(--color-prim);
        }

        &:nth-of-type(2) .num {
            color: var(--color-sec);
        }

        &:nth-of-type(3) .num {
            color: var(--color-third);
        }
    }
}

.list_triple03 {
    padding-top: 150px;
    @media(max-width: 767px) {
        padding-top: 75px;
    }

    &>li {
        gap: 50px;
        position: relative;
        margin-top: 100px;
        @media(max-width: 767px) {
            gap: 25px;
            margin-top: 50px;
        }

        &:first-of-type {
            margin-top: 0;
        }

        .col_l {
            width: 350px;
            position: sticky;
            top: 100px;

            @media(max-width: 1024px) {
                position: relative;
                top: auto;
                width: 100%;
            }

            @media(max-width: 767px) {
                isplay: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                -webkit-justify-content: flex-start;
                justify-content: flex-start;
                -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
                -webkit-align-items: center;
                align-items: center;
            }

            .num {
                font-size: 7rem;
                font-weight: bold;
                color: var(--color-prim);
                line-height: 1;
                @media(max-width: 767px) {
                    width: 100%;
                    font-size: 2.4rem;
                    text-align: center;
                }
            }

            .copy {
                margin-top: 40px;
                font-size: 2.75rem;
                @media(max-width: 767px) {
                    width: calc(100% - 0px);
                    padding-left: 20px;
                    font-size: 1.6rem;
                    margin-top: 0;
                    text-align: center;
                }
            }

            .txt {
                margin-top: 4rem;
                font-size: 1.6rem;
                @media(max-width: 767px) {
                    margin-top: 2rem;
                }
            }
        }

        &:nth-of-type(2) .col_l .num {
            color: var(--color-sec);
        }

        &:nth-of-type(3) .col_l .num {
            color: var(--color-third);
        }

        .col_r {
            width: calc(100% - 400px);

            @media(max-width: 1024px) {
                width: 100%;
            }
        }

        &:nth-of-type(2) .col_r .list_double_min01 .ttl span {
            background-color: var(--color-sec);
        }

        &:nth-of-type(3) .col_r .list_double_min01 .ttl span {
            background-color: var(--color-third);
        }
    }
}

.list_double_min01 {
    gap: 25px 50px;

    .item {
        width: calc((100% - 50px) / 2);
        background: rgba(255, 255, 255, 0.75);
        padding: 20px;
        border-radius: 25px;

        @media(max-width: 767px) {
            width: 100%;
            padding: 20px;
        }

        .ttl {
            position: relative;
            padding-left: 65px;

            & span {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background-color: var(--color-prim);
                font-size: 3rem;
                color: #fff;
                line-height: 46px;
                text-align: center;
            }
        }

        .txt {
            padding-left: 65px;
        }
    }
}

.tbl01 {
    margin: 0 auto;
    font-size: 2.4rem;

    @media(max-width: 767px) {
        font-size: 1.6rem;
    }

    tbody {
        tr {
            border-bottom: 1px solid;
        }

        th, td {
            padding: 1.5rem 8rem;
            text-align: center;

            @media(max-width: 1279px) {
                padding: 1.5rem 3rem;
            }

            @media(max-width: 767px) {
                padding: 1.5rem 1rem;
            }
        }

        .head {
            background: var(--color-prim);
            color: #fff;
        }
    }

}

@media (min-width: 768px) and (max-width: 1279px) {}

@media(max-width: 767px) {}



/*  front_parts
----------------------------------------------------------*/
.en {
    text-transform: uppercase;
}

.mv01 {
    position: relative;
    width: 100%;
    height: 100svh;

    @media(max-width: 767px) {}

    & img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    .txt_mv {
        color: #fff;
        position: absolute;
        left: 4.5%;
        bottom: 6%;
        z-index: 2;
        border-top: 2px solid var(--color-prim);
        padding: 1rem 2rem;
        background-color: rgba(0, 0, 0, 0.4);

        @media(max-width: 767px) {}

        .en {
            letter-spacing: .15em;
            font-weight: bold;
            font-size: 2rem;

            @media(max-width: 767px) {}
        }

        .copy {
            font-size: clamp(32px, 3vw, 48px);
            letter-spacing: .21em;
            line-height: 1.5;
            margin: .5em 0;

            @media(max-width: 767px) {}
        }
    }
}

.mv02 {
    position: relative;
    width: 100%;
    /*height: 100svh;*/

    padding-top: 215px;

    @media(max-width: 767px) {
        padding-top: 10px;
    }

    .col {
        width: 475px;

        @media(max-width: 1024px) {
            width: 50%;
        }

        @media(max-width: 767px) {
            width: 100%;
            margin-top: 100px;
        }

        .ttl {
            line-height: 1.5;
            font-size: 3.2rem;

        }

        .txt {
            margin-top: 2rem;
            line-height: 1.5;
        }

        .list {
            gap: 50px;
            margin-top: 2rem;
            color: var(--color-prim);

            .stxt {
                font-size: 1.6rem;
                line-height: 1.25;
                display: block;
                font-weight: bold;

                height: 40px;
            }

            .num {
                font-size: 5rem;
                font-weight: bold;
                line-height: 1;

                & span {
                    font-size: .5em;
                }

                & small {
                    font-size: .25em;
                }
            }

            & li:nth-of-type(2) .stxt {
                padding-top: 2rem;
            }
        }

        .caption {
            font-size: 14px;
            margin-top: 2rem;

            @media(max-width: 767px) {
                font-size: 12px;
                padding-left: 1em;
                text-indent: -1em;
            }
        }

        .btn01.mail a {
            margin-top: 4rem;
            margin-left: 0;
            margin-right: auto;

            @media(max-width: 767px) {
                margin-left: auto;
            }
        }
    }

    .img {
        width: calc(100% - 475px);
        padding-left: 55px;

        @media(max-width: 1024px) {
            width: 50%;
            position: absolute;
            right: 0;
            bottom: 0;
            top: 100px;
            margin: auto;
            height: fit-content;
        }

        @media(max-width: 767px) {
            width: 100%;
            position: relative;
            margin-bottom: 3rem;
            padding-left: 0;
        }
    }

    @media(max-width: 767px) {
        >.flex.start {
            -ms-flex-direction: column-reverse;
            -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
        }

        .list.flex.start {
            -webkit-justify-content: center;
            justify-content: center;
        }
    }
}

.front_about02 {
    .txt_about02 {
        background: rgba(255, 255, 255, 0.75);
        padding: 20px;
        border-radius: 25px;
    }
}

.box_five01 {
    position: relative;
    padding-top: 25px;
    margin-top: 7rem;

    @media(max-width: 767px) {
        margin-top: 0;
    }

    .ttl {
        position: absolute;
        inset: 0;
        margin: auto;
        width: fit-content;
        height: fit-content;
        padding-top: 60px;
        text-align: center;
        text-align: center;
        padding: 50px 80px 30px;
        background: var(--color-third);
        color: #fff;
        z-index: 2;
        border-radius: 25px;

        @media(max-width: 1024px) {
            width: 60%;
            top: 10%;
        }

        @media(max-width: 767px) {
            width: 80%;
            padding: 30px 30px 15px;
            top: 0;
        }

        & span {
            position: absolute;
            background: var(--color-sec);
            color: #fff;
            left: 0;
            right: 0;
            top: -24px;
            margin: auto;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1.6rem;
            width: fit-content;

            @media(max-width: 767px) {
                font-size: 14px;
            }
        }
    }

    .list {
        gap: 15px;

        & li {
            text-align: center;
            position: relative;
            width: calc((100% - 15px) / 2);
            padding: 40px 160px 40px 20px;
            background: #fff;
            min-height: 170px;
            border-radius: 25px;

            &:nth-of-type(2n) {
                padding-left: 160px;
                padding-right: 20px;
            }

            .sttl {
                color: var(--color-prim);
                display: block;
                font-weight: bold;

                @media(max-width: 767px) {
                    font-size: 13px;
                }
            }

            .copy {
                font-size: 1.8rem;
                font-weight: bold;
                padding-top: 0.5rem;
                display: inline-block;

                @media(max-width: 767px) {
                    font-size: 15px;
                    text-align: left;
                }
            }

            @media(max-width: 1024px) {
                padding: 40px 20px 40px;

                &:nth-of-type(2n) {
                    padding-left: 20px;
                    padding-right: 20px;
                }

                &:nth-of-type(1), &:nth-of-type(2) {
                    padding-bottom: 85px;
                }

                &:nth-of-type(3), &:nth-of-type(4) {
                    padding-top: 85px;
                }
            }

            @media(max-width: 767px) {
                padding: 20px 20px;

                &:nth-of-type(2n) {
                    padding-left: 20px;
                    padding-right: 20px;
                }

                &:nth-of-type(1), &:nth-of-type(2) {
                    padding-bottom: 70px;
                }

                &:nth-of-type(3), &:nth-of-type(4) {
                    padding-top: 70px;
                }
            }
        }
    }

    .caption {
        text-align: right;
        font-size: 1.4rem;

        @media(max-width: 767px) {
            padding-left: 1em;
            text-indent: -1em;
            font-size: 1.2rem;
            margin-top: 8px;
            text-align: left;
        }
    }
}



.front_about01 {
    margin-top: 200px;

    @media(max-width: 767px) {
        margin-top: 100px;
    }

    .wrap {
        .area {
            width: 30%;

            .ttl {
                writing-mode: tb-rl;

                .txt {
                    font-size: 3.9rem;
                    letter-spacing: 0.35em;
                    display: inline;
                    line-height: 1.8;
                    background-position: right top;
                    background-repeat: repeat-y;
                    padding-bottom: 0;
                    padding-right: 0.1em;
                    background-image: linear-gradient(to bottom, #3E1F00, #3E1F00 3px, transparent 1px, transparent 5px);
                    background-size: 2px 7px;

                    @media(max-width: 767px) {
                        font-size: 2.4rem;
                    }
                }

                .en {
                    margin-left: 1.5em;
                    margin-bottom: 0;
                    color: var(--color-sec);
                    font-size: 1.4rem;
                    font-weight: bold;
                    display: block;
                    letter-spacing: .1em;
                    line-height: 1;
                    margin-bottom: .25em;
                    height: 100%;
                }
            }
        }

        .img {
            font-size: 0;
            width: 70%;
            height: 500px;

            @media(max-width: 767px) {
                padding-right: 30px;
                height: 325px;
                margin-top: 65px;
            }

            img {
                object-fit: cover;
                object-position: top left;
                width: 100%;
                height: 100%;
                border-radius: 0 25px 25px 0px;
            }
        }

    }
}

.front_service01 {
    margin-top: 200px;

    @media(max-width: 1279px) {
        margin-top: 100px;
        padding: 0 4.5%;
    }

    .wrap {
        .col_l {
            width: 31%;

            @media(max-width: 1279px) {
                width: 100%;
            }
        }

        .col_r {
            padding-top: 0;
            width: 69%;

            @media(max-width: 1279px) {
                width: 100%;
                padding: 0 3.2vw;
            }
        }
    }
}

.ttl_wrap01 {
    .ttl {
        position: relative;
        margin-bottom: 25px;
        margin-bottom: 25px;

        &::after {
            content: '';
            background-size: 6px 1.5px;
            background-repeat: repeat-x;
            background-position: left top;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1.5px;
            background-image: linear-gradient(to right, #3E1F00, #3E1F00 3px, transparent 1px, transparent 4px);
        }

        .en {
            color: var(--color-sec);
            font-size: 1.4rem;
            font-weight: bold;
            display: block;
            letter-spacing: .1em;
            line-height: 1;
            margin-bottom: .25em;
        }

        .copy {
            font-size: 3.2rem;

            @media(max-width: 767px) {
                font-size: 2.4rem;
            }

            letter-spacing: .2em;
            display: inline-block;
            position: relative;
        }
    }

    .txt {
        margin-bottom: 40px;
    }
}

.wrap_btns01 {
    .btns {
        gap: 50px;

        @media(max-width: 1279px) {
            gap: 10px 20px;
        }

        .btn {
            @media(max-width: 1279px) {
                width: calc((100% - 20px) /2);
            }

            & a {
                width: 100%;
                color: #fff;
                background-color: #ddd;
                display: inline-block;
                width: 30vw;
                height: 12vw;
                position: relative;
                border-radius: 10px;
                overflow: hidden;
                border: 4px solid var(--color-prim);

                @media(max-width: 1279px) {
                    width: 100%;
                    height: 75px;
                }

                &::after {
                    content: '';
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    z-index: 1;
                    top: 0;
                    left: 0;
                    background-color: rgba(0, 0, 0, 0.25);
                }


                & span {
                    font-size: 2.5rem;
                    position: absolute;
                    bottom: 10px;
                    left: 10px;
                    z-index: 2;
                    font-weight: bold;

                    @media(max-width: 767px) {
                        font-size: 1.6rem;
                    }
                }

                & img {
                    object-fit: cover;
                    object-position: center;
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}

main.front {
    padding-bottom: 200px;

    @media(max-width: 767px) {
        padding-bottom: 100px;
    }
}

.front_service02 {
    margin-top: 200px;

    @media(max-width: 767px) {
        margin-top: 100px;
    }

    padding: 0 4.5%;

    .wrap_inner {
        .img {
            width: 47%;

            @media(max-width: 1279px) {
                width: 100%;
                margin-bottom: 45px;
            }

            img {
                object-fit: cover;
                object-position: top left;
                width: 100%;
                height: 100%;
                border-radius: 25px;
            }
        }

        .col {
            width: 47%;
            padding: 0vw 5vw;

            @media(max-width: 1279px) {
                width: 100%;
                padding: 0 3.2vw;
            }
        }
    }
}

.wrap_content01 {
    margin-top: 200px;

    @media(max-width: 1279px) {
        margin-top: 100px;
    }

    .col_l {
        width: 350px;

        @media(max-width: 1279px) {
            width: 100%;
        }
    }

    .col_r {
        width: calc(100% - 350px);
        padding-left: 75px;

        @media(max-width: 1279px) {
            width: 100%;
            padding-left: 0;
        }
    }
}

.voice01 {
    gap: 20px;

    &>li {
        width: calc((100% - 40px) / 3);
        background: #fff;
        padding: 10px;

        @media(max-width: 1279px) {
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

       

        

        >.img {
            font-size: 0;

            & img {
                width: 100%;
                padding: 10px;
                border-radius: 25px;
            }
        }

        >.tag {
            position: relative;
            margin-top: -25px;

            & span {
                display: inline-block;
                padding: 8px 15px;
                line-height: 1;
                border-radius: 10px;
                background-color: var(--color-prim);
                color: #fff;

            }

        }

        >.ttl {
            font-size: 1.8rem;
            margin-top: 10px;
            padding-left: 15px;
        }

        >.txt {
            font-size: 1.4rem;
            padding: 10px 15px;
        }
    }
}

.flow01 {
    gap: 60px;

    .item {
        width: calc((100% - 120px) / 3);
        border: 4px solid var(--color-prim);
        border-radius: 25px;
        background-color: rgba(255, 255, 255, 1);
        padding: 24px 24px 120px;
        position: relative;


        @media(max-width: 1024px) {
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        @media(max-width: 767px) {
            max-width: 375px;
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

        &:nth-of-type(n+2)::before {
            content: "";
            display: block;
            width: 27px;
            height: 37px;
            background: url(images/icn_arrow_double.svg) no-repeat center center;
            background-size: 27px 37px;
            position: absolute;
            left: -47px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }
        @media(max-width: 1024px) {
            &:nth-of-type(n+2)::before {
                left: 0;
                right: 0;
                top: -50px;
                margin: auto;
                -webkit-transform: translateY(0%) rotate(90deg); /* Safari対応 */
                transform: translateY(0%) rotate(90deg);
            }
        }


        .num {
            text-align: center;
            line-height: 1;
            font-size: 3rem;
            font-weight: bold;
            color: var(--color-prim);
            @media(max-width: 767px) {
               font-size: 2.5rem;
            }
        }

        .ttl {
            text-align: center;
            margin-top: 30px;
            font-weight: bold;
            line-height: 1;
            font-size: 2rem;
            font-weight: bold;
            @media(max-width: 767px) {
                font-size: 1.8rem;
                line-height: 1.4;
                margin-top: 20px;
             }
 
        }

        .txt {
            margin-top: 30px;
            font-size: 1.4rem;
            @media(max-width: 767px) {
                margin-top: 20px;
            }
        }

        .img {
            font-size: 0;
            text-align: center;
            width: 80px;
            height: 80px;
            position: absolute;
            bottom: 24px;
            left: 0;
            right: 0;
            margin: auto;
        }
    }
}

.tbl_price01 {
    width: 1200px;
    padding-bottom: 15px;
    @media(max-width: 767px) {
        width: 777px;
    }
    .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        gap: 12px;
        margin-top: 12px;
        font-weight: bold;
    }

    .row li {
        width: calc((100% - 36px - 140px)/3);
        background: #fff;
        text-align: center;
        height: 74px;
        display: flex;
        align-content: center;
        align-items: center;
        flex: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0px;
        height: 74px;
        justify-content: center;
        padding: 16px;
        border: 2px solid #fff;
        font-size: 2rem;
        @media(max-width: 767px) {
            width: calc((100% - 36px - 100px)/3);
            font-size: 1.8rem;
        }

        &:first-of-type {
            background-color: var(--color-text);
            color: #fff;
            width: 140px;
            font-size: 1.6rem;
            position: sticky;
            left: 0;
            @media(max-width: 767px) {
                font-size: 1.4rem;
                width: 100px;
            }
        }

        &.bgc1 {
            background-color: var(--color-prim);
        }

        &.bgc2 {
            background-color: var(--color-sec);
        }

        &.bgc3 {
            background-color: var(--color-third);
        }

        &.bgc4 {
            background-color: #E0F4FA;
        }

        .tin {
            font-size: 1.2rem;
            padding-left: 0.25em;
            padding-bottom: 0.25em;
        }

        .caption, .circle, .cross {
            width: 100%;
            display: inline-block;
            line-height: 1;
        }

        .caption {
            font-size: 1.4rem;
            padding-top: 8px;
            @media(max-width: 767px) {
                font-size: 1.2rem;
                padding-top: 4px;
            }
        }
    }

    .row02 {
        &>li:nth-of-type(2) {
            width: calc((100% - 36px - 140px) / 3 * 3 + 24px);
            @media(max-width: 767px) {
                width: calc((100% - 36px - 100px) / 3 * 3 + 24px);    
            }
        }        
    }

    .row03 {
        &>li:nth-of-type(3) {
            width: calc((100% - 36px - 140px) / 3 * 2 + 12px);
            @media(max-width: 767px) {
                width: calc((100% - 36px - 100px) / 3 * 2 + 12px);    
            }
        }
    }

    .row04 {
        &>li:nth-of-type(2) {
            width: calc((100% - 36px - 140px) / 3 * 2 + 12px);
            @media(max-width: 767px) {
                width: calc((100% - 36px - 100px) / 3 * 2 + 12px);    
            }
        }
    }

    .row_head {
        color: #fff;

        .en, .copy {
            width: 100%;
            line-height: 1;
        }

        .copy {
            font-size: 1.4rem;
            padding-top: 8px;
        }

        &>li:nth-of-type(1) {
            background: transparent;
            border: none;
        }
    }

    .row_cost li, .row_price li {
        align-items: end;
        font-size: 3rem;
        line-height: 1;
    }

    .row_price {
        color: #fff;
    }
}

@media(max-width: 1279px) {
    .btn_double {
        .btn01 {
            width: calc((100% - 25px) /2);
        }
    }

}

/*slider
----------------------------------------------------------*/
.slick-dotted.slick-slider.slider01 {
    margin-bottom: 50px;

    .slick-dots {
        bottom: -40px;

        & li button {
            &::before {
                border-radius: 20px;
                background-color: var(--color-third);
                content: '';
                width: 10px;
                height: 10px;
            }
        }
    }

    .slick-slide {
        margin-right: 25px;
        margin-left: 25px;
        background: #fff;
        position: relative;
        border-radius: 25px;
        overflow: hidden;
        border: 3px solid var(--color-text);
        @media(max-width: 767px) {
            margin-right: 15px;
            margin-left: 15px;
        }

        & a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        & img {
            font-size: 0;
            border-bottom: 2px solid var(--color-text);

        }

        .wrap {
            padding: 20px;
            min-height: 135px;

            .tag {
                border-radius: 10px;
                background: var(--color-third);
                padding: 2px 15px;
                font-size: 1.4rem;
                display: inline-block;
                font-weight: bold;
                color: #fff;
                @media(max-width: 767px) {
                    font-size: 1.2rem;
                    padding: 2px 10px 3px;
                }
            }
            .ttl {
                font-size: 2rem;
                margin-top: 12px;
                line-height: 1.3;
                
            }
        }

    }
}


/*custom
----------------------------------------------------------*/
.front_service02 {
    .wrap_inner {

        .img img {
            object-position: center right;
        }
    }

    .wrap_btns01 {
        .btns {
            gap: 10px 20px;

            .btn {
                width: calc((100% - 20px) /2);

                & a {
                    width: 15vw;
                    height: 9vw;

                    @media(max-width: 1279px) {
                        width: 100%;
                        height: 75px;
                    }


                    & span {
                        font-size: 2rem;
                        bottom: 0px;
                        left: 0px;
                        right: 0;
                        top: 0;
                        margin: auto;
                        width: 100%;
                        height: fit-content;
                        text-align: center;
                        position: absolute;

                        @media(max-width: 767px) {
                            font-size: 1.6rem;
                        }
                    }

                }
            }
        }
    }
}

.wrap_content01 {
    .ttl {
        padding-bottom: 18px;
    }

    .col_r {
        .txt {
            margin-bottom: 75px;

            @media(max-width: 767px) {
                margin-bottom: 50px;
            }
        }

        .flex {
            gap: 50px;

            @media(max-width: 1279px) {
                gap: 25px;
            }
        }
    }

}

.wrap_foot_cta {
    position: relative;

    &::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.35);
        top: 0;
    }

    .in_cta {
        position: relative;
        font-weight: bold;
    }
}

.txt {
    font-size: 1.8rem;

    @media(max-width: 767px) {
        font-size: 1.6rem;
    }
}

.front_price, .calltoaction, .front_feature02, .front_case01, .front_voice01, .front_flow01, .front_faq01, .front_about02 {
    padding-top: 150px;

    @media(max-width: 767px) {
        padding-top: 75px;
    }
}
.front_case01{
        overflow: hidden;
}

.front_faq01 {
    padding-bottom: 150px;
}

.front_faq01 .list_faq dd {
    background: rgba(255, 255, 255, 0.75);
}


@media (min-width: 768px) and (max-width: 1279px) {}