:root {
    --main-color: #133E87;
    --base-color: #F4F7F7;
    --sub-color: #F4F7F7;
    --accent-color: #8AC041;
    --accent-y-color: #BD974A;
    font-family: 'Georgia','Helvetica', 'Yu Mincho', 'Noto Sans JP', meiryo, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

* {
    box-sizing: border-box;
}
html,body,h1,h2,h3,h4,h5,h6,p,ul,li {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
    transition: all 400ms;
}
a:hover {
    opacity: 0.8;
}
p {
    margin-bottom: 1.8em;
    line-height: 1.8em;
}
section {
    overflow: hidden;
}
figure {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}
figure > img {
    max-width: 100%;
    max-height: 100%;
}
table {
    border-collapse: collapse;
}
input, textarea {
    outline: none;
    border: 1px solid #ddd;
    font-family: 'Yu Mincho', 'Noto Sans JP', meiryo, Arial, Helvetica, sans-serif;
    font-size: 16px;
}
input[type="submit"] {
    cursor: pointer;
}

/* clear */
.wp-block-button__link {
    padding: 0;
    color: inherit;
    background-color: inherit;
    border-radius: inherit;
    box-shadow: inherit;
    font-size: inherit;
}
.wp-block-column {
    flex-grow: auto;
    flex-basis: auto;
}
.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: auto;
}
.widget.widget_block::marker {
    display: none;
    content: '';
}
.wp-block-table {
    overflow: inherit;
    line-height: inherit;
}
.wp-block-table td, .wp-block-table th {
    border: none;
}

/* layout */
header {
    z-index: 100;
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
}

