@charset "UTF-8";

/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    /* 西村調整 */
    /* font-size: 16px; */
}

html,
body {
    margin: 0;
    padding: 0;
}

article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    vertical-align: baseline;
    margin: 0;
    border: 0;
    padding: 0;
    font: inherit;
    font-size: 100%;
}

a {
    display: inline-block;
    transition: opacity 0.3s ease 0s;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    opacity: 0.7;
}

img,
svg {
    vertical-align: top;
    border: none;
    max-width: 100%;
    height: auto;
}

video {
    width: 100%;
    height: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, sans-serif;
    font-size: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    margin-right: auto;
    margin-left: auto;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

thead {
    background-color: #f8f8f8;
    font-weight: 700;
}

th,
td {
    vertical-align: top;
    border: 1px solid #eaeaea;
    padding: 4px 6px;
    text-align: left;
}

blockquote,
q {
    quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
    content: "";
    content: none;
}

address {
    font-style: italic;
}

button {
    appearance: none;
    cursor: pointer;
    border: none;
    background: transparent;
    font: inherit;
}

svg {
    width: 100%;
    height: 100%;
}

abbr,
acronym {
    text-decoration: underline dotted;
}

cite {
    font-style: italic;
}

code,
kbd {
    background-color: #f8f8f8;
    padding: 0.25em 0.5em;
}

em {
    font-style: italic;
    font-weight: 700;
}

pre {
    display: block;
    background-color: #f8f8f8;
    padding: 1em 2em;
}

sub {
    vertical-align: sub;
    font-size: smaller;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

var {
    background-color: #f8f8f8;
    padding: 0.25em 0.5em;
    font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
[data-target] {
    cursor: pointer;
}

/************************************************************************
* layout
************************************************************************/
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    top: -110%;
    left: 0;
    z-index: 20;
    transition: top 0.3s ease 0s;
    background: #fff;
    width: 100%;
}

header.is-fixed {
    position: fixed;
    top: 0;
    box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
}

footer {
    margin-top: auto;
    background-color: #166eb8;
}

/************************************************************************
* form
************************************************************************/
form {
    margin: 0;
    padding: 0;
}

form button[type="submit"],
form input[type="submit"],
form input[type="button"] {
    appearance: none;
    width: auto;
}

form button[type="submit"]:not(:disabled),
form input[type="submit"]:not(:disabled),
form input[type="button"]:not(:disabled) {
    cursor: pointer;
}

form button[type="submit"]:not(:disabled):hover,
form button[type="submit"]:not(:disabled):focus,
form input[type="submit"]:not(:disabled):hover,
form input[type="submit"]:not(:disabled):focus,
form input[type="button"]:not(:disabled):hover,
form input[type="button"]:not(:disabled):focus {
    outline: none;
}

form button[type="submit"]:disabled,
form input[type="submit"]:disabled,
form input[type="button"]:disabled {
    border-color: transparent;
    background-color: #eaeaea;
    color: #fff;
}

form button[type="submit"] ::-moz-focus-inner,
form input[type="submit"] ::-moz-focus-inner,
form input[type="button"] ::-moz-focus-inner {
    border: none;
    padding: 0;
}

input,
textarea {
    appearance: none;
    border: 1px solid #707070;
    border-radius: 0;
    background-image: none;
    padding: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
}

textarea {
    resize: vertical;
}

textarea:hover,
textarea:focus {
    outline: none;
}

textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: #707070;
}

textarea ::-moz-focus-inner {
    border: none;
    padding: 0;
}

input:focus {
    outline: none;
    box-shadow: none;
    border-color: #707070;
}

input[type="radio"] {
    display: none;
}

input[type="radio"] + span {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin: 0 16px 0 0;
    padding: 0 0 0 30px;
}

input[type="radio"] + span::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 1px solid #707070;
    border-radius: 50%;
    background: #fff;
    width: 26px;
    height: 26px;
    content: "";
}

input[type="radio"] + span::after {
    opacity: 0;
    transition: opacity 0.3s ease 0s;
}

input[type="radio"]:checked + span::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    opacity: 1;
    border-radius: 50%;
    background: #707070;
    width: 10px;
    height: 10px;
    content: "";
}

input[type="number"],
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    margin: 0;
}

input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 26px;
    height: 26px;
}

input[type="checkbox"] + span {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    padding-left: 30px;
}

input[type="checkbox"] + span::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 1px solid #707070;
    width: 26px;
    height: 26px;
    content: "";
}

