@charset "UTF-8";

:root {
    --main-color: #0068B7;
    --sub-color: #ea6060;
}

html,
button,
input,
select,
textarea {
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 700;
}

.f_en {
    font-family: "Inter", serif;
}

.f_top {
    font-family: toppan-bunkyu-midashi-go-std, sans-serif;
}

body {
    padding-top: 100px;
    min-width: 1340px;
}

body > * {
    color: #0A152B;
    font-size: 16px;
    line-height: 1.7;
}

:root {
    --main-color: #003E92;
}

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

/* PCヘッダー */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    min-width: 1340px;
}

#header .hd_cont {
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

#header .hd_cont .logo {
    width: 198px;
}

#header .hd_cont .logo .link {
    display: block;
    width: 100%;
}

#header .hd_cont .logo .link img {
    width: 100%;
}

#header .hd_cont .menu_box {
    display: flex;
    align-items: center;
}

#header .hd_cont .menu_box .menu_area {
    margin-right: 40px;
}

#header .hd_cont .menu_box .menu_area ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

#header .hd_cont .menu_box .menu_area li+li {
    position: relative;
}

#header .hd_cont .menu_box .menu_area li+li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    translate: 0 -50%;
    width: 1px;
    height: 20px;
    background: #0A152B;
}

#header .hd_cont .menu_box .menu_area li .link {
    display: block;
    font-size: 15px;
    letter-spacing: .06em;
    color: #0A152B;
    transition: .3s;
}

#header .hd_cont .menu_box .menu_area li .link:hover {
    opacity: 0.7;
}

#header .hd_cont .menu_box .btn_area {
    margin-right: 30px;
}

#header .hd_cont .menu_box .btn_area ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

#header .hd_cont .menu_box .btn_area li .link {
    padding: 0 20px;
    background: var(--main-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-block-size: 50px;
    transition: .3s;
}

#header .hd_cont .menu_box .btn_area li .link:hover {
    opacity: 0.7;
}

#header .hd_cont .menu_box .btn_area li.line .link {
    background: #06C755;
}

#header .hd_cont .menu_box .btn_area li .link .icon {
    width: 30px;
}

#header .hd_cont .menu_box .btn_area li .link .icon svg {
    display: block;
    width: 72%;
    margin: 0 auto;
}

#header .hd_cont .menu_box .btn_area li .link .icon img {
    width: 100%;
}

#header .hd_cont .menu_box .btn_area li .link .text {
    font-size: 15px;
    color: #fff;
}

#header .hd_cont .menu_box .hamburger {
    position: relative;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 9999;
}

#header .hd_cont .menu_box .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0A152B;
    position: absolute;
    left: 0;
    transition: .3s;
}

#header .hd_cont .menu_box .hamburger span:nth-child(1) {
    top: 0;
}

#header .hd_cont .menu_box .hamburger span:nth-child(2) {
    top: 10px;
}

#header .hd_cont .menu_box .hamburger span:nth-child(3) {
    top: 20px;
}

#header .hd_cont .menu_box .hamburger.active span:nth-child(1) {
    top: 10px;
    rotate: 315deg;
}

#header .hd_cont .menu_box .hamburger.active span:nth-child(2),
#header .hd_cont .menu_box .hamburger.active span:nth-child(3) {
    top: 10px;
    rotate: -315deg;
}

.pc_ham_cont {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: #F5F5F5;
    opacity: .96;
    padding: 50px 0;
    z-index: 9998;
    transform: translateY(-100%);
    transition: .3s;
}

.pc_ham_cont.active {
    transform: translateY(0);
}

.pc_ham_cont .item_box {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: flex-start;
}

.pc_ham_cont .item_box+.item_box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #0A152B;
}

.pc_ham_cont .item_box .label_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pc_ham_cont .item_box .label_box .icon {
    width: 30px;
}

.pc_ham_cont .item_box .label_box .icon svg {
    width: 95%;
    display: block;
}

.pc_ham_cont .item_box .label_box .label {
    font-size: 18px;
    letter-spacing: .04em;
}

.pc_ham_cont .item_box .menu {
    margin-top: 5px;
}

.pc_ham_cont .item_box .menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pc_ham_cont .item_box .menu li .link {
    display: block;
    font-size: 14px;
    letter-spacing: .04em;
    color: #1A1311;
    transition: .3s;
}

.pc_ham_cont .item_box .menu li .link:hover {
    color: var(--main-color);
}

.pc_ham_cont .item_box .list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
}

.pc_ham_cont .item_box .list li .link {
    display: block;
    font-size: 14px;
    letter-spacing: .04em;
    font-weight: 500;
    color: #0A152B;
    transition: .3s;
}

.pc_ham_cont .item_box .list li .link:hover {
    color: var(--main-color);
}

.pc_ham_cont .item_box .list li .link .icon {
    width: 11px;
    line-height: 1;
    display: inline-block;
    margin-left: 6px;
}

.pc_ham_cont .item_box .list li .link .icon path {
    transition: .3s;
}

.pc_ham_cont .item_box .list li .link:hover .icon path {
    fill: var(--main-color);
}

/* PCトップ メインビジュアル */
.top_mv {
    padding: 200px 50px 250px;
    background-image: url(../../image/site/top_mv_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-bottom: 50px;
}

.top_mv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #3BA4FF, #ACD4F2);
    opacity: 0.7;
    mix-blend-mode: soft-light;
}

.top_mv .text_box {
    position: relative;
    width: fit-content;
}

.top_mv .text_box .text {
    width: 595px;
}

.top_mv .text_box .text img {
    width: 100%;
}

.top_mv .text_box .text .small {
    display: block;
    font-size: 24px;
    letter-spacing: .12em;
    line-height: 44px;
    padding: 0 0.5em;
    background: linear-gradient(to bottom, #3BA4FF, #ACD4F2);
    width: fit-content;
    margin-bottom: 10px;
}

.top_mv .text_box .text .name {
    display: block;
    font-size: 60px;
    letter-spacing: .08em;
    line-height: 77px;
    padding: 0 0.2em;
    background: linear-gradient(to right, #33A0FF, #FCFFDD, #80C8FF);
    margin-bottom: 10px;
}

.top_mv .text_box .text .white {
    display: block;
    font-size: 20px;
    letter-spacing: .12em;
    line-height: 34px;
    background: #fff;
    width: fit-content;
    margin-left: auto;
    padding: 0 0.5em;
}

.top_mv .news_cont {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
}

.top_mv .news_cont .link {
    display: block;
    padding: 32px 50px 28px 20px;
    backdrop-filter: blur(9px);
    filter: brightness(1.2);
    color: #fff;
    width: 100%;
}

.top_mv .news_cont .link .date_box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.top_mv .news_cont .link .date_box .date {
    font-size: 12px;
    letter-spacing: .06em;
}

.top_mv .news_cont .link .date_box .cate {
    font-size: 12px;
    letter-spacing: .06em;
    background: var(--main-color);
    padding: 0.2em 0.9em;
    border-radius: 4px;
}

.top_mv .news_cont .link .ttl_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top_mv .news_cont .link .ttl_box::after {
    content: "";
    width: 8px;
    aspect-ratio: 1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    rotate: -45deg;
    flex-shrink: 0;
}

.top_mv .news_cont .link .ttl_box .ttl {
    font-size: 15px;
    letter-spacing: .06em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.top_mv .scroll_down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    translate: -50% 0;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px;
    width: 90px;
    aspect-ratio: 1;
    min-width: 0;
    cursor: pointer;
}

.top_mv .scroll_down .text_box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: grid;
    place-content: center;
    backdrop-filter: blur(10px);
    filter: brightness(1.2);
}

.top_mv .scroll_down .text_box .text {
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    color: #fff;
}

/* PCトップ ポップ */
.common_top_pop .cont ul {
    display: grid;
    /* grid-template-columns: 20% 60% 20%; */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.common_top_pop .cont li .link {
    display: block;
    width: 100%;
    transition: .3s;
}

.common_top_pop .cont li .link:hover {
    opacity: 0.7;
}

.common_top_pop .cont li .link img {
    width: 100%;
}

/* PCトップ お部屋を探す */
.common_ttl_box.center {
    text-align: center;
}

.common_ttl_box .en_ttl {
    font-size: 16px;
    letter-spacing: .06em;
    color: var(--main-color);
}

.common_ttl_box .ttl {
    font-size: 32px;
    letter-spacing: .2em;
}

.common_ttl_box .ttl .small {
    font-size: .7em;
    line-height: 1;
}

.top_search {
    margin: 80px 0;
    padding: 80px 0;
    background: #F7F7F7;
}

.top_search .common_ttl_box {
    margin-bottom: 28px;
}

.top_search .main_cont {
    display: grid;
    grid-template-columns: 470px 625px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.top_search .main_cont .text_area .form_box {
    margin-bottom: 30px;
}

.top_search .main_cont .text_area .form_box .label {
    font-size: 16px;
    letter-spacing: .08em;
    margin-bottom: 0.4em;
}

.top_search .main_cont .text_area .form_box .form {
    margin-bottom: 10px;
}

.top_search .main_cont .text_area .form_box .form form {
    display: block;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #CBCBCB;
    overflow: hidden;
    position: relative;
}

.top_search .main_cont .text_area .form_box .form form input {
    width: 100%;
    background: #fff;
    font-size: 14px;
    letter-spacing: .06em;
    min-block-size: 50px;
    padding: 0 60px 0 15px;
}

.top_search .main_cont .text_area .form_box .form form input::placeholder {
    color: #CBCBCB;
}

.top_search .main_cont .text_area .form_box .form form button {
    display: block;
    background: var(--main-color);
    width: 50px;
    aspect-ratio: 1;
    border-left: 1px solid #CBCBCB;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../../image/site/icon_search.svg);
    background-size: 46%;
    background-repeat: no-repeat;
    background-position: center;
}

.top_search .main_cont .text_area .form_box .tag {
    margin: 0 10px;
}

.top_search .main_cont .text_area .form_box .tag ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 18px;
}

.top_search .main_cont .text_area .form_box .tag li .link {
    display: block;
    font-size: 12px;
    letter-spacing: .06em;
    font-weight: 400;
    color: #1A1311;
    transition: .3s;
}

.top_search .main_cont .text_area .form_box .tag li .link:hover {
    color: var(--main-color);
}

.top_search .main_cont .text_area .link_box ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.top_search .main_cont .text_area .link_box li .link {
    display: grid;
    place-content: center;
    background: #fff;
    border-radius: 10px;
    min-block-size: 140px;
    padding: 20px;
    transition: .3s;
}

.top_search .main_cont .text_area .link_box li .link:hover {
    background: var(--main-color);
}

.top_search .main_cont .text_area .link_box li .link .icon {
    width: 52px;
    margin: 0 auto 10px;
}

.top_search .main_cont .text_area .link_box li.station .link .icon {
    width: 32px;
}

.top_search .main_cont .text_area .link_box li .link .icon svg {
    width: 100%;
    display: block;
}

.top_search .main_cont .text_area .link_box li .link .icon svg path {
    transition: .3s;
}

.top_search .main_cont .text_area .link_box li .link:hover .icon svg path {
    fill: #fff;
}

.top_search .main_cont .text_area .link_box li .link .text {
    font-size: 16px;
    letter-spacing: .08em;
    color: #0A152B;
    transition: .3s;
}

.top_search .main_cont .text_area .link_box li .link:hover .text {
    color: #fff;
}

.top_search .main_cont .text_area .link_box li .link .en_text {
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--main-color);
    text-align: center;
    transition: .3s;
}

.top_search .main_cont .text_area .link_box li .link:hover .en_text {
    color: #fff;
}

.top_search .main_cont .map_area {
    width: 100%;
}

.top_search .main_cont .map_area svg g.modal {
    cursor: pointer;
    transition: .3s;
}

.top_search .main_cont .map_area svg text.modal {
    cursor: pointer;
    transition: .3s;
}

.top_search .category_cont ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.top_search .category_cont li .link {
    display: flex;
    min-block-size: 100px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.top_search .category_cont li .link .img {
    width: 130px;
    height: 100%;
    flex-shrink: 0;
}

.top_search .category_cont li .link .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_search .category_cont li .link .text {
    flex-grow: 1;
    font-size: 16px;
    letter-spacing: .1em;
    color: #0A152B;
    background: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.top_search .category_cont li .link:hover .text {
    color: #fff;
    background: var(--main-color);
}

.top_search .category_cont li .link .text::after {
    content: "";
    width: 1px;
    height: 64px;
    background: #fff;
    margin-right: -20px;
}

.top_search .category_cont li .link .arrow {
    display: grid;
    place-content: center;
    background: var(--main-color);
    width: 30px;
}

/* PC検索モーダル */
.modal_area {
    display: none;
}

.modal_search {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.modal_search .modal_bg {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.82;
}

.modal_search .modal_cont {
    margin: 60px 0;
    width: 100%;
    height: calc(100vh - 120px);
    background: #fff;
    border-radius: 24px;
    border: 1px solid #707070;
    padding: 85px 100px 82px;
    position: relative;
}

.modal_search .modal_cont form {
    overflow-y: scroll;
    height: 100%;
}

.modal_search .modal_cont .close_btn {
    position: absolute;
    top: 28px;
    right: 30px;
    width: 25.5px;
    cursor: pointer;
}

.modal_search .modal_cont .close_btn svg {
    width: 100%;
}

.modal_search .modal_cont form .area {
    margin-bottom: 44px;
}

.modal_search .modal_cont form .common_theme {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    padding: 10px 42px;
    border: 1px solid #D5D5D5;
    border-radius: 9px;
    margin-bottom: 0.8em;
    position: relative;
}

.modal_search .modal_cont form .common_theme::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    translate: 0 -50%;
    width: 9px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(to bottom, #3BA4FF, #ACD4F2);
}

.modal_search .modal_cont form .common_text {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1em;
}

.modal_search .modal_cont form .common_table_area table {
    width: 100%;
}

.modal_search .modal_cont form .common_table_area table tr {
    border-bottom: 1px solid #D5D5D5;
}

.modal_search .modal_cont form .common_table_area table tr:first-child {
    border-top: 1px solid #D5D5D5;
}

.modal_search .modal_cont form .common_table_area table th {
    width: 16%;
    background: #F5F5F5;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.modal_search .modal_cont form .common_table_area table td {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: #000000;
    padding: 22px 28px;
}

.modal_search .modal_cont form .common_table_area table td ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.modal_search .modal_cont form .common_table_area table td.popular ul {
    grid-template-columns: repeat(4, 1fr);
}

.modal_search .modal_cont form .common_table_area table td li .text {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    cursor: pointer;
}

.modal_search .modal_cont form .common_table_area table td li input[type=checkbox] {
    position: relative;
    width: 23px;
    aspect-ratio: 1;
    min-width: 0;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: -5px;
    margin-right: 10px;
    cursor: pointer;
}

.modal_search .modal_cont form .common_table_area table td li input[type=checkbox]:checked:before {
    content: "";
    position: absolute;
    top: 47%;
    left: 8px;
    translate: 0 -50%;
    width: 8px;
    height: 11px;
    border-right: 4px solid var(--main-color);
    border-bottom: 4px solid var(--main-color);
    rotate: 45deg;
}

.modal_search .modal_cont form .common_btn input {
    display: grid;
    place-content: center;
    font-size: 18px;
    color: #fff;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 0 44px;
    width: fit-content;
    min-block-size: 60px;
    border-radius: 100vmax;
    margin: 27px auto 0;
    transition: .3s;
    cursor: pointer;
}

.modal_search .modal_cont form .common_btn input:hover {
    background: #fff;
    color: var(--main-color);
}

.modal_search .modal_cont form .common_table_area table td.select {
    display: flex;
    align-items: center;
    gap: 13px;
}

.modal_search .modal_cont form .common_table_area table td.select select {
    width: 200px;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
    padding: 11.4px 16px;
    font-size: 12px;
    font-weight: 300;
}

.modal_search .modal_cont form .common_table_area table td li input[type=radio] {
    position: relative;
    width: 23px;
    aspect-ratio: 1;
    min-width: 0;
    border: 1px solid #D5D5D5;
    border-radius: 50%;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: -5px;
    margin-right: 10px;
    cursor: pointer;
}

.modal_search .modal_cont form .common_table_area table td li input[type=radio]:checked:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    translate: 0 -50%;
    width: 10px;
    height: 9px;
    background: var(--main-color);
    border-radius: 50%;
}

/* PCトップ 新着物件情報 */
.top_arrival {
    padding: 80px 0 120px;
}

.top_arrival .common_ttl_box {
    margin-bottom: 28px;
}

.top_arrival .cont ul.arrival_item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}

.top_arrival .cont li.item .link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.top_arrival .cont li.item .link .img {
    width: 100%;
    aspect-ratio: 27/24;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.top_arrival .cont li.item .link .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.top_arrival .cont li.item .link:hover .img img {
    scale: 1.1;
}

.top_arrival .cont li.item .link .name {
    font-size: 18px;
    letter-spacing: .08em;
    color: #0A152B;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 0.3em;
}

.top_arrival .cont li.item .link .access {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.46;
    color: #AAAAAA;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 0.6em;
}

.top_arrival .cont li.item .link .yachin {
    font-size: 13px;
    font-weight: 500;
    color: #AAAAAA;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.top_arrival .cont li.item .link .yachin .color {
    font-size: 1.7em;
    letter-spacing: .06em;
    color: #1A1311;
}

.top_arrival .cont li.item .link .madori {
    font-size: 13px;
    font-weight: 500;
    color: #AAAAAA;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* PCトップ バナー */
.top_banner {
    margin-bottom: 130px;
}

.top_banner .wrap {
    width: 100%;
}

.top_banner .slick-track {
    display: flex;
}

.top_banner .slick-slide {
    height: auto !important;
}

.top_banner .slider_area {
    margin-bottom: 28px;
}

.top_banner .slider_area li {
    margin: 0 15px;
    position: relative;
}

.top_banner .slider_area li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1A1311;
    opacity: 0.7;
}

.top_banner .slider_area li.slick-active::before {
    display: none;
}

.top_banner .slider_area li .link {
    display: block;
    width: 100%;
    height: 100%;
}

.top_banner .slider_area li .link img {
    width: 100%;
    height: 100%;
}

.top_banner .thumbnail_area {
    transform: unset !important;
    width: 912px;
    margin: 0 auto;
}

.top_banner .thumbnail_area .slick-track {
    transform: unset !important;
}

.top_banner .thumbnail_area li {
    margin: 0 6px;
    cursor: pointer;
    position: relative;
}

.top_banner .thumbnail_area li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1A1311;
    opacity: 0.7;
}

.top_banner .thumbnail_area li.slick-current::before {
    display: none;
}

.top_banner .thumbnail_area li img {
    width: 100%;
    height: 100%;
}

/* PCトップ 支店一覧 */
.top_shop {
    margin-bottom: 130px;
}

.top_shop .ttl_box {
    margin-bottom: 40px;
}

.top_shop .ttl_box .ttl img {
    width: 536px;
    margin: 0 auto 14px;
    display: block;
}

.top_shop .ttl_box .ttl .text {
    font-size: 22px;
    letter-spacing: .2em;
    color: #1A1311;
    text-align: center;
    display: block;
}

.top_shop .list {
    margin-bottom: 100px;
}

.top_shop .list ul .slick-track {
    padding-bottom: 10px;
}

.top_shop .list li.slick-slide {
    margin: 0 7.5px;
}

.top_shop .list li.slick-slide .item+.item {
    margin-top: 15px;
}

.top_shop .list li.slick-slide .link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
    background: #fff;
    border-radius: 6px;
    transition: .3s;
}

.top_shop .list li.slick-slide .link:hover {
    background: var(--main-color);
}

.top_shop .list li.slick-slide .link::after {
    content: "";
    width: 10px;
    aspect-ratio: 1;
    border-right: 2px solid #0A152B;
    border-bottom: 2px solid #0A152B;
    rotate: -45deg;
    flex-shrink: 0;
    transition: .3s;
}

.top_shop .list li.slick-slide .link:hover::after {
    border-color: #fff;
}

.top_shop .list li.slick-slide .link .img {
    width: 130px;
    flex-shrink: 0;
}

.top_shop .list li.slick-slide .link .img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.top_shop .list li.slick-slide .link .text_box {
    flex-grow: 1;
}

.top_shop .list li.slick-slide .link .text_box .text {
    font-size: 16px;
    letter-spacing: .12em;
    line-height: 1.5;
    color: #1A1311;
    background-image: linear-gradient(var(--main-color), var(--main-color));
    background-position: bottom left;
    background-size: 30px 2px;
    background-repeat: no-repeat;
    padding-bottom: 0.8em;
    margin-bottom: 0.6em;
    transition: .3s;
}

.top_shop .list li.slick-slide .link:hover .text_box .text {
    color: #fff;
    background-image: linear-gradient(#fff, #fff);
}

.top_shop .list li.slick-slide .link .text_box .tel {
    font-size: 14px;
    color: var(--main-color);
    transition: .3s;
}

.top_shop .list li.slick-slide .link:hover .text_box .tel {
    color: #fff;
}

.top_shop .list ul.slick-dots {
    bottom: -54px;
}

.top_shop .list ul.slick-dots li {
    width: 14px;
    height: 14px;
    margin: 0 15px;
    border-radius: 50%;
    overflow: hidden;
}

.top_shop .list ul.slick-dots li button {
    width: 100%;
    height: 100%;
}

.top_shop .list ul.slick-dots li button::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #AAAAAA;
    opacity: 1;
}

.top_shop .list ul.slick-dots li.slick-active button::before {
    background: var(--main-color);
}

.common_link_btn .link {
    display: grid;
    place-content: center;
    font-size: 18px;
    color: #fff;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 0 62px;
    width: fit-content;
    min-block-size: 60px;
    border-radius: 100vmax;
    margin: 0 auto;
    transition: .3s;
}

.common_link_btn .link:hover {
    background: #fff;
    color: var(--main-color);
}

/* PCフッター */
#footer .ft_main {
    padding: 75px 0 70px;
    background: #F7FAFF;
}

