
a[href^="tel"] {
  text-decoration: none;
  color: inherit; 
}

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

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*ここから*/

body {

    font-family: "Jost", "Noto Sans JP", sans-serif;
    padding: 0;
    margin: 0;
    background: #fff;
    font-size: 3.2vw;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-weight: normal;
}

h2 {
    font-size: 6vw;
    /* margin-bottom: 34px; */
    margin: 0 0 8vw;
    font-weight: normal;
    line-height: 1.2;
}

h2 span {
    font-size: 4vw;
    display: block;
    margin: 0 0 1vw;
}

h2.line::before {
    content: "";
    display: block;
    width: 11vw;
    height: 4vw;
    margin: 8vw 0 3vw;
    background: url('images/title.svg') no-repeat center / contain;
}

h3 {
    font-size: 4.6vw;
    font-weight: normal;
    margin-bottom: 2vw;
}

a img:hover {
    opacity: 0.6;
}

a {
    color: #313131;
}

p {
    line-height: 1.8;
    margin: 1vw 0 6vw;
}

video {
    width: 100%;
}

.button {
    display: inline-block;
    padding: 3vw 4vw;
    font-size: 3vw;
    color: #fff;
    background-color: #313131;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
}

.button-square {
    display: inline-block;
    padding: 3vw 4vw;
    font-size: 3vw;
    color: #fff;
    background-color: #313131;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
}



.button:hover,
.button-square :hover {
    opacity: 0.6;
}

.w750 {
    max-width: 90%;
    margin: 0 auto 0;
}

.w900 {
    max-width: 98%;
    margin: 0 auto;
}

.w1200 {
    max-width: 90%;
    margin: 0 auto;
}

.w1300 {
    max-width: 98%;
    margin: 0 auto;
}

.w1400 {
    max-width: 100%;
    margin: 0 auto;
}


.logo {
    width: 52vw;
    margin: 2vw 4vw 2.4vw;
}





header {
    display: flex;
    /*    align-items: center;*/
    justify-content: space-between;
    padding: 0;
    /*    border-bottom: 1px solid #ccc;*/
    /*    border-top: 1px solid #ccc;*/
    background: #fff;
}


.hide-header {
    top: -11vw !important;  /* -143px → -11vw */
    /* headerの高さに合わせて調整 */
}

main {
    margin-top: 13vw; 
}


.header-icons ul {
    display: flex;
    justify-content: flex-end;
    margin: 31px 35px 30px 0;
}

.header-icons ul li {
    width: 25px;
    margin: 0 0 0 26px;
}

.navigation {
    display: none;
}

.nav-list {
    display: flex;

    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 0 0 46px;
}

.nav-list li a {
    color: #000;
    text-decoration: none;
    font-size: 3.6vw;
}

/*ハンバーガーメニュー*/
.hamburger-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 7vw;
    /*	height: 5.5vw;*/
/*    height: 6vw;*/
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    top: 4.2vw;
    right: 4vw;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    /* 色は調整可能 */
    border-radius: 2px;
    transition: 0.3s;
}

/* メニューが開いた時のアニメーション */
.hamburger-menu.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    height: 100%;
    background: white;
    box-shadow: none;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    padding: 6.67vw 5% 0 5%;
    z-index: 999;
    overflow-y: auto;
    max-height: 100vh;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    margin: 0.67vw 0 3vw;
}

.mobile-nav ul li {
    margin: 0 0 4.08vw;
}

.mobile-nav ul li a {
    margin: 0 0 4.17vw;
    color: #222;
    text-decoration: none;
    font-size: 4vw;
    line-height: 1.5;
}



.mobile-nav ul li ul {
    margin: 0.83vw 0 0 1.67vw;
    /* 10px 0 0 20px → 0.83vw 0 0 1.67vw */
}

/*Google翻訳*/

.translate-icons-wrap {
    display: none;
}

#flags {
    width: 100%;
    margin-top: 0;
}

.goog-te-gadget img {
    vertical-align: middle;
    border: none;
    width: 40px;
    height: 14px;
}

.header-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 7vw;
}

.header-icons ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-icons li {
    display: inline-block;
}

.header-icons .icon-link img {
    width: auto;
    height: 24px;
    display: block;
}

.mobile-nav #flags ul li a {
    margin: 0 0 0;
}

#google_language_translator {
    padding-bottom: 10vw
}



