@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Arial */
@font-face {
    font-family: "Arial";
    src: url("/font/Arial.ttf") format("truetype");
}

/* Arial Bold */
@font-face {
    font-family: "Arial Bold";
    src: url("/font/Arial-Bold.ttf") format("truetype");
}

/* High Summit */
@font-face {
    font-family: "High Summit";
    src: url("/font/High-Summit.ttf") format("truetype");
}

/* デフォルト設定 */
html {
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

p {
    margin: 0px;
}

body {
    min-width: 1440px;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.31;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #333;
    background: #fff;
    margin: 0;
}

a:link {
    color: #333;
}

a:visited {
    color: #333;
}

a:active {
    color: #0a51a1;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    padding: 0px;
    list-style: none;
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
}

.oh {
    overflow: hidden;
}

.L {
    float: left;
}

.R {
    float: right;
}

.sp {
    display: none;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.pa_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#menu {
    display: none;
}

.flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
}

.flex_sb {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

html,
button,
input,
select,
textarea {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.wrap {
    width: 1140px;
    margin: 0 auto;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

/* 共通パーツ */
.c_btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 280px;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    background: #0a51a1;
    border: 2px solid #0a51a1;
    border-radius: 35px;
    padding: 22px 20px 25px 30px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.c_btn span {
    display: inline-block;
}

.c_btn a .triangle {
    width: 0;
    height: 0;
    border-top: 8.5px solid transparent;
    border-bottom: 8.5px solid transparent;
    border-left: 15px solid white;
}

.c_btn_white a {
    color: #0a51a1;
    background: #fff;
}

.c_btn_white a .triangle {
    border-left: 15px solid #0a51a1;
}

.c_btn_green a {
    color: #fff;
    background: #06c755;
    border: 2px solid #06c755;
}

.c_btn02 a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
    margin-inline: auto;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0em;
    color: #fff;
    background-image: -webkit-linear-gradient(left, #34b3d1, #0a51a1);
    background-image: linear-gradient(to right, #34b3d1, #0a51a1);
    border-radius: 35px;
    padding: 22.5px 20px 24.5px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
}

.c_btn02 a .link_text {
    flex: 1;
}

.c_btn02 a .triangle {
    width: 0;
    height: 0;
    border-top: 8.5px solid transparent;
    border-bottom: 8.5px solid transparent;
    border-left: 15px solid white;
}

.c_section_title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}

.c_section_title .section_title {
    position: relative;
    font-family: Arial Bold, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0em;
}

.c_section_title .section_title::before {
    content: "";
    width: 1px;
    height: 34.25px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -26.5px;
    background: #707070;
}

.c_section_title .section_title_sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: 0.1em;
}

/* ヘッダーPC */
.site_header {
    background: #fff;
}

.site_header a {
    display: block;
    text-decoration: none;
}

.site_header img {
    margin-top: 5px;
}

.site_header .inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 50px;
}

.site_header .logo {
    width: 187px;
}

.site_header .logo a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.site_header .body,
.site_header .cta {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site_header .body {
    gap: 115px;
}

.site_header .cta {
    position: relative;
    gap: 26px;
}

.site_header .cta::before {
    content: "";
    width: 2px;
    height: 55px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -48px;
    background: #707070;
}

.site_header .nav .lists {
    gap: 46px;
}

.site_header .nav .list {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: 0.05em;
}

.site_header .nav .list a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.site_header .tel {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.34;
    letter-spacing: 0em;
    color: #0a51a1;
}

.site_header .hours {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.46;
    letter-spacing: 0em;
    padding-left: 5px;
}

.site_header .btn {
    text-align: center;
}

.site_header .btn a {
    display: block;
    width: 180px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: 0em;
    color: #fff;
    background: #0a51a1;
    padding: 36px 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* top_fv */
#top_fv {
    position: relative;
    padding: 120px 0 103px;
}

#top_fv::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/images/top_fv.jpg");
    background-position: center calc(50% - 30px);
    background-repeat: no-repeat;
    background-size: cover;
}

#top_fv::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

#top_fv .contents {
    position: relative;
    margin-left: -100px;
    z-index: 1;
}