#footer .ft_main .logo_area {
    margin-bottom: 62px;
    display: grid;
    grid-template-columns: 278px 1fr;
    align-items: center;
    gap: 112px;
}

#footer .ft_main .logo_area .logo {
    width: 100%;
}

#footer .ft_main .logo_area .logo .link {
    display: block;
    width: 100%;
}

#footer .ft_main .logo_area .logo .link img {
    width: 100%;
}

#footer .ft_main .logo_area .logo .link img.small {
    width: 76%;
    margin-left: auto;
    display: block;
}

#footer .ft_main .logo_area .text_box .text {
    font-size: 14px;
    font-weight: 500;
    color: #1A1311;
    line-height: 1.64;
}

#footer .ft_main .link_area {
    display: grid;
    grid-template-columns: 278px 1fr;
    gap: 112px;
}

#footer .ft_main .link_area .contact_box li+li {
    margin-top: 10px;
}

#footer .ft_main .link_area .contact_box li .link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    background: var(--main-color);
    border-radius: 6px;
    min-block-size: 54px;
    transition: .3s;
}

#footer .ft_main .link_area .contact_box li .link:hover {
    opacity: 0.8;
}

#footer .ft_main .link_area .contact_box li.line .link {
    background: #06C755;
}

#footer .ft_main .link_area .contact_box li.request .link {
    background: #4EB2DE;
}

#footer .ft_main .link_area .contact_box li .link .icon {
    width: 30px;
}

#footer .ft_main .link_area .contact_box li .link .icon svg {
    width: 72%;
    display: block;
    margin: 0 auto;
}

#footer .ft_main .link_area .contact_box li .link .icon img {
    width: 100%;
}

#footer .ft_main .link_area .contact_box li .link .text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

#footer .ft_main .link_area .link_box {
    display: flex;
    justify-content: space-between;
}

#footer .ft_main .link_area .link_box .menu li+li {
    margin-top: 14px;
}

#footer .ft_main .link_area .link_box .menu li .link {
    display: block;
    font-size: 14px;
    letter-spacing: .04em;
    color: #1A1311;
    transition: .3s;
}

#footer .ft_main .link_area .link_box .menu li .link:hover {
    color: var(--main-color);
}

#footer .ft_main .link_area .link_box .search {
    display: flex;
    gap: 30px;
}

#footer .ft_main .link_area .link_box .search .box .theme {
    font-size: 14px;
    letter-spacing: .04em;
    color: #1A1311;
    padding-bottom: 0.8em;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #0A152B;
}

#footer .ft_main .link_area .link_box .search .box .list {
    display: flex;
    gap: 14px;
}

#footer .ft_main .link_area .link_box .search .box .list li .link {
    display: block;
    font-size: 13px;
    letter-spacing: .04em;
    line-height: 1.84;
    font-weight: 400;
    color: #1A1311;
    transition: .3s;
}

#footer .ft_main .link_area .link_box .search .box .list li .link:hover {
    color: var(--main-color);
}

#footer .ft_link {
    padding: 110px 0 100px;
    background: #F8F8F8;
}

#footer .ft_link .ttl_box {
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid #0A152B;
}

#footer .ft_link .ttl_box .ttl {
    font-size: 16px;
    letter-spacing: .08em;
    color: var(--main-color);
}

#footer .ft_link .search_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 102px;
}

#footer .ft_link .search_area .area .list .cont {
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: 74px 1fr;
}

#footer .ft_link .search_area .area .list .cont .theme {
    display: block;
    font-size: 14px;
    letter-spacing: .08em;
    color: #1A1311;
}

#footer .ft_link .search_area .area .list .cont ul {
    display: flex;
    gap: 16px;
}

#footer .ft_link .search_area .area .list .cont ul+ul {
    margin-top: 4px;
}

#footer .ft_link .search_area .area .list .cont li .link {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1A1311;
    transition: .3s;
}

#footer .ft_link .search_area .area .list .cont li .link:hover {
    color: var(--main-color);
}

#footer .ft_link .search_area .area .list .cont li+li {
    position: relative;
}

#footer .ft_link .search_area .area .list .cont li+li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    translate: 0 -50%;
    width: 1px;
    height: 12px;
    background: #1A1311;
}

#footer .ft_link .search_area .area .list .item_box ul {
    display: flex;
    gap: 20px;
}

#footer .ft_link .search_area .area .list .item_box li .link {
    font-size: 14px;
    letter-spacing: .08em;
    color: #1A1311;
    transition: .3s;
}

#footer .ft_link .search_area .area .list .item_box li .link:hover {
    color: var(--main-color);
}

#footer .ft_link .search_area .station .box+.box {
    margin-top: 50px;
}

#footer .ft_link .search_area .station .box .list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 18px;
}

#footer .ft_link .search_area .station .box .list li .link {
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 500;
    color: #1A1311;
    transition: .3s;
}

#footer .ft_link .search_area .station .box .list li .link:hover {
    color: var(--main-color);
}

#footer .ft_link .shop_area .list ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

#footer .ft_link .shop_area .list li .link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 5px 10px 5px 5px;
    transition: .3s;
}

#footer .ft_link .shop_area .list li .link:hover {
    background: var(--main-color);
}

#footer .ft_link .shop_area .list li .link .img {
    width: 70px;
    flex-shrink: 0;
}

#footer .ft_link .shop_area .list li .link .img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

#footer .ft_link .shop_area .list li .link .text {
    font-size: 14px;
    letter-spacing: .1em;
    color: #0A152B;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}

#footer .ft_link .shop_area .list li .link:hover .text {
    color: #fff;
}

#footer .ft_link .shop_area .list li .link .text::after {
    content: "";
    width: 8px;
    aspect-ratio: 1;
    border-right: 2px solid #0A152B;
    border-bottom: 2px solid #0A152B;
    rotate: -45deg;
    transition: .3s;
}

#footer .ft_link .shop_area .list li .link:hover .text::after {
    border-color: #fff;
}

#footer .ft_group {
    padding: 90px 0;
    background: #003E92;
}

#footer .ft_group .ttl_box {
    margin-bottom: 26px;
}

#footer .ft_group .ttl_box .ttl {
    font-size: 22px;
    letter-spacing: .2em;
    color: #fff;
    text-align: center;
}

#footer .ft_group .list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
}

#footer .ft_group .list li .link {
    display: block;
    transition: .3s;
}

#footer .ft_group .list li .link:hover {
    opacity: 0.8;
}

#footer .ft_group .list li .link .logo {
    width: 100%;
    min-block-size: 90px;
    display: grid;
    place-content: center;
    background: #fff;
    padding: 0 28px;
    margin-bottom: 12px;
}

#footer .ft_group .list li .link .logo img {
    width: 100%;
}

#footer .ft_group .list li .link .name_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #fff;
}

#footer .ft_group .list li .link .name_box .name {
    font-size: 16px;
    letter-spacing: .08em;
    color: #fff;
}

#footer .ft_group .list li .link .name_box .icon {
    width: 16px;
    flex-shrink: 0;
}

#footer .ft_group .list li .link .name_box .icon svg {
    width: 100%;
    display: block;
}

#footer .ft_group .list li .link .text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

#footer .ft_info {
    padding: 60px 0 30px;
    background: #1A1311;
    color: #fff;
}

#footer .ft_info .info_box {
    padding-bottom: 48px;
    margin-bottom: 8px;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: end;
    gap: 30px;
}

#footer .ft_info .info_box .logo {
    width: 75px;
}

#footer .ft_info .info_box .logo .link {
    display: block;
    width: 100%;
}

#footer .ft_info .info_box .logo .link img {
    width: 100%;
}

#footer .ft_info .info_box .info .name {
    font-size: 14px;
    letter-spacing: .08em;
    margin-bottom: 0.8em;
}

#footer .ft_info .info_box .info .text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.42;
}


#footer .ft_info .info_box .info .text a {
    pointer-events: none;
    color: #fff;
}

#footer .ft_info .cr_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .ft_info .cr_box .cr {
    font-size: 12px;
    font-weight: 400;
}

#footer .ft_info .cr_box .link_area ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer .ft_info .cr_box .link_area li+li {
    position: relative;
}

#footer .ft_info .cr_box .link_area li+li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    translate: 0 -50%;
    width: 1px;
    height: 12px;
    background: #fff;
}

#footer .ft_info .cr_box .link_area li .link {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

/* PC追従 */
.pc_fixed {
    position: fixed;
    top: 302px;
    right: 0;
}

.pc_fixed li+li {
    margin-top: 12px;
}

.pc_fixed li .link {
    width: 80px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    background: #004AAD;
    transition: .3s;
}

.pc_fixed li .link:hover {
    opacity: 0.8;
}

.pc_fixed li.history .link {
    background: #20992A;
}

.pc_fixed li .link .icon {
    width: 30px;
    margin: 0 auto 10px;
}

.pc_fixed li .link .icon svg {
    width: 98%;
    display: block;
}

.pc_fixed li .link .text {
    font-size: 13px;
    letter-spacing: .01em;
    line-height: 1;
    color: #fff;
}

/* PC固定ページ 共通設定 */

.common_page_wrap {
    padding: 64px 0 120px;
}

.common_page_title {
    text-align: center;
    margin-bottom: 2em;
}

.common_page_title h2 {
    font-size: 30px;
}

.common_page_title .sub_title {
    font-size: 14px;
    letter-spacing: .1em;
}

.reserve_text {
    text-align: center;
    font-size: 30px;
}

.common-btn {
    display: block;
    width: 300px;
    line-height: 50px;
    background-color: #333;
    color: #fff;
    margin: 0 auto;
    transition: .3s;
}

.common-btn:hover {
    opacity: .7;
}

/* パンくず */
#breadcrumbs {
    font-size: 12px;
    margin-top: 25px;
}

#breadcrumbs a {
    text-decoration: none;
    position: relative;
    margin-right: 13px;
    display: inline-block;
    font-weight: 500;
    color: #AAA;
}

#breadcrumbs a:after {
    content: "";
    border-top: solid 1px #AAA;
    border-right: solid 1px #AAA;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    position: absolute;
    right: -7.5px;
    top: calc(50% - 2.5px);
}

#breadcrumbs li:first-child::before {
    content: "";
    background: url(../../image/site/icon_home.svg) no-repeat;
    background-position: center;
    background-size: contain;
    width: 19.5px;
    height: 17.4px;
    display: block;
}

#breadcrumbs li:first-child {
    display: flex;
    align-items: flex-start;
    gap: 0 10px;
}

#breadcrumbs li {
    color: #1A1311;
    font-weight: 500;
}

#breadcrumbs ul {
    justify-content: flex-end;
}

/* ページャー  */
.pagerTable {
    width: 100%;
    margin-top: 40px;
    font-weight: bold;
    border-collapse: separate;
    border-spacing: 6px 0;
    align-items: center;
    justify-content: center;
}

.pagerTablePrevNextCell {
    display: table-cell;
    width: 25px;
    margin-right: 5px;
    padding: 5px;
    text-align: center;
    font-size: 11pt;
    color: #717171;
    cursor: pointer;
    position: relative;
}

.pagerTablePrevNextCell:before {
    content: "";
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.pagerTablePrevNextCell.next:before {
    border-top: solid 3px var(--main-color);
    border-right: solid 3px var(--main-color);
}

.pagerTablePrevNextCell.prev:before {
    border-bottom: solid 3px var(--main-color);
    border-left: solid 3px var(--main-color);
}

.pagerTablePrevNextCellEmpty {
    display: table-cell;
    width: 25px;
    margin-right: 5px;
    padding: 5px;
    text-align: center;
    font-size: 11pt;
    color: #717171;
}

.pager_item {
    display: table-cell;
    width: 37px;
    line-height: 35px;
    margin: 0 5px;
    text-align: center;
    font-size: 11pt;
    color: var(--main-color);
    background: #fff;
    border: 1px solid var(--main-color);
    cursor: pointer;
    border-radius: 100%;
    font-size: 13px;
    transition: .3s;
}

.pager_item:hover,
.pagerTableCurrentPageCell {
    background: var(--main-color);
    color: #fff;
}

.pagerTableHellipCell {
    display: table-cell;
    width: 15px;
    margin: 0 5px;
    text-align: center;
    font-size: 8pt;
    color: #717171;
}


/* PC固定ページ 会社概要 */

.company_profile {
    margin-bottom: 100px;
}

.company_profile table {
    width: 100%;
    border-collapse: collapse;
}

.company_profile table th,
.company_profile table td {
    padding: 1em;
    border-bottom: 1px solid;
    font-size: 14px;
}

.company_profile table th {
    width: 20%;
}

.company_profile table td {
    width: 80%;
}

.company_access .map {
    height: 350px;
}

.company_access .map iframe {
    width: 100%;
    height: 100%;
}


/* PC固定ページ 個人情報保護方針 */

#page_privacy .main_text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 3em;
}

#page_privacy dl {
    margin-bottom: 30px;
}

#page_privacy dl:last-child {
    margin-bottom: 0;
}

#page_privacy dl dt {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: .5em;
    border-left: 5px solid;
    padding-left: 1em;
}

#page_privacy dl dd {
    font-size: 14px;
    line-height: 2;
}

#page_privacy dl dd li {
    display: flex;
}


/* PC固定ページ サイトマップ  */

#page_sitemap .common_page_title h2 {
    background: #f1f1f1;
    padding: .5em;
}

#page_sitemap .inBox+.inBox {
    margin-top: 80px;
}

#page_sitemap .inBox ul li {
    width: 19%;
    margin-left: calc(5% / 4);
    margin-bottom: 20px;
}

#page_sitemap .inBox ul li:nth-child(5n + 1) {
    margin-left: 0;
}

#page_sitemap .inBox ul li a {
    color: initial;
    transition: .3s;
    display: block;
    padding: 10px 10px 10px 10px;
    border-bottom: 1px solid;
    font-size: 14px;
    position: relative;
}

#page_sitemap .inBox ul li a:after {
    content: "";
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    position: absolute;
    right: 5px;
    top: calc(50% - 2.5px);
}

#page_sitemap .inBox ul li a:hover {
    opacity: .7;
}

/* PC固定ページ 記事詳細ページ */

#page_article .article_title {
    font-size: 20px;
    margin-bottom: .2em;
    font-size: 30px;
    line-height: 1.4;
    border-bottom: solid 1px #ccc;
    padding: 79px 0 30px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
    letter-spacing: .05em;
}

#page_article .contents_area {
    width: 65%;
    width: 650px;
    margin-right: 120px;
    flex-shrink: 0;
}

#page_article #side_menu {
    width: 23%;
    margin-top: 194px;
}

#page_article #side_menu .title {
    border-bottom: 1px solid #ccc;
    position: relative;
    margin-bottom: 21px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    padding-bottom: 7px;
}

#page_article #side_menu .title:before {
    content: "";
    width: 30px;
    height: 1px;
    background: #333;
    position: absolute;
    left: 0;
    bottom: -1px;
}

#page_article #side_menu ul li a {
    color: #333;
    font-size: 14px;
    flex-wrap: nowrap;
    align-items: center;
}

#page_article .data_area {
    align-items: center;
    margin: 40px 0;
}

#page_article .data_area .icon svg {
    width: 12px !important;
    height: 12px !important;
    display: block;
}

#page_article .data_area p.data {
    color: #6c6c6c;
    font-size: 13px;
}

#page_article .text_area img {
    height: auto !important;
}

#page_article .text_area p {
    font-size: 14px;
    line-height: 2;
}


/* PC固定ページ 記事一覧ページ */

ul.article_list li {
    width: 48%;
    margin-bottom: 20px;
}

ul.article_list li a {
    color: initial;
    align-items: center;
}

ul.article_list li .image {
    width: 30%;
    height: 100px;
    position: relative;
}

ul.article_list li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul.article_list li .textArea {
    width: 65%;
}

ul.article_list li .textArea .title {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

ul.article_list li .data_area {
    align-items: center;
}

ul.article_list li .data_area .icon svg {
    width: 12px;
    height: 12px;
    display: block;
}

ul.article_list li .data_area p.data {
    font-size: 12px;
    margin-left: 10px;
    color: #4C3F39;
}


/* 未公開物件セクション（PC） */

.common_mikoukai_area {
    padding: 20px;
    border: 2px dashed #333;
}

.common_mikoukai_area .ttl {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 15px;
}

.common_mikoukai_area .txt {
    text-align: center;
    max-width: 700px;
    width: 90%;
    margin: auto;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
}

.common_mikoukai_area a {
    display: block;
    text-align: center;
    text-decoration: none;
    background: var(--main-color);
    color: #fff !important;
    font-weight: bold;
    font-size: 16px;
    width: 300px;
    margin: auto;
    padding: 10px 0;
    border-radius: 5px;
    letter-spacing: 1px;
}


/* PC固定ページ エリア・沿線検索 */

#page_search .errorMsg {
    padding: 20px 0;
    font-size: 14pt;
    font-weight: bold;
    color: #f00;
}

#page_search .displayNone {
    display: none;
}

#page_search .tableCell {
    display: table-cell;
}

#page_search .tableCell {
    display: table-cell;
}

#page_search .area_box+.area_box {
    margin-top: 40px;
}

#page_search .search_main_midashi {
    padding: 0px 30px;
    line-height: 30px;
    border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-right-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    margin: 0px;
    background-color: var(--main-color);
    color: #fff;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    padding: 8px 20px;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

#page_search .areaSearchAreaName {
    padding: 5px 0;
    font-size: 12pt;
    font-weight: bold;
}

#page_search .checkboxCheckAll {
    padding-left: 40px;
    vertical-align: middle;
    font-weight: bold;
}

#page_search .checkboxCheckAll label {
    font-weight: normal;
    font-size: 12px;
}

