@charset "utf-8";

/********** 共通 **********/
.c-btn {
    align-items: center;
    background-color: transparent;
    border: 1px solid #444;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    flex-wrap: wrap;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: bold;
    height: 54px;
    justify-content: center;
    line-height: 1.5;
    margin: auto;
    padding: 5px 10px;
    position: relative;
    transition: all 0.7s;
    width: 100%;
}
.c-btn:before {
    background-color: #fbfbfb;
    color: #fff;
    content: "";
    height: calc(100% - 1px);
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}
.c-btn:after {
    border-top: 1px solid #444;
    border-right: 1px solid #444;
    content: "";
    height: 8px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.4s;
    width: 8px;
}
.c-btn--sm {
    font-size: 14px;
    height: 37px;
}
.c-btn--red {
    background-color: #8b0d19;
    border: 1px solid #8b0d19;
    color: #fff;
}
.c-btn--red:before {
    background-color: #9f0b19;
}
.c-btn--red:after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.c-btn--white:before {
    background-color: #fbfbfb;
}
.c-btn--white {
    background-color: #fff;
    border: 1px solid #8b0d19;
    color: #8b0d19;
}
.c-btn--white:after {
    border-top: 1px solid #8b0d19;
    border-right: 1px solid #8b0d19;
}
.c-btn:hover {
    opacity: 1;
    text-decoration: none;
}
.c-btn--red:hover {
    color: #fff;
}
.c-btn--white:hover {
    color: #8b0d19;
}
.c-btn:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}
.c-btn:hover:after {
    transform: translateX(0.25em) translateY(-50%) rotate(45deg);
}
.c-btn > span {
    position: relative;
    z-index: 100;
}
.c-btn--blank:after {
    content: none !important;
}
.c-btn--blank > span {
    display: inline-block;
    line-height: 1;
    padding-right: 2em;
}
.c-btn--blank > span:after {
    bottom: 0;
    content: url("./images/icon_blank.svg");
    height: 13px;
    margin-top: -1px;
    position: absolute;
    right: 0;
    width: 13px;
}
.c-btn--red.c-btn--blank > span:after {
    content: url("./images/icon_blank_wh.svg");
}
.c-btn--white.c-btn--blank > span:after {
    content: url("./images/icon_blank_red.svg");
}
.c-btn__col2 {
    display: flex;
    flex-wrap: wrap;
}
.c-btn__col2 > .c-btn {
    width: calc((100% - 20px - 0.01px) / 2);
}
.c-btn__col2 > .c-btn:first-of-type {
    margin-right: 20px;
}
.c-btn__wrap {
    margin: calc(40px + 20 * (100vw - 375px) / 1545) auto 0;
    text-align: center;
    width: min(300px, 100%);
}
.c-dot:before {
    content: "・";
}
.c-inner:not(:last-of-type) {
    padding-bottom: 80px;
}
.c-label {
    background-color: #8b0d19;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: calc(11px + 2 * (100vw - 375px) / 1545);
    line-height: 1.5;
    margin-bottom: 0.5em;
    padding: 0.25em 0.5em 0.2em;
}
.c-label:not(:last-of-type) {
    margin-right: 0.5em;
}
.c-label-wrap {
    display: inline-flex;
    flex-wrap: wrap;
}
.c-line--one {
    display: block;
    padding: 0 !important;
    text-align: left !important;
    width: 100% !important;
}
.c-line--one:before,
.c-line--one:after {
    content: none !important;
}
.c-link {
    background: linear-gradient(#9f0b19, #9f0b19) 0 100%/0 1px no-repeat;
    color: #8b0d19;
    display: inline-block;
    text-decoration: none;
    transition: background 0.4s;
}
.c-link:hover {
    background-size: 100% 1px;
    color: #8b0d19;
    text-decoration: none;
}
.c-link--uline {
    background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 1px no-repeat;
    color: #8b0d19;
    text-decoration: none;
    transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-link--uline:hover {
    background-position: right bottom;
    background-size: 0 1px;
    color: #8b0d19;
    text-decoration: none;
}
.c-link--arrow,
.c-link--blank {
    display: inline-block;
    padding-right: 1.5em;
    position: relative;
}
.c-link--arrow:after {
    border-left: 1px solid #8b0d19;
    border-top: 1px solid #8b0d19;
    content: "";
    height: 7px;
    margin: -1px;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    width: 7px;
}
.c-link--blank:after {
    content: url(./images/icon_blank_red.svg);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.c-pager {
    margin-top: 45px;
}
.c-pager .page-numbers {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.c-pager li a,
.c-pager li span.dots,
.c-pager li span.current {
    align-items: center;
    display: inline-flex;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold;
    height: 1.5em;
    justify-content: center;
    line-height: 1;
    padding: 5px;
    text-align: center;
    width: 1.25em;
}
.c-pager__arrow {
    border-right: solid 2px #8b0d19;
    border-top: solid 2px #8b0d19;
    display: block;
    height: 7px;
    width: 7px;
}
.c-pager .prev .c-pager__arrow {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.c-pager .next .c-pager__arrow {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.c-search {
    align-items: stretch;
    display: inline-flex;
    font-family: "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    max-width: 100%;
    position: relative;
    width: 215px;
}
.c-search:before {
    background-image: url(./images/icon_search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 14px;
    left: 0.5em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
}
.c-search input {
    border: 1px solid #888;
    border-radius: 2px 0 0 2px;
    font-size: 14px;
    line-height: 1.5;
    max-width: calc(100% - 50px);
    padding: 1px 1em 1px 2em;
    width: 165px;
}
.c-search input::-moz-placeholder {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}
.c-search input:-ms-input-placeholder {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}
.c-search input::placeholder {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}
.c-search button {
    background-color: #888;
    border: 1px solid #888;
    border-radius: 0 2px 2px 0;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    width: 50px;
}
.c-slider__navi--prev {
    cursor: pointer;
    position: absolute;
    top: calc(50% - 70px);
    left: 15px;
    transform: translateY(-50%);
    z-index: 99;
}
.c-slider__navi--next {
    cursor: pointer;
    position: absolute;
    top: calc(50% - 70px);
    right: 15px;
    transform: translateY(-50%);
    z-index: 99;
}
.c-slider__navi-img {
    margin-bottom: 0;
}
.c-slider__pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    z-index: 2;
}
.c-slider__pagination .swiper-pagination-bullet {
    background-color: #cccccc;
    opacity: 1;
}
.c-slider__pagination .swiper-pagination-bullet-active {
    background-color: #8b0d19;
    opacity: 1;
}
.c-tab {
    display: flex;
    flex-wrap: wrap;
}
.c-tab__link {
    align-items: center;
    background-color: #efefef;
    border-bottom: 1px solid #e5e5e5;
    color: #333333;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold;
    justify-content: center;
    padding: 1em;
    text-align: center;
    width: 50%;
}
.c-tab__link.current {
    background-color: #fff;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-top: 2px solid #8b0d19;
    cursor: auto;
}
.c-tab__link:hover {
    opacity: 1;
    text-decoration: none;
}
.c-table {
    width: 100%;
}
.c-table tr:not(:last-of-type) {
    border-bottom: 1px solid #e5e5e5;
}
.c-table tr:first-of-type {
    border-top: 1px solid #707070;
}
.c-table tr:last-of-type {
    border-bottom: 1px solid #707070;
}
.c-table th {
    background-color: #f6f6f6;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    padding: 20px;
    vertical-align: top;
    width: calc(400 / 1200 * 100%);
}
.c-table td {
    background-color: #fff;
    padding: 20px 35px;
    width: calc(800 / 1200 * 100%);
}
.c-table__date {
    color: #444444;
    display: block;
    font-family: "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 12px;
    font-weight: normal;
}
.c-table__list {
    margin-bottom: 0;
    padding-left: 0;
}
.c-table__list li {
    list-style-type: none;
    position: relative;
    padding-left: 1em;
}
.c-table__list li:before {
    background: #9f0b19;
    border-radius: 50%;
    content: "";
    display: block;
    height: 5px;
    left: 0;
    position: absolute;
    top: 0.7em;
    width: 5px;
}
.c-table__list a {
    background: linear-gradient(#9f0b19, #9f0b19) 0 100%/0 1px no-repeat;
    color: #9f0b19;
    padding-bottom: 0.25em;
    text-decoration: none;
    transition: background 0.4s;
}
.c-table__list a:hover {
    background-size: 100% 1px;
    color: #9f0b19;
    opacity: 1;
    text-decoration: none;
}
.c-text--attention {
    color: #8b0d19;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 24px;
    font-weight: bold;
}
.c-text--attention2 {
    color: #8b0d19;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 20px;
    font-weight: bold;
}
.c-text--hero {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(14px + 6 * (100vw - 375px) / 1545);
    line-height: 1.45;
}
.c-text--big {
    font-size: calc(16px + 2 * (100vw - 375px) / 1545);
}
.c-text--sm {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
}
.c-text--kome {
    color: #888888;
    font-size: 14px;
}
.c-text--uline {
    color: #8b0d19;
    border-bottom: 1px solid #8b0d19;
}
.c-text--unique {
    font-family: "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(13px + 3 * (100vw - 375px) / 1545);
}
.c-thumbnail,
.c-thumbnail--square {
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.c-thumbnail:before,
.c-thumbnail--square:before {
    content: "";
    display: block;
}
.c-thumbnail:before {
    padding-top: 66.66%;
}
.c-thumbnail--square:before {
    padding-top: 100%;
}
.c-thumbnail-img,
.c-thumbnail-img--square {
    left: 0;
    margin-bottom: 0;
    max-height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.c-thumbnail-img {
    aspect-ratio: 3/2;
    font-family: "object-fit: cover;";
    object-fit: cover;
}
.c-thumbnail-img--square {
    aspect-ratio: 1/1;
    font-family: "object-fit: cover;";
    object-fit: cover;
}
.c-title--h2 {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1em;
}
.c-title--h3 {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: calc(20px + 10 * (100vw - 375px) / 1545);
}
.c-title--h4 {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1em;
}
.c-title--lead {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}
.c-title--uline {
    border-bottom: solid 2px #cccccc;
    padding-bottom: 5px;
    position: relative;
}
.c-title--uline:after {
    border-bottom: solid 2px #8b0d19;
    bottom: -2px;
    content: " ";
    display: block;
    left: 0;
    position: absolute;
    width: 1.75rem;
}
.c-title--uline2 {
    border-bottom: 1px solid #707070;
    padding-bottom: 5px;
    position: relative;
}

@media screen and (min-width: 769px) {
    .c-dot--pc:before {
        content: "・";
    }
}
@media screen and (max-width: 768px) {
    .c-btn {
        font-size: 14px;
    }
    .c-btn__col2 {
        flex-wrap: wrap;
    }
    .c-btn__col2 > .c-btn {
        width: 100%;
    }
    .c-btn__col2 > .c-btn:first-of-type {
        margin-bottom: 15px;
        margin-right: 0;
    }
    .c-dot--pc {
        display: block;
    }
    .c-inner:not(:last-of-type) {
        padding-bottom: 60px;
    }
    .c-text--attention,
    .c-text--attention2 {
        font-size: 18px;
    }
    .c-text--kome {
        font-size: 12px;
    }
    .c-title--h2 {
        font-size: 24px;
    }
    .c-title--h3 {
        font-size: 20px;
    }
    .c-title--h4 {
        font-size: 16px;
    }
    .c-title--lead {
        font-size: 18px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 640px) {
    .c-table th,
    .c-table td {
        display: block;
        width: 100%;
    }
    .c-table th {
        background-color: #fff;
        padding: 20px 0 15px;
    }
    .c-table td {
        padding: 0 0 20px;
    }
}

/********** トップページ **********/
.p-top-fv__slider {
}
.p-top-fv__img {
    margin: 0;
    width: 100%;
    height: calc(100vh - 100px);
    object-fit: cover;
}
.p-top-fv__img-wrap {
    margin: 0;
}
.p-top-fv__link {
    display: block;
    transition: opacity 0.5s;
}
.p-top-fv__link:hover {
    text-decoration: none;
    opacity: 0.7;
}
.p-top-fv__link:hover img {
    opacity: 1;
}
.p-top-fv__caption {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    opacity: 0.7;
    padding: 5px 10px;
    z-index: 1;
}
.p-top-fv__cap {
    align-items: flex-start;
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    left: 20px;
    position: fixed;
    top: max(calc(100vh - 160px), calc(100% - 160px));
    transform: translateY(-100%);
    line-height: 1;
}
.p-top-fv__cap-text {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    display: inline-block;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    line-height: 1.5;
    padding: 5px 0.25em;
    font-size: calc(16px + 8 * (100vw - 375px) / 1545);
    margin: 5px 0;
}
.p-top-fv__cap-text--main {
    font-size: calc(27px + 23 * (100vw - 375px) / 1545);
    margin-top: calc(20px + 20 * (100vw - 375px) / 1545);
}
.swiper-container-horizontal > .p-top-fv__pagination.swiper-pagination-bullets {
    bottom: 50px;
}
.p-top-fv__pagination .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 0;
    background: white;
    opacity: 1;
}
.p-top-fv__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #8b0d19;
}
.p-top-fv__slider .swiper-button-prev,
.p-top-fv__slider .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
    display: grid;
    place-content: center;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    transition: var(--transition);
    background-image: none;
}
.p-top-fv__slider .swiper-button-prev::before,
.p-top-fv__slider .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: var(--box-shadow-dark);
    transition: transform 0.3s ease;
}
.p-top-fv__slider .swiper-button-prev:hover::before,
.p-top-fv__slider .swiper-button-next:hover::before {
    transform: scale(1.2);
}
.p-top-fv__slider .swiper-button-prev::after,
.p-top-fv__slider .swiper-button-next::after {
    width: 0.6rem;
    height: 0.6rem;
    content: "";
    border: solid #ddd;
    border-width: 3px 3px 0 0;
    border-color: #ddd;
}
.p-top-fv__slider .swiper-button-prev::after {
    margin-left: 0.2rem;
    transform: rotate(-135deg);
}
.p-top-fv__slider .swiper-button-next::after {
    margin-right: 0.3rem;
    transform: rotate(45deg);
}
.p-top-fv__slider .swiper-button-prev {
    right: calc(100% - 1.6rem);
}
@media screen and (max-width: 1200px) {
    .p-top-fv__img {
        height: calc(100vh - 60px);
    }
    .p-top-fv__cap {
        top: max(calc(100vh - 120px), calc(100% - 120px));
    }
}
@media screen and (max-width: 768px) {
    .p-top-fv__img {
        height: auto;
        max-height: calc(100vh - 95px);
    }
    .p-top-fv__cap {
        top: initial;
        bottom: 80px;
        left: 10px;
        transform: none;
    }
}

.p-top-copy__heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-top-copy__heading {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}
.p-top-copy__text {
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    text-align: center;
}

.p-top-info__inner {
    display: flex;
}
.p-top-info__inner-item {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto; /* fix IE11 */
    width: calc((100% - 60px) / 2);
}
.p-top-info__inner-item:first-of-type {
    margin-right: 60px;
}
.p-top-info .p-info__archive {
    margin-bottom: 50px;
}
.p-top-info .p-info__archive > * {
    flex-shrink: 0;
}
.p-top-info .p-info__archive-post-date {
    color: #444;
}
.p-top-info .p-info__archive-post-title {
    font-size: 14px;
}
.p-top-info .btn1_w {
    margin-top: auto;
}
.p-top-slider {
    padding-bottom: 80px !important;
}
.p-top-slider__item {
    text-decoration: none;
}
.p-top-slider__item:hover {
    opacity: 1;
    text-decoration: none;
}
.p-top-slider__item img {
    transition: transform 0.6s ease;
}
.p-top-slider__item:hover img {
    opacity: 1;
    transform: scale(1.1) translateY(-50%);
}
.p-top-slider__label {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
}
.p-top-slider__title {
    font-size: calc(16px + 4 * (100vw - 375px) / 1545);
    line-height: 1.5;
    margin-bottom: 0;
}
.p-top-slider__chef {
    color: #888;
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
}
.p-top-slider__note {
    display: -webkit-box;
    line-height: 1.625;
    max-height: calc(1.625 * 3);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.p-top-slider__controller--pc {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
.p-top-slider__controller--pc .p-top-slider__navi--prev,
.p-top-slider__controller--pc .p-top-slider__navi--next,
.p-top-slider__controller--pc .p-top-slider__pagination {
    position: static;
    transform: none;
}
.p-top-slider__controller--pc .p-top-slider__pagination {
    padding: 0 20px;
}
.p-top-slider__controller--pc .swiper-pagination-bullets > .swiper-pagination-bullet {
    margin: 0 4px;
}
.p-top-pickup {
    background: linear-gradient(180deg, transparent 0%, transparent 30%, #efefef 30%, #efefef 100%);
}
.p-top-pickup__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.p-top-pickup__list-item {
    width: calc((100% - 40px - 0.01px) / 3);
}
.p-top-pickup__list-item:not(:nth-of-type(3n)) {
    margin-right: 20px;
}
.p-top-pickup__list-item:not(:nth-last-of-type(-n + 3)) {
    margin-bottom: 60px;
}
.p-top-pickup__list-item > a:hover {
    opacity: 1;
    text-decoration: none;
}
.p-top-pickup__list-image {
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    display: block;
    overflow: hidden;
}
.p-top-pickup__list-image.bd_e5 {
    border: 1px solid #e5e5e5;
}
.p-top-pickup__list-item figcaption {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(16px + 2 * (100vw - 375px) / 1545);
    font-weight: bold;
    line-height: 1.5;
    margin-top: 1em;
    padding-right: 1.5em;
    position: relative;
}
.p-top-pickup__list-item figcaption:after {
    border-right: 1px solid #8b0d19;
    border-top: 1px solid #8b0d19;
    content: "";
    height: 8px;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.4s;
    width: 8px;
}
.p-top-pickup__list-item > a img {
    border-radius: 10px;
    margin-bottom: 0;
    transition: transform 0.6s ease;
}
.p-top-pickup__list-item > a:hover img {
    opacity: 1;
    transform: scale(1.1);
}
.p-top-pickup__list-item > a:hover figcaption:after {
    transform: translateX(0.5em) translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 769px) {
    .p-top-info__tab {
        display: none;
    }
    .p-top-info .p-info__archive-post {
        padding: 20px calc(1em + 20px) 20px 0;
    }
    .p-top-info .p-info__archive-post-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .p-top-info .c-tab__link.current {
        background-color: #fbfbfb;
    }
    .p-top-info__tab {
        padding-bottom: 10px;
    }
    .p-top-info__inner-title {
        display: none;
    }
    .p-top-info__inner-item {
        display: none;
        width: 100%;
    }
    .p-top-info .p-info__archive-post:first-of-type:first-of-type {
        border-top: none;
    }
    .p-top-slider {
        padding-bottom: 50px !important;
    }
    .p-top-slider__controller--pc {
        display: none;
    }
    .p-top-pickup {
        background: linear-gradient(180deg, transparent 0%, transparent 23.5%, #efefef 23.5%, #efefef 100%);
    }
    .p-top-pickup__list-item {
        width: calc((100% - 15px) / 2);
    }
    .p-top-pickup__list-item:not(:nth-of-type(3n)) {
        margin-right: inherit;
    }
    .p-top-pickup__list-item:not(:nth-last-of-type(-n + 3)) {
        margin-bottom: inherit;
    }
    .p-top-pickup__list-item:not(:nth-of-type(2n)) {
        margin-right: 15px;
    }
    .p-top-pickup__list-item:not(:nth-last-of-type(-n + 2)) {
        margin-bottom: 30px;
    }
}

/********** レシピ **********/
.p-recipe-search__heading {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
}
.p-recipe-search__heading-link {
    background-color: #e5e5e5;
    border-radius: 50vh;
    color: #333333;
    display: inline-block;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(12px + 4 * (100vw - 375px) / 1545);
    font-weight: bold;
    line-height: 1.5;
    overflow: hidden;
    padding: 4px 1em;
    position: relative;
    text-decoration: none;
    transition: all 0.7s;
    z-index: 1;
}
.p-recipe-search__heading-link:before {
    background-color: #ccc;
    color: #fff;
    content: "";
    height: calc(100% - 1px);
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    z-index: -1;
}
.p-recipe-search__heading-link:hover {
    opacity: 1;
    text-decoration: none;
}
.p-recipe-search__category {
    border-bottom: 1px solid #ccc;
}
.p-recipe-search__heading-link:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}
.p-recipe-search__button {
    cursor: pointer;
    margin-bottom: 0 !important;
    padding: 20px 0;
    position: relative;
    width: 100%;
}
.p-recipe-search__button:before {
    background-color: #444444;
    content: "";
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transition: all 0.3s;
    width: 20px;
}
.p-recipe-search__button.mns:before {
    transform: rotate(180deg);
}
.p-recipe-search__button:after {
    background-color: #444444;
    content: "";
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: rotate(90deg);
    transition: all 0.3s;
    width: 20px;
}
.p-recipe-search__button.mns:after {
    transform: rotate(0deg);
}
.p-recipe-search__button + .recipe_rc_w {
    display: none;
}
#recipe {
    margin-top: -50px;
    padding-top: 50px;
}
.p-recipe-heading {
    border-bottom: 1px solid #ccc;
    padding-bottom: calc(10px + 10 * (100vw - 375px) / 1545);
}
.p-recipe-list {
    display: flex;
    flex-wrap: wrap;
}
.p-recipe-list__item {
    display: block;
    margin-bottom: 60px;
    width: calc((100% - (80 / 1200 * 100%)) / 3);
}
.p-recipe-list__item:hover {
    text-decoration: none;
}
.p-recipe-list__item:not(:nth-of-type(3n)) {
    margin-right: calc(40 / 1200 * 100%);
}
.p-recipe-list__item-inner {
    display: flex;
    flex-direction: column;
}
.p-recipe-list__thumbnail-img {
    transition: transform 0.6s ease;
}
.p-recipe-list__label--spring,
.p-recipe-list__label--summer,
.p-recipe-list__label--autumn,
.p-recipe-list__label--winter {
    color: #8b0d19;
    background-color: #fff;
    border: 1px solid #8b0d19;
}
.p-recipe-list__item:hover .p-recipe-list__thumbnail-img {
    opacity: 1;
    transform: scale(1.1) translateY(-50%);
}
.p-recipe-list__title {
    font-size: calc(15px + 3 * (100vw - 375px) / 1545);
    line-height: 1.5;
    margin-bottom: 0;
}
.p-recipe-list__chef {
    color: #888;
    font-size: calc(11px + 3 * (100vw - 375px) / 1545);
}
.p-recipe-single {
    background-color: #fbfbfb;
    overflow: hidden auto;
    width: 100%;
}
.p-recipe-single__title-h1 {
    margin-bottom: calc(20px + 20 * (100vw - 375px) / 1545);
}
.p-recipe-single__inner {
    margin-bottom: 80px;
}
.p-recipe-single-ingredients {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
}
.p-recipe-single-ingredients__image {
    width: calc(700 / 1200 * 100%);
}
.p-recipe-single-ingredients__contents {
    padding-left: calc(60 / 1200 * 100%);
    width: calc(500 / 1200 * 100%);
}
.p-recipe-single-ingredients__title {
    font-weight: bold;
    margin-bottom: 0;
}
.p-recipe-single-ingredients__title:before {
    content: "■";
}
.p-recipe-single-ingredients__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1em;
}
.p-recipe-single-ingredients__list dt {
    font-size: calc(14px + 2 * (100vw - 375px) / 1545);
    font-weight: 500;
    margin-bottom: 5px;
    padding-left: 1em;
    text-indent: -1em;
    width: 60%;
}
.p-recipe-single-ingredients__list dt:before {
    content: "・";
}
.p-recipe-single-ingredients__list dd {
    text-align: right;
    margin-bottom: 5px;
    padding-left: 2em;
    width: 40%;
}
.p-recipe-single-ingredients__list .c-line--one {
    margin-bottom: 1em;
}
.p-recipe-single-point__inner {
    background-color: #efefef;
    margin-top: 40px;
    padding: 40px;
}
.p-recipe-single-point__inner-title {
    color: #8b0d19;
}
.p-recipe-single-point__inner-title img {
    margin-right: 10px;
}
.p-recipe-single-point__inner-contents {
    align-items: center;
    display: flex;
    justify-content: center;
}
.p-recipe-single-point__inner-text {
    color: #444444;
    font-weight: bold;
    margin-left: calc(50 / 1200 * 100%);
}
.p-recipe-single-way__list {
    counter-reset: item;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.p-recipe-single-way__list-item {
    padding-left: calc(40px + 1.5em);
    position: relative;
}
.p-recipe-single-way__list-item:not(:last-of-type) {
    margin-bottom: 40px;
}
.p-recipe-single-way__list-item:before {
    align-items: center;
    background-color: #e5e5e5;
    border-radius: 50%;
    box-sizing: border-box;
    color: #444;
    content: counter(item);
    counter-increment: item;
    display: flex;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(14px + 4 * (100vw - 375px) / 1545);
    font-weight: bold;
    height: 40px;
    justify-content: center;
    left: 0;
    line-height: calc(26 / 18);
    position: absolute;
    top: 0;
    width: 40px;
}
.p-recipe-single-way__list-item-inner--col2 {
    align-items: flex-start;
    display: flex;
}
.p-recipe-single-way__list-item-note {
    width: calc(100% - 230px);
}
.p-recipe-single-way__list-item-thumbnail {
    padding-left: 30px;
    width: 230px;
}
.p-recipe-single-way__list-item-thumbnail > img {
    object-fit: contain;
}
.p-recipe-single-allergen__list {
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.p-recipe-single-allergen__list-item:not(:last-of-type) {
    margin-bottom: 15px;
    margin-right: 20px;
}
.p-recipe-single-used__inner-wrap:not(:last-of-type) {
    margin-bottom: 40px;
}
.p-recipe-single-chef__inner,
.p-recipe-single-used__inner {
    align-items: flex-start;
    display: flex;
}
.p-recipe-single-chef__image,
.p-recipe-single-used__image {
    width: calc(250 / 1200 * 100%);
}
.p-recipe-single-used__image > img {
    border: 1px solid #efefef;
}
.p-recipe-single-chef__contents,
.p-recipe-single-used__contents {
    padding-left: calc(40 / 1200 * 100%);
    width: calc(950 / 1200 * 100%);
}
.p-recipe-single-chef__name,
.p-recipe-single-used__name {
    margin-bottom: 15px;
}
.p-recipe-single-chef__link,
.p-recipe-single-used__link {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
    margin-bottom: 2em;
}
.p-recipe-single-chef__store {
    background-color: #efefef;
    margin-top: 30px;
    padding: 30px calc(15px + 15 * (100vw - 375px) / 1545);
}
.p-recipe-single-chef__store-title:before {
    color: #222;
    content: "\25A0";
    display: inline-block;
    font-size: 0.75em;
    margin-right: 5px;
    margin-top: -5px;
    vertical-align: middle;
}
.p-recipe-single-chef__store a {
    color: #8b0d19;
    transition: all 0.4s;
    word-break: break-all;
}
.p-recipe-single-chef__store a:hover {
    color: #8b0d19;
    text-decoration: underline;
}
.p-recipe-single-related__slider:not(.swiper-container-initialized) {
    padding: 0;
}
.p-recipe-single-related__slider:not(.swiper-container-initialized) .p-recipe-single-related__slider-navi--prev,
.p-recipe-single-related__slider:not(.swiper-container-initialized) .p-recipe-single-related__slider-navi--next,
.p-recipe-single-related__slider:not(.swiper-container-initialized) .p-recipe-single-related__slider-pagination {
    display: none;
}
.p-recipe-single-related__slider:not(.swiper-container-initialized) .swiper-wrapper {
    display: flex;
    justify-content: flex-start;
}
.p-recipe-single-related__slider:not(.swiper-container-initialized) .swiper-slide {
    width: calc((100% - 80px) / 3);
}
.p-recipe-single-related__slider:not(.swiper-container-initialized) .swiper-slide:not(:nth-of-type(3n)) {
    margin-right: 40px;
}
.p-recipe-single-related__slider-item:hover {
    opacity: 1;
    text-decoration: none;
}
.p-recipe-single-related__slider-thumbnail-img {
    transition: transform 0.6s ease;
}
.p-recipe-single-related__slider-item:hover .p-recipe-single-related__slider-thumbnail-img {
    opacity: 1;
    transform: scale(1.1) translateY(-50%);
}
.p-recipe-single-related__slider-title {
    line-height: 1.5;
    margin-bottom: 0;
}
.p-recipe-single-related__slider-chef {
    color: #888;
    font-size: calc(11px + 3 * (100vw - 375px) / 1545);
}
.p-recipe-single__article iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-height: fit-content;
    margin: 0 auto;
    display: block;
}

@media screen and (min-width: 769px) {
    .p-recipe-single__article iframe {
        max-width: 70%;
    }
}
@media screen and (max-width: 1000px) {
    .p-recipe-single-ingredients__image {
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
    }
    .p-recipe-single-ingredients__contents {
        padding-left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .p-recipe-single__inner {
        margin-bottom: 60px;
    }
    .p-recipe-list__item {
        margin-bottom: 40px;
        width: calc((100% - (15 / 375 * 100%)) / 2);
    }
    .p-recipe-list__item:not(:nth-of-type(3n)) {
        margin-right: inherit;
    }
    .p-recipe-list__item:not(:nth-of-type(2n)) {
        margin-right: calc(15 / 375 * 100%);
    }
    .p-recipe-single-point__inner {
        padding: 30px 20px;
    }
    .p-recipe-single-point__inner-contents {
        display: block;
    }
    .p-recipe-single-point__inner-text {
        margin-left: 0;
        margin-top: 30px;
    }
    .p-recipe-single-way__list-item {
        padding-left: calc(30px + 1.5em);
    }
    .p-recipe-single-way__list-item:not(:last-of-type) {
        margin-bottom: 30px;
    }
    .p-recipe-single-way__list-item:before {
        height: 30px;
        width: 30px;
    }
    .p-recipe-single-way__list-item-inner--col2 {
        flex-wrap: wrap;
    }
    .p-recipe-single-way__list-item-note {
        margin-bottom: 1em !important;
        width: 100%;
    }
    .p-recipe-single-way__list-item-thumbnail {
        padding-left: 0;
        width: 100%;
    }
    .p-recipe-single-used__inner {
        margin-bottom: 20px;
    }
    .p-recipe-single-chef__inner {
        margin-bottom: 0;
    }
    .p-recipe-single-chef__image,
    .p-recipe-single-used__image {
        width: calc(130 / 335 * 100%);
    }
    .p-recipe-single-chef__contents,
    .p-recipe-single-used__contents {
        padding-left: calc(15 / 335 * 100%);
        width: calc(215 / 335 * 100%);
    }
    .p-recipe-single-related__slider {
        overflow: visible !important;
        padding-bottom: 40px !important;
        width: 100%;
    }
    .p-recipe-single-related__slider:not(.swiper-container-initialized) .swiper-slide {
        width: 100%;
    }
    .p-recipe-single-related__slider-navi--prev {
        left: 0;
    }
    .p-recipe-single-related__slider-navi--next {
        right: 0;
    }
    .tax-chef .p-recipe-single-chef__inner {
        flex-direction: column;
    }
    .tax-chef .p-recipe-single-chef__image {
        margin-left: auto;
        margin-right: auto;
        max-width: 200px;
        text-align: center;
        width: 100%;
    }
    .tax-chef .p-recipe-single-chef__contents {
        padding-left: 0;
        width: 100%;
    }
    .tax-chef .p-recipe-single-chef__name {
        text-align: center;
    }
}
@media screen and (max-width: 480px) {
    .p-recipe-single-allergen__list {
        justify-content: space-between;
    }
    .p-recipe-single-allergen__list:before,
    .p-recipe-single-allergen__list:after {
        content: "";
        display: block;
        width: calc(100% / 4);
        height: 0;
    }
    .p-recipe-single-allergen__list:before {
        order: 1;
    }
    .p-recipe-single-allergen__list-item {
        width: calc(100% / 4);
    }
    .p-recipe-single-allergen__list-item:not(:last-of-type) {
        margin-right: 0;
    }
}

/********** 冷凍めんのおいしさの秘密 **********/
.p-deliciousness .wrap3,
.p-deliciousness__way .wrap2 {
    align-items: flex-start;
}
.p-deliciousness .wrap3 > .cent {
    margin: 0 calc(60 / 1200 * 100%) 0 calc(100 / 1200 * 100%);
    width: calc(400 / 1200 * 100%);
}
.p-deliciousness .wrap3 > .right {
    width: calc(500 / 1200 * 100%);
}
.p-deliciousness__way .wrap2 {
    flex-wrap: nowrap;
}
.p-deliciousness__way .wrap2 > .left {
    margin-right: calc(100 / 1200 * 100%);
    width: calc(965 / 1200 * 100%);
}
.p-deliciousness__way-time {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.p-deliciousness__way-time > li:nth-of-type(odd) {
    margin-right: 1em;
}

@media screen and (max-width: 1220px) {
    .p-deliciousness .wrap3 > .cent {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 768px) {
    .p-deliciousness .wrap3 {
        flex-wrap: wrap;
    }
    .p-deliciousness .wrap3 > .left,
    .p-deliciousness__way .wrap2 > .right {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .p-deliciousness .wrap3 > .cent {
        margin: 0 0 40px;
        width: 100%;
    }
    .p-deliciousness .wrap3 > .right {
        width: 100%;
    }
    .p-deliciousness .tate_mds1 {
        margin-bottom: 40px;
    }
    .p-deliciousness__boil .wrap3 > .right {
        margin-left: auto;
        margin-right: 0;
        width: calc(250 / 375 * 100%);
    }
    .p-deliciousness__material .wrap3 > .right {
        margin-left: 0;
        margin-right: auto;
        width: calc(250 / 375 * 100%);
    }
    .p-deliciousness__way .wrap2 {
        flex-wrap: wrap;
    }
    .p-deliciousness__way .wrap2 > .left {
        margin-right: 0;
        width: 100%;
    }
    .p-deliciousness__way .wrap2 .ul50 > li {
        width: 100%;
    }
}

/********** 冷凍めんの種類 **********/
.p-type-noodle-type__list {
    display: flex;
    flex-wrap: wrap;
}
.p-type-noodle-type__list-link {
    display: block;
    position: relative;
    width: calc((100% - 40px) / 2);
}
.p-type-noodle-type__list-link:not(:nth-of-type(2n)) {
    margin-right: 40px;
}
.p-type-noodle-type__list-link:not(:nth-last-of-type(-n + 2)) {
    margin-bottom: 40px;
}
.p-type-noodle-type__list-link:hover {
    opacity: 1;
    text-decoration: none;
}
.p-type-noodle-type__list-img {
    overflow: hidden;
}
.p-type-noodle-type__list-img img {
    margin-bottom: 0;
    transition: transform 0.6s ease;
}
.p-type-noodle-type__list-link:hover .p-type-noodle-type__list-img img {
    opacity: 1;
    transform: scale(1.1);
}
.p-type-noodle-type__list-name {
    color: #fff;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(14px + 6 * (100vw - 375px) / 1545);
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(60 / 580 * 100%);
}
.p-type-noodle-type__list-name-inner {
    display: inline-block;
    padding-right: 1.5em;
    position: relative;
}
.p-type-noodle-type__list-name-inner:after {
    align-items: center;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    bottom: 0;
    content: "";
    display: flex;
    font-size: 90%;
    height: 8px;
    justify-content: center;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    right: 0;
    transition: right 0.3s;
    transform: translateY(-50%) rotate(135deg);
    width: 8px;
}
.p-type-noodle-archive__inner {
    margin-top: -70px;
    padding-top: 70px;
}
.p-type-noodle-archive__heading {
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    margin-bottom: 80px;
    width: 100%;
}
#boiled .p-type-noodle-archive__heading {
    background-image: url("./images/type_noodle-type01-big.jpg");
}
#raw .p-type-noodle-archive__heading {
    background-image: url("./images/type_noodle-type02-big.jpg");
}
#cooked .p-type-noodle-archive__heading {
    background-image: url("./images/type_noodle-type03-big.jpg");
}
#set .p-type-noodle-archive__heading {
    background-image: url("./images/type_noodle-type04-big.jpg");
}
.p-type-noodle-archive__heading-inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 350px;
    justify-content: center;
}
.p-type-noodle-archive__heading-title.tit1 {
    margin-bottom: 0;
    padding-bottom: 0;
}
.p-type-noodle-archive__heading-title:after {
    display: none;
}
.p-type-noodle-archive__heading-title,
.p-type-noodle-archive__heading-note {
    color: #fff;
}
.p-type-noodle-archive__body-inner {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-type-noodle-archive__body-text {
    width: calc(720 / 1200 * 100%);
}
.p-type-noodle-archive__body-type {
    margin-top: 40px;
}
.p-type-noodle-archive__body-type-inner {
    background-color: #efefef;
    font-size: 14px;
    padding: 30px;
}
.p-type-noodle-archive__body-type-list dt,
.p-type-noodle-archive__body-type-list dd {
    font-size: 14px;
    margin-bottom: 0;
}
.p-type-noodle-archive__body-type-list dd:not(:last-of-type) {
    margin-bottom: 1.5em;
}
.p-type-noodle-archive__body-slider {
    margin-left: auto !important;
    margin-right: 0 !important;
    padding-bottom: 40px !important;
    width: calc(400 / 1200 * 100%);
}
.p-type-noodle-archive__body-slider-navi--prev,
.p-type-noodle-archive__body-slider-navi--next {
    top: calc(50% - 40px);
}
.p-type-noodle-archive__body-slider-title {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .p-type-noodle-type__list {
        max-width: 580px;
        margin: auto;
        width: 100%;
    }
    .p-type-noodle-type__list-link {
        width: 100%;
    }
    .p-type-noodle-type__list-link:not(:nth-of-type(2n)) {
        margin-right: 0;
    }
    .p-type-noodle-type__list-link:not(:last-of-type) {
        margin-bottom: 15px;
    }
    .p-type-noodle-archive__heading {
        height: auto;
        margin-bottom: 1em;
    }
    #boiled .p-type-noodle-archive__heading,
    #raw .p-type-noodle-archive__heading,
    #cooked .p-type-noodle-archive__heading,
    #set .p-type-noodle-archive__heading {
        background-image: none;
    }
    .p-type-noodle-archive__heading-inner {
        display: block;
        height: auto;
    }
    .p-type-noodle-archive__heading-title,
    .p-type-noodle-archive__heading-note {
        color: inherit;
    }
    .p-type-noodle-archive__heading-title {
        margin-top: 25px;
    }
    .p-type-noodle-archive__body-text,
    .p-type-noodle-archive__body-slider {
        width: 100%;
    }
    .p-type-noodle-archive__body-slider {
        margin: 40px auto 0 !important;
        max-width: 400px;
    }
}

/********** 冷凍めんのおいしい食べ方 **********/
.post-12 {
    overflow: hidden auto;
    width: 100%;
}
.p-eat-bg1 {
    background: linear-gradient(180deg, transparent 0%, transparent 9%, #fbfbfb 9%, #fbfbfb 100%);
}
.p-eat-lead {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
}
.p-eat-lead__img {
    padding-right: calc(60 / 1000 * 100%);
    width: calc(100% - 390px);
}
.p-eat-lead__text {
    width: 390px;
}
.p-eat-lead__text > p:not(:last-of-type) {
    margin-bottom: 1.75em;
}
.p-eat-point {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 50px;
}
.p-eat-point__heading {
    padding-right: 60px;
    width: 205px;
}
.p-eat-point__list {
    width: calc(100% - 205px);
}
.p-eat-point__list-item {
    align-items: center;
    border-bottom: 1px solid #cccccc;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 0;
    padding: 20px;
}
.p-eat-point__list-item:first-of-type {
    border-top: 1px solid #cccccc;
}
.p-eat-point__list-num {
    color: #8b0d19;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
    padding-right: calc(30 / 600 * 100%);
}
.p-eat-point__list-contents {
    margin-bottom: 0;
}
.p-eat-point__list-contents-title {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.p-eat-recipe__heading {
    margin-bottom: 100px;
}
.p-eat-recipe__heading-inner {
    background-image: url("./images/eat_recommend-recipe-bg-pc.jpg");
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    width: 100%;
}
.p-eat-recipe__heading-inner-wrap {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 350px;
    justify-content: center;
}
.p-eat-recipe__heading-title {
    color: #fff;
}
.p-eat-recipe__heading-title.tit1::after {
    background-color: #fff;
}
.p-eat-recipe__heading-note {
    color: #fff;
}
.p-eat-recipe__list {
    display: flex;
    flex-wrap: wrap;
}
.p-eat-recipe__list-wrap {
    width: calc(570 / 1200 * 100%);
}
.p-eat-recipe__list-wrap:nth-of-type(odd) {
    margin-right: calc(60 / 1200 * 100%);
}
.p-eat-recipe__list-wrap:not(:nth-last-of-type(-n + 2)) {
    margin-bottom: 40px;
}
.p-eat-recipe__list-heading {
    border-bottom: solid 2px #cccccc;
    margin-bottom: 30px;
    padding-bottom: 5px;
    position: relative;
}
.p-eat-recipe__list-heading:after {
    border-bottom: solid 2px #8b0d19;
    bottom: -2px;
    content: " ";
    display: block;
    left: 0;
    position: absolute;
    width: 5%;
}
.p-eat-recipe__list-heading-inner {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.p-eat-recipe__list-heading-title {
    margin-bottom: 0;
    margin-right: 5px;
}
.p-eat-recipe__list-heading-link {
    background: linear-gradient(#9f0b19, #9f0b19) 0 100%/0 1px no-repeat;
    color: #8b0d19;
    display: inline-block;
    padding-right: 1.25em;
    position: relative;
    text-decoration: none;
    transition: background 0.4s;
}
.p-eat-recipe__list-heading-link:after {
    border-right: 1px solid #8b0d19;
    border-top: 1px solid #8b0d19;
    content: "";
    height: 8px;
    margin-top: -1px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    width: 8px;
}
.p-eat-recipe__list-heading-link:hover {
    background-size: 100% 1px;
    color: #8b0d19;
    opacity: 1;
    text-decoration: none;
}
.p-eat-recipe-slider {
    padding-bottom: 50px !important;
}
.p-eat-recipe-slider__item {
    display: block;
}
.p-eat-recipe-slider__item:hover {
    opacity: 1;
    text-decoration: none;
}
.p-eat-recipe-slider__item-inner {
    display: flex;
    flex-direction: column;
}
.p-eat-recipe-slider__thumbnail-img {
    transition: transform 0.6s ease;
}
.p-eat-recipe-slider__item:hover .p-eat-recipe-slider__thumbnail-img {
    opacity: 1;
    transform: scale(1.1) translateY(-50%);
}
.p-eat-recipe-slider__label {
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
}
.p-eat-recipe-slider__title {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
}
.p-eat-recipe-slider__navi--prev,
.p-eat-recipe-slider__navi--next {
    display: none;
}
.p-eat-recipe-slider.active .p-eat-recipe-slider__navi--prev,
.p-eat-recipe-slider.active .p-eat-recipe-slider__navi--next {
    display: block;
}
.p-eat-attention__list-title {
    margin-top: 1rem;
}
.p-eat-attention__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-eat-attention__list-item {
    background-color: #fff;
    padding: 35px calc(35 / 1200 * 100%);
    width: calc(570 / 1200 * 100%);
}
.p-eat-attention__list-item:nth-of-type(odd) {
    margin-right: calc(60 / 1200 * 100%);
}
.p-eat-attention__list-item:not(:nth-last-of-type(-n + 2)) {
    margin-bottom: 50px;
}

@media screen and (min-width: 769px) {
    .p-eat-recipe-slider__navi--prev,
    .p-eat-recipe-slider__navi--next {
        width: calc(50 / 570 * 100%);
    }
}
@media screen and (max-width: 768px) {
    .p-eat-lead__img {
        margin-bottom: 20px;
        padding-right: 0;
        width: 100%;
    }
    .p-eat-lead__text {
        width: 100%;
    }
    .p-eat-lead__text.txt2 {
        font-size: 14px;
    }
    .p-eat-point {
        padding: 30px 20px;
    }
    .p-eat-point__heading {
        padding-right: 0;
        width: 100%;
    }
    .p-eat-point__title {
        margin-bottom: 20px;
    }
    .p-eat-point__list {
        width: 100%;
    }
    .p-eat-attention__list-title {
        font-size: 18px;
    }
    .p-eat-point__list-item {
        padding: 20px 0;
    }
    .p-eat-point__list-num {
        font-size: 20px;
        padding-right: 20px;
    }
    .p-eat-point__list-contents-title {
        font-size: 16px;
    }
    .p-eat-recipe__heading {
        margin-bottom: 40px;
    }
    .p-eat-recipe__heading-inner {
        background-image: none;
        height: auto;
    }
    .p-eat-recipe__heading-inner-wrap {
        display: block;
        height: auto;
    }
    .p-eat-recipe__heading-note {
        color: inherit;
        margin-top: 40px;
    }
    .p-eat-recipe__list-wrap {
        width: 100%;
    }
    .p-eat-recipe__list-wrap:nth-of-type(odd) {
        margin-right: inherit;
    }
    .p-eat-recipe__list-wrap:not(:nth-last-of-type(-n + 2)) {
        margin-bottom: inherit;
    }
    .p-eat-recipe__list-wrap:not(:last-of-type) {
        margin-bottom: 40px;
    }
    .p-eat-recipe-slider__title {
        font-size: 16px;
    }
    .p-eat-recipe-slider {
        padding-bottom: 40px !important;
    }
    .p-eat-recipe-slider {
        overflow: visible !important;
        width: 100%;
    }
    .p-eat-recipe-slider__navi--prev,
    .p-eat-recipe-slider__navi--next {
        top: calc(50% - 60px);
    }
    .p-eat-recipe-slider__navi--prev {
        left: 0;
    }
    .p-eat-recipe-slider__navi--next {
        right: 0;
    }
}
@media screen and (max-width: 640px) {
    .p-eat-attention__list-item {
        padding: 20px 20px 35px;
        width: 100%;
    }
    .p-eat-attention__list-item:nth-of-type(odd) {
        margin-right: inherit;
    }
    .p-eat-attention__list-item:not(:nth-last-of-type(-n + 2)) {
        margin-bottom: inherit;
    }
    .p-eat-attention__list-item:not(:last-of-type) {
        margin-bottom: 40px;
    }
}

/********** RMK会員募集中 **********/
.p-members-useful__list {
    display: flex;
    flex-wrap: wrap;
}
.p-members-useful__list-item {
    align-items: center;
    background-color: #fff;
    display: flex;
    flex-wrap: nowrap;
    padding: 70px calc(50 / 1200 * 100%);
    width: calc(580 / 1200 * 100%);
}
.p-members-useful__list-item:nth-of-type(odd) {
    margin-right: calc(40 / 1200 * 100%);
}
.p-members-useful__list-item:not(:nth-last-of-type(-n + 2)) {
    margin-bottom: 40px;
}
.p-members-useful__list-thumbnail {
    width: 100px;
}
.p-members-useful__list-contents {
    padding-left: 50px;
    width: calc(100% - 100px);
}
.p-members-rmk {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-members-rmk__contents {
    width: calc(620 / 1200 * 100%);
}
.p-members-rmk__image {
    width: calc(500 / 1200 * 100%);
}
.p-members-rmk__note1 {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}
.p-members-rmk__note1-image {
    text-align: center;
    width: calc(150 / 620 * 100%);
}
.p-members-rmk__note1-text {
    width: calc(420 / 620 * 100%);
}
.p-members-rmk__note2 {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 30px;
}
.p-members-rmk__note2-list {
    margin-bottom: 0;
}
.p-members-recruit__title.tit1:after {
    content: none;
}

@media screen and (max-width: 768px) {
    .p-members-useful__list-item {
        padding: 30px 20px;
        width: 100%;
    }
    .p-members-useful__list-item:nth-of-type(odd) {
        margin-right: inherit;
    }
    .p-members-useful__list-item:not(:nth-last-of-type(-n + 2)) {
        margin-bottom: inherit;
    }
    .p-members-useful__list-item:not(:last-of-type) {
        margin-bottom: 20px;
    }
    .p-members-useful__list-thumbnail {
        width: 60px;
    }
    .p-members-useful__list-contents {
        padding-left: 25px;
        width: calc(100% - 60px);
    }
    .p-members-useful__list-contents-title {
        font-size: 18px;
    }
    .p-members-rmk__contents,
    .p-members-rmk__image,
    .p-members-rmk__note1-image,
    .p-members-rmk__note1-text {
        width: 100%;
    }
    .p-members-rmk__note1-image {
        margin: 0 auto 40px;
        max-width: 120px;
    }
    .p-members-rmk__note2 {
        padding: 20px;
    }
    .p-members-rmk__note3 {
        margin-bottom: 40px;
    }
}

/********** プロも愛用する冷凍めん **********/
.p-restaurant__bg {
    text-align: center;
}
.p-restaurant__lead {
    background-color: #fff;
    margin-top: -80px;
    padding: 45px calc(60 / 1000 * 100%) 50px;
    position: relative;
    z-index: 1;
}
.p-restaurant__lead-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-restaurant__contents-inner:not(:last-of-type) {
    margin-bottom: 80px;
}
.p-restaurant__contents-box--us60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.p-restaurant__contents-box--u60 {
    padding-top: 60px;
}
.p-restaurant__contents-box--s60 {
    padding-bottom: 60px;
}
.p-restaurant__contents-title {
    margin-bottom: 40px;
}
.p-restaurant__lead-contents-image {
    width: 150px;
}
.p-restaurant__lead-contents-text {
    padding-left: calc(30 / 1000 * 100%);
    width: calc(100% - 150px);
}
.p-restaurant__lead-contents-name-sub {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}
.p-restaurant__contents-col2--82 {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
}
.p-restaurant__contents-col2--82 > div:first-of-type {
    padding-right: calc(60 / 1000 * 100%);
    width: 80%;
}
.p-restaurant__contents-col2--82 > div:last-of-type {
    width: 20%;
}
.p-restaurant__contents-used {
    background-color: #fff;
    border: 1px solid #cccccc;
    max-width: 900px;
    margin: 40px auto 120px;
    padding: 40px calc(40 / 900 * 100%);
    width: 100%;
}
.p-restaurant__contents-used-inner {
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
}
.p-restaurant__contents-used-image {
    width: calc(200 / 820 * 100%);
}
.p-restaurant__contents-used-image-sp {
    display: none;
}
.p-restaurant__contents-used-detail {
    padding-left: calc(30 / 820 * 100%);
    width: calc(620 / 820 * 100%);
}
.p-restaurant__contents-used-detail-title {
    font-size: 16px;
}
.p-restaurant__contents-used-detail-title-sub {
    color: #888888;
    font-size: 14px;
    font-weight: bold;
    display: block;
}
.p-restaurant__contents-used-detail-btn-wrap {
    margin-top: 30px;
}
.p-restaurant__contents-merit {
    background-color: #efefef;
    margin-bottom: 60px;
    padding: 50px calc(50 / 1000 * 100%) 60px;
}
.p-restaurant__contents-merit-title {
    margin-bottom: 50px;
}
.p-restaurant__contents-merit-list {
    display: flex;
    flex-wrap: wrap;
}
.p-restaurant__contents-merit-list-item {
    display: flex;
    flex-direction: column;
    width: calc(100% / 3);
}
.p-restaurant__contents-merit-list-item:nth-of-type(1) {
    padding-right: calc(30 / 1000 * 100%);
}
.p-restaurant__contents-merit-list-item:nth-of-type(2) {
    padding-left: calc(30 / 1000 * 100%);
    padding-right: calc(30 / 1000 * 100%);
}
.p-restaurant__contents-merit-list-item:nth-of-type(3) {
    padding-left: calc(30 / 1000 * 100%);
}
.p-restaurant__contents-merit-list-item:not(:last-of-type) {
    border-right: 1px solid #cccccc;
}
.p-restaurant__contents-merit-list-title {
    font-family: "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    margin-bottom: 20px;
    min-height: calc(1em + 50px);
}
.p-restaurant__contents-keyaki-col2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.p-restaurant__contents-keyaki-col2-image {
    width: calc(450 / 1000 * 100%);
}
.p-restaurant__contents-keyaki-col2-info {
    padding-left: calc(30 / 1000 * 100%);
    width: calc(550 / 1000 * 100%);
}
.p-restaurant__contents-keyaki-col2-title {
    margin-bottom: 30px;
}
.p-restaurant__contents-keyaki-col2-detail {
    margin-bottom: 30px;
    width: 100%;
}
.p-restaurant__contents-keyaki-col2-detail th {
    vertical-align: top;
}
.p-restaurant__contents-keyaki-col2-insta-link:hover {
    text-decoration: none;
}
.p-restaurant__contents-keyaki-col2-insta-text {
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    text-decoration: underline;
}
.p-restaurant__contents-keyaki-gallery {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-restaurant__contents-keyaki-gallery-thumbnail {
    width: calc((100% - 60px) / 4);
}
.p-restaurant__contents-keyaki-gmap {
    margin-top: 80px;
}
.p-restaurant__contents-keyaki-gmap-inner {
    padding-top: 50%;
    position: relative;
    width: 100%;
}
.p-restaurant__contents-keyaki-gmap-inner iframe {
    border: none;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .p-restaurant__lead {
        margin-top: 0;
        padding: 20px 20px 35px;
    }
    .p-restaurant__contents-inner:not(:last-of-type) {
        margin-bottom: 60px;
    }
    .p-restaurant__contents-box--us60 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .p-restaurant__contents-box--u60 {
        padding-top: 30px;
    }
    .p-restaurant__contents-box--s60 {
        padding-bottom: 30px;
    }
    .p-restaurant__contents-title {
        margin-bottom: 20px;
    }
    .p-restaurant__lead-contents-image {
        margin: 0 auto 10px;
        width: 60%;
    }
    .p-restaurant__lead-contents-image img {
        margin-left: auto;
        margin-right: auto;
    }
    .p-restaurant__lead-contents-text {
        padding-left: 0;
        margin: 0 auto;
        max-width: 375px;
        width: 100%;
    }
    .p-restaurant__lead-contents-name {
        text-align: center;
    }
    .p-restaurant__lead-contents-name-sub {
        display: block;
    }
    .p-restaurant__contents-col2--82 > div:first-of-type {
        margin-bottom: 1rem;
        padding-right: 0;
        width: 100%;
    }
    .p-restaurant__contents-col2--82 > div:last-of-type {
        width: 100%;
    }
    .p-restaurant__contents-col2--oil {
        display: flex;
        flex-wrap: nowrap;
    }
    .p-restaurant__contents-col2--oil > div:first-of-type {
        width: calc(120 / 375 * 100vw);
    }
    .p-restaurant__contents-col2--oil > div:last-of-type {
        padding-left: calc(15 / 375 * 100vw);
        width: calc(200 / 375 * 100vw);
    }
    .p-restaurant__contents-used {
        margin: 30px auto 60px;
    }
    .p-restaurant__contents-used-image {
        width: 120px;
    }
    .p-restaurant__contents-used-detail {
        padding-left: 15px;
        width: calc(100% - 120px);
    }
    .p-restaurant__contents-used-detail-title {
        font-size: 14px;
    }
    .p-restaurant__contents-used-detail-title-sub {
        font-size: 12px;
    }
    .p-restaurant__contents-merit {
        margin-bottom: 30px;
        padding: 30px 20px 40px;
    }
    .p-restaurant__contents-merit-title {
        margin-bottom: 30px;
    }
    .p-restaurant__contents-merit-list-item {
        border-bottom: 1px solid #cccccc;
        padding: 20px 0;
        width: 100%;
    }
    .p-restaurant__contents-merit-list-item:first-of-type {
        border-top: 1px solid #cccccc;
    }
    .p-restaurant__contents-merit-list-item:nth-of-type(1) {
        padding-right: inherit;
    }
    .p-restaurant__contents-merit-list-item:nth-of-type(2) {
        padding-left: inherit;
        padding-right: inherit;
    }
    .p-restaurant__contents-merit-list-item:nth-of-type(3) {
        padding-left: inherit;
    }
    .p-restaurant__contents-merit-list-item:not(:last-of-type) {
        border-right: none;
    }
    .p-restaurant__contents-merit-list-title {
        margin-bottom: 15px;
        min-height: auto;
    }
}
@media screen and (max-width: 640px) {
    .p-restaurant__contents-keyaki-col2 {
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
        max-width: 450px;
        width: 100%;
    }
    .p-restaurant__contents-keyaki-col2-image {
        width: 100%;
    }
    .p-restaurant__contents-keyaki-col2-info {
        padding-left: inherit;
        width: 100%;
    }
    .p-restaurant__contents-keyaki-col2-title,
    .p-restaurant__contents-keyaki-col2-detail {
        margin-bottom: 15px;
    }
    .p-restaurant__contents-keyaki-gallery-thumbnail {
        width: calc((100% - 15px) / 2);
    }
    .p-restaurant__contents-keyaki-gallery-thumbnail > img:not(:nth-last-of-type(-n + 2)) {
        margin-bottom: 15px;
    }
    .p-restaurant__contents-keyaki-gmap {
        margin-top: 50px;
    }
    .p-restaurant__contents-keyaki-gmap-inner {
        padding-top: 75%;
    }
}
@media screen and (max-width: 480px) {
    .p-restaurant__contents-used {
        padding: 30px 20px 40px;
    }
    .p-restaurant__contents-used-inner {
        padding-top: 0;
    }
    .p-restaurant__contents-used-image {
        margin: auto;
        max-width: 70%;
        width: 100%;
    }
    .p-restaurant__contents-used-image-pc {
        display: none;
    }
    .p-restaurant__contents-used-image-sp {
        display: block;
    }
    .p-restaurant__contents-used-detail {
        padding-left: 0;
        width: 100%;
    }
}

/********** アウトドア **********/
.p-outdoor {
    overflow: hidden auto;
    width: 100%;
}
.p-outdoor__bg {
    text-align: center;
    margin: 0 auto;
    max-width: 1720px;
    width: 100%;
}
.p-outdoor__contents-inner {
    padding-top: 100px;
}
.p-outdoor__contents-inner-wrap:not(:first-of-type) {
    padding-top: 60px;
}
.p-outdoor__contents-image-col2 {
    display: inline-flex;
}
.p-outdoor__contents-image-col2 > div {
    width: 50%;
}
.p-outdoor__contents-place {
    color: #888;
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
    margin-top: 30px;
}
.p-outdoor__contents-place a {
    color: #888;
}
.p-outdoor__contents-place a:hover {
    color: #888;
    text-decoration: underline;
}
.p-outdoor__contents-recipe:not(.swiper-container-initialized) {
    padding: 0;
}
.p-outdoor__contents-recipe:not(.swiper-container-initialized) .p-outdoor__contents-recipe-navi--prev,
.p-outdoor__contents-recipe:not(.swiper-container-initialized) .p-outdoor__contents-recipe-navi--next,
.p-outdoor__contents-recipe:not(.swiper-container-initialized) .p-outdoor__contents-recipe-pagination {
    display: none;
}
.p-outdoor__contents-recipe:not(.swiper-container-initialized) .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.p-outdoor__contents-recipe:not(.swiper-container-initialized) .swiper-slide {
    display: block;
    margin-bottom: 60px;
    width: calc((100% - (60 / 1000 * 100%)) / 2);
}
.p-outdoor__contents-recipe:not(.swiper-container-initialized) .swiper-slide:not(:nth-of-type(2n)) {
    margin-right: calc(60 / 1000 * 100%);
}
.p-outdoor__contents-recipe-item:hover {
    opacity: 1;
    text-decoration: none;
}
.p-outdoor__contents-recipe-thumbnail-img {
    transition: transform 0.6s ease;
}
.p-outdoor__contents-recipe-item:hover .p-outdoor__contents-recipe-thumbnail-img {
    opacity: 1;
    transform: scale(1.1) translateY(-50%);
}
.p-outdoor__contents-recipe-item-inner {
    display: flex;
    flex-direction: column;
}
.p-outdoor__contents-recipe-title {
    font-size: calc(15px + 3 * (100vw - 375px) / 1545);
    line-height: 1.5;
    margin-bottom: 0;
}
.p-outdoor__contents-recipe-chef {
    color: #888;
    font-size: calc(11px + 3 * (100vw - 375px) / 1545);
}

@media screen and (max-width: 768px) {
    .p-outdoor__contents-inner {
        padding-top: 60px;
    }
    .p-outdoor__contents-inner-wrap:not(:first-of-type) {
        padding-top: 40px;
    }
    .p-outdoor__bg-caption {
        padding: 0 20px;
    }
    .p-outdoor__contents-recipe {
        overflow: visible !important;
        padding-bottom: 40px !important;
        width: 100%;
    }
    .p-outdoor__contents-recipe:not(.swiper-container-initialized) .swiper-slide {
        width: 100%;
    }
    .p-outdoor__contents-recipe-navi--prev,
    .p-outdoor__contents-recipe-navi--next {
        top: calc(50% - 60px);
    }
    .p-outdoor__contents-recipe-navi--prev {
        left: 0;
    }
    .p-outdoor__contents-recipe-navi--next {
        right: 0;
    }
}

/********** 安全・安心を保証するRMK認定マーク **********/
.p-mark-lead {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    max-width: 885px;
    width: 100%;
}
.p-mark-lead__image {
    width: calc(200 / 885 * 100%);
}
.p-mark-lead__contents {
    padding-left: calc(115 / 885 * 100%);
    width: calc(685 / 885 * 100%);
}
.p-mark-lead__exam {
    background-color: #f6f6f6;
    margin-top: 40px;
    padding: 30px;
}
.p-mark-lead__exam-list {
    margin-bottom: 0;
}
.p-mark-links {
    display: flex;
    flex-wrap: wrap;
}
.p-mark-links__item {
    align-items: center;
    background-color: #e5e5e5;
    cursor: pointer;
    display: inline-flex;
    flex-wrap: wrap;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 18px;
    font-weight: bold;
    justify-content: center;
    line-height: calc(26 / 18);
    padding: 10px;
    position: relative;
    text-align: center;
    transition: all 0.7s;
    width: calc((100% - 60px) / 4);
}
.p-mark-links__item:not(:last-of-type) {
    margin-right: 20px;
}
.p-mark-links__item:before {
    background-color: #ccc;
    color: #fff;
    content: "";
    height: calc(100% - 1px);
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}
.p-mark-links__item:hover {
    opacity: 1;
    text-decoration: none;
}
.p-mark-links__item:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}
.p-mark-links__item > span {
    display: inline-block;
    padding-right: 1em;
    position: relative;
    z-index: 100;
}
.p-mark-links__item > span:after {
    border-top: 2px solid #8b0d19;
    border-right: 2px solid #8b0d19;
    content: "";
    height: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(135deg);
    width: 8px;
}
.p-mark-origin,
.p-mark-flow,
.p-mark-checkpoint,
.p-mark-assurance {
    margin-top: -100px;
    padding-top: 100px;
}
.p-mark-origin__list-item {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-mark-origin__list-item:not(:last-of-type) {
    margin-bottom: 100px;
}
.p-mark-origin__list-image {
    width: calc(700 / 1200 * 100%);
}
.p-mark-origin__list-contents {
    width: calc(440 / 1200 * 100%);
}
.p-mark-origin__list-item:nth-of-type(even) .p-mark-origin__list-image {
    order: 1;
}
.p-mark-origin__list-item:nth-of-type(even) .p-mark-origin__list-contents {
    order: 0;
}
.p-mark-checkpoint__policy {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
}
.p-mark-checkpoint__policy-contents {
    width: calc(520 / 1200 * 100%);
}
.p-mark-checkpoint__policy-image {
    width: calc(600 / 1200 * 100%);
}
.p-mark-checkpoint__policy-item {
    background-color: #efefef;
    margin: 30px 0 60px;
    padding: 20px;
}
.p-mark-checkpoint__policy-item-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.p-mark-checkpoint__policy-item-list li {
    display: inline-block;
    padding-right: 1em;
}
.p-mark-checkpoint__inspection-table {
    margin-top: 40px;
    width: 100%;
}
.p-mark-checkpoint__inspection-table tr:not(:last-of-type) {
    border-bottom: 1px solid #e5e5e5;
}
.p-mark-checkpoint__inspection-table tr:first-of-type {
    border-top: 1px solid #444444;
}
.p-mark-checkpoint__inspection-table tr:last-of-type {
    border-bottom: 1px solid #444444;
}
.p-mark-checkpoint__inspection-table th {
    background-color: #efefef;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    padding: 20px 20px 20px;
    vertical-align: top;
    width: 25%;
}
.p-mark-checkpoint__inspection-table td {
    background-color: #fff;
    padding: 20px 20px 20px 40px;
    width: 75%;
}
.p-mark-checkpoint__inspection-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.p-mark-assurance__group {
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    display: flex;
    flex-wrap: wrap;
}
.p-mark-assurance__group-inner {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    border-right: 2px solid #e5e5e5;
    padding: 10px;
    width: calc(100% / 4);
}
.p-mark-assurance__group-inner--a {
    order: 0;
}
.p-mark-assurance__group-inner--sa {
    order: 1;
}
.p-mark-assurance__group-inner--na {
    order: 2;
}
.p-mark-assurance__group-inner--ma {
    border-right: none;
    order: 3;
}
.p-mark-assurance__group-inner--ka {
    order: 4;
}
.p-mark-assurance__group-inner--ta {
    order: 5;
}
.p-mark-assurance__group-inner--ha {
    order: 6;
}
.p-mark-assurance__group-inner--ya {
    border-right: none;
    order: 7;
}
.p-mark-assurance__group-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.p-mark-assurance__group-list li {
    font-size: 14px;
}

@media screen and (max-width: 1000px) {
    .p-mark-links__item {
        width: calc((100% - 15px) / 2);
    }
    .p-mark-links__item:not(:last-of-type) {
        margin-right: inherit;
    }
    .p-mark-links__item:nth-of-type(odd) {
        margin-right: 15px;
    }
    .p-mark-links__item:not(:nth-last-of-type(-n + 2)) {
        margin-bottom: 15px;
    }
    .p-mark-origin__list-item:not(:last-of-type) {
        margin-bottom: 60px;
    }
    .p-mark-origin__list-image,
    .p-mark-origin__list-contents {
        width: 100%;
    }
    .p-mark-origin__list-image {
        margin-bottom: 25px;
        text-align: center;
    }
    .p-mark-origin__list-item:nth-of-type(even) .p-mark-origin__list-image {
        order: 0;
    }
}
@media screen and (max-width: 768px) {
    .p-mark-links__item {
        font-size: 14px;
        padding: 15px 20px;
        width: 100%;
    }
    .p-mark-links__item:nth-of-type(odd) {
        margin-right: inherit;
    }
    .p-mark-links__item:not(:nth-last-of-type(-n + 2)) {
        margin-bottom: inherit;
    }
    .p-mark-links__item:not(:last-of-type) {
        margin-bottom: 10px;
    }
    .p-mark-links__item > span {
        padding: 0;
        width: 100%;
    }
    .p-mark-links__item > span:after {
        right: 0;
    }
    .p-mark-checkpoint__policy-contents,
    .p-mark-checkpoint__policy-image {
        width: 100%;
    }
    .p-mark-checkpoint__policy-contents {
        margin-bottom: 30px;
    }
    .p-mark-checkpoint__policy-image {
        text-align: center;
    }
    .p-mark-checkpoint__policy-item {
        margin: 30px 0 30px;
    }
    .p-mark-assurance__group {
        border-right: none;
    }
    .p-mark-assurance__group-inner {
        border-right: 1px solid #e5e5e5;
        width: calc(100% / 2);
    }
    .p-mark-assurance__group-inner--a,
    .p-mark-assurance__group-inner--ka,
    .p-mark-assurance__group-inner--sa,
    .p-mark-assurance__group-inner--ta,
    .p-mark-assurance__group-inner--na,
    .p-mark-assurance__group-inner--ha,
    .p-mark-assurance__group-inner--ma,
    .p-mark-assurance__group-inner--ya {
        order: 0;
    }
    .p-mark-assurance__group-inner--ma,
    .p-mark-assurance__group-inner--ya {
        border-right: 1px solid #e5e5e5;
    }
    .p-mark-assurance__group-list li {
        font-size: 11px;
    }
}
@media screen and (max-width: 640px) {
    .p-mark-lead__image {
        margin: 0 auto 30px;
        text-align: center;
        max-width: 120px;
        width: 100%;
    }
    .p-mark-lead__contents {
        padding-left: inherit;
        width: 100%;
    }
    .p-mark-lead__exam {
        padding: 20px;
    }
    .p-mark-checkpoint__inspection-table th,
    .p-mark-checkpoint__inspection-table td {
        display: block;
        width: 100%;
    }
    .p-mark-checkpoint__inspection-table th {
        background-color: #fff;
        padding: 20px 20px 10px;
    }
    .p-mark-checkpoint__inspection-table td {
        padding: 0 20px 20px;
    }
}

/********** 日本冷凍めん協会とは **********/
.p-abouts-purpose__image {
    margin-top: 40px;
}
.p-abouts-market__data1,
.p-abouts-market__data2 {
    margin-top: 60px;
}
.p-abouts-market__data1-inner,
.p-abouts-market__data2-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.p-abouts-market__data1-inner {
    margin-bottom: 100px;
}
.p-abouts-market__data1-item,
.p-abouts-market__data2-item {
    width: calc((100% - 40px) / 2);
}
.p-abouts-market__data1-caption {
    margin-top: 10px;
    text-align: center;
}
.p-abouts-market__data1-caption-text {
    border-bottom: 1px solid #8b0d19;
    display: inline-block;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(16px + 8 * (100vw - 375px) / 1545);
    font-weight: bold;
}
.p-abouts-market__data1-caption-text span {
    font-size: calc(21px + 11 * (100vw - 375px) / 1545);
}
.p-abouts-businesses__list {
    margin-top: 60px;
}
.p-abouts-businesses__list-inner:not(:last-of-type) {
    margin-bottom: 40px;
}
.p-abouts-businesses__list-title {
    border-bottom: solid 2px #e5e5e5;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    padding-bottom: 5px;
    position: relative;
}
.p-abouts-businesses__list-title:after {
    border-bottom: solid 2px #8b0d19;
    bottom: -2px;
    content: " ";
    display: block;
    left: 0;
    position: absolute;
    width: 1.75rem;
}
.p-abouts-businesses__list-iroha {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.p-abouts-organization__image {
    margin: auto;
    width: min(855px, 100%);
}
.p-abouts-organization__image img {
    margin: 0 auto;
}
.p-abouts-overview__table {
    margin-bottom: 100px;
    width: 100%;
}
.p-abouts-overview__table tr:not(:last-of-type) {
    border-bottom: 1px solid #e5e5e5;
}
.p-abouts-overview__table tr:first-of-type {
    border-top: 1px solid #444444;
}
.p-abouts-overview__table tr:last-of-type {
    border-bottom: 1px solid #444444;
}
.p-abouts-overview__table th {
    background-color: #efefef;
    font-size: 16px;
    padding: 20px 30px;
    vertical-align: top;
    width: 25%;
}
.p-abouts-overview__table td {
    background-color: #fff;
    padding: 20px 40px;
    width: 75%;
}
.p-abouts-overview__table td ul {
    margin-bottom: 0;
}
.p-abouts-overview__day {
    background-color: #fff;
    border: 1px solid #8b0d19;
    padding: 60px 20px;
}
.p-abouts-overview__day-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    max-width: 985px;
}
.p-abouts-overview__day-note {
    padding-right: calc(30 / 985 * 100%);
    width: calc(100% - 150px);
}
.p-abouts-overview__day-image {
    margin: auto;
    text-align: center;
    width: 150px;
}

@media screen and (max-width: 768px) {
    .p-abouts-market__data1 {
        margin-top: 20px;
    }
    .p-abouts-market__data2 {
        margin-top: 40px;
    }
    .p-abouts-market__data1-inner {
        margin-bottom: 40px;
    }
    .p-abouts-market__data1-item,
    .p-abouts-market__data2-item {
        margin: auto;
        width: min(580px, 100%);
    }
}
@media screen and (max-width: 640px) {
    .p-abouts-overview__table th,
    .p-abouts-overview__table td {
        display: block;
        width: 100%;
    }
    .p-abouts-overview__table th {
        background-color: #fff;
        padding: 20px 20px 10px;
    }
    .p-abouts-overview__table td {
        padding: 0 20px 20px;
    }
    .p-abouts-overview__day {
        padding: 40px 20px;
    }
    .p-abouts-overview__day-title {
        font-size: 20px;
    }
    .p-abouts-overview__day-note {
        margin-bottom: 30px;
        width: 100%;
    }
}

/********** 会員構成 **********/
.p-membership-map__container {
    height: 0;
    position: relative;
    width: 100%;
}
.p-membership-map__container--pc {
    padding-top: calc(100% / 1280 * 1138.7);
}
.p-membership-map__container--sp {
    padding-top: calc(100% / 345 * 400);
}
.p-membership-map__content {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.p-membership-area__inner {
    margin-top: -100px;
    padding-top: 100px;
}
.p-membership-area__inner:not(:last-of-type) {
    margin-bottom: 80px;
}
.p-membership-area__list-inner {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
}
.p-membership-area__list-inner:first-of-type {
    padding-top: 0;
}
.p-membership-area__list-item {
    width: calc((100% - (100 / 1200 * 100%)) / 2);
}
.p-membership-area__list-item:nth-of-type(odd) {
    margin-right: calc(100 / 1200 * 100%);
}
.p-membership-area__list-title {
    background: linear-gradient(transparent 60%, #ccc 60%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    display: inline;
    margin-bottom: 0;
    transition: background-size 0.7s;
}
.p-membership-area__list-title--other {
    display: block;
}
.p-membership-area__list-title.js-marker {
    background-size: 100% 100%;
}
.p-membership-area__list-location {
    color: #888888;
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
}
.p-membership-area__list-btn-wrap {
    margin-top: 20px;
}
.p-membership-area__list-btn-wrap.c-btn__col2 > .c-btn {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600);
    font-weight: bold;
    margin-left: 0;
    margin-right: 0;
}
.p-membership-area__list-btn-wrap.c-btn__col2 > .c-btn:first-of-type {
    margin-right: 20px;
}
.p-membership-area__heading-type {
    width: fit-content;
    margin: auto;
    padding: calc(15px + 15 * (100vw - 375px) / 1545) 0 calc(50px + 30 * (100vw - 375px) / 1545);
}
.p-membership-area__heading-type-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.p-membership-area__heading-type-item:not(:last-of-type) {
    margin-bottom: 0.5em;
}
/* ラベル共通 */
.c-membership-label {
    display: inline-block;
    font-weight: 700;
    font-size: calc(12px + 2 * (100vw - 375px) / 1545);
    padding: 4px 10px;
    line-height: 1;
    white-space: nowrap;
    color: #fff;
}
.c-membership-label--a {
    background-color: #1d4ed8;
}
.c-membership-label--a-prime {
    background-color: #6d28d9;
}
.c-membership-label--b {
    background-color: #15803d;
}
.c-membership-label--c {
    background-color: #ea580c;
}
.c-membership-label--special {
    background-color: #b45309;
}
.c-membership-label--junior {
    background-color: #4b5563;
}
.p-membership-area__list-item .c-membership-label {
    display:;
}

@media screen and (min-width: 769px) {
    .p-membership-area__list-item {
        margin-top: -200px;
        padding-top: 200px;
    }
}
@media screen and (max-width: 768px) {
    .p-membership-area__list-btn-wrap.c-btn__col2 > .c-btn {
        width: calc((100% - 15px) / 2);
    }
    .p-membership-area__list-btn-wrap.c-btn__col2 > .c-btn:first-of-type {
        margin-bottom: 0;
        margin-right: 15px;
    }
}
@media screen and (max-width: 640px) {
    .p-membership-area__list-inner {
        border-bottom: none;
        padding: 0;
    }
    .p-membership-area__list-item {
        border-bottom: 1px solid #e5e5e5;
        padding: 30px 0;
        width: 100%;
    }
    .p-membership-area__list-item:nth-of-type(odd) {
        margin-right: 0;
    }
    .p-membership-area__list-inner:first-of-type .p-membership-area__list-item:first-of-type {
        padding-top: 0;
    }
}

/********** お知らせ **********/
.p-info {
    margin-top: -150px;
    padding-top: 150px;
}
.p-info__category {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0 40px;
}
.p-info__category-link {
    background-color: #e5e5e5;
    border-radius: 50vh;
    color: #333333;
    display: inline-block;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(14px + 2 * (100vw - 375px) / 1545);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-right: 10px;
    overflow: hidden;
    padding: 4px 1em;
    position: relative;
    text-decoration: none;
    transition: all 0.7s;
    z-index: 1;
}
.p-info__category-link:before {
    background-color: #ccc;
    color: #fff;
    content: "";
    height: calc(100% - 1px);
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    z-index: -1;
}
.p-info__category-link.current {
    background-color: #fff;
    border: 1px solid #8b0d19;
    color: #8b0d19;
}
.p-info__category-link:hover {
    opacity: 1;
    text-decoration: none;
}
.p-info__category-link:hover:not(.current):before {
    transform: scaleX(1);
    transform-origin: left;
}
.p-info__archive-post {
    border-bottom: 1px solid #cccccc;
    display: flex;
    flex-direction: column;
    padding: 30px calc(1em + 20px) 30px 0;
    position: relative;
}
.p-info__archive-post:first-of-type {
    border-top: 1px solid #cccccc;
}
.p-info__archive-post:after {
    border-left: 1px solid #8b0d19;
    border-top: 1px solid #8b0d19;
    content: "";
    height: 8px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    transition: all 0.4s;
    width: 8px;
}
.p-info__archive-post:hover {
    opacity: 1;
    text-decoration: none;
}
.p-info__archive-post:hover:after {
    transform: translateX(0.5em) translateY(-50%) rotate(135deg);
}
.p-info__archive-post-detail {
    display: flex;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.p-info__archive-post-date {
    border-right: 1px solid #cccccc;
    color: #777777;
    margin-right: 10px;
    padding-right: 10px;
}
.p-info__archive-post-cat {
    color: #8b0d19;
}
.p-info__archive-post-title {
    display: inline-block;
    font-family: "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .p-info__category {
        padding: 20px 0 25px;
    }
    .p-info__archive-post {
        padding: 20px calc(2em + 10px) 20px 0;
    }
    .p-info__archive-post:after {
        right: 10px;
    }
}

/********** お知らせ詳細 **********/
.p-single {
    background-color: #fbfbfb;
}
.p-single__title {
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: calc(20px + 10 * (100vw - 375px) / 1545) !important;
    font-weight: bold;
}
.p-single__ymd-cat {
    display: flex;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 40px;
}
.p-single__ymd {
    border-right: 1px solid #e5e5e5;
    margin-right: 10px;
    padding-right: 10px;
}
.p-single__cat {
    color: #8b0d19;
}
.p-single h1,
.p-single h2 {
    font-size: calc(22px + 6 * (100vw - 375px) / 1545);
}
.p-single h2 {
    margin-bottom: 40px;
    padding-bottom: 5px;
    position: relative;
}
.p-single h2:after {
    background-color: #8b0d19;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 1em;
}
.p-single h3 {
    font-size: calc(18px + 6 * (100vw - 375px) / 1545);
    margin-bottom: 20px;
}
.p-single h4 {
    font-size: calc(15px + 3 * (100vw - 375px) / 1545);
}
.p-single h5 {
    font-size: calc(15px + 1 * (100vw - 375px) / 1545);
}
.p-single p + h2 {
    margin-top: 60px;
}
.p-single p + h3 {
    margin-top: 40px;
}
.p-single p + h4 {
    margin-top: 25px;
}
.p-single a:not(.c-btn):not([href$=".jpg"]):not([href$=".png"]) {
    background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 1px no-repeat;
    color: #8b0d19;
    text-decoration: none;
    transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    word-break: break-all;
}
.p-single a:not(.c-btn):not([href$=".jpg"]):not([href$=".png"]):hover {
    background-position: right bottom;
    background-size: 0 1px;
    color: #8b0d19;
    text-decoration: none;
}
.p-single .bdn:after {
    display: none;
}
.p-single .wp-caption-text {
    font-weight: bold;
}
.c-frame__inner {
    background-color: #fff;
    border: 1px solid #8b0d19;
    display: inline-block;
    margin: 1em auto;
    padding: 30px calc(15px + 15 * (100vw - 375px) / 1545);
}
.p-gallery__wrap .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: inherit;
    gap: 1em;
}
.p-gallery__wrap .gallery .gallery-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}
.p-gallery__wrap .gallery .gallery-item img {
    margin: 0;
}
@media screen and (max-width: 480px) {
    .p-gallery__wrap .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/********** 検索結果 **********/
.p-search__archive-post {
    border-bottom: 1px solid #cccccc;
    display: flex;
    flex-direction: column;
    padding: 30px calc(1em + 20px) 30px 0;
    position: relative;
}
.p-search__archive-post:first-of-type {
    border-top: 1px solid #cccccc;
}
.p-search__archive-post:after {
    border-left: 1px solid #8b0d19;
    border-top: 1px solid #8b0d19;
    content: "";
    height: 8px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    transition: all 0.4s;
    width: 8px;
}
.p-search__archive-post:hover {
    opacity: 1;
    text-decoration: none;
}
.p-search__archive-post:hover:after {
    transform: translateX(0.5em) translateY(-50%) rotate(135deg);
}
.p-search__archive-post-detail {
    display: flex;
    font-family: "Shippori Mincho", "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.p-search__archive-post-date {
    color: #777777;
    margin-right: 10px;
    padding-right: 10px;
}
.p-search__archive-post-title {
    display: inline-block;
    font-family: "Yu Gothic", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.p-search__another {
    margin-top: 40px;
    text-align: center;
}
.p-search__another .c-search {
    max-width: 500px;
    width: 100%;
}
.p-search__another .c-search:before {
    height: 20px;
    width: 20px;
}
.p-search__another .c-search input {
    font-size: 16px;
    max-width: calc(100% - 70px);
    padding: 0.5em 1em 0.5em 2em;
    width: 100%;
}
.p-search__another .c-search button {
    font-size: 16px;
    width: 70px;
}

@media screen and (max-width: 768px) {
    .p-search__archive-post {
        padding: 20px calc(2em + 10px) 20px 0;
    }
    .p-search__archive-post:after {
        right: 10px;
    }
}

/********** プライバシーポリシー **********/
.p-privacy__title {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 1em;
}

/********** サイトマップ **********/
.p-sitemap__links {
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px;
}
.p-sitemap__links-item {
    background: linear-gradient(#9f0b19, #9f0b19) 0 100%/0 1px no-repeat;
    color: #444;
    margin: 0 calc(100 / 1200 * 100%) 1em 0;
    padding-right: 1em;
    position: relative;
    text-decoration: none;
    transition: background 0.4s;
}
.p-sitemap__links-item:after {
    border-top: 1px solid #8b0d19;
    border-right: 1px solid #8b0d19;
    content: "";
    height: 8px;
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
}
.p-sitemap__links-item:hover {
    background-size: 100% 1px;
    color: #444;
    opacity: 1;
    text-decoration: none;
}

@media screen and (max-width: 480px) {
    .p-sitemap__links {
        flex-direction: column;
        padding-left: 0;
    }
    .p-sitemap__links-item {
        margin-right: 0;
    }
}

/********** お問い合わせ **********/
.p-contact-ways {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-contact-ways__item {
    width: calc((100% - 60px) / 2);
}
.p-contact-ways__title {
    margin-bottom: calc(20px + 10 * (100vw - 375px) / 1545);
}
.p-contact-ways__tel-text1 {
    display: flex;
    font-size: calc(30px + 6 * (100vw - 375px) / 1545);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
}
.p-contact-ways__tel-text1 a {
    align-items: center;
    color: #444;
    display: inline-flex;
    text-decoration: none;
}
.p-contact-ways__tel-text1 a:hover {
    color: #444;
    opacity: 1;
    text-decoration: none;
}
.p-contact-ways__tel-text1 a:hover img {
    opacity: 1;
}
.p-contact-ways__tel-text1 img {
    margin-right: 5px;
    width: calc(38px + 10 * (100vw - 375px) / 1545);
}
.p-contact-ways__tel-text2 {
    margin-bottom: calc(10px + 5 * (100vw - 375px) / 1545);
}
.p-contact-ways__tel-text2,
.p-contact-ways__tel-text3 {
    margin-left: calc(45px + 10 * (100vw - 375px) / 1545);
}
.p-contact-form__title {
    margin-bottom: calc(20px + 10 * (100vw - 375px) / 1545);
}
.p-contact-form__table {
    border-collapse: collapse;
    margin-bottom: 40px;
    width: 100%;
}
.p-contact-form__table th {
    text-align: left;
    padding: 20px 0;
    vertical-align: top;
    width: 300px;
}
.p-contact-form__table th span {
    display: inline-block;
    vertical-align: middle;
}
.p-contact-form__table td {
    padding: 20px 0;
    width: calc(100% - 300px);
}
.p-contact-form__table td > input[type="text"],
.p-contact-form__table td > input[type="email"] {
    width: 100%;
}
.p-contact-form__table td textarea {
    width: 100%;
}
.p-contact-form__table td .mwform-zip-field {
    display: inline-block;
    margin-bottom: 10px;
}
.p-contact-form__table td .mwform-zip-field input,
.p-contact-form__table td .mwform-tel-field input {
    width: 100px;
}
.mw_wp_form {
    padding-top: 350px;
    margin-top: -350px;
}
.mw_wp_form_confirm .p-contact-form__inner {
    margin-top: 40px;
}
.mw_wp_form_confirm .p-contact-form__table tr:not(:last-of-type) {
    border-bottom: 1px solid #e5e5e5;
}
.form__agreement {
    margin-bottom: 20px;
    text-align: center;
}
.form__agreement input {
    height: 26px;
    margin: 0 10px 0 0;
    vertical-align: middle;
    width: 26px;
}
.form__agreement label {
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0;
}
.mw_wp_form_preview .form__agreement {
    display: none;
}
.btn__form.form__noagree {
    background-color: #fbfbfb;
    border: 1px solid #444;
    color: #444;
    transition: none;
}
.form__noagree-wrapper {
    margin: 0 auto;
    max-width: 300px;
    position: relative;
    width: 100%;
}
.form__noagree-alert {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.btn__form {
    align-items: center;
    background-color: #8b0d19;
    border: 1px solid #8b0d19;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    height: 54px;
    justify-content: center;
    line-height: 1.1875;
    margin: 0 10px;
    max-width: 280px;
    padding: 5px 1.5em;
    position: relative;
    text-decoration: none;
    width: 100%;
}
.btn__form:hover {
}
.btn__form.modoru {
    background-color: #fff;
    color: #8b0d19;
}
.btn__form.modoru:hover {
}
.c-hissu,
.c-nin-i {
    display: block;
    font-size: 12px;
    line-height: 1;
    margin: 0 20px 0 10px;
    padding: 5px 8px;
}
.c-hissu {
    background-color: #8b0d19;
    color: #fff;
}
.c-nin-i {
    background-color: #d8d8d8;
    color: #000;
}

@media screen and (max-width: 768px) {
    .p-contact-ways__item {
        width: 100%;
    }
    .p-contact-ways__item:first-of-type {
        margin-bottom: 40px;
    }
    .form__noagree-wrapper {
        max-width: 220px;
    }
    .btn__form {
        height: 50px;
        max-width: 200px;
        padding: 10px;
    }
    .c-hissu,
    .c-nin-i {
        font-size: 11px;
    }
}
@media screen and (max-width: 640px) {
    .p-contact-form__table th {
        display: block;
        padding: 10px 0 5px;
        width: 100%;
    }
    .p-contact-form__table td {
        display: block;
        padding: 0 0 10px;
        width: 100%;
    }
    .p-contact-form__table td .mwform-zip-field input,
    .p-contact-form__table td .mwform-tel-field input {
        width: 80px;
    }
    .c-hissu,
    .c-nin-i {
        float: none;
        margin: 0 10px;
    }
}
.mw_wp_form .tlink {
    text-decoration: underline;
}
.mw_wp_btn_w {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 50px;
}

/********** mask **********/
.mask-wrap {
    display: table;
    overflow: hidden;
}
.ta_center .mask-wrap,
.ta_center_left .mask-wrap {
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .ta_center_left .mask-wrap {
        margin: 0 auto 0 0;
    }
}

.mask_lr_w,
.mask_lr_k,
.mask_lr_a,
.mask_lr_r,
.mask_rl_k,
.mask_rl_r,
.mask_rl_w {
    display: table;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.mask_lr_w,
.mask_lr_k,
.mask_lr_r {
    left: -100%;
}
.mask_lr_a {
    left: -100%;
    transition: all 0.1s;
}
.mask_lr_w.inview,
.mask_lr_k.inview,
.mask_lr_a.inview,
.mask_lr_r.inview {
    left: 0;
}
.mask_rl_k,
.mask_rl_r,
.mask_rl_w {
    right: -100%;
}
.mask_rl_k.inview,
.mask_rl_r.inview,
.mask_rl_w.inview {
    right: 0;
}

.mask-bg {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.mask_lr_w .mask-bg {
    background: #fff;
    left: 0;
}
.mask_lr_k .mask-bg {
    background: #000;
    left: 0;
}
.mask_lr_a .mask-bg {
    background: #f7f7f7;
    left: 0;
}
.mask_lr_r .mask-bg {
    background: #8b0d19;
    left: 0;
}
.mask_lr_w .mask-bg.inview,
.mask_lr_k .mask-bg.inview,
.mask_lr_a .mask-bg.inview,
.mask_lr_r .mask-bg.inview {
    left: 100%;
}

.mask_rl_k .mask-bg {
    background: #000;
    right: 0;
}
.mask_rl_r .mask-bg {
    background: #8b0d19;
    right: 0;
}
.mask_rl_w .mask-bg {
    background: #fff;
    right: 0;
}
.mask_rl_k .mask-bg.inview,
.mask_rl_r .mask-bg.inview,
.mask_rl_w .mask-bg.inview {
    right: 100%;
}
