html {
    width: 100%;
    height: 100%;
    color: #0F0F0F;
    font-size: 62.5%;
    font-family: "Noto Serif JP", serif;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    background-color: #F7F7F6;

}

@media screen and (max-width: 767px) {
    /*body.top-page {
        background-color: #fff;
    }*/
}


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

.container {
    box-sizing: border-box;
    max-width: 1190px;
    padding: 0 20px;
    margin: 0 auto;
    overflow: hidden
}

.btn {
    font-size: 2rem;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    padding: 20px;
    position: relative;
    z-index: 0;
    transition: opacity 0.25s;
}

.btn:hover {
    opacity: 0.8;
}

.btn::after {
    content: '';
    display: inline-block;
    vertical-align: bottom;
    width: 20px;
    height: 20px;
    background-image: url(../img/common/btn_arrow.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.btn--white {
    color: #0F0F0F;
    background-color: #fff;
}

.btn--white::after {
    background-image: url(../img/common/btn_arrow_black.svg);
}

.btn--red {
    color: #fff;
    background-color: #D71518;
}

.btn--blue {
    color: #fff;
    background-color: #152D7E;
}

.btn.btn--shadow {
    box-shadow: 6px 6px 0 #D0D0D0;
}

.btn.btn--border::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    bottom: -7px;
    right: -7px;
    z-index: -1;
}

@media screen and (max-width: 991px) {
    .main {
        padding-top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .main {
        padding-top: 50px;
    }

    .btn {
        font-size: 1.7rem;
        gap: 10px;
        padding: 18px;
    }

    .btn.btn--shadow {
        box-shadow: 5px 5px 0 #D0D0D0;
    }

    .btn.btn--border::before {
        width: 38px;
        height: 38px;
        bottom: -6px;
        right: -6px;
    }
}


/* ---------------------------------------------
*   Opening
--------------------------------------------- */

#page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  z-index: 9999;
}
#page-loader.active {
  opacity: 1;
  pointer-events: all;
}

html.from-opening #page-loader { opacity: 1; pointer-events: all; }

/* ---------------------------------------------
*   Header
--------------------------------------------- */
.header {
    display: flex;
    min-width: 0;
    height: 80px;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    padding: 0 110px 0 20px;
    position: relative;
    z-index: 100;
}

.header__logo {
    flex: 0 0 auto;
    margin: 0;
    line-height: 1;
}

.header__logo a {
    transition: opacity 0.25s;
    text-decoration: none;
}

.header__logo a:hover {
    opacity: 0.8;
}

.header__logo img {
    height: 60px;
}

.header-nav {
    margin-left: auto;
    height: 100%;
}

.header-menu {
    display: flex;
    height: 100%;
    justify-content: flex-end;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-menu__item {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-menu__item > span,
.header-menu__item > a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.25s;
}

.header-menu__item > span:hover,
.header-menu__item > a:hover {
    opacity: 0.8;
}

.header-nested-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: visible;
    height: auto;
    opacity: 1;
    transition: opacity 0.4s, height 0.4s;
}

.header-menu__item .header-nested-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
    height: 0;
    opacity: 0;
}

.header-menu__item.is-active .header-nested-menu-container {
    overflow: visible;
    height: auto;
    opacity: 1;
    transition: opacity 0.4s;
}

.header-nested-menu-container {
    background-color: #0C2350;
}

.header-nested-menu-content {
    padding: 35px 0 30px;
}

.header-nested-menu {
    display: flex;
    gap: 35px;
    padding: 0;
    margin: 0;
}

.header-nested-menu__item {
    flex: 0 0 calc((100% - 35px * 2) / 3);
}

.header-nested-menu-card {
    color: #fff;
    display: block;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.25s;
}

.header-nested-menu-card:hover {
    opacity: 0.8;
}

.header-nested-menu-card__img {
    height: 110px;
    object-fit: cover;
}

.header-nested-menu-card__img img {
    width: 100%;
    height: 100%;
}

.header-nested-menu-card__title {
    font-size: 1.7rem;
    line-height: 1;
    margin: 15px 0 0;
}

@media screen and (max-width: 1040px) {
    .header-menu {
        gap: 20px;
    }

    .header-menu__item a {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .header {
        height: 50px;
        padding: 0 50px 0 10px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 800;
    }

    .header__logo img {
        height: 40px;
    }

    .header-menu {
        display: none;
    }
}


/* ---------------------------------------------
*   Global Nav
--------------------------------------------- */
.gnav {
    width: 480px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -480px;
    z-index: 800;
    overflow-y: scroll;
    background-color: #0F0F0F;
    padding: 50px 40px;
    transition: right 0.4s;
}

.gnav.is-active {
    right: 0;
}

.gnav__logo {
    text-align: center;
    margin: 0 0 40px;
}

.gnav__logo a {
    text-decoration: none;
    transition: opacity 0.25s;
}

.gnav__logo a:hover {
    opacity: 0.8;
}

.gnav__logo img {
    height: 60px;
}

.gnav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gnav-menu__item {
    border-top: 1px solid #fff;
}

.gnav-menu__link {
    display: block;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    padding: 18px 0;
    transition: opacity 0.25s;
}

.gnav-menu__link:hover {
    opacity: 0.8;
}

.gnav-menu__link--has-nested-menu {
    padding-bottom: 12px;
}

.gnav-nested-menu {
    list-style: none;
    padding: 0 0 0 35px;
    margin: 0 0 20px;
}

.gnav-nested-menu__item + .gnav-nested-menu__item {
    margin-top: 6px;
}

.gnav-nested-menu__link {
    display: inline-flex;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    transition: opacity 0.25s;
    padding-left: 25px;
    position: relative;
}

.gnav-nested-menu__link:hover {
    opacity: 0.8;
}

.gnav-nested-menu__link::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0.4em;
}

.gnav-btn-list {
    padding: 45px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.gnav-btn {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    color: #0F0F0F;
    font-size: 2rem;
    line-height: 1;
    background-color: #fff;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 25px / 50%;
    transition: opacity 0.25s;
}

.gnav-btn:hover {
    opacity: 0.8;
}

.gnav-toggle {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    background: none;
    appearance: none;
    border-radius: 0;
    width: 80px;
    height: 80px;
    background-color: #0F0F0F;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
}

.gnav-toggle__bar {
    top: 30px;
    left: 17.5px;
    margin-top: -1.5px;
    transition: background-color 0s 0.15s;
}

.gnav-toggle__bar,
.gnav-toggle__bar::before,
.gnav-toggle__bar::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background-color: #fff;
    position: absolute;
}

.gnav-toggle__bar::before {
    top: -13px;
    transition: top 0.15s 0.15s, transform 0.15s 0s;
}

.gnav-toggle__bar::after {
    bottom: -13px;
    transition: bottom 0.15s 0.15s, transform 0.15s 0s;
}

.gnav-toggle.is-active .gnav-toggle__bar {
    background-color: transparent;
    transition: background-color 0s 0.15s;
}

.gnav-toggle.is-active .gnav-toggle__bar::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.15s 0s, transform 0.15s 0.15s;
}

.gnav-toggle.is-active .gnav-toggle__bar::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.15s 0s, transform 0.15s 0.15s;
}

.gnav-toggle__label {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'メイリオ', 'Meiryo', sans-serif;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    position: absolute;
    bottom: 13px;
    left: 0;
    right: 0;
    z-index: 0;
}