input[type="checkbox"] + span::after {
    opacity: 0;
    transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:focus + span::before {
    outline: -webkit-focus-ring-color auto 5px;
}

input[type="checkbox"]:checked:focus + span::before {
    outline: none;
}

input[type="checkbox"]:checked + span::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-70%) translateX(0.5em) rotate(45deg);
    opacity: 1;
    border-right: 4px solid #166eb8;
    border-bottom: 4px solid #166eb8;
    width: 13px;
    height: 26px;
    content: "";
}

select {
    appearance: none;
    border: 1px solid #707070;
    border-radius: 0;
    padding: 0.4em 2.4em 0.4em 0.8em;
    color: inherit;
    font-family: inherit;
    font-size: 1rem;
}

select::-ms-expand {
    display: none;
}

select:focus {
    outline: none;
    box-shadow: none;
    border-color: #707070;
}

select:invalid {
    color: #eaeaea;
}

select:not(:disabled) {
    cursor: pointer;
}

/************************************************************************
* base
************************************************************************/
a[target="_blank"]:not([class])::after {
    display: inline-block;
    margin-left: 0.3em;
    width: 1em;
    height: 1em;
    color: inherit;
    font: var(--fa-font-solid);
    font-weight: 900;
    content: "\f35d";
}

/************************************************************************
* end base
************************************************************************/
.l-container {
    margin: 0 auto;
    padding: 0 24px;
    max-width: 1048px;
}

.l-container--narrow {
    max-width: 848px;
}

.l-container--wide {
    max-width: 1248px;
}

.l-container--full {
    margin-left: calc((100% - 100vw) / 2);
    width: 100vw;
    max-width: none;
}

.l-footer {
    padding-top: 50px;
    padding-bottom: 30px;
}

.l-main {
    background-color: #fff;
}

.l-main--top {
    padding-top: 20px;
    padding-bottom: 97px;
}

/* nishimura */
/* .c-headline {
    vertical-align: baseline;
    font-size: 32px;
    font-weight: 600;
}

.c-headline__icon {
    display: inline-block;
    vertical-align: baseline;
    margin-right: 0.7188em;
    width: 1.3125em;
    height: 1.3125em;
} */

.c-iconMenu {
    font-size: 12px;
}

.c-iconMenu__icon {
    width: 2.5em;
    height: 2.5em;
}

.c-label {
    display: inline-block;
    border: 1px solid currentColor;
    border-radius: 0.35714286em;
    padding: 0.28571429em 0.35714286em;
    color: #166eb8;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.c-moreLink {
    display: inline-block;
    color: #166eb8;
    font-size: 1.3rem;
}

.c-moreLink::after {
    display: inline-block;
    margin-left: 1.3em;
    background: transparent url("../../img/designer/sprite/chevron-more.svg")
        no-repeat center center/contain;
    width: 0.4166666667em;
    height: 0.75em;
    content: "";
}

.c-moreLink:hover,
.c-moreLink:focus {
    opacity: 1;
    text-decoration: underline;
}

.c-totop {
    display: block;
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    visibility: hidden;
    opacity: 0;
    z-index: 30;
    transition: all 0.3s ease 0s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    width: 3.125rem;
    height: 3.125rem;
}

.c-totop::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%) rotate(-45deg);
    border-top: 3px solid #166eb8;
    border-right: 3px solid #166eb8;
    width: 1.25rem;
    height: 1.25rem;
    content: "";
}

.c-totop.is-active {
    visibility: visible;
    opacity: 0.7;
}

.c-totop.is-active:hover,
.c-totop.is-active:focus {
    opacity: 1;
}

.p-banner__link {
    display: block;
}

.p-banner__link > picture {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
    width: 100%;
}

.p-card {
    box-shadow: 0 0.2142857143em 0.7142857143em rgba(0, 0, 0, 0.1);
    border-radius: 0.7857142857em;
    background-color: #fff;
    font-size: 14px;
}

.p-card__link {
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 0.7142857143em;
    height: 100%;
}

.p-card__head {
    display: flex;
    align-items: flex-start;
}

.p-card__img {
    flex-shrink: 0;
    margin-top: 0.2857142857em;
    width: 3em;
}

.p-card__img > img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: contain;
}

.p-card__headBody {
    flex-grow: 1;
    margin-left: 1em;
}

.p-card__headBodyTop {
    display: flex;
    align-items: flex-end;
}

.p-card__title {
    font-size: 1.1428571429em;
    font-weight: 600;
}

.p-card__rating {
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 0.625rem;
    letter-spacing: -0.4em;
}