main {
    background-image: url(images/background.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 100% auto;
}

/*メインビジュアル*/


.mv {
    position: relative;
    width: 100%;
    height: calc(100vh - 145px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mv video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.mv_cta_wrap {
    position: absolute;
    z-index: 10;
    text-align: center;
    bottom: 3vw;
}

.mv_cta_items {
    width: 100%;
    text-align: center;
}

.mv_cta_items a {
    margin: 0 0 5vw;
}

/* 追従バナー */
.sticky-bunner {
	position: fixed;
	bottom: 1.538vw;
	right: 8.308vw;
	z-index: 100;
	width: 40vw;
}

.sticky-bunner a {
    display: block;
    width: 100%;
    margin-left: auto;
}

.sticky-bunner2 {
	position: fixed;
	bottom: 1.538vw;
	left: 9.308vw;
	z-index: 100;
	width: 40vw;
}

.sticky-bunner2 a {
    width: 100%;
}

.sticky-bunner,
.sticky-bunner2 {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.sticky-hidden {
    opacity: 0;
    visibility: hidden;
}

.meter-banner-close {
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -6px;
    z-index: 99999;
    padding: 4px 8px;
    border: none;
    background-color: #f8f8f8;
    border-radius: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

/*トップページデコレーション*/

.deco-top-01,
.deco-top-02 {
    position: relative;
}

.deco-top-01 img {
	position: absolute;
	top: 3vw;
	width: 5vw;
}

.deco-top-02 img {
    position: absolute;
    top: 543px;
    right: 0px;
    width: 65px;
}

.deco-top-05,
.deco-top-06,
.deco-top-07 {
    position: relative;
}

.deco-top-05 img {
    position: absolute;
    top: -68vw;
    left: -6vw;
    width: 17vw;
}

.deco-top-06 img {
    position: absolute;
    top: -5vw;
    left: -6vw;
    width: 19vw;
}

.deco-top-07 img {
    position: absolute;
    top: -71vw;
    right: -6vw;
    width: 25vw;
}

.deco-top-03,
.deco-top-04 {
    position: relative;
}

.deco-top-03 img {
    position: absolute;
    top: -14vw;
    right: 0;
    width: 14vw;
}

.deco-top-04 img {
    position: absolute;
    top: 92vw;
    left: 0;
    width: 20vw;
}

/*お知らせ*/

.news-container {
    display: block;
    gap: 20px;
}

.sidebar {
    flex: 0 0 200px;
    margin-right: 0;
    margin: 0 0 5vw;
}

.sidebar button {
    display: inline;
    width: 32%;
    padding: 3vw 0;
    margin-bottom: 3vw;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    text-align: center;
    border-radius: 2vw;
    font-size: 3vw;
    color:#000;
}

.sidebar .active {
    background: #262827;
    color: #fff;
    border: none;
    position: relative;
}

.sidebar .active::after {
    content: '';
    position: absolute;
    top: unset;
    right: 43%;
    transform: translateY(-50%) rotate(0deg);
    width: 0;
    height: 0;
    border-top: 10px solid #262827;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    bottom: -7vw;
}

.news {
    width: 90%;
    margin: 5vw auto 3vw;
    padding-bottom: 6vw
}

.news-list {
    display: none;
    flex: 2;
    /*    border-top: 1px dashed #ccc;*/
    margin-bottom: 0px;
}

.news-list.active {
    display: block;
}

.news-item {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    padding: 26px 0;
    line-height: 1.8;
    flex-wrap: wrap;
}

.news-item:first-child {
    padding: 0 0 4vw;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    flex: 0 0 21vw;
    color: #555;
}

.news-category {
    flex: 0 0 27vw;
    text-align: center;
    padding: 0.2vw 2vw;
    font-size: 2.6vw;
    font-weight: normal;
    margin-right: 0;
}

.news-category.map {
    background: #ff9999;
    color: #fff;
}

.news-category.notice {
    background: #ff9999;
    color: #fff;
}

.news-category.monthly {
    background: #ffcc00;
    color: #fff;
}

.news-category.tv {
    background: #ffcc00;
    color: #fff;
}

.news-category.kaijou {
    background: #ffcc00;
    color: #fff;
}

.news-category.paper {
    background: #ffcc00;
    color: #fff;
}

.news-category.radio {
    background: #ffcc00;
    color: #fff;
}

.news-category.train {
    background: #ffcc00;
    color: #fff;
}

.news-category.newspaper {
    background: #ffcc00;
    color: #fff;
}



.news-title {
    flex: unset;
    width: 100%;
}

.news-title a {
    color: #313131;
    text-decoration: none;
}

.news-title a:hover {
    color: #313131;
    text-decoration: underline;
}


.cta_items {
    width: 100%;
    text-align: center;
}

.cta_items a {
    margin: 0 1vw;
}

.event,
.search_map,
.about,
.showroom,
.movie,
.archive {
    margin-bottom: 10vw;
}



/*近日開催予定*/

.event .event-slider {
    margin: 0 auto 6vw;
}

.swiper {
    overflow: inherit;
}

.swiper-scrollbar {
    position: absolute !important;
    background: #313131;
    height: 5px;
    border-radius: 3px;
    margin: 0px auto 7vw;
    width: 94vw !important;
}

.swiper-scrollbar-drag {
    background: #FFDB01;
    /* スクロールバーのつまみ */
    border-radius: 3px;
}

.event-slider {
    position: relative;
    overflow-x: visible;
    /* 横方向のはみ出しを許可 */
    margin-left: auto;
    /* 左側を親要素に揃える */
    margin-right: -100px;
    /* 右側をはみ出させる */
}

.swiper-wrapper {
    display: flex;
    margin-right: 0;
    /* 右側に余白を設定 */
    transition: transform 0.3s ease-in-out;
    /* アニメーション */
}

.event-slider .swiper-slide {
    flex: 0 0 auto;
    width: 70vw;
    /* スライドの幅を調整 */
    /*            margin-right: 30px;*/
    /* スライド間のスペース */
}

.event-slider .swiper-slide a {
    text-decoration: none;
    color: #313131
}

.event-slider .swiper-slide a:hover {
    opacity: 0.6;
}

.event-slider .swiper-slide h3 {
    font-size: 3.6vw;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: normal;
}

.event-slider .swiper-slide p {
    font-size: 3.2vw;
    color: #B1B1B1;
    line-height: 1.5;
}

.slide-img img {
    width: 100%;
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.event .event-slider .event-slider-container .slide a {
    text-decoration: none;
}

.event .event-slider .event-slider-container .slide a:hover {
    text-decoration: underline;
}

.event .event-slider .event-slider-container .slide h3 {
    font-size: 3.6vw;
    line-height: 1.5;
    margin-bottom: 10px
}

.event .event-slider .event-slider-container .slide p {
    font-size: 3.6vw;
    color: #B1B1B1;
    line-height: 1.5;
}

/* search */
.search_map .search-map-wrapper {
    width: 100vw;
    /* 1200px → 100vw */
    height: 58.5vw;
    /* 702px → 58.5vw */
    margin: 0 auto;
    position: relative;
    background-image: url(././images/event-map.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

.search_map .search-map-wrapper .search-map-title {
    position: absolute;
    top: 8%;
    left: 10%;
    text-align: left;
}

.search_map .search-map-wrapper .search-map-title {
    position: relative;
    text-align: center;
    display: inline-block;
    padding: 1.67vw;
    /* 20px → 1.67vw */
}

.search_map .search-map-wrapper .search-map-title::before,
.search_map .search-map-wrapper .search-map-title::after {
    content: "";
    position: absolute;
    width: 4.17vw;
    /* 50px → 4.17vw */
    height: 4.17vw;
    /* 50px → 4.17vw */
    border: 0.17vw solid black;
    /* 2px → 0.17vw */
}

.search_map .search-map-wrapper .search-map-title::before {
    top: 1vw;
    left: 0;
    border-bottom: none;
    border-right: none;
}

.search_map .search-map-wrapper .search-map-title::after {
    bottom: 1vw;
    right: 0;
    border-top: none;
    border-left: none;
}

.search_map .search-map-wrapper .search-map-title h2 {
    font-size: 3.33vw;
    /* 40px → 3.33vw */
    display: block;
    margin: 0 0 0vw;
    text-align: center;
}

.search_map .search-map-wrapper .search-map-title h2::before {
    content: none;
}

.search_map .search-map-wrapper .search-map-title p {
    font-size: 2vw;
    text-align: center;
    margin: 1vw auto;
    position: relative;
    width: fit-content;
}

.search_map .search-map-wrapper .search-map-title p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.17vw;
    /* 2px → 0.17vw */
    width: 100%;
    height: 0.67vw;
    /* 8px → 0.67vw */
    background-color: #FFD700;
    transform: translateX(-50%);
    z-index: -1;
}



/*
.search_map .search-map-wrapper .search-map-title h3 {
    font-size: 32px;
}

.search_map .search-map-wrapper .search-map-title h4 {
    font-size: 21px;
    font-family: jost;
}
*/



.search_map .search-map-wrapper .search-map-title {
    position: absolute;
}

.search_map .search-map-wrapper .search-map-btn {
    position: absolute;
}

.search_map .search-map-wrapper .search-map-btn.btn-hokkaido {
    top: 36%;
    left: 75%;
}

.search_map .search-map-wrapper .search-map-btn.btn-tohoku {
    top: 55%;
    left: 67%;
}

.search_map .search-map-wrapper .search-map-btn.btn-kanto {
    top: 73%;
    left: 57%;
}

.search_map .search-map-wrapper .search-map-btn.btn-kinki {
    top: 43%;
    left: 32%;
}

.search_map .search-map-wrapper .search-map-btn.btn-shikoku {
    top: 54%;
    left: 19%;
}

.search_map .search-map-wrapper .search-map-btn.btn-kyusyu {
    top: 66%;
    left: 9%;
}

.search_map .search-map-wrapper .search-map-btn a {
    position: relative;
    font-size: 2.8vw;
    width: 21.58vw;
    height: 5.4vw;
    border-radius: 3.92vw;
    line-height: 2;
    border: 0.33vw solid #313131222;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #000000;
    background-color: #ffffff;
    border: 0.33vw solid;
}

.search_map .search-map-wrapper .search-map-btn.btn-hokkaido a {
    border-color: #1f8bcb;
}

.search_map .search-map-wrapper .search-map-btn.btn-tohoku a {
    border-color: #6ad5e5;
}

.search_map .search-map-wrapper .search-map-btn.btn-kanto a {
    border-color: #35b66d;
}

.search_map .search-map-wrapper .search-map-btn.btn-kinki a {
    border-color: #b3e230;
}

.search_map .search-map-wrapper .search-map-btn.btn-shikoku a {
    border-color: #fc9d13;
}

.search_map .search-map-wrapper .search-map-btn.btn-kyusyu a {
    border-color: #ef6e6c;
}

.search_map .search-map-wrapper .search-map-btn.btn-hokkaido a::before,
.search_map .search-map-wrapper .search-map-btn.btn-tohoku a::before,
.search_map .search-map-wrapper .search-map-btn.btn-kanto a::before {
    position: absolute;
    content: "";
    width: 8.75vw;
    /* 105px → 8.75vw */
    height: 0.25vw;
    /* 3px → 0.25vw */
    transform: translate(-100%, -50%) rotate(45deg);
    background-color: #000000;
    top: -22%;
    left: 10%;
    z-index: -1;
}

.search_map .search-map-wrapper .search-map-btn.btn-kinki a::before,
.search_map .search-map-wrapper .search-map-btn.btn-shikoku a::before {
    position: absolute;
    content: "";
    width: 8.75vw;
    /* 105px → 8.75vw */
    height: 0.25vw;
    /* 3px → 0.25vw */
    transform: translate(100%, -50%) rotate(54deg);
    background-color: #000000;
    top: 153%;
    left: 5%;
    z-index: -1;
}

.search_map .search-map-wrapper .search-map-btn.btn-kyusyu a::before {
    position: absolute;
    content: "";
    width: 8.75vw;
    /* 105px → 8.75vw */
    height: 0.25vw;
    /* 3px → 0.25vw */
    transform: translate(100%, -51%) rotate(25deg);
    background-color: #000000;
    top: 146%;
    left: 5%;
    z-index: -1;
}

.search_map .search-map-wrapper .search-map-btn.btn-hokkaido a::before {
    background-color: #1f8bcb;
}

.search_map .search-map-wrapper .search-map-btn.btn-tohoku a::before {
    background-color: #6ad5e5;
}

.search_map .search-map-wrapper .search-map-btn.btn-kanto a::before {
    background-color: #35b66d;
}

.search_map .search-map-wrapper .search-map-btn.btn-kinki a::before {
    background-color: #b3e230;
}

.search_map .search-map-wrapper .search-map-btn.btn-shikoku a::before {
    background-color: #fc9d13;
}

.search_map .search-map-wrapper .search-map-btn.btn-kyusyu a::before {
    background-color: #ef6e6c;
}

.search_map .search-map-wrapper .search-map-btn-oversea {
    position: absolute;
    top: 70%;
    left: 82%;
}

.search_map .search-map-wrapper .search-map-btn-oversea a {
    position: relative;
    font-size: 3vw;
    /* 26px → 2.17vw */
    width: 12.17vw;
    /* 146px → 12.17vw */
    height: 12.17vw;
    /* 146px → 12.17vw */
    border-radius: 12.17vw;
    /* 146px → 12.17vw */
    line-height: 1em;
    border: 0.42vw solid #313131222;
    /* 5px → 0.42vw */
    text-align: center;
    text-decoration: none;
    color: #000000;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.25vw solid #222;
    /* 3px → 0.25vw */
}


/* about */
.about .about-wrapper .about-content {
    /* display: flex; */
    position: relative;
    height: 80vw;
}

.about .about-wrapper .about-content .about-content-title {
    position: absolute;
    transform: translate(0, -50%);
    top: 42vw;
    left: 6.33vw;
    width: 86vw;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 5.83vw 1vw;
    box-shadow: 0.42vw 0.42vw 1.25vw rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(0.83vw);
}

.about .about-wrapper .about-content .about-content-title h2 {
    font-size: 7.08vw;
    display: block;
    margin: 0 0 0vw;
}

.about .about-wrapper .about-content .about-content-title h2 span {
    font-size: 4.17vw;
    /* 26px → 2.17vw */
}

.about .about-wrapper .about-content .about-content-title h2::before {
    content: none;
}

.about .about-wrapper .about-content .about-content-title p {
    font-size: 3.1vw;
    margin-bottom: 2.50vw;
    /* text-align: left; */
    padding: 0 1vw;
}

.about .about-wrapper .about-content .about-content-img {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-top: 12vw;
}


/* show room */
.showroom {
    width: 90%;
    margin: 0 auto;
}

.showroom .showroom-wrapper .showroom-content {
    display: block;
    justify-content: center;
    align-items: center;
    gap: 5.5vw;
    /* 66px → 5.5vw */
    flex-direction: row-reverse;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-title {
    width: 100%;
    text-align: left;
    margin: 0 auto 6vw;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-title p {
    font-size: 3.2vw;
    margin-bottom: 3.5vw;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-img {
    width: 100%;
    height: 45.42vw;
    position: relative;
    margin-bottom: 7vw;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-img img:first-child {
    width: 57.92vw;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-img img:last-child {
    width: 39.67vw;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}


/* movie */

.movie {
    background-image: url(images/background-gray.svg);
    /* background-repeat: no-repeat; */
    background-position: right top;
    background-size: cover;
    padding: 2vw 0 0;
}

.movie .movie-wrapper ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.movie .movie-wrapper ul li {
    width: 100%;
    text-align: left;
    margin-bottom: 2vw;
}

/* YouTube動画をレスポンシブ対応 */
.movie .movie-wrapper ul li .movie-content {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 のアスペクト比を維持 */
    margin-bottom: 3vw;
}

.movie .movie-wrapper ul li .movie-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.movie .movie-wrapper ul li h3 {
    font-size: 4vw;
    line-height: 1.6;
    margin-bottom: 0vw;
}

.movie .movie-wrapper ul li p {
    font-size: 3.2vw;
    line-height: 1.7;
}


/* archive */
.swiper-scrollbar-archive-wrapper {
    position: relative;
    margin-bottom: 40px
}

.swiper-scrollbar-archive {
    position: absolute !important;
    background: #313131;
    height: 4px;
    border-radius: 3px;
    margin: 0px auto 70px;
    width: 92vw !important;
}


.archive-slider-wrapper {
    margin-bottom: 60px
}


.archive-slider {
    position: relative;
    overflow-x: visible;
    margin-left: auto;
    margin-bottom: 30px;
}

.archive-slider .swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.archive-slider .swiper-slide {
    flex: 0 0 auto;
    width: 300px;
    padding-right: 0px;
}

.archive-slider .slide-img img {
    width: 100%;
    height: 209px;
    object-fit: cover;
    margin-bottom: 10px;
}

.archive-slider .swiper-button-next,
.archive-slider .swiper-button-prev {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
}

.archive-slider .swiper-button-next {
    right: 0;
}

.archive-slider .swiper-button-prev {
    left: 0;
}

/* contact */
.contact {
    background-color: #EFEFEF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 10vw 0 5vw;
}

/*about ミネラルマルシェとは*/

#about {
    margin-bottom: 90px;
}

#about .about_ {
    margin-top: 5vw;
}

#about .about_ .w1200 h3 {
    font-size: 4vw;
    line-height: 1.6;
    margin-bottom: 0vw;
}

#about .about_ .w1200 .about-head-title {
    margin-top: 100px;
    margin-bottom: 60px;
}

#about .sub-mv {
    height: 662px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

#about .sub-mv::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #FFDB01;
    transform: translate(-100%, 0px);
    top: 0;
    left: 21%;
}

#about .sub-mv::after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    background-image: url(images/sub-mv.jpg);
    background-size: cover;
    transform: translate(0%, 0px);
    top: 0;
    left: 2%;
}

#about .sub-mv .w1200 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

#about .sub-mv .w1200 .sub-mv-txt {
    background-color: #262626bd;
    color: #fff;
    position: relative;
    z-index: 3;
    padding: 6vw 5vw 2vw;
}

#about .sub-mv .w1200 .sub-mv-txt h1 {
    margin: 0 0 3vw;
    padding: 0;
    font-size: 3vw;
    border: none;
}

#about .sub-mv .w1200 .sub-mv-txt h1 span {
    font-size: 3vw;
}

#about .sub-mv .w1200 h2 {
    font-size: 7vw;
    line-height: 1.3;
    margin: 0;
    margin-bottom: 3vw;
}

#about .sub-mv .w1200 p {
    line-height: 2;
}

.contact h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact h2::before {
    content: none;
}

.contact .contact-subtitle {
    font-size: 3.6vw;
    margin-bottom: 6vw;
    color: #fff;
}

.contact .contact-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5vw 0 10vw;
    margin-bottom: 7vw;
    backdrop-filter: blur(10px);
}