#top_fv .sub_title {
    font-family: "High Summit", sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.1em;
    color: #fff;
}

#top_fv .sub_title span {
    display: inline-block;
    padding-left: 33px;
}

#top_fv .title {
    margin-top: 10px;
}

#top_fv .title span {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.1em;
    color: #333;
    background: #fff;
    padding-inline: 20px;
}

#top_fv .title .big {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.44;
    letter-spacing: 0.1em;
    margin-top: 14px;
}

#top_fv .title .middle {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.05em;
    padding-inline: 0px;
}

#top_fv .cta {
    margin-top: 70px;
}

#top_fv .btns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

/* top_room */
#top_room {
    padding: 160px 0;
}

#top_room .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 64px;
}

#top_room .item a {
    text-decoration: none;
}

#top_room .image img {
    width: 100%;
    aspect-ratio: 7 / 6;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#top_room .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0em;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

#top_room .area {
    font-family: "Arial Bold";
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0em;
    color: #707070;
    margin-top: 14px;
}

#top_room .price {
    font-family: "Arial Bold";
    font-size: 35px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0em;
    color: #0a51a1;
    margin-top: 16px;
}

#top_room .price span {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.48;
    letter-spacing: 0.05em;
}

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

/* top_buy */
#top_buy {
    padding: 0 0 100px;
}

#top_buy .contents {
    gap: 50px;
    margin-top: 64px;
}

#top_buy .texts {
    width: 445px;
    padding-top: 20px;
}

#top_buy .title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.79;
    letter-spacing: 0em;
    color: #0a51a1;
}

#top_buy .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 2.31;
    letter-spacing: 0em;
    color: #707070;
    margin-top: 50px;
}

#top_buy .btn {
    margin-top: 135px;
    text-align: center;
}

#top_buy .Swiper_wrap_body {
    width: 645px;
}

#top_buy .top_buy_Swiper_wrap,
.top_buy_Swiper_wrap02 {
    position: relative;
}

.top_buy_Swiper_wrap02 {
    margin-top: 15px;
}

.top_buy_Swiper_wrap .swiper-slide img {
    height: auto;
    aspect-ratio: 645/425;
    -o-object-fit: cover;
    object-fit: cover;
}

.top_buy_Swiper_wrap02 .swiper-slide img {
    height: auto;
    aspect-ratio: 150/110;
    -o-object-fit: cover;
    object-fit: cover;
}

#top_buy .swiper-button-next,
#top_buy .swiper-button-prev {
    color: #fff;
}

#top_buy .swiper-button-next {
    right: 3px;
}

#top_buy .swiper-button-prev {
    left: 3px;
}

#top_buy .swiper-button-next:after,
#top_buy .swiper-button-prev:after {
    font-size: 25px;
}

#top_buy .swiper-button-next02,
#top_buy .swiper-button-prev02 {
    top: 137px;
    color: #0a51a1;
    z-index: 11;
}

#top_buy .swiper-button-next02 {
    right: 143px;
}

#top_buy .swiper-button-prev02 {
    left: 143px;
}

#top_buy .swiper-button-next02:after,
#top_buy .swiper-button-prev02:after {
    font-size: 18px;
    text-shadow: 1px 0 0 #0a51a1, -1px 0 0 #0a51a1, 0 1px 0 #0a51a1, 0 -1px 0 #0a51a1;
}

#top_buy .swiper-horizontal>.swiper-pagination-bullets,
#top_buy .swiper-pagination-bullets.swiper-pagination-horizontal,
#top_buy .swiper-pagination-custom,
#top_buy .swiper-pagination-fraction {
    bottom: -165px;
}

#top_buy .swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    border-radius: 0;
    background: #707070;
    margin: 0 15px;
    opacity: 1;
}

#top_buy .swiper-pagination-bullet-active {
    background: #2082f1;
}