#page_search div#area_1.table-L,
#page_search div#area_2.table-L,
#page_search div#area_3.table-L,
#page_search div#area_4.table-L,
#page_search div#area_5.table-L,
#page_search div#area_6.table-L,
#page_search div#area_7.table-L,
#page_search div#area_8.table-L,
#page_search div#area_9.table-L,
#page_search div#area_10.table-L {
    background: #fff;
    border: 1px solid #e9e9e9;
}

#page_search .areaListTableCell,
#page_search .railwayAreaListTableCell,
#page_search .railwayLineListTableCell {
    width: calc(100% / 3);
    border: 1px solid #f4f4f4;
    background: #f6fbf6;
    position: relative;
    transition: 0.2s;
}

#page_search .areaListTableCell:hover span.in_wrap:before,
#page_search .railwayAreaListTableCell:hover span.in_wrap:before,
#page_search .railwayLineListTableCell:hover span.in_wrap:before {
    border: 5px solid #fbdc5a;
}

#page_search .areaListTableCell label input,
#page_search .railwayAreaListTableCell label input,
#page_search .railwayLineListTableCell label input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 5;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 10px;
    top: calc(50% - 15px);
}

#page_search .areaListTableCell input:checked+span.in_wrap,
#page_search .railwayAreaListTableCell input:checked+span.in_wrap,
#page_search .railwayLineListTableCell input:checked+span.in_wrap {
    background: #fff2ba;
}

#page_search .areaListTableCell span.in_wrap,
#page_search .railwayAreaListTableCell span.in_wrap,
#page_search .railwayLineListTableCell span.in_wrap {
    position: relative;
    display: block;
    margin-right: 0px;
    cursor: pointer;
    padding: 15px 15px 15px 50px;
}

#page_search .areaListTableCell span.in_wrap::before,
#page_search .railwayAreaListTableCell span.in_wrap::before,
#page_search .railwayLineListTableCell span.in_wrap::before {
    z-index: 0;
    content: "";
    position: absolute;
    top: calc(50% - 15px);
    left: 10px;
    border: 5px solid #dee8de;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 30px;
    height: 30px;
    background-color: white;
    transition: 0.2s;
}

#page_search .areaListTableCell input:checked+span.in_wrap::after,
#page_search .railwayAreaListTableCell input:checked+span.in_wrap::after,
#page_search .railwayLineListTableCell input:checked+span.in_wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    left: 16px;
    width: 20px;
    height: 12px;
    margin-top: -10px;
    border-left: 4px solid #F7931E;
    border-bottom: 4px solid #F7931E;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: 4;
}

#page_search .areaListTableCell>label a,
#page_search .railwayAreaListTableCell>label a,
#page_search .railwayLineListTableCell>label a {
    text-decoration: underline;
}

#page_search .font-AreaLinkText,
#page_search .font-RailwayLineLinkText,
#page_search .font-RailwayAreaLinkText {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    font-family: "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "helvetica", "arial", sans-serif;
}

#page_search .areaListTableCell span.List_number,
#page_search .railwayAreaListTableCell span.List_number,
#page_search .railwayLineListTableCell span.List_number {
    color: #000;
    font-size: 10px;
    margin-left: 2px;
    margin-right: 2px;
}

#page_search .searchButtonArea {
    width: 500px;
    margin: auto;
    padding: 30px 0;
    text-align: center;
}

#page_search .searchButtonArea .search_more_btn {
    padding: 0;
    font-weight: normal;
    line-height: 50px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    letter-spacing: 2px;
    display: block;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 48%;
    cursor: pointer;
    transition: 0.2s;
}

#page_search .searchButtonArea .search_more_btn:hover {
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.2);
    opacity: 0.8;
}

#page_search .searchButtonArea input.search_btn {
    cursor: pointer;
    width: 48%;
    background-color: #fcc331;
    border-radius: 10px;
    border: 0px;
    font-size: 16px;
    letter-spacing: 2px;
    height: 50px;
    line-height: 50px;
    transition: 0.2s;
}

#page_search .searchButtonArea input.search_btn:hover {
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.2);
    opacity: 0.8;
}

#page_search .searchButtonArea input.search_btn.ont_btn {
    width: 100%;
}

/* 記事詳細ページ　PC */
#page_article .article_main_image {
    width: 300px;
    height: 300px;
    position: relative;
    margin: auto;
}

.pa_img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#page_article .article_main_image img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#page_article .wrap {
    width: 1340px;
}

#page_article .fl_wrap {
    justify-content: flex-end;
    padding-right: 50px;
}

#page_article .article_title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background: #333;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    top: 0;
}

#page_article .article_title::after {
    content: "TOPIC";
    font-size: 12px;
    top: -28px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    letter-spacing: .08em;
}

.single_sns_bar {
    position: fixed;
    left: 80px;
    top: 280px;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
}

.single_sns_bar li {
    width: 30px;
    margin: 20px 0;
}

.single_sns_bar::before {
    content: "";
    width: 1px;
    height: 100px;
    background: #333;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -92px;
}

.single_sns_bar::after {
    content: "SHARE ON";
    position: absolute;
    top: -160px;
    font-size: 11px;
    writing-mode: vertical-lr;
    text-align: center;
    left: 5px;
    right: 0;
    margin: auto;
}

#page_article #side_menu ul {
    position: relative;
    padding-left: 25px;
}

#page_article #side_menu ul::before {
    content: "∟";
    position: absolute;
    left: 0;
    font-size: 14px;
}

#page_article #side_menu ul li {
    border-bottom: solid 1px #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

#page_article #side_menu ul li a .img {
    width: 90px;
    height: 64px;
    position: relative;
    flex-shrink: 0;
    margin-right: 17px;
}

#page_article #side_menu ul li a .img img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#page_article #side_menu ul li a .ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#page_article .day_cat .cat {
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 1px 10px;
}

.single_sns_bar.active {
    opacity: 1;
    visibility: visible;
}

/* 物件アーカイブ（PC） */

#page_butkenArchive .table li {
    font-size: 14px;
    line-height: 2;
}

#page_butkenArchive .table li.thead_archive {
    background: #d5e3f7;
    padding: 5px 10px;
    border: 1px solid #e9e9e9;
    min-width: 100px;
}

#page_butkenArchive .table li.tbody_archive a {
    color: #146fb5;
}

#page_butkenArchive .table li.tbody_archive {
    background: #fff;
    padding: 5px 10px;
    border: 1px solid #e9e9e9;
    min-width: 100px;
}

#page_butkenArchive .table {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin-top: 50px;
}

#page_butkenArchive .table-L {
    display: table;
    table-layout: fixed;
    width: 100%;
}

#page_butkenArchive .tableRow {
    display: table-row;
}

#page_butkenArchive .tableCell {
    display: table-cell;
}

/* PC支店一覧 */

.page_shop .store_block+.store_block {
    margin-top: 80px;
}

.page_shop .common_ttl_box {
    margin-bottom: 30px;
}

.page_shop .common_ttl_box .ttl {
    line-height: 1.3;
}

.shop_midashi_box {
    padding: 0px 30px;
    line-height: 30px;
    border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-right-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    margin: 0px;
    background-color: var(--main-color);
    color: #fff;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    padding: 8px 20px;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.page_shop .list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.page_shop .list li .link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
    background: #fff;
    border-radius: 6px;
    height: 100%;
    transition: .3s;
}

.page_shop .list li .link:hover {
    background: var(--main-color);
}

.page_shop .list li .link::after {
    content: "";
    width: 10px;
    aspect-ratio: 1;
    border-right: 2px solid #0A152B;
    border-bottom: 2px solid #0A152B;
    rotate: -45deg;
    flex-shrink: 0;
    transition: .3s;
}

.page_shop .list li .link:hover::after {
    border-color: #fff;
}

.page_shop .list li .link .img {
    width: 130px;
    flex-shrink: 0;
}

.page_shop .list li .link .img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.page_shop .list li .link .text_box {
    flex-grow: 1;
}

.page_shop .list li .link .text_box .text {
    font-size: 16px;
    letter-spacing: .12em;
    line-height: 1.5;
    color: #1A1311;
    background-image: linear-gradient(var(--main-color), var(--main-color));
    background-position: bottom left;
    background-size: 30px 2px;
    background-repeat: no-repeat;
    padding-bottom: 0.8em;
    margin-bottom: 0.6em;
    transition: .3s;
}

.page_shop .list li .link:hover .text_box .text {
    color: #fff;
    background-image: linear-gradient(#fff, #fff);
}

.page_shop .list li .link .text_box .tel,
.page_shop .list li .link .text_box .add {
    font-size: 13px;
    color: #666;
    transition: .3s;
}

.page_shop .list li .link .text_box .tel {
    font-size: 15px;
}

.page_shop .list li .link:hover .text_box .tel,
.page_shop .list li .link:hover .text_box .add {
    color: #fff;
}

/* 店舗詳細（東京・郡山・岡山 */
.page_store_2 .main_sec {
    padding-bottom: 115px;
    margin-bottom: 100px;
    border-bottom: 1px solid #ccc;
}

.page_store_2 .main_sec .main_cont {
    background-image: url(../../image/site/store_tokyo_mv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin-bottom: 30px;
}

.page_store_2.koriyama .main_sec .main_cont {
    background-image: url(../../image/site/store_koriyama_mv.jpg);
}

.page_store_2.okayama .main_sec .main_cont {
    background-image: url(../../image/site/store_okayama_mv.jpg);
}

.page_store_2 .main_sec .main_cont::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 216px;
    background: linear-gradient(to bottom, #fff, #0071BC);
    opacity: 0.8;
    mix-blend-mode: multiply;
    z-index: -1;
}

.page_store_2 .main_sec .main_cont .online_box {
    width: 145px;
    margin-bottom: 40px;
}

.page_store_2 .main_sec .main_cont .online_box .catch {
    background: #fff;
    color: var(--main-color);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    padding: 0.6em;
    position: relative;
    filter: drop-shadow(0 0 2px var(--main-color));
    margin-bottom: 2em;
}

.page_store_2 .main_sec .main_cont .online_box .catch::before {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    translate: -50% 100%;
    width: 18px;
    height: 12px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.page_store_2 .main_sec .main_cont .online_box .box {
    width: 100%;
    min-block-size: 145px;
    background: var(--main-color);
    display: grid;
    place-content: center;
}

.page_store_2 .main_sec .main_cont .online_box .box .img {
    width: 62px;
    margin: 0 auto 10px;
}

.page_store_2 .main_sec .main_cont .online_box .box .img img {
    width: 100%;
}

.page_store_2 .main_sec .main_cont .online_box .box .text {
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}

.page_store_2 .main_sec .main_cont .ttl_box .ttl {
    font-size: 40px;
    letter-spacing: .06em;
    color: #fff;
}

.page_store_2 .main_sec .main_cont .ttl_box .ttl .small {
    font-size: 16px;
    display: block;
}

.page_store_2 .main_sec .main_cont .point_box {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.page_store_2 .main_sec .main_cont .point_box ul {
    display: grid;
    grid-template-columns: repeat(3, 110px);
    gap: 20px;
}

.page_store_2 .main_sec .main_cont .point_box li {
    background: #2F9B32;
    min-block-size: 110px;
    display: grid;
    place-content: center;
    border-radius: 50%;
}

.page_store_2 .main_sec .main_cont .point_box li .icon {
    width: 50px;
    margin: 0 auto 2px;
}

.page_store_2 .main_sec .main_cont .point_box li .icon img {
    width: 100%;
}

.page_store_2 .main_sec .main_cont .point_box li .text {
    font-size: 18px;
    letter-spacing: .06em;
    color: #fff;
    text-align: center;
}

.page_store_2 .main_sec .img_cont ul {
    display: grid;
    grid-template-columns: repeat(3, 24%);
    gap: 30px;
    justify-content: center;
}

.page_store_2 .main_sec .img_cont li {
    width: 100%;
}

.page_store_2 .main_sec .img_cont li img {
    width: 100%;
    aspect-ratio: 328/211;
    object-fit: cover;
    border-radius: 10px;
}

.page_store_2 .main_sec .news_cont {
    margin: -70px 60px 0;
    display: flex;
    gap: 60px;
    background: #fff;
    padding: 40px 60px;
    position: relative;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.16);
}

.page_store_2 .main_sec .news_cont .ttl_box .ttl {
    font-size: 30px;
    letter-spacing: .1em;
    line-height: 1;
    color: #ccc;
    font-weight: 300;
}

.page_store_2 .main_sec .news_cont .list li+li {
    margin-top: 18px;
}

.page_store_2 .main_sec .news_cont .list li .link {
    display: grid;
    grid-template-columns: 95px 1fr;
    align-items: center;
    gap: 10px;
}

.page_store_2 .main_sec .news_cont .list li .link .date {
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 400;
    color: #ccc;
}

.page_store_2 .main_sec .news_cont .list li .link .ttl {
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 700;
    color: #0A152B;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    transition: .3s;
}

.page_store_2 .main_sec .news_cont .list li .link:hover .ttl {
    color: var(--main-color);
}

.page_store_2 .main_sec .insta_cont {
    margin-top: 60px;
}

.page_store_2 .main_sec .insta_cont .box .lead {
    text-align: center;
    font-size: 24px;
    letter-spacing: .08em;
    line-height: 1.5;
    margin-block: 0 0.4em;
}

.page_store_2 .main_sec .insta_cont .box .link {
    display: block;
    width: 875px;
    margin: 0 auto;
    transition: .3s;
}

.page_store_2 .main_sec .insta_cont .box .link:hover {
    opacity: 0.8;
}

.page_store_2 .main_sec .insta_cont .box .link .img {
    width: 100%;
}

.page_store_2 .main_sec .insta_cont .box .link .img img {
    width: 100%;
}

.page_store_2 .about_sec {
    padding-bottom: 100px;
    margin-bottom: 100px;
    border-bottom: 1px solid #ccc;
}

.page_store_2 .about_sec .cont {
    margin: 0 140px;
}

.page_store_2 .about_sec .cont .catch {
    font-size: 24px;
    letter-spacing: .06em;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 1.2em;
}

.page_store_2 .about_sec .cont .text_box {
    margin-bottom: 62px;
}

.page_store_2 .about_sec .cont .text_box .text {
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 500;
    line-height: 2;
}

.page_store_2 .about_sec .cont .text_box .text+.text {
    margin-top: 1em;
}

.page_store_2 .about_sec .cont .banner_box {
    width: 100%;
}

.page_store_2 .about_sec .cont .banner_box img {
    width: 100%;
}

.page_store_2 .info_sec {
    margin: 0 50px 100px;
}

.page_store_2 .info_sec .ttl_box {
    margin-bottom: 30px;
}

.page_store_2 .info_sec .ttl_box .ttl {
    font-size: 22px;
    letter-spacing: .06em;
    color: var(--main-color);
}

.page_store_2 .info_sec .cont {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
}

.page_store_2 .info_sec .cont .table_box .item {
    padding: 20px;
}

.page_store_2 .info_sec .cont .table_box .item+.item {
    border-top: 1px solid #ccc;
}

.page_store_2 .info_sec .cont .table_box .item .theme {
    font-size: 16px;
    letter-spacing: .06em;
    font-weight: 500;
    margin-bottom: 0.4em;
}

.page_store_2 .info_sec .cont .table_box .item .text {
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 500;
}

.page_store_2 .info_sec .cont .table_box .item .text a {
    pointer-events: none;
    color: #0A152B;
}

.page_store_2 .info_sec .cont .map_box .text_box {
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.page_store_2 .info_sec .cont .map_box .text_box .icon {
    width: 40px;
}

.page_store_2 .info_sec .cont .map_box .text_box .icon svg {
    width: 100%;
}

.page_store_2 .info_sec .cont .map_box .text_box .text {
    color: #fff;
    font-size: 14px;
    letter-spacing: .04em;
    line-height: 1.5;
}

.page_store_2 .info_sec .cont .map_box .text_box .text .big {
    display: block;
    font-size: 22px;
}

.page_store_2 .info_sec .cont .map_box .map {
    width: 100%;
    aspect-ratio: 57/50;
    border: 1px solid;
}

.page_store_2 .info_sec .cont .map_box .map iframe {
    width: 100%;
    height: 100%;
}

.page_store_2 .contact_sec {
    background: var(--main-color);
    padding: 70px 0;
}

.page_store_2 .contact_sec .ttl_box {
    margin: 0 50px 30px;
    color: #fff;
    text-align: center;
}

.page_store_2 .contact_sec .ttl_box .ttl {
    font-size: 22px;
    letter-spacing: .06em;
    margin-bottom: 0.5em;
}

.page_store_2 .contact_sec .ttl_box .text {
    font-size: 16px;
    letter-spacing: .06em;
}

.page_store_2 .contact_sec .cont {
    margin: 0 50px;
}

.page_store_2 .contact_sec .cont ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.page_store_2 .contact_sec .cont li {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.page_store_2 .contact_sec .cont li .label {
    font-size: 18px;
    letter-spacing: .06em;
    text-align: center;
    color: var(--main-color);
    margin-bottom: 0.8em;
}

.page_store_2 .contact_sec .cont li .tel_box {
    margin-bottom: 5px;
}

.page_store_2 .contact_sec .cont li .tel_box .tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: #0A152B;
    pointer-events: none;
}

.page_store_2 .contact_sec .cont li .tel_box .tel .icon {
    width: 30px;
}

.page_store_2 .contact_sec .cont li .tel_box .tel .icon svg {
    width: 100%;
}

.page_store_2 .contact_sec .cont li .tel_box .text {
    font-size: 14px;
    letter-spacing: .04em;
    text-align: center;
}

.page_store_2 .contact_sec .cont li .info {
    font-size: 14px;
    letter-spacing: .04em;
    text-align: center;
}

.page_store_2 .contact_sec .cont li .link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--main-color);
    padding: 10px;
    min-block-size: 70px;
    border-radius: 10px;
    transition: .3s;
}

.page_store_2 .contact_sec .cont li.line .link {
    background: #06C755;
}

.page_store_2 .contact_sec .cont li .link:hover {
    opacity: .8;
}

.page_store_2 .contact_sec .cont li .link .icon {
    width: 35px;
}

.page_store_2 .contact_sec .cont li.line .link .icon {
    width: 40px;
}

.page_store_2 .contact_sec .cont li .link .icon img {
    width: 100%;
}

.page_store_2 .contact_sec .cont li .link .text {
    color: #fff;
    font-size: 16px;
    letter-spacing: .04em;
}

.page_store_2 .banner_sec {
    margin-top: 100px;
}

.page_store_2 .banner_sec .cont {
    margin: 0 50px;
}

.page_store_2 .banner_sec .cont .ttl_box {
    margin-bottom: 30px;
}

.page_store_2 .banner_sec .cont .ttl_box .ttl {
    font-size: 22px;
    letter-spacing: .06em;
    color: var(--main-color);
}

.page_store_2 .banner_sec .cont .banner .link {
    display: block;
    width: 100%;
    margin: 0 auto;
    transition: .3s;
}

.page_store_2 .banner_sec .cont .banner .link:hover {
    opacity: 0.8;
}

.page_store_2 .banner_sec .cont .banner .link img {
    width: 100%;
}

/* 内部共通 */
.common_fv .common_ttl_box {
    text-align: center;
    padding: 106px 0 35px;
    border-bottom: solid 2px #F0F0F0;
}

.common_fv .common_ttl_box .en_ttl {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
}

.common_fv .common_ttl_box .ttl {
    font-size: 18px;
    letter-spacing: .1em;
    font-weight: 700;
}

.common_fv .common_ttl_box .ttl.lr {
    font-size: 40px;
}

/* 店舗詳細ページ */
.page_store .store_about_sec .about_cont {
    display: flex;
    gap: 0 50px;
    align-items: center;
    padding-bottom: 59px;
    margin-bottom: 59px;
    border-bottom: solid 2px #F0F0F0;
}

.page_store .store_about_sec .about_cont .img {
    flex-shrink: 0;
}

.page_store .store_about_sec .about_cont .img img {
    width: 480px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}

.page_store .store_about_sec .about_cont .text_area {
    width: 100%;
}

.page_store .store_about_sec .about_cont .text_area .catch_box .catch {
    font-size: 22px;
    letter-spacing: .12em;
    font-weight: 700;
    line-height: 1.5;
    color: #1A1311;
}

.page_store .store_about_sec .about_cont .text_area .main_text .text {
    font-size: 14px;
    letter-spacing: .04em;
    color: #1A1311;
    font-weight: 500;
}

.page_store .store_about_sec .about_cont .text_area .main_text .text+.text {
    margin-top: 25px;
}

.page_store .store_about_sec .about_cont .text_area .catch_box {
    margin-bottom: 22px;
}

.page_store .store_about_sec .about_cont .text_area .main_text {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: solid 1px #CCC;
}

.page_store .store_about_sec .about_cont .text_area .contact_box .name {
    font-size: 18px;
    letter-spacing: .1em;
    font-weight: 700;
}

.page_store .store_about_sec .about_cont .text_area .contact_box .inner {
    display: flex;
    gap: 0 43px;
    align-items: center;
}

.page_store .store_about_sec .about_cont .text_area .contact_box .inner .time {
    font-size: 13px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #1A1311;
}

.page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .free {
    font-size: 34px;
    color: #1A1311;
    display: flex;
    align-items: center;
    gap: 0 8px;
    line-height: 1.4;
}

.page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .free::before {
    content: "";
    background: url(../../image/site/icon_free_tel.svg) no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    width: 47px;
    aspect-ratio: 47/30.8;
    min-width: 0;
    flex-shrink: 0;
}

.page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .text {
    font-size: 14px;
    font-weight: 400;
    color: #1A1311;
    line-height: 1.3;
}

.page_store .store_about_sec .info_cont {
    display: flex;
    gap: 0 51px;
}

.page_store .store_about_sec .info_cont .map {
    width: 540px;
    height: 460px;
    flex-shrink: 0;
}

.page_store .store_about_sec .info_cont .table_box {
    width: 100%;
}

.page_store .store_about_sec .info_cont .table_box .item+.item {
    border-top: solid 1px #DBDBDB;
    padding-top: 16px;
}

.page_store .store_about_sec .info_cont .table_box .item {
    padding-bottom: 16px;
    color: #1A1311;
    letter-spacing: .12em;
    font-weight: 700;
}

.page_store .store_about_sec .info_cont .table_box .item .theme {
    font-size: 12px;
    margin-bottom: 7px;
}

.page_store .store_about_sec .info_cont .table_box .item .text {
    font-size: 14px;
}

.page_store .store_about_sec .info_cont .table_box .item+.item:last-child {
    padding-bottom: 0;
}

.page_store .store_about_sec {
    margin-bottom: 94px;
}

.store_contact_sec .catch_box {
    text-align: center;
    margin-bottom: 20px;
}

.store_contact_sec .catch_box .catch {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #1A1311;
}

.store_contact_sec .contact_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 30px;
}

.store_contact_sec.contact_none .contact_list ul {
    display: flex;
    justify-content: center;
}

.store_contact_sec .contact_list li {
    text-align: center;
    width: 360px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .16);
    padding: 10px 20px 11px;
    border-radius: 6px;
}