.contact .contact-wrapper h3 {
    font-size: 4.3vw;
    margin-bottom: 15px;
    line-height: 2;
}

.contact .contact-wrapper p {
    font-size: 3.6vw;
    margin-bottom: 30px;
}

.contact .contact-wrapper p.contact-tell {
    font-size: 6vw;
    margin-bottom: 6vw;
    line-height: 1.6;
}

.contact .contact-wrapper p.contact-tell span {
    font-size: 0.7em;
}

/* banner */
.banner {
    margin: 8vw auto 3vw;
}

.banner ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner ul li {
    width: 100%;
    margin: 0 auto 5vw;
}

/* footer */

.breadcrum-wrapper {
    margin-bottom: 10px;
}

.breadcrum-wrapper a {
    color: #333;
}

footer {
    padding: 10vw 0;
}

footer .footer-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6vw;
}

footer .footer-flex .footer-info {
    text-align: left;
}

footer .footer-flex .footer-info .footer-info-logo {
    width: 72%;
    margin: 0 auto 5vw;
}

footer .footer-flex .footer-info .footer-info-text {
    font-size: 3.6vw;
    line-height: 2;
    text-align: center;
}

footer .footer-flex .footer-info .footer-info-sns ul {
    display: flex;
    justify-content: center;
    gap: 27px;
}

