<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8"; :root {
    --main-bg-color: #000080;
    --shade2-bg-color: #010152;
    --window-padding: 50px;
    --vertical-window-padding: 80px;
    --font-family: futura-pt,sawarabi-gothic;
    --font-family2: futura-pt,sawarabi-gothic;
}

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

body {
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
}

#top main {
    background-color: #f6f6f6;
}

.pd-tb {
    padding-top: var(--vertical-window-padding);
    padding-bottom: var(--vertical-window-padding);
}

.pd-b {
    padding-bottom: var(--vertical-window-padding);
}

.mg-b {
    margin-bottom: var(--vertical-window-padding);
}

.pd-lr {
    padding-left: var(--window-padding);
    padding-right: var(--window-padding);
}

.btn01 {
    background-color: var(--main-bg-color);
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 70px;
    padding: 0 20px;
    border-radius: 100vh;
    position: relative;
    border: solid #fff;
}

.btn01.center {
    margin: 0 auto;
}

.btn01::after {
    content: "";
    background: url(../img/btn_arrow.png) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 30px;
    height: 30px;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    transition: 0.5s ease;
}

a:hover {
    opacity: 0.7;
}

/* header-end */
.section_ttl {
    font-size: 40px;
    color: var(--main-bg-color);
    margin-bottom: 50px;
}

.section_ttl.center {
    text-align: center;
}

.mv {
    height: 100vh;
}

.mv .inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1700px;
}

.mv_vid {
    height: 100%;
    position: relative;
}

.mv_vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv_text {
    position: absolute;
    left: 100px;
    bottom: 60px;
}

.mv_text h1 {
    font-size: 50px;
    color: #fff;
    filter: drop-shadow(2px 2px 5px black);
    line-height: 70px;
    font-style: italic;
    letter-spacing: -3.5px;
}

.sp {
    display: none;
}

#page_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 69;
    border-radius: 50%;
    background-color: var(--shade2-bg-color);
    border: 2px solid white;
}

#page_top a::before {
    font-weight: 900;
    content: "&gt;";
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(270deg);
}

/* price */
.top_price .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-align: center;
    line-height: 1.7;
}

.top_price h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.top_price p {
    font-size: 18px;
}

.top_price table {
    border-collapse: collapse;
    width: 500px;
}

.top_price table tr td:nth-of-type(odd) {
    background-color: #c4c4c4;
}

.top_price td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

/* price */
/* news */
h2.linear-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    margin-bottom: 50px;
    white-space: nowrap;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

h2.linear-ttl::before, h2.linear-ttl::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    display: block;
}

.top_news .news-wrap {
    display: flex;
    justify-content: space-between;
    /* gap: 15px; */
    flex-direction: row;
    flex-wrap: wrap;
}

.top_news .news-wrap li a .img-box {
    height: 140px;
    overflow: hidden;
    transition: 0.5s ease;
}

.top_news .news-wrap li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.top_news .news-wrap li {
    /* width: 100%; */
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
}

.top_news .news-wrap li a .txt-box {
    display: flex;
    flex-direction: column;
    color: #000;
    padding: 15px 10px;
    line-height: 1.5;
    font-weight: 500;
}

.top_news .news-wrap li:hover img {
    transform: scale(1.1);
}

.newsbtn {
    margin-top: 60px;
    width: 225px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--shade2-bg-color);
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    transition: 0.5s ease;
}

.newsbtn:hover {
    opacity: 0.65;
}

.newsbtn:active {
    transform: scale(0.96);
}

