/*
Theme Name: Marche
Author: SONIQUE
Description: WordPress theme
Version: 1.0
*/


.pc_block {
    display: block;
}

.sp_block {
    display: none;
}

@media only screen and (max-width: 760px) {
    .pc_block {
        display: none;
    }

    .sp_block {
        display: block;
    }
}


body {
    line-height: 1;
    font-size: 16px;
}

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;
    /*    font-family: Arial, sans-serif;*/
    padding: 0;
    margin: 0;
    background: #fff;
}

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

h1 {
    font-weight: normal;
}

h2 {
    font-size: 32px;
    /* margin-bottom: 34px; */
    margin: 0 0 34px;
    font-weight: normal;
    line-height: 1.6;
}

h2 span {
    font-size: 21px;
    display: block;
    margin: 0 0 0px;
}

h2.line::before {
    content: "";
    display: block;
    width: 50px;
    height: 37px;
    margin-bottom: 20px;
    background: url('images/title.svg') no-repeat center / contain;
}

h3 {
    font-size: 20px;
    font-weight: normal;
}

a img:hover {
    opacity: 0.6;
}

a {
    color: #313131;
}

a:hover {
    text-decoration: none;
}

p {
    line-height: 1.8;
    margin-bottom: 30px;
}

video {
    width: 100%;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    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: 20px 34px;
    font-size: 16px;
    color: #fff;
    background-color: #313131;
    border: none;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 50px;
}

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

.w750 {
    max-width: 750px;
    margin: 0 auto 0;
}

.w900 {
    max-width: 900px;
    margin: 0 auto;
}

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

.w1300 {
    max-width: 1300px;
    margin: 0 auto;
}

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


.logo {
    width: 298px;
    margin: 46px 0 43px 42px;
}


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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* 他の要素の上に表示させたい場合 */
    transition: top 0.3s ease;
}

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

.mobile-nav,
.mobile-nav-wrapper-fixed {
  transition: top 0.3s ease;
}

main {
    margin-top:143px
}

.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 {
    flex-grow: 1;
    margin: 20px 35px 23px 0;
}

.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: 16px;
}

.nav-list li a:hover {
    opacity: 0.6;
}



/*ハンバーガーメニュー*/
.hamburger-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 23px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    top: 37px;
    right: 33px;
    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-wrapper-fixed {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.mobile-nav-wrapper {
    position: relative;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 460px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    padding: 20px 0 0 60px;
    z-index: 999;
    overflow-y: auto;
    max-height: 100vh;
}

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

.mobile-nav ul {
    margin: 40px 0 10px;
}

.mobile-nav ul li {
    margin: 2px 0 20px;
}

.mobile-nav ul li a {
    margin: 0 0 50px;
    color: #222;
    text-decoration: none;
}

.mobile-nav ul li ul {
    margin: 10px 0 0 20px;
}


.mobile-nav .header-icons ul li {
    margin: 0 10px 0;
}



/*Google翻訳*/

.translate-icons-wrap {
    display: flex;
    justify-content: space-between;
    margin: 20px 113px 0 auto;
    width: 438px;
}

.translate-icons {
    display: flex;
    width: 211px;
    height: 57px;
}

#flags {
    width: 165px;
    margin-top: 9px;
}

.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;
}

.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;
}



body {
    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;
    /* 動画の上にCTAを表示 */
    text-align: center;
    bottom: 40px;
}

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

.mv_cta_items a {
    margin: 0 10px;
}

/* 追従バナー */
.sticky-bunner {
    position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 100;
	width: 200px;
}

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

.sticky-bunner2 {
	position: fixed;
	bottom: 20px;
	right: 247px;
	z-index: 100;
	width: 200px;
}

.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: 0px;
    width: 48px;
}

.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: -489px;
    left: -72px;
    width: 178px;
}

.deco-top-06 img {
    position: absolute;
    top: -60px;
    left: -72px;
    width: 229px;
}

.deco-top-07 img {
    position: absolute;
    top: -27px;
    right: -57px;
    width: 147px;
}

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

.deco-top-03 img {
    position: absolute;
    top: -63px;
    right: 0;
    width: 100px;
}

.deco-top-04 img {
    position: absolute;
    top: 445px;
    left: 0px;
    width: 117px;
}

/*お知らせ*/

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

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

.sidebar button {
    display: block;
    width: 100%;
    padding: 16px 17px;
    margin-bottom: 15px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    text-align: center;
    border-radius: 9px;
}

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

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

.news {
    width: 1200px;
    margin: 80px auto 60px;
}

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

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

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

.news-item:first-child {
    padding: 0 0 26px;
}

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