.store_contact_sec .contact_list li .ttl {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 9px;
    color: #1A1311;
}

.store_contact_sec .contact_list li .tel_box {
    color: #1A1311;
}

.store_contact_sec .contact_list li .tel_box .free {
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 0 8px;
    justify-content: center;
    line-height: 1.2;
    margin-bottom: 0.1em;
}

.store_contact_sec .contact_list li .tel_box .free::before {
    content: "";
    background: url(../../image/site/icon_free_tel.svg) no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    width: 38.7px;
    aspect-ratio: 38.7/25.4;
    min-width: 0;
    flex-shrink: 0;
}

.store_contact_sec .contact_list li .tel_box .text {
    font-size: 14px;
    font-weight: 400;
}

.store_contact_sec .contact_list li .link {
    display: flex;
    gap: 0 32.9px;
    background-color: #003E92;
    border-radius: 6px;
    padding: 20px;
    align-items: center;
    transition: .3s;
}

.store_contact_sec .contact_list li.line .link .icon {
    width: 40px;
}

.store_contact_sec .contact_list li .link .text {
    color: #FFF;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.store_contact_sec .contact_list li.line .link {
    background-color: #06C755;
    padding: 10px 20px;
    gap: 0 21px;
}

.store_contact_sec .contact_list li .link .icon {
    line-height: 1;
}

.store_contact_sec .contact_list li .link:hover {
    opacity: .8;
}

.store_contact_sec .contact_list li .tel_box .free.sp {
    display: none;
}

.store_contact_sec .contact_list .free_none {
    display: grid;
    place-content: center;
    min-block-size: auto;
}

.page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .free.sp {
    display: none;
}

/* 会社概要 */
.company_profile_sec .cont dl {
    border-top: 1px solid #C4C4C4;
    display: flex;
}

.company_profile_sec .cont dl dt {
    flex-shrink: 0;
    width: 19.5%;
    border-top: 4px solid var(--main-color);
    padding: 1em;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 700;
}

.company_profile_sec .cont dl dd {
    width: 100%;
    font-size: 14px;
    letter-spacing: .12em;
    line-height: 1.7;
    padding: 1.8em 5.3em;
}

.page_company .common_page_wrap {
    padding: 120px 0;
}

.company_profile_sec {
    margin-bottom: 60px;
}

.page_company .company_access .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
}

.page_company .company_access .inner .map {
    height: auto;
}

.page_company .company_access {
    margin-bottom: 100px;
}

.page_company .company_history .history_list dl {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 30px;
}

.page_company .company_history .history_list {
    position: relative;
    padding-left: 100px;
}

.page_company .company_history .common_ttl_box {
    margin-bottom: 40px;
}

.page_company .company_access .inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_company .company_history .history_list::before {
    content: "";
    left: -3px;
    background-color: #EAEAEA;
    position: absolute;
    top: -30px;
    bottom: 0;
    width: 8px;
}

.page_company .company_history .history_list dl::before {
    content: "";
    width: 14px;
    aspect-ratio: 1/1;
    min-width: 0;
    background-color: var(--main-color);
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: -106px;
}

.page_company .company_history .history_list dl dt {
    font-size: 13px;
    letter-spacing: .12em;
}

.page_company .company_history .history_list dl dd {
    font-size: 15px;
    letter-spacing: .12em;
    border-bottom: solid 1px #EAEAEA;
    padding-bottom: 0.6em;
}

.page_company .company_history .history_list dl::after {
    content: "";
    width: 8px;
    aspect-ratio: 1 / 1;
    min-width: 0;
    background-color: #FFF;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: -103px;
}

.page_company .company_history .history_list dl dt {
    background-color: var(--main-color);
    color: #FFF;
    padding: 0.5em 1em;
    border-radius: 15px 0;
    margin-right: 30px;
    width: 100px;
    flex-shrink: 0;
}

.page_company .company_history .history_list .none dt {
    background-color: transparent;
}

.page_company .company_history .history_list dl+dl {
    margin-top: 70px;
}

.page_company .company_history .history_list .none::before {
    content: none;
}

.page_company .company_history .history_list .none::after {
    content: none;
}

.page_company .company_history .history_list .none {
    margin-top: 20px;
}

.page_company .company_history .history_list dl dt::before {
    content: "";
    width: 100px;
    height: 2px;
    border-top: dashed 2px #EAEAEA;
    position: absolute;
    top: 18px;
    left: -96px;
    z-index: -1;
}

.page_company .company_history .history_list .none dt::before {
    content: none;
}

.top_arrival.top_own_property {
    padding: 0;
    margin-bottom: 80px;
}

.top_own_property .sec_title {
    text-align: center;
    margin-block: 0 2em;
}

.top_own_property .sec_title .title {
    font-size: 32px;
    letter-spacing: .2em;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_own_property .sec_title .title .img {
    display: inline-block;
    width: 220px;
    line-height: 1;
    margin-inline: 0 0.3em;
}

.top_own_property .sec_title .title .img img {
    width: 100%;
}

.top_own_property .sec_title .title .color {
    display: inline-block;
    background: linear-gradient(to right, #009EC0, var(--main-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top_own_property .sec_title .text {
    font-size: 16px;
    letter-spacing: .08em;
    font-weight: 400;
    margin-block: 1em 0;
}

.top_own_property .cont {
    margin-bottom: 50px;
}

.city_intro_sec {
    padding-bottom: 150px;
}

.city_intro_sec .common_ttl_box {
    margin-bottom: 30px;
}

.city_intro_sec .list_box ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.city_intro_sec .list_box ul li {
    width: 270px;
    flex-shrink: 0;
}

.city_intro_sec .list_box ul li .item {
    height: 100%;
}

.city_intro_sec .list_box ul li .item .link {
    display: flex;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    flex-direction: column;
}

.city_intro_sec .list_box ul li .item+.item {
    margin-top: 25px;
}

.city_intro_sec .list_box ul li .link .img {
    overflow: hidden;
}

.city_intro_sec .list_box ul li .link .img img {
    width: 100%;
    aspect-ratio: 3/2;
    min-width: 0;
    object-fit: cover;
    transition: all .3s;
}

.city_intro_sec .list_box ul li .link:hover .img img {
    scale: 1.1;
}

.city_intro_sec .list_box ul li .link .text_box {
    padding: 20px;
    flex-grow: 1;
}

.city_intro_sec .list_box ul li .link .text_box .title {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: .05em;
    font-weight: 700;
    margin-bottom: .3em;
    transition: all .3s;
}

.city_intro_sec .list_box ul li .link:hover .text_box .title {
    color: var(--main-color);
}

.city_intro_sec .list_box ul li .link .text_box .text {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: .05em;
    font-weight: 500;
}

/* エリアページ */
.page_area_ward .city_introduction_sec .common_ttl_box {
    border-bottom: 3px solid #888;
}

.page_area_ward .common_ttl_box .en_ttl {
    color: #888;
}

.page_area_ward .common_ttl_box .ttl .color {
    color: var(--main-color);
    font-size: 1.2em;
}

.city_introduction_sec .cont {
    display: flex;
    gap: 0 70px;
    margin-top: 60px;
}

.city_introduction_sec .cont .img {
    width: 420px;
    flex-shrink: 0;
}

.city_introduction_sec .cont .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city_introduction_sec .cont .text_area .text+.text {
    margin-top: 1em;
}

.city_introduction_sec .cont .text_area .text {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.page_area_ward .top_search .common_ttl_box .ttl .icon {
    width: 35px;
    line-height: 1;
    display: inline-block;
    transform: scale(-1, 1);
    margin-left: .2em;
}

.page_area_ward .top_search .common_ttl_box .ttl .icon img {
    width: 100%;
}

.popular_station_sec .table_box {
    margin-top: 30px;
}

.popular_station_sec .table_box table {
    width: 100%;
}

.popular_station_sec .table_box table,
.popular_station_sec .table_box table td,
.popular_station_sec .table_box table th {
    border: 1px solid var(--main-color);
    border-collapse: collapse;
}

.popular_station_sec .table_box table td,
.popular_station_sec .table_box table th {
    padding: 1em;
    vertical-align: middle;
}

.popular_station_sec .table_box table th {
    background-color: var(--main-color);
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.popular_station_sec .table_box table tr:not(:first-child):nth-child(odd) {
    background: #F0F0F0;
}

.popular_station_sec .table_box table td.name {
    width: 16%;
    text-align: center;
    font-size: 15px;
}

.popular_station_sec .table_box table td.name .link {
    display: block;
    text-decoration: underline;
}

.popular_station_sec .table_box table td.line {
    width: 29%;
    text-align: center;
}

.popular_station_sec .table_box table td {
    font-size: 13px;
}

.popular_station_sec .table_box table tr.even {
    background: #F0F0F0;
}

.popular_spot_sec {
    margin-top: 100px;
    background: #F7F7F7;
    padding: 100px 0;
}

.popular_spot_sec .spot_box {
    margin-top: 30px;
}

.popular_spot_sec .spot_box ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.popular_spot_sec .spot_box ul li {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.popular_spot_sec .spot_box ul li .img img {
    width: 100%;
    aspect-ratio: 3/2;
    min-width: 0;
    object-fit: cover;
}

.popular_spot_sec .spot_box ul li .text_box {
    padding: 20px;
}

.popular_spot_sec .spot_box ul li .text_box .index {
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: .05em;
    color: var(--main-color);
}

.popular_spot_sec .spot_box ul li .text_box .text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .05em;
    margin-top: .5em;
}

.page_area_ward .store_contact_sec {
    margin-top: 100px;
}

.page_area_ward .store_contact_sec .block_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.page_area_ward .store_contact_sec.three .wrap {
    width: 1240px;
}

.page_area_ward .store_contact_sec.three .block_box.three .block {
    width: 530px;
}

.page_area_ward .store_contact_sec .block {
    width: 530px;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    padding: 20px;
}

.page_area_ward .store_contact_sec .block .en {
    text-align: center;
}

.page_area_ward .store_contact_sec .catch_box .catch {
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    padding: .5em 1em;
    line-height: 1;
    font-size: 22px;
}

.page_area_ward .store_contact_sec .block .info_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    margin-bottom: 20px;
}

.page_area_ward .store_contact_sec .block .info_box .img {
    width: 35%;
    flex-shrink: 0;
}

.page_area_ward .store_contact_sec .block .info_box .img img {
    width: 100%;
    aspect-ratio: 3/2;
    min-width: 0;
    object-fit: cover;
}

.page_area_ward .store_contact_sec .block .info_box .text_box .address,
.page_area_ward .store_contact_sec .block .info_box .text_box .time {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .05em;
}

.page_area_ward .store_contact_sec.three .block .info_box .text_box .address,
.page_area_ward .store_contact_sec.three .block .info_box .text_box .time,
.page_area_ward .store_contact_sec.three .block .info_box .tel_box .text {
    font-size: 12px;
}

.page_area_ward .store_contact_sec .block .info_box .tel_box {
    margin-top: 1em;
}

.page_area_ward .store_contact_sec .block .info_box .tel_box .free {
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 0 8px;
    line-height: 1.2;
    margin-bottom: 0.1em;
}

.page_area_ward .store_contact_sec .block .info_box .tel_box .free::before {
    content: "";
    background: url(../../image/site/icon_free_tel.svg) no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    width: 38.7px;
    aspect-ratio: 38.7 / 25.4;
    min-width: 0;
    flex-shrink: 0;
}

.page_area_ward .store_contact_sec .block .info_box .tel_box .free::before {}

.page_area_ward .store_contact_sec .block .info_box .tel_box .text {
    font-size: 14px;
    font-weight: 700;
}

.page_area_ward .store_contact_sec .block .info_box .new_tel_box {
    margin-top: 1em;
}

.page_area_ward .store_contact_sec .block .info_box .new_tel_box dl {
    display: grid;
    grid-template-columns: 3.5em 1fr;
    gap: .5em;
    align-items: center;
    font-size: 16px;
}

.page_area_ward .store_contact_sec .block .info_box .new_tel_box dl dt {
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.page_area_ward .store_contact_sec .block .info_box .new_tel_box dl dd {
    font-size: 29px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 0 8px;
    line-height: 1.2;
}

.page_area_ward .store_contact_sec .block .info_box .new_tel_box dl.tel_dl dt {
    background-color: #33c755;
}

.page_area_ward .store_contact_sec .block .info_box .new_tel_box dl.fax_dl dt {
    background-color: #0d3e92;
}

.page_area_ward .store_contact_sec .block .btn_area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page_area_ward .store_contact_sec .block .btn_area ul li .link {
    padding: 0 20px;
    background: var(--main-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-block-size: 50px;
    transition: .3s;
}

.page_area_ward .store_contact_sec .block .btn_area ul li .link:hover {
    opacity: .8;
}

.page_area_ward .store_contact_sec .block .btn_area ul li.line .link {
    background: #06C755;
}

.page_area_ward .store_contact_sec .block .btn_area ul li .link .icon {
    width: 30px;
}

.page_area_ward .store_contact_sec .block .btn_area ul li .link .icon svg {
    display: block;
    width: 72%;
    margin: 0 auto;
}

.page_area_ward .store_contact_sec .block .btn_area ul li .link .text {
    font-size: 15px;
    color: #fff;
}

.wrap.middle {
    width: 940px;
}

.wrap.min {
    width: 800px;
}

.font_m_plus_rounded_1c {
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.font_m_plus_1p {
    font-family: "M PLUS 1p", sans-serif;
}

.font_din {
    font-family: din-2014, sans-serif;
}

.shingle_qrbunkatsu .title {
    color: #1D1F86;
    font-size: 37px;
    letter-spacing: 0.2em;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.qrbunkatsu_fv_sec {
    background: url(../../image/qrbunkatsu/qrbunkatsu_fv_back.jpg) no-repeat center center;
    background-size: cover;
}

.qrbunkatsu_fv_sec .qrbunkatsu_fv_inner {
    padding: 145px 0 70px;
    display: flex;
    justify-content: space-between;
}

.qrbunkatsu_fv_sec .fv_textbox {
    padding: 1em 0 0 1em;
}

.qrbunkatsu_fv_sec .fast_txt,
.qrbunkatsu_fv_sec .third_txt {
    color: #fff;
    line-height: 1;
    text-align: justify;
    text-align-last: justify;
    padding-right: 22px;
}

.qrbunkatsu_fv_sec .fast_txt {
    font-size: 33px;
    font-weight: 400;
}

.qrbunkatsu_fv_sec .third_txt {
    font-size: 60px;
    font-weight: 500;
}

.qrbunkatsu_fv_sec .second_txt {
    font-size: 116px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #FFFF00;
    -webkit-text-stroke: 3px #1E237D;
    text-shadow: -3px -3px 0 #1E237D, 3px -3px 0 #1E237D, -3px 3px 0 #1E237D, 3px 3px 0 #1E237D, -3px 0px 0 #1E237D, 3px 0px 0 #1E237D, 0px -3px 0 #1E237D, 0px 3px 0 #1E237D, -4px -4px 0 #1E237D, 4px -4px 0 #1E237D, -4px 4px 0 #1E237D, 4px 4px 0 #1E237D, -5px 0px 0 #1E237D, 5px 0px 0 #1E237D, 0px -5px 0 #1E237D, 0px 5px 0 #1E237D;
    margin: 0.215em 0;
}

.qrbunkatsu_fv_sec .image {
    width: 40%;
}

.qrbunkatsu_fv_sec .image img {
    width: 100%;
    display: block;
}

.qrbunkatsu_cost_sec {
    padding: 170px 0 145px;
}

.qrbunkatsu_cost_sec .qrbunkatsu_cost_tit {
    margin-bottom: 2.8em;
}

.qrbunkatsu_cost_sec .qrbunkatsu_cost_column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 3.75em;
}

.qrbunkatsu_cost_sec .qrbunkatsu_cost_cell {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    background-color: #F1F1F1;
    padding: 1.6em 0.5em;
}

.qrbunkatsu_cost_sec .qrbunkatsu_cost_cell::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 30px;
    background-color: #F1F1F1;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.qrbunkatsu_cost_sec .qrbunkatsu_cost_column li:nth-child(1)::after {
    clip-path: polygon(100% 100%, 10% 0, 90% 0);
}

.qrbunkatsu_cost_sec .qrbunkatsu_cost_column li:nth-child(3)::after {
    clip-path: polygon(0 100%, 10% 0, 90% 0);
}

.qrbunkatsu_cost_sec .image {
    max-width: 476px;
    margin: 0 auto;
}

.qrbunkatsu_cost_sec .image img {
    width: 100%;
    display: block;
}

.qrbunkatsu_answer_sec {
    padding: 105px 0;
    background: url(../../image/qrbunkatsu/qrbunkatsu_answer_back.jpg) no-repeat center center;
    background-size: 100% 100%;
}

.qrbunkatsu_answer_sec .qrbunkatsu_answer_inner {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

.qrbunkatsu_answer_sec .tag_title_box {
    text-align: center;
    margin-bottom: -2em;
}

.qrbunkatsu_answer_sec .tag_title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1;
    background-color: #1D1F86;
    text-align: center;
    padding: 0.8em 2em;
    display: inline-block;
    border-radius: 100vmax;
}

.qrbunkatsu_answer_sec .qrbunkatsu_answer_list {
    background-color: #fff;
    border: 3px dashed #1D1F86;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 3em 0 2em 4em;
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.25em;
}

.qrbunkatsu_answer_sec .qrbunkatsu_answer_cell {
    font-size: 30px;
    letter-spacing: 0.2em;
    font-weight: 400;
    position: relative;
    padding-left: 40px;
    background: url(../../image/qrbunkatsu/qrbunkatsu_answer_check.svg) no-repeat left center;
    background-size: 28px 28px;
}

.qrbunkatsu_answer_sec .under_txt {
    color: #FFFF00;
    font-size: 22px;
    background: #1D1F86;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.qrbunkatsu_answer_sec .ex_big {
    font-size: 40px;
    margin-left: 0.2em;
}

.qrbunkatsu_point_sec {
    padding: 240px 0 130px;
}

.qrbunkatsu_point_sec .qrbunkatsu_point_tit {
    border-bottom: 4px solid #1D1F86;
    padding-bottom: 1em;
    margin-bottom: 6em;
}

.qrbunkatsu_point_sec .qrbunkatsu_point_column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 113px;
    margin-bottom: 54px;
}

.qrbunkatsu_point_sec .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.qrbunkatsu_point_sec .image {
    aspect-ratio: 341 / 198;
    position: relative;
    z-index: 1;
    margin-bottom: 2.6em;
}

.qrbunkatsu_point_sec .qrbunkatsu_point_sell .image::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    width: 100%;
    height: 100%;
    background-color: #1D1F86;
    z-index: 0;
}

.qrbunkatsu_point_sec .summary_txt {
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 0.8em;
}

.qrbunkatsu_point_sec .text {
    font-size: 14px;
}

.qrbunkatsu_point_sec .ex_min {
    font-size: 8px;
}

.qrbunkatsu_point_sec .qrbunkatsu_notes {
    font-size: 10px;
    line-height: 1.6;
}

.qrbunkatsu_point_sec .qrbunkatsu_notes .qrbunkatsu_notes_txt {
    position: relative;
    padding-left: 28px;
}

.qrbunkatsu_point_sec .qrbunkatsu_notes .note_mark {
    position: absolute;
    left: 0;
    top: 0;
}

.qrbunkatsu_case_sec {
    padding: 115px 0 94px;
    background: url(../../image/qrbunkatsu/qrbunkatsu_answer_back.jpg) no-repeat center center;
    background-size: 100% 100%;
}

.qrbunkatsu_case_sec .title {
    font-weight: 500;
    margin-bottom: 1.8em;
}

.qrbunkatsu_case_sec .ex_big {
    color: #E66965;
    font-size: 88px;
    font-weight: 700;
    margin: 0 0.1em;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    color: #1D1F86;
    width: 100%;
    table-layout: fixed;
    text-align: center;
    background-color: #fff;
    border-collapse: collapse;
    border: 1px solid #1D1F86;
    margin-bottom: 90px;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table th,
.qrbunkatsu_case_sec .qrbunkatsu_case_table td {
    height: 90px;
    vertical-align: middle;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table .table_tit {
    font-size: 25px;
    letter-spacing: 0.5em;
    line-height: 1;
    text-align: center;
    border-bottom: 1px solid #1D1F86;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table .table_tit:nth-of-type(2) {
    color: #fff;
    background-color: #e66966;
    border-bottom: 1px solid #fff;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table .table_plan,
.qrbunkatsu_case_sec .qrbunkatsu_case_table .table_all {
    border-bottom: 1px solid #1D1F86;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table .txt {
    font-size: 19px;
    padding-bottom: 4px;
    background: linear-gradient(#FFFF66, #FFFF66);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 2.2em;
    display: inline-block;
    width: 60%;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table .table_plan .ex_txt {
    font-size: 36px;
    margin-right: 0.1em;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table .table_monthly {
    color: #fff;
    background-color: #e66966;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table tr:last-child td.table_monthly {
    border-bottom: 1px solid #1D1F86;
}

.qrbunkatsu_case_sec .qrbunkatsu_case_table th {
    font-weight: bold;
}

.qrbunkatsu_case_sec .table_monthly {
    font-size: 30px;
    letter-spacing: 0.05em;
}

.qrbunkatsu_case_sec .table_monthly .number {
    font-size: 38px;
}

.qrbunkatsu_case_sec .table_all {
    font-size: 21px;
    letter-spacing: 0.05em;
}

.qrbunkatsu_case_sec .table_all .number {
    font-size: 27px;
}

.qrbunkatsu_case_sec .under_txtbox {
    font-size: 10px;
}

.qrbunkatsu_case_sec .under_txtbox .under_txt+.under_txt {
    margin-top: 0.3em;
}

.qrbunkatsu_step_sec {
    padding: 210px 0 180px;
}

.qrbunkatsu_step_sec .qrbunkatsu_step_tit {
    border-bottom: 4px solid #1D1F86;
    padding-bottom: 1em;
    margin-bottom: 6em;
}

.qrbunkatsu_step_sec .image img {
    width: 100%;
    display: block;
}

.qrbunkatsu_step_sec .image {
    max-width: 800px;
    margin: 0 auto -33px;
}

.qrbunkatsu_step_sec .qrbunkatsu_step_list {
    background-color: #ffeeee;
    padding: 100px 40px 60px;
    border-radius: 90px;
}

.qrbunkatsu_step_sec .qrbunkatsu_step_cell {
    display: flex;
    align-items: center;
    gap: 4%;
    position: relative;
    padding-bottom: 60px;
}

.qrbunkatsu_step_sec .qrbunkatsu_step_cell::after {
    content: "";
    position: absolute;
    left: 32px;
    bottom: 22px;
    width: 15px;
    height: 15px;
    background-color: #e66966;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.qrbunkatsu_step_sec .qrbunkatsu_step_cell:last-of-type:after {
    content: none;
}

.qrbunkatsu_step_sec .qrbunkatsu_step_badge {
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #fff;
    background: #e66966;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrbunkatsu_step_sec .ex_big {
    font-size: 33px;
    display: block;
    margin-top: 0.1em;
}

.qrbunkatsu_step_sec .qrbunkatsu_step_txt {
    color: #1d2087;
    font-size: 27px;
    border-bottom: 3px solid #1d2087;
    width: 83%;
}

.qrbunkatsu_step_sec .belt_txt_box {
    background-color: #e66966;
    border-radius: 100vmax;
    text-align: center;
    margin-bottom: 20px;
}

.qrbunkatsu_step_sec .belt_txt {
    font-size: 27px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;
    width: 100%;
    padding: 1em;
}

.qrbunkatsu_step_sec .belt_txt .ex_min {
    font-size: 8px;
}

.qrbunkatsu_step_sec .under_txt {
    font-size: 10px;
    display: flex;
    padding-left: 6em;
}

.qrbunkatsu_step_sec .ex_block {
    display: block;
}

.qrbunkatsu_conditions_sec {
    padding: 0 0 180px;
}

.qrbunkatsu_conditions_sec .qrbunkatsu_conditions_titlebox {
    margin-bottom: 74px;
}

.qrbunkatsu_conditions_sec .qrbunkatsu_conditions_table {
    width: 100%;
    margin: 0 auto;
    color: #1D1F86;
    width: 100%;
    table-layout: fixed;
    text-align: center;
    background-color: #fff;
    border-collapse: collapse;
}

.qrbunkatsu_conditions_sec .table_tit {
    font-size: 18px;
    letter-spacing: 0.2em;
    color: #fff;
    text-align: center;
    height: 90px;
    vertical-align: middle;
    background-color: #1d2087;
    border: 1px solid #fff;
}

.qrbunkatsu_conditions_sec .table_tit:first-of-type {
    background-color: #ffeeee;
    position: relative;
    overflow: hidden;
}

.qrbunkatsu_conditions_sec .table_tit:first-of-type::after {
    content: "";
    position: absolute;
    top: 55%;
    left: -5%;
    width: 120%;
    height: 3px;
    background: #fff;
    transform: rotate(24deg);
}

.qrbunkatsu_conditions_sec .table_txt {
    border: 1px solid #fff;
    background: #e0f0fc;
    vertical-align: middle;
    height: 250px;

}

.qrbunkatsu_conditions_sec .table_txt.pattern_fast {
    font-size: 18px;
    letter-spacing: 0.2em;
    color: #fff;
    background: #e66966;
}

.qrbunkatsu_conditions_sec .table_txt.pattern_second {
    font-size: 16px;
    color: #000;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrbunkatsu_conditions_sec .table_txt.pattern_third {
    font-size: 32px;
    letter-spacing: 0.05em;
}

.qrbunkatsu_conditions_sec .table_txt.pattern_third .ex_min {
    color: #e66966;
    font-size: 16px;
    display: flex;
    justify-content: center;
    letter-spacing: 0.04em;
}

#new_arrival .cont .panel_box p.count_text {
    font-size: 18px;
    letter-spacing: .03em;
    margin-bottom: .3em;
}

#new_arrival .cont .panel_box p.count_text .count.Black {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 .2em;
    color: #FA9F22;
}

#new_arrival {
    margin-bottom: 80px;
}


#new_arrival .cont .panel_box .butken_box ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 15px;
}

#new_arrival .cont .panel_box .butken_box ul .link .img {
    width: 100%;
    height: 250px;
    margin-bottom: 1em;
}

#new_arrival .cont .panel_box .butken_box ul .link .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#new_arrival .cont .panel_box .butken_box ul .link .text_area .butken_ttl {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 0.7em;
    letter-spacing: .03em;
}

#new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box {
    display: flex;
    align-items: anchor-center;
    gap: 10px;
}

#new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .tag {
    flex-shrink: 0;
}

#new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .theme {
    color: #000;
    flex-shrink: 0;
    width: 4.7em;
    display: flex;
    align-items: center;
    background-color: #005ea6;
    color: #fff;
    justify-content: center;
    font-size: 12px;
    border-radius: 0.3em;
    min-block-size: 2em;
}

