@charset "utf-8";

@font-face {
  font-family: "garamond-premier-pro", sans-serif;
  font-weight: 600;
  font-style: normal;
}

:root {
  --font-base: YakuHanJP, "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en: "garamond-premier-pro", sans-serif;
}

body {
  width: 100%;
  height: auto;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.75;
  color: #282828;
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 920px){
  body {
    font-size: min(1.07142857143vw, 15px);
  }
}

h1,h2,h3,h4,h5,span,p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-center_pc {
  text-align: left !important;
}
@media screen and (min-width: 920px){
  .text-center_pc {
    text-align: center !important;
  }
}

.text-center_sp {
  text-align: center !important;
}
@media screen and (min-width: 920px){
  .text-center_pc {
    text-align: left !important;
  }
}

.br_sp {
  display: block;
}
@media screen and (min-width: 920px){
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media screen and (min-width: 920px){
  .br_pc {
    display: block;
  }
}

.br_catch {
  display: block;
}
@media screen and (min-width: 920px){
  .br_catch {
    display: none;
  }
}

.inner_link {
  position: relative;
}

.inner_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #282828;
  position: absolute;
  bottom: -2px;
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: 100% 0;
}

@media screen and (min-width: 920px){
  .inner_link:hover {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 920px){
  .inner_link:hover::before {
    scale: 1 1;
    transform-origin: 0 0;
  }
}

.stream_line {
  background-image: linear-gradient(to right, #282828, #282828);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.1;
  width: fit-content;
}

.stream_line:hover {
  animation: none;
}
@media screen and (min-width: 920px){
  .stream_line:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}

.container-base {
    width: 100%;
    /* max-width: calc(1400px + min(4vw, 56px)); */
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}
@media screen and (min-width: 920px){
    .container-base {
        padding: 0 min(4vw, 56px);
    }
}

.container-middle {
    width: 100%;
    /* max-width: calc(1400px + min(19.7142857143vw,276px)); */
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}
@media screen and (min-width: 920px){
    .container-middle {
        padding: 0 min(9.85714285714vw,138px);
    }
}



/*-------------------- site_header --------------------*/

.site_header {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    background-color: #ffffff;
}
@media screen and (min-width: 920px){
    .site_header {
        width: fit-content;
        padding: min(1.5vw, 21px) 0 0 min(2.28571428571vw, 32px);
        background-color: transparent;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.site_header_logo {
    display: flex;
    width: 139px;
    height: 34px;
}
@media screen and (min-width: 920px){
    .site_header_logo {
        width: min(14.2857142857vw, 200px);
        height: min(3.485vw, 48.79px);
    }
}

.site_header_logo img  {
  width: 100%;
  height: 100%;
}

/*-------------------- main --------------------*/

.mv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}
@media screen and (min-width: 920px){
    .mv {
        height: 100vh;
        flex-direction: row-reverse;
    }
}

.mv_thumb {
    width: 100%;
    height: 420px;
}
@media screen and (min-width: 920px){
    .mv_thumb {
        height: 100%;
        flex: 0 1 58.5714285714vw;
    }
}

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

.mv_inner {
    padding: 45px 22px 198px;
    position: relative;
}
@media screen and (min-width: 920px){
    .mv_inner {
        flex: 1 1 0;
        display: flex;
        align-items: center;
        padding: 0 0 0 min(4vw, 56px);
    }
}

.mv_txtArea {
    text-align: center;
}
@media screen and (min-width: 920px){
    .mv_txtArea {
        width: fit-content;
        text-align: left;
    }
}

.mv_ttl {
    margin: 0 0 24px;
}
@media screen and (min-width: 920px){
    .mv_ttl {
        margin: 0 0 min(2.78571428571vw, 39px);
    }
}

.mv_ttl_jp {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    display: block;
    margin: 0 0 0.5rem;
}
@media screen and (min-width: 920px){
    .mv_ttl_jp {
        font-size: min(1.42857142857vw, 20px);
    }
}

.mv_ttl_en {
    width: 187px;
    height: 47px;
    margin: 0 auto;
}
@media screen and (min-width: 920px){
    .mv_ttl_en {
        width: min(19.7857142857vw, 277px);
        height: min(5vw, 70px);
        margin: 0;
    }
}

.mv_ttl_en img {
    width: 100%;
    height: 100%;
}

.mv_message {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    margin-right: -12px;
}
@media screen and (min-width: 920px){
    .mv_message {
        font-size: min(1.71428571429vw, 24px);
        margin-right: 0;
    }
}


.scrollDown {
  width: fit-content;
  height: auto;
  position: absolute;
  bottom: 150px;
  left: 50%;
  translate: -50% 0;
  font-family: var(--font-en); /* $font-en の代用 */
  line-height: 1;
  z-index: 1;
}
@media screen and (min-width: 920px) {
  .scrollDown {
    bottom: min(3vw, 42px);
    left: min(4vw, 56px);
    translate: 0 0;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.scrollDown span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  display: inline-block;
  position: relative;
  animation: text-animate 2.5s ease-in-out infinite;
}
@media screen and (min-width: 920px) {
  .scrollDown span {
    font-size: min(1vw, 14px);
  }
}

@keyframes text-animate {
  0%, 10%, 20%, 30%, 40% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(5px);
  }
  60% {
    opacity: 0;
    transform: translateY(-5px);
  }
  70%, 80%, 90%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scrollDown p {
  writing-mode: vertical-rl;
}

.message {
    position: relative;
    padding: 80px 0 0;
}
@media screen and (min-width: 920px) {
    .message {
        padding: min(19.2857142857vw, 270px) 0 0;
    }
}

.message::before {
    content: "";
    position: absolute;
    background-color: #F5F1ED;
    width:100%;
    height: 87.82%;
    top: 0;
    right:0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
@media screen and (min-width: 920px) {
    .message::before {
        width: 49.4285714286vw;
        height: min(62.8571428571vw, 880px);
        top: 0;
        right:auto;
        bottom: auto;
        left: 0;
    }
}

.message_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 0 60px;
}
@media screen and (min-width: 920px) {
    .message_content {
        flex-direction: row;
        justify-content: space-between;
        margin: 0 0 min(8.57142857143vw, 120px);
    }
}

.message_catch {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
}
@media screen and (min-width: 920px) {
    .message_catch {
        font-size: min(4vw, 56px);
        letter-spacing: 0.08em;
    }
}

@media screen and (min-width: 920px) {
    .message_txtArea {
        width: min(28.5vw, 399px);
        padding-top: min(0.92857142857vw, 13px);
    }
}

.message_txt {
    font-weight: 700;
    font-size: 1.125rem;
    display: block;
    margin: 0 0 1rem;
}
@media screen and (min-width: 920px) {
    .message_txt {
        font-size: min(1.71428571429vw, 24px);
        margin: 0 0 min(1.71428571429vw, 24px);
    }
}

.message_txtArea p {
    text-align: justify;
}

.booking_bnr {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
@media screen and (min-width: 920px) {
    .booking_bnr {
        flex-direction: row;
    }
}

.booking_bnr_img {
    display: block;
    width: 100%;
    height: 65.6vw;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
@media screen and (min-width: 920px) {
    .booking_bnr_img {
        height: min(25.7142857143vw, 360px);
        flex: 0 1 min(32.7857142857vw, 459px);
        border-radius: 8px 0 0 8px;
    }
}

.booking_bnr_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 920px) {
    .booking_bnr_img img {
        border-radius: 8px 0 0 8px;
        transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
    }
}

.booking_bnr_inner {
    padding: 37px 27px 30px 28px;
    background: linear-gradient(95.8deg, #D3232E 0%, #A11B23 100.77%);
    color: #fff;
    border-radius: 0 0 8px 8px;
}
@media screen and (min-width: 920px) {
    .booking_bnr_inner {
        flex: 1 1 0;
        padding: min(5vw, 70px) min(5vw, 70px) min(3.57142857143vw, 50px) min(5.14285714286vw, 72px);
        border-radius: 0 8px 8px 0;
    }
}

.booking_bnr_icon {
    width: 187px;
    height: auto;
    margin: 0 auto;
    position: relative;
}
@media screen and (min-width: 920px) {
    .booking_bnr_icon {
        width: min(17.5714285714vw, 246px);
    }
}

.booking_bnr_icon::before {
    content: "";
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/swng.svg);
    mask-image: url(../img/swng.svg);
    display: block;
    width: 187px;
    height: 47px;
    background-color: #fff;
}
@media screen and (min-width: 920px) {
    .booking_bnr_icon::before {
        width: min(17.5714285714vw, 246px);
        height: min(4.42857142857vw, 62px);
    }
}

.booking_bnr_catch {
    text-align: center;
    padding: 0.625rem 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin: 24px 0;
}
@media screen and (min-width: 920px) {
    .booking_bnr_catch {
        margin: min(2.85714285714vw, 40px) 0 min(1.42857142857vw, 20px);
    }
}

.booking_bnr_catch span {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.74rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-align: center;
}
@media screen and (min-width: 920px) {
    .booking_bnr_catch span {
        font-size: min(2.5vw, 35px);
    }
}

.booking_bnr_inner p {
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.04em;
}
@media screen and (min-width: 920px) {
    .booking_bnr_inner p {
        font-size: min(1.42857142857vw, 20px);
        text-align: center;
    }
}

.bnr_arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    bottom: 32px;
    right: 27px;
}
@media screen and (min-width: 920px) {
    .bnr_arrow {
        width: min(2.85714285714vw, 40px);
        height: min(2.85714285714vw, 40px);
        bottom: min(0.85714285714vw, 12px);
        right: min(0.85714285714vw, 12px);
    }
}

.icon_arrow {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.icon_arrow::before,
.icon_arrow::after {
    content: "";
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/icon_arrowBnr.svg);
    mask-image: url(../img/icon_arrowBnr.svg);
    display: block;
    width: 24px;
    height: 24px;
    background: #D3232E;
    transition: translate 0.2s ease-out;
}
@media screen and (min-width: 920px) {
    .icon_arrow::before,
    .icon_arrow::after {
        width: min(1.71428571429vw, 24px);
        height: min(1.71428571429vw, 24px);
    }
}

.icon_arrow::after {
    position: absolute;
    top: 0;
    left: 0;
    translate: -200% 0;
}

@media screen and (min-width: 920px) {
    a:hover .icon_arrow::before {
        translate: 100% 0;
    }

    a:hover .icon_arrow::after {
        translate: 0 0;
    }

    .booking_bnr:hover .booking_bnr_img img {
        scale: 1.07;
    }
}

.performance {
    padding: 80px 0 0;
}
@media screen and (min-width: 920px) {
    .performance {
        padding: min(11.4285714286vw, 160px) 0 0;
    }
}

.performance_ttl {
    margin: 0 auto 40px;
}
@media screen and (min-width: 920px) {
    .performance_ttl {
        margin: 0 auto min(4.28571428571vw, 60px);
    }
}

.performance_ttl_en {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
}
@media screen and (min-width: 920px) {
    .performance_ttl_en {
        font-size: min(3.85714285714vw, 54px);
    }
}

.performance_ttl_jp {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-align: center;

}
@media screen and (min-width: 920px) {
    .performance_ttl_jp {
        font-size: min(1.71428571429vw, 24px);
    }
}

.performance_column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.performance_item {
    padding: 40px 23px 40px 25px; 
    background-color: #F5F5ED;
    border-radius: 16px;
}
@media screen and (min-width: 920px) {
    .performance_item {
        padding: min(5.71428571429vw, 80px) min(5.78571428571vw, 81px) min(5.71428571429vw, 80px) min(5.92857142857vw, 83px);
    }
}

.performance_item_head {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media screen and (min-width: 920px) {
    .performance_item_head {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 920px) {
    .performance_item_ttl {
        width: fit-content;
    }
}

.performance_item_ttl_en {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    color: #D3232E;
    margin: 0 0 0.5rem;
}
@media screen and (min-width: 920px) {
    .performance_item_ttl_en {
        font-size: min(1.42857142857vw, 20px);
    }
}

.performance_item_ttl_jp {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.25;
}
@media screen and (min-width: 920px) {
    .performance_item_ttl_jp {
        font-size: min(4.85714285714vw, 68px);
    }
}

@media screen and (min-width: 920px) {
    .performance_item_txtArea {
        width: min(34.4285714286vw, 482px);
    }
}

.performance_item_txtArea p {
    letter-spacing: 0.04em;
    text-align: justify;
}

.performance_item_content {
    margin: 40px 0 0;
}
@media screen and (min-width: 920px) {
    .performance_item_content {
        margin: min(4.28571428571vw, 60px) 0 0;
    }
}

.performance_item_content img {
    width: 100%;
    height: auto;
    display: block;
}

.performance_item_catch {
    font-weight: 700;
    line-height: 1.75;
}
@media screen and (min-width: 920px) {
    .performance_item_catch {
        font-size: min(1.14285714286vw, 16px);
    }
}

.performance_item_row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media screen and (min-width: 1200px) {
    .performance_item_row {
        flex-direction: row;
        align-items: flex-end;
        gap: min(1.14285714286vw, 16px);
    }
}

@media screen and (min-width: 1200px) {
    .performance_item_row_txtArea {
        flex: 0 1 175px !important;
    }
}

.performance_item_row_txtArea h4 {
    font-weight: 700;
    line-height: 1.5;
    color: #D3232E;
    margin: 0 0 1rem;
}
@media screen and (min-width: 920px) {
    .performance_item_row_txtArea .br_pc {
        display: none !important;
    }
}
@media screen and (min-width: 1200px) {
    .performance_item_row_txtArea .br_pc {
        display: block !important;
    }
}

.performance_item_row_txtArea p {
    font-size: 0.6875rem;
    line-height: 1.65;
    text-align: justify;
}
@media screen and (min-width: 1200px) {
    .performance_item_row_txtArea p {
        font-size: min(0.92857142857vw, 13px);
    }
}

.performance_item_grade {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media screen and (min-width: 920px) {
    .performance_item_grade {
        flex-direction: row;
        justify-content: space-between;
    }
}
@media screen and (min-width: 1200px) {
    .performance_item_grade {
        flex: 1 1 0;
    }
}

@media screen and (min-width: 920px) {
    .performance_item-01 .performance_item_content {
        margin: min(2.42857142857vw, 34px) 0 0;
    }
}

.performance_item-01 .performance_item_row {
    margin: 20px 0 40px;
}
@media screen and (min-width: 920px) {
    .performance_item-01 .performance_item_row {
        margin: min(2vw, 28px) 0 min(4.85714285714vw, 68px);
    }
}

.item01-1,
.item01-2,
.item01-3 {
    display: block;
}

.item01-3 {
    margin: 1rem 0 0;
}
@media screen and (min-width: 920px) {
    .item01-1 {
        width: 59.49% !important;
    }

    .item01-2 {
        width: 37.3% !important;
    }

    .item01-3 {
        width: min(66.8828571429vw, 936.36px) !important;
        margin: 0.5rem auto 0;
    }
}

.performance_item_wrap {
    width: 100%;
    height: auto;
    overflow-x: scroll;
}
@media screen and (min-width: 1200px) {
    .performance_item_wrap {
        overflow-x: visible;
    }
}

.performance_item_map {
    width: 1124px;
    display: flex;
    align-items: center;
    gap: 20px;
}
@media screen and (min-width: 1200px) {
    .performance_item_map {
        width: 100%;
    }
}

.performance_item_map img {
    width: 338px;
    height: auto;
}

.region-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    table-layout: fixed; /* ← これが必要 */
}

.region-table th,
.region-table td {
  border: 1px solid #282828;
  padding: 13px 20px;
  vertical-align: middle;
}

.region-table th {
  background-color: #E8E8E0;
  font-weight: 400;
}

.region-table th small {
  font-size: 12px;
  display: inline-block;
  margin: 0 0 0 16px;
}

.region-table td {
    background-color: #ffffff;
    padding: 5px 20px;
}

/* 地域色区分 */
.region {
    width: 101px;
}

th.region {
    text-align: center;
}

td.region {
    text-align: left;
}

.region span {
    display: inline-block;
    width: 40px;
    height: 20px;
    margin: 0 0 -5px 8px;
}

.color-1 span {
  background-color: #5C7BAE;
}
.color-2 span {
  background-color: #74ACD9;
}
.color-3 span {
  background-color: #4DBA75;
}
.color-4 span {
  background-color: #FAF360;
}
.color-5 span {
  background-color: #FCA258;
}
.color-6 span {
  background-color: #F87364;
}
.color-7 span {
  background-color: #F276AE;
}
.color-8 span {
  background-color: #9C2767;
}

.value {
    width: 156px;
    text-align: center;
}

th.value {
    font-size: 12px;
    line-height: 1.5;
}

.performance_item_waterproof_map {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 0.5rem;
}
@media screen and (min-width: 920px) {
    .performance_item_waterproof_map {
        height: min(25.6428571429vw, 359px);
        flex-direction: row;
    }
}

.performance_item_waterproof_thumb {
    width: 100%;
    height: auto;
    border-radius: 4px 4px 0 0;
}
@media screen and (min-width: 920px) {
    .performance_item_waterproof_thumb {
        flex: 0 1 min(25.6428571429vw, 359px);
        height: 100%;
        border-radius: 8px 0 0 8px;
    }
}

.performance_item_waterproof_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px 4px 0 0;
}
@media screen and (min-width: 920px) {
    .performance_item_waterproof_thumb img {
        border-radius: 8px 0 0 8px;
    }
}

.performance_item_waterproof_inner {
    background-color: #DBEEF4;
    padding: 10px 8px;
    border-radius: 0 0 4px 4px;
}
@media screen and (min-width: 920px) {
    .performance_item_waterproof_inner {
        flex: 1 1 0;
        padding: min(1.915vw, 26.81px) min(0.71428571428vw, 10px) min(1vw, 14px);
        border-radius: 0 8px 8px 0;
    }
}

.performance_item_source {
    display: block;
    width: fit-content;
    margin: 0 0 0 auto;
    font-size: 0.75rem;
}

@media screen and (min-width: 920px) {
    .performance_item-03 .performance_item_row {
        flex-direction: row;
        gap: min(2.85714285714vw, 40px);
        align-items: flex-start;
    }
}

@media screen and (min-width: 920px) {
    .performance_item_performance {
        flex: 1 1 0;
    }
}

.performance_item_performance .performance_item_catch {
    margin: 20px 0 16px;
}
@media screen and (min-width: 920px) {
    .performance_item_performance .performance_item_catch {
        margin: min(2.85714285714vw, 40px) 0 min(1.42857142857vw, 20px);
    }
}

.zeh-list,
.co2-list,
.chart_list {
    width: 716px;
}
@media screen and (min-width: 920px) {
    .zeh-list,
    .co2-list,
    .chart_list {
        width: 100%;
    }
}

.zeh-list img,
.co2-list img,
.chart_list img {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 920px) {
    .performance_item_column {
        flex: 0 1 min(26.2857142857vw, 368px);
    }
}

.performance_item_zeh {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
    margin: 0 0 1rem;
}
@media screen and (min-width: 920px) {
    .performance_item_zeh {
        padding: min(2.85714285714vw, 40px) min(2.28571428571vw, 32px);
        margin: 0 0 min(1.42857142857vw, 20px);
    }
}

.performance_item_zeh_ttl {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    color: #D3232E;
    display: block;
    margin: 0 0 1rem;
}
@media screen and (min-width: 920px) {
    .performance_item_zeh_ttl {
        font-size: min(1.42857142857vw, 20px);
        margin: 0 0 min(1.42857142857vw, 20px);
    }
}

.performance_item_zeh_thumb {
    width: 100%;
    margin: 0 0 0.875rem;
}
@media screen and (min-width: 920px) {
    .performance_item_zeh_thumb {
        height: min(14.8571428571vw, 208px);
    }
}

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

.performance_item_zeh p {
    font-size: 11px;
    text-align: justify;
}
@media screen and (min-width: 920px) {
    .performance_item_zeh p {
        font-size: min(0.92857142857vw, 13px);
    }
}

.performance_item_window {
    margin: 0 0 0.5rem;
}

.performance_item_window_bnr {
    width: 100%;
    margin: 0 0 0.5rem;
}
@media screen and (min-width: 920px) {
    .performance_item_window_bnr {
        height: min(28.1428571429vw, 394px);
    }
}

.performance_item_window_img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.performance_item_window_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.point {
    margin: 117px 0 0;
}
@media screen and (min-width: 920px) {
    .point {
        margin: min(13.2857142857vw, 186px) 0 0;
    }
}

.point_wrap-even {
    width: 100%;
    background-color: #F5F5ED;
}

.point_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto;
}
@media screen and (min-width: 920px) {
    .point_item {
        flex-direction: row;
        justify-content: center;
        gap: min(7vw, 98px);
    }
}

@media screen and (min-width: 920px) {
    .point_item-even {
        flex-direction: row-reverse;
    }
}

.point_item_side {
    height: 64vw;
}
@media screen and (min-width: 920px) {
    .point_item_side {
        flex: 1 1 0;
        height: auto;
    }
}

.point_item_side_wrap {
    height: 100%;
}
@media screen and (min-width: 920px) {
    .point_item_side_wrap {
        position: sticky;
        top: 0;
        height:auto
    }
}

.point_item_head {
    width: 100%;
    height: 100%;
    position: relative;
}
@media screen and (min-width: 920px) {
    .point_item_head {
        height: 100vh;
        max-height: 100%;
    }
}

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

.point_item_ttl {
    width: 100%;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
@media screen and (min-width: 920px) {
    .point_item_ttl {
        width: auto;
        font-size: min(1.71428571429vw, 24px);
        writing-mode: vertical-rl;
        text-orientation: upright;
        letter-spacing: 0em;
        top: min(8.57142857143vw, 120px);
        translate: -50% 0;
    }
}

.point_item_main {
    padding: 0 30px 60px;
}
@media screen and (min-width: 920px) {
    .point_item_main {
        flex: 0 1 min(66.9285714286vw, 937px);
        padding: min(5.71428571429vw, 80px) min(9.85714285714vw,138px) min(11.4285714286vw, 160px) 0;
    }
}

@media screen and (min-width: 920px) {
    .point_item-even .point_item_main {
        padding: min(11.4285714286vw, 160px) 0 min(11.4285714286vw, 160px) min(9.85714285714vw,138px);
    }
}

.point_item_catch {
    margin: 0 0 24px;
}
@media screen and (min-width: 920px) {
    .point_item_catch {
        margin: 0 0 min(5.71428571429vw, 80px);
    }
}

.point_item_catch_en {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.25;
    display: block;
    margin: 0 0 12px;
}
@media screen and (min-width: 920px) {
    .point_item_catch_en {
        font-size: min(1.28571428571vw, 18px);
        margin: 0 0 min(1.14285714286vw, 16px);
    }
}

.point_item_catch_jp {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.35;
}
@media screen and (min-width: 920px) {
    .point_item_catch_jp {
        font-size: min(3.42857142857vw, 48px);
        line-height: 1.5;
    }
}

.point_item_catch_txt {
    display: block;
    text-align: justify;
    margin: 1rem 0 0;
}
@media screen and (min-width: 920px) {
    .point_item_catch_txt {
        margin: min(2.85714285714vw, 40px) 0 0;
    }
}

.point_item_chart {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-end;
}

.point_item_img {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (min-width: 920px) {
    .point_item_img {
        width: min(57.0714285714vw, 799px);
    }
}

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

.point_item_notes {
    font-size: 0.625rem;
    line-height: 1.5;
    display: block;
    text-align: right;
}
@media screen and (min-width: 920px) {
    .point_item_notes {
        font-size: min(0.85714285714vw, 12px);
    }
}

.point_item_notes-left {
    text-align: left;
}

.point_item_txtArea {
    margin: 24px 0 0;
}
@media screen and (min-width: 920px) {
    .point_item_txtArea {
        margin: min(2.85714285714vw, 40px) 0 0;
    }
}

.point_item_txtArea_cell:not(:last-of-type) {
    margin: 0 0 24px;
}
@media screen and (min-width: 920px) {
    .point_item_txtArea_cell:not(:last-of-type) {
        margin: 0 0 min(1.71428571429vw, 24px);
    }
}

.point_item_txtArea_cell h4 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 0 0 12px;
}
@media screen and (min-width: 920px) {
    .point_item_txtArea_cell h4 {
        font-size: min(1.42857142857vw, 20px);
        margin: 0 0 min(1.14285714286vw, 16px);
    }
}

.point_item_txtArea_cell p {
    text-align: justify;
}

.point_item_txtArea_cell small {
    font-size: 0.625rem;
    line-height: 1.5;
}
@media screen and (min-width: 920px) {
    .point_item_txtArea_cell small {
        font-size: min(0.85714285714vw, 12px);
    }
}

.point_item_passive {
    width: 100%;
    height: 50.4vw;
    position: relative;
}
@media screen and (min-width: 920px) {
    .point_item_passive {
        width: min(57.0714285714vw, 799px);
        height: min(34.2857142857vw, 480px);
    }
}

.point_item_passive_buttons {
    display: flex;
    align-items: center;
    padding: 2px;
    background-color: #F2F2F2;
    border-radius: 500px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    translate: -50% 0;
}
@media screen and (min-width: 920px) {
    .point_item_passive_buttons {
        padding: 4px;
        bottom: min(2.14285714286vw, 30px);
    }
}

.tab-button {
    padding: 6px 8px;
    border-radius: 500px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
}
@media screen and (min-width: 920px) {
    .tab-button {
        font-size: min(1.07142857143vw, 15px);
    }
}

.tab-button.active {
  background-color: #D3232E;
  color: #fff;
}

.point_item_passive_contents {
    width: 100%;
    height: 50.4vw;
}
@media screen and (min-width: 920px) {
    .point_item_passive_contents {
        height: min(34.2857142857vw, 480px);
    }
}

.tab-content {
    display: none;
    width: 100%;
    height: 50.4vw;
}
@media screen and (min-width: 920px) {
    .tab-content {
        height: min(34.2857142857vw, 480px);
    }
}

.tab-content.active {
    display: block;
}

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

.point_item_loop {
    width: 100%;
    height: 63.2vw;
}
@media screen and (min-width: 920px) {
    .point_item_loop {
        height: min(29.9285714286vw, 419px);
    }
}

.point_item_loop_item {
    display: block;
    height: 63.2vw;
}
@media screen and (min-width: 920px) {
    .point_item_loop_item {
        height: min(29.9285714286vw, 419px);
    }
}

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

.point_item_facilities {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media screen and (min-width: 920px) {
    .point_item_facilities {
        gap: min(5.71428571429vw, 80px);
    }
}

.point_item_facilities_catch {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    display: block;
    margin: 0 0 0.75rem;
}
@media screen and (min-width: 920px) {
    .point_item_facilities_catch {
        font-size: min(2vw, 28px);
        margin: 0 0 min(1.42857142857vw, 20px);
    }
}

.point_item_facilities_cell p {
    line-height: 1.5;
    text-align: justify;
    margin: 0.75rem 0;
}
@media screen and (min-width: 920px) {
    .point_item_facilities_cell p {
        margin: min(1.42857142857vw, 20px) 0 min(1.71428571429vw, 24px);
    }
}

@media screen and (min-width: 920px) {
    .point_item_facilities_cell-end p {
        margin: min(1.42857142857vw, 20px) 0;
    }
}

.point_item_facilities_point {
    padding: 20px;
    border-radius: 8px;
    background-color: #F5F5F5;
}
@media screen and (min-width: 920px) {
    .point_item_facilities_point {
        padding: min(1.71428571429vw, 24px);
    }
}

.point_item_facilities_point_ttl {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    color: #D3232E;
    display: block;
    margin: 0 0 1rem;
}
@media screen and (min-width: 920px) {
    .point_item_facilities_point_ttl {
        font-size: min(1.42857142857vw, 20px);
        margin: 0 0 min(1.42857142857vw, 20px);
    }
}

.point_item_facilities_point_list {
    padding-left: 1rem;
}
@media screen and (min-width: 920px) {
    .point_item_facilities_point_list {
        padding-left: min(1.42857142857vw, 20px);
    }
}

.point_item_facilities_point_list li {
    text-align: justify;
    position: relative;
}
@media screen and (min-width: 920px) {
    .point_item_facilities_point_list li {
        font-size: min(1.28571428571vw, 18px);
    }
}

.point_item_facilities_point_list li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 9999px;
    background: #282828;
    position: absolute;
    left: -12px;
    top: calc(.75em + -0px);
}

.point_item_facilities_img {
    width: 100%;
}
@media screen and (min-width: 920px) {
    .point_item_facilities_img {
        width: min(57.0714285714vw, 799px);
    }
}

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

.point_item_safety {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media screen and (min-width: 920px) {
    .point_item_safety {
        gap: min(5.71428571429vw, 80px);
    }
}

.point_item_safety_catch {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    display: block;
    margin: 0 0 0.75rem;
}
@media screen and (min-width: 920px) {
    .point_item_safety_catch {
        font-size: min(2vw, 28px);
        margin: 0 0 min(1.42857142857vw, 20px);
    }
}

.point_item_safety_cell p {
    line-height: 1.5;
    text-align: justify;
    margin: 0.75rem 0;
}
@media screen and (min-width: 920px) {
    .point_item_safety_cell p {
        margin: min(1.42857142857vw, 20px) 0 min(1.71428571429vw, 24px);
    }
}

@media screen and (min-width: 920px) {
    .point_item_safety_cell-end p {
        margin: min(1.42857142857vw, 20px) 0;
    }
}

.point_item_safety_img {
    width: 100%;
}
@media screen and (min-width: 920px) {
    .point_item_safety_img {
        width: min(57.0714285714vw, 799px);
    }
}

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

.point_item_life {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 0;
}
@media screen and (min-width: 920px) {
    .point_item_life {
        flex-direction: row;
        gap: min(1.32142857143vw, 18.5px);
        margin: min(2.85714285714vw, 40px) 0 0;
    }
}

.point_item_life_point {
    padding: 20px;
    border-radius: 8px;
    background-color: #F5F5F5;
}
@media screen and (min-width: 920px) {
    .point_item_life_point {
        width: calc((100% - min(2.64285714286vw, 37px)) / 3);
        padding: min(1.71428571429vw, 24px) min(1.14285714286vw, 16px);
    }
}

.point_item_life_point_ttl {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    color: #D3232E;
    display: block;
    margin: 0 0 1rem;
}
@media screen and (min-width: 920px) {
    .point_item_life_point_ttl {
        font-size: min(1.42857142857vw, 20px);
        text-align: center;
        margin: 0 0 min(1.42857142857vw, 20px);
    }
}

.point_item_life_point_list {
    padding-left: 1rem;
}
@media screen and (min-width: 920px) {
    .point_item_life_point_list {
        padding-left: min(1.42857142857vw, 20px);
    }
}

.point_item_life_point_list li {
    text-align: justify;
    position: relative;
}
@media screen and (min-width: 920px) {
    .point_item_life_point_list li {
        font-size: min(1.07142857143vw, 15px);
    }
}

.point_item_life_point_list li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 9999px;
    background: #282828;
    position: absolute;
    left: -12px;
    top: calc(.75em + -0px);
}

.point_item_data {
    margin: 0 0 0.5rem;
    height: 100%;
    position: relative;
}
@media screen and (min-width: 920px) {
    .point_item_data {
        display: none;
    }
}

.point_item_data_haed {
    width: 100%;
    display: flex;
    gap: 2px;
    margin: 0 0 24px;
    position: sticky;
    top: 0;
    background-color: #F5F5ED;
}

.point_item_data_bnr {
    width: calc((100% - 2px) / 2);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25;
    text-align: center;
    background-color: #E0E0E0;
}

.point_item_data_bnr-swng {
    background-color: #D3232E;
}

.point_item_data_bnr-swng span {
    position: relative;
}
.point_item_data_bnr-swng span::after {
    content: "";
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/swng.svg);
    mask-image: url(../img/swng.svg);
    display: block;
    width: 95px;
    height: 24px;
    background-color: #fff;
}

.point_item_data_cell {
    margin: 0 0 40px;
}

.point_item_data_cell_ttl {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25;
    display: block;
    padding: 0 0 0.5rem;
    border-bottom: 1px solid #282828;
    margin: 0 0 20px;
}

.point_item_data_cell_table {
    width: 100%;
    table-layout: fixed; /* ← これが必要 */
    margin: 0 0 20px;
}

.point_item_data_cell_table td {
    width: 50%;
    line-height: 1.25;
    text-align: center;
}
.point_item_data_cell_table td:nth-child(2) {
    font-weight: 600;
    color: #D3232E;
}

.point_item_data_cell_point {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    padding: 12px 10px 16px;
    border-radius: 4px;
}

.point_item_data_cell_point .head {
    display: flex;
    align-items: center;
    gap: 2px;
}

.point_item_data_cell_point .head span {
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.25;
}

.performance_table {
    border-collapse: collapse;
    text-align: center;
    table-layout: fixed; /* ← これが必要 */
	display: none;
}
@media screen and (min-width: 920px) {
    .performance_table {
        display: table;
        width: 100%;
    }
}

.performance_table th,
.performance_table td {
    border-collapse: collapse;
    vertical-align: middle;
    text-align: center;
    border: 2px solid #E0E0E0;
	padding: 3px;
    height: min(4.42857142857vw, 62px);
}

.performance_table th {
	background: #E0E0E0;
    font-weight: 700;
    font-size: min(1.28571428571vw, 18px);
    line-height: 1.35;
}
.performance_table td {
	background: #ffffff;
    font-size: min(1.07142857143vw, 15px);
    line-height: 1.25;

}

.performance_table .none {
    background-color: transparent !important;
    border-top: none;
    border-left: none;
}

.performance_table .category {
    width: min(15.2142857143vw, 213px);
    background-color: #E5E5DE;
    border-right: 2px solid #F5F5ED;
    border-bottom: 2px solid #F5F5ED;
    font-weight: 700;
    font-size: min(1.28571428571vw, 18px);
    line-height: 1.35;
}

.performance_table_swng {
    width: min(12.8571428571vw, 180px);
    border-right: 4px solid #D3232E !important;
    border-left: 4px solid #D3232E !important;
}

th.performance_table_swng {
    background-color: #D3232E !important;
    border: 4px solid #D3232E !important;
}

th.performance_table_swng span {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

th.performance_table_swng span::before {
    content: "";
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    aspect-ratio: 1;
    -webkit-mask-image: url(../img/swng.svg);
    mask-image: url(../img/swng.svg);
    display: block;
    width: min(6.71428571429vw, 94px);
    height: min(1.71428571429vw, 24px);
    background-color: #fff;
}

td.performance_table_swng {
    font-weight: 700;
    color: #D3232E;
}

td.performance_table_swng-last {
    border-right: 4px solid #D3232E !important;
    border-left: 4px solid #D3232E !important;
    border-bottom: 4px solid #D3232E !important;
}

.performance_table_point {
    width: min(15.7142857143vw, 220px);
}

.performance_table_point .head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0 auto;
}

.performance_table_point .head img {
    width: min(2.28571428571vw, 32px);
    height: min(2.28571428571vw, 32px);
}

.voice {
    padding: 80px 0;
    background-color: #F2F2F2;
}
@media screen and (min-width: 920px){
    .voice {
        padding: min(11.4285714286vw, 160px) 0 min(19.1428571429vw, 268px);
    }
}



.voice .container-middle {
    padding: 0;
}
@media screen and (min-width: 920px){
    .voice .container-middle {
        padding: 0 min(9.85714285714vw,138px);
    }
}

.voice_ttl {
    margin: 0 0 40px;
}
@media screen and (min-width: 920px){
    .voice_ttl {
        margin: 0 0 min(5.71428571429vw, 80px);
    }
}

.voice_ttl_en {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.25;
    text-align: center;
    display: block;
    margin: 0 0 1rem;
}
@media screen and (min-width: 920px){
    .voice_ttl_en {
        font-size: min(1.28571428571vw, 18px); 
        margin: 0 0 min(1.14285714286vw, 16px);
    }
}

.voice_ttl_jp {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-align: center;
}
@media screen and (min-width: 920px){
    .voice_ttl_jp {
        font-size: min(3.42857142857vw, 48px);
    }
}

.voice_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (min-width: 920px){
    .voice_content {
        gap: min(7.57142857143vw, 106px);
    }
}

.voice_item {
    width: 100%;
    display: flex;
    flex-direction: column;
}
@media screen and (min-width: 920px){
    .voice_item {
        flex-direction: row;
    }
}

@media screen and (min-width: 920px){
    .voice_item .infiniteslide_wrap {
        display: none;
    }
}

.voice_item_loop {
    width: 100%;
}

.voice_item_loop_item {
    width: 100%;
    height: 62.933vw;
}

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

.voice_item_thumb {
    display: none;
}
@media screen and (min-width: 920px){
    .voice_item_thumb {
        display: block;
        width: min(39.5714285714vw, 554px);
        height: min(29.7142857143vw, 416px);
        position: relative;
    }
}

.voice_item_thumb_img {
    width: 100%;
    height: 100%;
}

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

.voice_item_thumb_img-small {
    width: min(17.7142857143vw, 248px);
    height: min(13.2857142857vw, 186px);
    position: absolute;
    bottom: min(5.71428571429vw, 80px);
    left: min(2.85714285714vw, 40px);
    translate: 0 100%;
}

.voice_item_txtArea {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    padding: 24px 28px 24px 24px;
    background-color: #ffffff;
    border-radius: 8px;
    margin: -20px auto 0;
}
@media screen and (min-width: 920px){
    .voice_item_txtArea {
        width: min(31.4285714286vw, 440px);
        height: fit-content;
        padding: min(2.85714285714vw, 40px);
        margin: min(2.85714285714vw, 40px) 0 0 min(-2.85714285714vw, -40px);
    }
}

.voice_item_icon {
    width: 20px;
    height: 17px;
    display: flex;
}
@media screen and (min-width: 920px){
    .voice_item_icon {
        width: min(1.42857142857vw, 20px);
        height: min(1.21428571429vw, 17px);
    }
}

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

@media screen and (min-width: 920px){
    .voice_item_txtArea p {
        font-size: min(1.07142857143vw, 15px);
        line-height: 2;
    }
}

.voice_item_txt {
    text-align: justify;
}

@media screen and (min-width: 920px){
    .voice_item-end {
        flex-direction: row-reverse;
    }
}

@media screen and (min-width: 920px){
    .voice_item-end .voice_item_thumb_img-small {
        left: auto;
        right: min(2.85714285714vw, 40px);
    }
}

@media screen and (min-width: 920px){
    .voice_item-end .voice_item_txtArea {
        margin: min(7.57142857143vw, 106px) min(-2.85714285714vw, -40px) 0 0;
    }
}


/*---------- cta ----------*/
.cta {
    position: relative;
}

.cta_img {
    width: 100%;
    height: auto;
}
@media screen and (min-width: 920px) {
    .cta_img {  
        height: 100%;
    }
}

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

.cta_content {
    padding: 40px 30px 80px;
    background-color: #fff;
}
@media screen and (min-width: 920px) {
    .cta_content {  
        width: min(33.7857142857vw, 473px);
        height: 100%;
        padding: min(6.07142857143vw, 85px) min(2.57142857143vw, 36px) min(2.85714285714vw, 40px) min(2.64285714286vw, 37px);
        position: absolute;
        top: 0;
        left: 9.85714285714vw;
        bottom: 0;
    }
}

.cta_swng {
    display: block;
    width: 249px;
    margin: 0 auto 40px;
}
@media screen and (min-width: 920px) {
    .cta_swng {
        width: min(21.7857142857vw, 305px);
        margin: 0 auto min(3.57142857143vw, 50px);
    }
}

.cta_txtArea {
    margin: 0 0 28px;
}
@media screen and (min-width: 920px) {
    .cta_txtArea {
        margin: 0 0 min(2.14285714286vw, 30px);
    }
}

.cta_ttl {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 0 1rem;
}
@media screen and (min-width: 920px) {
    .cta_ttl {
        font-size: min(1.42857142857vw, 20px);
        margin: 0 0 min(1.14285714286vw, 16px);
    }
}

.cta_txtArea p {
    letter-spacing: 0.04em;
    text-align: center;
}
@media screen and (min-width: 920px) {
    .cta_txtArea p {
        font-size: min(1.07142857143vw, 15px);
    }
}

.cta_present {
    width: fit-content;
    padding: 12px 14px;
    border: 1px solid #DCDCDC;
    border-radius: 500px;
    margin: 0 auto 20px;
}
@media screen and (min-width: 920px) {
    .cta_present {
        padding: min(0.85714285714vw, 12px) min(1vw, 14px);
        margin: 0 auto min(1.42857142857vw, 20px);
    }
}

.cta_present p {
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}
@media screen and (min-width: 920px) {
    .cta_present p {
        font-size: min(1.07142857143vw, 15px);
    }
}

.cta_bnr {
    width: 100%;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #D3232E 0%, #A11B23 100%);
    border-radius: 4px;
    padding: 0 0.75rem;
}
@media screen and (min-width: 920px) {
    .cta_bnr {
        width: 100%;
        height: min(8.57142857143vw, 120px);
        padding: 0 min(1.14285714286vw, 16px);
    }
}

.cta_bnr_txt {
    font-weight: 700;
    font-size: 1rem;
    line-height: 2;
    color: #fff;
    flex: 1 1 0;
}
@media screen and (min-width: 920px) {
    .cta_bnr_txt {
        font-size: min(1.42857142857vw, 20px);
    }
}

.cta_bnr .bnr_arrow {
    width: 24px;
    height: 24px;
    flex: 0 1 24px;
    position: relative;
    bottom: auto;
    right: auto;
}
@media screen and (min-width: 920px) {
    .cta_bnr .bnr_arrow {
        width: min(2.28571428571vw, 32px);
        height: min(2.28571428571vw, 32px);
        flex: 0 1 min(2.28571428571vw, 32px);
    }
}

.cta_info {
    text-align: center;
    margin: 28px 0 0;
}
@media screen and (min-width: 920px) {
    .cta_info {
        margin: min(1.71428571429vw, 24px) 0 0;
    }
}

.cta_info_head {
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin: 0 0 0.25rem;
}
@media screen and (min-width: 920px) {
    .cta_info_head {
        font-size: min(1.07142857143vw, 15px);
    }
}

.cta_info_tel {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.5;
}
@media screen and (min-width: 920px) {
    .cta_info_tel {
        font-size: min(2vw, 28px);
    }
}

.cta_info_tel span {
    font-size: 2rem;
    line-height: 1.5;
}
@media screen and (min-width: 920px) {
    .cta_info_tel span {
        font-size: min(2.57142857143vw, 36px);
    }
}

.cta_info_date {
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
}
@media screen and (min-width: 920px) {
    .cta_info_date {
        font-size: min(0.92857142857vw, 13px);
    }
}

/*---------- footer ----------*/
.site_footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 24px;
  background: #282828;
}
@media screen and (min-width: 920px) {
    .site_footer {
        padding: min(3.5vw, 49px) min(4vw, 56px) min(2.14285714286vw, 30px);
    }
}

.site_footer_head {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 28px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #424242;
}
@media screen and (min-width: 920px) {
    .site_footer_head {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site_footer_logo {
  width: 326px;
  height: 80px;
  display: flex;
}

.site_footer_logo img {
  width: 100%;
  height: 100%;
}

.site_footer_name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.site_footer_info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 7.5px;
  color: #fff;
}

.site_footer_info_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.site_footer_address {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  text-decoration: none;
}

.site_footer_number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.site_footer_number a {
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

.site_footer_data {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.site_footer_other {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
@media screen and (min-width: 920px) {
    .site_footer_other {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site_footer_other .stream_line {
    background-image: linear-gradient(to right, #fff, #fff);
    padding-bottom: 2px;
    margin: 14px 0 0;
}
@media screen and (min-width: 920px) {
    .site_footer_other .stream_line {
        margin: 0;
    }
}

.sns_row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site_footer_register {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
}

.pageTop_link {
    width: 98px;
    height: 24px;
    display: flex;
}

.pageTop_link img {
    width: 100%;
    height: 100%;
}

.copyright {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    order: 3;
    margin: 40px 0 0;
}
@media screen and (min-width: 920px) {
    .copyright {
        margin: 0;
        order: 0;
    }
}

.cta_floating {
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 4px;
    background: linear-gradient(90deg, #D3232E 0%, #A11B23 100%);
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    right: 50%;
    translate: 50% 0;
    transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px) {
    .cta_floating {
        width: fit-content;
        padding: min(2.14285714286vw, 30px) min(1.42857142857vw, 20px);
        bottom: min(2vw, 28px);
        right: min(1.42857142857vw, 20px);
        translate: 0 0;
    }
}
@media screen and (min-width: 920px) {
    .cta_floating:hover {
        scale: 1.07;
    }
}

.cta_floating img {
    width: 40px;
    height: 40px;
}
@media screen and (min-width: 920px) {
    .cta_floating img {
        width: min(2.85714285714vw, 40px);
        height: min(2.85714285714vw, 40px);
    }
}

.cta_floating p {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
}
@media screen and (min-width: 920px) {
    .cta_floating p {
        font-size: min(1.42857142857vw, 20px);
    }
}


.cta_floating.is-visible {
    opacity: 0;
    pointer-events: none;
}