footer .footer-flex .footer-info .footer-info-sns ul li {
    width: 23px;
}

footer .footer-flex .footer-navigation {
    margin-top: 15px;
}

footer .footer-flex .footer-navigation ul {
    display: none;
    justify-content: right;
    gap: 46px;
    margin-bottom: 25px;
}

footer .footer-flex .footer-navigation ul li {
    font-size: 3.6vw;
}

footer .footer-flex .footer-navigation ul li a {
    color: #000;
    text-decoration: none;
}

footer .footer-copy {
    font-size: 3.2vw;
    text-align: center;
}

/* 下層ページ ヘッダー */
.sub-mv {
    width: 100%;
    height: auto;
    /* background-color: #DEDEDE; */
    padding: 2vw 0 0vw;
    /* margin: 0px auto 80px; */
    /* border-left: 1px solid #000; */
}

.sub-mv .w1200 {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100%;
}

.sub-mv .w1200 h1 {
    text-align: left;
    font-size: 6vw;
    /* margin: 0; */
    /* margin: 0 0 40px; */
    line-height: 1.6;
    border-left: 5px solid #000;
    padding: 2px 5vw 0;
    margin: 5vw 0 0;
}

.sub-mv .w1200 span {
    text-align: left;
    font-size: 21px;
    display: block;
}

.sub-mv-photo {
    width: 100%;
    height: 40px
}



/*下層ミネラルマルシェとは*/
/*ミネラルマルシェはどんなところ？*/
#about .message {
    display: flex;
    margin-bottom: 10vw;
    width: 100%;
    flex-direction: column-reverse;
}

#about .message div:first-child {
    flex: 1;
    max-width: 100%;
    text-align: center;
}

#about .message div:last-child {
    flex: 2;
    margin-left: 0;
}

#about .message div:last-child h2 {
    font-size: 6vw;
    line-height: 1.5;
    margin: 1em 0;
}

#about .message div:last-child h2 span {
    background: linear-gradient(transparent 65%, #FFDB01 65%, #FFDB01 90%, transparent 90%);
    display: inline;
    font-size: 1em;
}

#about .message div:first-child img {
    width: 82vw;
    margin-right: 4vw;
    margin-top: -5vw;
}

#about .message div:first-child p {
    margin-top: 1em;
    line-height: 1.5;
}

#about .about_ .w1200 .event,
#about .about_ .w1200 .event h3 {
    text-align: center;
}

#about h2.wing-marker {
    background: linear-gradient(transparent 65%, #FFDB01 65%, #FFDB01 90%, transparent 90%);
    font-size: 6vw;
    position: relative;
    display: inline-block;
}

#about h2.wing-marker::before,
#about h2.wing-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 8vw;
    height: 2px;
    background-color: black;
}

#about h2.wing-marker::before {
    left: -11.5vw;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#about h2.wing-marker::after {
    right: -11.5vw;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#about .about_ .w1200 .event p {
    margin-bottom: 2em;
    text-align: left;
}

#about .about_ .w1200 .event img {
    max-width: 656px;
    margin-bottom: 70px;
}

#about .about_ .w1200 .event .event-list {
    margin-top: 13vw;
}

#about .about_ .w1200 .event .event-list li {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    text-align: left;
    flex-direction: column-reverse;
}

#about .about_ .w1200 .event .event-list li img,
#about .about_ .w1200 .event .event-list li div {
    margin: 0 1%;
}

#about .about_ .w1200 .event .event-list li img {
    max-width: 630px;
}

#about .about_ .w1200 .event .event-list li:nth-child(even) {
    /*    flex-direction: row-reverse;*/
    flex-direction: column-reverse;
}

#about .about_ .w1200 .event .event-list li .event-list-num {
    font-size: 6.6vw;
    background: linear-gradient(transparent 95%, #707070 95%);
    display: inline;
    margin: 0;
    font-weight: Medium;
}

#about .about_ .w1200 .event .event-list li h3 {
    font-size: 5.6vw;
    font-weight: normal;
    margin: 3vw auto 7vw;
}

#about .about_ .w1200 .event .event-list li h3,
#about .about_ .w1200 .event .event-list li p {
    text-align-last: left;
}

