@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Noto+Serif+JP:wght@400;500;700&family=Shippori+Mincho&display=swap');

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
}
header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
    display: block;
}
li {
    list-style: none;
}
ol li {
    list-style: decimal;
}
img {
    max-width: 100%;
    height: auto;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    border: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
caption,
th {
    text-align: left;
}
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;

    border: 0;
    border-top: 1px solid #ccc;
}
input,
select {
    vertical-align: middle;
}
input,
textarea {
    margin: 0;
    padding: 0;
}
/*----------------------------------------
	Common
----------------------------------------*/
html {
    width: 100%;
    font-size: 62.5%;
}
body {
    font-family: YakuHanJPs,'Noto Serif JP', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
    font-size: 1.6rem;
    position:relative;
    z-index: 0;
    line-height: 2;
    letter-spacing: 0.03em;
    color: #fff;
    background-color: #021B3A;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* line-break: strict; */
    overflow-x: hidden;
    height: 100%;
    padding-top: 9rem;
    position: relative;
}
a {
    color: #fff;
    outline: none;
    overflow: hidden;
    text-decoration: underline;
}
a:hover {
    color: #FFC81D;
    text-decoration: none;
}
a[href^="tel:"] {
	cursor: default;
}
.show-mobile-inline,
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
.hide-mobile-inline {
	display: inline-block;
}
.br-mobile {
    display: none !important;
}
@media (min-width: 768px) and (max-width: 1439px){

}
@media only screen and (max-width: 767px) {
    body {
        padding-top: 6.4rem;
    }
	.show-mobile {
		display: block;
	}
	.show-mobile-inline {
		display: inline-block;
	}
	.hide-mobile {
		display: none;
	}
	.hide-mobile-inline {
		display: none;
	}
    .br-mobile {
        display: block !important;
    }
    main {
        overflow-x: hidden;
    }
}

/*----------------------------------------
	Animation
----------------------------------------*/
.fadeIn {
    transition: opacity 1s .1s;
    opacity: 0;
}
.fadeIn.inview {
    opacity: 1;
}
.fadeUpIn {
    transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
    transform: translateY(30px);
    opacity: 0;
}
.fadeUpIn.inview{
    transform: translateY(0);
    opacity: 1;
}
.blurIn {
    animation-name: blurInAnime;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}
@keyframes blurInAnime {
    0% {
        filter:blur(15px);
        transform:scale(1.02);
        opacity:0
    }
    100% {
        filter:blur(0);
        transform:scale(1);
        opacity:1
    }
}