@media screen and (max-width: 991px) {
    .gnav {
        width: 100%;
        right: -100%;
        padding: 50px 20px;
    }

    .gnav__logo {
        margin: 0 0 20px;
    }

    .gnav-menu__link {
        font-size: 1.5rem;
        padding: 14px 0;
    }

    .gnav-menu__link--has-nested-menu {
        padding-bottom: 10px;
    }

    .gnav-nested-menu {
        padding: 0 0 0 25px;
        margin: 0 0 18px;
    }

    .gnav-nested-menu__link {
        font-size: 1.5rem;
        padding-left: 20px;
    }

    .gnav-nested-menu__link::before {
        width: 11px;
        height: 11px;
    }

    .gnav-btn-list {
        padding: 20px 0;
        gap: 15px;
    }

    .gnav-btn {
        max-width: 180px;
        font-size: 1.5rem;
        padding: 10px;
        border-radius: 17.5px / 50%;
    }

    .gnav-toggle {
        width: 50px;
        height: 50px;
    }

    .gnav-toggle__bar {
        top: 20px;
        left: 11px;
    }

    .gnav-toggle__bar,
    .gnav-toggle__bar::before,
    .gnav-toggle__bar::after {
        width: 28px;
        height: 3px;
    }

    .gnav-toggle__bar::before {
        top: -8px;
    }

    .gnav-toggle__bar::after {
        bottom: -8px;
    }

    .gnav-toggle__label {
        font-size: 1rem;
        transform: scale(0.7);
        bottom: 6px;
    }
}


/* ---------------------------------------------
*   Footer
--------------------------------------------- */
.footer {
    color: #fff;
    background-color: #5E97D0;
    position: relative;
    z-index: 0;
    margin-top: 100px;
}

.footer::before {
    content: '';
    display: block;
    width: 526px;
    height: 492px;
    position: absolute;
    bottom: 37px;
    left: 0;
    z-index: -1;
    background-image: url(../img/common/footer_img.png);
    background-size: contain;
    background-position: bottom left;
}

.footer__inner {
    display: flex;
    justify-content: flex-end;
    padding: 80px 10px 45px 0;
}

.footer__content {
    min-width: 430px;
}

