@charset "UTF-8";

/* フォントのインポート */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Playwrite+IT+Trad:wght@100..400&display=swap');

/* ローカル構築時のみ */
@font-face {
  font-family: 'KeiFont';
  src: url('/wp-content/themes/lm-child/fonts/keifont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*
Theme Name: lm-child
Version: 0.1.0
Template: lm
*/
/* 
PC
@media print, screen and (min-width: 1024px) {
}
タブレット
@media print, screen and (max-width: 1023px) {
}
SP
@media print, screen and (max-width: 768px) {
} 
*/
:root {
    /*------▼基本設定▼------*/
    --color-background: #000000;
    --color-font: #FFF;
    --color-primary: #F9B60B;
    --color-primary-shade: #242424;
    --color-primary-tint: #F46D11;
    --color-secondary: #F73737;
    --color-table-border: #D6D6D6;
    --body-font-size: clamp(14px, 1.042vw, 20px);
    --body-font-family: "Noto Sans", sans-serif;
    --inner-width: 80%;
    --inner-max-width-px: 11000px;
    /*------▼フッター設定▼------*/
    --footer-background: #000;
    --footer-color-font: #FFF;
    --footer-color-primary: #FFF;
    /*------▼フォント設定▼------*/
    --font-family01: "Noto Sans", sans-serif;
    --font-family02: "Noto Sans JP", sans-serif;
    --font-family03: 'KeiFont', sans-serif;
    --font-family04: "Playwrite IT Trad", cursive;
    --font-size10: 10px;
    --font-size12: 12px;
    --font-size14: 14px;
    --font-size15: 15px;
    --font-size16: 16px;
    --font-size17: 17px;
    --font-size18: 18px;
    --font-size20: 20px;
    --font-size22: 22px;
    --font-size24: 24px;
    --font-size26: 26px;
    --font-size28: 28px;
    --font-size30: 30px;
    --font-size32: 32px;
    /*------▼clampバリエーション設定▼------*/
    --clamp-10: clamp(5px, 0.52vw, 10px);
    --clamp-14: clamp(7px, 0.73vw, 14px);
    --clamp-20: clamp(10px, 1.04vw, 20px);
    --clamp-30: clamp(15px, 1.56vw, 30px);
    --clamp-40: clamp(20px, 2.08vw, 40px);
    --clamp-50: clamp(25px, 2.61vw, 50px);
    --clamp-60: clamp(30px, 3.13vw, 60px);
    --clamp-70: clamp(35px, 3.65vw, 70px);
    --clamp-80: clamp(40px, 4.17vw, 80px);
    --clamp-90: clamp(45px, 4.69vw, 90px); 
    --clamp-100: clamp(50px, 5.42vw, 100px);
    --clamp-110: clamp(55px, 5.73vw, 110px);
    --clamp-120: clamp(60px, 6.25vw, 120px);
    --clamp-130: clamp(65px, 6.78vw, 130px);
    --clamp-140: clamp(70px, 7.3vw, 140px);
    --clamp-150: clamp(76px, 7.92vw, 150px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
/* ================================
   foundation
================================ */

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0;
}
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    margin-top: 0!important;
}
body {
    position: relative;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    line-height: 1.7;/* 1.8 - 1.85*/
    color: var(--color-font);
    background-color: var(--color-background);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover, a:active {
    color: inherit;
    opacity: .6;
}
ul, ol {
    list-style: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  /* table-layout: fixed; */
}
th, td {
  padding: 0.75em;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-table-border);
}
th {
  font-weight: bold;
}
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}
h1, h2, h3, h4, h5, h6 {
    letter-spacing: .06em;/*.06*/
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 1em;
}
p {
    font-size: var(--body-font-size);
    margin-bottom: 1.5em;
    font-weight: 500;
    letter-spacing: .03em;
}
/* === h1~h6 === */ 
h1 {font-size: var(--font-size64);}
h2 {font-size: var(--font-size48);}
h3 {font-size: var(--font-size32);}
h4 {font-size: var(--font-size27);}
h5 {font-size: var(--font-size24a);}
h6 {font-size: var(--font-size20);}

/* ================================
   layout
================================ */

@media print, screen and (max-width: 768px) {
    /* .entry-content {
        overflow: hidden;
    } */
}
/* === wrapper & inner === */   
.Inner {
	width: var(--inner-width);
    max-width: var(--inner-max-width-px);
}
.wrapper_content {
	position: relative;
	width: var(--inner-width);
    max-width: var(--inner-max-width-px);
	margin: 0 auto;
    z-index: 1;
}
.content_inner {
    position: relative;
    z-index: 0; 
    width: var(--inner-width);
}
.max_wFull {
    position: relative;
    width:100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.max_wFull::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}
.max_w1600 {
    max-width: 1600px;
}
.max_w830 {
    max-width: 830px;
}
@media print, screen and (max-width: 768px) {
    .content_inner--full {
        width: 100%;
    }
}
/* === lInner === */
.lInner {
    margin-bottom: 7rem;
}
@media print, screen and (max-width: 768px) {
    .lInner {
        margin-bottom: 3.5rem;
    }
}
/* === lSnsNav === */
.lSnsNav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}
.lSnsNav__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}
.lSnsNav__txt {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-family02);
    line-height: 2;
    letter-spacing: .08em;
}
.lSnsNav__item {
    max-width: 35px;
}
/* === lHeaderthumbnail === */
@media print, screen and (max-width: 768px) {
}
/* === lHeader === */
@media print, screen and (min-width: 1024px) {
    .lHeader001 {
        display: none;
    }
}
@media print, screen and (max-width: 1023px) {
    .lHeader001 {
        position: absolute;
        top: 0;
        background-color: #010101;
        height: 70px;
    }
    .lHeader001__headerInner {padding-left: 0;}
    .lHeader001__logo {
        padding: 0 30px;
    }
    .lHeader001__tabletHamburger {
        background-color: #FFF;
        color: #000;
    }
    body.headerNavIsOpen .lHeader001__tabletHamburger {
        background-color: #000;
        color: #FFF;
    }    
    body.headerNavIsOpen .lHeader001 {
        background: transparent;
    }
    body.headerNavIsOpen .lHeader001__tabletNavContainer {
        height: auto;
    }
    body.headerNavIsOpen .lHeader001__header {
        height: 70px;
    }
    body.headerNavIsOpen .lHeader001__inner {
        top: 0;
        background: #FFF;
        width: 90%;
        max-width: 300px;
        margin-left: auto;
        height: fit-content;
    }
    .lHeader001__tabletNavigation {
        margin: 0 auto;
        width: var(--inner-width);
        max-width: 300px;
    }
    .lHeader001__tabletNavigationMenu {
        display: flex;
        flex-direction: column;
        gap: 2em;
        margin-bottom: 50px;
    }
    .lHeader001 .menu-item a {
        font-size: var(--font-size16);
        font-weight: bold;
        line-height: 2;
        color: #000;
    }
    .lHeader001__logo img {
        max-width: 400px;
    }
    body.sticky-header #header {
        top: 0;
    }
}