.p-card__star {
    display: inline-block;
    vertical-align: text-bottom;
    width: 1.2035714286em;
    height: 1.1235714286em;
    letter-spacing: 0;
}

.p-card__star + .p-card__star {
    margin-left: 1px;
}

.p-card__evaluation {
    vertical-align: baseline;
    margin-left: 0.375em;
    font-family: "Squada One", cursive;
    font-size: 1.7142857143em;
    line-height: 1;
}

.p-card__labels {
    margin-top: 2px;
    margin-left: -4px;
    font-size: 0;
}

.p-card__label {
    margin-top: 4px;
    margin-left: 4px;
    font-size: 0.75rem;
}

.p-card__body {
    margin-top: 0.7857142857em;
    background-color: #f8f8f8;
    padding: 0.3571428571em 0.8571428571em;
    line-height: 1.5;
}

.p-card__text > span {
    color: #8e8e8e;
}

.p-card__foot {
    display: flex;
    align-items: flex-end;
    margin-top: 0.7142857143em;
}

.p-card__status {
    display: inline-block;
    border-radius: 5px;
    background-color: #2f2e2e;
    padding: 1px 5px;
    color: #fff;
    font-size: 0.8571428571em;
}

.p-card__footRight {
    display: flex;
    align-items: baseline;
    margin-left: auto;
}

.p-card__originalPrice {
    color: #8e8e8e;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: line-through;
}

.p-card__originalPrice > span {
    margin-right: 0.5em;
    font-size: 10px;
}

.p-card__conditions {
    margin-right: 0.5625rem;
    color: #8e8e8e;
    font-size: 10px;
    font-weight: 600;
}

.p-card__specialConditions {
    margin-right: 0.25rem;
    color: #ff6c6c;
    font-size: 0.75rem;
    font-weight: 300;
}

.p-card__price {
    color: #ff6c6c;
    font-family: "Squada One", cursive;
    font-size: 2.125rem;
    line-height: 1;
}

.p-card__price > span {
    margin-left: 3px;
    font-size: 0.6470588235em;
}

.p-cardList {
    gap: 16px 1.5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.p-drawer {
    z-index: 40;
    margin-left: auto;
}

.p-drawer__icon {
    display: inline-block;
    position: relative;
    z-index: 41;
    cursor: pointer;
    padding: 1.1875rem 1.09375rem;
    line-height: 1;
    text-align: center;
}

.p-drawer__icon::after {
    display: none;
    margin-top: 4px;
    min-width: 5em;
    color: #2f2e2e;
    font-size: 0.5rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    content: "MENU";
}

.p-drawer__icon.is-opened::after {
    content: "CLOSE";
}

.p-drawer__bars {
    display: inline-block;
    vertical-align: bottom;
    width: 30px;
    height: 12px;
}

.p-drawer__bar {
    display: block;
    transition: all 0.3s linear 0s;
    margin-top: 10px;
    background: #707070;
    width: 100%;
    height: 1px;
}

.p-drawer__bar:first-child {
    margin-top: 0;
}

.is-opened .p-drawer__bar {
    background: transparent;
}

.is-opened .p-drawer__bar:first-child {
    transform: translateY(5.5px) rotate(45deg);
    transform-origin: center;
    background: #707070;
    width: 100%;
}

.is-opened .p-drawer__bar:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
    transform-origin: center;
    background: #707070;
    width: 100%;
}

.p-drawer__bg {
    transition: all 0.3s ease 0s;
}

.p-drawer__bg.is-opened {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    width: 100vw;
    height: 100vh;
}

.p-drawer__content {
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateX(105%);
    z-index: 40;
    transition: all 0.5s ease 0s;
    background: #fff;
    padding-top: 106px;
    padding-right: 27px;
    padding-left: 27px;
    width: 200px;
    max-width: 90%;
    height: 100%;
    overflow: auto;
    color: #2f2e2e;
}