/* top_column */
#top_column {
    background: #F5F5F5;
    padding: 110px 0;
}

#top_column .items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-top: 64px;
}

#top_column .item a {
    text-decoration: none;
}

#top_column .image {
    overflow: hidden;
}

#top_column .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 26 / 17;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#top_column .time {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0em;
    color: #707070;
    margin-top: 12px;
}

#top_column .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0em;
    margin-top: 11px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#top_column .btn {
    margin-top: 77px;
    text-align: center;
}

/* top_instagram */
#top_instagram {
    padding: 180px 0 150px;
}

#top_instagram .contents {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 111px;
}

#top_instagram .title_wrap a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#top_instagram .title {
    font-family: "Arial Bold";
    font-size: 30px;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: 0.05em;
}

#top_instagram .icon {
    width: 40px;
    height: 40px;
}

#top_instagram .sub_title {
    font-size: 14px;
    font-weight: 400;
    line-height: 3.57;
    letter-spacing: 0.03em;
    margin-top: 20px;
}

#top_instagram .items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

#top_instagram .items::before {
    content: "";
    width: 2px;
    height: 96%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -60px;
    background: #707070;
}

#top_instagram .image {
    overflow: hidden;
}

#top_instagram .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* top_news */
#top_news {
    background: #F5F5F5;
    padding: 110px 0;
}

#top_news .items {
    margin-top: 67.5px;
}

#top_news .item {
    border-bottom: 1px solid #707070;
}

#top_news .item:first-of-type {
    border-top: 1px solid #707070;
}

#top_news .item a {
    position: relative;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 36px;
    padding: 30px 40px 30px 0;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#top_news .item a::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 25px;
    height: 2px;
    background-color: #0A51A1;
}

#top_news .item a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #0A51A1;
    border-right: 2px solid #0A51A1;
}

#top_news .head {
    min-width: 165px;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}

#top_news .time {
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0em;
    color: #707070;
}

#top_news .new {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: 0em;
    color: #fff;
    background: #0A51A1;
    padding: 4px 8px;
}

#top_news .text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.67;
    letter-spacing: 0.05em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#top_news .btn {
    margin-top: 70px;
    text-align: center;
}

/* fix_btn */
#fix_btn {
    position: fixed;
    top: 190px;
    right: 0px;
    z-index: 10;
}

#fix_btn .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#fix_btn .btn {
    background: #fff;
    border: 2px solid #0a51a1;
    border-radius: 10px 0 0 10px;
    padding: 23px 16px;
}

#fix_btn .btn a {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: 0em;
    letter-spacing: 0.15em;
    color: #0a51a1;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    vertical-align: middle;
}

#fix_btn .btn:nth-of-type(2) {
    background: #06c755;
    border: 2px solid #06c755;
    padding: 12px 16px;
    margin-top: 26px;
}

#fix_btn .btn:nth-of-type(2) a {
    color: #fff;
}

/* footer */
.site_footer {
    color: #fff;
    background: #333;
    padding: 110px 0 110px;
}

.site_footer .logo {
    position: relative;
    width: 295px;
    height: 250px;
}