/* === lFooter001 === */
@media print, screen and (max-width: 768px) {
}
@media print, screen and (max-width: 499px) {
}

/* === l-container === */
.l-container {
    display: flex;
	flex-wrap: wrap;
    position: relative;
    /* gap: 60px; */
}
.l-container::before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-image: url(/wp-content/uploads/rantan-bgpc01--scaled.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}
@media print, screen and (max-width: 420px) {
    .l-container::before {
        background-image: url(/wp-content/uploads/rantan-bgsp02.jpg);
    }

}
/* === l-logo / l-nav === */
.l-logo, .l-nav {
	flex: 1; 
}
/* -- l-logo -- */
.l-logo {
    position: sticky;
    top: 0;
    height: 100vh;
/*     width: calc((100vw - 420px) / 2); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.l-logo img {
    width: 70%;
    margin: 0 auto;
}
.l-logo__date {
    font-weight: 300;
    text-align: center;
}
.l-logo__date .letter-spacing_wide {
    letter-spacing: .15em;
}
@media print, screen and (max-width: 1023px) {
/*     .l-logo {
        width: calc(100vw - 420px);
    } */
}
@media print, screen and (max-width: 768px) {
    .l-logo {
        display: none;
    }
}
/* -- l-nav -- */
.l-nav {
/*     width: calc((100vw - 420px) / 2); */
    position: sticky;
    top: 100px;
    height: 0;
}
.l-nav__navContainer {
    width: 80%;
    max-width: 400px;
    margin: 5vw auto;
}