.p-drawer__content.is-opened {
    transform: translateX(0);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

.p-drawer__content--left {
    right: auto;
    left: 0;
    transform: translateX(-105%);
}

.p-drawer__content--top {
    top: 0;
    bottom: auto;
    transform: translateY(-105%);
    width: 100%;
    max-width: 100%;
}

.p-drawer__content--cover {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
    margin-top: 20px;
}

.p-drawer__navLink {
    display: block;
    font-size: 12px;
}

.p-floatingBanner {
    position: fixed;
    bottom: 10px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    transition-property: visibility opacity;
    width: 100vw;
}

.p-floatingBanner.is-active {
    visibility: visible;
    opacity: 1;
}

.p-floatingBanner .p-banner__link {
    margin-right: auto;
    margin-left: auto;
    max-width: 375px;
}

/* 西村調整 */
/* .p-footer {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.p-footer__logo {
  font-weight: 700;
  line-height: 1;
}

.p-footer__logo img,
.p-footer__logo svg {
  width: 10.2142857143em;
  object-fit: contain;
}

.p-footer__nav {
  gap: 1.1428571429em 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.8571428571em;
}

.p-footer__navItem > a::after {
  display: inline-block;
  margin-left: .9642857143em;
  background: transparent url('../img/sprite/chevron-right.svg') no-repeat center center/contain;
  width: .5em;
  height: .8571428571em;
  content: '';
}

.p-footer__navItem > a:hover, .p-footer__navItem > a:focus {
  opacity: 1;
  text-decoration: underline;
}

.p-footer__copy {
  margin-top: 4.6428571429em;
  font-family: 'Squada One', cursive;
  font-size: 1.1428571429em;
} */

.p-fv__slider {
    background-color: #f8f8f8;
    padding-top: 40px;
    padding-bottom: 70px;
}

.p-fv__slide {
    margin-right: 30px;
    width: auto;
    height: 330px;
}

.p-fv__slideLink {
    display: block;
    height: inherit;
}

.p-fv__slideLink > img {
    border-radius: 10px;
    width: auto;
    height: inherit;
    object-fit: contain;
}

.p-fv__paginationWrap {
    display: flex;
    position: absolute;
    bottom: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.p-fv__pagination .swiper-pagination-bullet {
    display: inline-block;
    border: 1px solid #707070;
    border-radius: 50%;
    background-color: #fff;
    width: 12px;
    height: 12px;
}

.p-fv__pagination .swiper-pagination-bullet-active {
    background-color: #2f2e2e;
}

.p-fv__pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 10px;
}

.p-fv__page {
    margin-left: 24px;
    font-family: "Squada One", cursive;
    font-size: 20px;
}

.p-gallery {
    gap: 16px 3.2%;
    display: flex;
    overflow-x: auto;
    font-size: 16px;
}

.p-gallery__item {
    flex-basis: 10.75rem;
    text-align: center;
}

.p-gallery__link {
    display: block;
}

.p-gallery__img > img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 100%;
    object-fit: cover;
}

.p-gallery__name {
    margin-top: 0.875em;
    font-weight: 400;
    line-height: 1;
}

.p-gallery__itemFooter {
    margin-top: 1px;
    margin-left: -6px;
    line-height: 1;
}

.p-gallery__itemTag {
    display: inline-block;
    margin-top: 6px;
    margin-left: 6px;
    border-radius: 5px;
    background-color: #2f2e2e;
    padding: 0.25em;
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.p-header {
    display: flex;
    align-items: center;
    padding: 1.3333333333em 40px;
    height: 100%;
    font-size: 12px;
}

.p-header__logo a {
    display: flex;
    align-items: center;
}

.p-header__logo img,
.p-header__logo svg {
    width: 10em;
    object-fit: contain;
}

.p-header__nav {
    margin-left: auto;
}

.p-header__navList {
    display: flex;
    align-items: center;
}

.p-header__navItem + .p-header__navItem {
    margin-left: 2.1666666667em;
}

.p-header__navLink {
    display: block;
    text-align: center;
}

.p-header__navLink > p {
    font-weight: bold;
}

.p-header__navIcon {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 2.5em;
    height: 2.5em;
}

.p-header__navIcon > img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: contain;
}

.p-header__drawer {
    margin-left: 2.25em;
}

.p-top__new {
    margin-top: 55px;
}

.p-top__today {
    margin-top: 32px;
}

.p-top__popular {
    margin-top: 60px;
}

.p-top__search {
    margin-top: 50px;
}

/* nishimura */
/* .p-topSection__body {
    margin-top: 26px;
} */

.p-topSection__footer {
    margin-top: 30px;
    text-align: right;
}

.p-topSection__more {
    margin-top: auto;
    margin-left: auto;
}

/* modifier ******************************************************************/
.p-topSection--bgGray {
    background-color: #f8f8f8;
    padding-top: 52px;
    padding-bottom: 71px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.u-fullWidthPc {
    margin-left: calc(50% - 50vw + (100vw - var(--vw, 100vw)) / 2);
    width: var(--vw, 100vw);
}

.u-fullWidthPc__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    width: calc(1000px + 24px * 2);
    max-width: 100%;
}