.site_footer .contents,
.site_footer .company {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.site_footer .company {
    gap: 25px;
}

.site_footer .address,
.site_footer .hours {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0em;
}

.site_footer .tel {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: 0em;
    margin-top: 5px;
}

.site_footer .fax {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0em;
    margin-top: 7px;
}

.site_footer .hours {
    margin-top: 7px;
}

.site_footer .cta {
    margin-top: 16px;
}

.site_footer .btns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.site_footer .btns .btn {
    text-align: center;
}

.site_footer .btns .btn a {
    max-width: 220px;
    margin-inline: auto;
    padding: 14px 11px 15px;
}

.site_footer .btns .btn a .link_text {
    flex: 1;
}

.site_footer .company_map {
    width: 360px;
}

.site_footer .nav {
    margin-top: 80px;
}

.site_footer .lists {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-inline: 40px;
}

.site_footer .list {
    position: relative;
    text-align: center;
    margin-right: 79px;
}

.site_footer .list:last-of-type {
    margin-right: 0;
}

.site_footer .list::before {
    content: "";
    width: 2px;
    height: 31px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -40px;
    background: #fff;
}

.site_footer .list:last-of-type::before {
    display: none;
}

.site_footer .list a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0em;
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.site_footer .copyright {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: 0em;
    margin-top: 90px;
    text-align: center;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
hover style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media (hover: hover) {
    a:hover {
        text-decoration: none;
    }

    .c_btn a:hover {
        opacity: 0.7;
    }

    .c_btn02 a:hover {
        opacity: 0.7;
    }

    .site_header .logo a:hover {
        opacity: 0.7;
    }

    .site_header .nav .list a:hover {
        color: #0a51a1;
    }

    .site_header .btn a:hover {
        opacity: 0.7;
    }

    .sp_hd .nav .list a:hover {
        color: #0a51a1;
    }

    #top_room .item:hover .image img {
        -webkit-filter: none;
        filter: none;
    }

    #top_column .item a:hover .image img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    #top_instagram .image:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    #top_news .item a:hover .text {
        color: #0a51a1;
    }

    #fix_btn .btn a:hover {
        opacity: 0.7;
    }

    .site_footer .list a:hover {
        opacity: 0.7;
    }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