.footer__logo {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer__logo a {
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer__logo a:hover {
    opacity: 0.8;
}

.footer__logo img {
    height: 70px;
}

.footer__logo img.footer__logo--shop {
    height: 96px;
}

.footer__divider {
    border-top: 1px solid #fff;
    margin: 25px 0;
}

.footer__nav {
    display: flex;
    gap: 45px;
    line-height: 1;
}

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu__item + .footer-menu__item {
    margin-top: 16px;
}

.footer-menu__item a {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer-menu__item a:hover {
    opacity: 0.8;
}

.footer__copyright {
    font-size: 1.3rem;
    line-height: 1;
    background-color: #0F0F0F;
    text-align: center;
    padding: 12px 0;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .footer {
        background: none;
        margin-top: 0;
    }

    .footer::before {
        width: auto;
        height: auto;
        padding-top: 79.46%;
        background-size: cover;
        background-position: top left;
        background-image: url(../img/common/footer_img_sp.png);
        position: static;
    }

    .footer__inner {
        display: flex;
        justify-content: flex-end;
        padding: 0;
    }

    .footer__content {
        min-width: none;
    }

    .footer__logo {
        position: absolute;
        top: 18%;
        right: 4vw;
        z-index: 10;
    }

    .footer__logo img {
        width: 56vw;
        height: auto;
    }

    .footer__divider {
        display: none;
    }

    .footer__nav {
        display: none;
    }

    .footer__logo--shop {
        display: none;
    }
}


/* ---------------------------------------------
*   MV
--------------------------------------------- */
.mv-slider__slide {
    height: calc(100svh - 80px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
    .mv-slider__slide {
        height: calc(100svh - 50px);
    }
}

@media screen and (max-width: 767px) {
    .mv-slider__slide {
        height: auto;
        padding-top: 173.6%;
    }
}


/* ---------------------------------------------
*   Reason
--------------------------------------------- */
.reason-sec {
    padding: 100px 0 115px;
    background-image: url(../img/top/reason_bg.jpg);
    background-size: 541px 833px;
    background-position: top right;
    background-repeat: no-repeat;
}

.reason-sec__inner {
    max-width: 680px;
}

.reason-sec__title {
    font-size: 6.8rem;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 35px;
    border-bottom: 8px solid #D71518;
    margin: 0 0 45px;
    white-space: nowrap
}

.reason-sec__description {
    font-size: 1.8rem;
    line-height: 2.1;
    margin: 0 0 40px;
    background-color: rgba(247, 247, 246, 0.7);
}

@media screen and (max-width: 767px) {
    .reason-sec {
        padding: 85px 0 35px;
        background-size: 292px 450px;
    }

    .reason-sec__inner {
        max-width: none;
    }

    .reason-sec__title {
        font-size: 3.6rem;
        line-height: 1;
        display: inline-block;
        padding-bottom: 15px;
        border-bottom: 6px solid #D71518;
        margin: 0 0 30px;
    }

    .reason-sec__title img {
        height: 36px;
    }

    .reason-sec__description {
        font-size: 1.5rem;
        line-height: 1.746;
        margin: 0 0 15px;
        padding: 23px 15px 0;
        background-color: rgba(255, 255, 255, 0.7);
    }

    .reason-sec__btn {
        width: 100%;
    }
}


/* ---------------------------------------------
*   Loop Slider
--------------------------------------------- */
.loop-slider .swiper-wrapper {
    transition-timing-function: linear;
}

.loop-slider .swiper-slide {
    width: 28.125vw;
}

.loop-slider__slide {
    padding-top: 66.66%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    .loop-slider .swiper-slide {
        width: 74.6vw;
    }

    .loop-slider__slide {
        padding-top: 66.66%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}


/* ---------------------------------------------
*   Strength
--------------------------------------------- */
.strength-sec {
    padding: 110px 0 80px;
}

.strength-sec__top {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: center;
}

.strength-sec__title {
    font-size: 2.6rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    margin: 0;
}

.strength-sec__description {
    font-size: 1.7rem;
    line-height: 2;
    writing-mode: vertical-rl;
    margin: 0 50px;
}

.strength-sec__btn {
    color: inherit;
    display: inline-flex;
    flex-direction: row;
    gap: 20px;
    font-size: 1.9rem;
    writing-mode: vertical-rl;
    line-height: 1;
    text-decoration: none;
    padding: 30px 20px;
    border: 1px solid #0F0F0F;
    position: relative;
    z-index: 0;
    transition: opacity 0.25s;
}

.strength-sec__btn:hover {
    opacity: 0.8;
}

.strength-sec__btn::after {
    content: '';
    display: block;
    width: 17px;
    height: 10px;
    background-image: url(../img/common/strength_btn_arrow.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.strength-sec__btn::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-bottom: 1px solid #0F0F0F;
    border-right: 1px solid #0F0F0F;
    position: absolute;
    bottom: -6px;
    right: -6px;
}

.strength-sec__top {
    display: flex;
    margin-bottom: 95px;
}

.strength-sec__middle-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.strength-sec__bottom {
    padding: 140px 0 40px;
    position: relative;
    z-index: 0;
}

.strength-sec__map {
    background-image: url(../img/top/strength_map.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.strength-sec__bottom-copy {
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.44;
    margin: 0 0 245px;
}

.strength-sec__bottom-description {
    max-width: 540px;
    font-size: 1.7rem;
    line-height: 1.76;
    margin: 0 0 0 auto;
    padding-top: 10px;
    padding-left: 10px;
    background-color: rgba(247, 247, 246, 0.7);
}

@media screen and (max-width: 767px) {
    .strength-sec {
        padding: 55px 0;
    }

    .strength-sec__top {
        flex-direction: column;
        margin-bottom: 55px;
    }

    .strength-sec__title {
        font-size: 2.6rem;
        margin: 0 auto 50px;
    }

    .strength-sec__description {
        width: 100%;
        font-size: 1.6rem;
        line-height: 1.75;
        writing-mode: horizontal-tb;
        margin: 0 0 35px;
    }

    .strength-sec__btn {
        writing-mode: horizontal-tb;
        padding: 20px 35px;
        gap: 16px;
        align-self: center;
        align-items: center;
    }

    .strength-sec__btn::after {
        content: '';
        display: block;
        width: 17px;
        height: 10px;
        transform: rotate(-90deg);
        margin-top: 1px;
    }

    .strength-sec__middle {
        margin-left: -20px;
        margin-right: -20px;
    }

    .strength-sec__bottom {
        padding: 40px 0 0;
    }

    .strength-sec__map {
        padding-top: 70%;
        position: static;
        margin: 0 0 20px;
        background-position: center center;
    }

    .strength-sec__bottom-copy {
        font-size: 2.2rem;
        margin: 0 0 20px;
    }

    .strength-sec__bottom-description {
        max-width: none;
        font-size: 1.5rem;
        line-height: 1.74;
        margin: 0 0 0 auto;
        background-color: transparent;
    }
}


/* ---------------------------------------------
*   Menu
--------------------------------------------- */
.menu-sec {
    color: #fff;
    background-color: #0C2350;
    padding: 80px 0 75px;
}

.menu-sec__buri-tai-title {
    text-align: center;
    margin: 0 0 50px;
}

.menu-sec__buri-tai-title img {
    width: 100%;
    max-width: 1000px;
}

.menu-sec__description {
    font-size: 1.7rem;
    line-height: 1.764;
    margin: 0 0 30px;
}

.menu-sec__ranking-title {
    font-size: 5rem;
    line-height: 1.2;
    text-align: center;
    margin: 50px 0 50px;
}

.menu-sec__ranking-title small {
    font-size: 0.4em;
}

.menu-card-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.menu-card-list__item {
    flex: 0 0 calc((100% - 30px * 4) / 5);
}

.menu-card__img {
    aspect-ratio: 41 / 32;
    width: 100%;
    height: auto;
    margin: 0 0 10px;
}

.menu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card__title {
    font-weight: 600;
    text-align: center;
}

.menu-sec__ranking-btn-container {
    margin-top: 45px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.menu-sec__ranking-btn {
    width: 250px;
}

@media screen and (max-width: 991px) {
    .menu-card-list__item {
        flex: 0 0 calc((100% - 30px * 3) / 4);
    }
}

@media screen and (max-width: 767px) {
    .menu-sec {
        padding: 55px 0;
    }

    .menu-sec__buri-tai-title {
        margin: 0 0 25px;
    }

    .menu-sec__buri-tai-title img {
        width: 100%;
        max-width: none;
    }

    .menu-sec__description {
        font-size: 1.5rem;
    }

    .menu-sec__buri-tai-btn-container {
        text-align: center;
    }

    .menu-sec__buri-tai-btn-container .btn {
        padding: 20px 20px 20px 30px;
    }

    .menu-sec__ranking-title {
        font-size: 2.8rem;
        line-height: 1.3;
        margin: 40px 0 25px;
    }

    .menu-sec__ranking-title small {
        font-size: 0.57em;
    }

    .menu-card-list {
        gap: 20px 15px;
    }

    .menu-card-list__item {
        flex: 0 0 calc((100% - 15px) / 2);
    }

    .menu-card__img {
        aspect-ratio: 40 / 31;
        margin: 0 0 8px;
    }

    .menu-card__title {
        font-size: 1.3rem;
    }

    .menu-sec__ranking-btn-container {
        margin-top: 40px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .menu-sec__ranking-btn {
        width: 250px;
    }
}


/* ---------------------------------------------
*   Shop
--------------------------------------------- */
.shop-sec {
    padding: 90px 0;
}

.shop-sec__inner {
    border: 2px solid #0F0F0F;
    padding: 70px 7% 30px;
}

.shop-sec__title {
    font-size: 5rem;
    line-height: 1;
    margin: 0 0 10px;
    text-align: center;
}

.shop-sec__title-en {
    font-size: 2rem;
    font-weight: 400;
}

.shop-sec__title-ja {
    margin-top: 10px;
    letter-spacing: 0.25em;
    text-indent: 0.25em;
}

.shop-area {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #C3C3C3;
}

.shop-area:last-child {
    border-bottom: none;
}

.shop-area__name {
    flex: 0 0 120px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    padding: 12px 0;
    margin: 0;
    border: 1px solid #0F0F0F;
    background-color: #fff;
    text-align: center;
}

.shop-list {
    flex: 1 1 auto;
    display: flex;
    min-width: 0;
    gap: 35px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop-list__item {
    flex: 0 0 calc((100% - 35px * 2) / 3);
}

.shop-card {
    color: inherit;
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 0;
    transition: opacity 0.25s;
}

.shop-card:hover {
    opacity: 0.8;
}

.shop-card__label {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    padding: 8px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.shop-card__label--red {
    background-color: #D71518;
}

.shop-card__label--blue {
    background-color: #141074;
}

.shop-card__img {
    aspect-ratio: 25 / 18;
    width: 100%;
    height: auto;
    margin: 0 0 12px;
}

.shop-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card__name {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin: 0;
}

.shop-card__city {
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
    margin: 10px 0 0;
}

@media screen and (max-width: 767px) {


    .shop-area:first-of-type {
        border-top: 1px solid #C3C3C3;
        margin-top: 35px
    }

    .shop-sec {
        padding: 35px 0 50px;
    }

    .shop-sec__inner {
        padding: 35px 20px 10px;
    }

    .shop-sec__title {
        font-size: 3rem;
        margin: 0 0 20px;
    }

    .shop-sec__title-en {
        font-size: 1.5rem;
    }

    .shop-area {
        display: block;
        padding: 25px 0;
    }

    .shop-area__name {
        display: inline-block;
        font-size: 1.5rem;
        padding: 8px 15px;
        margin: 0 0 20px;
    }

    .shop-list {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-width: 0;
        gap: 20px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .shop-list__item {
        flex: 0 0 auto;
    }

    .shop-card {
        display: grid;
        grid-template-columns: 155px 1fr;
        grid-template-rows: auto auto 1fr;
        grid-template-areas:
            "img label"
            "img name"
            "img city";
    }

    .shop-card__label {
        grid-area: label;
        display: inline-block;
        font-size: 1.3rem;
        padding: 5px;
        margin-top: 0px;
        position: static;
        justify-self: self-start;
    }

    .shop-card__img {
        grid-area: img;
        width: 140px;
        aspect-ratio: 25 / 18;
        margin: 0;
    }

    .shop-card__name {
        font-size: 1.6rem;
        text-align: left;
        line-height: 1.2;
        margin-top: 7px;
    }

    .shop-card__city {
        text-align: left;
        margin: 6px 0 0;
    }
}


/* ---------------------------------------------
*   Information
--------------------------------------------- */
.info-sec {
    padding: 0 0 45px;
}

.info-sec__title {
    line-height: 1;
    text-align: center;
    margin: 0 0 20px;
}

.info-sec__title img {
    height: 40px;
}

.info-card-list {
    margin-bottom: 45px;
}

.info-card {
    display: flex;
    border-bottom: 1px dotted #707070;
    padding: 20px 0;
}

.info-card__date {
    width: 115px;
    flex: 0 0 115px;
}

.info-card__category {
    flex: 0 0 90px;
    width: 90px;
}

.info-card__category-label {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    padding: 4px 6px;
    color: #fff;
}

.info-card__category-label--orange {
    color: #fff;
    background-color: #F76C06;
}

.info-card__category-label--green {
    color: #fff;
    background-color: #075713;
}

.info-card__category-label--brown {
    color: #fff;
    background-color: #7B3110;
}

.info-card__title {
    font-size: 1.6rem;
    font-weight: 400;
    flex: 1 1 auto;
    margin: 0;
}

.info-card__title a {
    color: inherit;
    text-decoration: none;
}

.info-card__title a:hover {
    text-decoration: underline;
}

.info-sec__btn-container {
    text-align: center;
    margin-top: 35px
}

@media screen and (max-width: 767px) {
    .info-sec {
        padding: 0 0 30px;
    }

    .info-sec__title {
        margin: 0 0 10px;
    }

    .info-sec__title img {
        height: 35px;
    }

    .info-card-list {
        margin-bottom: 30px;
    }

    .info-card {
        flex-wrap: wrap;
        align-items: center;
    }

    .info-card__date {
        font-size: 1.5rem;
        width: auto;
        flex: 0 0 auto;
    }

    .info-card__category {
        flex: 1 1 auto;
        width: auto;
        margin-left: 7px;
    }

    .info-card__category-label {
        font-size: 1.2rem;
    }

    .info-card__title {
        flex: 0 0 100%;
        font-size: 1.5rem;
        margin: 10px 0 0;
    }

    .info-sec__btn-container .btn {
        padding-left: 35px;
        padding-right: 35px;
    }
}


/* ---------------------------------------------
*   Banner
--------------------------------------------- */
.banner-sec {
    padding: 35px 0 35px;
}

.banner-slider .swiper-slide {
    width: 300px !important;
}

.banner-slider__slide {
    display: block;
    transition: opacity 0.25s;
}

.banner-slider__slide:hover {
    opacity: 0.8;
}

.banner-slider__slide img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .banner-sec {
        padding: 0 0 30px;
    }

    .banner-slider {
        margin: 0 -20px
    }

    .banner-slider .swiper-slide {
        width: calc(100% - 40px * 2) !important;
    }

    .banner-slider__slide {
        display: block;
        transition: opacity 0.25s;
    }

    .banner-slider__slide:hover {
        opacity: 0.8;
    }

    .banner-slider__slide img {
        width: 100%;
        height: auto;
        display: block;
    }
}


/* ---------------------------------------------
*   Shop Detal Eyecatch
--------------------------------------------- */
.shop-detail__eyecatch {
    display: flex;
    margin: 0;
}

.shop-detail__eyecatch-img-col {
    flex: 0 0 78.125%;
}

.shop-detail__eyecatch-img {
    padding-top: 68%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.shop-detail__eyecatch-text-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
}

.sp_inner {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.shop-detail__eyecatch-logo {
    width: 11.79vw;
}

.shop-detail__eyecatch-logo img {
    width: 100%;
    height: auto;
}

.shop-detail__eyecatch-name {
    font-size: 3.6vw;
    font-weight: 600;
    margin: 5% 0 0;
    writing-mode: vertical-rl;
    line-height: 1;
}

.shop-uwajima .shop-detail__eyecatch-name,
.shop-oguri .shop-detail__eyecatch-name,
.shop-kumanodai .shop-detail__eyecatch-name {
    font-size: 4.6vw;
}

.shop-detail__eyecatch-name small {
    font-size: 0.423em;
    padding-top: 0.1em;
}

@media screen and (max-width: 767px) {
    .shop-detail__eyecatch {
        position: relative;
        z-index: 0;
    }

    .sp_inner {
        background: #fff;
        width: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        padding: 12px 0 25px
    }

    .shop-detail__eyecatch-img-col {
        flex: 0 0 86.66%;
    }

    .shop-detail__eyecatch-img {
        padding-top: 86.23%;
    }

    .shop-detail__eyecatch-text-col {
        width: 23vw;
        position: absolute;
        /*justify-content:flex-start;
        padding-top: 10px;
        padding-bottom: 25px;
        background-color: #fff;*/
        right: 0;
        z-index: 10;
        top: 0%;
        bottom: 0%;
        margin: 15px 0;
    }

    .shop-detail__eyecatch-logo {
        width: 70px;
    }

    .shop-detail__eyecatch-name {
        font-size: 5.2vw;
        margin: 5px 0 0;
        writing-mode: vertical-rl;
        line-height: 1.1;
        padding-left: 0.2em;
    }

    .shop-uwajima .shop-detail__eyecatch-name,
    .shop-oguri .shop-detail__eyecatch-name,
    .shop-kumanodai .shop-detail__eyecatch-name {
        font-size: 6.2vw;
        margin: 8px 0 0;
    }

    .shop-detail__eyecatch-name small {
        font-size: 0.6em;
    }
}


/* ---------------------------------------------
*   Shop Detal Navigation
--------------------------------------------- */
.shop-detail__nav {
    display: flex;
    justify-content: flex-end;
    margin-top: -60px;
}

.shop-detail__nav-list {
    display: flex;
    gap: 25px;
    padding: 40px 50px;
    margin: 0;
    align-items: center;
    position: relative;
    z-index: 0;
}

.shop-detail__nav-list::before {
    content: '';
    display: block;
    background-color: #D8D8D8;
    position: absolute;
    top: 7px;
    left: -7px;
    right: 0;
    bottom: -7px;
    z-index: -1;
}

.shop-detail__nav-list::after {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.shop-detail__nav-list-item--instagram {
    margin-left: 10px;
}

.shop-detail__nav-link {
    color: inherit;
    font-size: 1.8rem;
    text-decoration: none;
    transition: opacity 0.25s;
}

.shop-detail__nav-link--instagram img {
    display: block;
    width: 40px;
    height: 40px;
}

.shop-detail__nav-link:hover,
.shop-detail__nav-link--instagram:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .shop-detail__nav {
        display: flex;
        justify-content: flex-start;
        margin-top: 0;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        background-color: #fff;
    }

    /*.shop-detail__nav::-webkit-scrollbar {
        display: none;
    }*/

    .shop-detail__nav {
        overflow-x: auto;
        /* scroll → auto に */
        -ms-overflow-style: auto;
        /* IE/Edge */
        scrollbar-width: auto;
        /* Firefox */
    }

    .shop-detail__nav::-webkit-scrollbar {
        display: block;
        /* Chrome/Safari で表示 */
        height: 3px;
        /* 高さ指定（お好みで） */
    }

    .shop-detail__nav::-webkit-scrollbar-thumb {
        background: #ccc;
        /* スクロールバーの色 */
        border-radius: 3px;
    }

    .shop-detail__nav::-webkit-scrollbar-track {
        background: #f0f0f0;
    }

    .shop-detail__nav-list {
        flex: 0 0 auto;
        display: flex;
        gap: 15px;
        padding: 17px 15px;
        margin: 0;
        align-items: center;
        position: relative;
        z-index: 0;
    }

    .shop-detail__nav-list::before,
    .shop-detail__nav-list::after {
        display: none;
    }

    .shop-detail__nav-list-item {
        flex: 0 0 auto;
    }

    .shop-detail__nav-list-item--instagram {
        margin-left: 0px;
    }

    .shop-detail__nav-link {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 1.5rem;
    }

    .shop-detail__nav-link:hover {
        opacity: 1;
    }

    .shop-detail__nav-link::after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        border-top: 10px solid #D71518;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
    }

    .shop-detail__nav-link--instagram img {
        width: 30px;
        height: 30px;
    }
}


/* ---------------------------------------------
*   Event
--------------------------------------------- */
.event-sec {
    padding: 90px 0 0;
}

.event-sec__title {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin: 0 35px 35px 0;
}

.event-sec__title-icon img {
    width: 70px;
}

.event-sec__title-en {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
}

.event-sec__title-ja {
    margin: 8px 0 0;
}

.event-sec__banner-list {
    display: flex;
    min-width: 0;
    justify-content: center;
    max-width: 765px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.event-sec__banner-list-item {
    flex: 0 0 calc((100% - 20px) / 2);
}

.event-sec__banner {
    transition: opacity 0.25s;
}

.event-sec__banner:hover {
    opacity: 0.8;
}

.event-sec__banner img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .event-sec {
        padding: 65px 0 0;
    }

    .event-sec__title {
        font-size: 2.8rem;
        gap: 8px;
        margin: 0 10px 30px 0;
    }

    .event-sec__title-icon img {
        width: 50px;
    }

    .event-sec__title-en {
        font-size: 1.4rem;
    }

    .event-sec__title-ja {
        margin: 6px 0 0;
    }

    .event-sec__banner-list {
        display: flex;
        min-width: 0;
        justify-content: flex-start;
        max-width: 765px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
        gap: 20px;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* スクロール非表示 */
    .event-sec__banner-list::-webkit-scrollbar {
        display: none;
    }

    .event-sec__banner-list-item {
        flex: 0 0 245px
    }
}


/* ---------------------------------------------
*   Reservation
--------------------------------------------- */
.reservation-sec {
    padding: 65px 0 80px;
}

.reservation-sec__btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.reservation-sec__btn {
    display: inline-flex;
    flex: 0 0 320px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'メイリオ', 'Meiryo', sans-serif;
    background-color: #D71518;
    padding: 14px;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 25px / 50%;
    transition: opacity 0.25s;
}

.reservation-sec__btn:hover {
    opacity: 0.8;
}

.reservation-sec__btn::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.reservation-sec__btn--online::after {
    background-image: url(../img/common/icon_online.svg);
}

.reservation-sec__btn--tel::after {
    background-image: url(../img/common/icon_tel.svg);
}

@media screen and (max-width: 767px) {
    .reservation-sec {
        padding: 30px 0 50px;
    }

    .reservation-sec__btn-container {
        gap: 15px;
    }

    .reservation-sec__btn {
        flex: 0 0 270px;
        font-size: 1.6rem;
        padding: 12px;
        border-radius: 20px / 50%;
    }

    .reservation-sec__btn::after {
        width: 20px;
        height: 20px;
    }
}


/* ---------------------------------------------
*   Information
--------------------------------------------- */

.information-sec {
    padding: 0 0 85px;
}

.information-sec .container {
    background: rgba(234, 233, 237, 0.85);
    padding: 40px 60px 45px;
    border-radius: 10px
}

/*.information-sec h2 {
    text-align: center;
    margin: 0 0 35px;
    font-weight: 600;
    font-size: 3rem
}*/

.info_ttl_wrap {
    text-align: center;
    margin: 0 0 30px;
}

.information-sec h2 {
    font-weight: 600;
    font-size: 2.4rem;
    margin: 0;
    display: inline-block;
    position: relative;
    padding: 0 3.2em;
    color: #0F0F0F;
}

.information-sec h2::before,
.information-sec h2::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background-color: #D71518;
}

.information-sec h2::before {
    left: 0;
}

.information-sec h2::after {
    right: 0;
}

.information-sec .btn {
    font-size: 1.7rem;
    padding: 15px 20px
}

.information-sec .info-sec__btn-container {
    margin-top: 30px
}

@media screen and (max-width: 767px) {

    .information-sec {
        padding: 0 0 50px;
    }

    .information-sec .container {
        padding: 28px 15px 25px;
        ;
        margin-right: 15px;
        margin-left: 15px
    }

    .info_ttl_wrap {
        margin: 0 0 20px;
    }

    .information-sec h2 {
        font-size: 1.9rem;
        padding: 0 2.4em;
    }

    .information-sec h2::before,
    .information-sec h2::after {
        width: 35px;
        height: 2px;
    }

    .information-sec .btn {
        font-size: 1.55rem;
        padding: 9px 20px 11px
    }

    .information-sec .info-sec__btn-container {
        margin-top: 20px
    }
}

/* ---------------------------------------------
*   Instagram
--------------------------------------------- */
.instagram-sec__title {
    margin: 0 0 20px;
    text-align: center;
}

.instagram-sec__title img {
    height: 60px;
}

@media screen and (max-width: 767px) {
    .instagram-sec__title {
        margin: 0 0 15px;
    }

    .instagram-sec__title img {
        height: 42px;
    }
}


/* ---------------------------------------------
*   Shop Menu
--------------------------------------------- */
.shop-menu-sec {
    padding: 85px 0 50px;
}

.shop-menu-sec__title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1;
    padding: 0 0 25px;
    margin: 0 0 45px;
    border-bottom: 4px solid #D71518;
}

.shop-menu-sec__tab-menu {
    display: flex;
    min-width: 0;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.menu-sec__tab-menu-item {
    flex: 1;
    text-align: center;
    font-size: 1.7rem;
    line-height: 1;
    padding: 20px 10px;
    background-color: #EAEAEA;
    cursor: pointer;
    transition: color 0.25s, background-color 0.25s;
}

.menu-sec__tab-menu-item:hover,
.menu-sec__tab-menu-item.is-active {
    color: #fff;
    background-color: #234881;
}

.menu-sec__tab-menu-item + .menu-sec__tab-menu-item {
    border-left: 1px solid #FFFFFF;
}

.shop-menu-card-list {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    gap: 30px 25px;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
    opacity: 0;
    height: 0;
    transition: height 0s, opacity 0s;
}

.shop-menu-card-list.is-active {
    height: auto;
    opacity: 1;
    transition: height 0s 0s, opacity 0.5s 0.2s;
}

.shop-menu-card-list__item {
    flex: 0 0 calc((100% - 25px * 4) / 5);
    background-color: #fff;
    padding: 10px 15px 20px;
    border-radius: 10px;
}

.shop-menu-card {}

.shop-menu-card__img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    margin: 0;
}

.shop-menu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-menu-card__name {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    margin: 0 0 6px;
}

.shop-menu-card__price {
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
}

.shop-menu-card__price span {
    font-size: 1.3rem;
}

@media screen and (max-width: 991px) {
    .menu-sec__tab-menu-item {
        font-size: 1.5rem;
        padding: 20px 5px;
    }

    .shop-menu-card-list__item {
        flex: 0 0 calc((100% - 25px * 3) / 4);
    }
}

@media screen and (max-width: 767px) {
    .shop-menu-sec {
        padding: 50px 0 25px;
    }

    .shop-menu-sec__title {
        font-size: 2rem;
        padding: 0 0 15px;
    }

    .shop-menu-sec__tab-menu {
        display: flex;
        min-width: 0;
        padding: 0;
        margin: 0 0 30px;
        list-style: none;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .shop-menu-sec__tab-menu::-webkit-scrollbar {
        display: none;
    }

    .menu-sec__tab-menu-item {
        flex: 0 0 auto;
        min-width: 100px;
        font-size: 1.3rem;
        padding: 12px 17px;
    }

    .shop-menu-card-list {
        gap: 15px;
    }

    .shop-menu-card-list__item {
        flex: 0 0 calc((100% - 15px) / 2);
    }

    .shop-menu-card__name {
        text-align: left;
    }

    .shop-menu-card__price {
        font-size: 1.3rem;
        text-align: left;
    }
}


/* ---------------------------------------------
*   Shop Info
--------------------------------------------- */
.shop-info-sec {
    padding: 50px 0 0;
}

.shop-info-sec__title {
    font-size: 5rem;
    line-height: 1;
    margin: 0 0 45px;
    text-align: center;
}

.shop-info-sec__title-en {
    font-size: 2rem;
    font-weight: 400;
}

.shop-info-sec__title-ja {
    margin-top: 10px;
    letter-spacing: 0.25em;
    text-indent: 0.25em;
}

.shop-info-sec__map {
    height: 480px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.shop-info-sec__map iframe {
    width: 100%;
    height: calc(100% + 150px + 150px);
    border: none;
    margin-top: -150px;
}

.shop-info-sec__data {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'メイリオ', 'Meiryo', sans-serif;
    padding: 40px;
    margin: 0;
    background-color: #fff;
}

.shop-info-sec__data-row {
    max-width: 1020px;
    margin: 0 auto;
    display: flex;
    min-width: 0;
    align-items: stretch;
}

.shop-info-sec__data-row + .shop-info-sec__data-row {
    border-top: 1px solid #CCCCCC;
}

.shop-info-sec__data-col {
    flex: 0 0 50%;
    display: flex;
}

.shop-info-sec__data dt {
    flex: 0 0 160px;
    font-weight: 600;
    padding: 20px 0;
}

.shop-info-sec__data dd {
    flex: 1 1 auto;
    margin: 0;
    padding: 20px 0;
}

.shop-info-sec__data dd a {
    color: #003AFD;
    font-weight: 600;
    text-decoration: underline;
}

.scroll_description {
    display: none
}

@media screen and (max-width: 767px) {
    .shop-info-sec {
        padding: 25px 0;
    }

    .shop-info-sec__title {
        font-size: 3rem;
        margin: 0 0 20px;
    }

    .shop-info-sec__title-en {
        font-size: 1.5rem;
    }

    .shop-info-sec__map {
        height: 250px;
    }

    .shop-info-sec__map iframe {
        height: calc(100% + 150px + 150px);
        margin-top: -150px;
    }

    .shop-info-sec__data {
        font-size: 1.5rem;
        padding: 15px 20px;
        margin: 0;
        background-color: #fff;
    }

    .shop-info-sec__data-row {
        display: block;
    }

    .shop-info-sec__data-row + .shop-info-sec__data-row {
        border-top: none;
    }

    .shop-info-sec__data-col {
        flex: 0 0 50%;
        display: flex;
        border-top: 1px solid #CCCCCC;
    }

    .shop-info-sec__data-row:first-child .shop-info-sec__data-col:first-child {
        border-top: none;
    }

    .shop-info-sec__data dt {
        flex: 0 0 90px;
        padding: 12px 0;
        margin-right: 25px;
    }

    .shop-info-sec__data dd {
        padding: 12px 0;
    }

    .shop-info-sec__data dd a {
        color: #003AFD;
        font-weight: 600;
        text-decoration: underline;
    }

    .scroll_description {
        display: block;
        margin: 0 0 8px;
        font-size: 1.3rem;
        color: gray
    }
}


/* ---------------------------------------------
*   Utility
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .hidden-sp {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hidden-pc {
        display: none !important;
    }
}

.animate__fadeInUp,
.animate__fadeIn {
    visibility: hidden;
}

/* ---------------------------------------------
*   Bread
--------------------------------------------- */

.bread {
    display: flex;
    flex-flow: wrap;
    list-style: none;
    margin: 15px;
    padding: 0;
    font-size: 13px
}

.bread li:not(:last-of-type)::after {
    content: ">";
    margin: 0 12px;
}

.bread li a {
    text-decoration: none;
    color: #3959c3
}

#shop .bread {
    position: absolute
}

@media screen and (max-width: 767px) {
    .bread {
        margin: 10px;
        font-size: 1.2rem
    }
}


/* ---------------------------------------------
*   お知らせ
--------------------------------------------- */
.tag__title {
    margin: 0 0 50px;
    padding-bottom: 10px;
    font-size: 2.8rem;
    border-bottom:3px double #484848
}
.pickup-sec {
    padding: 50px 0 65px;
}

.pickup-sec__title {
    line-height: 1;
    text-align: center;
    margin: 0 0 35px;
}

.pickup-sec__title img {
    height: 42px;
}

.pickup-slider-container {
    overflow: hidden;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
}

.pickup-slider {
    overflow: visible;
}

.pickup-slider .swiper-button-prev,
.pickup-slider .swiper-button-next {
    width: 38px;
    height: 38px;
    top: calc(50% - 18px);
    padding: 0;
    background-image: url(../img/common/slider_btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pickup-slider .swiper-button-prev {
    left: -18px;
}

.pickup-slider .swiper-button-next {
    right: -18px;
    transform: rotate(180deg);
}

.pickup-slider .swiper-button-prev::after,
.pickup-slider .swiper-button-next::after {
    display: none;
}

.pickup-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s;
}

.pickup-card:hover {
    opacity: 0.8;
}

.pickup-card__img {
    width: 100%;
    aspect-ratio: 17 / 11;
    object-fit: cover;
    margin-bottom: 20px;
}

.pickup-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-card__meta {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 12px;
    margin-bottom: 10px;
}

.pickup-card__title {
    font-size: 1.5rem;
    font-weight: 400
}

.pickup-card__date {
    font-size: 1.3rem;
    line-height: 1;
}

.pickup-card_cat span {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1;
    padding: 2px 6px;
}

.pickup-card_cat span:not(:last-of-type) {
    margin-right: 8px
}

.info-list {
    padding: 0
}

.info-list li {
    list-style: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #707070
}

.info-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0F0F0F
}

.info-list li h3 {
    margin: 0 0 0 20px
}

.info-list li h3:hover {
    color: #D71518
}

.info-list .pickup-card__meta {
    margin-bottom: 0
}

.info-ttl-wrap {
    text-align: center
}

.info-ttl-wrap .date {
    margin: 0
}

.info-ttl-wrap h2 {
    font-size: 2.6rem;
    font-weight: 400;
    margin: 15px 0 20px
}

.info-ttl-wrap .cat {
    margin: 0
}

.info-ttl-wrap .cat span {
    font-size: 1.3rem;
    color: #fff;
    padding: 4px 6px;
    margin: 0 5px
}

.cm-sec {
    margin-top: 60px
}

@media screen and (max-width: 767px) {
    .pickup-sec {
        padding: 50px 0 40px;
    }

    .pickup-sec__title {
        margin: 0 0 25px;
    }

    .pickup-sec__title img {
        height: 32px;
    }

    .pickup-slider .swiper-button-prev {
        left: -18px;
    }

    .pickup-slider .swiper-button-next {
        right: -18px;
        transform: rotate(180deg);
    }

    .pickup-card__title {
        font-size: 1.5rem;
    }


    .pickup-card__date {
        font-size: 1.3rem;
        line-height: 1;
    }

    .pickup-card_cat span {
        font-size: 1.2rem;
        color: #fff;
        line-height: 1;
        padding: 2px 6px;
    }

    .pickup-card_cat span:not(:last-of-type) {
        margin-right: 8px
    }

    .info-list li {
        list-style: none;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .info-list li a {
        display: block;
    }

    .info-list li h3 {
        margin: 8px 0 0 0;
    }

    .info-list .pickup-card_cat span {
        font-size: 1.1rem
    }

    .info-ttl-wrap .date {
        font-size: 1.3rem;
        margin: 0
    }

    .info-ttl-wrap h2 {
        font-size: 2.0rem;
        margin: 10px 0;
        line-height: 1.5;
    }

    .info-ttl-wrap .cat {
        margin: 15px 0 0 0
    }

    .info-ttl-wrap .cat span {
        font-size: 1.2rem;
        padding: 2.5px 6px 3px;
        margin: 0 5px
    }
    
    .cm-sec {
    margin-top: 45px
}

}


/* ---------------------------------------------
*   メディア
--------------------------------------------- */

.media_list {
    list-style: none;
    padding: 0;
    margin: 65px 0 0 0;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 40px)
}

.media_list li {
    width: calc(100% / 4 - 40px);
    margin-right: 40px;
    margin-bottom: 40px
}

.media_list li a {
    text-decoration: none;
    color: #212121;
}

.media_list li .date {
    margin: 0 0 10px;
    color: #505050;
    font-size: 1.3rem
}

.media_list li h3 {
    margin: 0;
    font-weight: 400;
    font-size: 1.5rem
}

#media .pager {
    margin-top: 0
}

#media .container {
    max-width: 980px !important;
}

#media iframe {
    margin: 25px auto;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 1080px) {
    .media_list li {
        width: calc(100% / 3 - 40px);
    }
}

@media screen and (max-width: 767px) {

    .media_list {
        width: 100%;
        margin-top: 35px
    }

    .media_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .media_list li .date {
        margin: 0 0 6px;
        font-size: 1.3rem
    }

    .media_list .pickup-card__img {
        margin-bottom: 10px
    }

    .media_list li h3 {
        font-size: 1.45rem
    }
}

/* ---------------------------------------------
*   投稿フォーマット共通
--------------------------------------------- */

.sng_cont {
    margin-top: 50px
}

.sng_cont p {
    font-size: 1.7rem;
    line-height: 2;
    margin-bottom: 1em
}

.sng_cont p:first-of-type {
    margin-top: 0
}

.sng_cont p:last-of-type {
    margin-bottom: 0
}

.sng_cont h1 {
    font-size: 3.6rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h4 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h5 {
    font-size: 2rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h6 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont img {
    margin: 15px 0;
}

.sng_cont a {
    color: #CF0357
}

.sng_cont a:hover {
    color: #ff8000
}


/********* 投稿ページ詳細  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .sng_cont {
        margin-top: 30px
    }

    .sng_cont p {
        font-size: 1.6rem;
        line-height: 1.9;
    }

    .sng_cont h1 {
        font-size: 3.2rem;
        margin-bottom: 10px
    }

    .sng_cont h2 {
        font-size: 2.8rem;
        margin-bottom: 10px
    }

    .sng_cont h3 {
        font-size: 2.4rem;
        margin-bottom: 10px
    }

    .sng_cont h4 {
        font-size: 2.0rem;
        margin-bottom: 10px
    }

    .sng_cont h5 {
        font-size: 1.8rem;
        margin-bottom: 10px
    }

    .sng_cont h6 {
        font-size: 1.6rem;
        font-weight: 600;
        margin: 15px 0
    }

    .sng_cont img {
        margin: 15px 0
    }
}


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

.pager {
    margin: 45px auto 0
}

.pager .pagination {
    text-align: center;
    font-family: sans-serif
}

.pager .pagination {
    padding: 0;
}

.pager .pagination li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #9f9f9f;
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    font-size: 1.5rem;
    line-height: 0
}


.pager .pagination li a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pager .pagination li a span {
    display: table-cell;
    vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
    color: #fff;
    background: #811549;
    border-radius: 50px;
}

/********* ページネーション  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .pager {
        margin: 25px auto 0
    }


    .pager .pagination {
        text-align: center;
    }

    .pager .pagination li {
        display: none;
        font-size: 1.4rem;
        background: #643835;
    }

    .pager .pagination li.pre,
    .pager .pagination li.next {
        display: inline-block;
        width: 40%;
        height: 50px;
        text-align: center;
    }

    .pager .pagination li.pre a,
    .pager .pagination li.next a {
        width: 100%;
        text-align: center;
    }

    .pager .pagination li.pre span::after {
        content: "　前の10件へ";
    }

    .pager .pagination li.next span::before {
        content: "次の10件へ　";
    }

    .pager .pagination li a:hover,
    .pager .pagination li a.active {
        color: #fff;
        background: #D9645F;
        border-radius: 50px;
    }
}

/* ---------------------------------------------
*   下階層　共通
--------------------------------------------- */

.ud_mv {
    position: relative
}

.ud_mv h1 {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 3.6rem;
    font-weight: 600;
    padding-bottom: 38px;
}

.ud_mv h1::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 38px;
    margin-top: -4px;
    margin-right: 18px;
    background-image: url(../img/common/ttl_deco_left.svg);
    background-size: contain;
    vertical-align: middle;
}

.ud_mv h1::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 38px;
    margin-top: -4px;
    margin-left: 18px;
    background-image: url(../img/common/ttl_deco_right.svg);
    background-size: contain;
    vertical-align: middle;
}

.h2_c_title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 600;
    margin: 0 0 50px
}


.page_wrap {
    padding: 75px 0 25px;
}

@media screen and (max-width: 767px) {

    .ud_mv h1 {
        font-size: 2.0rem;
        padding-bottom: 20px;
    }

    .ud_mv h1::before {
        width: 6px;
        height: 25px;
        margin-top: -4px;
        margin-right: 10px;
    }

    .ud_mv h1::after {
        content: '';
        width: 6px;
        height: 25px;
        margin-top: -4px;
        margin-left: 10px;
    }

    .h2_c_title {
        font-size: 2.4rem;
        margin: 0 0 25px
    }

    .page_wrap {
        padding: 25px 0 30px;
    }
}

/* ---------------------------------------------
*   店舗一覧
--------------------------------------------- */
#menuinfo .ud_mv {}

.shop-list__title {
    text-align: center;
    margin: 0 0 40px;
    font-weight: 500;
    font-size: 3.2rem
}

.shop-list__title span {
    display: block;
    font-weight: 400;
    font-size: 1.7rem
}

.shop_list {
    margin: 60px 0 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 35px)
}

.shop_list li {
    width: calc(100% / 3 - 35px);
    margin-right: 35px;
    margin-bottom: 35px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.shop_list a {
    text-decoration: none;
    color: #0A0A0A
}

.shop_list li h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: solid 2px #D71518;
    display: flex;
    align-items: center
}

.shop_list li h3.kaiten::before {
    content: '';
    display: inline-block;
    width: 72.8px;
    height: 26px;
    background-image: url(../img/menu/logo-kaiten.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 9px;
    margin-bottom: 3px
}

.shop_list li h3.gourmet::before {
    content: '';
    display: inline-block;
    width: 75px;
    height: 26px;
    background-image: url(../img/menu/logo-gourmet.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 9px;
    margin-bottom: 3px
}

.shop_list li p.shop-add,
.shop_list li p.shop-time {
    margin: 3px 0 0 0;
    font-size: 1.5rem;
}

.shop_list li p.shop-add:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/menu/icon-map.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px
}

.shop_list li p.shop-time:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/menu/icon-time.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px;
    margin-bottom: 1px
}

.menu-link {
    background: #163d88;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 30px;
    padding: 3px 15px 5px;
    margin: 10px 0 0 0
}

.menu-link:hover {
    background: #D71518;
}

@media screen and (max-width: 991px) {
    .shop_list {
        width: calc(100% + 25px)
    }

    .shop_list li {
        width: calc(100% / 2 - 25px);
        margin-right: 25px;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    .shop_list {
        width: 100%
    }

    .shop_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
}

/* ---------------------------------------------
*   ご予約
--------------------------------------------- */

#reservation .container {
    max-width: 1000px
}

.reserve_list {
    list-style: none;
    padding: 30px 0 0 0;
    margin: 65px 0 0 0;
    border-top: 1.5px solid #454545;
}

.reserve_list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1.5px solid #454545;
}

.reserve_list li .info_sec {
    width: 42%
}

.reserve_list li .reserve_sec {
    width: 58%
}

.reserve_list li .info_sec h3 {
    margin: 0 0 8px;
    font-size: 2rem;
    font-weight: 600
}

.reserve_list li .info_sec .shop-add,
.reserve_list li .info_sec .shop-time {
    margin: 3px 0 0 0
}

.reserve_list li .info_sec .shop-add:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/menu/icon-map.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px
}

.reserve_list li .info_sec .shop-time:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/menu/icon-time.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px;
    margin-bottom: 1px
}

.reserve_sec {
    display: flex;
    justify-content:
}

.reserve_sec a {
    background: #006025;
    border-radius: 50px;
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    width: 250px;
    padding: 8px 0;
    margin-left: 25px
}

.reserve_sec a:hover {
    background: #D71518;
}

@media screen and (max-width: 767px) {

    #reservation .event-sec__title {
        margin: 0 25px 35px 0;
    }

    .reserve_list {
        list-style: none;
        padding: 30px 0 0 0;
        margin: 35px 0 0 0;
    }

    .reserve_list li {
        flex-flow: column;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .reserve_list li .info_sec,
    .reserve_list li .reserve_sec {
        width: 100%
    }

    .reserve_list li .info_sec h3 {
        margin: 0 0 10px;
        font-size: 2rem;
    }

    .reserve_list li .info_sec .shop-add,
    .reserve_list li .info_sec .shop-time {
        margin: 3px 0 0 0
    }

    .reserve_list li .info_sec .shop-time {
        margin-bottom: 3px
    }

    .reserve_sec {
        flex-flow: column
    }

    .reserve_sec a {
        font-size: 1.6rem;
        width: 220px;
        padding: 4.5px 0 6px;
        margin: 12px 0 0 0
    }

    .reserve_sec p.att {
        margin: 12px 0 0 0
    }
}

/* ---------------------------------------------
*   個人情報保護方針
--------------------------------------------- */

.privacy-policy h2 {
    margin: 0 0 35px;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 400
}

.privacy-policy h3 {
    font-size: 1.7rem;
    margin: 25px 0 12px 1em;
    font-weight: 600;
}

.privacy-policy p {
    margin: 0 0 0 1em;
    line-height: 1.6
}

.privacy-policy ul {
    margin: 12px 0
}

.privacy-policy ul li {
    margin: 3px 0;
    line-height: 1.6
}

.privacy-policy .add {
    margin: 15px 0 0 1em;
    line-height: 1.6;
    font-weight:
}

@media screen and (max-width: 767px) {

    .privacy-policy h2 {
        margin: 0 0 20px;
        font-size: 1.7rem;
    }

    .privacy-policy h3 {
        font-size: 1.6rem;
        margin: 18px 0 10px 0;
    }

    .privacy-policy p {
        margin: 0 0 0 0;
        font-size: 1.5rem;
    }

    .privacy-policy ul {
        margin: 10px 0;
        font-size: 1.5rem;
        padding-left: 1em
    }

    .privacy-policy ul li {
        margin: 0;
        line-height: 1.6
    }

    .privacy-policy .add {
        margin: 15px 0 0 1em;
        line-height: 1.6;
        font-weight:
    }

}

/* ---------------------------------------------
*   寿司への思い・うまさの秘密
--------------------------------------------- */

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

.comit p {
    margin: 25px 0;
    line-height: 2
}

.comit hr {
    border: none;
    height: 1px;
    background-color: #575757;
    margin: 65px 0;
}

.sec_h2_ttl {
    text-align: center;
    font-size: 3.7rem;
    font-weight: 400;
    margin: 0 0 60px
}

.sec_h2_ttl span {
    font-size: 1.7rem;
    display: block;
    padding-top: 5px
}

.comit_h2_ttl {
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 45px
}

.comit_h3_ttl {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 35px
}

.comt_img_box {
    margin: 50px 0
}

.big_word {
    font-size: 2.3rem;
}

.middle_word {
    font-size: 2.0rem;
}

.comit .sign {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin-top: 35px
}

.comit .sign p {
    margin: 0 0 0 0
}

.comit .sign p {
    font-size: 1.8rem;
    display: flex;
    align-items: baseline;
    margin-left: 1em
}

.comit .sign p span {
    font-size: 2rem;
    margin-left: 1em
}

.comit .sign img {
    margin-left: 1em
}

.pt-30 {
    margin-top: 30px
}

/* 2) CSS：比率固定＋サムネ＆再生ボタン */
.yt-defer{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:#000;
  overflow: hidden;
    margin-top: 50px;
    margin-bottom: 30px
}

.yt-defer__btn{
  all: unset; /* ボタンのデフォルト解除 */
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.yt-defer__thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-defer__icon{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: url("../img/common/youtube.svg") no-repeat center / contain;
  pointer-events: none;
}

/* 触感：ホバーで少し暗く */
.yt-defer__btn:hover .yt-defer__thumb{ opacity: .92; }

/* フォールバック用の通常埋め込み（noscript用） */
.yt-wrap{
  width:100%;
  aspect-ratio:16/9;
  background:#000;
}

.yt-wrap iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}


@media screen and (max-width: 767px) {

    .comit p {
        margin: 25px 0;
        line-height: 2;
        font-size: 16px
    }

    .comit hr {
        margin: 35px 0;
    }

    .sec_h2_ttl {
        font-size: 2.5rem;
        margin: 0 0 40px
    }

    .sec_h2_ttl span {
        font-size: 1.5rem;
    }

    .comit_h2_ttl {
        font-size: 2.4rem;
        line-height: 1.8;
        margin: 0 0 30px
    }

    .comit_h2_ttl span {
        display: block;
        font-size: 1.9rem;
    }.comit_h3_ttl {
    font-size: 2rem;
        line-height: 1.8;
        margin: 0 0 25px
    }

    .comit_h3_ttl span {
        display: block;
        font-size: 1.6rem;
    }

    .comt_img_box {
        margin: 30px 0
    }

    .big_word {
        font-size: 2.0rem;
    }

    .middle_word {
        font-size: 1.8rem;
    }

    .comit .sign {
        margin-top: 25px;
        text-align: right;
        flex-flow: column;
        align-items: flex-end
    }

    .comit .sign p {
        font-size: 1.6rem;
        align-items: baseline;
        justify-content: flex-start;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }

    .comit .sign p span {
        font-size: 1.6rem;
        margin-left: 1em;
        display: flex;
    }

    .comit .sign img {
        height: 30px
    }

    .pt-30 {
        margin-top: 30px
    }

.yt-defer{
    margin-top: 30px;
    margin-bottom: 15px
}

.yt-defer__icon{
  width: 60px;
  height: 60px;
}
    
}

/* ---------------------------------------------
*   必食
--------------------------------------------- */

.hissyoku_ttl {
    text-align: center;
    margin: 0 0 45px
}

.hissyoku_dc {
    text-align: center;
    line-height: 1.9;
    margin: 0;
    font-size: 1.8rem
}

.hissyoku_flex {
    display: flex;
    border-radius: 15px;
    background: #fff;
    margin-top: 60px
}

.hissyoku_flex .img {
    width: 35%;
    background: url(../img/comit/bg-hissyoku-01.jpg)no-repeat center center /cover;
    border-radius: 15px 0 0 15px;
}

.hissyoku_flex.reverse .img {
    width: 35%;
    background: url(../img/comit/bg-hissyoku-02.jpg)no-repeat center center /cover;
    border-radius: 15px 0 0 15px;
}

.hissyoku_flex .cont {
    width: 65%;
    padding: 60px
}

.hissyoku_flex .cont p {
    line-height: 2;
    margin: 0
}

.fish_ttl {
    color:#0C2350;
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

.fish_ttl h3 {
    margin: 0;
    font-size: 12rem;
    line-height: 1;
    margin-right: 20px
}

.fish_ttl p {
    font-size: 4.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3 !important
}

.fish_ttl p span {
    display: block;
    font-size: 2.7rem;
}

.osusume_list {
    display: flex;
    list-style: none;
    padding: 0;
    padding: 0;
    margin: 25px 0 0 ;
    width: calc(100% + 30px)
}

.osusume_list li {
    width: calc(100% / 3 - 30px);
    margin-right: 30px;
    text-align: center
}

.osusume_list li h4 {
    margin: 15px 0 12px;
    font-weight: 500
}

.osusume_list li p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.8 !important;
    text-align: left
}

.reverse {
    flex-flow: row-reverse
}

@media screen and (max-width: 767px) {


.hissyoku_ttl {
    margin: 0 auto 35px;
    max-width: 80%;
}

.hissyoku_dc {
    text-align: left;
    line-height: 1.8;
    font-size: 1.6rem
}

.hissyoku_flex {
    display: flex;
    flex-flow: column;
    border-radius: 10px;
    margin-top: 35px
}

.hissyoku_flex .img {
    width: 100%;
    height:250px;
    background: url(../img/comit/bg-hissyoku-01-sp.jpg)no-repeat center center /cover;
    border-radius: 10px 10px 0 0 !important;
}

.hissyoku_flex.reverse .img {
    width: 100%;
    height:250px;
    background: url(../img/comit/bg-hissyoku-02-sp.jpg)no-repeat center center /cover;
}

.hissyoku_flex .cont {
    width: 100%;
    padding: 20px
}

.hissyoku_flex .cont p {
    line-height: 1.9;
}

.fish_ttl {
    margin: 5px 0 30px;
    align-items: center
}

.fish_ttl h3 {
    margin: 0;
    font-size: 23.5vw;
    line-height: 1;
    margin-right: 15px
}

.fish_ttl p {
    font-size: 7vw;
    font-weight: 600;
    margin: 0;
    line-height: 1.4 !important
}

.fish_ttl p span {
    display: block;
    font-size: 4.5vw;
    line-height: 1.4 !important
}

.osusume_list {
    display: block;
    margin: 25px 0 0 ;
    width: 100%
}

.osusume_list li {
    width: 100%;
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: left;
    border-top: 1px solid #c3c3c3;
    padding-top: 20px
}

    .osusume_list li .img_wrap {
        width: 35%;
        height: auto
    }
    
    .osusume_list li .inner {
        width: 65%;
        padding-left: 13px
    }

.osusume_list li h4 {
    margin: 0 0 5px;
}

.osusume_list li p {
    font-size: 1.4rem;
    line-height: 1.6 !important;
}

}