.u-hidden {
    display: none;
}

.u-overflowHidden {
    overflow: hidden;
}

.u-p0 {
    padding: 0 !important;
}

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
    display: inline-block;
}

.mw_wp_form_preview .c-select::after {
    content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
    display: none;
}

.wpcf7-response-output {
    display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
    padding: 1.875rem 3.75rem;
    width: 100% !important;
}

#toc_container .toc_number {
    margin-right: 0.5em;
    color: #166eb8;
    font-weight: 700;
}

#toc_container .toc_list li {
    color: #2f2e2e;
}

#toc_container .toc_list li::before {
    display: none;
    color: #166eb8;
}

#toc_container .toc_list li + li {
    margin-top: 0.5em;
}

#toc_container .toc_list a {
    color: #2f2e2e;
}
/* 西村調整 */
/* @media (max-width: 375px) {
    html {
        font-size: 4.2666666667vw;
    }
}
@media only screen and (min-width: 768px) {
    html {
        font-size: 1.5267175573vw;
    }
}
@media (min-width: 1000px) {
    html {
        font-size: 16px;
    }
} */
@media only screen and (max-width: 767px) {
    .l-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .l-footer {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .l-main--top {
        padding-top: 0.625rem;
        padding-bottom: 2.5rem;
    }

    /* nishimura */
    /* 
    .c-headline {
        font-size: 1.25rem;
    }

    .c-headline__icon {
        vertical-align: middle;
        margin-right: 0.6875rem;
        width: 1.05em;
        height: 1.05em;
    } */

    .p-card {
        font-size: 0.75rem;
    }

    .p-card__title {
        font-size: 1rem;
    }

    .p-card__label {
        font-size: 0.75rem;
    }

    .p-cardList {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .p-footer__nav {
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .p-footer__navItem {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        width: 50%;
    }

    .p-footer__navItem:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
    }

    .p-footer__navItem > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1.25rem 1rem 1.25rem 1.25rem;
        height: 100%;
        text-align: left;
    }

    .p-footer__navItem > a::after {
        margin-left: auto;
        background-position: right center;
        padding-left: 1.25rem;
    }

    .p-footer__copy {
        margin-top: 1.875rem;
    } */

    .p-fv__slider {
        padding-top: 1.25rem;
        padding-bottom: 4.4375rem;
    }

    .p-fv__slide {
        margin-right: 0;
        height: auto;
    }

    .p-fv__paginationWrap {
        justify-content: space-between;
        padding-right: 1.6875rem;
        padding-left: 1.6875rem;
        bottom: 8px;
    }

    .p-fv__pagination .swiper-pagination-bullet {
        width: 0.6875rem;
        height: 0.6875rem;
    }

    .p-gallery {
        margin-right: -16px;
        padding-right: 16px;
        padding-bottom: 0.5em;
        width: calc(100vw - 16px);
        font-size: 0.75rem;
    }

    .p-gallery__item {
        min-width: 4.5rem;
    }

    .p-gallery__itemFooter {
        margin-top: 3px;
        margin-left: -2px;
    }

    .p-gallery__itemTag {
        margin-top: 2px;
        margin-left: 2px;
        font-size: 0.625rem;
    }

    .p-header {
        padding: 0.9em 0.3em 0.9em 2em;
        font-size: 0.625rem;
    }

    .p-header__navItem + .p-header__navItem {
        margin-left: 1.5em;
    }

    .p-header__drawer {
        margin-left: 0;
    }

    .p-subjects {
        gap: 0.6875rem;
        grid-template-columns: repeat(auto-fill, minmax(6.5625rem, 1fr));
        font-size: 1rem;
    }

    .p-subjects__link {
        min-height: 4.875rem;
    }

    .p-top__new {
        margin-top: 2.5rem;
    }

    .p-top__today {
        margin-top: 1.875rem;
    }

    .p-top__popular {
        margin-top: 2.5rem;
    }

    .p-top__search {
        margin-top: 2.5rem;
    }

    /* nishimura */
    /* .p-topSection__body {
        margin-top: 0.625rem;
    } */

    .p-topSection--bgGray {
        padding-top: 1.875rem;
        padding-bottom: 2.5rem;
    }

    .u-hidden--sp {
        display: none;
    }

    #toc_container {
        padding: 1.875rem 1.25rem;
    }
}
@media print, screen and (min-width: 1000px) {
    .u-hidden--pc {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
    .u-hidden--tab {
        display: none;
    }
}
/*# sourceMappingURL=map/style.css.map */