/*ミネラルマルシェとはスライダー*/
.about-slider {
    position: relative;
    overflow-x: visible;
    margin-left: auto;
    margin-bottom: 13vw;
    overflow: hidden;
}

.about-slider .swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.about-slider .swiper-slide {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 0px;
}

.about-slider .slide-img img {
    width: 100%;
    height: auto;
}

.about-slider .swiper-button-next,
.about-slider .swiper-button-prev {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
}

.about-slider .swiper-button-next {
    right: 0;
}

.about-slider .swiper-button-prev {
    left: 0;
}

.swiper .swiper-wrapper {
    transition-timing-function: linear;
}


/* 全国各地で開催中！ */
#about .about_ .w1200 .about-info {
    margin-bottom: 10vw;
}

#about .about_ .w1200 .about-info,
#about .about_ .w1200 .about-info h3 {
    text-align: center;

}

#about .about_ .w1200 .about-info h3 {
    position: relative;
    display: inline-block;
    font-size: 6vw;
}

#about .about_ .w1200 .about-info h3::before,
#about .about_ .w1200 .about-info h3::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 8vw;
    height: 2px;
    background-color: black;
}

#about .about_ .w1200 .about-info h3::before {
    left: -10.5vw;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#about .about_ .w1200 .about-info h3::after {
    right: -10.5vw;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#about .about_ .w1200 .about-info p.marker {
    background: linear-gradient(transparent 65%, #FFDB01 65%, #FFDB01 90%, transparent 90%);
    display: block;
    width: fit-content;
    margin: 0 auto 8vw;
}

#about .about_ .w1200 .about-info .info-sns ul {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 2em;
}

#about .about_ .w1200 .about-info .info-sns ul li {
    width: 23px;
}

#about .movie {
    margin-bottom: 8vw;
}


/*鉱物友の会とは*/
#about .about-news-letter {
    /*    display: flex;*/
    display: block;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

#about .about-news-letter div:last-child {
    margin-left: 2%;
    width: 100%;
    max-width: 588px;
}

#about .about-news-letter img {
    max-width: 588px;
    margin-bottom: 7vw;
}

#about .about-news-letter .cta_items {
    text-align-last: left;
    margin-left: 0 !important;
    margin-top: 26px;
}

#about .about-news-letter .cta_items a {
    text-align-last: left;
    margin-left: 0;
}



/* 下層 過去の会場の様子 */
#archive {
    margin-bottom: 90px;
}

#archive .archive_ {
    /*    margin-top: 80px;*/
    margin-top: 7vw;
}

#archive .archive_ .w1200 h3 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 30px;
}

#archive .archive_ .w1200 .archive-gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4vw;
    margin-bottom: 10vw;
}

#archive .archive_ .w1200 .archive-gallery ul li {
    width: 47%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#archive .archive_ .w1200 .archive-gallery ul li img {
    width: 100%;
    height: 30vw;
    object-fit: cover;
    margin-bottom: 1vw;
}

#archive .archive_ .w1200 .archive-gallery ul li .post-title {
    font-size: 3.2vw;
    line-height: 1.5;
    color: #333;
    margin: 1vw 0 3vw;
}


/* 下層 月刊ミネラルマルシェ */

.manthly-items {
    display: block;
    justify-content: space-between;
}

.manthly-items .item:nth-child(1) {
    width: 100%;
    margin-bottom: 5vw
}

.manthly-items .item:nth-child(2) {
    width: 100%;
}

.manthly-items .button {
    margin-bottom: 5vw;
}




/* 下層 会報誌 */
#news_letter {
    margin-bottom: 90px;
}


/* 下層 会報誌 */
#news_letter {
    margin-bottom: 90px;
}


/* 下層 会報誌 */
#news_letter {
    margin-bottom: 90px;
}

/*
#news_letter .news_letter_ {
    margin-top: 80px;
}
*/


.news_letter_ {
    margin-top: 10vw;
}

#news_letter .news_letter_ .w1200 h3 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 30px;
}

#news_letter .news_letter_ .w1200 .ishitomo-gallery {
    margin-bottom: 7vw;
}

#news_letter .news_letter_ .w1200 .ishitomo-gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
}

#news_letter .news_letter_ .w1200 .ishitomo-gallery ul li {
    width: calc((1200px - 84px) / 3);
}

#news_letter .news_letter_ .w1200 .ishitomo-gallery ul li a {
    margin-bottom: 10px;
    display: block;
}

#news_letter .news_letter_ .w1200 .ishitomo-gallery ul li p {
    text-align: center;
    font-size: 3.6vw;
}

#news_letter .news_letter_ .w1200 .newsletter-list {
    margin: 7vw 0;
}

#news_letter .news_letter_ .w1200 .newsletter-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#news_letter .news_letter_ .w1200 .newsletter-list ul li {
    width: 100%;
    margin: 0 0;
    border-top: 1px solid #000;
    box-sizing: border-box;
    height: auto;
    padding: 2vw 0px 0;
}


#news_letter .news_letter_ .w1200 .newsletter-list ul li:nth-child(1n) {
    margin-left: 0
}

#news_letter .news_letter_ .w1200 .newsletter-list ul li:nth-child(3n) {
    margin-right: 0
}

/*
#news_letter .news_letter_ .w1200 .newsletter-list ul li:nth-child(n + 4) {
    border-top: none;
}
*/

#news_letter .news_letter_ .w1200 .newsletter-list ul li:nth-child(3n),
#news_letter .news_letter_ .w1200 .newsletter-list ul li:nth-child(3n - 1) {
    border-left: none;
}

#news_letter .news_letter_ .w1200 .newsletter-list ul li a.newsletter-list-link {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    padding: 5vw 0 8vw;
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 3.6vw;
}

#news_letter .news_letter_ .w1200 .newsletter-list ul li a.newsletter-list-link::before {
    position: absolute;
    content: "";
    background-image: url(images/gallery-arrow.png);
    width: 5vw;
    height: 4vw;
    background-size: contain;
    transform: translate(-50%, -50%);
    top: 43%;
    left: 98%;
}

#news_letter .news_letter_ .w1200 .newsletter-list ul li .edit-link {
    margin-top: 20px;
}

#news_letter table {}

#news_letter table tr {
    padding: 0.5em
}

#news_letter table th {
    padding: 0.5em;
    width: 33.3%;
}

#news_letter table td {
    padding: 0.5em;
    line-height: 1.4;
    font-size: 3vw;
}



/*下層 ショールーム店舗一覧*/

.showroom-list-section {
    margin-top:5vw;
}

#showroom_archive .showroom-gallery ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 6vw;
}

#showroom_archive .showroom-gallery ul li {
    width: 100%;
}

#showroom_archive .showroom-gallery ul li:nth-child(2n) {
    width: 100%;
}

#showroom_archive .showroom-gallery ul li a h2.title {
    font-size: 18px;
    margin-bottom: 10px;
}

#showroom_archive .showroom-gallery ul li .showroom-meta ul {
    gap: 0;
}

#showroom_archive .showroom-gallery ul li .showroom-meta li {
    width: 100%;
}

#showroom_archive .showroom-gallery ul li h2 {
    margin-bottom: 18px;
    font-size: 5vw;
    text-align: left;
}

.circle-button-wrap {
    position: relative;
}