768px〜style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 768px) {

    /* デフォルト設定 */
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    body {
        min-width: 100%;
        font-size: 13px;
        font-size: 3.85vw;
        line-height: 1.5;
    }

    .wrap {
        max-width: 90%;
    }

    /* 共通パーツ */
    .c_section_title {
        gap: 8.97vw;
    }

    .c_section_title .section_title {
        font-size: 6.15vw;
    }

    .c_section_title .section_title_sub {
        font-size: 3.59vw;
    }

    .c_section_title .section_title::before {
        height: 89.5%;
        right: -4.5vw;
    }

    .c_btn a {
        width: 100%;
        font-size: 4.62vw;
    }

    .c_btn02 a {
        width: 100%;
        max-width: 90%;
        font-size: 4.1vw;
        padding: 20px 16px 22px;
    }

    .c_btn02 a::before {
        right: 16px;
    }

    /* ヘッダーSP */
    .sp_hd {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 10000;
    }

    span.slicknav_icon-bar {
        transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -webkit-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
    }

    a.slicknav_btn {
        width: 25px;
        height: 25px;
        border-radius: 0px;
        background: #fff;
        padding: 0px 0 0 0px;
        margin: 12px 3px 3px 0px;
    }

    .sp_hd_logo {
        position: absolute;
        width: 220px;
        top: 12.5px;
        left: 5px;
    }

    /* 追加 */
    .slicknav_menu {
        height: 100px;
        background-color: #fff;
    }

    .sp_hd .logo {
        position: fixed;
        width: 180px;
        top: 17px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 10001;
    }

    a.slicknav_btn {
        position: relative;
        width: 36px;
        height: 17px;
        margin: 27px 21px 0 0;
    }

    .slicknav_menu .slicknav_menutxt {
        display: block !important;
        position: absolute;
        bottom: -17px;
        left: -2px;
        font-family: "Arial Bold";
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.05em;
        color: #333;
        font-weight: bold;
        text-shadow: none;
    }

    .slicknav_open .slicknav_menutxt {
        left: -4.5px;
        bottom: -15px;
    }

    .slicknav_menu .slicknav_icon {
        width: 100%;
        margin: 0;
        width: 36px !important;
        height: 17px !important;
    }

    .slicknav_menu .slicknav_icon-bar {
        background-color: #333;
    }

    .slicknav_menu .slicknav_icon-bar {
        width: 36px !important;
        height: 1px !important;
    }

    .slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
        margin-top: 6px;
    }

    a.slicknav_btn.slicknav_open span.slicknav_icon-bar:first-child {
        top: 5px;
        -moz-transform: rotate(405deg);
        -webkit-transform: rotate(405deg);
        -o-transform: rotate(405deg);
        -ms-transform: rotate(405deg);
        transform: rotate(405deg);
        position: absolute;
    }

    a.slicknav_btn.slicknav_open span.slicknav_icon-bar:first-child {
        -webkit-transform: rotate(-160deg);
        transform: rotate(-160deg);
    }

    a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(2) {
        opacity: 0;
    }

    a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(3) {
        top: -0.8px;
        -webkit-transform: rotate(160deg);
        transform: rotate(160deg);
        position: absolute;
    }

    .sp_hd .body {
        display: none;
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #f8f8f8;
        z-index: -1;
    }

    .sp_hd .slicknav_nav {
        height: 80vh;
        overflow-y: auto !important;
        padding-inline: 12px;
        margin-top: 100px;
    }

    .sp_hd .cta {
        margin-top: 10vw;
    }

    .sp_hd .btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sp_hd .btn {
        text-align: center;
    }

    .sp_hd .btn a {
        width: 100%;
        max-width: 90%;
        margin-inline: auto;
        padding: 17.5px 16px 19.5px;
        text-align: center;
    }

    .sp_hd .btn a .link_text {
        flex: 1;
    }

    .sp_hd .nav {
        margin-top: 10vw;
    }

    .sp_hd .nav .list a {
        position: relative;
        font-size: 3.85vw;
        font-weight: 600;
        letter-spacing: 0;
        color: #333;
        padding: 3.8vw 0;
        border-bottom: 1px solid #333;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .sp_hd .nav .list a:hover {
        color: #0a51a1;
    }

    .sp_hd .nav .list:first-of-type a {
        border-top: 1px solid #333;
    }

    .sp_hd .nav .list a::before {
        content: "";
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 0;
        width: 25px;
        height: 2px;
        background-color: #0a51a1;
    }

    .sp_hd .nav .list a::after {
        content: "";
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 0;
        width: 8px;
        height: 8px;
        margin-top: -5px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-top: 2px solid #0a51a1;
        border-right: 2px solid #0a51a1;
    }

    /* top_fv */
    #top_fv {
        aspect-ratio: 390/520;
        padding: 8.974vw 0 0;
        margin-top: 100px;
    }

    #top_fv::before {
        background-image: url("/images/top_fv_sp.jpg");
        background-position: center;
    }

    #top_fv::after {
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.5) 75%, rgb(255, 255, 255) 85%);
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.5) 75%, rgb(255, 255, 255) 80%);
    }

    #top_fv .contents {
        width: 100%;
        padding-inline: 5%;
        margin-left: 0;
    }

    #top_fv .wrap {
        width: 100%;
        max-width: 100%;
    }

    #top_fv .sub_title {
        font-size: 10.5vw;
        color: #0a51a1;
    }

    #top_fv .sub_title span {
        padding-left: 5vw;
    }

    #top_fv .title {
        margin-top: 2vw;
    }

    #top_fv .title span {
        line-height: 1.6;
        padding-inline: 2.56vw;
    }

    #top_fv .title span {
        font-size: 5.13vw;
    }

    #top_fv .title .big,
    #top_fv .title .middle {
        font-size: 8vw;
        line-height: 1.5;
        margin-top: 1.54vw;
    }

    #top_fv .title .big {
        letter-spacing: 0.14em;
        margin-top: 1.54vw;
    }

    #top_fv .title .middle {
        margin-top: 0;
    }

    #top_fv .cta {
        margin-top: 51.3vw;
    }

    #top_fv .btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    #top_fv .c_btn a {
        width: 100%;
        max-width: 90%;
        margin-inline: auto;
        padding: 19px 16px 18px;
        text-align: center;
    }

    #top_fv .c_btn a .link_text {
        flex: 1;
    }

    /* top_room */
    #top_room {
        padding: 75px 0 18.46vw;
    }

    #top_room .image img {
        aspect-ratio: 70 / 43
    }

    #top_room .image img {
        position: static;
        -webkit-filter: none;
        filter: none;
        border-radius: 10px;
    }

    #top_room .area,
    #top_room .title {
        font-size: 4.62vw;
        margin-top: 3.59vw;
    }

    #top_room .area {
        margin-top: 5.64vw;
    }

    #top_room .title {
        margin-top: 3.5vw;
    }

    #top_room .price {
        font-size: 7.69vw;
        margin-top: 5vw;
    }

    #top_room .price span {
        font-size: 5.13vw;
    }

    #top_room .item {
        list-style: none;
        height: 100%;
    }

    #top_room .btn {
        margin-top: 23.1vw;
    }

    #top_room .top_room_swiper_wrapper {
        position: relative;
        margin-top: 7.69vw;
    }

    #top_room .swiper-slide {
        height: auto;
    }

    #top_room .swiper-button-prev03,
    #top_room .swiper-button-next03 {
        top: auto;
        height: auto;
        bottom: -12vw;
        color: #0a51a1;
        z-index: 11;
    }

    #top_room .swiper-button-prev03 {
        left: 20%;
    }

    #top_room .swiper-button-next03 {
        right: 20%;
    }

    #top_room .swiper-button-next03:after,
    #top_room .swiper-button-prev03:after {
        font-size: clamp(16px, 4vw, 20px);
        text-shadow: 0.5px 0 0 #0a51a1, -0.5px 0 0 #0a51a1, 0 0.5px 0 #0a51a1, 0 -0.5px 0 #0a51a1;
    }

    #top_room .swiper-button-prev04,
    #top_room .swiper-button-next04 {
        top: 30%;
        color: #fff;
    }

    #top_room .swiper-button-prev04 {
        left: 3px;
    }

    #top_room .swiper-button-next04 {
        right: 3px;
    }

    #top_room .swiper-button-prev04:after,
    #top_room .swiper-button-next04:after {
        font-size: 25px;
    }

    #top_room .swiper-horizontal>.swiper-pagination-bullets,
    #top_room .swiper-pagination-bullets.swiper-pagination-horizontal,
    #top_room .swiper-pagination-custom,
    #top_room .swiper-pagination-fraction {
        bottom: -11.5vw;
    }

    #top_room .swiper-pagination-bullet {
        width: 2.8vw;
        min-width: 10px;
        height: 3px;
        border-radius: 5px;
        background: #707070;
        margin: 0 2.56vw;
        opacity: 1;
    }

    #top_room .swiper-pagination-bullet-active {
        background: #2082f1;
    }

    /* top_buy */
    #top_buy {
        padding: 0 0 12.82vw;
    }

    #top_buy .contents {
        margin-top: 6.15vw;
        gap: 0;
    }

    #top_buy .texts {
        width: 100%;
    }

    #top_buy .title {
        font-size: 6.15vw;
        line-height: 1.66;
        margin-top: 15.38vw;
    }

    #top_buy .text {
        font-size: 3.85vw;
        line-height: 2.4;
        margin-top: 6.15vw;
    }

    #top_buy .btn {
        margin-top: 10.26vw;
    }

    #top_buy .Swiper_wrap_body {
        width: 100%;
    }

    .top_buy_Swiper_wrap02 {
        margin-top: 15px;
        margin-top: 2.05vw;
    }

    #top_buy .swiper-button-next02:after,
    #top_buy .swiper-button-prev02:after {
        font-size: clamp(16px, 4vw, 20px);
        text-shadow: 0.5px 0 0 #0a51a1, -0.5px 0 0 #0a51a1, 0 0.5px 0 #0a51a1, 0 -0.5px 0 #0a51a1;
    }

    #top_buy .swiper-button-prev02,
    #top_buy .swiper-button-next02 {
        top: auto;
        height: auto;
        bottom: -7.5vw;
    }

    #top_buy .swiper-button-prev02 {
        left: 20%;
    }

    #top_buy .swiper-button-next02 {
        right: 20%;
    }

    #top_buy .swiper-horizontal>.swiper-pagination-bullets,
    #top_buy .swiper-pagination-bullets.swiper-pagination-horizontal,
    #top_buy .swiper-pagination-custom,
    #top_buy .swiper-pagination-fraction {
        bottom: -30vw;
    }

    #top_buy .swiper-pagination-bullet {
        width: 2.8vw;
        min-width: 10px;
        height: 3px;
        border-radius: 5px;
        margin: 0 2.56vw;
    }

    /* top_column */
    #top_column {
        padding: 12.31vw 0;
    }

    #top_column .items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11vw;
        margin-top: 5.13vw;
    }

    #top_column .image {
        border-radius: 2.56vw;
    }

    #top_column .image img {
        aspect-ratio: 7 / 4;
    }

    #top_column .time {
        font-size: 4.1vw;
        margin-top: 3.85vw;
    }

    #top_column .title {
        font-size: 4.36vw;
        margin-top: 1.28vw;
    }

    #top_column .btn {
        margin-top: 12.82vw;
    }

    /* top_instagram */
    #top_instagram {
        padding: 12.82vw 0;
    }

    #top_instagram .contents {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #top_instagram .title_wrap a {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 15px;
    }

    #top_instagram .title {
        font-size: 6.15vw;
    }

    #top_instagram .sub_title {
        font-size: 3.59vw;
        margin-top: 0;
        text-align: center;
    }

    #top_instagram .items {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5vw 4.62vw;
        border-top: 1px solid #707070;
        padding-top: 7.69vw;
        margin-top: 3.59vw;
    }

    #top_instagram .icon {
        width: 30px;
        height: 30px;
    }

    /* top_news */
    #top_news {
        padding: 12.82vw 0 16.41vw;
    }

    #top_news .items {
        margin-top: 10.77vw;
    }

    #top_news .item a {
        flex-wrap: wrap;
        gap: 2.5641025641vw;
        padding: 3.85vw 2.56vw 3.85vw 0;
    }

    #top_news .item a::before,
    #top_news .item a::after {
        display: none;
    }

    #top_news .head {
        gap: 2.56vw;
    }

    #top_news .time {
        font-size: 4.62vw;
    }

    #top_news .new {
        font-size: 3.33vw;
        padding: 4px 6px 2px;
    }

    #top_news .text {
        font-size: 3.59vw;
        line-height: 1.43;
        letter-spacing: 0.1em;
        -webkit-line-clamp: 2;
    }

    #top_news .btn {
        margin-top: 12.82vw;
    }

    /* fix_btn */
    #fix_btn {
        display: none;
    }

    /* footer */
    .site_footer {
        padding: 7.69vw 0;
    }

    .site_footer .logo {
        position: relative;
        left: -10px;
        width: 100%;
        max-width: 235px;
        height: auto;
        aspect-ratio: 3/1;
    }

    .site_footer .company {
        margin-top: 2.56vw;
    }

    .site_footer .contents,
    .site_footer .company {
        display: block;
    }

    .site_footer .address,
    .site_footer .fax,
    .site_footer .hours {
        font-size: 3.85vw;
    }

    .site_footer .tel {
        font-size: 6.67vw;
        margin-top: 1.28vw;
    }

    .site_footer .fax {
        margin-top: 1.79vw;
    }

    .site_footer .hours {
        margin-top: 1.28vw;
    }

    .site_footer .cta {
        margin-top: 6.67vw;
    }

    .site_footer .btns {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5.13vw;
    }

    .site_footer .btns .btn a {
        width: 100%;
        max-width: 90%;
        font-size: 4.62vw;
        padding: 19px 16px;
    }

    .site_footer .company_map {
        position: relative;
        width: 100%;
        padding-top: 59.71%;
        margin-top: 7.69vw;
        overflow: hidden;
    }

    .site_footer .company_map img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .site_footer .copyright {
        font-size: 3.08vw;
        line-height: 1.8;
        margin-top: 5.13vw;
    }
}

/*# sourceMappingURL=style.css.map */