/* header */
.header-nav-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 90px;
    margin: auto;
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
}
.header-nav-area > nav {
    display: flex;
    column-gap: 15px;
}
.header-nav ul {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.site-title {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 24px;
    font-weight: 500;
}
.site-title::before {
    display: inline-block;
    width: 55px;
    height: 50px;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}
.language-btn a {
    display: flex !important;
    align-items: center;
    column-gap: 8px;
}
.language-btn a::before {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(../img/language.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}
#header_menu_btn,
#header_menu_area_sp {
    display: none;
}
#header_language_area {
    display: none;
}
#header_language_area.open {
    display: block;
}
#header_language_area {
    position: sticky;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    animation: fadein 0.3s linear;
    opacity: 1;
}
.bogo-language-switcher {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 15px;
}
.bogo-language-switcher li .bogo-language-name {
    display: block;
    /* padding: 10px 50px 10px 20px; */
}
.bogo-language-switcher li.current .bogo-language-name {
    display: block;
    /* padding: 0; */
}
.bogo-language-switcher li .bogo-language-name a {
    display: block;
    padding: 10px 50px 10px 20px;
    line-height: 1.5em;
}
.bogo-language-switcher > li {
    position: relative;
    border-radius: 40px;
    background-color: #fff;
    border: 1px solid #eee;
    color: #aaa;
}
.bogo-language-switcher li.current {
    /* border: 1px solid #ddd; */
    /* box-shadow: 1px 1px 2px rgba(0,0,0,0.25); */
    color: #000;
}
.bogo-language-switcher li .bogoflags {
    position: absolute;
    top: 10px;
    right: 10px;
}
.second-header {
    display: flex;
    align-items: end;
    justify-content: center;
    height: 230px;
    padding-bottom: 25px;
    background-image: url(../img/page-header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}
.second-header .header-title-main {
    font-size: 34px;
}
.second-header .header-title-sub {
    font-size: 18px;
}
.breadcrumb-area {
    padding: 0.5em 0;
    background-color: #ddd;
}
.breadcrumb {
    display: flex;
    align-items: center;
    column-gap: 1.8em;
    max-width: 1200px;
    margin: auto;
}
.breadcrumb a {
    position: relative;
    color: #666;
    font-size: 14px;
}
.breadcrumb a::after {
    position: absolute;
    top: 7px;
    right: -16px;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    content: '';
    transform: rotate(-45deg);
}
.breadcrumb a:last-child::after {
    display: none;
}

/* footer */
footer {
    overflow: hidden;
    border-top: 1px solid #ddd;
}
.footer-inner {
    max-width: 1200px;
    margin: 30px auto;
}
.footer-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.footer-top .footer-company {
    display: flex;
    align-items: center;
    column-gap: 25px;
    font-size: 28px;
    font-weight: bold;
}
.footer-top .footer-company::before {
    display: inline-block;
    width: 70px;
    height: 70px;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}
.footer-top .footer-address > span {
    display: block;
}
.footer-top .footer-links {
    display: flex;
    column-gap: 24px;
    margin-left: auto;
}
.footer-top .footer-links a {
    display: inline-block;
    width: auto;
    height: 40px;
}
.footer-top .footer-links a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-nav {
    margin: 30px auto;
}
.footer-nav ul {
    display: flex;
    justify-content: center;
    column-gap: 1.5em;
}
.footer-copyright {
    text-align: center;
}

/* top */
.top-header {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100vh;
    background-image: url(../img/top-header.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.top-header-message {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: left;
    line-height: 1.5em;
    font-size: 66px;
    color: #fff;
}
.top-header-message > span {
    display: block;
}
.top-section-1 {
    background-image: url(../img/top-section-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.top-section-3 {
    background-color: var(--sub-color);
}
.top-section-5 {
    background-image: url(../img/top-section-5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 18px;
}
.top-section-6 {
    padding-top: 60px;
    background-image: url(../img/top-section-6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 18px;
}
.top-section-inner {
    max-width: 750px;
    margin: auto;
}
.top-section-inner.wide {
    max-width: 1200px;
}
.top-section-title {
    padding: 60px 0;
    text-align: center;
}
.top-section-title-main {
    line-height: 1.5em;
    font-size: 40px;
}
.top-section-title-sub {
    font-size: 24px;
    color: var(--main-color);
}
.top-service-item {
    position: relative;
    display: flex;
    justify-content: end;
    margin-bottom: 60px;
}
.top-service-item.reverse {
    justify-content: start;
}
.top-service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 550px;
    height: 380px;
}
.reverse .top-service-image {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
}
.top-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-service-text {
    flex-grow: 0 !important;
    width: 700px;
    min-height: 380px;
    margin-top: 80px !important;
    padding: 60px 60px 60px 120px;
    background-color: var(--sub-color);
    font-size: 18px;
}
.reverse .top-service-text {
    margin-top: 0 !important;
    margin-bottom: 80px;
    padding: 60px 120px 60px 60px;
}
.top-service-text-inner {
    border-left: 8px solid var(--main-color);
    margin-bottom: 60px;
    padding-left: 2.5em;
}
.top-service-text h3 {
    margin-bottom: 0.5em;
    font-size: 32px;
    font-weight: bold;
    color: var(--main-color);
}
.top-prop-list .slick-track {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 20px;
}
.slick-track {
    margin-left: unset;
    margin-right: unset;
}
.slick-list {
    overflow: visible;
}
.slick-slide {
    height: auto;
}
.slick-next, .slick-prev {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--main-color);
}
.slick-next::before,
.slick-prev::before {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 5px solid #fff;
    border-bottom: 5px solid #fff;
    content: '';
    transform: rotate(-45deg);
}
.slick-prev::before {
    transform: rotate(135deg);
}
.top-prop-list li {
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
}
.top-prop-list li > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
}
.top-news-list li {
    border-bottom: 1px solid #ddd;
}
.top-news-list li a {
    display: flex;
    align-items: center;
    column-gap: 1.5em;
    padding: 1.3em 0;
}
.top-prop-image {
    width: 100%;
    height: 150px;
    background-color: #fafafa;
}
.top-prop-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.top-prop-text {
    padding: 10px 13px;
}
.top-contact-btn a {
    display: flex !important;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.top-contact-btn {
    width: 100%;
}
.top-contact-btn a::before {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 18px;
    background-image: url(../img/mail.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

/* about */
.about .contents {
    padding: 40px 0;
    background-color: var(--base-color);
}
.about .contents section {
    padding-bottom: 60px;
}
.about-section-title {
    position: relative;
    max-width: 1200px;
    margin: 20px auto 50px auto;
    color: var(--main-color);
    font-weight: bold;
}
.about-section-title::after {
    position: absolute;
    left: calc(50% - 50vw);
    bottom: -20px;
    display: inline-block;
    width: 50vw;
    height: 6px;
    background-color: var(--accent-color);
    content: '';
}
.about-section-content {
    position: relative;
    max-width: 1200px;
    min-height: 240px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.about-section-content .main {
    position: relative;
    width: calc(50vw + 50%);
    padding-top: 30px;
    padding-bottom: 1px;
}
.about-section-content .main p {
    z-index: 2;
    position: relative;
    padding-left: 50%;
}
.about-section-content .main::after {
    z-index: 1;
    position: absolute;
    top: 0;
    right: calc(50% - 50vw);
    width: calc(50vw + 25%);
    height: 100%;
    background-color: #fff;
    content: '';
}
.about-section-content .main table {
    z-index: 2;
    position: relative;
    width: 50%;
    border-collapse: collapse;
    margin: 30px 0 40px 50%;
}
.about-section-content .main table td {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.about-section-content .main table td:first-child {
    width: 120px;
}
.about-section-content .main table td:nth-child(2) {
    flex: 1;
}
.about-section-content .head {
    z-index: 10;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}
.about-section-content .head.full {
    height: 100%;
}
.about-section-content .head h3 {
    position: relative;
    display: inline-block;
    margin-left: 20%;
    font-size: 28px;
}
.about-section-content .head h3::after {
    position: absolute;
    left: 0;
    bottom: -0.5em;
    width: 40px;
    height: 3px;
    background-color: var(--main-color);
    content: '';
}
.about-section-content .head span {
    display: inline-block;
}
.about-section-content .head figure {
    max-width: 80%;
    padding: 20px;
}
.about-section-content .head figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* service */
.service .contents {
}
.service section.reverse {
    background-color: var(--base-color);
}
.service .section-inner.col-2 {
    padding: 60px 0;
    column-gap: 60px;
}
.service-text-area {
    flex: 1;
}
.service-image-area {
    flex: 1;
}
.service-image-area figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service ul {
    padding-left: 1.5em;
    padding-bottom: 30px;
}
.service ul li {
    list-style: square;
}

/* property */
.property .section-inner {
    max-width: 1000px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.prop-list li {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}
.prop-item-head {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 15px;
}
.prop-item-cat {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.prop-item-title {
    font-size: 20px;
}
.prop-item-main {
    display: flex;
    column-gap: 40px;
    row-gap: 20px;
}
.prop-item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    border: 1px solid #ddd;
}
.prop-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.prop-item-info {
    flex: 1;
}
.prop-item-table {
    margin-bottom: 10px;
}
.prop-item-table th,
.prop-item-table td {
    padding: 10px 0;
    vertical-align: top;
}
.prop-item-table th {
    width: 110px;
    text-align: left;
}
.prop-item-table .num {
    display: inline-block;
    padding-right: 5px;
    color: #f33;
    font-size: 20px;
}
.prop-item-link a {
    position: relative;
    display: inline-block;
    align-items: center;
    width: auto;
    padding: 15px 55px 15px 40px;
    background-color: var(--main-color);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
    color: #fff;
}
.prop-item-link a::after {
    position: absolute;
    top: calc(50% - 5px);
    right: 35px;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
    transform: rotate(315deg);
}
.prop-det-top {
    display: flex;
    column-gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ddd;
}
.prop-det-image {
    width: 50%;
}
.prop-det-image .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.prop-det-image .slick-slide img {
    max-width: 100%;
    max-height: 100%;
}
.prop-det-info {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 50%;
}
.prop-det-info .prop-item-cat {
    margin-right: auto;
    margin-bottom: 10px;
}
.prop-det-image-main {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}
.prop-det-image-main .slick-list {
    height: 100%;
}
.prop-det-image-main .slick-track {
    height: 100%;
}
.prop-det-image-list {
    width: 100%;
}
.prop-det-image-list .slick-list {
    overflow: hidden;
    width: 100%;
}
.prop-det-image-list .slick-slide {
    height: 120px;
    margin-right: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
}
.slick-next, .slick-prev,
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    z-index: 10;
    background-color: var(--main-color);
    color: #fff;
}
.slick-next::before, .slick-prev::before {
    opacity: 1;
}
.prop-det-bottom {
    margin-top: 30px;
}
.prop-det-subtitle {
    padding-bottom: 20px;
    font-size: 22px;
}
.prop-det-table table {
    width: 100%;
    margin-bottom: 30px;
    border: none;
}
.prop-det-table tbody {
    display: flex;
    flex-wrap: wrap;
}
.prop-det-table tr {
    width: 50%;
    margin-bottom: 10px;
}
.prop-det-table td {
    padding: 10px 15px;
    border: none;
    vertical-align: top;
    text-align: left;
}
.prop-det-table td:first-child {
    width: 150px;
    background-color: var(--base-color);
}
.prop-det-table td:nth-child(2) {
    flex: 1;
}

/* recruit */
.recruit .section-inner.col-2 {
    column-gap: 60px;
    padding-top: 60px;
}
.recruit-text-area,
.recruit-image-area {
    flex: 1;
}
.recruit ul {
    padding-left: 1.5em;
    padding-bottom: 30px;
}
.recruit ul li {
    list-style: square;
}
.recruit table {
    width: 100%;
    margin-bottom: 30px;
    border: none;
}
.recruit tr {
    display: flex;
    margin-bottom: 5px;
}
.recruit td {
    padding: 10px 15px;
    border: none;
    vertical-align: top;
    text-align: left;
}
.recruit td:first-child {
    width: 150px;
    background-color: var(--base-color);
}
.recruit td:nth-child(2) {
    flex: 1;
}

/* news */
.news.contents {
    padding: 60px 0;
}
.news .section-inner.wide {
    max-width: 1000px;
}
.news .col-2 {
    column-gap: 60px;
}
.news-list li {
    border-top: 1px solid #ddd;
}
.news-list a {
    position: relative;
    display: flex;
    padding: 2em 0;
}
.news-list .link-icon {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #ddd;
    border-radius: 20px;
    content: '';
}
.news-list .link-icon::after {
    position: absolute;
    top: 11px;
    right: 12px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    content: '';
    transform: rotate(-45deg);
}
.news-list .news-list-date {
    width: 110px;
}
.news-list .news-list-title {
    flex: 1;
    font-weight: bold;
}
.news-contents {
    flex: 1;
}
.news-sidebar {
    width: 230px;
}
.news-sidebar .widget::marker {
    display: none;
    content: '';
}
.news-sidebar-title,
.news-sidebar .widgettitle {
    margin-top: 60px;
    margin-bottom: 1em;
    padding-left: 0.7em;
    border-left: 5px solid var(--main-color);
    font-size: 20px;
}
.news-sidebar .widget:first-child .news-sidebar-title,
.news-sidebar .widget:first-child h2 {
    margin-top: 0;
}
.news-sidebar-list a,
.news-sidebar ul li a {
    display: inline-block;
    margin-bottom: 1.2em;
    margin-left: 20px;
}
.news-title-area {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}
.news-title {
    max-width: 1000px;
    margin: auto;
    margin-bottom: 20px;
}
.news-title-date {
    max-width: 1000px;
    margin: auto;
    text-align: right;
}

/* contact */
.contact .contents {
    padding-top: 60px;
}
.contact-form-area {
    max-width: 800px;
    margin: auto;
    padding: 30px 0;
}
.form-item {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    align-items: start;
    margin-bottom: 1.5em;
}
.form-item .form-label {
    width: 210px;
    margin-top: 4px;
    text-align: right;
}
.form-item .form-label * {
    display: inline-block;
    margin-left: 0.5em;
    padding: 3px 8px;
}
.form-item .form-label .require {
    background-color: #f55;
    color: #fff;
}
.form-item .form-label .any {
    background-color: #555;
    color: #fff;
}
.form-item .form-input {
    position: relative;
    flex: 1;
}
.form-item .form-input .full {
    width: 100%;
}
.form-item .form-input input,
.form-item .form-input textarea {
    width: 100%;
    padding: 8px 10px;
}
.form-item .form-input .number {
    width: 74px;
}
.form-item .form-input .sep {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
}
.form-item .form-input .number::before {
    display: inline-block;
    position: absolute;
    top: 10px;
    content: '-';
    color: #f00;
}
.form-item .form-input textarea {
    height: 12em;
    line-height: 1.2em;
}
.form-submit-btn {
    display: block;
    width: 400px;
    margin: 0 auto 10px auto;
    padding: 20px;
    background-color: var(--main-color);
    border: none;
    font-size: 22px;
    color: #fff;
}
.contact ul {
    padding-left: 1.5em;
    padding-bottom: 30px;
}
.contact ul li {
    list-style: square;
}

/* wpcf */
.wpcf7-not-valid-tip {
    display: inline-block;
    margin-top: 5px;
    padding: 5px;
    background-color: #fcc;
    border: 1px solid #dc3232;
}
.wpcf7-response-output {
    background-color: #fcc;
}

/* privacy */
.privacy .contents {
    padding-top: 60px;
}
.privacy ul {
    padding-left: 1.5em;
    padding-bottom: 30px;
}
.privacy ul li {
    list-style: square;
}

/* common */
.section-inner {
    margin: auto;
}
.section-inner.small {
    max-width: 800px;
}
.section-inner.normal {
    max-width: 1000px;
}
.section-inner.full {
    max-width: 1200px;
}
.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 24px;
}
.section-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background-color: var(--main-color);
    content: '';
}
.section-subtitle {
    padding-bottom: 15px;
    font-size: 20px;
    color: var(--main-color);
}
.col-2 {
    display: flex;
    justify-content: center;
}
.col-2 .full {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0 !important;
}
.col-2 .head {
    flex-grow: 0 !important;
    flex-basis: 300px !important;
}
.col-2 .full {

}
.btn-box {
    margin: 50px 0 60px;
    text-align: center;
}
.text-link a {
    position: relative;
    display: inline-block;
    margin: auto;
    padding: 0 2em 0.5em 1em;
    border-bottom: 1px solid #666;
}
.text-link a::after {
    position: absolute;
    top: 9px;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 0.5em;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    content: '';
    transform: rotate(-45deg);
}
.mt-30 {
    margin-top: 30px;
}
.al-right {
    text-align: right;
}
.pager-area {
    padding-top: 40px;
}
.page-numbers {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
}
.page-numbers li {
    min-width: 10px;
}
.page-numbers li > * {
    display: inline-block;
    padding: 4px 10px;
}
.page-numbers li > a {
    border: 1px solid #999;
}
.page-numbers li .current {
    background-color: #666;
    border: 1px solid #999;
    color: #fff;
}
.page-numbers li > a.next,
.page-numbers li > a.prev {
    display: flex;
    width: 30px;
    height: 30px;
    border: none;
}
.page-numbers li a .next-icon,
.page-numbers li a .prev-icon {
    display: inline-block;
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-right: 3px solid #666;
    border-bottom: 3px solid #666;
    content: '';
    transform: rotate(-45deg);
}
.page-numbers li a .prev-icon {
    transform: rotate(135deg);
}

/* float */
.float-link {
    z-index: 101;
    position: fixed;
    top: calc(50vh - 100px);
    right: 0;
    display: block;
}
.float-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    width: 75px;
    height: 220px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
    background: #8AC041;
    background: linear-gradient(90deg,rgba(138, 192, 65, 1) 0%, rgba(65, 90, 30, 1) 100%);
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 18px;
    letter-spacing: 4px;
}
.float-link a::before {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(../img/movie-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

@keyframes fadeup {
    0% {
        height: 0;
    }
    100% {
        height: 100vh;
    }
}
@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    header {
        top: 0;
    }
    .top-header {
        padding-left: 20px;
    }
    .footer-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .breadcrumb-area {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-service-item {
        flex-direction: column;
        align-items: center !important;
        gap: 0;
    }
    .top-service-image {
        position: static;
    }
    .top-service-text,
    .reverse .top-service-text {
        width: 550px;
        min-height: unset;
        margin-top: 0 !important;
        margin-bottom: 0;
        padding: 30px;
    }

    .section-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-section-title {
        padding-left: 20px;
    }
    .about-section-content .main {
        padding-right: 20px;
    }

    .service .section-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 1000px) {
    .header-nav-area {
        height: 80px;
        padding: 0px 5px 0px 20px;
    }
    .header-nav-area > nav {
        display: none;
    }
    .site-title {
        font-size: 20px;
    }
    .site-title::before {
        width: 40px;
        height: 35px;
    }
    .site-title span {
        display: inline-block;
    }
    #header_menu_btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 100%;
        cursor: pointer;
    }
    #header_menu_btn span {
        position: relative;
        display: inline-block;
        width: 24px;
        height: 3px;
        margin-top: -8px;
        border-radius: 5px;
        background-color: #666;
        content: '';
    }
    #header_menu_btn span::before {
        position: absolute;
        top: 14px;
        left: 0;
        display: inline-block;
        width: 24px;
        height: 3px;
        border-radius: 5px;
        background-color: #666;
        content: '';
    }
    #header_nav_area.open #header_menu_btn span {
        top: 5px;
        transform: rotate(45deg);
    }
    #header_nav_area.open #header_menu_btn span::before {
        top: 0px;
        left: 0px;
        transform: rotate(90deg);
    }
    #header_nav_area.open + #header_menu_area_sp {
        z-index: 100;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100vh;
        background-color: var(--base-color);
        animation: fadeup 0.2s linear;
    }
    .header-nav-sp .bogo-language-switcher {
        justify-content: start;
        padding: 10px 20px;
    }
    .header-nav-sp .bogo-language-switcher li:not(.current) {
        border-bottom-color: inherit;
        border-bottom-width: inherit;
    }
    .header-nav-sp {
        
    }
    .header-nav-sp li {
        border-bottom: 1px solid var(--main-color);
    }
    .header-nav-sp li a {
        display: block;
        padding: 20px;
        font-size: 20px;
    }
    .second-header {
        height: 220px;
    }
    .breadcrumb-area {
        display: none;
    }

    .top-header-message {
        font-size: 32px;
    }
    .top-section-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .top-section-title-main {
        font-size: 28px;
    }
    .top-section-title-sub {
        font-size: 18px;
    }
    .top-service-text h3 {
        position: relative;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    .top-service-text h3::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 5px;
        background-color: var(--main-color);
        content: '';
    }
    .top-service-text-inner {
        padding-left: 0;
        border-left: none;
    }
    .top-news-list li a {
        flex-direction: column;
        align-items: start;
    }
    
    .float-link {
        display: none;
    }

    .footer-top .footer-links {
        margin-left: unset;
    }
    .footer-nav ul {
        flex-direction: column;
    }
    .footer-nav ul li {
        margin-bottom: 15px;
    }
    .footer-top .footer-company {
        font-size: 20px;
    }
    .footer-top .footer-company::before {
        width: 34px;
        height: 34px;
    }

    .about .contents {
        padding-top: 0;
    }
    .about .contents section {
        padding-bottom: 0;
    }
    .about-section-title {
        margin-bottom: 20px;
    }
    .about-section-title::after {
        left: 0;
        width: 100%;
    }
    .about-section-content {
        flex-direction: column;
    }
    .about-section-content .head,
    .about-section-content .main {
        position: static;
        width: 100%;
        padding-right: 0;
        background-color: #fff;
    }
    .about-section-content .head h3 {
        margin: 20px;
        padding: 0;
        font-size: 22px;
    }
    .about-section-content .head figure {
        max-width: none;
        padding: 0;
    }
    .about-section-content .main p {
        margin: 0;
        padding: 20px;
    }
    .about-section-content .main table {

        margin: 20px;
    }
    .about-section-content .main table tr {
        display: flex;
        flex-direction: column;
    }
    .about-section-content .main table td {
        width: 100%;
    }
    .about-section-content .main table td:first-child {
        padding-bottom: 0;
        border-bottom: none;
        font-weight: bold;
    }

    .prop-det-top {
        position: relative;
        flex-direction: column;
        width: 100%;
        padding-bottom: 10px;
    }
    .prop-det-image {
        width: 100%;
        margin-top: 120px;
        margin-bottom: 30px;
    }
    .prop-det-info {
        width: 100%;
    }
    .prop-det-table tr {
        width: 100%;
    }
    .prop-det-title {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--main-color);
    }

    /* contact */
    .form-item {
        flex-direction: column;
        row-gap: 15px;
    }
    .form-item .form-label {
        width: 100%;
        text-align: left;
    }
    .form-item .form-label span:first-child {
        margin-left: 0;
        padding-left: 0;
    }
    .form-item .form-input {
        width: 100%;
    }
    .form-submit-btn {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .service .section-inner.col-2 {
        flex-direction: column;
        padding: 20px 0;
    }
    .service .reverse .section-inner.col-2 {
        flex-direction: column-reverse;
    }

    .property .section-inner {
        background-color: var(--base-color);
    }
    .property.post .section-inner {
        background-color: #fff;
    }
    .prop-list li {
        padding: 20px;
        background-color: #fff;
    }
    .prop-item-head {
        flex-direction: column;
        row-gap: 10px;
        align-items: start;
    }
    .prop-item-main {
        flex-direction: column;
    }
    .prop-item-image {
        margin: auto;
    }
    .prop-item-link a {
        width: 100%;
        text-align: center;
    }
    .prop-det-table tr {
        display: flex;
        flex-direction: column;
    }
    .prop-det-table td,
    .prop-det-table td:first-child {
        width: 100%;
    }

    .recruit .section-inner {
        padding-top: 30px !important;
    }
    .recruit .col-2 {
        flex-direction: column;
    }
    .recruit-image-area {
        margin-bottom: 50px;
    }
    .recruit table tr {
        flex-direction: column;
    }
    .recruit table td,
    .recruit table td:first-child {
        width: 100%;
    }

    .news .section-inner {
        flex-direction: column;
    }
    .news-list a {
        position: relative;
        flex-direction: column;
    }
    .news-list a .link-icon {
        position: absolute;
        right: 10px;
    }
    .news-sidebar {
        width: 100%;
        padding: 20px;
        background-color: var(--base-color);
    }
}

@media (max-width: 580px) {
    .top-service-item {
        width: 100%;
        align-items: center !important;
    }
    .top-service-image {
        width: 100%;
    }
    .top-service-text {
        width: 100% !important;
    }
    .top-service-text-inner {

    }
    .top-service-text h3 {
        font-size: 24px;
    }
    .top-service-text p {
        font-size: 16px;
    }

    .prop-item-image {
        width: 100%;
        height: 300px;
    }
    .prop-item-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #ddd;
    }
    .prop-item-table th {
        padding-bottom: 0;
        font-size: 18px;
    }
}