.circle-button-pos {
	position: absolute;
	top: 12vw;
	right: 0;
}

.circle-button {
    display: inline-block;
    width: 9.51vw;
    height: 9.51vw;
    background-color: #1c1c1c;
    border-radius: 50%;
    position: relative;
    text-decoration: none;
}

.circle-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 44%;
    width: 2.04vw;
    height: 2.04vw;
    border-top: 0.26vw solid #fff;
    border-right: 0.26vw solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

#showroom_archive .showroom-gallery ul li  .showroom-meta {
    width: 78vw;
}


/*下層 ショールームお知らせ一覧*/

#showroom {
    margin-bottom: 0vw;
}

#showroom .showroom_ .w1200 h3 {
    font-size: 2.46vw;
    margin-bottom: 2.31vw;
}

#showroom .showroom_ .w1200 .showroom-gallery {
	margin: 6.85vw 0;
}

#showroom .showroom_ .w1200 .showroom-gallery ul {
	gap: 4vw;
}

#showroom .showroom_ .w1200 .showroom-gallery ul li {
    width: 100%;
    /* 1200px - 84px → 92.31vw - 6.46vw */
}

#showroom .showroom_ .w1200 .showroom-gallery ul li a {
    margin-bottom: 0.77vw;
    /* 10px */
    display: block;
}

#showroom .showroom_ .w1200 .showroom-gallery ul li p {
    font-size: 3.6vw;
    /* 16px */
}

#showroom .showroom_ .w1200 .showroom-gallery ul li p.showroom-event-shop {
	padding-bottom: 0px;
	margin: 5vw 0 0;
	font-size: 3vw;
}

#showroom .showroom_ .w1200 .showroom-gallery ul li p.showroom-event-title {
    padding-bottom: 0;
    margin-bottom: 0;
}

#showroom .showroom_ .w1200 .showroom-gallery ul li p.update-date {
    color: #B1B1B1;
    padding: 0;
    margin-top: 0;
}


/*下層 ショールームお知らせ詳ページ*/

.showroom-event-page {
	margin: 0 auto 11.92vw;
}

.showroom-event-page .two-column {
    display:block;
}

.showroom-event-page .showroom-main-column {
	width: 100%;
	padding-bottom: 2vw;
}

.showroom-event-page .showroom-sidebar {
    width: 100%;
}

.showroom-event-page h3 {
    font-size: 3.6vw;
    margin-bottom: 2vw;
}

.showroom-sidebar .showroom-info img {
    width: 50%;
}

/*下層 showroomシングルページ*/

.single-showroom_items {
    display: block;
    margin-bottom: 0;
}

.single-showroom_items .item {
	width: 100%;
	margin-bottom: 5vw;
}

.single-showroom_items .item h2 {
	font-size: 5vw;
    margin: 0 auto 5vw;
}

.showroom-meta ul li {
	margin-bottom: 3vw;
}


ul.showroom-sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

ul.showroom-sns li {
	width: calc(100% / 5);
	box-sizing: border-box;
	max-width: 28px;
	height: auto;
	margin-right: 5%;
	margin-bottom: 0;
}




/*下層　お知らせ一覧*/

.news-page h2 {
    margin-bottom: 0;
}

.news-page-items {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 6vw 0;
}

.news-page-items .news-page-item {
    width: 100%;
}

.news-page-items .news-page-item:nth-child(2n) {
    width: 63%;
    text-align: center;
    display: block:;
    margin: 0 auto;
}

.news-page-items .news-page-item a {
    margin-bottom: 20px;
    width: 70%;
}


/*ページネーション*/

.pagination {
    display: flex;
    justify-content: center;
    gap: 5vw;
    margin: 0;
}

.pagination .page-numbers {
    display: block;
    /* ブロック要素にすることで幅と高さを強制適用 */
    width: 40px !important;
    /* 正方形の幅 */
    height: 40px;
    /* 正方形の高さ */
    line-height: 40px;
    /* テキストを縦中央に配置 */
    text-align: center;
    /* テキストを横中央に配置 */
    text-decoration: none;
    /* 下線を消す */
    color: black;
    /* テキストの色 */
    border: 1px solid #ccc;
    /* ボーダー */
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pagination .page-numbers:hover {
    background-color: #f0f0f0;
    /* ホバー時の背景色 */
    border-color: #000;
    /* ホバー時のボーダー色 */
}

.pagination .current {
    background-color: #ddd;
    /* 現在のページの背景色 */
    border-color: #000;
    /* 現在のページのボーダー色 */
    cursor: default;
}


/*下層 マルシェ一覧*/
#marche {
    margin: 0 auto 90px;
}

/*
#marche .marche_ {
    margin-top: 60px;
}
*/

#marche .marche_ .w1200 h3 {
    text-align: left;
    font-size: 6vw;
    margin-bottom: 5vw;
    font-weight: normal;
}

#marche .marche_ .w1200 .marche-head-title {
    margin-top: 100px;
    margin-bottom: 60px;
}

#marche .marche_ .w1200 .marche-gallery {
    margin-bottom: 30px;
}

#marche .marche_ .w1200 .marche-gallery ul {
    display: block;
    flex-wrap: wrap;
    gap: 5vw;
}

#marche .marche_ .w1200 .marche-gallery ul li {
    width: 100%;
}

#marche .marche_ .w1200 .marche-gallery ul li a {
    text-decoration: none;
    color: #000;
    margin-bottom: 0;
    display: block;
}

#marche .marche_ .w1200 .marche-gallery ul li a:hover {
    opacity: 0.6
}

#marche .marche_ .w1200 .marche-gallery ul li p {
    text-align: left;
    font-size: 3.6vw;
    line-height: 1.5;
    margin-bottom: 7vw;
}

#marche .marche_ .w1200 .marche-gallery ul li p.marche-title {
    margin: 3vw 0 2vw;
}

#marche .marche_ .w1200 .marche-gallery ul li p.marche-date {
    color: #B1B1B1;
}

ul.marche-gallery li img {
    width: 100%;
    height: 31vw;
    object-fit: cover;
}

ul.marche-gallery li img:hover {
    opacity: 0.6;
    cursor: pointer;
}

#marche .marche_ .w1200 .marche-list {
    margin: 8vw 0 0;
}

#marche .marche_ .w1200 .marche-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#marche .marche_ .w1200 .marche-list ul li {
    width: 100%;
    margin: 0;
    border-top: 1px solid #000;
    box-sizing: border-box;
    height: auto;
    padding: 5vw 0 0;
}

#marche .marche_ .w1200 .marche-list ul li:nth-child(1n) {
    margin-left: 0
}

#marche .marche_ .w1200 .marche-list ul li:nth-child(3n) {
    margin-right: 0
}

/*
#marche .marche_ .w1200 .marche-list ul li:nth-child(n + 4) {
    border-top: none;
}
*/

#marche .marche_ .w1200 .marche-list ul li:nth-child(3n),
#marche .marche_ .w1200 .marche-list ul li:nth-child(3n - 1) {
    border-left: none;
}

#marche .marche_ .w1200 .marche-list ul li a:hover {
    opacity: 0.6
}


#marche .marche_ .w1200 .marche-list ul li a.marche-list-link {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    position: relative;
    /* color: #000; */
    /* padding: 42px 30px; */
    text-decoration: none;
    flex-direction: column;
    font-size: 3.6vw;
}