.l-nav__navigationMenu {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}
.l-nav__navContainer .menu-item a {
    font-size: var(--font-size16);
    line-height: 2;
    font-weight: bold;
    transition: .2s ease;
    color: #FFF;
    padding: .8em 3em;
    position: relative;
    display: inline-block;
}
.l-nav__navContainer .menu-item a::before {
    content: '';
    position: absolute;
    width: 2em;
    height: 3em;
    background-image: url(/wp-content/uploads/icon_menu.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}
.l-nav__navContainer .current-menu-item a::before,
.l-nav__navContainer .menu-item a:hover::before  {
    display: block;
}
.l-nav__navContainer .current-menu-item.pageLink a::before {
    display: none;
}
.l-nav__navContainer .menu-item.pageLink a:hover::before {
    display: block;
}
.l-nav__navContainer .menu-item a:hover {
    opacity: 1;
}
@media print, screen and (max-width: 1023px) {
    .l-nav {
        display: none;
    }
}
/* === l-main === */
.l-main {
    /* background-image: url(/wp-content/uploads/content_bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center; */
    /* width: 100%; */
    /* max-width: 420px; */
    margin: 0 auto;
    position: relative;
    width: 420px;
    overflow: hidden;
}
.l-main::before {
    content: '';
    position: fixed;
    width: inherit;
    height: 100vh;
    background-image: url(/wp-content/uploads/content_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    top: 0;
    left: calc((100% - 420px) / 2);
}
.l-main::after {
    content: '';
    position: absolute;
    width: var(--inner-width);
    height: 100%;
    background-color: #000;
    filter: blur(50px);
    opacity: .5;
    left: 50%;
    top: 0;
    z-index: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media print, screen and (max-width: 1023px) {
    .l-main::before {
/*         left: calc(100vw - 420px); */
		left: unset;
		right: -1px;
    }
}
@media print, screen and (max-width: 768px) {
    .l-main::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
@media print, screen and (max-width: 420px) {
    .l-main::before {
        display: none;
    }
}

/* === l-section === */
.l-section {
    position: relative;
    width: 100%;
    z-index: 1;
}
.l-section::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}
/* ================================
   component / c-
================================ */
/* === c-flex === */
.c-flex {
    display: flex;
    flex-wrap: nowrap;
}
.c-flex__inner {
    padding: 0 min(10%, 70px);
    width: 100%;
    max-width: 630px;
}
@media print, screen and (max-width: 768px) {
    .c-flex {
        flex-direction: column;
        gap: var(--clamp-40);
    }
    .c-flex__inner {
        max-width: 100%;
        padding: 0 8%;
    }
}
/* === c-card === */
.c-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.c-card--col-2 {gap: 20px 30px;}
.c-card--col-3 {gap: 40px 30px}
.c-card--col-4 {gap: 20px;}
.c-card--col-5 {gap: 20px;}
.c-card--col-6 {gap: 8px;}
.c-card__item--col-1 {width: calc((100% - (20px * 0)) / 1);}
.c-card__item--col-2 {width: calc((100% - (30px * 1)) / 2);}
.c-card__item--col-3 {width: calc((100% - (30px * 2)) / 3);}
.c-card__item--col-4 {width: calc((100% - (20px * 3)) / 4);}
.c-card__item--col-5 {width: calc((100% - (20px * 4)) / 5);}
.c-card__item--col-6 {width: calc((100% - (8px * 5)) / 6);}
/* .c-card p { font-weight: 400;} */
.c-card p:last-child {margin: 0;}
@media print, screen and (max-width: 1023px) {
    .c-card__item--col-5 {width: calc((100% - (20px * 3)) / 4);}
    .c-card__item--col-6 {width: calc((100% - (8px * 3)) / 4);}
}
@media print, screen and (min-width: 769px) {
    .c-card .txt-area {
        padding: 0 .7rem;
    }    
}
@media print, screen and (max-width: 768px) {
	.c-card {
		width: 100%;
		margin: 0 auto;
	}
    .c-card {flex-direction: row;}
    .c-card--col-2, .c-card--col-3 {
        gap: 15px;
    }
    .c-card__item--col-2, .c-card__item--col-3 {
        width: 100%;
        margin-bottom: 0;
    }
    .c-card__item--col-4, .c-card__item--col-5 {
        width: calc((100% - (20px * 1)) / 2);
        margin-bottom: 0;
    }
    .c-card__item--col-6 {width: calc((100% - (8px * 1)) / 2);}    
}
@media print, screen and (max-width: 500px) {
    .c-card__item--col-4, .c-card__item--col-5 {
        width: 100%;
		margin: 0 auto;
    }
}
@media print, screen and (max-width: 349px) {
    .c-card__item--col-6 {width: 100%;}    
}
/* === c-ttl === */
.c-ttl {
    background: var(--color-primary);
    border-radius: 5px;
    width: 94%;
    margin-inline: auto;
    font-size: var(--font-size26);
    font-family: var(--font-family03);
    padding: .5em .5em .3em;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
}
.c-ttl--bubble {
    position: relative;
    padding-top: calc(var(--font-size22) * 9);
}
.c-ttl--icon {
    margin-bottom: 1.5em;
    padding: 1em .5em .8em;
    position: relative;
}
.c-ttl--icon::before {
    content: '';
    position: absolute;
    width: 2em;
    height: 4em;
    background-image: url(/wp-content/uploads/icon_rantan.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: -0.5em;
    bottom: -2em;
}
.c-bubble {
    font-size: var(--font-size22);
    font-family: var(--font-family03);
    line-height: 1.5;
    position: relative;
    display: block;
    width: 100%;
    padding: .5em;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 1.5em;
    margin-bottom: 1.2em;
}
.c-bubble::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background-image: url(/wp-content/uploads/bubble_01.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
.c-bubble .large {
    font-size: 1.5em;
    line-height: 1.3;
}
@media print, screen and (min-width: 769px) {
    .c-ttl.--vertical {
        display: flex;
        flex-direction: column;
        align-items: start;
        writing-mode: vertical-rl;
        text-align: center;
    }
}
@media print, screen and (max-width: 768px) {
}
/* === c-text === */
.c-text {
    line-height: 2.15;
}
@media print, screen and (max-width: 768px) {
    .c-text {
        line-height: 2;
    }
}
/* === c-tagTxt === */
.c-tagTxt {
    background: var(--color06);
    color: #FFF;
    display: inline-block;
    font-size: var(--font-size16);
    border-radius: 50vw;
    padding: .2em 1.5em;
    font-weight: bold!important;
}
/* === c-btn === */
.c-btnContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.c-btn, a.c-btn {
    display: inline-block;
    position: relative;
    font-size: var(--font-size18);
    font-family: var(--font-family03);
    font-weight: 400;
    line-height: 2;
    color: var(--color-font);
    background: var(--color-primary-tint);
    border-radius: 0;
    transition: .3s ease;
    text-align: center;
    padding: .5em .5em .3em;
    width: 100%;
    border-radius: 5px;
}
.c-btn:hover, a.c-btn:hover {
    opacity: .6;
}
.c-btn:hover::after, a.c-btn:hover::after {
    transform: translateX(.5em);
}
.c-btn .txt, a.c-btn .txt {
    padding-right: 1.5em;
    position: relative;
}
.c-btn .txt::after, a.c-btn .txt::after {
    content: "";
    transition: .2s ease;
    position: absolute;
    width: 1em;
    height: 100%;
    background-image: url(/wp-content/uploads/btn_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    right: 0;
    top: 0;
}
.linkBtn {
    width: 100%;
}
.linkBtn img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.qr-banner {
    width: 40%;
}
.qr-banner img {
    width: 100%;
    height: auto;
}
@media print, screen and (max-width: 768px) {
}
/* ==== c-message ==== */
.c-message {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.c-message.is-inactive {
  opacity: 0.25;
  transition: opacity 0.3s;
  margin-top: -40px;
  z-index: -1;
}
.c-message__content {
    background-image: url(/wp-content/uploads/c-messsage-inacctive_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    border-radius: 22px;
    padding: 30px 0 20px;
    text-align: center;
    position: relative;
}
.c-message__content::before {
content: '';
    position: absolute;
    width: 50px;
    height: 100px;
    background-image: url(/wp-content/uploads/icon_rantan.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: -23px;
    top: -20px;
}
/* .c-message__content.is-active {
    background-image: url(/wp-content/uploads/c-messsage_bg.jpg);
} */
.c-message__name {
    font-size: var(--font-size16);
    font-weight: 500;
    border-bottom: 2px solid;
    text-align: center;
    padding-bottom: .3em;
    margin-bottom: 1em;
}
.c-message__text {
    font-size: var(--font-size16);
    font-family: var(--font-family01);
    font-weight: bold;
    text-align: left;
    /*  */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: max-height 0.3s ease;
}
.line-6 {
  -webkit-line-clamp: 6;
}
.line-4 {
  -webkit-line-clamp: 4;
}
.c-message__text.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}
.c-message__btn {
    color: #5A5858;
    border: 2px solid;
    font-size: var(--font-size24);
    width: 2em;
    height: 2em;
    border-radius: 50vw;
    position: relative;
    font-weight: bold;
}
/* ================================
   project / p-
================================ */
/* ==== p-fv ==== */
.p-fv {
    padding-top: 120px;
}
.p-fv__date {
    letter-spacing: .2em;
}
.p-fv__date .letter-spacing_wide {
    letter-spacing: .3em;
}
.p-fv__btn {
    font-weight: 500;
}
.p-fv__btn a {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: .3em;
    transition: .2s ease;
}
/* .p-fv__btn a:hover {
    text-decoration: none
} */
/* ==== p-tMessage ==== */

.arrow-down {
    position: relative;
    height: 20px;
    margin-bottom: 5px;
}
.arrow-down::before {
    content: '';
    position: absolute;
    border-top: 20px solid #FFF;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
/* ==== p-tAbout ==== */
.p-tAbout {
    padding-top: 20px;
    margin-bottom: 20px;
}
.p-tAbout .wrapper_content {
    background-image: linear-gradient(180deg, #EF8D1E 0%, #FBBE06 80%, #FBBE06 100%);
    border-radius: 30px;
    padding: 60px 0;
}
/* ==== p-tForm ==== */
.p-tForm {
    padding-top: 20px;
}
.p-tForm .wpcf7 {
    position: relative;
}
.p-tForm .wpcf7::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 100px;
    background-image: url(/wp-content/uploads/icon_rantan.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: -23px;
    top: -20px;
    z-index: 1;
}
.wpcf7 textarea {
    width: 100%;
    height: 250px;
    border: 3px solid #000000;
    border-radius: 2px;
    font-size: var(--font-size16);
    line-height: 1.8;
    padding: 1em;
}
.wpcf7 span.must {
	background: red;
}
input.wpcf7-form-control[type='text'], input.wpcf7-form-control[type='tel'], input.wpcf7-form-control[type='email'], input.wpcf7-form-control[type='date'], input.wpcf7-form-control[type='url'], input.wpcf7-form-control[type='number'], select, textarea {
    font-size: var(--font-size16);
    line-height: 1.8;
    padding: 1em;
}
.wpcf7 textarea::placeholder,
.wpcf7 input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
.wpcf7 .linkBtn {
    background: var(--color-primary);
    border-radius: 5px;
    width: 55%;
    margin: 15px auto 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: var(--font-size26);
    font-family: var(--font-family03);
    padding: 0;
    font-weight: 400;
    transition: .3s ease;
}
.wpcf7 .linkBtn input {
    width: 100%;
    display: block;
    background: transparent;
    border: 0;
    padding: .5em .5em .3em;
    color: #FFF;
    cursor: pointer;
}
.wpcf7 .linkBtn:hover {
    opacity: .6;
}
.wpcf7 .wpcf7-spinner {
    position: absolute;
    left: 50%;
    margin: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -30px;
}
/* ==== p-tShare ==== */
.p-tShare {
    padding-top: 60px;
}
.p-tShere__snsContent {
    width: 90%;
    margin: 40px auto 60px;
    display: flex;
    flex-direction: row;
    gap: 3%;
}
.p-tShere__snsIcon {
    flex: 1;
    display: block;
}
.p-tShere__snsIcon img, .p-tShere__sns img {
    width: 100%;
    height: auto;
}
.p-tShere__sns {
    display: block;
    margin: 0 auto;
    width: 20%;
}
/* ==== p-tSponsor ==== */
.p-tSponsor {
    padding-top: 60px;
/*     padding-bottom: 20px; */
}
.p-tSponsor__content {
    background-color: #FFF;
    padding: 50px 0;
}
.p-tSponsor__list {
    display: flex;
    flex-direction: row;
    gap: 30px 10%;
    flex-wrap: wrap;
}
.p-tSponsor__listItem {
    width: calc(80% / 3);
}
.p-tSponsor__listItem img {
    width: 100%;
    height: auto;
}
/* ==== p-message ==== */
.p-message, .p-about, .p-purchase, .p-contact {
    padding-top: 100px;
    padding-bottom: 20px;
}
/* ==== p-message ==== */
/* ==== p-message ==== */
/* ==== p-message ==== */
/* ==== p-footer ==== */
.p-footer {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 50px 0 30px;
}
.p-footer__navContainer {
    margin: 0 auto;
    width: var(--inner-width);
    max-width: 280px;
}
.p-footer .menu-item a {
    font-size: var(--font-size16);
    line-height: 2;
    font-weight: bold;
    transition: .2s ease;
    color: #FFF;
}
.p-footer__navigationMenu {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-bottom: 50px;
}
/* ================================
   utility / u-
================================ */
/* === font === */
.txt_c {text-align: center;}
.txt_l {text-align: left;}
.txt_r {text-align: right;}
.px10{font-size: var(--font-size10)!important;}
.px12{font-size: var(--font-size12)!important;}
.px14{font-size: var(--font-size14)!important;}
.px15{font-size: var(--font-size15)!important;}
.px16{font-size: var(--font-size16)!important;}
.px17{font-size: var(--font-size17)!important;}
.px18{font-size: var(--font-size18)!important;}
.px20{font-size: var(--font-size20)!important;}
.px22{font-size: var(--font-size22)!important;}
.px24{font-size: var(--font-size24)!important;}
.px26{font-size: var(--font-size26)!important;}
.px28{font-size: var(--font-size28)!important;}
.px30{font-size: var(--font-size30)!important;}
.px32{font-size: var(--font-size32)!important;}
.weight_100 {font-weight: 100}
.weight_200 {font-weight: 200}
.weight_300 {font-weight: 300}
.weight_400 {font-weight: 400}
.weight_500 {font-weight: 500}
.weight_600 {font-weight: 600}
.weight_800 {font-weight: 800}
.weight_regular {font-weight: 400}
.weight_mid {font-weight: 500}
.weight_bold {font-weight: bold}
.weight_black {font-weight: 900}
.line-height_1 {line-height: 1;}
.line-height_1-1 {line-height: 1.1;}
.line-height_1-2 {line-height: 1.2;}
.line-height_1-3 {line-height: 1.3;}
.line-height_1-4 {line-height: 1.4;}
.line-height_1-5 {line-height: 1.5;}
.line-height_1-6 {line-height: 1.6;}
.line-height_1-7 {line-height: 1.7;}
.line-height_1-8 {line-height: 1.8;}
.line-height_1-9 {line-height: 1.9;}
.line-height_2 {line-height: 2;}
.ff_01 {font-family: var(--font-family01);}
.ff_02 {font-family: var(--font-family02);}
.ff_03 {font-family: var(--font-family03);}
.ff_04 {font-family: var(--font-family04);}
.color-font {color: var(--color-font);}
.color-white {color: #FFF;}
.color-black {color: #242424;}
.lh-wide {
    line-height: 2.2;
}
.lh-semiWide {
    line-height: 2;
}
@media print, screen and (min-width: 769px) {
    .pc_lh-wide {
        line-height: 2.2;
    }
    .pc_lh-semiWide {
        line-height: 2;
    }
}
@media print, screen and (max-width: 768px) {
    .sp_lh-wide {
        line-height: 2.2;
    }
    .sp_lh-semiWide {
        line-height: 2;
    }
    .sp_lh-min {
        line-height: 1.25;
    }
}
/* === font-desc === */
.border-radius {
    border-radius: clamp(8px, 1.2vw, 16px);
    overflow: hidden;
}
.border-radius--mid {
    border-radius: clamp(8px, 1.4vw, 20px);
    overflow: hidden;
}
.text-underlie {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: .3em;
}
.u-strike {
    text-decoration: line-through;
    text-decoration-color: #FF0303;
}
@media print, screen and (min-width: 769px) {
    .pc_center {
        text-align: center;
    }
    .pc_border-radius--mid {
        border-radius: clamp(8px, 1.4vw, 20px);
        overflow: hidden;
    }
}
@media print, screen and (max-width: 768px) {
    .sp_center {
        text-align: center;
    }
}
/* === margin === */
.mb1_5 {
    margin-bottom: 1.5rem !important;
}
.mb0_5 {
    margin-bottom: .5rem !important;
}
.mt1vw {margin-top: 1vw;}
.mt2vw {margin-top: 2vw;}
.mt3vw {margin-top: 3vw;}
.mt4vw {margin-top: 4vw;}
.mt5vw {margin-top: 5vw;}
.mt6vw {margin-top: 6vw;}
.mt7vw {margin-top: 7vw;}
.mt8vw {margin-top: 8vw;}
.mt9vw {margin-top: 9vw;}
.mt10vw {margin-top: 10vw;}
.mb1vw {margin-bottom: 1vw;}
.mb2vw {margin-bottom: 2vw;}
.mb3vw {margin-bottom: 3vw;}
.mb4vw {margin-bottom: 4vw;}
.mb5vw {margin-bottom: 5vw;}
.mb6vw {margin-bottom: 6vw;}
.mb7vw {margin-bottom: 7vw;}
.mb8vw {margin-bottom: 8vw;}
.mb9vw {margin-bottom: 9vw;}
.mb10vw {margin-bottom: 10vw;}
@media print, screen and (min-width: 769px) {
    .ml-auto {margin-left: auto!important;}
    .mr-auto {margin-right: auto!important;}
    .pc_mx-auto {margin: 0 auto;}
    .pc_mt1 {margin-top: 1rem !important;}
    .pc_mt2 {margin-top: 2rem !important;}
    .pc_mt3 {margin-top: 3rem !important;}
    .pc_mt4 {margin-top: 4rem !important;}
    .pc_mt5 {margin-top: 5rem !important;}
    .pc_mt6 {margin-top: 6rem !important;}
    .pc_mt7 {margin-top: 7rem !important;}
    .pc_mt8 {margin-top: 8rem !important;}
    .pc_mt9 {margin-top: 9rem !important;}
    .pc_mt10 {margin-top: 10rem !important;}
    .pc_mt15 {margin-top: 15rem !important;}
    .pc_mt16 {margin-top: 16rem !important;}
    .pc_mb1 {margin-bottom: 1rem !important;}
    .pc_mb2 {margin-bottom: 2rem !important;}
    .pc_mb3 {margin-bottom: 3rem !important;}
    .pc_mb4 {margin-bottom: 4rem !important;}
    .pc_mb5 {margin-bottom: 5rem !important;}
    .pc_mb6 {margin-bottom: 6rem !important;}
    .pc_mb7 {margin-bottom: 7rem !important;}
    .pc_mb8 {margin-bottom: 8rem !important;}
    .pc_mb9 {margin-bottom: 9rem !important;}
    .pc_mb10 {margin-bottom: 10rem !important;}
    .pc_mb15 {margin-bottom: 15rem !important;}
    .pc_mb16 {margin-bottom: 16rem !important;}
    .pc_pt1 {padding-top: 1rem !important;}
    .pc_pt2 {padding-top: 2rem !important;}
    .pc_pt3 {padding-top: 3rem !important;}
    .pc_pt4 {padding-top: 4rem !important;}
    .pc_pt5 {padding-top: 5rem !important;}
    .pc_pt6 {padding-top: 6rem !important;}
    .pc_pt7 {padding-top: 7rem !important;}
    .pc_pt8 {padding-top: 8rem !important;}
    .pc_pt9 {padding-top: 9rem !important;}
    .pc_pt10 {padding-top: 10rem !important;}
    .pc_pt15 {padding-top: 15rem !important;}
    .pc_pt16 {padding-top: 16rem !important;}
    .pc_pb1 {padding-bottom: 1rem !important;}
    .pc_pb2 {padding-bottom: 2rem !important;}
    .pc_pb3 {padding-bottom: 3rem !important;}
    .pc_pb4 {padding-bottom: 4rem !important;}
    .pc_pb5 {padding-bottom: 5rem !important;}
    .pc_pb6 {padding-bottom: 6rem !important;}
    .pc_pb7 {padding-bottom: 7rem !important;}
    .pc_pb8 {padding-bottom: 8rem !important;}
    .pc_pb9 {padding-bottom: 9rem !important;}
    .pc_pb10 {padding-bottom: 10rem !important;}
    .pc_pb15 {padding-bottom: 15rem !important;}
    .pc_pb16 {padding-bottom: 16rem !important;}
}
@media screen and (max-width: 768px) {
	.sp_object-fit_3-2 img {
		aspect-ratio: 3/2;
		object-fit: cover;
	}
    .mb1_5 {
        margin-bottom: .7rem !important;
    }    
    .sp_mx-auto {margin: 0 auto;}
    .sp_pt1 {padding-top: 0.5rem !important;}
    .sp_pt2 {padding-top: 1rem !important;}
    .sp_pt3 {padding-top: 1.5rem !important;}
    .sp_pt4 {padding-top: 2rem !important;}
    .sp_pt5 {padding-top: 2.5rem !important;}
    .sp_pt6 {padding-top: 3rem !important;}
    .sp_pt7 {padding-top: 3.5rem !important;}
    .sp_pt8 {padding-top: 4rem !important;}
    .sp_pt9 {padding-top: 4.5rem !important;}
    .sp_pt10 {padding-top: 5rem !important;}
    .sp_pb1 {padding-bottom: 0.5rem !important;}
    .sp_pb2 {padding-bottom: 1rem !important;}
    .sp_pb3 {padding-bottom: 1.5rem !important;}
    .sp_pb4 {padding-bottom: 2rem !important;}
    .sp_pb5 {padding-bottom: 2.5rem !important;}
    .sp_pb6 {padding-bottom: 3rem !important;}
    .sp_pb7 {padding-bottom: 3.5rem !important;}
    .sp_pb8 {padding-bottom: 4rem !important;}
    .sp_pb9 {padding-bottom: 4.5rem !important;}
    .sp_pb10 {padding-bottom: 5rem !important;}
    .sp_pd2 {padding: 1rem !important;}
    .sp_pd3 {padding: 1.5rem !important;}
    .sp_pd4 {padding: 2rem !important;}
    .sp_pd5 {padding: 2.5rem !important;}
    .sp_mt1 {margin-top: 0.5rem !important;}
    .sp_mt2 {margin-top: 1rem !important;}
    .sp_mt3 {margin-top: 1.5rem !important;}
    .sp_mt4 {margin-top: 2rem !important;}
    .sp_mt5 {margin-top: 2.5rem !important;}
    .sp_mt6 {margin-top: 3rem !important;}
    .sp_mt7 {margin-top: 3.5rem !important;}
    .sp_mt8 {margin-top: 4rem !important;}
    .sp_mt9 {margin-top: 4.5rem !important;}
    .sp_mt10 {margin-top: 5rem !important;}
    .sp_mt15 {margin-top: 7.5rem !important;}
    .sp_mt16 {margin-top: 8rem !important;}
    .sp_mb1 {margin-bottom: 0.5rem !important;}
    .sp_mb2 {margin-bottom: 1rem !important;}
    .sp_mb3 {margin-bottom: 1.5rem !important;}
    .sp_mb4 {margin-bottom: 2rem !important;}
    .sp_mb5 {margin-bottom: 2.5rem !important;}
    .sp_mb6 {margin-bottom: 3rem !important;}
    .sp_mb7 {margin-bottom: 3.5rem !important;}
    .sp_mb8 {margin-bottom: 4rem !important;}
    .sp_mb9 {margin-bottom: 4.5rem !important;}
    .sp_mb10 {margin-bottom: 5rem !important;}
    .sp_mb15 {margin-bottom: 7.5rem !important;}
    .sp_mb16 {margin-bottom: 8rem !important;}
}
/* === flex === */
.wrap {
    flex-wrap: wrap;
}
.nowrap {
    flex-wrap: nowrap;
}
.ai_start {
    align-items: start;
}
/* === item / area === */
.txt-area, .img-area {
    position: relative;
}
.img-area img {
    width: 100%;
    height: auto;
    position: relative;
}

@media print, screen and (max-width: 769px) {
}
/* === column === */
.col-2 {
    width: calc(100% / 2);
}
.col-3 {
    width: calc(100% / 3);
}
.col-4 {
    width: calc(100% / 4);
}
.col-5 {
    width: calc(100% / 5);
}
@media print, screen and (max-width: 768px) {
    .col-2, .col-3, .col-4 {
        width: 100%;
    }
    .col-5 {
        width: calc(100% / 2);
    }
}
@media print, screen and (max-width: 499px) {
    .col-5 {
        width: 100%;
    }
}
/* === width === */
.w15 {
    width: 15%;
}
.w25 {
    width: 25%;
}
.w35 {
    width: 35%;
}
.w45 {
    width: 45%;
}
.w55 {
    width: 55%;
}
.w65 {
    width: 65%;
}
.w75 {
    width: 75%;
}
.w85 {
    width: 85%;
}
.w95 {
    width: 95%;
}
@media print, screen and (max-width: 768px) {
    .w15, .w25, .w35, .w45, .w55, .w65, .w75, .w85, .w95 {
        width: 100%;
    }
}
/* === display === */
.dis_block {display: block;}
.dis_inline-block {display: inline-block;}
.dis_flex {display: flex;}
/* === その他 === */
.anchor_link {
    position: relative;
}
.anchor_link::before {
	content: '';
	display: block;
    padding-top: var(--clamp-150);
    margin-top: calc(var(--clamp-150) * -1);
}
.anchor-txt {
    color: inherit;
    text-decoration: underline;
    transition: .2s ease!important;
}
/* .anchor-txt:hover {
    color: inherit;
    text-decoration: unset;
} */
.copyright {
    color: #FFF;
    font-size: var(--font-size14);
    font-weight: 500;
    font-family: var(--font-family01);
    text-align: center;
}
.googlemap {
	position: relative;
	padding-bottom: clamp(250px, 26vw, 500px);
	padding-top: 0;
	height: 0;
	overflow: hidden;
}
.googlemap iframe,
.googlemap object,
.googlemap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* .img-object */
.img-object {
    position: absolute;
    z-index: -1;
}
.img-object img {
    width: 100%;
    height: auto;
}
.img-object.-img01 {
    width: 30%;
    top: 52%;
    left: 25%;
}
.img-object.-img02 {
    width: 35%;
    top: -2%;
    left: 46%;
    transform: scaleX(-1);
}
.img-object.-img03 {
    width: 14%;
    top: -1%;
    left: 2%;   
}
.img-object.-img04 {
    width: 11%;
    top: 11%;
    right: 2%;
}
.img-object.-img05 {
    width: 11%;
    bottom: 34%;
    left: 2px;
}
@media print, screen and (max-width: 768px) {
    .img-object.-img05 {
        bottom: 40%;    
    }
}


/* ベースリセット */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: ''!important;
  background: none;  /* デフォルトの背景やアイコンを消す */
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  margin-top: -12px; /* 高さの半分でセンタリング */
  z-index: 10;
}

/* 左矢印（三角形） */
.swiper-button-prev::after {
  left: 10px;                /* 親コンテナ内での位置調整 */
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 30px solid #FFF;  /* 矢印の色 */
}

/* 右矢印（三角形） */
.swiper-button-next::after {
  right: 10px;               /* 親コンテナ内での位置調整 */
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #FFF;   /* 矢印の色 */
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: ''!important; 
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -20px!important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -20px!important;
}