.news-date {
    flex: 0 0 100px;
    color: #555;
}

.news-category {
    flex: 0 0 140px;
    text-align: center;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 23px;
}

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

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

.news-category.media {
    background: #ffbf00;
    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: 1;
}

.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 10px;
}

.event,
.search_map,
.about,
.showroom,
.movie,
.archive,
.showroom-info {
    margin-bottom: 60px;
}



/*近日開催予定*/

.event .event-slider {
    margin: 0 auto 30px;
}

.swiper {
    overflow: inherit;
}

.swiper-scrollbar-wrapper {
    position: relative;
    height: 5px;
    padding-bottom: 60px;
}


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

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

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

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

.event-slider .swiper-slide {
    flex: 0 0 auto;
    width: 320px;
    /* スライドの幅を調整 */
    /*            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: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: normal;
}

.event-slider .swiper-slide p {
    font-size: 16px;
    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: 16px;
    line-height: 1.5;
    margin-bottom: 10px
}

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

/* search */
.search_map .search-map-wrapper {
    width: 1200px;
    height: 702px;
    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: 13%;
    left: 10%;
    text-align: left;
}

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

.search_map .search-map-wrapper .search-map-title::before,
.search_map .search-map-wrapper .search-map-title::after {
    content: "";
    position: absolute;
    width: 50px;
    /* 装飾のサイズ調整 */
    height: 50px;
    border: 2px solid black;
}

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

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



.search_map .search-map-wrapper .search-map-title h2 {
    font-size: 40px;
    display: block;
    margin: 0 0 0px;
    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: 20px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: fit-content;
}

.search_map .search-map-wrapper .search-map-title p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    /* 文字の下に配置 */
    width: 100%;
    height: 8px;
    /* 黄色のバーの高さ */
    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: 60%;
}

.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: 17px;
    width: 187px;
    height: 47px;
    border-radius: 47px;
    line-height: 3em;
    border: 4px solid #313131222;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #000000;
    background-color: #ffffff;
    border: 4px 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: 105px;
    height: 3px;
    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: 105px;
    height: 3px;
    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: 105px;
    height: 3px;
    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: 80%;
}

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

/* about */
.about .about-wrapper .about-content {
    /* display: flex; */
    position: relative;

}

.about .about-wrapper .about-content .about-content-title {
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    left: 100px;
    width: 493px;
    background-color: rgba(255, 255, 255, 0.8);
    /* 白の半透明 */
    text-align: center;
    padding: 70px 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    /* ドロップシャドウ */
    backdrop-filter: blur(10px);
    /* 背景ぼかし（対応ブラウザのみ） */
}


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

.about .about-wrapper .about-content .about-content-title h2 span {
    font-size: 26px;
}

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



.about .about-wrapper .about-content .about-content-title p {
    font-size: 16px;
    margin-bottom: 30px;

}

.about .about-wrapper .about-content .about-content-img {
    width: 983px;
    margin-left: auto;
    margin-right: 0;
}

/* show room */
.showroom .showroom-wrapper .showroom-content {
    display: flex;
    /* position: relative; */
    justify-content: center;
    align-items: center;
    gap: 66px;
    flex-direction: row-reverse;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-title {
    width: 550px;
    text-align: left;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-title p {
    font-size: 16px;
    margin-bottom: 30px;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-img {
    width: 724px;
    height: 509px;
    position: relative;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-img img:first-child {
    width: 647px;
    height: 443px;
    position: absolute;
    top: 0;
    left: 0;
}

.showroom .showroom-wrapper .showroom-content .showroom-content-img img:last-child {
    width: 368px;
    height: 239px;
    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: 60px 0 20px;
}



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

.movie .movie-wrapper ul li {
    width: 567px;
    text-align: left;
    margin-bottom: 50px;
}

.movie .movie-wrapper ul li .movie-content {
    margin-bottom: 25px;
    width: 100%;
}

.movie .movie-wrapper ul li h3 {
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.movie .movie-wrapper ul li p {
    font-size: 16px;
    line-height: 1.6;
}

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

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


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


.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-image: url('images/contact-back.jpg');
    /* 画像を追加 */
    background-repeat: no-repeat;
    /* 繰り返しなし */
    background-position: center;
    /* 中央配置 */
    background-size: cover;
    /* 横幅or縦幅の最大サイズに合わせて調整 */
    text-align: center;
    padding: 70px 0;
}

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

#about {
    margin-bottom:90px;
}

#about .about_ {
    margin-top: 80px;
}

#about .about_ .w1200 h3 {
    text-align: left;
    font-size: 21px;
    margin-bottom: 14px;
}

#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: 25%;
}