#marche .marche_ .w1200 .marche-list ul li a.marche-list-link p.marche-list-title {
    margin-bottom: 5px;
    color: #000;
    width: 82vw;
}

#marche .marche_ .w1200 .marche-list ul li a.marche-list-link p.marche-list-date {
    margin: 0;
    padding: 0 0 5vw;
}

#marche .marche_ .w1200 .marche-list ul li a.marche-list-link::before {
    position: absolute;
    content: "";
    background-image: url(images/gallery-arrow.png);
    width: 5vw;
    height: 4vw;
    background-size: contain;
    transform: translate(-50%, -50%);
    top: 43%;
    left: 98%;
}

#marche .marche_ .w1200 .marche_cta_items {
    margin: 0 auto;
    text-align: center;
}

/* 下層 マルシェ詳細 */
#marche_info {
    margin-bottom: 90px;
}

#marche_info h2 {
    line-height: 1.5;
    margin: 5vw 0;
}

#marche_info .marche_info_ {
    margin-top: 0px;
}

#marche_info .marche_info_ .w1200 h3 {
    text-align: left;
    font-size: 6vw;
    margin-bottom: 6vw;
    font-weight: normal;
}

#marche_info .marche_info_ .w1200 h4 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: normal
}

#marche_info .marche_info_ .w1200 .marche_info-head-title {
    margin-top: 100px;
    margin-bottom: 60px;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex {
    display: block;
    justify-content: space-between;
    margin-bottom: 12vw;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-img {
    width: 100%;
    margin-bottom: 5vw;
    margin-right: 0;;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-img .marche-info-detail-img-end {
    position: relative;
    width: 100%;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-img .marche-info-detail-img-end::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-img .marche-info-detail-img-end p {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 3.6vw;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-img .marche-info-detail-img-end img {
    display: block;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-txt {
    width: 100%;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-txt p {
    font-size: 3.6vw;
    line-height: 2em;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-txt p a {
    text-decoration: underline;
    color: unset;
}

#marche_info .marche_info_ .marche-info-date {
    background-color: #EFEFEF;
    padding: 3vw 0 9vw;
    margin-bottom: 12vw;
}

#marche_info .marche_info_ .marche-info-date .w1200 ul {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 30px;
}

#marche_info .marche_info_ .marche-info-date .w1200 ul li {
    background-color: #fff;
    width: 100%;
    padding: 4vw 0;
    text-align: center;
}

#marche_info .marche_info_ .marche-info-date .w1200 ul li .marche-info-date-day {
    font-size: 6vw;
    margin-bottom: 0;
}

#marche_info .marche_info_ .marche-info-date .w1200 ul li .marche-info-date-time {
    font-size: 5vw;
    margin: 0;
}

#marche_info .marche_info_ .w1200 .marche-info-media {
    margin-bottom: 12vw;
}

#marche_info .marche_info_ .w1200 .marche-info-media .marche-info-media-txt {
    text-align: left;
    font-size: 3.6vw;
    line-height: 2em;
}

#marche_info .marche_info_ .w1200 .marche-info-overview {
    margin-bottom: 8vw;
}

#marche_info .marche_info_ .w1200 .marche-info-overview table {
    width: 100%;
    border-spacing: 0px 10px;
    margin-top: -10px;
    border-collapse: separate;
}

/* デフォルトは横並び */
#marche_info .marche_info_ .w1200 .marche-info-overview table tr {
    display: flex;
    flex-wrap: wrap;
    /* 画面サイズに応じて折り返し */
    margin-bottom: 10px;
}

/* th と td を縦並びに */
#marche_info .marche_info_ .w1200 .marche-info-overview table tr th,
#marche_info .marche_info_ .w1200 .marche-info-overview table tr td {
    width: 100%;
    display: block;
    padding: 2vw 0;
    font-size: 3.6vw;
    line-height: 1.5em;
    box-sizing: border-box;
}

/* th のデザイン */
#marche_info .marche_info_ .w1200 .marche-info-overview table tr th {
    background-color: #ECECEC;
    margin-bottom: 1vw;
    font-weight: normal;
}

/* スマホ用（768px以下）のスタイル */
@media (max-width: 768px) {
    #marche_info .marche_info_ .w1200 .marche-info-overview table tr {
        flex-direction: column;
    }
}

#marche_info .marche_info_ .marche-info-slide {
    overflow-x: auto;
    margin: 0 0 8vw auto;
}

#marche_info .marche_info_ .marche-info-slide .marche-info-slider {
    overflow-x: auto;
    margin: 0 0 8vw auto;
}

#marche_info .marche_info_ .marche-info-slide .marche-info-slider .marche-info-slider-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    width: 1606px;
    margin-bottom: 60px;
}

#marche_info .marche_info_ .marche-info-slide .marche-info-slider .marche-info-slider-container .slide {
    width: 380px;
}

#marche_info .marche_info_ .marche-info-access-flex {
    display: block;
    justify-content: space-between;
    margin-bottom: 14vw;
}

#marche_info .marche_info_ .marche-info-access-flex .marche-info-access-txt {
    line-height: 1.5;
}

#marche_info .marche_info_ .marche-info-access-flex .marche-info-access-map {
    width: 100%;
}

.map-container {
    width: 100%;
    /* 親要素に合わせて幅を調整 */
    max-width: 100%;
    /* 必要に応じて最大幅を設定 */
    height: 80vw;
    /* 固定の高さを指定 */
    margin: 0 auto;
    /* 中央揃え */
}

.map-container iframe {
    width: 100%;
    /* 親要素に幅を合わせる */
    height: 100%;
    /* 親要素に高さを合わせる */
    border: 0;
    /* 枠線を削除 */
}




#marche_info .marche_info_ .marche-info-aroud-link {
    margin-bottom: 60px;
}

#marche_info .marche_info_ .marche-info-aroud-link ul {
    display: flex;
    justify-content: left;
    gap: 2%;
    flex-wrap: wrap;
}

#marche_info .marche_info_ .marche-info-aroud-link ul li {
    width: 48%;
    margin-bottom: 2vw;
}

#marche_info .marche_info_ .marche-info-aroud-link ul li a {
    text-decoration: none;
    color: unset;
}

#marche_info .marche_info_ .marche-info-aroud-link ul li a img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 33vw;
}

#marche_info .marche_info_ .marche-info-aroud-link ul li a p {
    margin-top: 20px;
}

#marche_info .marche_info_ .marche-info-exhibitors ul {
    display: flex;
    justify-content: left;
    gap: 1vw;
    flex-wrap: wrap;
    row-gap: 1vw;
    margin-bottom: 70px;
}

#marche_info .marche_info_ .marche-info-exhibitors:last-child ul {
    margin-bottom: 8vw;
}

#marche_info .marche_info_ .marche-info-exhibitors ul li {
    width: 100%;
}

#marche_info .marche_info_ .marche-info-exhibitors ul li a {
    text-decoration: none;
    color: unset;

}

#marche_info .marche_info_ .marche-info-exhibitors ul li a p {
    position: relative;
    margin-left: 1.5em;
    margin-bottom: 1vw;

}