/* news */
/* about */
.top_about {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.top_about .img-box {
    max-width: 75%;
    width: 100%;
}

.top_about .img-box img {
    width: 100%;
}

.top_about .inner {
    margin-top: -20%;
    position: relative;
}

.top_about .txt-box {
    max-width: 650px;
    width: 100%;
    padding: 30px 50px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1.7;
    margin-left: auto;
}

.top_about .txt-box h3 {
    font-size: 18px;
}

.top_about .txt-box h2 {
    font-size: 28px;
}

.top_about .row-img {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.top_about .row-img .item {
    width: 100%;
}

.top_about .row-img .item img {
    width: 100%;
    margin-bottom: 10px;
}

.top_about .row-img p {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

/* about */
/* Topics */
.top_topics {
    position: relative;
}

.top_topics .slide-box .item {
    margin: 0 25px;
    position: relative;
}

.top_topics .slide-box .item p {
    width: 85%;
    height: 60px;
    background-color: #fff;
    color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: 500;
}

.top_topics .slide-box .item p span {
    width: 25px;
    height: 2px;
    background-color: #000;
    display: block;
}

/* .top_topics .slide-box {
  position: relative;
} */
.slide-box .slick-arrow {
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50vw;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
}

.slide-box .slick-prev {
    left: -5%;
}

.slide-box .slick-next {
    right: -5%;
}

/* Topics */
/* business */
.top_business {
    padding-left: var(--window-padding);
    /* padding-top: var(--vertical-window-padding); */
    position: relative;
    line-height: 1.7;
    background: rgb(25, 21, 84);
    color: #fff;
    background: linear-gradient(180deg, rgba(25, 21, 84, 1) 21%, rgba(90, 86, 67, 1) 100%);
}

.top_business h2 {
    font-size: 28px;
}

.top_business .inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: left;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.top_business .img-box {
    width: 58%;
    margin-left: auto;
    position: relative;
    bottom: -80px;
}

.top_business .img-box img {
    width: 100%;
}

.top_business .txt-box {
    width: 40%;
    padding-right: var(--window-padding);
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: var(--vertical-window-padding);
    margin-left: 3%;
}

.col-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.col-box a {
    width: 200px;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px 10px 20px;
    color: #000;
    font-weight: bold;
    transition: 0.3s ease;
}

.top_business .col-box a:hover {
    background-color: #000;
    color: #fff;
}

.cta-banner .col-box a:hover {
    opacity: 0.65;
}

.col-box a:active {
    transform: scale(0.96);
}

/* business */
/* store */
.top_store {
    line-height: 1.7;
    padding-top: var(--vertical-window-padding);
}

.top_store .inner {
    display: flex;
    justify-content: space-evenly;
    padding-top: var(--vertical-window-padding);
}

.top_store .img-box {
    width: 50%;
}

.top_store .img-box img {
    width: 100%;
}

.top_store .txt-box {
    width: 50%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.top_store h3 {
    font-size: 22px;
}

.top_store h2 {
    font-size: 28px;
}

.top_store p {
    font-weight: 500;
}

/* store */
/* cta-banner */
.cta-banner {
    padding-bottom: var(--vertical-window-padding);
}

.cta-banner iframe {
    width: 100%;
    margin-bottom: var(--vertical-window-padding);
}

.cta-banner .online {
    padding-top: 160px;
    background: url(../img/is-onlinebg01.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.cta-banner .online::after {
    content: "";
    width: 100%;
    height: 30%;
    background-color: #f6f6f6;
    position: absolute;
    left: 0;
    bottom: 0;
}

.cta-banner .inner {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background-color: #fff;
    padding: 100px 25px;
    text-align: center;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 9;
}

.cta-banner h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta-banner h2 img {
    max-width: fit-content;
    width: 100%;
}

.cta-banner .col-box a {
    background-color: #000;
    color: #fff;
}

/* cta-banner */
/* contactbnr */
.contactbnr {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contactbnr .logo {
    display: flex;
    font-size: 30px;
    align-items: center;
    color: #000;
    font-weight: 500;
    justify-content: center;
}

.contactbnr .logo img {
    width: 100%;
    max-width: 400px;
}

.contactbnr h2 {
    text-align: center;
    font-weight: 100;
    margin-bottom: 20px;
}

.contactbnr_tel {
    font-size: 45px;
    font-weight: 500;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #000;
}

/* contactbnr */
/* footer */
.footer {
    padding-top: 35px;
    padding-bottom: 35px;
    border-top: solid 1px #3333;
    background: #f6f6f6;
}

.footer .inner {
    display: flex;
    margin-bottom: 20px;
    max-width: 1100px;
}

.footer_nav {
    width: 72%;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.footer_nav ul {
    width: 40%;
}

.footer_nav ul li {
    width: 100%;
    padding: 0 0 20px;
}

.footer_nav ul li a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.footer_nav ul li a span {
    margin-right: 10px;
}

.footer_logo {
    width: 100%;
    text-align: end;
}

.footer_logo .logo img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
}

.footer_logo .address {
    line-height: 25px;
    font-size: 13px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.footer_logo .address::after {
    content: "";
    background-color: #000;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 1px;
    position: absolute;
}

.footer_logo .footer_btns {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_logo .footer_btns a {
    display: flex;
    align-items: center;
    color: #000;
}

.footer_logo .footer_btns a img {
    max-width: fit-content;
}

.copyright {
    text-align: center;
    color: #000;
    font-size: 15px;
}

#gotop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
}

#gotop a {
    background: #010152;
    display: block;
    border: 2px solid #FFF;
    padding: 0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 6px #00000075;
}

#gotop img {
    width: 12px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.kaitori-contents {
}

.kaitori-contents .pc {
    display: block;
}

.kaitori-contents .sp {
    display: none;
}

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

.kaitori-contents section {
    padding: 60px 3%;
}

.kaitori-contents .inner {
    max-width: 1000px;
}

.kaitori-contents h2 {
    font-size: 35px;
    font-family: 'source-han-serif-japanese';
    font-weight: bold;
    text-align: center;
    margin: 0 0 30px;
}

.kaitori-contents h2 span {
    display: block;
    font-size: 16px;
    margin: 10px 0 0;
    color: #919191;
    font-family: "sawarabi-gothic";
}

.kaitori-brands {
    background: url(../img/kaitori/bg_01.jpg) no-repeat center center;
    background-size: cover;
}

.kaitori-brands .inner {
    max-width: 1280px;
}

.kaitori-brands ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.kaitori-brands li {
    width: 14.8%;
    margin: 0 0 40px;
    box-shadow: 0 0 3px #dfdfdf;
    background: #FFF;
}

.kaitori-brands li a {
    display: block;
    padding: 0 0 20px;
}

.kaitori-brands li img {
}

.kaitori-brands li h3 {
    color: #000;
    text-align: center;
    margin: 14px 0 10px;
    font-family: "source-han-serif-japanese";
    font-weight: 400;
    font-size: 16px;
}

.kaitori-brands li p {
    text-align: center;
    margin: 0 0 0px;
    color: #000;
}

.kaitori-mv {
    margin: 0 0 0px;
    background: #e8e8e8;
}

.kaitori-mv img {
    width: 100%;
    max-width: 1440px;
    display: block;
    margin: auto;
}

.kaitori-banner {
    padding: 60px 3%;
}

.kaitori-banner .inner {
}

.kaitori-banner a {
}

.kaitori-banner img {
}

.kaitori-reason {
    background: url(../img/kaitori/bg_01.jpg) no-repeat center center;
    background-size: cover;
}

.kaitori-reason .inner {
}

.kaitori-reason h2 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-family: "source-han-serif-japanese";
    position: relative;
}

.kaitori-reason h2::before {
    content: " ";
    display: inline-block;
    width: 55px;
    height: 24px;
    background: #000;
    background: url(../img/kaitori/icon-about-iseya.png) no-repeat top left;
    background-size: contain;
    position: relative;
    top: -5px;
    margin: 0 13px 0 0;
}

.kaitori-reason h2::after {
    content: " ";
    display: inline-block;
    width: 55px;
    height: 24px;
    background: #000;
    background: url(../img/kaitori/icon-about-iseya.png) no-repeat top left;
    background-size: contain;
    position: relative;
    top: -5px;
    margin: 0 0 0 13px;
    transform: scale(-1, 1);
}

.kaitori-points {
}

.kaitori-points ul {
}

.kaitori-points li {
    margin: 0 0 10px;
}

.kaitori-points img {
    width: 100%;
}

.kaitori-achivement {
    background: #191e3c;
}

.kaitori-achivement .inner {
    max-width: 100%;
}

.kaitori-achivement h2 {
    color: #FFF;
}

.kaitori-achivement h2 span {
}

.kaitori-achivement .slick-achivement {
}

.kaitori-items {
}

.kaitori-items .inner {
    max-width: 1280px;
}

.kaitori-items h2 {
}

.kaitori-items h2 span {
}

.kaitori-items_list {
}

.kaitori-items_list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.kaitori-items_list li {
    border: 2px solid #ddd;
    width: 15.1%;
    text-align: center;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.kaitori-items_list img {
}

.kaitori-items_list h3 {
    font-size: 26px;
    font-family: "source-han-serif-japanese";
    margin: 0 0 8px;
}

.kaitori-items_list p {
}

.kaitori-voices {
}

.kaitori-voices .inner {
}

.kaitori-voices h2 {
}

.kaitori-voices h2 span {
}

.voice-items {
    background: #fbf8f2;
    padding: 20px 20px 50px;
    position: relative;
}

.voice-items::before,.voice-items::after {
    content: " ";
    display: block;
    width: 100px;
    height: 88px;
    background-position: left top;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    margin: 0 auto;
}

.voice-items::before {
    top : 0;
    right: 0;
}

.voice-items::after {
    bottom: 10px;
    left: 37px;
}

.voice-items ul {
    background: #FFF;
    padding: 60px 50px;
    box-shadow: 0 0 3px #e5e5e5;
}

.voice-item {
    position: relative;
    padding: 0 0 0 140px;
    margin: 0 0 40px;
}

.voice-item:last-child {
    margin: 0;
}

.voice-item__num {
    position: absolute;
    left: 0;
    text-align: center;
    top: -10px;
    color: #c59c6b;
    font-weight: bold;
    font-size: 16px;
    font-family: "source-han-serif-japanese";
    width: 110px;
    padding: 28px 0;
}

.voice-item__num::before {
    content: " ";
    display: block;
    width: 100%;
    height: 100px;
    background: url(../img/kaitori/icon_olive.svg) no-repeat 0 0;
    position: absolute;
    top : 0;
    left: 0;
    margin: auto;
    bottom: 0;
    right: 0;
}

.voice-item__num span {
    display: block;
    font-size: 30px;
    margin: 3px 0 0;
}

.voice-item h3 {
    font-family: "source-han-serif-japanese";
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.4;
}

.voice-item .voice-item__person {
    font-family: "source-han-serif-japanese";
    font-weight: bold;
    margin: 0 0 16px;
}

.voice-item .voice-item__description {
    line-height: 1.6;
}

.archivement-item {
    background: #FFF;
    padding: 0 0 30px;
    margin: 0 14px;
}

.archivement-item .slide_name {
    font-size: 14px;
    background: #919191;
    color: #FFF;
    text-align: center;
    padding: 0px 0 0px;
}

.archivement-item .slide_name p {
    padding: 13px 0;
}

.archivement-item p {
    padding: 20px 0;
    text-align: center;
}

.archivement-item img {
    padding: 0 20px 10px;
    max-width: 100%;
    width: 100%;
}

.archivement-item a {
    text-align: center;
    display: block;
    color: #000;
    font-size: 13px;
}

.archivement-item a span.kaitori_nedan {
}

.achivement-items .slick-dots {
    bottom: -50px;
}

.achivement-items .slick-dots li button:before {
    color: #FFF;
    opacity: 1.25;
    font-size: 16px;
    content: '';
    border: 1px solid #FFF;
    border-radius: 10px;
    width: 16px;
    height: 16px;
}

.achivement-items .slick-dots li.slick-active button:before {
    background: #FFF;
    opacity: 1;
}

.kaitori-faq {
}

.kaitori-faq .inner {
}

.kaitori-faq h2 {
}

.kaitori-faq h2 span {
}

.faq-items__wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.faq-items {
    width: 48%;
}

.faq-items ul {
}

.faq-item {
    padding: 40px 20px;
    border-bottom: 1px solid #000;
    cursor: pointer;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    /* width: 48%; */
}

.faq-item:first-child {
    border-top: 1px solid #000;
}

.faq-item:hover {
    opacity: 0.6;
}

.faq-item h3 {
    position: relative;
    font-family: "source-han-serif-japanese";
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    padding: 0 30px 0 0;
}

.faq-item h3::before {
    content: " ";
    display: block;
    width: 20px;
    height: 4px;
    background: #000;
    position: absolute;
    top : 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.faq-item h3::after {
    content: " ";
    display: block;
    width: 4px;
    height: 20px;
    background: #000;
    position: absolute;
    top : 0;
    bottom: 0;
    margin: auto;
    right: 8px;
    opacity: 1;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.faq-item.active h3::after {
    opacity: 0;
}

.faq-item p {
    font-size: 14px;
    padding: 0 20px 0 0;
    line-height: 1.8;
    opacity: 0;
    margin: 0;
    max-height: 0px;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.faq-item.active p {
    opacity: 1;
    margin: 40px 0 0px;
    /* display: block; */
    max-height: inherit;
}

.kaitori-shop {
    background: #f1f1f1;
}

.kaitori-shop .inner {
}

.kaitori-shop h2 {
}

.kaitori-shop h2 span {
}

.shop-about {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.shop-about__slick {
    width: 50%;
}

.shop-about__slick .slick-dots {
    bottom: -36px;
}

.shop-about__slick .slick-dots li button:before {
    color: #FFF;
    opacity: 1.25;
    font-size: 16px;
    content: '';
    border: 1px solid #010152;
    border-radius: 10px;
    width: 16px;
    height: 16px;
}

.shop-about__slick .slick-dots li.slick-active button:before {
    background: #010152;
    opacity: 1;
}

.shop-about__slick ul {
}

.shop-about__slick li {
}

.shop-about__slick img {
}

.shop-about__table {
    width: 46%;
}

.shop-about__table table {
    width: 100%;
}

.shop-about__table tbody {
}

.shop-about__table tr {
}

.shop-about__table th , .shop-about__table td {
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    padding: 20px 10px;
    border-bottom: 1px solid #000;
    line-height: 1.8;
}

.shop-about__table td {
}

.shop-about__table td a {
    color: #000;
}

.shop-about__table a.btn-map {
}

section.kaitori-way {
    padding: 0px 3%;
    background: #f1f1f1;
}

.kaitori-way .inner {
}

.kaitori-way h2 {
    font-size: 24px;
    color: #FFF;
    background: #191e3c;
    padding: 12px 20px;
}

.kaitori-way ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.kaitori-way li {
    width: 32%;
    margin: 0 0 40px;
}

.kaitori-way img {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
}

.kaitori-way p {
    line-height: 1.6;
}

.kaitori-way.orange {
}

.kaitori-way.orange .inner {
}

.kaitori-way.orange h2 {
    background: #c39b69;
}

.kaitori-way.orange ul {
}

.kaitori-way.orange li {
}

.kaitori-way.orange img {
}

.kaitori-way.orange p {
}

.kaitori-parking {
    background: #f1f1f1;
}

.kaitori-parking .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #FFF;
    padding: 40px 40px 20px;
}

.kaitori-parking .txts {
    width: 310px;
}

.kaitori-parking .txts .txt {
    margin: 0 0 30px;
}

.kaitori-parking .txts .txt h3 {
    background: #f00;
    color: #FFF;
    padding: 10px 20px;
    font-size: 18px;
    font-family: "source-han-serif-japanese";
    margin: 0 0 16px;
}

.kaitori-parking .txts .txt:nth-child(2n) h3 {
    background: #000;
}

.kaitori-parking .txts .txt ul {
}

.kaitori-parking .txts .txt li {
    border-bottom: 2px solid #ddd;
    padding: 20px 0;
}

.kaitori-parking .txts .txt li span {
    display: inline-block;
    border: 2px solid #000;
    border-radius: 50px;
    background: #ffff00;
    color: #000;
    padding: 6px 10px;
    line-height: 1;
    font-weight: bold;
    margin: 0 13px 0 0;
}

.kaitori-parking .txts .txt:nth-child(2n) li span {
    background: #fefed7;
}

.kaitori-parking .img {
    width: calc(100% - 360px);
}

.kaitori-parking .img img {
}

.kaitori-flow {
    background: #191e3c;
}

.kaitori-flow .inner {
}

.kaitori-flow h2 {
    color: #FFF;
}

.kaitori-flow h2 span {
}

.flow-items {
}

.flow-items ul {
}

.flow-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 0 70px;
    position: relative;
    padding: 0 0 20px;
}

.flow-item::after {
    content: " ";
    display: block;
    width: 100%;
    height: 30px;
    background: #000;
    background: url(../img/kaitori/flow/flow-line-down.png) no-repeat top left;
    background-size: contain;
    position: absolute;
    bottom: -40px;
    margin: 0 auto;
}

.flow-item.last::after {
    display: none;
}

.flow-item .img {
    width: 280px;
    display: flex;
    align-items: center;
}

.flow-item .img img {
}

.flow-item .txt {
    width: calc(100% - 320px);
}

.flow-item .txt h3 {
    color: #FFF;
    font-size: 20px;
    padding: 16px 0 20px 80px;
    line-height: 1.6;
    border-bottom: 1px dashed #ccc;
    margin: 0 0 20px;
    font-family: "source-han-serif-japanese";
    position: relative;
}

.flow-item .txt h3 span.flow-num {
    display: block;
    color: #facd64;
    font-size: 13px;
    text-align: center;
    position: absolute;
    margin: 0 30px 0 0;
    line-height: 1;
    top: 10px;
    left: 0;
}

.flow-item .txt h3 span.flow-num::after {
    content: " ";
    display: block;
    width: 45px;
    height: 2px;
    background: #FFF;
    position: absolute;
    top : 0;
    right: -40px;
    margin: auto;
    transform: rotate(-65deg);
    bottom: 0;
}

.flow-item .txt h3 span.flow-num span {
    display: block;
    text-align: center;
    padding: 0 0;
    font-size: 30px;
}

.flow-item .txt p {
    color: #FFF;
    margin: 0 0 22px;
    line-height: 1.6;
}

.flow-item.last {
    display: block;
}

.flow-item.last .txt {
    width: 100%;
    margin: 0 0 20px;
}

.flow-item.last .txt h3 {
}

.flow-item.last .txt h3 span.flow-num {
}

.flow-item.last .txt h3 span.flow-num span {
}

.flow-item.last .txt p {
}

.flow-attend {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.flow-attend__item {
    width: 48.6%;
    border: 1px solid #FFF;
    padding: 20px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.flow-attend__item-icon {
    display: flex;
    align-items: center;
    width: 80px;
}

.flow-attend__item-icon img {
}

.flow-attend__item-txt {
    width: calc(100% - 100px);
}

.flow-attend__item-txt h4 {
    color: #FFF;
    margin: 0 0 10px;
    position: relative;
    left: -8px;
    font-family: "source-han-serif-japanese";
}

.flow-attend__item-txt p {
    color: #FFF;
    line-height: 1.6;
}

.kaitori-contents section.kaitori-yoyaku {
    padding: 0 3% 40px;
}

.kaitori-yoyaku .inner {
    text-align: center;
}

.kaitori-yoyaku .kaitori-yoyaku__tel {
    color: #000;
    font-size: 34px;
    font-weight: 800;
    position: relative;
    display: block;
    margin: 0 auto 20px;
    text-align: left;
    width: 266px;
}

.kaitori-yoyaku .kaitori-yoyaku__tel::before {
    content: " ";
    display: inline-block;
    width: 39px;
    height: 25px;
    background: #000;
    background: url(../img/kaitori/contact-icon.png) no-repeat top left;
    position: relative;
    top : 0;
    margin: 0 12px 0 0;
    background-size: contain;
    left: 0;
}

.kaitori-yoyaku .kaitori-yoyaku__tel span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 7px 0 0 52px;
    line-height: 1.5;
}

.kaitori-yoyaku__time {
    /* font-family: 'RyoDispPlusN W50 Heavy'; */
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    margin: 0 0 30px;
}

.kaitori-yoyaku__btn {
    background: #27a535;
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    padding: 10px 0 16px;
    width: 100%;
    display: block;
    line-height: 1;
    border-radius: 40px;
    max-width: 250px;
    margin: 0 auto;
    position: relative;
}

.kaitori-yoyaku__btn::before {
    content: " ";
    display: inline-block;
    width: 25px;
    height: 20px;
    background: url(../img/kaitori/email-icon.png) no-repeat top left;
    background-size: contain;
    position: relative;
    top: 4px;
    margin: 0 6px 0 0;
}

.fixed-parts {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.fixed-parts .kaitori-yoyaku__btn {
    border-radius: 0;
    max-width: 100%;
    text-align: center;
}

.fixed-parts .kaitori-yoyaku__btn::before {
}

/* footer */
@media screen and (max-width: 1400px) {
    .btn01 {
        height: 65px;
    }

    .top_business .inner {
        max-width: 1200px;
    }

    .inner {
        max-width: 1200px;
    }

    .mv_text {
        left: 50px;
    }

    .footer_nav ul {
        width: 50%;
    }

    .footer_nav ul li a, .footer_logo .address {
        font-size: 16px;
        line-height: 25px;
    }

    .slide-box .slick-next {
        right: -20px;
    }

    .slide-box .slick-prev {
        left: -20px;
    }
}

@media screen and (max-width: 1250px) {
    .mv {
        background-size: cover;
        background-position: center;
    }
}

@media screen and (max-width: 1200px) {
    .slide-box .slick-next {
        right: -15px;
    }

    .slide-box .slick-prev {
        left: -15px;
    }
}

@media screen and (max-width: 1100px) {
    .top_news .news-wrap {
        /* flex-wrap: wrap; */ /* column-gap: 0; */ /* row-gap: 30px; */
    }

    .top_news .news-wrap li {
        width: calc(100% / 3 - 20px);
    }

    .top_about .txt-box {
        max-width: 550px;
    }

    .top_about .img-box {
        max-width: calc(100% - 50px);
    }

    .top_business {
        display: flex;
        align-items: flex-start;
        flex-direction: row-reverse;
        padding-bottom: var(--vertical-window-padding);
    }

    .top_business div.inner {
        position: relative;
        top: unset;
        left: unset;
        transform: none;
        max-width: 45%;
        width: 100%;
    }

    .top_business .img-box {
        width: 55%;
    }

    .top_business .txt-box {
        width: 100%;
        /* padding-top: 0; */
    }

    .top_store {
        padding-top: 0;
    }

    .top_store .txt-box {
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 1000px) {
    .top_about .row-img {
        padding-left: var(--window-padding);
        padding-right: var(--window-padding);
    }

    .top_topics .slide-box .item {
        margin: 0 15px;
    }

    .cta-banner .inner {
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .top_price .inner {
        flex-direction: column;
    }

    .top_price h2, .top_about .txt-box h2, .top_business h2 {
        font-size: 24px;
    }

    .top_news .news-wrap li {
        width: calc(100% / 2 - 10px);
    }

    .top_price table {
        max-width: 500px;
        width: 100%;
    }

    .top_about .img-box {
        max-width: 100%;
    }

    .top_about .inner {
        margin-top: 0;
    }

    .top_about .txt-box {
        max-width: 100%;
    }

    .top_about .row-img {
        flex-wrap: wrap;
        column-gap: 0;
        row-gap: 20px;
    }

    .top_about .row-img .item {
        width: calc(100% / 2 - 10px);
    }

    .top_business {
        flex-direction: column;
        padding-top: var(--vertical-window-padding);
    }

    .top_business .img-box {
        width: 90%;
        bottom: 0;
    }

    .top_business div.inner {
        max-width: 100%;
    }

    .top_store .inner {
        flex-direction: column;
    }

    .top_store {
        position: relative;
    }

    .top_store .img-box {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        position: relative;
        z-index: 0;
    }

    .top_store .txt-box {
        width: 100%;
        padding-top: 50px;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cta-banner .online {
        padding-top: 100px;
    }

    .footer_logo .footer_btns a:nth-of-type(1), .footer_logo .footer_btns a:nth-of-type(2) {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer_logo .footer_btns a:nth-of-type(1) img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 576px) {
    .top_news .news-wrap li {
        width: 100%;
    }

    .top_about .txt-box {
        padding-left: 25px;
        padding-right: 25px;
    }

    .top_topics .slide-box .item {
        max-width: 320px;
        width: 100%;
        margin: 0 20px;
    }

    .top_business .img-box {
        width: 100%;
    }

    .cta-banner h2 img:nth-of-type(1) {
        max-width: 225px;
    }

    .cta-banner .inner {
        padding: 60px 25px;
    }

    .footer_logo .logo img {
        max-width: 160px;
    }
}

.address a {
    color: #000;
    text-decoration: none;
}

/*history*/
@media screen and (max-width: 980px) {
}

@charset "UTF-8"; :root {
    --main-bg-color: #000080;
    --shade2-bg-color: #010152;
    --window-padding: 50px;
    --vertical-window-padding: 80px;
   /* --font-family: "sawarabi-gothic";
    --font-family2: "sawarabi-gothic";*/
}

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

body {
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
}

#top main {
    background-color: #f6f6f6;
}

.pd-tb {
    padding-top: var(--vertical-window-padding);
    padding-bottom: var(--vertical-window-padding);
}

.pd-b {
    padding-bottom: var(--vertical-window-padding);
}

.mg-b {
    margin-bottom: var(--vertical-window-padding);
}

.pd-lr {
    padding-left: var(--window-padding);
    padding-right: var(--window-padding);
}

.btn01 {
    background-color: var(--main-bg-color);
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 70px;
    padding: 0 20px;
    border-radius: 100vh;
    position: relative;
    border: solid #fff;
}

.btn01.center {
    margin: 0 auto;
}

.btn01::after {
    content: "";
    background: url(../img/btn_arrow.png) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 30px;
    height: 30px;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    transition: 0.5s ease;
}

a:hover {
    opacity: 0.7;
}

/* header-end */
.section_ttl {
    font-size: 40px;
    color: var(--main-bg-color);
    margin-bottom: 50px;
}

.section_ttl.center {
    text-align: center;
}

.mv {
    height: 100vh;
}

.mv .inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1700px;
}

.mv_vid {
    height: 100%;
    position: relative;
}

.mv_vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv_text {
    position: absolute;
    left: 100px;
    bottom: 60px;
}

.mv_text h1 {
    font-size: 50px;
    color: #fff;
    filter: drop-shadow(2px 2px 5px black);
    line-height: 70px;
    font-style: italic;
    letter-spacing: -3.5px;
}

.sp {
    display: none;
}

#page_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 69;
    border-radius: 50%;
    background-color: var(--shade2-bg-color);
    border: 2px solid white;
}

#page_top a::before {
    font-weight: 900;
    content: "&gt;";
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(270deg);
}

/* price */
.top_price .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-align: center;
    line-height: 1.7;
}

.top_price h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.top_price p {
    font-size: 18px;
}

.top_price table {
    border-collapse: collapse;
    width: 500px;
}

.top_price table tr td:nth-of-type(odd) {
    background-color: #c4c4c4;
}

.top_price td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

/* price */
/* news */
h2.linear-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    margin-bottom: 50px;
    white-space: nowrap;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

h2.linear-ttl::before, h2.linear-ttl::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    display: block;
}

.top_news .news-wrap {
    /* display: flex; */
    /* justify-content: space-between; */
    /* gap: 15px; */
}

.top_news .news-wrap li a .img-box {
    height: 140px;
    overflow: hidden;
    transition: 0.5s ease;
}

.top_news .news-wrap li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.top_news .news-wrap li {
    /* width: 100%; */
    width: 18%;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 30px;
    background-color: #fff;
    box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
}

.top_news .news-wrap li a .txt-box {
    display: flex;
    flex-direction: column;
    color: #000;
    padding: 15px 10px;
    line-height: 1.5;
    font-weight: 500;
}

.top_news .news-wrap li:hover img {
    transform: scale(1.1);
}

.newsbtn {
    margin-top: 60px;
    width: 225px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--shade2-bg-color);
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    transition: 0.5s ease;
}

.newsbtn:hover {
    opacity: 0.65;
}

.newsbtn:active {
    transform: scale(0.96);
}

/* news */
/* about */
.top_about {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.top_about .img-box {
    max-width: 75%;
    width: 100%;
}

.top_about .img-box img {
    width: 100%;
}

.top_about .inner {
    margin-top: -20%;
    position: relative;
}

.top_about .txt-box {
    max-width: 650px;
    width: 100%;
    padding: 30px 50px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1.7;
    margin-left: auto;
}

.top_about .txt-box h3 {
    font-size: 18px;
}

.top_about .txt-box h2 {
    font-size: 28px;
}

.top_about .row-img {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.top_about .row-img .item {
    width: 100%;
}

.top_about .row-img .item img {
    width: 100%;
    margin-bottom: 10px;
}

.top_about .row-img p {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

/* about */
/* Topics */
.top_topics {
    position: relative;
}

.top_topics .slide-box .item {
    margin: 0 25px;
    position: relative;
}

.top_topics .slide-box .item p {
    width: 100%;
    height: 45px;
    background-color: #fff;
    color: #000;
    position: absolute;
    top: 70%;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: 500;
}

.top_topics .slide-box .item p span {
    width: 25px;
    height: 2px;
    background-color: #000;
    display: none;
}

/* .top_topics .slide-box {
  position: relative;
} */
.slide-box .slick-arrow {
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50vw;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75);
}

.slide-box .slick-prev {
    left: -5%;
}

.slide-box .slick-next {
    right: -5%;
}

/* Topics */
/* business */
.top_business {
    padding-left: var(--window-padding);
    /* padding-top: var(--vertical-window-padding); */
    position: relative;
    line-height: 1.7;
    background: rgb(25, 21, 84);
    color: #fff;
    background: linear-gradient(180deg, rgba(25, 21, 84, 1) 21%, rgba(90, 86, 67, 1) 100%);
}

.top_business h2 {
    font-size: 28px;
}

.top_business .inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: left;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.top_business .img-box {
    width: 58%;
    margin-left: auto;
    position: relative;
    bottom: -80px;
}

.top_business .img-box img {
    width: 100%;
}

.top_business .txt-box {
    width: 40%;
    padding-right: var(--window-padding);
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: var(--vertical-window-padding);
}

.col-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.col-box a {
    width: 200px;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px 10px 20px;
    color: #000;
    font-weight: bold;
    transition: 0.3s ease;
}

.top_business .col-box a:hover {
    background-color: #000;
    color: #fff;
}

.cta-banner .col-box a:hover {
    opacity: 0.65;
}

.col-box a:active {
    transform: scale(0.96);
}

/* business */
/* store */
.top_store {
    line-height: 1.7;
    padding-top: var(--vertical-window-padding);
}

.top_store .inner {
    display: flex;
    justify-content: space-evenly;
    padding-top: var(--vertical-window-padding);
}

.top_store .img-box {
    width: 50%;
}

.top_store .img-box img {
    width: 100%;
}

.top_store .txt-box {
    width: 50%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.top_store h3 {
    font-size: 22px;
}

.top_store h2 {
    font-size: 28px;
}

.top_store p {
    font-weight: 500;
}

/* store */
/* cta-banner */
.cta-banner {
    padding-bottom: var(--vertical-window-padding);
}

.cta-banner iframe {
    width: 100%;
    margin-bottom: var(--vertical-window-padding);
}

.cta-banner .online {
    padding-top: 160px;
    background: url(../img/is-onlinebg01.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.cta-banner .online::after {
    content: "";
    width: 100%;
    height: 30%;
    background-color: #f6f6f6;
    position: absolute;
    left: 0;
    bottom: 0;
}

.cta-banner .inner {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background-color: #fff;
    padding: 100px 25px;
    text-align: center;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 9;
}

.cta-banner h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta-banner h2 img {
    max-width: fit-content;
    width: 100%;
}

.cta-banner .col-box a {
    background-color: #000;
    color: #fff;
}

/* cta-banner */
/* contactbnr */
.contactbnr {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contactbnr .logo {
    display: flex;
    font-size: 30px;
    align-items: center;
    color: #000;
    font-weight: 500;
    justify-content: center;
}

.contactbnr .logo img {
    width: 100%;
    max-width: 400px;
}

.contactbnr h2 {
    text-align: center;
    font-weight: 100;
    margin-bottom: 20px;
}

.contactbnr_tel {
    font-size: 45px;
    font-weight: 500;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #000;
}

/* contactbnr */
/* footer */
.footer {
    padding-top: 35px;
    padding-bottom: 35px;
    border-top: solid 1px #3333;
    background: #f6f6f6;
}

.footer .inner {
    display: flex;
    margin-bottom: 20px;
    max-width: 1100px;
}

.footer_nav {
    width: 72%;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.footer_nav ul {
    width: 40%;
}

.footer_nav ul li {
    width: 100%;
    padding: 0 0 20px;
}

.footer_nav ul li a {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.footer_nav ul li a span {
    margin-right: 10px;
}

.footer_logo {
    width: 100%;
    text-align: end;
}

.footer_logo .logo img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
}

.footer_logo .address {
    line-height: 25px;
    font-size: 13px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.footer_logo .address::after {
    content: "";
    background-color: #000;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 1px;
    position: absolute;
}

.footer_logo .footer_btns {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_logo .footer_btns a {
    display: flex;
    align-items: center;
    color: #000;
}

.footer_logo .footer_btns a img {
    max-width: fit-content;
}

.copyright {
    text-align: center;
    color: #000;
    font-size: 15px;
}

.kaitori-contents {
}

.kaitori-contents .pc {
    display: block;
}

.kaitori-contents .sp {
    display: none;
}

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

.kaitori-contents section {
    padding: 60px 3%;
}

.kaitori-contents .inner {
    max-width: 1000px;
}

.kaitori-contents h2 {
    font-size: 35px;
    font-family: 'source-han-serif-japanese';
    font-weight: bold;
    text-align: center;
    margin: 0 0 30px;
}

.kaitori-contents h2 span {
    display: block;
    font-size: 16px;
    margin: 10px 0 0;
    color: #919191;
    font-family: "sawarabi-gothic";
}

.kaitori-brands {
    background: url(../img/kaitori/bg_01.jpg) no-repeat center center;
    background-size: cover;
}

.kaitori-brands .inner {
    max-width: 1280px;
}

.kaitori-brands ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.kaitori-brands li {
    width: 14.8%;
    margin: 0 0 40px;
    box-shadow: 0 0 3px #dfdfdf;
    background: #FFF;
}

.kaitori-brands li a {
    display: block;
    padding: 0 0 20px;
}

.kaitori-brands li img {
}

.kaitori-brands li h3 {
    color: #000;
    text-align: center;
    margin: 14px 0 10px;
    font-family: "source-han-serif-japanese";
    font-weight: 400;
    font-size: 16px;
}

.kaitori-brands li p {
    text-align: center;
    margin: 0 0 0px;
    color: #000;
}

.kaitori-mv {
    margin: 0 0 0px;
    background: #e8e8e8;
}

.kaitori-mv img {
    width: 100%;
    max-width: 1440px;
    display: block;
    margin: auto;
}

.kaitori-banner {
    padding: 60px 3%;
}

.kaitori-banner .inner {
}

.kaitori-banner a {
}

.kaitori-banner img {
}

.kaitori-reason {
    background: url(../img/kaitori/bg_01.jpg) no-repeat center center;
    background-size: cover;
}

.kaitori-reason .inner {
}

.kaitori-reason h2 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-family: "source-han-serif-japanese";
    position: relative;
}

.kaitori-reason h2::before {
    content: " ";
    display: inline-block;
    width: 55px;
    height: 24px;
    background: #000;
    background: url(../img/kaitori/icon-about-iseya.png) no-repeat top left;
    background-size: contain;
    position: relative;
    top: -5px;
    margin: 0 13px 0 0;
}

.kaitori-reason h2::after {
    content: " ";
    display: inline-block;
    width: 55px;
    height: 24px;
    background: #000;
    background: url(../img/kaitori/icon-about-iseya.png) no-repeat top left;
    background-size: contain;
    position: relative;
    top: -5px;
    margin: 0 0 0 13px;
    transform: scale(-1, 1);
}

.kaitori-points {
}

.kaitori-points ul {
}

.kaitori-points li {
    margin: 0 0 10px;
}

.kaitori-points img {
    width: 100%;
}

.kaitori-achivement {
    background: #191e3c;
}

.kaitori-achivement .inner {
    max-width: 100%;
}

.kaitori-achivement h2 {
    color: #FFF;
}

.kaitori-achivement h2 span {
}

.kaitori-achivement .slick-achivement {
}

.kaitori-items {
}

.kaitori-items .inner {
    max-width: 1280px;
}

.kaitori-items h2 {
}

.kaitori-items h2 span {
}

.kaitori-items_list {
}

.kaitori-items_list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.kaitori-items_list li {
    border: 2px solid #ddd;
    width: 15.1%;
    text-align: center;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.kaitori-items_list img {
}

.kaitori-items_list h3 {
    font-size: 26px;
    font-family: "source-han-serif-japanese";
    margin: 0 0 8px;
}

.kaitori-items_list p {
}

.kaitori-voices {
}

.kaitori-voices .inner {
}

.kaitori-voices h2 {
}

.kaitori-voices h2 span {
}

.voice-items {
    background: #fbf8f2;
    padding: 20px 20px 50px;
    position: relative;
}

.voice-items ul {
    background: #FFF;
    padding: 60px 50px;
    box-shadow: 0 0 3px #e5e5e5;
}

.voice-item {
    position: relative;
    padding: 0 0 0 140px;
    margin: 0 0 40px;
}

.voice-item:last-child {
    margin: 0;
}

.voice-item__num {
    position: absolute;
    left: 0;
    text-align: center;
    top: -10px;
    color: #c59c6b;
    font-weight: bold;
    font-size: 16px;
    font-family: "source-han-serif-japanese";
    width: 110px;
    padding: 28px 0;
}

.voice-item__num::before {
    content: " ";
    display: block;
    width: 100%;
    height: 100px;
    background: url(../img/kaitori/icon_olive.svg) no-repeat 0 0;
    position: absolute;
    top : 0;
    left: 0;
    margin: auto;
    bottom: 0;
    right: 0;
}

.voice-item__num span {
    display: block;
    font-size: 30px;
    margin: 3px 0 0;
}

.voice-item h3 {
    font-family: "source-han-serif-japanese";
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.4;
}

.voice-item .voice-item__person {
    font-family: "source-han-serif-japanese";
    font-weight: bold;
    margin: 0 0 16px;
}

.voice-item .voice-item__description {
    line-height: 1.6;
}

.archivement-item {
    background: #FFF;
    padding: 0 0 30px;
    margin: 0 14px;
    max-width: 246px;
}

.archivement-item .slide_name {
    font-size: 14px;
    background: #919191;
    color: #FFF;
    text-align: center;
    padding: 0px 0 0px;
}

.archivement-item .slide_name p {
    padding: 13px 0;
}

.archivement-item p {
    padding: 20px 0;
    text-align: center;
}

.archivement-item img {
    padding: 0 20px 10px;
    max-width: 100%;
    width: 100%;
}

.archivement-item a {
    text-align: center;
    display: block;
    color: #000;
    font-size: 13px;
}

.archivement-item a span.kaitori_nedan {
}

.achivement-items .slick-dots {
    bottom: -50px;
}

.achivement-items .slick-dots li button:before {
    color: #FFF;
    opacity: 1.25;
    font-size: 16px;
    content: '';
    border: 1px solid #FFF;
    border-radius: 10px;
    width: 16px;
    height: 16px;
}

.achivement-items .slick-dots li.slick-active button:before {
    background: #FFF;
    opacity: 1;
}

.kaitori-faq {
}

.kaitori-faq .inner {
}

.kaitori-faq h2 {
}

.kaitori-faq h2 span {
}

.faq-items__wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.faq-items {
    width: 48%;
}

.faq-items ul {
}

.faq-item {
    padding: 40px 20px;
    border-bottom: 1px solid #000;
    cursor: pointer;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    /* width: 48%; */
}

.faq-item:first-child {
    border-top: 1px solid #000;
}

.faq-item:hover {
    opacity: 0.6;
}

.faq-item h3 {
    position: relative;
    font-family: "source-han-serif-japanese";
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    padding: 0 30px 0 0;
}

.faq-item h3::before {
    content: " ";
    display: block;
    width: 20px;
    height: 4px;
    background: #000;
    position: absolute;
    top : 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.faq-item h3::after {
    content: " ";
    display: block;
    width: 4px;
    height: 20px;
    background: #000;
    position: absolute;
    top : 0;
    bottom: 0;
    margin: auto;
    right: 8px;
    opacity: 1;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.faq-item.active h3::after {
    opacity: 0;
}

.faq-item p {
    font-size: 14px;
    padding: 0 20px 0 0;
    line-height: 1.8;
    opacity: 0;
    margin: 0;
    max-height: 0px;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.faq-item.active p {
    opacity: 1;
    margin: 40px 0 0px;
    /* display: block; */
    max-height: inherit;
}

.kaitori-shop {
    background: #f1f1f1;
}

.kaitori-shop .inner {
}

.kaitori-shop h2 {
}

.kaitori-shop h2 span {
}

.shop-about {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.shop-about__slick {
    width: 50%;
}

.shop-about__slick .slick-dots {
    bottom: -36px;
}

.shop-about__slick .slick-dots li button:before {
    color: #FFF;
    opacity: 1.25;
    font-size: 16px;
    content: '';
    border: 1px solid #010152;
    border-radius: 10px;
    width: 16px;
    height: 16px;
}

.shop-about__slick .slick-dots li.slick-active button:before {
    background: #010152;
    opacity: 1;
}

.shop-about__slick ul {
}

.shop-about__slick li {
}

.shop-about__slick img {
}

.shop-about__table {
    width: 46%;
}

.shop-about__table table {
    width: 100%;
}

.shop-about__table tbody {
}

.shop-about__table tr {
}

.shop-about__table th , .shop-about__table td {
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    padding: 20px 10px;
    border-bottom: 1px solid #000;
    line-height: 1.8;
}

.shop-about__table td {
}

.shop-about__table td a {
    color: #000;
}

.shop-about__table a.btn-map {
}

section.kaitori-way {
    padding: 0px 3%;
    background: #f1f1f1;
}

.kaitori-way .inner {
}

.kaitori-way h2 {
    font-size: 24px;
    color: #FFF;
    background: #191e3c;
    padding: 12px 20px;
}

.kaitori-way ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.kaitori-way li {
    width: 32%;
    margin: 0 0 40px;
}

.kaitori-way img {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
}

.kaitori-way p {
    line-height: 1.6;
}

.kaitori-way.orange {
}

.kaitori-way.orange .inner {
}

.kaitori-way.orange h2 {
    background: #c39b69;
}

.kaitori-way.orange ul {
}

.kaitori-way.orange li {
}

.kaitori-way.orange img {
}

.kaitori-way.orange p {
}

.kaitori-parking {
    background: #f1f1f1;
}

.kaitori-parking .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #FFF;
    padding: 40px 40px 20px;
}

.kaitori-parking .txts {
    width: 310px;
}

.kaitori-parking .txts .txt {
    margin: 0 0 30px;
}

.kaitori-parking .txts .txt h3 {
    background: #f00;
    color: #FFF;
    padding: 10px 20px;
    font-size: 18px;
    font-family: "source-han-serif-japanese";
    margin: 0 0 16px;
}

.kaitori-parking .txts .txt:nth-child(2n) h3 {
    background: #000;
}

.kaitori-parking .txts .txt ul {
}

.kaitori-parking .txts .txt li {
    border-bottom: 2px solid #ddd;
    padding: 20px 0;
}

.kaitori-parking .txts .txt li span {
    display: inline-block;
    border: 2px solid #000;
    border-radius: 50px;
    background: #ffff00;
    color: #000;
    padding: 6px 10px;
    line-height: 1;
    font-weight: bold;
    margin: 0 13px 0 0;
}

.kaitori-parking .txts .txt:nth-child(2n) li span {
    background: #fefed7;
}

.kaitori-parking .img {
    width: calc(100% - 360px);
}

.kaitori-parking .img img {
}

.kaitori-flow {
    background: #191e3c;
}

.kaitori-flow .inner {
}

.kaitori-flow h2 {
    color: #FFF;
}

.kaitori-flow h2 span {
}

.flow-items {
}

.flow-items ul {
}

.flow-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 0 70px;
    position: relative;
    padding: 0 0 20px;
}

.flow-item::after {
    content: " ";
    display: block;
    width: 100%;
    height: 30px;
    background: #000;
    background: url(../img/kaitori/flow/flow-line-down.png) no-repeat top left;
    background-size: contain;
    position: absolute;
    bottom: -40px;
    margin: 0 auto;
}

.flow-item.last::after {
    display: none;
}

.flow-item .img {
    width: 280px;
    display: flex;
    align-items: center;
}

.flow-item .img img {
}

.flow-item .txt {
    width: calc(100% - 320px);
}

.flow-item .txt h3 {
    color: #FFF;
    font-size: 20px;
    padding: 16px 0 20px 80px;
    line-height: 1.6;
    border-bottom: 1px dashed #ccc;
    margin: 0 0 20px;
    font-family: "source-han-serif-japanese";
    position: relative;
}

.flow-item .txt h3 span.flow-num {
    display: block;
    color: #facd64;
    font-size: 13px;
    text-align: center;
    position: absolute;
    margin: 0 30px 0 0;
    line-height: 1;
    top: 10px;
    left: 0;
}

.flow-item .txt h3 span.flow-num::after {
    content: " ";
    display: block;
    width: 45px;
    height: 2px;
    background: #FFF;
    position: absolute;
    top : 0;
    right: -40px;
    margin: auto;
    transform: rotate(-65deg);
    bottom: 0;
}

.flow-item .txt h3 span.flow-num span {
    display: block;
    text-align: center;
    padding: 0 0;
    font-size: 30px;
}

.flow-item .txt p {
    color: #FFF;
    margin: 0 0 22px;
    line-height: 1.6;
}

.flow-item.last {
    display: block;
}

.flow-item.last .txt {
    width: 100%;
    margin: 0 0 20px;
}

.flow-item.last .txt h3 {
}

.flow-item.last .txt h3 span.flow-num {
}

.flow-item.last .txt h3 span.flow-num span {
}

.flow-item.last .txt p {
}

.flow-attend {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.flow-attend__item {
    width: 48.6%;
    border: 1px solid #FFF;
    padding: 20px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.flow-attend__item-icon {
    display: flex;
    align-items: center;
    width: 80px;
}

.flow-attend__item-icon img {
}

.flow-attend__item-txt {
    width: calc(100% - 100px);
}

.flow-attend__item-txt h4 {
    color: #FFF;
    margin: 0 0 10px;
    position: relative;
    left: -8px;
    font-family: "source-han-serif-japanese";
}

.flow-attend__item-txt p {
    color: #FFF;
    line-height: 1.6;
}

.kaitori-contents section.kaitori-yoyaku {
    padding: 0 3% 40px;
}

.kaitori-yoyaku .inner {
    text-align: center;
}

.kaitori-yoyaku .kaitori-yoyaku__tel {
    color: #000;
    font-size: 34px;
    font-weight: 800;
    position: relative;
    display: block;
    margin: 0 auto 20px;
    text-align: left;
    width: 266px;
}

.kaitori-yoyaku .kaitori-yoyaku__tel::before {
    content: " ";
    display: inline-block;
    width: 39px;
    height: 25px;
    background: #000;
    background: url(../img/kaitori/contact-icon.png) no-repeat top left;
    position: relative;
    top : 0;
    margin: 0 12px 0 0;
    background-size: contain;
    left: 0;
}

.kaitori-yoyaku .kaitori-yoyaku__tel span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 7px 0 0 52px;
    line-height: 1.5;
}

.kaitori-yoyaku__time {
    /* font-family: 'RyoDispPlusN W50 Heavy'; */
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    margin: 0 0 30px;
}

.kaitori-yoyaku__btn {
    background: #27a535;
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    padding: 10px 0 16px;
    width: 100%;
    display: block;
    line-height: 1;
    border-radius: 40px;
    max-width: 250px;
    margin: 0 auto;
    position: relative;
}

.kaitori-yoyaku__btn::before {
    content: " ";
    display: inline-block;
    width: 25px;
    height: 20px;
    background: url(../img/kaitori/email-icon.png) no-repeat top left;
    background-size: contain;
    position: relative;
    top: 4px;
    margin: 0 6px 0 0;
}

.fixed-parts {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.fixed-parts .kaitori-yoyaku__btn {
    border-radius: 0;
    max-width: 100%;
    text-align: center;
}

.fixed-parts .kaitori-yoyaku__btn::before {
}

.top-katiroi {
    margin: 60px 0;
    padding: 0 3%;
    width: 100%;
}

.top-katiroi .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.kaitori-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2カラム */
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    /* 要素間の余白 */
    justify-content: space-between;
    align-items: center;
}

.kaitori-list li {
}

.kaitori-list h4 {
}

.kaitori-list p {
}

.top-kaitori__title {
    text-align: center;
}

.top-kaitori__title h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.top-kaitori__title p {
    font-size: 18px;
}

.top-kaitori__table {
    width: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-right: 1px solid #000;
}

.top-kaitori__table table {
    width: 100%;
}

.top-kaitori__table tbody {
}

.top-kaitori__table tr {
}

.top-kaitori__table th ,.top-kaitori__table td {
    text-align: center;
    font-weight: normal;
    padding: 17px 30px;
    vertical-align: middle;
    border: 1px solid #000;
    border-right: none;
}

.top-kaitori__table th {
    background: #c4c4c4;
}

.top-kaitori__table td {
}

.company-table {
    margin: 0 0 40px;
}

.company-table h3.subttl {
}

.company-table table {
    width: 100%;
}

.company-table tbody {
}

.company-table tr {
}

.company-table th ,.company-table td {
    text-align: left;
    padding: 30px 0 28px;
    position: relative;
    font-weight: normal;
    line-height: 1.4;
}

.company-table tr:first-child th ,.company-table tr:first-child td {
    padding-top: 0;
}

.company-table th::before ,.company-table td::before {
    content: " ";
    display: block;
    width: 86%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom : 0;
    margin: 0 auto;
}

.company-table td::before {
    width: 100%;
}

.company-table th {
    width: 210px;
}

.company-table td {
}

.interview-item {
    margin: 0 0 100px;
    background: #FFF;
    padding: 60px 0px 60px 50px;
    border-radius: 20px;
    filter: drop-shadow(0px 8px 6px #0002);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.interview-item__txt {
    width: 46%;
    position: relative;
    z-index: 5;
    padding: 40px 0px 0 0;
}

.interview-item__txt_lead {
    margin: 0 0 40px;
}

.interview-item__txt_lead h3 {
}

.interview-item__txt_lead h3 span {
    padding: 20px 30px;
    background: linear-gradient(180deg, rgba(25, 21, 84, 1) 21%, rgba(90, 86, 67, 1) 100%);
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    white-space: nowrap;
    display: inline-block;
    display: block;
    width: fit-content;
    line-height: 1.4;
    /* max-width: 540px; */
}

.interview-item__faq {
}

.interview-item__faq h4 {
    color: var(--color-01);
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.4;
}

.interview-item__faq p {
    line-height: 1.4;
    margin: 0 0 40px 20px;
}

.interview-item__imgs {
    width: 50%;
    position: relative;
    left: 0px;
    z-index: 1;
}

.interview-item__imgs ul {
}

.interview-item__imgs li {
    margin: 0 0 30px;
}

.interview-item__imgs img {
    width: 100%;
}

/* footer */
@media screen and (max-width: 1400px) {
    .btn01 {
        height: 65px;
    }

    .top_business .inner {
        max-width: 1200px;
    }

    .inner {
        max-width: 1200px;
    }

    .mv_text {
        left: 50px;
    }

    .footer_nav ul {
        width: 50%;
    }

    .footer_nav ul li a, .footer_logo .address {
        font-size: 16px;
        line-height: 25px;
    }

    .slide-box .slick-next {
        right: -20px;
    }

    .slide-box .slick-prev {
        left: -20px;
    }

    .interview-item__txt_lead h3 span {
        font-size: 24px;
    }
}

@media screen and (max-width: 1250px) {
    .mv {
        background-size: cover;
        background-position: center;
    }
}

@media screen and (max-width: 1200px) {
    .slide-box .slick-next {
        right: -15px;
    }

    .slide-box .slick-prev {
        left: -15px;
    }
}

@media screen and (max-width: 1100px) {
    .top_news .news-wrap {
        /* flex-wrap: wrap; */ /* column-gap: 0; */ /* row-gap: 20px; */
    }

    .top_news .news-wrap::after {
        content: " ";
        display: block;
        width: 31%;
    }

    .top_news .news-wrap li {
        width: 31%;
    }

    .top_about .txt-box {
        max-width: 550px;
    }

    .top_about .img-box {
        max-width: calc(100% - 50px);
    }

    .top_business {
        display: flex;
        align-items: flex-start;
        flex-direction: row-reverse;
        padding-bottom: var(--vertical-window-padding);
    }

    .top_business div.inner {
        position: relative;
        top: unset;
        left: unset;
        transform: none;
        max-width: 45%;
        width: 100%;
    }

    .top_business .img-box {
        width: 55%;
    }

    .top_business .txt-box {
        width: 100%;
        /* padding-top: 0; */
        margin: 0;
    }

    .top_store {
        padding-top: 0;
    }

    .top_store .txt-box {
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 1000px) {
    .top_about .row-img {
        padding-left: var(--window-padding);
        padding-right: var(--window-padding);
    }

    .top_topics .slide-box .item {
        margin: 0 15px;
    }

    .cta-banner .inner {
        max-width: 600px;
    }

    .top-katiroi {
    }

    .top-katiroi .inner {
        flex-direction: column;
        gap: 0;
    }

    .top-kaitori__title {
        margin: 0 0 30px;
    }

    .top-kaitori__title h2 {
        font-size: 24px;
    }

    .top-kaitori__title p {
    }

    .top-kaitori__table {
        width: 100%;
    }

    .top-kaitori__table table {
    }

    .top-kaitori__table tbody {
    }

    .top-kaitori__table tr {
    }

    .top-kaitori__table th, .top-kaitori__table td {
        padding: 14px 0px;
    }

    .top-kaitori__table th {
    }

    .top-kaitori__table td {
    }

    .kaitori-list {
    }

    .kaitori-list li {
    }

    .kaitori-list h4 {
    }

    .kaitori-list p {
    }

    .interview-item__txt_lead h3 span {
        font-size: 20px;
        padding: 14px 10px;
    }
}

@media screen and (max-width: 850px) {
    .interview-item__txt_lead h3 span {
        font-size: 18px;
        letter-spacing: -0.1rem;
    }
}

@media screen and (max-width: 768px) {
    .top_price .inner {
        flex-direction: column;
    }

    .top_price h2, .top_about .txt-box h2, .top_business h2 {
        font-size: 24px;
    }

    .top_news .news-wrap::after {
        display: none;
    }

    .top_news .news-wrap li {
        width: 48%;
    }

    .top_price table {
        max-width: 500px;
        width: 100%;
    }

    .top_about .img-box {
        max-width: 100%;
    }

    .top_about .inner {
        margin-top: 0;
    }

    .top_about .txt-box {
        max-width: 100%;
    }

    .top_about .row-img {
        flex-wrap: wrap;
        column-gap: 0;
        row-gap: 20px;
    }

    .top_about .row-img .item {
        width: calc(100% / 2 - 10px);
    }

    .top_business {
        flex-direction: column;
        padding-top: var(--vertical-window-padding);
    }

    .top_business .img-box {
        width: 90%;
        bottom: 0;
    }

    .top_business div.inner {
        max-width: 100%;
    }

    .top_store .inner {
        flex-direction: column;
    }

    .top_store {
        position: relative;
    }

    .top_store .img-box {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        position: relative;
        z-index: 0;
    }

    .top_store .txt-box {
        width: 100%;
        padding-top: 50px;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cta-banner .online {
        padding-top: 100px;
    }

    .footer_logo .footer_btns a:nth-of-type(1), .footer_logo .footer_btns a:nth-of-type(2) {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer_logo .footer_btns a:nth-of-type(1) img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 576px) {
    .top_news .news-wrap li {
        width: 48%;
    }

    .top_about .txt-box {
        padding-left: 25px;
        padding-right: 25px;
    }

    .top_topics .slide-box .item {
        max-width: 320px;
        width: 100%;
        margin: 0 20px;
    }

    .top_business .img-box {
        width: 100%;
    }

    .cta-banner h2 img:nth-of-type(1) {
        max-width: 225px;
    }

    .cta-banner .inner {
        padding: 60px 25px;
    }

    .footer_logo .logo img {
        max-width: 160px;
    }
}

.address a {
    color: #000;
    text-decoration: none;
}

/*history*/
@media screen and (max-width: 980px) {
}

.slick-next:before {
    display: none;
}

.slick-next:after {
    display: none;
}

.slick-prev:before {
    display: none;
}

.inner.width-long {
    max-width: none;
}

section.sec_kamon {
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
}

span.sinrai {
    color: #606060;
    font-size: 14px;
}

/* kaitori-mv__type2 */
.kaitori-mv__type2 {
    background-repeat: no-repeat;
    padding: 60px 3%;
}

.kaitori-mv__textwrap {
    padding: 40px 3%;
    background-color: rgba(0, 0, 0, 0.4);
    margin: 0 0 0 auto;
    width: 48%;
}

.kaitori-mv__subttl {
    font-size: 16px;
    margin: 0 0 12px;
    color: #FFF;
}

.kaitori-mv__ttl {
    font-size: 46px;
    font-weight: bold;
    margin: 0 0 30px;
    color: #ddbc57;
    /*font-family: source-han-serif-japanese, serif;*/
    line-height: 1.2;
}

.kaitori-mv__text {
    font-size: 16px;
    color: #FFF;
    line-height: 1.7;
}

@media screen and (max-width: 1300px) {
    .kaitori-mv__ttl {
        font-size: 40px;
    }
}

@media screen and (max-width: 1180px) {
    .kaitori-mv__textwrap {
        width: 68%;
    }
}

@media screen and (max-width: 768px) {
    .kaitori-mv__type2 {
        padding: 40px 3%;
        padding: 0;
    }

    .kaitori-mv__textwrap {
        padding: 80px 3%;
        width: 100%;
    }

    .kaitori-mv__subttl {
        font-size: 12px;
    }

    .kaitori-mv__ttl {
        font-size: 28px;
        margin: 0 0 16px;
    }

    .kaitori-mv__text {
        font-size: 14px;
    }
}

.company_organization_url {
    display: block;
    text-decoration: underline;
    color: #000;
}

/* 20250217 added */
.top_carousel {
    padding: 0 0 80px;
}

.top_carousel__slider {
}

.top_carousel__slider li {
    margin: 0 10px 0;
}

.top_carousel__slider img {
    width: 100%;
    max-width: 360px;
}

@media screen and (max-width: 768px) {
    .top_carousel {
        padding: 0 0 50px;
    }
}

#news mark {
    font-style: normal;
    font-weight: normal;
}</pre></body></html>