#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: #262626;
    color: #fff;
    position: relative;
    z-index: 3;
    padding: 40px 25px 20px;
}

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

#about .sub-mv .w1200 h2 {
    font-size: 42px;
    line-height: 1.3;
    margin: 10px 0;
}

#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: 21px;
    margin-bottom: 55px;
    color: #fff;
}

.contact .contact-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 50px 0;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    /* 背景ぼかし（対応ブラウザのみ） */
}

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

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

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

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

/* banner */
.banner {
    margin: 70px auto;
}

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

.banner ul li {
	width: 293px;
}

/* footer */

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

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

footer {

    background-color: #EFEFEF;
    padding: 60px 0 60px;
}

footer .footer-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

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

footer .footer-flex .footer-info .footer-info-logo {
    width: 259px;
    margin-bottom: 10px;
}

footer .footer-flex .footer-info .footer-info-text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 10px;
}

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

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: flex;
    justify-content: right;
    gap: 46px;
    margin-bottom: 25px;
}

footer .footer-flex .footer-navigation ul li {
    font-size: 16px;
}

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

footer .footer-copy {
    font-size: 16px;
    text-align: center;
}

/* 下層ページ ヘッダー */
.sub-mv {
    width: 100%;
    height: 180px;
    /*	 background-color: #DEDEDE; */
    padding: 0px;
    /*	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: 32px;
    /* margin: 0; */
    /* margin: 0 0 40px; */
    line-height: 1.6;
    border-left: 5px solid #000;
    padding: 2px 28px 0;
}

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

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



/*下層ミネラルマルシェとは*/
/*ミネラルマルシェはどんなところ？*/
#about .message {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    width: 100%;
}

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

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

#about .message div:last-child h2 {
    font-size: 42px;
    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: 489px
}

#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: 38px;
    position: relative;
    display: inline-block;
}

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

}

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

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

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

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

#about .about_ .w1200 .event .event-list {
    margin-top: 75px;
}

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

#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;
}

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

#about .about_ .w1200 .event .event-list li h3 {
    font-size: 32px;
    font-weight: normal;
}

#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: 80px;
    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: 60px;
}

#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: 32px;
}

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

}

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

#about .about_ .w1200 .about-info h3::after {
    right: -1.5em;
    -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 50px;
}

#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: 60px;
}


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

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

#about .about-news-letter img {
    max-width: 588px;
}

#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: 10px;
}

#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: 42px;
}

#archive .archive_ .w1200 .archive-gallery ul li {
    width: calc((1200px - 84px) / 3);
    /* 3列デザイン */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#archive .archive_ .w1200 .archive-gallery ul li img {
    width: 100%;
    /* 横幅いっぱい */
    height: 250px;
    /* 固定の高さ */
    object-fit: cover;
    /* カットして画像を中央に表示 */
    margin-bottom: 10px;
    /* 画像とテキスト間のスペース */
}

#archive .archive_ .w1200 .archive-gallery ul li .post-title {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}


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

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

.manthly-items .item:nth-child(1) {
    width: 386px;
}

.manthly-items .item:nth-child(2) {
    width: 766px;
}

.manthly-items .button {
    margin: 0 0 20px;
}


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

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

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

#news_letter .news_letter_ .w1200 .ishitomo-gallery {
    margin-bottom: 50px;
}

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

#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;
    text-decoration: none;;
}

#news_letter .news_letter_ .w1200 .ishitomo-gallery ul li a:hover {
opacity: 0.7;
}

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

#news_letter .news_letter_ .w1200 .newsletter-list {
    margin-bottom: 60px;
}

#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: calc((1200px - (40px * 2)) / 3);
    margin: 0 40px;
    border-top: 1px solid #000;
    box-sizing: border-box;
    height: auto;
    padding: 10px 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: 18px 0 30px;
    position: relative;
    color: #000;
    text-decoration: none;
}

#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: 24px;
    height: 20px;
    background-size: contain;
    transform: translate(-50%, -50%);
    top: 50%;
    right: 0%;
}

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

#news_letter table {
    width: 100%;
}

#news_letter table tr {
    padding: 1em
}

#news_letter table th {
    padding: 1em;
    background-color: #EFEFEF;
}

#news_letter table td {
    padding: 1em
}


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

#showroom_archive .showroom-gallery ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: space-between; */
    width: 100%;
    gap: 48px;
}

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

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



#showroom_archive .showroom-gallery ul li a {
    text-decoration: none;
    /*    text-align: center;*/
    color: #333;
}

#showroom_archive .showroom-gallery ul li a:hover {
    opacity: 0.7;
}