#new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .number.Black {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 20px;
    font-weight: 700;
    color: #e10319;
    line-height: 1;
}

#new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box+.box {
    margin-top: 5px;
}

#new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 14px;
    color: #000;
    letter-spacing: .03em;
}

#new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .access {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 14px;
    color: #000;
    letter-spacing: .03em;
    font-weight: 500;

}

#new_arrival .cont .panel_box .top_butken_btn {
    display: block;
    width: 23.8em;
    text-align: center;
    line-height: 3em;
    margin: 2.2em auto 0;
    border: 1px solid #c4c5c5;
    background: url(/penguin/resources/image/sumika/home/arrow_black.png) no-repeat, #fff;
    background-size: .3em;
    background-position: center right 20px;
    border-radius: 5px;
    color: #231815;
    font-weight: 700;
    transition: .3s;
    font-size: 16px;
}

#new_arrival .cont .panel_box .top_butken_btn:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    -webkit-transform: translate(0, -3px);
    -moz-transform: translate(0, -3px);
    transform: translate(0, -3px);
}

#new_arrival .tab_box ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5em;
    margin-bottom: 0.9em;
}

#new_arrival .tab_box li {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #005ea6;
    border: 2px solid #005ea6;
    min-block-size: 50px;
    border-radius: 0.3em;
    padding: 0.2em;
    color: #fff;
    font-size: 16px;
    letter-spacing: .05em;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    transition: .3s;
}

#new_arrival .tab_box li.active,
#new_arrival .tab_box li:hover {
    background: #fff;
    color: #005ea6;
}

#new_arrival .panel_box .panel .count_text {
    font-size: 16px;
    letter-spacing: .05em;
    font-weight: 700;
    margin-block: 0 0.8em;
}

#new_arrival .panel_box .panel .count_text .num {
    display: inline-block;
    color: #005ea6;
    font-size: 1.5em;
    margin-inline: 0.3em 0.2em;
}

#new_arrival .panel_box .panel .secBukken_flex {
    gap: 35px;
}

#new_arrival .cont .common_ttl_box.center {
    margin-bottom: 20px;
}

#new_arrival .cont .panel_box .common_link_btn {
    display: grid;
    place-content: center;
    font-size: 18px;
    color: #fff;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 0 3.3em;
    width: fit-content;
    min-block-size: 60px;
    border-radius: 100vmax;
    margin: 2.3em auto 0;
    transition: .3s;
}

.new_arrival {}

.new_arrival .cont {}

.new_arrival .cont .sec_title {
    text-align: center;
    margin-block: 0 2em;
}

