:root {
    --color-txt: #000;
    --color-green1: #007059;
    --color-green2: #3D8C7C;
    --color-green3: #40AE98;
    --color-blue1: #0093D9;
    --color-purple: ##6C54A0;
    --color-blue2: #C3E4F4;
    --color-gray1: #959595;
    --color-gray2: #ECEBEB;
    --color-gray3: #F8F8F8;
    --font-base:  "Noto Sans JP", sans-serif;
    --font-en: "Raleway", sans-serif;
    --font-size-base: 1.6rem;
    --rem-base: 10;
    --viewport-min: 320;
    --breakpoint-sp: 768;
    --content-max-width: 1152; /*1120+32*/
    --breakpoint-pc: 1280;
    --viewport-max: 1640;
    --space-sm: 1.5em;
    --space-md: 2.5em;
    --space-lg: 5em;
    --space-sec: 3.5em;
}
html { font-size: calc(var(--rem-base) / var(--viewport-min) * 100vw); }
@media screen and (min-width: 768px) {
    :root {
        --space-sm: 3em;
        --space-md: 5em;
        --space-lg: 10em;
        --space-sec: 7.5em;
    }
    html { 
        font-size: calc(var(--rem-base) / var(--content-max-width) * 100vw); 
    }
}
@media screen and (min-width: 1152px) {
    html { 
        font-size: 62.5%;
        /*font-size: calc(var(--rem-base) / var(--breakpoint-pc) * 100vw); */
    }
}
@media screen and (min-width: 1281px) {
    html { 
        font-size: calc(var(--rem-base) / var(--breakpoint-pc) * 100vw); 
    }
}
@media screen and (min-width: 1641px) {
    html { 
        /* 10 / 1280 * 1640 = 12.8125px */
        font-size: calc(var(--rem-base) / var(--breakpoint-pc) * 1640px); 
    }
}
*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    font-optical-sizing: auto;
    line-height: 1.75;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .16em;
    color: var(--color-txt);
    background-color: white;
}
article, aside, figcaption, figure, footer, header, menu, nav, section, main {
    display: block;
    margin: 0;
}
ul, ol, li {
    list-style: none;
    padding: 0;
}
blockquote, q {
    quotes: none;
}
blockquote::before,blockquote::after,q::before, q::after {
    content: '';
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}
picture img,figure img {
    width: 100%;
    height: auto;
}
input, textarea, select, button {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
}
input[type="submit"], input[type="button"] {
     cursor: pointer;
}
select::-ms-expand {
     display: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
    font-weight: 500;
    font-size: 1em;
    line-height: 1em;
    letter-spacing: .16em;
}
p,p:has(small) {
    line-height: 1.8;
}
p.clear {
      margin-bottom: 1em;
}
small {
    font-size: 0.875em;
}
strong {
	font-size: 1.25em;
	font-weight: 700;
}
b {
	font-weight: 700;
}
a {
    color: inherit;
    text-decoration: none;
    transition: .5s;
    word-break: break-word;
    overflow-wrap: break-word;
}
a.txtlink { text-decoration: underline;}
a.txtlink:hover { text-decoration: none; }
.clear {
  clear: both;
  display: block;
  overflow: hidden;
}
.u-textleft { text-align: left; }
.u-textright { text-align: right; }
.u-textcenter { text-align: center; }
.u-button-center { text-align: center; }
.u-button-center .c-button { margin: 2em auto; }
.u-color-green1 { color: var(--color-green1); }
.u-color-green2 { color: var(--color-green2); }
.u-bg-gray3 { background-color: var(--color-gray3);}
.u-ft15 p { font-size: 1.5rem; }
.u-btm-md { margin-bottom: var(--space-md); }
.alignright,
.u-img-right {
    float: right;
    margin: .5em 0 1em 1.5em;
    max-width: min(45%, 320px);
}
.u-hover-img {
    overflow: hidden;
    display: block;
}
.p-card__img img,.u-hover-img img {
    transition: transform 0.8s ease;
}
.p-card__img:hover img,.u-hover-img:hover img {
    transform: scale(1.05);
}
.swiper-pagination {
    display: flex !important;
    justify-content: center !important;
    gap: 2.5em !important;
    bottom: 0 !important;
}
.swiper-pagination-bullet {
    width: .5em !important;
    height: .5em !important;
    margin: 0 !important;
    aspect-ratio: 1/1 !important;
}
.swiper-pagination-bullet-active {
    background-color: var(--color-green2) !important;
}
.swiper-wrapper {
  align-items: stretch !important;
}
.swiper-slide {
    height: auto!important;
}
.u-map-wrap {
    display: block;
    margin: 2em 0;
    width: 100vw;
    transform: translateX(-1em);
}
.u-map-wrap iframe {
    width: 100%;
    height: 32rem;
}
[id] {
    scroll-margin-top: calc(var(--header-height, 0px) + 2em);
}
@media screen and (max-width: 767px) {
    .pc { display: none !important; }
    .u-sp-texcenter { text-align: center;}
    .u-sp-textleft { text-align: left; }
    .u-sp-textright { text-align: right;}
    .alignright,
    .u-img-right {
        float: none;
        display: block;
        margin: 0 auto 1em;
        max-width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .sp { display: none !important; }
    .u-hover-op > a:hover,
    a:hover.u-hover-op {
        opacity: .7;
    }
    .u-map-wrap {
        width: 100%;
        transform: translateX(0);
    }
    .u-map-wrap iframe {
        height: 40rem;
    }
    [id] {
        scroll-margin-top: calc(var(--header-height, 0px) + 4em);
    }
}
#js-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: white;
  opacity: 1;
  transition: opacity .8s ease;
}
#js-loader.is-loaded {
  opacity: 0;
  pointer-events: none;
}
.l-wrapper {
    overflow: hidden;
}
.l-inner {
    padding-left: 1em;
    padding-right: 1em;
}
.l-inner.p-content,
.u-bg-gray3.p-content {
    margin-bottom: var(--space-lg);
}
.l-inner.--space,
.l-inner.--space-sec {
    padding-top: var(--space-sec);
    padding-bottom: var(--space-sec);
}
.logo {
    font-family: var(--font-base);
    font-size: 0.875em;
    font-weight: 500;
    font-style: Medium;
    line-height: 2em;
    letter-spacing: 0.16em;
}
.l-footer__logo .logo {
    font-size: 1.125em;
    line-height: 1.6em;
}
.nav__btn--contact .c-button {
    font-size: 0.875em;
}
.nav__btn--contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}
.l-footer .c-button {
    color: white;
    border-color: white;
}
.l-header {
    width: 100%;
    display: block;
    z-index: 990;
    background: rgb(255, 255, 255, .98);
}
.nav_open .l-header {
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 0 2em 0 #0000001A;
}
.l-header.fixed {
    position: fixed;
    animation: fade01 .5s ease-in-out;
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0 0 2em 0 #0000001A;
}
@keyframes fade01 {
    from { opacity: 0; transform: translateY(-10%); }
    to { opacity: 1; transform: translateY(0); }
}
.l-header__area {
    width: 100%;
    height: 6.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.2rem;
}
.l-header__hamburger {
    background-color: transparent;
    width: 6.8rem;
    height: 6.8rem;
    cursor: pointer;
    display: block;
    z-index: 1001;
    text-align: center;
    position: relative;
}
.l-header__hamburger::before {
    content: "MENU";
    display: block;
    font-size: 0.75em;
    font-family: var(--font-en);
    font-weight: 600;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: .5rem;
}
.l-header__hamburger > span {
    width: 4.2rem;
    height: 25%;
    display: block;
    position: absolute;
    top: 1em;
    left: 50%;
    transform: translateX(-50%);
}
.l-header__hamburger > span::before,
.l-header__hamburger > span::after {
    content: " ";
    display: block;
    background: black;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
}
.l-header__hamburger > span::before { top: 0; }
.l-header__hamburger > span::after { bottom: 0; }
.nav_open .l-header__hamburger > span::before,
.nav_open .l-header__hamburger > span::after { top: 50%; }
.nav_open .l-header__hamburger > span::before { transform: translate(-50%,-50%) rotate(15deg); }
.nav_open .l-header__hamburger > span::after { transform: translate(-50%,-50%) rotate(-15deg); }
.nav_open .l-header__hamburger::before {
    content: "CLOSE";
}
.l-hamburger__nav {
    position: fixed;
    width: 100%;
    height: auto;
    z-index: 999;
    transition: top 3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}