#showroom_archive .showroom-gallery ul li a.button {
    color: #fff;
}

#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;
}

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

.circle-button-pos {
    position: absolute;
    top: 156px;
    right: 0;
}

.circle-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #1c1c1c;
    /* 黒背景 */
    border-radius: 50%;
    /* 円形 */
    position: relative;
    text-decoration: none;
}

.circle-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 46%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    /* →の形を再現 */
}

#showroom_archive .showroom-gallery ul li a.map-btn {
    background: #000;
    color: #fff;
    padding: 2px 5px;
    margin-left: 5px;
    text-decoration: none;
}

a.map-btn {
    background: #000;
    color: #fff !important;
    padding: 2px 5px;
    margin-left: 5px;
    text-decoration: none;
}

#showroom_archive .showroom-gallery ul li a.map-btn:hover {
    text-decoration: none;
    opacity: 0.6;
}

a.map-btn:hover {
    text-decoration: none !important;
    opacity: 0.6;
}





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

#showroom {
    margin-bottom: 0;
    padding: 0 0 40px;
}

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

#showroom .showroom_ .w1200 .showroom-gallery {
    padding-bottom: 50px;
}

#showroom .showroom_ .w1200 .showroom-gallery ul {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
}

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

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

#showroom .showroom_ .w1200 .showroom-gallery ul li a:hover {
    text-decoration: underline;
}



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

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

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

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


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

.showroom-event-page {
    margin: 0 auto 90px;
}

.showroom-event-page .two-column {
    display: flex;
    justify-content: space-between;
}

.showroom-event-page .showroom-main-column {
    width: 72%;
    margin-bottom: 20px
}

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

.showroom-event-page h3 {
    font-size: 16px;
}


.showroom-sidebar {
    line-height: 1.8;
}

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

.showroom-sidebar a:hover {
    text-decoration: underline;
}

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

#showroom .showroom_ .w1200 .showroom-list {
    margin-bottom: 60px;
}

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

#showroom .showroom_ .w1200 .showroom-list ul li {
    width: calc((1200px - (40px * 2)) / 3);
    margin: 0 40px;
    border-top: 1px solid #000;
    box-sizing: border-box;
    height: auto;
    padding: 10px 0px 0;
}

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

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

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

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

#showroom .showroom_ .w1200 .showroom-list ul li a.showroom-list-link {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    padding: 18px 0 30px;
    position: relative;
    color: #000;
    text-decoration: none;
}

#showroom .showroom_ .w1200 .showroom-list ul li a.showroom-list-link::before {
    position: absolute;
    content: "";
    background-image: url(././images/gallery-arrow.png);
    width: 24px;
    height: 20px;
    background-size: contain;
    transform: translate(-50%, -50%);
    top: 50%;
    right: 0%;
}

#showroom .showroom_ .w1200 .showroom-list ul li .edit-link {
    margin-top: 20px;
}

#showroom table {
    width: 100%;
}

#showroom table tr {
    padding: 1em
}

#showroom table th {
    padding: 1em;
    background-color: #EFEFEF;
}

#showroom table td {
    padding: 1em
}

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

.single-showroom_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.single-showroom_items .item {
    width: 48%;
}

.single-showroom_items .item h2 {
    margin: 0 auto 11px;
}

.showroom-meta ul {
    margin-bottom: 20px;
}

.showroom-meta ul li {
    margin-bottom: 15px;
    line-height: 1.5;
}

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

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


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

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

.news-page-items {
    display: flex;
    justify-content: space-between;
}

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

.news-page-items .news-page-item:nth-child(2n) {
    width: 18%;
    text-align: left;
    display: block:
}

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


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

.pagination {
    display: flex;
    justify-content: center;
    /* 中央揃え */
    gap: 10px;
    /* ボタン間隔 */
    margin: 20px 0 60px;
}

.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: 32px;
    margin-bottom: 30px;
    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: flex;
    flex-wrap: wrap;
    gap: 42px;
}

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

#marche .marche_ .w1200 .marche-gallery ul li a {
    text-decoration: none;
    color: #000;
    margin-bottom: 40px;
    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: 16px;
    line-height: 1.5;
}

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

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

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

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

#marche .marche_ .w1200 .marche-list {
    margin-bottom: 60px;
}

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

#marche .marche_ .w1200 .marche-list ul li {
    width: calc((1200px - (40px * 2)) / 3);
    margin: 0 40px;
    border-top: 1px solid #000;
    box-sizing: border-box;
    height: auto;
    padding: 20px 0px 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: 16px;
}

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