.new_arrival .cont .sec_title .title {
    font-size: 32px;
    letter-spacing: .2em;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new_arrival .cont .sec_title .title .img {
    display: inline-block;
    width: 220px;
    line-height: 1;
    margin-inline: 0 0.3em;
}

.new_arrival .cont .sec_title .title .img img {
    width: 100%;
}

.new_arrival .cont .sec_title .title .color {
    display: inline-block;
    background: linear-gradient(to right, #009EC0, var(--main-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 750px) {

    .wrap,
    #page_article .wrap {
        max-width: 90%;
    }

    body {
        font-size: 3.4vw;
        line-height: 1.5;
        padding-top: 110px;
        min-width: auto;
    }

    /* SPヘッダー */
    #sp_header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    #sp_header .hd_cont {
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
    }

    #sp_header .hd_cont .logo {
        width: 150px;
    }

    #sp_header .hd_cont .logo .link {
        display: block;
        width: 100%;
    }

    #sp_header .hd_cont .logo .link img {
        width: 100%;
    }

    #sp_header .hd_cont .menu_box {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    #sp_header .hd_cont .menu_box .link_box ul {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    #sp_header .hd_cont .menu_box .link_box li .link {
        width: 44px;
        aspect-ratio: 1;
        background: var(--main-color);
        display: grid;
        place-content: center;
    }

    #sp_header .hd_cont .menu_box .link_box li.history .link {
        background: #20992A;
    }

    #sp_header .hd_cont .menu_box .link_box li .link .icon {
        width: 24px;
    }

    #sp_header .hd_cont .menu_box .link_box li .link .icon svg {
        display: block;
        width: 100%;
    }

    #sp_header .hd_cont .menu_box .sp_hamburger {
        width: 30px;
        height: 44px;
        position: relative;
    }

    #sp_header .hd_cont .menu_box .sp_hamburger span {
        width: 30px;
        height: 2px;
        background: #0A152B;
        display: block;
        position: absolute;
        left: 0;
        transition: .3s;
    }

    #sp_header .hd_cont .menu_box .sp_hamburger span:nth-child(1) {
        top: 12px;
    }

    #sp_header .hd_cont .menu_box .sp_hamburger span:nth-child(2) {
        top: 22px;
    }

    #sp_header .hd_cont .menu_box .sp_hamburger span:nth-child(3) {
        top: 32px;
    }

    #sp_header .hd_cont .menu_box .sp_hamburger.active span:nth-child(1) {
        top: 22px;
        rotate: 315deg;
    }

    #sp_header .hd_cont .menu_box .sp_hamburger.active span:nth-child(2),
    #sp_header .hd_cont .menu_box .sp_hamburger.active span:nth-child(3) {
        top: 22px;
        rotate: -315deg;
    }

    #sp_header .search_cont {
        background: var(--main-color);
        padding: 10px 20px;
        min-block-size: 40px;
    }

    #sp_header .search_cont ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    #sp_header .search_cont li {
        border-right: 1px solid #fff;
    }

    #sp_header .search_cont li:first-child {
        border-left: 1px solid #fff;
    }

    #sp_header .search_cont li .link {
        display: block;
        color: #fff;
        text-align: center;
        font-size: 13px;
        letter-spacing: .06em;
    }

    .sp_ham_cont {
        position: fixed;
        top: 110px;
        right: 0;
        width: 79.5vw;
        height: calc(100dvh - 110px - 17.8vw);
        background: #F5F5F5;
        opacity: .96;
        z-index: 9998;
        padding: 7vw 5vw;
        transform: translateX(100%);
        overflow-y: scroll;
        transition: .2s;
    }

    .sp_ham_cont.active {
        transform: translateX(0);
    }

    .sp_ham_cont .menu_list {
        margin-bottom: 8.4vw;
    }

    .sp_ham_cont .menu_list li {
        border-bottom: 1px solid #0A152B;
    }

    .sp_ham_cont .menu_list li+li {
        margin-top: 5vw;
    }

    .sp_ham_cont .menu_list li .link {
        display: flex;
        align-items: center;
        gap: 2vw;
        justify-content: space-between;
        font-size: 3.6vw;
        letter-spacing: .06em;
        color: #1A1311;
        padding: 0 0.3em 0.8em 0;
    }

    .sp_ham_cont .menu_list li .link::after {
        content: "";
        width: 1.8vw;
        aspect-ratio: 1;
        border-right: 1px solid #0A152B;
        border-bottom: 1px solid #0A152B;
        rotate: -45deg;
        flex-shrink: 0;
        transition: .3s;
    }

    .sp_ham_cont .menu_list li .link.active::after {
        rotate: 45deg;
    }

    .sp_ham_cont .menu_list li .inner {
        padding: 2vw;
        display: none;
    }

    .sp_ham_cont .menu_list li .inner.active {
        display: block;
    }

    .sp_ham_cont .menu_list li .inner .item {
        font-size: 3.2vw;
        font-weight: 500;
        line-height: 1.8;
        letter-spacing: .06em;
        color: #1A1311;
        display: flex;
        align-items: center;
        gap: 1.5vw;
    }

    .sp_ham_cont .menu_list li .inner .item .icon {
        width: 2.8vw;
    }

    .sp_ham_cont .menu_list li .inner .item .icon svg {
        line-height: 1;
        width: 100%;
        display: block;
    }

    .sp_ham_cont .contact_box li+li {
        margin-top: 2.5vw;
    }

    .sp_ham_cont .contact_box li .link {
        display: flex;
        align-items: center;
        gap: 3vw;
        width: 100%;
        padding: 2vw 3vw;
        background: var(--main-color);
        min-block-size: 15.4vw;
        border-radius: 6px;
    }

    .sp_ham_cont .contact_box li.line .link {
        background: #06C755;
    }

    .sp_ham_cont .contact_box li .link .icon {
        width: 44px;
    }

    .sp_ham_cont .contact_box li .link .icon svg {
        width: 68%;
        display: block;
        margin: 0 auto;
    }

    .sp_ham_cont .contact_box li .link .icon img {
        width: 100%;
    }

    .sp_ham_cont .contact_box li .link .text {
        font-size: 3.6vw;
        color: #fff;
    }

    /* SPトップ メインビジュアル */
    .top_mv {
        padding: 30vw 5vw 80vw;
        background-image: url(../../image/site/top_mv_bg_sp.jpg);
        margin-bottom: 10vw;
    }

    .top_mv .text_box {
        width: 100%;
    }


    .top_mv .text_box .text {
        width: 100%;
    }

    .top_mv .text_box .text .small {
        font-size: 4vw;
        line-height: 8.7vw;
        margin-bottom: 2vw;
    }

    .top_mv .text_box .text .name {
        font-size: 8.7vw;
        line-height: 12.8vw;
        margin-bottom: 2vw;
        text-align: center;
    }

    .top_mv .text_box .text .white {
        font-size: 4vw;
        line-height: 8.7vw;
    }

    .top_mv .news_cont {
        width: 100%;
    }

    .top_mv .news_cont .link {
        padding: 5vw;
    }

    .top_mv .news_cont .link .date_box {
        gap: 2.5vw;
        margin-bottom: 1.8vw;
    }

    .top_mv .news_cont .link .date_box .date {
        font-size: 3vw;
    }

    .top_mv .news_cont .link .date_box .cate {
        font-size: 3vw;
    }

    .top_mv .news_cont .link .ttl_box {
        gap: 5vw;
    }

    .top_mv .news_cont .link .ttl_box::after {
        width: 2vw;
    }

    .top_mv .news_cont .link .ttl_box .ttl {
        font-size: 3.6vw;
    }

    .top_mv .scroll_down {
        bottom: 35.8vw;
        width: 23vw;
        height: 23vw;
    }

    .top_mv .scroll_down .text_box .text {
        font-size: 3vw;
    }

    /* SPトップ ポップ */
    .common_top_pop .cont ul {
        grid-template-columns: 1fr;
        gap: 3.6vw;
    }

    .common_top_pop .cont li .link:hover {
        opacity: 1;
    }

    /* SPトップ お部屋を探す */
    .common_ttl_box.center {
        text-align: center;
    }

    .common_ttl_box .en_ttl {
        font-size: 3.6vw;
    }

    .common_ttl_box .ttl {
        font-size: 5.6vw;
    }

    .top_search {
        margin: 10vw 0 15vw;
        padding: 18vw 0;
    }

    .top_search .common_ttl_box {
        margin-bottom: 5.6vw;
        text-align: center;
        orphans: 1;
    }

    .top_search .main_cont {
        display: block;
        padding-bottom: 7.5vw;
        margin-bottom: 7.5vw;
        border-bottom: 1px solid #AAAAAA;
    }

    .top_search .main_cont .text_area {
        display: grid;
    }

    .top_search .main_cont .text_area .form_box {
        margin-bottom: 0;
        order: 3;
    }

    .top_search .main_cont .text_area .form_box .label {
        font-size: 3.6vw;
        padding: 0 3.6vw;
    }

    .top_search .main_cont .text_area .form_box .form {
        margin-bottom: 2vw;
    }

    .top_search .main_cont .text_area .form_box .form form input {
        font-size: 3vw;
        min-block-size: 12.8vw;
        padding: 0 16vw 0 3.6vw;
    }

    .top_search .main_cont .text_area .form_box .form form input::placeholder {
        color: #CBCBCB;
    }

    .top_search .main_cont .text_area .form_box .form form button {
        width: 12.8vw;
    }

    .top_search .main_cont .text_area .form_box .tag {
        margin: 0 3.6vw;
    }

    .top_search .main_cont .text_area .form_box .tag ul {
        gap: 1vw 4.6vw;
    }

    .top_search .main_cont .text_area .form_box .tag li .link {
        font-size: 3vw;
    }

    .top_search .main_cont .text_area .form_box .tag li .link:hover {
        color: #1A1311;
    }

    .top_search .main_cont .text_area .link_box {
        order: 2;
        margin-bottom: 5vw;
    }

    .top_search .main_cont .text_area .link_box ul {
        gap: 2.5vw;
    }

    .top_search .main_cont .text_area .link_box li .link {
        min-block-size: 33vw;
        padding: 5vw 2vw 2vw;
    }

    .top_search .main_cont .text_area .link_box li .link:hover {
        background: #fff;
    }

    .top_search .main_cont .text_area .link_box li .link .icon {
        width: 52px;
        margin: 0 auto 10px;
    }

    .top_search .main_cont .text_area .link_box li.station .link .icon {
        width: 8.2vw;
    }

    .top_search .main_cont .text_area .link_box li .link:hover .icon svg path {
        fill: var(--main-color);
    }

    .top_search .main_cont .text_area .link_box li .link .text {
        font-size: 3.6vw;
    }

    .top_search .main_cont .text_area .link_box li .link:hover .text {
        color: #0A152B;
    }

    .top_search .main_cont .text_area .link_box li .link .en_text {
        font-size: 3vw;
    }

    .top_search .main_cont .text_area .link_box li .link:hover .en_text {
        color: var(--main-color);
    }

    .top_search .search_area {
        margin-bottom: 7.5vw;
    }

    .top_search .search_area .box+.box {
        margin-top: 7.5vw;
    }

    .top_search .search_area .box .label {
        font-size: 3.6vw;
        letter-spacing: .08em;
        margin-bottom: 1em;
        display: flex;
        align-items: center;
        gap: 3vw;
    }

    .top_search .search_area .box .label.line::after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background: #AAAAAA;
    }

    .top_search .search_area .box .list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5vw;
    }

    .top_search .search_area .box .list li {
        font-size: 3.6vw;
        letter-spacing: .08em;
        line-height: 11vw;
        border: 1px solid #DDDDDD;
        border-radius: 100vmax;
        text-align: center;
        background: #fff;
    }

    .top_search .category_cont ul {
        gap: 5vw 2.5vw;
    }

    .top_search .category_cont li .link {
        flex-direction: column;
        min-block-size: unset;
        border-radius: unset;
        box-shadow: unset;
    }

    .top_search .category_cont li .link .img {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
        margin-bottom: 1.6vw;
    }

    .top_search .category_cont li .link .img img {
        border-radius: 6px;
    }

    .top_search .category_cont li .link .text {
        font-size: 3.5vw;
        letter-spacing: .06em;
        background: unset;
        padding: 0;
        display: block;
        text-align: center;
    }

    .top_search .category_cont li .link:hover .text {
        color: #0A152B;
        background: unset;
    }

    .top_search .category_cont li .link .text::after {
        display: none;
    }

    .top_search .category_cont li .link .arrow {
        display: none;
    }

    /* SP検索モーダル */
    .modal_search .modal_cont {
        margin: 5vw 0;
        height: calc(100vh - 10vw);
        border-radius: 10px;
        padding: 8vw 5vw;
    }

    .modal_search .modal_cont .close_btn {
        top: 1vw;
        right: 3vw;
        width: 3vw;
    }

    .modal_search .modal_cont .close_btn svg {
        width: 100%;
    }

    .modal_search .modal_cont form .area {
        margin-bottom: 8vw;
    }

    .modal_search .modal_cont form .common_theme {
        font-size: 3.8vw;
        padding: 2vw 3vw 2vw 1.8em;
    }

    .modal_search .modal_cont form .common_theme::before {
        left: 3vw;
        width: 2vw;
    }

    .modal_search .modal_cont form .common_text {
        font-size: 3vw;
    }

    .modal_search .modal_cont form .common_table_area table th {
        width: 100%;
        display: block;
        text-align: unset;
        font-size: 3.6vw;
        padding: 0.5em;
    }

    .modal_search .modal_cont form .common_table_area table td {
        width: 100%;
        display: block;
        font-size: 3.4vw;
        padding: 1em;
    }

    .modal_search .modal_cont form .common_table_area table td ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw 2.2vw;
    }

    .modal_search .modal_cont form .common_table_area table td.popular ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal_search .modal_cont form .common_table_area table td li .text {
        font-size: 3.4vw;
    }

    .modal_search .modal_cont form .common_table_area table td li input[type=checkbox] {
        width: 4.6vw;
        vertical-align: -1vw;
        margin-right: 2vw;
    }

    .modal_search .modal_cont form .common_table_area table td li input[type=checkbox]:checked:before {
        top: 45%;
        left: 1.1vw;
        width: 1.8vw;
        height: 2.8vw;
        border-right: 3px solid var(--main-color);
        border-bottom: 3px solid var(--main-color);
    }

    .modal_search .modal_cont form .common_btn input {
        font-size: 3.6vw;
        padding: 0 10vw;
        min-block-size: 10vw;
        margin: 5vw auto 0;
    }

    .modal_search .modal_cont form .common_btn input:hover {
        color: #fff;
        background: var(--main-color);
    }

    .modal_search .modal_cont form .common_table_area table td.select {
        gap: 2vw;
        justify-content: space-between;
    }

    .modal_search .modal_cont form .common_table_area table td.select select {
        width: 32vw;
        padding: 0.8em;
        font-size: 3vw;
    }

    .modal_search .modal_cont form .common_table_area table td li input[type=radio] {
        width: 4.6vw;
        vertical-align: -1vw;
        margin-right: 2vw;
    }

    .modal_search .modal_cont form .common_table_area table td li input[type=radio]:checked:before {
        left: 1vw;
        width: 2vw;
        height: 2vw;
    }

    /* PCトップ 新着物件情報 */
    .top_arrival {
        padding: 18vw 0 28vw;
    }

    .top_arrival .common_ttl_box {
        margin-bottom: 6vw;
    }

    .top_arrival .cont ul.arrival_item {
        display: block;
        margin-left: -1.2vw;
        margin-right: -1.2vw;
        margin-bottom: 0;
    }

    .top_arrival .cont li.item {
        margin: 0 1.2vw;
    }

    .top_arrival .cont li.item .link .img {
        border-radius: 6px;
        margin-bottom: 2.5vw;
    }

    .top_arrival .cont li.item .link .img img {
        aspect-ratio: 17/15;
    }

    .top_arrival .cont li.item .link:hover .img img {
        scale: 1;
    }

    .top_arrival .cont li.item .link .name {
        font-size: 4.6vw;
        -webkit-line-clamp: 2;
    }

    .top_arrival .cont li.item .link .access {
        font-size: 3.3vw;
    }

    .top_arrival .cont li.item .link .yachin {
        font-size: 3vw;
    }

    .top_arrival .cont li.item .link .madori {
        font-size: 3vw;
    }

    .top_arrival .cont ul.slick-dots {
        bottom: -12.5vw;
    }

    .top_arrival .cont ul.slick-dots li {
        width: 2.5vw;
        height: 2.5vw;
        margin: 0 10px;
        border-radius: 50%;
        overflow: hidden;
    }

    .top_arrival .cont ul.slick-dots li button {
        width: 100%;
        height: 100%;
    }

    .top_arrival .cont ul.slick-dots li button::before {
        content: "";
        width: 100%;
        height: 100%;
        background: #AAAAAA;
        opacity: 1;
    }

    .top_arrival .cont ul.slick-dots li.slick-active button::before {
        background: var(--main-color);
    }

    /* SPトップ バナー */
    .top_banner {
        margin-bottom: 18vw;
    }

    .top_banner .slider_area {
        margin-bottom: 0;
    }

    .top_banner .slider_area li {
        margin: 0;
    }

    .top_banner .slider_area li+li {
        margin-top: 5vw;
    }

    .top_banner .slider_area li::before {
        content: none;
    }

    .top_banner .thumbnail_area {
        display: none;
    }

    /* SPトップ 支店一覧 */
    .top_shop {
        margin-bottom: 18vw;
    }

    .top_shop .ttl_box {
        margin-bottom: 5vw;
    }

    .top_shop .ttl_box .ttl img {
        width: 74vw;
        margin: 0 auto 2vw;
    }

    .top_shop .ttl_box .ttl .text {
        font-size: 4.6vw;
    }

    .top_shop .list {
        margin-bottom: 18vw;
        margin-left: -2.5vw;
        margin-right: -2.5vw;
    }

    .top_shop .list ul .slick-track {
        padding-bottom: 10px;
    }

    .top_shop .list li.slick-slide {
        margin: 0 2.5vw;
    }

    .top_shop .list li.slick-slide .item+.item {
        margin-top: 15px;
    }

    .top_shop .list li.slick-slide .link {
        gap: 5vw;
        padding: 2.5vw;
    }

    .top_shop .list li.slick-slide .link:hover {
        background: #fff;
    }

    .top_shop .list li.slick-slide .link::after {
        width: 2vw;
    }

    .top_shop .list li.slick-slide .link:hover::after {
        border-color: #0A152B;
    }

    .top_shop .list li.slick-slide .link .img {
        width: 23vw;
    }

    .top_shop .list li.slick-slide .link .text_box .text {
        font-size: 3.3vw;
    }

    .top_shop .list li.slick-slide .link:hover .text_box .text {
        color: #1A1311;
        background-image: linear-gradient(var(--main-color), var(--main-color));
    }

    .top_shop .list li.slick-slide .link .text_box .tel {
        font-size: 3vw;
    }

    .top_shop .list li.slick-slide .link:hover .text_box .tel {
        color: var(--main-color);
    }

    .top_shop .list ul.slick-dots {
        bottom: -10vw;
    }

    .top_shop .list ul.slick-dots li {
        width: 2.5vw;
        height: 2.5vw;
        margin: 0 10px;
    }

    .common_link_btn .link {
        font-size: 3.8vw;
        padding: 0 12vw;
        min-block-size: 12.8vw;
    }

    .common_link_btn .link:hover {
        background: var(--main-color);
        color: #fff;
    }

    /* SPフッター */
    #footer .ft_main {
        padding: 15vw 0;
    }

    #footer .ft_main .logo_area {
        margin-bottom: 8.7vw;
        grid-template-columns: 1fr;
        gap: 5.2vw;
    }

    #footer .ft_main .logo_area .logo {
        width: 57vw;
        margin: 0 auto;
    }

    #footer .ft_main .logo_area .logo img {
        width: 100%;
    }

    #footer .ft_main .logo_area .logo .link img.small {
        margin: 1vw auto 0;
    }

    #footer .ft_main .logo_area .text_box .text {
        font-size: 3vw;
    }

    #footer .ft_main .link_area {
        display: block;
    }

    #footer .ft_main .link_area .contact_box li+li {
        margin-top: 2.5vw;
    }

    #footer .ft_main .link_area .contact_box li .link {
        gap: 10vw;
        padding: 0 3.3vw;
        min-block-size: 15.4vw;
    }

    #footer .ft_main .link_area .contact_box li .link:hover {
        opacity: 1;
    }

    #footer .ft_main .link_area .contact_box li .link .icon {
        width: 11.2vw;
    }

    #footer .ft_main .link_area .contact_box li .link .icon svg {
        width: 68%;
    }

    #footer .ft_main .link_area .contact_box li .link .icon img {
        width: 100%;
    }

    #footer .ft_main .link_area .contact_box li .link .text {
        font-size: 4.6vw;
    }

    #footer .ft_main .link_area .link_box {
        display: none;
    }

    #footer .ft_link {
        padding: 12.8vw 0 15.8vw;
    }

    #footer .ft_link .ttl_box {
        padding-bottom: 3vw;
        margin-bottom: 4vw;
    }

    #footer .ft_link .ttl_box .ttl {
        font-size: 3.6vw;
    }

    #footer .ft_link .search_area {
        grid-template-columns: 1fr;
        gap: 10vw;
        margin-bottom: 10vw;
    }

    #footer .ft_link .search_area .area .list .cont {
        margin-bottom: 7.5vw;
        grid-template-columns: 1fr;
        gap: 1.6vw;
    }

    #footer .ft_link .search_area .area .list .cont .theme {
        font-size: 3.6vw;
    }

    #footer .ft_link .search_area .area .list .cont ul {
        flex-wrap: wrap;
        gap: 2vw 4vw;
    }

    #footer .ft_link .search_area .area .list .cont ul+ul {
        margin-top: 1vw;
    }

    #footer .ft_link .search_area .area .list .cont li .link {
        font-size: 3vw;
    }

    #footer .ft_link .search_area .area .list .cont li .link:hover {
        color: #1A1311;
    }

    #footer .ft_link .search_area .area .list .cont li+li::before {
        left: -2vw;
        height: 3vw;
    }

    #footer .ft_link .search_area .area .list .item_box ul+ul {
        margin-top: 1vw;
    }

    #footer .ft_link .search_area .area .list .item_box ul {
        gap: 3vw;
        flex-wrap: wrap;
    }

    #footer .ft_link .search_area .area .list .item_box li .link {
        font-size: 3.6vw;
    }

    #footer .ft_link .search_area .area .list .item_box li .link:hover {
        color: #1A1311;
    }

    #footer .ft_link .search_area .station .box+.box {
        margin-top: 10vw;
    }

    #footer .ft_link .search_area .station .box .list ul {
        gap: 0.5vw 3vw;
    }

    #footer .ft_link .search_area .station .box .list li .link {
        font-size: 3vw;
    }

    #footer .ft_link .search_area .station .box .list li .link:hover {
        color: #1A1311;
    }

    #footer .ft_link .shop_area .list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5vw;
    }

    #footer .ft_link .shop_area .list li .link {
        display: block;
        padding: 4vw 5vw;
    }

    #footer .ft_link .shop_area .list li .link:hover {
        background: #fff;
    }

    #footer .ft_link .shop_area .list li .link .img {
        display: none;
    }

    #footer .ft_link .shop_area .list li .link .text {
        font-size: 3.3vw;
        letter-spacing: 0;
    }

    #footer .ft_link .shop_area .list li .link:hover .text {
        color: #0A152B;
    }

    #footer .ft_link .shop_area .list li .link .text::after {
        width: 2vw;
    }

    #footer .ft_link .shop_area .list li .link:hover .text::after {
        border-color: #0A152B;
    }

    #footer .ft_group {
        padding: 18vw 0;
    }

    #footer .ft_group .ttl_box {
        margin-bottom: 10vw;
    }

    #footer .ft_group .ttl_box .ttl {
        font-size: 4.6vw;
    }

    #footer .ft_group .list ul {
        grid-template-columns: 1fr;
        gap: 7.5vw;
    }

    #footer .ft_group .list li .link:hover {
        opacity: 1;
    }

    #footer .ft_group .list li .link .logo {
        display: none;
    }

    #footer .ft_group .list li .link .name_box {
        padding-bottom: 2.5vw;
        margin-bottom: 2.5vw;
    }

    #footer .ft_group .list li .link .name_box .name {
        font-size: 4vw;
    }

    #footer .ft_group .list li .link .name_box .icon {
        width: 3.4vw;
    }

    #footer .ft_group .list li .link .text {
        font-size: 3vw;
    }

    #footer .ft_info {
        padding: 16.4vw 0 40vw;
    }

    #footer .ft_info .info_box {
        padding-bottom: 11.8vw;
        margin-bottom: 5vw;
        flex-direction: column;
        align-items: center;
        gap: 7.5vw;
    }

    #footer .ft_info .info_box .logo {
        width: 16.6vw;
    }

    #footer .ft_info .info_box .logo img {
        width: 100%;
    }

    #footer .ft_info .info_box .info .name {
        font-size: 3vw;
        text-align: center;
    }

    #footer .ft_info .info_box .info .text {
        font-size: 3vw;
        text-align: center;
    }

    #footer .ft_info .cr_box {
        justify-content: center;
    }

    #footer .ft_info .cr_box .cr {
        font-size: 3vw;
    }

    #footer .ft_info .cr_box .link_area {
        display: none;
    }

    /* SP追従 */
    .sp_fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #F5F5F5;
        padding: 2.5vw 0;
        z-index: 9999;
    }

    .sp_fixed ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5vw;
    }

    .sp_fixed li .link {
        display: block;
        border-radius: 6px;
        background: var(--main-color);
        font-size: 3.6vw;
        line-height: 12.8vw;
        text-align: center;
        color: #fff;
    }

    .sp_fixed li.line .link {
        background: #06C755;
    }

    .sp_fixed li .link .small {
        font-size: 0.85em;
    }

    /* SP固定ページ 共通設定 */

    .common_page_wrap {
        padding: 7vw 0 15vw;
    }

    .common_page_wrap.post {
        padding: 15vw 0;
    }

    .common_page_title h2 {
        font-size: 5vw;
    }

    .common_page_title .sub_title {
        font-size: 3vw;
    }

    .reserve_text {
        font-size: 6vw;
    }

    .common-btn {
        width: 80%;
        line-height: 12vw;
    }

    .common-btn:hover {
        opacity: 1;
    }

    /* パンくず */
    #breadcrumb {
        font-size: 2.5vw;
    }


    /* SP固定ページ 会社概要 */

    .company_profile {
        margin-bottom: 20vw;
    }

    .company_profile table th,
    .company_profile table td {
        font-size: 3.2vw;
        width: 100%;
        display: block;
    }

    .company_profile table {
        border-top: 1px solid;
    }

    .company_profile table th {
        width: 100%;
        background-color: #f2f2f2;
    }

    .company_profile table td {
        width: 100%;
    }

    .company_access .map {
        height: 50vw;
    }


    /* SP固定ページ 個人情報保護方針 */

    #page_privacy .main_text {
        font-size: 3.5vw;
    }

    #page_privacy dl {
        margin-bottom: 10vw;
    }

    #page_privacy dl dt {
        font-size: 4vw;
    }

    #page_privacy dl dd {
        font-size: 3.5vw;
        margin-left: 5vw;
    }


    /* SP固定ページ サイトマップ  */

    #page_sitemap .inBox+.inBox {
        margin-top: 15vw;
    }

    #page_sitemap .inBox ul {
        display: block;
    }

    #page_sitemap .inBox ul li {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0;
    }


    /* SP固定ページ 記事詳細ページ */

    #page_article h1 {
        font-size: 4vw;
    }

    #page_article .contents_area {
        width: 100%;
        padding-bottom: 20vw;
        position: relative;
    }

    #page_article #side_menu {
        width: 100%;
        margin-top: 20vw;
    }

    #page_article .data_area {
        margin: 7vw 0;
    }

    #page_article .data_area .icon svg {
        width: 2.5vw !important;
        height: 2.5vw !important;
    }

    #page_article .data_area p.data {
        font-size: 2.5vw;
    }

    #page_article .text_area p {
        font-size: 3.4vw;
    }


    /* SP固定ページ 記事一覧ページ */

    ul.article_list li {
        width: 100%;
        margin-bottom: 0;
    }

    ul.article_list li+li {
        margin-top: 4vw;
    }

    ul.article_list li .image {
        height: 20vw;
    }

    ul.article_list li .textArea {
        width: 68%;
    }

    ul.article_list li .textArea .title {
        font-size: 3.5vw;
        line-height: 2;
    }

    ul.article_list li .data_area .icon svg {
        width: 2.5vw !important;
        height: 2.5vw !important;
    }

    ul.article_list li .data_area p.data {
        font-size: 2.5vw;
        margin-left: 2vw;
    }

    ul.article_list li .data_area p.data {
        font-size: 2vw;
        margin-left: 2vw;
    }


    /* 未公開物件セクション（SP） */

    .common_mikoukai_area .ttl {
        font-size: 5vw;
    }

    .common_mikoukai_area .txt {
        font-size: 3.5vw;
    }

    .common_mikoukai_area a {
        font-size: 5vw;
        width: 100%;
    }

    .common_mikoukai_area_bn {
        background-color: #1151aa;
        position: fixed;
        right: 5px;
        bottom: 65px;
        border-radius: 4px;
        z-index: 9999;
    }

    .common_mikoukai_area_bn a {
        text-decoration: none;
        color: #fff !important;
        font-weight: bold;
        text-align: center;
        font-size: 12px;
        padding: 5px 20px;
        display: block;
        position: relative;
        padding-top: 8px;
        background-image: url(/penguin/resources/image/_common/arrow_right_w.png);
        background-repeat: no-repeat;
        background-position: 96% center;
        background-size: 8px;
        z-index: 1;
    }

    .common_mikoukai_area_bn a:before {
        content: "タップする";
        background-color: #fff;
        border: 2px solid #4285f4;
        color: #4285f4;
        border-radius: 20px;
        text-align: center;
        width: 80px;
        position: absolute;
        top: -10px;
        left: 50%;
        margin-left: -40px;
        font-size: 9px;
        line-height: 15px;
    }

    .common_mikoukai_area_bn p {
        overflow: hidden;
        margin: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .common_mikoukai_area_bn a span {
        display: block;
        font-size: 16px;
    }


    /* SP固定ページ エリア・沿線検索 */

    #page_search .areaSearchAreaName {
        width: 100%;
        display: block;
    }

    #page_search .checkboxCheckAll {
        width: 100%;
        display: block;
        padding: 0;
        letter-spacing: 0;
    }

    #page_search .areaListTableCell,
    #page_search .railwayAreaListTableCell,
    #page_search .railwayLineListTableCell {
        width: 100%;
        margin: 0%;
    }

    #page_search .searchButtonArea {
        width: 100%;
        display: block;
    }

    #page_search .searchButton_fixed {
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        left: 0;
        bottom: 0;
        padding: 10px;
        z-index: 9999;
    }

    #page_search .searchButton_fixed input#btnTownSearch,
    #page_search .searchButton_fixed input#btnAreaSearch {
        display: block;
        background: #fcc331;
        padding: .7em 1em;
        width: 48%;
        text-align: center;
        border-radius: 30px;
        font-size: 14px;
    }

    #page_search .searchButton_fixed input#btnTownSearch {
        background: #fff;
    }

    #page_search .searchButton_fixed input.search_btn.ont_btn {
        display: block;
        background: #fcc331;
        padding: .7em 1em;
        width: 100%;
        text-align: center;
        border-radius: 30px;
        font-size: 16px;
    }

    #page_search .searchButtonArea input.search_btn.ont_btn {
        width: 80%;
        margin: auto;
    }

    #page_search .searchButtonArea .search_more_btn,
    #page_search .searchButtonArea input.search_btn {
        width: 100%;
    }

    #page_search .searchButtonArea input.search_btn {
        margin-top: 20px;
    }

    /* 記事詳細ページ SP */
    #page_article .fl_wrap {
        display: block;
        padding: 0;
    }

    #page_article .article_title {
        font-size: 4.5vw;
        letter-spacing: .05em;
        padding: 11vw 0 2vw;
        text-align: center;
    }

    #page_article .article_title::before {
        width: 3vw;
        height: 3vw;
    }

    #page_article .article_title::after {
        font-size: 3.2vw;
        top: -7vw;
    }

    #page_article .article_main_image {
        width: 55vw;
        height: 55vw;
    }

    #page_artcile .day_cat {
        justify-content: center;
    }

    #page_article .day_cat .cat {
        font-size: 3.5vw;
    }

    .single_sns_ba {
        opacity: 1;
        position: static;
    }

    #page_article #side_menu ul {
        padding: 0;
    }

    #page_article #side_menu .title {
        text-align: center;
        font-size: 4.2vw;
        letter-spacing: .05em;
        padding-bottom: 2vw;
        margin-bottom: 4vw;
    }

    #page_article #side_menu .title:after {
        content: "";
        width: 30px;
        height: 1px;
        background: #333;
        position: absolute;
        right: 0;
        bottom: -1px;
    }

    #page_article #side_menu ul li a {
        font-size: 3.8vw;
        padding: 0 2vw;
    }

    #page_article #side_menu ul li {
        padding-bottom: 2vw;
        margin-bottom: 2vw;
    }

    #page_article #side_menu ul li a .img {
        height: 17vw;
        width: 25%;
    }

    #page_article #side_menu ul::before {
        display: none;
    }

    #page_article .contents_area::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        background: #525252;
        height: 1px;
        width: 16vw;
        bottom: 0;
    }

    .single_sns_bar {
        position: static;
        opacity: 1;
        visibility: visible;
        margin: 5vw 0 0vw;
    }

    .single_sns_bar ul {
        display: flex;
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -moz-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-flex;
        justify-content: center;
    }

    .single_sns_bar::after {
        display: none;
    }

    #page_article #side_menu .single_sns_bar ul li {
        border: none;
        margin: 0;
        width: 10vw;
    }

    .single_sns_bar::before {
        display: none;
    }

    /* 物件アーカイブ（SP） */

    #page_butkenArchive .table_wrap {
        overflow: scroll;
    }

    #page_butkenArchive .table {
        width: 1000px;
    }

    #page_butkenArchive .table li {
        font-size: 12px;
    }

    /* ページャー（SP） */

    .pager_item {
        display: table-cell;
        width: 8vw;
        line-height: 7.5vw;
        margin: 0 1vw;
        font-size: 3vw;
    }

    .pager_item:before {
        width: 3vw;
        height: 3vw;
    }

    /* SP支店一覧 */

    .shop_midashi_box {
        font-size: 3.6vw;
        padding: 2vw 3vw;
        letter-spacing: 0.3vw;
    }

    .page_shop .store_block+.store_block {
        margin-top: 10vw;
    }

    .page_shop .common_ttl_box {
        margin-bottom: 5vw;
    }

    .page_shop .list ul {
        grid-template-columns: 1fr;
        gap: 3vw;
    }

    .page_shop .list li .link {
        gap: 3vw;
        padding: 2.5vw;
    }

    .page_shop .list li .link:hover {
        background: #fff;
    }

    .page_shop .list li .link::after {
        width: 2vw;
    }

    .page_shop .list li .link:hover::after {
        border-color: #0A152B;
    }

    .page_shop .list li .link .img {
        width: 23vw;
    }

    .page_shop .list li .link .text_box .text {
        font-size: 3.3vw;
        letter-spacing: 0.04em;
    }

    .page_shop .list li .link:hover .text_box .text {
        color: #1A1311;
        background-image: linear-gradient(var(--main-color), var(--main-color));
    }

    .page_shop .list li .link .text_box .tel,
    .page_shop .list li .link .text_box .add {
        font-size: 3vw;
    }

    .page_shop .list li .link:hover .text_box .tel,
    .page_shop .list li .link:hover .text_box .add {
        color: var(--main-color);
    }

    /* 店舗詳細（東京・郡山・岡山 */
    .page_store_2 .main_sec {
        padding-bottom: 10vw;
        margin-bottom: 10vw;
    }

    .page_store_2 .main_sec .main_cont {
        background-image: url(../../image/site/store_tokyo_mv_sp.jpg);
        padding: 5vw 5vw 8vw;
        margin-bottom: 5vw;
        border-radius: 10px;
    }

    .page_store_2.koriyama .main_sec .main_cont {
        background-image: url(../../image/site/store_koriyama_mv_sp.jpg);
    }

    .page_store_2.okayama .main_sec .main_cont {
        background-image: url(../../image/site/store_okayama_mv_sp.jpg);
    }

    .page_store_2 .main_sec .main_cont::before {
        height: 69%;
    }

    .page_store_2 .main_sec .main_cont .online_box {
        width: 34vw;
        margin-bottom: 43vw;
    }

    .page_store_2 .main_sec .main_cont .online_box .catch {
        font-size: 3vw;
    }

    .page_store_2 .main_sec .main_cont .online_box .catch::before {
        width: 5vw;
        height: 3vw;
    }

    .page_store_2 .main_sec .main_cont .online_box .box {
        min-block-size: 24vw;
    }

    .page_store_2 .main_sec .main_cont .online_box .box .img {
        width: 10vw;
        margin: 0 auto 2vw;
    }

    .page_store_2 .main_sec .main_cont .online_box .box .text {
        font-size: 3.2vw;
    }

    .page_store_2 .main_sec .main_cont .ttl_box .ttl {
        font-size: 9vw;
        line-height: 1.4;
    }

    .page_store_2 .main_sec .main_cont .ttl_box .ttl .small {
        font-size: 3.2vw;
        letter-spacing: 0.04em;
        margin-top: 0.6em;
    }

    .page_store_2 .main_sec .main_cont .point_box {
        bottom: 43vw;
        right: unset;
        left: 5vw;
    }

    .page_store_2 .main_sec .main_cont .point_box ul {
        grid-template-columns: repeat(3, 15vw);
        gap: 2vw;
    }

    .page_store_2 .main_sec .main_cont .point_box li {
        min-block-size: 15vw;
    }

    .page_store_2 .main_sec .main_cont .point_box li .icon {
        width: 6vw;
    }

    .page_store_2 .main_sec .main_cont .point_box li .icon img {
        width: 100%;
    }

    .page_store_2 .main_sec .main_cont .point_box li .text {
        font-size: 3vw;
    }

    .page_store_2 .main_sec .img_cont ul {
        gap: 3vw;
        grid-template-columns: repeat(3, 1fr);
    }

    .page_store_2 .main_sec .img_cont li img {
        border-radius: 5px;
    }

    .page_store_2 .main_sec .news_cont {
        margin: -5vw 5vw 8vw;
        flex-direction: column;
        gap: 4vw;
        padding: 6vw;
    }

    .page_store_2 .main_sec .news_cont .ttl_box .ttl {
        font-size: 7vw;
    }

    .page_store_2 .main_sec .news_cont .list li+li {
        margin-top: 2vw;
    }

    .page_store_2 .main_sec .news_cont .list li .link {
        grid-template-columns: 20vw 1fr;
        gap: 3vw;
    }

    .page_store_2 .main_sec .news_cont .list li .link .date {
        font-size: 3.2vw;
    }

    .page_store_2 .main_sec .news_cont .list li .link .ttl {
        font-size: 3.2vw;
    }

    .page_store_2 .main_sec .news_cont .list li .link:hover .ttl {
        color: #0A152B;
    }

    .page_store_2 .main_sec .insta_cont {
        margin-top: 8vw;
    }

    .page_store_2 .main_sec .insta_cont .box .lead {
        font-size: 2.9vw;
        letter-spacing: .03em;
        margin-block: 0 0.6em;
    }

    .page_store_2 .main_sec .insta_cont .box .link {
        width: 100%;
    }

    .page_store_2 .main_sec .insta_cont .box .link:hover {
        opacity: 1;
    }

    .page_store_2 .about_sec {
        padding-bottom: 10vw;
        margin-bottom: 10vw;
    }

    .page_store_2 .about_sec .cont {
        margin: 0;
    }

    .page_store_2 .about_sec .cont .catch {
        font-size: 5vw;
    }

    .page_store_2 .about_sec .cont .text_box {
        margin-bottom: 5vw;
    }

    .page_store_2 .about_sec .cont .text_box .text {
        font-size: 3.3vw;
        letter-spacing: 0.04em;
    }

    .page_store_2 .about_sec .cont .text_box .text+.text {
        margin-top: 1em;
    }

    .page_store_2 .info_sec {
        margin: 0 0 15vw;
    }

    .page_store_2 .info_sec .ttl_box {
        margin-bottom: 3vw;
    }

    .page_store_2 .info_sec .ttl_box .ttl {
        font-size: 5vw;
    }

    .page_store_2 .info_sec .cont {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .page_store_2 .info_sec .cont .table_box .item {
        padding: 3vw 0;
    }

    .page_store_2 .info_sec .cont .table_box .item .theme {
        font-size: 3.6vw;
        font-weight: 600;
    }

    .page_store_2 .info_sec .cont .table_box .item .text {
        font-size: 3.4vw;
    }

    .page_store_2 .info_sec .cont .map_box .text_box {
        gap: 3vw;
        padding: 2vw;
    }

    .page_store_2 .info_sec .cont .map_box .text_box .icon {
        width: 6vw;
    }

    .page_store_2 .info_sec .cont .map_box .text_box .text {
        font-size: 3vw;
    }

    .page_store_2 .info_sec .cont .map_box .text_box .text .big {
        font-size: 4.5vw;
    }


    .page_store_2 .contact_sec {
        padding: 15vw 0;
    }

    .page_store_2 .contact_sec .ttl_box {
        margin: 0 0 7vw;
    }

    .page_store_2 .contact_sec .ttl_box .ttl {
        font-size: 5vw;
    }

    .page_store_2 .contact_sec .ttl_box .text {
        font-size: 3.4vw;
    }

    .page_store_2 .contact_sec .cont {
        margin: 0;
    }

    .page_store_2 .contact_sec .cont ul {
        grid-template-columns: 1fr;
        gap: 3vw;
    }

    .page_store_2 .contact_sec .cont li {
        padding: 4vw;
    }

    .page_store_2 .contact_sec .cont li .label {
        font-size: 4vw;
    }

    .page_store_2 .contact_sec .cont li .tel_box {
        margin-bottom: 1vw;
    }

    .page_store_2 .contact_sec .cont li .tel_box .tel {
        gap: 2vw;
        font-size: 6vw;
        pointer-events: auto;
    }

    .page_store_2 .contact_sec .cont li .tel_box .tel .icon {
        width: 7vw;
    }

    .page_store_2 .contact_sec .cont li .tel_box .text {
        font-size: 3.2vw;
    }

    .page_store_2 .contact_sec .cont li .info {
        font-size: 3.4vw;
    }

    .page_store_2 .contact_sec .cont li .link {
        gap: 3vw;
        padding: 2vw;
        min-block-size: 14vw;
    }

    .page_store_2 .contact_sec .cont li .link:hover {
        opacity: 1;
    }

    .page_store_2 .contact_sec .cont li .link .icon {
        width: 8vw;
    }

    .page_store_2 .contact_sec .cont li.line .link .icon {
        width: 10vw;
    }

    .page_store_2 .contact_sec .cont li .link .text {
        font-size: 3.8vw;
    }

    .page_store_2 .banner_sec {
        margin-top: 15vw;
    }

    .page_store_2 .banner_sec .cont {
        margin: 0;
    }

    .page_store_2 .banner_sec .cont .ttl_box {
        margin-bottom: 5vw;
    }

    .page_store_2 .banner_sec .cont .ttl_box .ttl {
        font-size: 5vw;
    }

    .page_store_2 .banner_sec .cont .banner .link:hover {
        opacity: 1;
    }

    /* 内部共通 */
    .common_fv .common_ttl_box {
        padding: 10vw 0 7.5vw;
    }

    .common_fv .common_ttl_box .en_ttl {
        font-size: 7.2vw;
        letter-spacing: .06em;
    }

    .common_fv .common_ttl_box .ttl {
        font-size: 4.1vw;
        letter-spacing: .2em;
    }

    .common_fv .common_ttl_box .ttl.lr {
        font-size: 7.5vw;
    }

    /* 店舗詳細ページ */
    .page_store .store_about_sec .about_cont {
        gap: 5vw 0;
        padding-bottom: 5vw;
        margin-bottom: 15vw;
        flex-direction: column;
    }

    .page_store .store_about_sec .about_cont .img img {
        width: 100%;
        aspect-ratio: 35/27;
    }

    .page_store .store_about_sec .about_cont .text_area .catch_box .catch {
        font-size: 4.62vw;
    }

    .page_store .store_about_sec .about_cont .text_area .main_text .text {
        font-size: 3.1vw;
    }

    .page_store .store_about_sec .about_cont .text_area .main_text .text+.text {
        margin-top: 4vw;
    }

    .page_store .store_about_sec .about_cont .text_area .catch_box {
        margin-bottom: 5vw;
    }

    .page_store .store_about_sec .about_cont .text_area .main_text {
        padding-bottom: 5vw;
        margin-bottom: 5vw;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .name {
        font-size: 4.3vw;
        margin-bottom: 1vw;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .inner {
        gap: 3vw 0;
        flex-direction: column;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .inner .time {
        font-size: 3.4vw;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .free {
        font-size: 7vw;
        gap: 0 2vw;
        justify-content: center;
        margin-bottom: 0.5vw;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .free::before {
        width: 9vw;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .text {
        font-size: 3.4vw;
    }

    .page_store .store_about_sec .info_cont {
        gap: 7vw 0;
        flex-direction: column;
    }

    .page_store .store_about_sec .info_cont .map {
        width: 100%;
        height: 60vw;
    }

    .page_store .store_about_sec .info_cont .table_box .item+.item {
        padding-top: 4vw;
    }

    .page_store .store_about_sec .info_cont .table_box .item {
        padding-bottom: 4vw;
    }

    .page_store .store_about_sec .info_cont .table_box .item .theme {
        font-size: 3.1vw;
        margin-bottom: 2vw;
    }

    .page_store .store_about_sec .info_cont .table_box .item .text {
        font-size: 3.5vw;
    }

    .page_store .store_about_sec {
        margin-bottom: 15vw;
    }

    .store_contact_sec .catch_box {
        margin-bottom: 4vw;
    }

    .store_contact_sec .catch_box .catch {
        font-size: 3.8vw;
    }

    .store_contact_sec .contact_list ul {
        grid-template-columns: 1fr;
        gap: 5vw 0;
    }

    .store_contact_sec.contact_none .contact_list ul {
        flex-direction: column;
    }

    .store_contact_sec .contact_list li {
        width: 100%;
        padding: 3vw 5vw;
        min-block-size: 27.2vw;
    }

    .store_contact_sec .contact_list li .ttl {
        font-size: 3.5vw;
        margin-bottom: 1.7vw;
    }

    .store_contact_sec .contact_list li .tel_box .free {
        font-size: 7vw;
        gap: 0 2vw;
    }

    .store_contact_sec .contact_list li .tel_box .free::before {
        width: 9vw;
    }

    .store_contact_sec .contact_list li .tel_box .text {
        font-size: 3.4vw;
    }

    .store_contact_sec .contact_list li .link {
        gap: 0 3vw;
        padding: 2vw;
        justify-content: center;
        min-block-size: 12.9vw;
    }

    .store_contact_sec .contact_list li.line .link .icon {
        width: 9vw;
    }

    .store_contact_sec .contact_list li .link .text {
        font-size: 4vw;
    }

    .store_contact_sec .contact_list li.line .link {
        padding: 2vw;
        gap: 0 2vw;
    }

    .store_contact_sec .contact_list li .link:hover {
        opacity: 1;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box {
        text-align: center;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .free a {
        display: inline-block;
        color: #1A1311;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .free.sp {
        display: flex !important;
    }

    .page_store .store_about_sec .about_cont .text_area .contact_box .inner .tel .text a {
        display: inline-block;
        color: #1A1311;
    }

    .store_contact_sec .contact_list li .tel_box .free.sp {
        display: flex !important;
    }

    .store_contact_sec .contact_list li .tel_box .free a {
        color: #1A1311;
        display: inline-block;
    }

    .store_contact_sec .contact_list li .tel_box .text a {
        color: #1A1311;
        display: inline-block;
    }

    .page_store .store_about_sec .info_cont .table_box .item .text a {
        color: #1A1311;
    }

    /* 会社概要 */
    .company_profile_sec .cont dl {
        display: block;
        padding: 5vw 5vw 4vw;
        position: relative;
    }

    .company_profile_sec .cont dl dt {
        width: 100%;
        border: none;
        padding: 0;
        font-size: 3.1vw;
        margin-bottom: 0.6em;
    }

    .company_profile_sec .cont dl dd {
        font-size: 3.4vw;
        padding: 0;
    }

    .company_profile_sec .cont dl::before {
        content: "";
        width: 18vw;
        height: 4px;
        background: var(--main-color);
        position: absolute;
        top: 0;
        left: 0;
    }

    /* 会社概要 */
    .page_company .common_page_wrap {
        padding: 15vw 0;
    }

    .company_profile_sec {
        margin-bottom: 5vw;
    }

    .page_company .company_access {
        margin-bottom: 15vw;
    }

    .page_company .company_access .inner {
        grid-template-columns: 1fr;
        gap: 5vw 0;
    }

    .page_company .company_access .inner .map {
        height: 60vw;
    }

    .page_company .company_history .common_ttl_box {
        margin-bottom: 5vw;
    }

    .page_company .company_history .history_list::before {
        top: -2vw;
        left: -0.8vw;
        width: 2vw;
    }

    .page_company .company_history .history_list dl {
        flex-direction: column;
        gap: 3vw 0;
        align-items: flex-start;
    }

    .page_company .company_history .history_list {
        padding-left: 10vw;
    }

    .page_company .company_history .history_list dl::before {
        top: 2.4vw;
        left: -11.7vw;
        width: 3.5vw;
    }

    .page_company .company_history .history_list dl::after {
        width: 2.2vw;
        top: 3.1vw;
        left: -11vw;
    }

    .page_company .company_history .history_list dl dt::before {
        width: 10vw;
        height: 1px;
        top: 4vw;
        left: -8.9vw;
    }

    .page_company .company_history .history_list dl dt {
        margin-right: 0;
        width: 25vw;
        border-radius: 10px 0;
        font-size: 3.2vw;
    }

    .page_company .company_history .history_list dl dd {
        font-size: 3.4vw;
    }

    .page_company .company_history .history_list dl+dl {
        margin-top: 8vw;
    }

    .top_own_property .sec_title .title {
        font-size: 5.6vw;
        display: block;
    }

    .top_own_property .sec_title .title .img {
        width: 47vw;
    }

    .top_own_property .sec_title .text {
        font-size: 3.5vw;
    }

    .top_own_property .cont ul.arrival_item {
        display: flex;
        overflow: scroll;
        padding-block: 0 0.5em;
        gap: 3vw;
    }

    .top_own_property .cont li.item {
        min-width: 42vw;
        width: 42vw;
        margin: 0;
    }

    .city_intro_sec {
        padding-bottom: 25vw;
    }

    .city_intro_sec .common_ttl_box {
        margin-bottom: 6vw;
    }

    .city_intro_sec .list_box ul {
        gap: 5vw;
        overflow-x: scroll;
        padding: 2vw;
    }

    .city_intro_sec .list_box ul li {
        width: 80vw;
    }

    .city_intro_sec .list_box ul li .item+.item {
        margin-top: 5vw;
    }

    .city_intro_sec .list_box ul li .link:hover .img img {
        scale: 1;
    }

    .city_intro_sec .list_box ul li .link .text_box {
        padding: 4vw 3vw;
    }

    .city_intro_sec .list_box ul li .link .text_box .title {
        font-size: 4vw;
        color: var(--main-color);
    }

    .city_intro_sec .list_box ul li .link .text_box .text {
        font-size: 3.3vw;
    }

    /* エリアページ */
    .city_introduction_sec .cont {
        flex-direction: column-reverse;
        gap: 6vw 0;
        margin-top: 7vw;
    }

    .city_introduction_sec .cont .img {
        width: 100%;
    }

    .city_introduction_sec .cont .img img {
        aspect-ratio: 2/1;
        min-width: 0;
    }

    .city_introduction_sec .cont .text_area .text {
        font-size: 3.5vw;
    }

    .page_area_ward .top_search .common_ttl_box .ttl .icon {
        width: 6vw;
    }

    .page_area_ward .top_search .common_ttl_box .ttl .icon img {
        width: 100%;
    }

    .popular_station_sec .table_box {
        margin-top: 6vw;
        overflow-x: scroll;
    }

    .popular_station_sec .table_box table {
        width: 220vw;
    }

    .popular_station_sec .table_box table th {
        font-size: 3.3vw;
        text-align: center;
    }

    .popular_station_sec .table_box table td.name {
        width: 15%;
        text-align: center;
        font-size: 3.5vw;
    }

    .popular_station_sec .table_box table td {
        font-size: 3.3vw;
    }

    .popular_spot_sec {
        margin-top: 20vw;
        padding: 20vw 0;
    }

    .popular_spot_sec .spot_box {
        margin-top: 6vw;
    }

    .popular_spot_sec .spot_box ul {
        display: flex;
        gap: 4vw;
        overflow-x: scroll;
        padding: 1.5vw;
    }

    .popular_spot_sec .spot_box ul li {
        width: 70vw;
        flex-shrink: 0;
    }

    .popular_spot_sec .spot_box ul li .text_box {
        padding: 3vw 4vw;
    }

    .popular_spot_sec .spot_box ul li .text_box .index {
        font-size: 4.5vw;
    }

    .popular_spot_sec .spot_box ul li .text_box .text {
        font-size: 3.5vw;
    }

    .page_area_ward .store_contact_sec {
        margin-top: 20vw;
    }

    .page_area_ward .store_contact_sec .block_box {
        flex-direction: column;
        gap: 5vw;
        margin-top: 6vw;
    }

    .page_area_ward .store_contact_sec .block {
        width: 100%;
        padding: 6vw 4vw;
    }

    .page_area_ward .store_contact_sec .catch_box .catch {
        font-size: 4.5vw;
    }

    .page_area_ward .store_contact_sec .block .info_box {
        flex-direction: column;
        gap: 4vw 0;
        margin-bottom: 4vw;
    }

    .page_area_ward .store_contact_sec .block .info_box .img {
        width: 100%;
        order: -1;
    }

    .page_area_ward .store_contact_sec .block .info_box .text_box .address,
    .page_area_ward .store_contact_sec .block .info_box .text_box .time,
    .page_area_ward .store_contact_sec.three .block .info_box .text_box .address,
    .page_area_ward .store_contact_sec.three .block .info_box .text_box .time {
        font-size: 3.3vw;
        text-align: center;
    }


    .page_area_ward .store_contact_sec .block .info_box .tel_box .free {
        font-size: 7vw;
        justify-content: center;
    }

    .page_area_ward .store_contact_sec .block .info_box .tel_box .free::before {
        width: 8vw;
    }

    .page_area_ward .store_contact_sec.three .block .info_box .tel_box .text,
    .page_area_ward .store_contact_sec .block .info_box .tel_box .text {
        font-size: 3.5vw;
    }

    .page_area_ward .store_contact_sec .block .btn_area ul {
        display: flex;
        gap: 2vw;
    }

    .page_area_ward .store_contact_sec .block .btn_area ul li .link {
        padding: 0 3vw;
        min-block-size: 12vw;
    }

    .page_area_ward .store_contact_sec .block .btn_area ul li .link:hover {
        opacity: 1;
    }

    .page_area_ward .store_contact_sec .block .btn_area ul li .link .icon {
        display: none;
    }

    .page_area_ward .store_contact_sec .block .btn_area ul li .link .text {
        font-size: 3.3vw;
    }

    .qrbunkatsu_fv_sec .qrbunkatsu_fv_inner {
        padding: 12vw 0;
        display: block;
    }

    .qrbunkatsu_fv_sec .fv_textbox {
        padding: 0;
        text-align: center;
    }

    .qrbunkatsu_fv_sec .fast_txt {
        font-size: 5vw;
        padding: 0;
        text-align-last: auto;
        text-align: center;
        letter-spacing: 0.3em;
    }

    .qrbunkatsu_fv_sec .second_txt {
        font-size: 18vw;
        -webkit-text-stroke: 2px #1E237D;
        text-shadow: -2px -2px 0 #1E237D, 2px -2px 0 #1E237D, -2px 2px 0 #1E237D, 2px 2px 0 #1E237D, -2px 0 0 #1E237D, 2px 0 0 #1E237D, 0 -2px 0 #1E237D, 0 2px 0 #1E237D, -3px -3px 0 #1E237D, 3px -3px 0 #1E237D, -3px 3px 0 #1E237D, 3px 3px 0 #1E237D, -4px 0 0 #1E237D, 4px 0 0 #1E237D, 0 -4px 0 #1E237D, 0 4px 0 #1E237D;
        margin: 3vw 0;
    }

    .qrbunkatsu_fv_sec .third_txt {
        font-size: 9vw;
        padding: 0;
        letter-spacing: 0.1em;
        text-align: center;
        text-align-last: auto;
        margin-bottom: 7vw;
    }

    .qrbunkatsu_cost_sec .qrbunkatsu_cost_tit {
        margin-bottom: 2em;
    }

    .qrbunkatsu_fv_sec .image {
        width: 80%;
        margin: 0 auto;
    }

    .qrbunkatsu_cost_sec {
        padding: 12vw 0;
    }

    .shingle_qrbunkatsu .qrbunkatsu_cost_sec .title {
        font-size: 4.5vw;
        letter-spacing: 0.1em;
    }

    .qrbunkatsu_cost_sec .qrbunkatsu_cost_column {
        gap: 3vw;
    }

    .qrbunkatsu_cost_sec .qrbunkatsu_cost_cell {
        font-size: 2.8vw;
        padding: 1.2em 0.8em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .qrbunkatsu_cost_sec .image {
        max-width: 70vw;
    }

    .qrbunkatsu_answer_sec {
        padding: 10vw 0;
    }

    .qrbunkatsu_answer_sec .qrbunkatsu_answer_inner {
        width: 90%;
        margin: 0 auto;
    }

    .qrbunkatsu_answer_sec .tag_title {
        font-size: 4vw;
    }

    .qrbunkatsu_answer_sec .qrbunkatsu_answer_cell {
        font-size: 6vw;
        padding-left: 38px;
        background-size: 24px 24px;
    }

    .qrbunkatsu_answer_sec .under_txt {
        font-size: 5vw;
        line-height: 2;
    }

    .qrbunkatsu_answer_sec .ex_big {
        font-size: 7.5vw;
    }

    .qrbunkatsu_point_sec {
        padding: 20vw 0 12vw;
    }

    .shingle_qrbunkatsu .title {
        font-size: 7vw;
    }

    .qrbunkatsu_point_sec .qrbunkatsu_point_tit {
        margin-bottom: 5em;
    }

    .qrbunkatsu_point_sec .qrbunkatsu_point_column {
        gap: 4vw;
    }

    .qrbunkatsu_point_sec .qrbunkatsu_point_tit {
        margin-bottom: 3em;
    }

    .qrbunkatsu_point_sec .qrbunkatsu_point_column {
        grid-template-columns: 1fr;
        gap: 10vw;
        margin-bottom: 10vw;
    }

    .qrbunkatsu_point_sec .image {
        margin-bottom: 1.5em;
    }

    .qrbunkatsu_point_sec .summary_txt {
        font-size: 5vw;
        margin-bottom: 0.5em;
    }

    .qrbunkatsu_point_sec .text {
        font-size: 3vw;
    }

    .qrbunkatsu_point_sec .ex_min {
        font-size: 2.5vw;
    }

    .qrbunkatsu_point_sec .qrbunkatsu_notes {
        font-size: 2.6vw;
    }

    .qrbunkatsu_point_sec .qrbunkatsu_notes .qrbunkatsu_notes_txt {
        padding-left: 5vw;
    }

    .qrbunkatsu_case_sec {
        padding: 12vw 0;
    }

    .shingle_qrbunkatsu .qrbunkatsu_case_sec .title {
        font-size: 6vw;
        margin-bottom: 1.2em;
    }

    .qrbunkatsu_case_sec .ex_big {
        font-size: 12vw;
    }

    .qrbunkatsu_case_sec .qrbunkatsu_case_table .table_tit {
        font-size: 5vw;
        padding-left: 3vw;
    }

    .qrbunkatsu_case_sec .qrbunkatsu_case_table th,
    .qrbunkatsu_case_sec .qrbunkatsu_case_table td {
        height: 13vw;
    }

    .qrbunkatsu_case_sec .qrbunkatsu_case_table .txt {
        font-size: 4vw;
        width: auto;
    }

    .qrbunkatsu_case_sec .qrbunkatsu_case_table .table_plan .ex_txt {
        font-size: 7vw;
    }

    .qrbunkatsu_case_sec .table_monthly {
        font-size: 4vw;
    }

    .qrbunkatsu_case_sec .table_monthly .number {
        font-size: 6vw;
    }

    .qrbunkatsu_case_sec .table_all {
        font-size: 4vw;
    }

    .qrbunkatsu_case_sec .table_all .number {
        font-size: 5vw;
    }

    .qrbunkatsu_case_sec .qrbunkatsu_case_table {
        margin-bottom: 8vw;
    }

    .qrbunkatsu_case_sec .under_txtbox {
        font-size: 2.6vw;
    }

    .qrbunkatsu_step_sec {
        padding: 12vw 0;
    }

    .qrbunkatsu_step_sec .qrbunkatsu_step_tit {
        margin-bottom: 3em;
    }

    .qrbunkatsu_step_sec .qrbunkatsu_step_list {
        padding: 12vw 8vw;
        border-radius: 30px;
    }

    .qrbunkatsu_step_sec .qrbunkatsu_step_badge {
        font-size: 3vw;
        width: 12vw;
        height: 12vw;
    }

    .qrbunkatsu_step_sec .ex_big {
        font-size: 5vw;
    }

    .qrbunkatsu_step_sec .qrbunkatsu_step_txt {
        font-size: 4vw;
        border-bottom: 2px solid #1d2087;
    }

    .qrbunkatsu_step_sec .qrbunkatsu_step_cell {
        padding-bottom: 8vw;
    }

    .qrbunkatsu_step_sec .qrbunkatsu_step_cell::after {
        left: 5vw;
        bottom: 3vw;
        width: 2.5vw;
        height: 2.5vw;
    }

    .qrbunkatsu_step_sec .belt_txt {
        font-size: 4vw;
        line-height: 1.4;
        padding: 0.8em;
    }

    .qrbunkatsu_step_sec .under_txt {
        font-size: 2.6vw;
        padding: 0;
    }

    .qrbunkatsu_conditions_sec {
        padding: 6vw 0 12vw;
    }

    .qrbunkatsu_conditions_sec .qrbunkatsu_conditions_titlebox {
        margin-bottom: 3em;
    }

    .qrbunkatsu_conditions_box {
        overflow: scroll;
    }

    .qrbunkatsu_conditions_sec .qrbunkatsu_conditions_table {
        width: 600px;
    }

    .qrbunkatsu_conditions_sec .table_txt.pattern_fast,
    .qrbunkatsu_conditions_sec .table_tit,
    .qrbunkatsu_conditions_sec .table_txt.pattern_second {
        font-size: 3.5vw;
    }

    .qrbunkatsu_conditions_sec .table_tit {
        height: 15vw;
    }

    .qrbunkatsu_conditions_sec .table_txt {
        height: 50vw;
    }

    .qrbunkatsu_conditions_sec .table_txt.pattern_third {
        font-size: 6vw;
    }

    .qrbunkatsu_conditions_sec .table_tit:first-of-type::after {
        transform: rotate(20deg);
    }

    .qrbunkatsu_conditions_sec .table_txt.pattern_third .ex_min {
        font-size: 3vw;
    }



    #new_arrival .tab_box {
        margin-block: 0 1.3em;
    }

    #new_arrival .tab_box ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3em;
    }

    #new_arrival .tab_box li {
        min-block-size: 40px;
        font-size: 11px;
    }

    #new_arrival .panel_box .panel .count_text {
        font-size: 14px;
        margin-block: 0 0.5em;
    }

    #new_arrival .panel_box .panel .secBukken_flex {
        gap: 0;
    }

    #new_arrival {
        margin-bottom: 15vw;
    }

    #new_arrival .cont .panel_box p.count_text {
        font-size: 3.6vw;
        margin-bottom: 0.7em;
    }

    #new_arrival .cont .panel_box .butken_box ul {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    #new_arrival .cont .panel_box .butken_box ul .link .img {
        height: 34vw;
        width: 29vw;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    #new_arrival .cont .panel_box .butken_box ul li .link {
        display: flex;
        gap: 3vw;
        align-items: center;
    }

    #new_arrival .cont .panel_box .butken_box ul .link .text_area .butken_ttl {
        font-size: 4vw;
    }

    #new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .theme {
        font-size: 3.5vw;
    }

    #new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .number.Black {
        font-size: 4.4vw;
    }

    #new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .text {
        font-size: 3.6vw;
    }

    #new_arrival .cont .panel_box .butken_box ul .link .text_area .size_box .box .access {
        font-size: 3.6vw;
    }

    #new_arrival .cont .panel_box .top_butken_btn {
        width: 100%;
    }

    #new_arrival .cont .common_ttl_box.center {
        margin-bottom: 0;
    }

    .top_arrival.top_own_property {
        margin-bottom: 15vw;
    }

    #new_arrival .cont .panel_box .common_link_btn {
        font-size: 3.6vw;
    }

    .new_arrival .cont .sec_title .title {
        font-size: 5.6vw;
        display: block;
    }

    .new_arrival .cont .sec_title .title .img {
        width: 47vw;
    }

    .page_area_ward .store_contact_sec.three .block_box {
        grid-template-columns: 1fr;
    }

    .page_area_ward .store_contact_sec .block .info_box .new_tel_box {
        margin: 1em auto 0;
    }

    .page_area_ward .store_contact_sec .block .info_box .new_tel_box dl {
        font-size: 4vw;
    }

    .page_area_ward .store_contact_sec .block .info_box .new_tel_box dl dd {
        font-size: 7vw;
    }

}