#marche_info .marche_info_ .marche-info-exhibitors ul li a p::before {
    content: "";
    height: 1px;
    width: 1em;
    background-color: #707070;
    display: block;
    position: absolute;
    transform: translate(0%, -50%);
    top: 50%;
    left: -1.5em;
}



.marche-slider {
    position: relative;
    overflow-x: visible;
    margin-left: auto;
    padding-bottom: 0px;
}

.marche-slider .swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.marche-slider .swiper-slide {
    flex: 0 0 auto;
    width: 65vw;
}

.marche-slider .slide-img img {
    width: 100%;
    height: 209px;
    object-fit: cover;
    margin-bottom: 10px;
}

.marche-slider .slide-img img:hover {
    cursor: pointer;
    opacity: 0.6;
}

.marche-slider .swiper-button-next,
.marche-slider .swiper-button-prev {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
}

.marche-slider .swiper-button-next {
    right: 0;
}

.marche-slider .swiper-button-prev {
    left: 0;
}



/*下層 固定ページ*/
.page {
    margin: 6vw auto 16vw;
}

/*下層 フォーム*/
.gform_heading {
    margin-bottom: 7vw;
}


/*フォーム*/
.gform-theme--foundation:where(:not(.gform-editor--compact)) .left_label .gform-field-label:where(:not([class*="gform-field-label--type-"]):not(.gfield_header_item):not(.ginput_quantity_label)),
.gform-theme--foundation:where(:not(.gform-editor--compact)) .right_label .gform-field-label:where(:not([class*="gform-field-label--type-"]):not(.gfield_header_item):not(.ginput_quantity_label)) {
    inline-size: unset !important;
}

.gform-theme--foundation .gform_fields {
    row-gap: 9vw !important;
}

/*マルシェ店舗リスト*/

#marche .marche_shop .marche-shop-info {
    display: block;
}

#marche .marche_shop .w1200 .marche-gallery {
    margin-bottom: 50px;
}

#marche .marche_shop .w1200 .marche-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#marche .marche_shop .w1200 .marche-gallery li {
    width: calc((100% - 20px) / 2);
}

#marche .marche_shop .w1200 .marche-gallery li a {
    margin-bottom: 40px;
    display: block;
}

#marche .marche_shop .w1200 .marche-gallery li p {
    text-align: left;
    font-size: 3.6vw;
    line-height: 1.5;
}

#marche .marche_shop .w1200 .marche-gallery li p.marche-title {
    margin-bottom: 10px;
}

#marche .marche_shop .w1200 .marche-gallery li p.marche-date {
    color: #B1B1B1;
}

#marche .marche_shop .w1200 .marche-list {
    margin-bottom: 4vw;
}

#marche .marche_shop .w1200 .marche-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

#marche .marche_shop .w1200 .marche-list ul li {
    width: calc(100% / 5);
    box-sizing: border-box;
    max-width: 28px;
    height: auto;
    margin-right: 2%;
}

.marche-head-title {
    padding-top: 7vw;
}

.kaisha {
    width: 100%;
    border-spacing: 0.7vw;
    border-collapse: separate;
}

.kaisha th {
    display: block;
    width: 100%;
    background-color: #ECECEC;
    padding: 3%;
    text-align: left;
    background-color: #ECECEC;
    width: 94%;
    text-align: left;
}

.kaisha td {
    display: block;
    width: 100%;
    padding: 1em 0;
}

.kaisha tr {
    display: block;
    margin-bottom: 1em;
    /* 行の間隔を開ける */
}

.kaisha ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    /* アイコンの間隔 */
}

.kaisha ul li {
    display: inline-block;
}



.marche-logo {
    flex: 1;
    max-width: 63%;
    margin-right: auto;
    margin: 0 auto 7vw;
    margin-left: auto;
}

.marche-list-area {
    flex: 2;
}

.kaisha ul li {
    width: calc(100% / 5);
    box-sizing: border-box;
    max-width: 28px;
    height: auto;
    margin-right: 2%;
}


/* 下層 会社概要 */
#company {
    margin: 0 auto 90px;
}

#company .company_ .w1200 h3 {
    text-align: left;
    font-size: 6vw;
    margin-bottom: 6vw;
    font-weight: normal;
}

#company .company_ .w1200 .company-head-title {
    margin-top: 100px;
    margin-bottom: 60px;
}

#company .company_ .w1200 > div {
    margin-bottom: 10vw;
}

/*企業理念*/
#company .corp-philosophy {
    display: block;
    justify-content: space-between;
    align-items: end;
}

#company .corp-philosophy div {
    width: 100%;
}

#company .corp-philosophy div:last-child {
    max-width: 100%;
    margin-left: 0;
}

.company-slider {
    margin-bottom: 8vw !important;
}


/*アクセスマップ*/
#company .acs-map {
    display: block;
    justify-content: space-between;
}

#company .acs-map div {
    width: 100%;
}

/*代表挨拶*/
#company .message {
    display: block;
    justify-content: space-between;
}

#company .message div.daihyou {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

#company .message div:first-child p {
    margin-top: 1em;
    line-height: 1.5;
}

/*企業情報・沿革*/
.news-page-items {
    display: flex;
    justify-content: space-between;
}

.company-list-area .company-item {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    padding: 26px 0;
}

.corp-info .company-list-area .company-list .company-item:last-child {
    align-items: flex-start;
}

.corp-info .company-list-area .company-list .company-item:last-child .company-title {
    line-height: 2;
}

.company-list {
    width: 100%;
    border-top: 1px dashed #ccc;
}

.company-list-area .company-item a {
    margin-bottom: 20px;
    width: 70%;
}

.company-title {
    flex: 1;
    line-height: 1.6
}

.company-date {
    flex: 0 0 24vw;
    color: #555;
}

/*gravity forms*/

.gform-body input[type="submit"],
.gform_next_button {
    margin: 11vw 0 0 !important;
    display: inline-block !important;
    padding: 3vw 12vw !important;
    font-size: 3.6vw !important;
    color: #fff !important;
    background-color: #313131 !important;
    border: none;
    border-radius: 30px !important;
    text-decoration: none !important;
    text-align: center !important;
    letter-spacing: 1px !important;
}

.gform_previous_button {
    margin: 11vw 0 0 !important;
    display: inline-block !important;
    padding: 3vw 12vw !important;
    font-size: 3.6vw !important;
    color: #000 !important;
    background-color: #fff !important;
    border: #313131 solid 1px;
    border-radius: 30px !important;
    text-decoration: none !important;
    text-align: center !important;
    letter-spacing: 1px !important;
}

.gform_next_button:hover {
    opacity: 0.6 !important;
}

.gform-theme--framework .gf_progressbar .percentbar_blue {
    background-color: #FFDB01;
}

.gform-theme--foundation #field_submit,
.gform-theme--foundation .gform_footer,
.gform-theme--foundation .gform_page_footer {
    justify-content: center;
}

/*確認画面*/
.gform-body th,
.gform-body td {
    /* padding: 10px; */
    height: 40px;
}

/*
.gform-body td {
	padding: 13px;
}
*/


.gform-theme--foundation:where(:not(.gform_editor)) .left_label .gfield_html_formatted,
.gform-theme--foundation:where(:not(.gform_editor)) .right_label .gfield_html_formatted {
    margin-inline-start: inherit !important;
}