.nav_open .l-hamburger__nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.l-menu-nav__btn .nav__btn--contact .c-button {
    display: block;
}
.l-footer__nav .c-button {
    width: 100%;
    background-color: white;
    color: var(--color-green1);
}
.l-footer__nav .c-button.--outline {
    color: white;
}
.l-footer__nav .c-button.--outline:hover {
    background-color: white;
    color: var(--color-green1);
}
.l-footer__nav .c-button.--newwindow:hover {
    background-color: var(--color-green1);
    color: white;
}
.l-footer__nav .c-button.--newwindow span::after {
    background-image: url('../images/icon_newwindow-green.svg');
}
.l-footer__nav .c-button.--newwindow:hover span::after {
    background-image: url('../images/icon_newwindow-white.svg');
}
.l-menu-nav__btn {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
}
.l-footer {
    background-color: var(--color-green1);
    color: white;
    padding-top: 2em;
    padding-bottom: 2em;
}
.l-footer__logo {
    margin-bottom: 1.5em;
}
.l-footer__copyright {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: .9rem;
    line-height: 2;
    letter-spacing: .16em;
    text-align: center;
    margin-top: 1.5em;
}
/** grid **/
.l-grid {
    display: grid;
    gap: 1.5em;
}
.l-grid.--col4 {
    grid-template-columns: 1fr 1fr;
    column-gap: .5em;
    row-gap: 1.5em;
}
/** フッタのリンク **/
.p-shop__ft-links {
    display: block;
    background-color: #ECEBEB;
    padding: var(--space-md) 0;
}
.p-shop__ft-links .l-inner {
    display: grid;
    gap: 2em;
}
.p-shop__ft-links__box {
    background-color: white;
    border-radius: 1.5em;
}
.p-shop__ft-links__box a {
    padding: 2em 1.5em 3em 1.5em;
    display: block;
    position: relative;
}
.p-shop__ft-links__box a::before {
    content: "";
    display: block;
    width: 3.8rem;
    height: 1em;
    display: inline-block;
    background-image: url('../images/arrow_l-gray.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 100% auto;
    position: absolute;
    right: 1.5em;
    bottom: 1.5em;
}
.p-shop__ft-links__ttl {
    display: grid;
}
.p-shop__ft-links__ttl .ttl--en {
    font-size: 1.2rem;
    line-height: 1em;
    font-family: var(--font-en);
    font-weight: 600;
}
.p-shop__ft-links__ttl .ttl--jp {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
}
.p-shop__ft-links__box dl {
    display: grid;
    gap: 1em;
    margin-top: 1em;
}
.p-shop__ft-links__box dl dt {
    font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
    .nav_open .l-header {
        height: 100vh;
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
        padding-bottom: 5em;
    }
    .l-menu-nav__list {
        display: flex;
        flex-direction: column;
    }
    .l-menu-nav__list li {
        border-top: 1px solid rgba(0, 0, 0, 0.5);
    }
    .l-menu-nav__list li a {
        font-size: 0.75em;
        display: block;
        padding: 1em 0;
    }
    .l-menu-nav__area {
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
        margin-bottom: 1em;
    }
    .l-hamburger__nav .nav__btn--contact .c-button {
        width: 100%;
    }
    .toggle-sp {
        position: relative;
    }
    .toggle-sp a {
        margin-right: 4em;
    }
    .toggle-sp + ul {
        display: none;
    }
    .toggle-btn {
        width: 1em;
        height: 1em;
        display: block;
        position: absolute;
        top: 1em;
        right: 0;
        cursor: pointer;
        border: 1px solid rgb(0, 0, 0, .7);
        border-radius: 50%;
    }
    .toggle-btn::before,.toggle-btn::after {
        content: "";
        display: block;
        height: 1px;
        width: 70%;
        background-color: black;
        position: absolute;
        top: calc(50% - 0.5px);
        left: 15%;
    }
    .toggle-btn::after {
        transform: rotate(90deg);
        transition: .3s;
    }
    .active .toggle-btn::after {
        transform: rotate(0deg);
    }
    .l-footer__nav .l-menu-nav__list li {
        border-color: white;
    }
    .l-footer__nav .toggle-btn {
        border-color: rgb(255, 255, 255, .7);
    }
    .l-footer__nav .toggle-btn::before,.l-footer__nav .toggle-btn::after {
        background-color: white;
    }
    .l-footer__nav .l-menu-nav__area {
        border-color: #FFF;
    }
}
@media screen and (min-width: 768px) {
    .l-inner {
        max-width: calc(var(--content-max-width) * 1px);
        margin: 0 auto;
    }
    .l-inner.--space {
        padding-top: 5em;
        padding-bottom: 5em;
    }
    .nav_open .l-header {
        height: auto;
    }
    .l-header__area {
        padding-left: 1.5em;
        padding-right: 1.5em;
        height: auto;
    }
    .logo,.l-footer__logo .logo {
        font-size: 2em;
        font-weight: 600;
        line-height: 1.6em;
    }
    .l-header__nav {
        display: flex;
        align-items: center;
        gap: 2.5em;
    }
    .l-header__contact {
        width: 16rem;
    }
    .l-header__contact a {
        width: auto;
        border-color: var(--color-glay1);
        display: block;
    }
    .l-header__menu {
        display: flex;
    }
    .l-header__menu li a {
        font-family: var(--font-en);
        font-weight: 600;
        padding-left: 1em;
        position: relative;
    }
    .l-header__menu li a::before {
        content: "";
        display: block;
        width: .5em;
        height: .5em;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        transition: .3s;
    }
    .l-header__menu li a:hover::before,
    .l-header__menu li.is-active a::before {
        background-color: var(--color-green3);
    }
    .l-hamburger__nav .nav__btn--contact {
        display: none;
    }
    .l-header__pc-area {
        display: block;
        max-width: 1640px;
        margin: 0 auto;
        padding-bottom: 1px;
    }
    .l-header__menu {
        display: flex;
        justify-content: space-between;
        margin: 1em auto 1.5em 5rem;
        width: 108rem;
    }
    .l-menu-nav__list a {
        font-size: 1.4rem;
    }
    .l-menu-nav__list a:hover {
        opacity: 0.5;
    }
    .l-menu-nav__list li > ul > li {
        font-size: 1.2rem;
    }
    .l-menu-nav__list li > ul > li a {
        font-size: 1.2rem;
        padding-left: 1.5em;
        position: relative;
    }
    .l-menu-nav__list li > ul > li a::before {
        content:"";
        width: 1em;
        height: 1px;
        background-color: black;
        display: inline-block;
        position: absolute;
        left: 0;
        top: 50%;
    }
    .l-menu-nav .l-menu-nav__area {
        display: flex;
        justify-content: space-between;
    }
    .l-menu-nav__btn .nav__btn--contact .c-button span {
        font-size: 1.2rem;
    }
    .l-hamburger__nav-inner {
        width: 83.6rem;
        display: block;
        margin: 1.125em auto 5em auto;
    }
    .l-hamburger__nav .l-menu-nav .l-menu-nav__areaC {
        display: flex;
        justify-content: space-between;
        width: 29.8rem;
    }
    .l-hamburger__nav .l-menu-nav__btn {
        margin: 3.5em auto 0 auto;
        width: 64rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4em;
    }
    .l-footer__nav .l-menu-nav {
        display: grid;
        grid-template-columns: 1fr 33.4rem;
        gap: 8.2rem;
    }
    .l-footer__nav .l-menu-nav .l-menu-nav__areaC {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .l-footer__nav .l-menu-nav__list li > ul > li a::before {
        background-color: white;
    }
    .l-footer__nav .l-menu-nav__btn .nav__btn--contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5em;
    }
    .l-footer {
        padding-top: 3.5em;
        padding-bottom: 5.5em;
    }
    .l-footer__logo {
        margin-bottom: 3em;
    }
    .l-footer__nav {
        position: relative;
    }
    .l-footer__copyright {
        position: absolute;
        left: 0;
        bottom: -1em;
        text-align: left;
        font-size: 0.75em;
    }
    .l-grid.--col3 {
        column-gap: 2rem;
        row-gap: 4.3rem;
        grid-template-columns: repeat(3, 1fr);
    }
    .l-grid.--col2 {
        column-gap: 2rem;
        row-gap: 4.3rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .l-grid.--col4 {
        column-gap: 2rem;
        row-gap: 4.3rem;
        grid-template-columns: repeat(4, 1fr);
    }
    /** フッタのリンク **/
    .p-shop__ft-links .l-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5em;
    }
    .p-shop__ft-links__box a {
        padding: 3em 2.5em;
    }
    .p-shop__ft-links__box a::before {
        top: 4.5em;
        right: 2.5em;
    }
    .p-shop__ft-links__ttl .ttl--en {
        font-size: 1.6rem;
    }
    .p-shop__ft-links__ttl .ttl--jp {
        font-size: 2.8rem;
    }
    .p-shop__ft-links__box dl {
        margin-top: 2em;
        grid-template-columns: auto 21.6rem;
        align-items: center;
    }
    .p-shop__ft-links__box dl dt {
        font-size: 1.8rem;
    }
}
@media screen and (min-width: 1281px) {
    .l-inner {
        max-width: calc(var(--content-max-width) * .1rem);
    }
}
/** list **/
.c-list > li {
    font-size: 1.5rem;
    padding-left: 1.25em;
    line-height: 2em;
    position: relative;
}
.c-list > li::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.c-list.--nom > li::before { content: "・"; }
.c-list.--note > li::before { content: "※"; }
/** button **/
.c-button {
    display: inline-block;
    padding: 1.125em 1em;
    line-height: 1em;
    border-radius: 2em;
    cursor: pointer;
    border: 1px solid black;
    background-color: black;
    color: white;
    text-align: center;
    width: 28rem;
}
.c-button span {
    font-size: 0.75em;
}
.c-button:hover {
    background-color: white;
    color: black;
}
.c-button.--outline {
    background-color: transparent;
    color: black;
}
.c-button.--outline:hover {
    background-color: black;
    color: white;
}
.c-button.--newwindow {
    display: block;
}
.c-button.--newwindow span {
    font-size: 1.2rem;
    padding-right: 2em;
    position: relative;
    display: inline-block;
    margin: 0 auto;
}
.c-button.--newwindow span::after {
    content: "";
    width: 1.25em;
    height: 1.25em;
    display: block;
    background-image: url('../images/icon_newwindow-white.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.c-button.--newwindow:hover span::after {
    background-image: url('../images/icon_newwindow-black.svg');
}
.c-more-link {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 2em;
    font-family: var(--font-en);
    font-weight: 600;
    padding-right: 4rem;
    background-image: url('../images/arrow_l-gray.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 3.8rem auto;
    float: right;
    margin-top: .5em;
}
.c-toplinks {
    margin-bottom: 3.5em;
}
.c-toplinks ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5em;
}
.c-toplinks a {
    text-align: center;
    display: block;
    height: 4.8rem;
    line-height: 1.4em;
    font-size: 1.2rem;
    border: 1px solid #959595;
    background-color: white;
    border-radius: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-toplinks a:hover,.c-toplinks .current-cat a {
    background-color: black;
    border-color: black;
    color: white;
}
/** breadcrumbs **/
.breadcrumbs {
    background-color: #40AE9833;
    width: 100%;
    padding: .25em 0;
}
.breadcrumbs__links {
    font-size: 0.875em;
    letter-spacing: .14em;
    line-height: 1.5em;
}
.breadcrumbs__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25em;
}
.breadcrumbs__links a,
.breadcrumbs__links span {
    color: var(--color-green2);
}
.breadcrumbs__links a.home {
    display: block;
    background-image: url('../images/icon_home.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 1.5em;
    height: 1.5em;
}
/** page heading **/
.c-page-title {
    margin: var(--space-md) auto;
    text-align: center;
}
.c-page-title span {
    line-height: 1.6em;
    font-size: 1.75em;
    font-weight: 500;
    letter-spacing: .16em;
}
.c-page-title .--title-en {
    font-family: var(--font-en);
    font-weight: 600;
}
.c-page-title.--ttl-style span {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
}
.c-page-title.--ttl-style span::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-green1);
}
.c-page-title.--ttl-style span::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 0.866em solid var(--color-green3);
}
.c-page-title__sub {
    margin-bottom: 2.5em;
    text-align: center;
}
.c-page-title__sub span {
    font-size: 1.375em;
    letter-spacing: .16em;
}
/** title **/
.c-section-title {
    margin-bottom: 2.5em;
    text-align: center;
}
.c-section-title span {
    font-size: 1.5em;
    line-height: 1.6;
    font-weight: 600;
    font-family: var(--font-en);
}
.c-section-title1 {
    background-color: var(--color-green3);
    padding: .25em .25em .25em 1.5em;
    position: relative;
}
.c-section-title1,.c-section-title2 {
    margin-bottom: 2em;
}
.c-section-title1::before {
    content: "";
    display: block;
    border-right: 1em solid transparent;
    border-top: 1em solid white;
    position: absolute;
    top: .25em;
    left: .25em;
}
.c-section-title1 span {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .16em;
    color: white;
    text-align: center;
    display: block;
}
.c-section-title2 {
    background-color: #40AE9833;
    text-align: center;
    padding: .25em;
}
.c-section-title2 span {
    line-height: 1.6em;
    letter-spacing: .16em;
    color: black;
}
.c-section-title2 span a {
    color: var(--color-green1);
}
.c-page-header-lead .c-page-title {
    margin-bottom: 0;
}
.c-page-header-lead .p-page-lead {
    font-weight: 500;
    text-align: center;
    margin: 1em auto 3.5em auto;
}
/** bg **/
.c-bg--white {
    background-color: white;
    position: relative;
    display: block;
}
.c-bg--white::before {
    content: "";
    background-color: white;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.c-bg--gray {
    background-color: var(--color-gray3);
}
.c-bg--gray2 {
    background-color: var(--color-gray2);
}
/** table **/
.p-tbl-style {
    width: 100%;
    margin-bottom: var(--space-md);
    border-bottom: 1px solid #ECEBEB;
}
.p-tbl-style th {
    font-weight: 500;
    padding-top: 1em;
    padding-bottom: 0;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #ECEBEB;
    width: 19rem;
}
.p-tbl-style td {
    font-size: 1.5rem;
    padding: 1em 0;
    border-top: 1px solid #ECEBEB;
}
/** news list **/
.p-shop__news .c-button {
    margin: 2.5em auto 0 auto;
    text-align: center;
    display: block;
}
.p-news-list {
    width: 100%;
    border-bottom: 1px solid #ECEBEB;
}
.p-news-list__item {
    border-top: 1px solid #ECEBEB;
}
.p-news-list__item a {
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    padding: 1em 0;
    gap: .75em;
}
.p-news-list__item a .post__title {
    font-size: 1.4rem;
}
/** shop info **/
.contact-list__shop dt {
    color: var(--color-green2);
    font-weight: 500;
}
.contact-list__shop dd .contact-list__addr {
    font-size: 1.2rem;
    margin-top: .25em;
}
.contact-list__shop dd p.contact-list__tel {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 500;
}
.contact-list__shop dd .p-contact__links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-shop__box .contact-list__shop {
    margin-top: 1em;
}
.p-shop__box .p-insta-link {
    width: 3.2rem;
}
a.p-insta-link:hover {
    opacity: .7;
}
/** post **/
.post__meta {
    display: flex;
    align-items: center;
    gap: .75em;
    margin: 1em 0;
}
.post__cat {
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
}
.post__cat .cat {
    font-size: 1.2rem;
    border-radius: 1.5em;
    border: 1px solid var(--color-gray1);
    background-color: white;
    padding: .25em 1em;
}
.post__date {
    font-size: 1.2rem;
    font-family: var(--font-en);
    font-weight: 600;
    color: var(--color-gray1);
}
.p-card__ttl {
    line-height: 1.6;
    font-weight: 400;
}
.p-cards__event .p-card__ttl {
    font-size: 1.2rem;
}
.p-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5em;
}
.p-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/** tab **/
.tab-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.tab-buttons li {
    cursor: pointer;
    padding: 1em 0;
    box-shadow: 0px 0px 1em 0px #0000001A;
    background-color: white;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
    border-top: 1px solid var(--color-gray1);
    border-left: 1px solid var(--color-gray1);
    border-right: 1px solid var(--color-gray1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.tab-buttons li.active {
    background-color: black;
    color: white;
}
.event-tabs .tab-buttons li {
    padding: .75em 0;
}
.tab-buttons span {
    font-size: 1.2rem;
}
.p-tabs__content {
    background-color: var(--color-gray3);
    padding: 2.5em 0;
    border-top: 1px solid var(--color-gray1);
}
.p-tabs__content .tab-panel {
    display: none;
}
.p-tabs__content .tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
from {opacity: 0;}
to { opacity: 1;}
}
/** faq **/
.faq__content p {
    font-size: 1.5rem;
}
.faq__content dt::before,
.faq__content dd::before {
    font-family: var(--font-en);
    font-size: 1.75em;
    font-weight: 600;
    position: absolute;
    top: .25em;
    left: 0;
}
.faq__content dt::before {
    content: "Q.";
    color: #007059;
}
.faq__content dd::before {
    content: "A.";
    color: var(--color-green2);
    left: 1em;
}
.faq__content dt {
    position: relative;
    padding: 1em 1.5em 1em 2em;
    border-top: 1px solid #ECEBEB;
}
.faq__content dd {
    position: relative;
    border-top: 1px solid #ECEBEB;
    padding: 1em 0 1em 3.75em;
}
.faq__content dd a {
    color: var(--color-green3);
}
.faq__content .toggle {
    position: relative;
}
.faq__content .toggle + dd {
    display: none;
}
.faq__content .toggle > span {
    cursor: pointer;
    display: block;
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 1em;
    right: 0;
}
.faq__content .toggle > span::before,
.faq__content .toggle > span::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: black;
    position: absolute;
    left: 0;
    top: 50%;
}
.faq__content .toggle >span::after {
    transform: rotate(90deg);
    transition: .3s;
}
.faq__content .toggle.active >span::after {
    transform: rotate(0deg);
}
/** page **/
.p-policy {
    margin-bottom: 3.5em;
}
.p-policy p,.p-policy dd {
    font-size: 1.5rem;
    line-height: 1.8;
}
.p-policy dl {
    padding-bottom: .5em;
}
.p-policy dl dt {
    padding-bottom: 1em;
    margin: 1em 0;
    display: block;
    border-bottom: 1px solid #ECEBEB;
}
.p-policy dl dt span {
    color: var(--color-green2);
}
/** contact **/
.contact-shop__lay {
    display: grid;
    gap: 1.5em;
    margin-bottom: var(--space-md);
}
.contact-shop {
    background-color: #40AE981A;
    padding: 2em 1em;
    border-radius: 1em;
    text-align: center;
}
.contact-shop dt {
    font-size: 1.375em;
    font-weight: 500;
}
.contact-shop dd {
    margin-top: 1em;
}
.contact-shop dd .contact-shop__name {
    font-size: 1.125em;
}
.contact-shop dd .contact-shop__tel {
    font-weight: 500;
}
.contact-shop dd .contact-shop__tel span {
    font-size: 2.2rem;
}
.contact-shop dd .c-button {
    margin-top: 1em;
}
.contact-shop__tel a {
    font-size: 1.375em;
}
@media screen and (max-width: 767px) {
    /** table **/
    .p-tbl-style th,.p-tbl-style td {
        display: block;
        width: 100%;
        padding-top: .5em;
        padding-bottom: 0;
    }
    .p-tbl-style td {
        padding: .5em 0;
        border-top: none;
    }
    .p-tabs__content .post__cat .cat {
        font-size: 1rem;
    }
    /** tab **/
    .tab-buttons {
        margin-bottom: -.5em;
    }
    .tab-buttons li:nth-child(1),
    .tab-buttons li:nth-child(2) {
        padding-bottom: 1.5em;
    }
    .tab-buttons li:nth-child(3),
    .tab-buttons li:nth-child(4) {
        transform: translateY(-.5em);
    }
    .event-tabs .tab-buttons {
        display: flex;
        flex-wrap: wrap;
    }
    .event-tabs .tab-buttons li:nth-child(-n+4) {
        width: 25%;
        padding-bottom: 1.5em !important;
        transform: translateY(0);
    }
    .event-tabs .tab-buttons li:nth-child(n+5):nth-child(-n+7) {
        width: 33.33%;
        transform: translateY(-.5em) !important;
    }
     .contact-shop dd .c-button {
        width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .c-page-title span {
        font-size: 4.6rem;
    }
    .c-page-title.--ttl-style span {
        column-gap: 1.25em;
    }
    .c-page-title__sub {
        margin-bottom: 4em;
    }
    .c-page-title__sub span {
        font-size: 2em;
    }
    .c-section-title1 {
        padding: .5em 2.5em;
    }
    .c-section-title1,.c-section-title2 {
        margin-bottom: 2.5em;
    }
    .c-section-title span {
        font-size: 2.5em;
    }
    .c-section-title1 span {
        font-size: 1.75em;
        text-align: left;
    }
    .c-section-title2 {
        padding: .25em;
    }
    .c-section-title2 span {
        font-size: 2.2rem;
    }
    .c-section-title2.--contact span {
        font-size: 2rem;
    }
    .c-toplinks ul {
        grid-template-columns: repeat(5, 1fr);
        gap: 3rem;
    }
    /** shop info **/
    .contact-list__shop dt {
        font-size: 1.125em;
    }
    .contact-list__shop dd .contact-list__addr {
        font-size: 1.5rem
    }
    .p-tabs__content {
        padding: 7.5em 0;
    }
    .p-shop__box .p-insta-link {
        width: 4.6rem;
    }
    /** news list **/
    .p-shop__news .c-button {
        margin-top: 2em;
    }
    .p-news-list__item a {
        display: grid;
        grid-template-columns: 8em 12em auto;
        padding: 1.25em 0;
    }
    .p-news-list__item a .post__title {
        font-size: 1.5rem;
    }
    /** tab **/
    .tab-buttons {
        max-width: 1640px;
        margin: 0 auto;
        grid-template-columns: repeat(4, 1fr);
    }
    .tab-buttons li {
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
        padding: 1.25em 0;
    }
    .event-tabs .tab-buttons {
        grid-template-columns: repeat(7, 1fr);
    }
    /** post **/
    .post__date {
        font-size: 1.6rem;
    }
    .p-cards__event .p-card__ttl {
        font-size: 1.5rem;
    }
    /** faq **/
    .faq__content dt::before,
    .faq__content dd::before {
        top: .5em;
    }
    .faq__content .toggle > span {
        top: 1.5em;
    }
    .faq__content dt {
        padding: 1.5em 2em 1.5em 2.5em;
    }
    .faq__content dd {
        padding: 1.5em 0 1.5em 4em;
    }
    /** page **/
    .p-policy {
        margin-bottom: 4.5em;
    }
    .p-policy dl dt {
        padding-bottom: 2em;
        margin: 2em 0;
    }
    .p-policy dl dt span {
        font-size: 1.125em;
    }
    /** contact **/
    .contact-shop__lay {
        grid-template-columns: 1fr 1fr;
        gap: 2.5em;
    }
    .contact-shop {
        border-radius: 2.5em;
        padding: 2.5em;
    }
    .contact-shop dt {
        font-size: 1.75em;
    }
    .contact-shop__name {
        font-size: 1.125em;
    }
    .contact-shop__tel a {
        font-size: 1.75em;
    }
}

/*
Theme Name: オフィスベンダー　オフィシャルサイト 2026
*/