/*----------------------------------------
	共通パーツ
----------------------------------------*/
.inner {
    width: 90%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.t-blue {
    color: #01b2de;
}
.f-bold {
    font-weight: bold;
}
/*----------------------------------------
	Components
----------------------------------------*/
.c-table {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.c-table td {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    padding: 1.8rem 1.5rem;
}
@media only screen and (max-width: 1000px) {

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

}

/*----------------------------------------
	Header
----------------------------------------*/
.l-header {
    width: 100%;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 10;
    background-color: #fff;
    color: #363637;
}
.p-header-container {
    width: 90%;
    max-width: 1280px;
    height: 9rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
}
.p-header-container a {
    text-decoration: none;
    color: #363637;
    display: block;
    transition: none;
}
.p-header-logo a {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: .4rem;
}
.p-header-content a:hover,
.p-header-logo a:hover {
    opacity: .75;
}
.p-header-navi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.p-header-navi__gnavi {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}
.p-header-navi__gnavi li {
    margin-right: 2rem;
}
.p-header-navi__gnavi a {
    display: flex;
    flex-direction: column;
}
.p-header-navi__gnavi a .en {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.7rem;
}
.p-header-navi__gnavi a .jp {
    display: none;
}
.p-header-navi__sp-menu {
    display: none;
}
.p-header-navi__sns {
}
.p-header-navi__sns nav {
    display: flex;
    align-items: center;
}
.p-header-navi__sns a {
    display: block;
    width: 25px;
    margin-left: 1.6rem;
}
.p-header-navi__sns a img {
    width: 100%;
    height: auto;
    transition: opacity .2s linear;
}
.p-header-navi__sns a:hover img {
    opacity: .75;
}
.p-header-address,
.p-header-sp {
    display: none;
    position: relative;
}
.p-header-navi__sp-btn {
    position: absolute;
    z-index: 100;
    top: 1.8rem;
    right: 2rem;
    display: none;
    width: 2.8rem;
    height: 3.2rem;
}
.p-header-navi__sp-btn span {
    position: absolute;
    display: block;
    width: 2.8rem;
    height: 1px;
    margin: 0 auto;
    transition: .2s ease-in-out;
    background-color: #363637;
}
.p-header-navi__sp-btn span.l1 {
    top: .3rem;
}
.p-header-navi__sp-btn span.l2 {
    top: 1.3rem;
}
.p-header-navi__sp-btn span.l3 {
    top: 2.3rem;
}
.p-header-navi__shop {
    display: none;
    width: 90%;
}
@media only screen and (max-width: 767px) {
    .l-header {
        border-bottom: 1px solid #C7C7C7;
    }
    .p-header-container {
        width: 100%;
        height: 6.4rem;
        background-color: #fff;
        padding-left: 7%;
    }
    .p-header-logo a {
        font-size: 1.8rem;
        letter-spacing: .3rem;
    }
    .p-header-navi__sp-btn {
        display: block;
    }
    .p-header-navi {
        /* display: none; */
        pointer-events: none;
        opacity: 0;
        position: absolute;
        top: 6.5rem;
        left: 0;
    }
    .p-header-navi__gnavi {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        width: 90%;
        height: calc(100vh - 6.4rem - 26rem);
    }
    .p-header-navi__gnavi li {
        width: 100%;
        margin-right: 0;
        border-bottom: 1px solid #C7C7C7;
    }
    .p-header-navi__gnavi li:first-of-type {
        border-top: 1px solid #C7C7C7;
    }
    .p-header-navi__shop nav a,
    .p-header-navi__sns a,
    .p-header-navi__gnavi li a {
        /* transition: transform 1.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 1.4s cubic-bezier(0.215, 0.61, 0.355, 1); */
        /* transform: translateY(14px); */
        /* opacity: 0; */
    }
    .p-header-navi__gnavi li a {
        padding: 3rem 2rem;
        width: 100%;
    }
    .p-header-navi__gnavi li a:hover {
        text-decoration: none;
    }
    .p-header-navi__gnavi a .en {
        font-size: 2.3rem;
        margin-bottom: .6rem;
    }
    .p-header-navi__gnavi a .jp {
        display: block;
        font-size: 1.6rem;
        letter-spacing: .1rem;
    }
    .p-header-navi__sns {
        margin-top: 3rem;
    }
    .p-header-navi__sns a {
        width: 32px;
        margin: 0 1.6rem;
    }
    .p-header-navi__shop {
        display: block;
    }
    .p-header-navi__shop nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .p-header-navi__shop nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: relative;
        line-height: 1;
        text-decoration: none;
        margin: 0;
        width: 46%;
        padding: 1.6rem 1.2rem 1.8rem 1.2rem;
        background-color: #021B3A;
        color: #fff;
    }
    .p-header-navi__shop nav a::after {
        content: '';
        display: block;
        width: 3.8rem;
        height: .5rem;
        margin-top: 1.4rem;
        background: url(../img/common/icon_allow_next.svg) no-repeat center;
    }
    .p-header-navi__shop nav a:first-of-type {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.6rem;
        font-weight: 700;
    }
    /* メニュー開放時 */
    .sp-menu-open .p-header-navi__sp-btn .l1 {
        top: 14px;
        transform: rotate(135deg);
    }
    .sp-menu-open .p-header-navi__sp-btn .l2 {
        display: none;
    }
    .sp-menu-open .p-header-navi__sp-btn .l3 {
        top: 14px;
        transform: rotate(-135deg);
    }
    .sp-menu-open .l-header {
        height: 100vh;
    }
    .sp-menu-open .p-header-navi {
        pointer-events: all;
        opacity: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: calc(100% - 18rem);
        padding: 3rem 0;
    }
    .sp-menu-open .p-header-navi__shop nav a,
    .sp-menu-open .p-header-navi__sns a,
    .sp-menu-open .p-header-navi__gnavi li a {
        transform: translateY(0px);
        opacity: 1;
    }
}


/*----------------------------------------
	Footer
----------------------------------------*/
footer {
    background-color: #000E1B;
    padding-bottom: 6rem;
}
.l-footer {
}
.p-footer-shop-navi {
    text-align: center;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10rem 0 6rem 0;
    display: flex;
    justify-content: center;
}
.p-footer-shop-navi > div {
    color: #fff;
    padding: 4px;
    text-decoration: none;
    background: #c19a64;
    line-height: 1;
}
.p-footer-shop-navi > a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 2rem;
    line-height: 1;
    text-decoration: none;
    width: 50%;
    max-width: 34rem;
    border: 1px solid #FFC81D;
    padding: 1.6rem 1.2rem 1.8rem 1.2rem;
    color: #FFC81D;
    transition: all .3s linear;
}
.p-footer-shop-navi > a:first-of-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
}
.p-footer-shop-navi > a::after {
    content: '';
    display: block;
    width: 3.8rem;
    height: .5rem;
    margin-top: -2px;
    margin-left: 1.4rem;
    background: url(../img/common/btn_allow.svg) no-repeat center;
}
.p-footer-shop-navi > a:hover {
    background-color: #FFC81D;
    color: #000E1B;
}
.p-footer-shop-navi > a:hover:after {
    background: url(../img/common/btn_allow_on.svg) no-repeat center;
}
.p-footer-content {
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 6rem 0 4rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #c8c8c8;
    font-family: YakuHanJPs,'游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}
.p-footer-content__left {
    width: 50%;
    border-right: 1px solid #545454;
}
.p-footer-content__right {
    width: 46%;
}
.p-footer-content__left .address .logo {
    display: block;
    width: 20rem;
    margin-bottom: 2.4rem;
}
.p-footer-content__left .address .logo img {
    width: 100%;
    height: auto;
}
.p-footer-content__left .address address {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: normal;
}
.p-footer-content__left > nav {
    margin-top: 2.4rem;
}
.p-footer-content__left > nav ul {
    display: flex;
    align-items: center;
}
.p-footer-content__left > nav li {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 2.4rem;
}
.p-footer-content__left > nav li::before {
    content: '';
    display: block;
    height: 1px;
    width: 8px;
    margin: 0 8px 0 0;
    border-bottom: 1px solid #fff;
}
.p-footer-content__left > nav li a {
    display: block;
    font-size: 1.3rem;
    text-decoration: none;
}
.p-footer-content__right .name {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
    text-decoration: none;
}
.p-footer-content__right .name img {
    width: 7rem;
    height: auto;
    margin-right: 1rem;
}
.p-footer-content__right .name span {
    font-size: 2rem;
}
.p-footer-content__right address {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: normal;
}
.p-footer-attention {
    font-family: YakuHanJPs,'游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.5;
    text-align: center;
    padding: 30px 0;
}
.p-gotop {
    width: 96%;
    max-width: 1100px;
    position: absolute;
    left: 50%;
    bottom: 6rem;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: end;
}
.p-gotop span {
    display: block;
    width: 4rem;
    text-align: center;
    font-family: YakuHanJPs,'游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    background: url(../img/common/btn_allow_triangle.svg) no-repeat center top;
    background-size: 1.6rem auto;
    padding: 2.4rem 0 0 0;
    cursor: pointer;
    transition: opacity .3s;
}
.p-gotop span:hover {
    opacity: .75;
}
@media only screen and (max-width: 767px) {
    footer {
        padding-bottom: 0;
    }
    .p-footer-shop-navi {
        justify-content: space-between;
        padding: 8rem 0 4rem 0;
    }
    .p-footer-shop-navi > a {
        margin: 0;
        width: 46%;
        flex-direction: column;
    }
    .p-footer-shop-navi > a::after {
        margin-top: 1.4rem;
        margin-left: 0;
    }
    .p-footer-shop-navi > a:first-of-type {
        font-size: 1.6rem;
    }
    .p-footer-content {
        flex-direction: column;
        padding: 2rem 0 3rem 0;
    }
    .p-footer-content__left,
    .p-footer-content__right {
        width: 100%;
    }
    .p-footer-content__left {
        border-right: none;
        border-bottom: 1px solid #545454;
        margin-bottom: 2rem;
    }
    .p-footer-content__left > nav ul {
        flex-direction: column;
        align-items: initial;
        margin-bottom: 2.4rem;
    }
    .p-footer-content__left .address {
        margin-bottom: 2.4rem;
    }
    .p-footer-attention {
        padding: 1.8rem 0 4rem 0;
        font-size: 1.2rem;
        text-align: left;
    }
    .p-gotop {
        width: 100%;
        position: initial;
        left: initial;
        bottom: inherit;
        transform: inherit;
        margin: 3rem 0 4rem 0;
        justify-content: center;
    }
    .p-gotop span {
        width: 10rem;
        font-size: 1.6rem;
        padding: 2.6rem 0 0 0;
    }
}

/*----------------------------------------
	トップページ
----------------------------------------*/
.progress {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    background: #021B3A;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
}
/* VISUAL */
.p-top-visual {
    width: 100%;
    height: 78rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url(../img/top/bg_main.jpg) no-repeat center bottom;
    background-size: cover;
    animation-name: bgZoomIn;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale(1.1);
    animation-duration: 10s;
}
@keyframes bgZoomIn {
    0% {
        transform: scale(1.1);
        opacity:0
    }
    100% {
        transform: scale(1);
        opacity:1
    }
}
.p-top-visual__content {
    max-width: 70rem;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.p-top-visual__content img {
    animation-duration: 4s;
    animation-delay: 2s;
}
.p-top-visual__content img.logo {
    width: 100%;
    height: auto;
}
.p-top-visual__content img.copy {
    width: 30rem;
    height: auto;
}
@media only screen and (max-width: 767px) {
    .p-top-visual {
        height: 80vh;
    }
    .p-top-visual__content {
    }
    .p-top-visual__content img.logo {
        width: 30rem;
    }
    .p-top-visual__content img.copy {
        width: 66%;
        max-width: 30rem;
    }
}
/* 肴図鑑 */
.p-zukan {
    padding: 10rem 0;
}
.p-zukan .inner {
    display: flex;
    position: relative;
}
.p-zukan-title {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 20rem;
    height: 20rem;
    background: url(../img/top/img_zukan_title.svg) no-repeat center;
    background-size: contain;
    text-indent: -99999px;
}
.p-zukan-title:hover {
    background: url(../img/top/img_zukan_title_on.svg) no-repeat center;
    background-size: contain;
}
.p-zukan-content {
    width: 44%;
    padding-left: 4%;
    margin-right: 4%;
    margin-top: 10rem;
}
.p-zukan-image {
    width: 52%;
    margin-top: 20rem;
}
.p-zukan-heading {
    margin-bottom: 2rem;
}
.p-zukan-heading .catch-copy {
    font-family: 'Shippori Mincho', serif;
    line-height: 1.4;
    margin-bottom: .4rem;
}
.p-zukan-heading h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: normal;
    font-size: 3.1rem;
    line-height: 1.4;
    margin-bottom: .3rem;
}
.p-zukan-heading .name-en {
    font-size: 1rem;
    letter-spacing: 0;
    color: #828282;
    font-style: italic;
}
.p-zukan-data {
    padding-bottom: 3.4rem;
    margin-bottom: 3.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.is_top-page .p-zukan-data {
    margin-bottom: 0;
    border-bottom: none;
}
.p-zukan-lead {
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-size: 1.8rem;
    letter-spacing: 0;
}
.p-zukan-data dl {
    line-height: 1.4;
}
.p-zukan-data dt {
    margin-bottom: .4rem;
}
.p-zukan-data dd {
    margin-left: 1.4rem;
    margin-bottom: .6rem;
}
.p-zukan-data dd.scientific_name {
    font-style: italic;
}
.p-zukan-shop-list {}
.p-zukan-shop-list h4 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 3rem;
    background: url(../img/top/icon_shop_list.svg) no-repeat left center;
    background-size: 1.2rem auto;
    padding-left: 2.5rem;
}
.p-zukan-shop-list ul {}
.p-zukan-shop-list li {
    margin-bottom: 2.4rem;
    min-height: 2.5rem;
    display: flex;
    align-items: baseline;
}
.p-zukan-shop-list li::before {
    content: '・';
    line-height: 1.4;
}
.p-zukan-shop-list li a {
    width: 100%;
    display: block;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 1.4;
    padding-right: 16%;
    background: url(../img/top/icon_circle_allow.svg) no-repeat right 2% top;
    background-size: 2.4rem auto;
    transition: .3s;
}
.p-zukan-shop-list li a .shop-name {
    display: block;
    margin-bottom: .5rem;
    font-size: 1.6rem;
}
.p-zukan-shop-list li a .shop-info {
    font-size: 1.3rem;
    line-height: 1.7;
}
.p-zukan-shop-list li a:hover {
    cursor: pointer;
    background-position: right top;
}
.p-zukan-image figure {}
.p-zukan-image figure img {
    width: 100%;
    height: auto;
}
.p-zukan-navi {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6rem;
    max-width: 1000px;
}
.p-zukan-navi a {
    display: block;
    margin: 0 2rem;
    line-height: 1;
    text-decoration: none;
    width: 50%;
    max-width: 30rem;
    border: 1px solid #fff;
    padding: 1.6rem 1.2rem 1.8rem 1.2rem;
    transition: all .3s linear;
    text-align: center;
}
.p-zukan-navi a:hover {
    background-color: rgba(255, 255, 255, .6);
    color: #021B3A;
}
.p-supervision {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1;
    margin-top: 5rem;
}
.p-supervision strong {
    font-weight: normal;
    display: block;
    margin-bottom: 1rem;
}
.p-supervision span {
    font-size: 1.3rem;
}
@media only screen and (max-width: 767px) {
    .p-zukan {
        padding: 8rem 0 6rem 0;
    }
    .p-zukan .p-zukan-detail {
        flex-direction: column-reverse;
    }
    .p-zukan-title {
        width: 13rem;
        height: 13rem;
        right: 1.6rem;
    }
    .p-zukan-image {
        width: 100%;
        margin-top: 13rem;
    }
    .p-zukan-content {
        width: 100%;
        padding-left: 0;
        margin-right: 0;
        margin-top: 2rem;
    }
    .p-zukan-heading h3 {
        font-size: 2.6rem;
    }
    .p-zukan-lead {
        font-size: 1.6rem;
    }
    .p-zukan-data dl {
        font-size: 1.4rem;
    }
    .p-zukan-shop-list h4 {
        font-size: 1.6rem;
    }
    .p-zukan-shop-list li a {
        padding-right: 14%;
    }
    .p-zukan-shop-list li a .shop-name {
        font-size: 1.4rem;
    }
    .p-zukan-navi {
        flex-direction: column;
        margin-top: 6rem;
    }
    .p-zukan-navi a {
        width: 100%;
        max-width: initial;
    }
    .p-zukan-navi a:first-of-type {
        margin-bottom: 2rem;
    }
    .p-supervision {
        margin-top: 4rem;
    }
}
/* トピックス一覧 */
.p-top-topics {
    background: linear-gradient(to bottom, #000025 0%, #000025 20%,#01154E 60%, #01154E);
    padding-bottom: 10rem;
}
.p-top-topics .inner {
    width: 90%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.p-top-topics h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1;
    font-size: 2.8rem;
    text-align: center;
    color: #fff;
    padding-top: 9rem;
    padding-bottom: 7rem;
    margin-bottom: 4rem;
    position: relative;
}
.p-top-topics h2::after {
    content: '';
    display: block;
    width: 1px;
    height: 5rem;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
.p-topics-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 9rem;
}
.p-topics-nav a {
    letter-spacing: .05rem;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid #fff;
    padding: 0 10px 0 0;
    margin: 0 12px 10px 0;
}
.p-topics-nav a:hover,
.p-topics-nav a.current {
    color: #FFC81D;
}
.p-topics-list {
    display: flex;
    flex-wrap: wrap;
}
.p-topics-list .item {
    display: block;
    width: 30%;
    margin: 0 5% 6rem 0;
    text-decoration: none;
    position: relative;
    overflow: inherit;
}
.p-topics-list .item:nth-of-type(3n) {
    margin-right: 0;
}
.p-topics-list .item.pickup::after {
    display: block;
    content: '';
    background: url(../img/top/icon_pickup.svg) no-repeat center;
    width: 10rem;
    height: 2rem;
    position: absolute;
    top: 4rem;
    right: -6.5rem;
    transform: rotate(90deg);
}
.p-topics-list .item figure {
    margin: 0;
    overflow: hidden;
}
.p-topics-list .item figure img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);;
}
.p-topics-list .item:hover figure img {
    transform: scale(1.2);
}
.p-topics-item__content {
    padding: 14px 0 0 0;
}
.p-topics-item__content .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 1rem;
}
.p-topics-item__content .heading .category {
    border: 1px solid #fff;
    padding: .4rem 1.6rem;
    min-width: 60px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .05em;
}
.item:hover .p-topics-item__content .heading .category {
    border-color: #FFC81D;
}
.p-topics-item__content .heading .date {
    font-size: 2rem;
    margin-right: 0.2rem;
}
.p-topics-item__content h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.5;
}
@media only screen and (max-width: 767px) {
    .p-top-topics {
        padding-bottom: 4rem;
    }
    .p-top-topics h2 {
        font-size: 2.4rem;
        padding-bottom: 5rem;
        padding-top: 7rem;
    }
    .p-top-topics h2::after {
        height: 4rem;
    }
    .p-topics-nav {
        margin-bottom: 7rem;
    }
    .p-topics-nav a {
        margin-bottom: 2rem;
    }
    .p-topics-list .item {
        width: 100%;
        margin: 0 0 7rem 0;
    }
    .p-topics-list .item.pickup::after {
        top: -2.5rem;
        right: 0;
        transform: rotate(0);
    }
    .p-topics-item__content {
    }
    .p-topics-item__content .heading .category {
        font-size: 1.4rem;
        min-width: 9rem;
    }
    .p-topics-item__content .heading .date {
        font-size: 1.8rem;
    }
}
/*----------------------------------------
	トピックス詳細ページ
----------------------------------------*/
.is_topics-page {
    background: linear-gradient(to bottom, #000025 0%, #000025 20%,#01154E 60%, #01154E);
}
.p-topics {
    width: 90%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 14rem 0 3rem 0;
}
.p-topics-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 8rem;
}
.p-topics-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 2rem;
}
.p-topics-heading .category {
    border: 1px solid #fff;
    padding: .4rem 2rem .3rem 2rem;
    min-width: 9rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .1em;
}
.p-topics-heading .date {
    font-size: 2.4rem;
}
.p-topics-article-title {
    font-family: 'Shippori Mincho', serif;
    font-weight: normal;
    letter-spacing: 0;
    font-size: 2.8rem;
    line-height: 1.4;
    margin: 4.4rem 0 3.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-bottom: 3.4rem;
}
.p-topics-content * {
    font-family: YakuHanJPs,'游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}
.p-topics-content h3 {
    line-height: 1.65;
    margin-bottom: 2rem;
}
.p-topics-content p {
    margin-bottom: 5.6rem;
}
.p-topics-content .wp-block-image {
    margin-top: 4rem;
    margin-bottom: 5rem;
}
.p-topics-content h2 {
    font-size: 2.2rem;
    font-weight: normal;
    line-height: 1.6;
    border-left: 6px solid #fff;
    padding: 0 0 0 2rem;
    margin: 5rem 0 3rem 0;
}
.p-topics-share h2 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    font-weight: normal;
    font-size: 2.4rem;
    text-align: center;
    padding-top: 7rem;
    margin-bottom: 4rem;
    position: relative;
}
.p-topics-share h2::after {
    content: '';
    display: block;
    width: 1px;
    height: 5rem;
    position: absolute;
    bottom: 4.4rem;
    right: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
.wp-block-quote {
    border-left: 1px solid #fff;
    padding: 0 0 0 2rem;
    font-style: italic;
}
.wp-block-quote p {
    margin-bottom: .5rem !important;
}
.wp-block-quote cite {
    font-style: normal;
    font-size: 1.3rem;
}
.wp-block-image figcaption {
    color: #c8c8c8;
    font-size: 1.4rem;
}
.p-topics-share nav {
    text-align: center;
    width: 90%;
    max-width: 700px;
    margin: 2rem auto 7rem auto;
    display: flex;
    justify-content: center;
}
.p-topics-share nav a {
    display: block;
    width: 34rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    border: 1px solid #fff;
    padding: 2rem 1.2rem 2.2rem 1.2rem;
    text-decoration: none;
    transition: all .3s linear;
}
.p-topics-share nav a:hover {
    background-color: rgba(255, 255, 255, .6);
    color: #021B3A;
}
.p-topics-paging {
    width: 90%;
    max-width: 700px;
    padding: 4rem 0;
    margin: 0 auto;
}
.p-topics-paging nav {
    display: flex;
    justify-content: space-between;
}
.p-topics-paging nav span {
    opacity: .2;
    cursor: none;
}
.p-topics-paging nav span,
.p-topics-paging nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}
.p-topics-paging nav span.paging-back::before,
.p-topics-paging nav a.paging-back::before {
    content: '';
    display: block;
    width: 3.8rem;
    height: .5rem;
    margin-top: -2px;
    margin-right: 1.4rem;
    background: url(../img/common/icon_allow_back.svg) no-repeat center;
    background-size: auto .5rem;
}
.p-topics-paging nav span.paging-next::after,
.p-topics-paging nav a.paging-next::after {
    content: '';
    display: block;
    width: 3.8rem;
    height: .5rem;
    margin-top: -2px;
    margin-left: 1.4rem;
    background: url(../img/common/icon_allow_next.svg) no-repeat center;
    background-size: auto .5rem;
}
.p-topics-paging nav a:hover {
    color: #FFC81D;
}
.p-topics-paging nav a.paging-back:hover::before {
    background: url(../img/common/icon_allow_back_on.svg) no-repeat center;
}
.p-topics-paging nav a.paging-next:hover::after {
    background: url(../img/common/icon_allow_next_on.svg) no-repeat center;
}
@media only screen and (max-width: 767px) {
    .p-topics {
        padding: 9rem 0 5rem 0;
    }
    .p-topics-title {
        font-size: 2.6rem;
        margin-bottom: 4rem;
    }
    .p-topics-heading {
        justify-content: center;
        margin-bottom: 3rem;
    }
    .p-topics-heading span {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .p-topics-heading .category {
        font-size: 1.6rem;
        padding: .2rem 2rem .3rem 2rem;
    }
    .p-topics-heading .date {
        font-size: 2rem;
    }
    .p-topics-visual {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .p-topics-article-title {
        font-size: 2.2rem;
        margin: 4.4rem 0 2.4rem 0;
    }
    .p-topics-content h2 {
        font-size: 1.8rem;
        margin: 5rem 0 2.4rem 0;
    }
    .wp-block-image figcaption {
        font-size: 1.3rem;
    }
    .p-topics-share nav a {
        font-size: 2.2rem;
    }
}
/*----------------------------------------
	図鑑ページ
----------------------------------------*/
.is_zukan-page .p-zukan-navi {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    justify-content: end;
    padding-bottom: 6rem;
}
.is_zukan-page .p-zukan-navi a {
    margin: 0;
}
.p-zukan-list {
    padding-bottom: 8rem;
}
.p-zukan-list ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
}
.p-zukan-list ul li {
    width: 44%;
    margin-right: 12%;
    margin-bottom: 8rem;
}
.p-zukan-list ul li:nth-of-type(odd) {
    /* margin-left: 5rem; */
}
.p-zukan-list ul li:nth-of-type(even) {
    margin-right: 0;
}
.p-zukan-list__content {
    position: relative;
    padding: 4rem 0 0 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.p-zukan-list__content .p-zukan-heading {
    width: 53%;
    padding-right: 2%;
    position: relative;
    z-index: 1;
}
.p-zukan-list__content .p-zukan-heading h3 {
    font-size: 2.6rem;
    line-height: 1.2;
}
.p-zukan-list__content figure {
    max-width: 45%;
    max-height: 110px;
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    bottom: -8%;
}
.p-zukan-list__content figure img {
    width: auto;
    max-height: 110px;
}
.p-zukan-list ul li a {
    display: block;
    margin: 3.4rem 0 0 0;
    line-height: 1;
    text-decoration: none;
    width: 100%;
    border: 1px solid #fff;
    padding: 1.6rem 1.2rem 1.8rem 1.2rem;
    transition: all .3s linear;
    text-align: center;
    font-size: 1.4rem;
}
.p-zukan-list ul li a:hover {
    background-color: rgba(255, 255, 255, .6);
    color: #021B3A;
}
.p-zukan-list .p-zukan-data {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
@media only screen and (max-width: 767px) {
    .p-zukan-list ul li {
        width: 100%;
        margin-right: 0;
    }
    .p-zukan-list ul li a {
        padding: 1.6rem 1.2rem 1.8rem 1.2rem;
    }
    .p-zukan-list__content figure {
        top: 0;
    }
}

/*----------------------------------------
	404ページ
----------------------------------------*/
.p-404 {
    text-align: center;
    padding: 10rem 0;
}
.p-404 h1 {
    line-height: 1;
    margin: 0 auto 10rem auto;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}
.p-404 h1 span {
    display: block;
    font-size: 3rem;
    letter-spacing: .05em;
}
.p-404 h1 span:first-of-type {
    font-size: 16rem;
    margin-bottom: 2rem;
}
.p-404-back-navi {
    margin-top: 4rem;
}
.p-404-back-navi a {
    display: block;
    margin: 0 2rem;
    line-height: 1;
    text-decoration: none;
    width: 50%;
    max-width: 30rem;
    border: 1px solid #fff;
    padding: 1.6rem 1.2rem 1.8rem 1.2rem;
    transition: all .3s linear;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.p-404-back-navi a:hover {
    background-color: rgba(255, 255, 255, .6);
    color: #021B3A;
}

/*----------------------------------------
	スクロールLoading
----------------------------------------*/
.entry-loading {
	text-align: center;
	margin: 3em 0;
	font-weight: 700;
	width: 100%;
	display: none;
}
.entry-loading.is-show {
	display: block;
}
.entry-more {
	text-align: center;
	width: 280px;
	padding: 12px 16px;
	text-align: center;
	background: #7e7e7e;
	color: #fff;
	margin: 3em auto 0;
	cursor: pointer;
}

.entry-more.is-hide {
	display: none;
}

/*----------------------------------------
	深海魚が食べられる店
----------------------------------------*/
/* 店舗情報から探す */
.p-restaurants-list {
    margin-bottom: 8rem;
}
.p-restaurants-list__heading {
    text-align: center;
    width: 90%;
    max-width: 80rem;
    margin: 14rem auto 4rem auto;
}
.p-restaurants-list__heading h1 {
    width: 36rem;
    margin: 0 auto 7rem auto;
}
.p-restaurants-map__heading h3,
.p-restaurants-list__heading h3 {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding: 6rem 0 5.6rem 0;
    margin-bottom: 4rem;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: .06rem;
}
.p-restaurants-map__heading h3::after,
.p-restaurants-list__heading h3::after {
    content: '';
    display: block;
    width: 1px;
    height: 4.6rem;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
.p-restaurants-list__content {}
.p-restaurants-list__content figure {
    margin-bottom: 3.5rem;
}
.p-restaurants-list__content figure img {
    width: 100%;
}
.p-restaurant-heading {
    margin-bottom: 2rem;
}
.p-restaurant-heading .tags {
    display: flex;
    margin-bottom: 2.4rem;
}
.p-restaurant-heading .tags span {
    border: 1px solid rgba(255, 255, 255, .5);
    font-size: 1.4rem;
    line-height: 1;
    min-width: 11rem;
    padding: 0.5rem 1rem 0.7rem 1rem;
    margin-right: 2rem;
    text-align: center;
}
.p-restaurant-heading h2 {
    font-family: 'Shippori Mincho', serif;
    font-weight: normal;
    letter-spacing: 0;
    font-size: 2.8rem;
    line-height: 1.4;
}
.p-restaurant-heading .name-kana {
    font-size: 1.4rem;
}
.p-restaurant-heading,
.p-restaurant-content {
    opacity: 0;
    transition: .4s linear;
}
.p-topics-content__restaurant-data {
    margin-top: 8rem;
}
.p-topics-content__restaurant-data .p-restaurant-heading,
.p-topics-content__restaurant-data .p-restaurant-content,
li.swiper-slide-active .p-restaurant-heading,
li.swiper-slide-active .p-restaurant-content {
    opacity: 1;
}
.p-restaurant-content > p {
    line-height: 1.75;
    margin-bottom: 4rem;
}
.p-restaurant-content .meta {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 1.4rem;
    margin-bottom: 6rem;
}
.p-restaurant-content .meta dl {
    width: 48%;
}
.p-restaurant-content .meta dl dt {
    display: flex;
    align-items: center;
    line-height: 1.6;
}
.p-restaurant-content .meta dl dt::before {
    content: '';
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    background-color: #fff;
    margin-right: 0.5rem;
}
.p-restaurant-content .meta dl dd {
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-break: anywhere;
    line-height: 1.6;
}
.p-restaurant-navi {}
.p-restaurant-navi a {
    display: block;
    margin: 0 auto;
    padding: 1.5rem 1.2rem 1.9rem 1.2rem;
    width: 34rem;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 1);
    text-decoration: none;
    line-height: 1;
    text-align: center;
    transition: all .3s linear;
    background: url(../img/common/icon_allow_next.svg) no-repeat right 2rem top 2rem;
    background-size: auto 0.5rem;
}
.p-restaurant-navi a:hover {
    border-color: #FFC81D;
    color: #FFC81D;
    background-image: url(../img/common/icon_allow_next_on.svg);
}
.swiper-button-next,
.swiper-button-prev {
    width: 4rem;
}
.swiper-button-prev {
    left: calc(14% - 3rem);
    top: 18vw;
    background: url(../img/common/icon_allow_back.svg) no-repeat center;
    background-size: 100% auto;
}
.swiper-button-next {
    right: calc(14% - 3rem);
    top: 18vw;
    background: url(../img/common/icon_allow_next.svg) no-repeat center;
    background-size: 100% auto;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}
/* マップから探す */
.p-restaurants-map {
    width: 90%;
    max-width: 80rem;
    margin: 0 auto 12rem auto;
}
.p-restaurants-map__heading {
    text-align: center;
}
.p-restaurants-map__content {
    margin-bottom: 6rem;
}
.p-google-map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
  }
  .p-google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
@media only screen and (max-width: 767px) {
    .p-restaurants-list__heading {
        margin: 12rem auto 4rem auto;
    }
    .p-restaurant-heading .tags span {
        font-size: 1.2rem;
        min-width: 9rem;
        margin-right: 1.4rem;
    }
    .p-restaurants-list__heading h1 {
        width: 30rem;
        margin: 0 auto 7rem auto;
    }
    .p-restaurants-map__heading h3,
    .p-restaurants-list__heading h3 {
        padding: 5rem 0 6rem 0;
        margin-bottom: 4rem;
        font-size: 1.6rem;
    }
    .p-restaurants-map__heading h3::after,
    .p-restaurants-list__heading h3::after {
        height: 4rem;
    }
    .p-restaurant-content .meta {
        flex-direction: column;   
    }
    .p-restaurant-content .meta dl {
        width: 100%;
    }
    .swiper-slide {
        padding: 0 2rem;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 3rem;
    }
    .swiper-button-next {
        right: .6rem;
        top: 26vw;
    }
    .swiper-button-prev {
        left: .6rem;
        top: 26vw;
    }
    .p-restaurant-heading h2 {
        font-size: 2.2rem;
    }
    .p-restaurant-content > p br {
        display: none;
    }
    .p-restaurant-navi a {
        width: 100%;
        font-size: 1.8rem;
    }
    .p-google-map {
        padding-top: 200%;
    }
}