#marche .marche_ .w1200 .marche-list ul li a.marche-list-link p.marche-list-date {
    color: #B1B1B1;
    margin: 0;
    padding: 0 0 34px;
}

#marche .marche_ .w1200 .marche-list ul li a.marche-list-link::before {
    position: absolute;
    content: "";
    background-image: url(images/gallery-arrow.png);
    width: 24px;
    height: 20px;
    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
}

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

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

#marche_info .marche_info_ .w1200 h4 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
    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: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-img {
    width: 386px;
    margin-right: 37px;
}

#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: 16px;
}

#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: 766px;
}

#marche_info .marche_info_ .w1200 .marche-info-detail-flex .marche-info-detail-txt p {
    font-size: 16px;
    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_ .w1200 .marche-info-detail-flex .marche-info-detail-txt p a:hover {
    text-decoration: none;
}




#marche_info .marche_info_ .marche-info-date {
    background-color: #EFEFEF;
    padding: 60px 0;
    margin-bottom: 110px;
}

#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: 380px;
    padding: 30px 0;
    text-align: center;
}

#marche_info .marche_info_ .marche-info-date .w1200 ul li .marche-info-date-day {
    font-size: 28px;
    margin-bottom: 10px;
}

#marche_info .marche_info_ .marche-info-date .w1200 ul li .marche-info-date-time {
    font-size:20px;
}

#marche_info .marche_info_ .w1200 .marche-info-media {
    margin-bottom: 70px;
}

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

#marche_info .marche_info_ .w1200 .marche-info-overview {
    margin-bottom: 80px;
}

#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 {
    margin-bottom: 10px;
}

#marche_info .marche_info_ .w1200 .marche-info-overview table tr :last-child {
    margin-bottom: 0px;
}

#marche_info .marche_info_ .w1200 .marche-info-overview table tr th {
    width: 204px;
    background-color: #ECECEC;
    padding: 14px 12px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

#marche_info .marche_info_ .w1200 .marche-info-overview table tr td {
    padding: 14px 12px;
}

#marche_info .marche_info_ .w1200 .marche-info-overview table tr td,
#marche_info .marche_info_ .w1200 .marche-info-overview table tr th {
    font-size: 16px;
    line-height: 1.5em;
}

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

#marche_info .marche_info_ .marche-info-slide .marche-info-slider {
    overflow-x: auto;
    margin: 0 0 100px 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: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

#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: 788px;
}

.map-container {
    width: 800px;
    height: 450px;
    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: 30px;
}

#marche_info .marche_info_ .marche-info-aroud-link ul li {
    width: 380px;
}

#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: 64px; */
height: auto;
  width: auto;
  max-width: 100%;

}

#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: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 70px;
}

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

#marche_info .marche_info_ .marche-info-exhibitors ul li {
    width: 380px;
}

#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: 0;
}

#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-layout ul {
    display: flex;
    justify-content: left;
    gap: 30px;
}

.marche-layout ul li {
    width: 380px;
}









.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: 18vw;
}

.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-bottom: 60px;
}

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


/*フォーム*/
.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_confirmation_message {
    line-height: 1.6
}

.gfield_label.gform-field-label.gfield_label_before_complex {
	margin-bottom: 10px;
}

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

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

#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) / 3);
}

#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: 16px;
    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: 90px;
}

#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%;
}

.kaisha {
    width: 100%;
    border-spacing: 10px;
    border-collapse: separate;
}

.kaisha th,
.kaisha td {
    padding: 1em;
    /*
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
*/
    line-height: 2;
}

.kaisha th {
    background-color: #ECECEC;
    width: 10em;
    text-align: left;
}

.marche-logo {
    flex: 1;
    max-width: 322px;
    margin-right: 3%;
}

.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: 32px;
    margin-bottom: 30px;
    font-weight: normal
}

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

#company .company_ .w1200 > div {
    margin-bottom: 90px;
}

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

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

#company .corp-philosophy div:last-child {
    max-width: 567px;
    margin-left: 3%;
}

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




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

#company .message div:first-child {
    width: 100%;
    max-width: 294px;
    margin-right: 5%;
    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;
    margin-top: 30px;
}

.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;
}

.company-date {
    flex: 0 0 200px;
    color: #555;
}


/*gravity forms*/




.gform-body input[type="submit"],
.gform_next_button {
    margin: 0px 0 30px !important;
    display: inline-block !important;
    padding: 15px 30px !important;
    font-size: 16px !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: 0px 0 30px !important;
    display: inline-block !important;
    padding: 15px 30px !important;
    font-size: 16px !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;
}


@media only screen and (max-width: 1400px) {
.nav-list li {
	margin: 0 0 0 2.54vw;
}
}

