@charset "UTF-8";



.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 48px;
  width: 3rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #111;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.l-container {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 500px;
}

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

.l-main {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #111;
  font-family: 'Shippori Mincho', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', serif;
  font-size: 25.6px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.5;
}

body.l-overseas {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  color: #111;
}

html.translated-ltr {
  overflow: auto;
}

html.translated-ltr body {
  position: static !important;
  top: 0 !important;
}

.goog-te-banner-frame,
.skiptranslate {
  display: none !important;
}

.l-overseas .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.l-overseas__header {
  position: relative;
  background: #fff;
}

.c-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  border: 1px solid transparent;
  background-color: #2e2e2e;
  padding: 25.6px 72px;
  padding: 1.6rem 4.5rem;
  width: 100%;
  color: #FFFDF7;
  font-size: max(10px, 22.4px);
  font-size: max(10px, 1.4rem);
  letter-spacing: .08em;
  text-decoration: none;
}

.c-btn::before {
  aspect-ratio: 1/1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: background-image .3s;
  transition: background-image .3s;
  background-image: url('../img/icon_logo_white.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25.6px;
  width: 1.6rem;
  content: '';
}

.c-btn::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  background-color: currentColor;
  width: 64px;
  width: 4rem;
  height: 1px;
  content: '';
}

.c-btn:focus-visible {
  border-color: #2e2e2e;
  background-color: #FFFDF7;
  color: #2e2e2e;
}

.c-btn:focus-visible::before {
  background-image: url('../img/icon_logo_black.svg');
}

.c-btn span {
  padding-inline: 12.8px;
  padding-inline: .8rem;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.c-btn--mail::before {
  -webkit-mask-image: url('../img/icon_mail.svg');
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url('../img/icon_mail.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #FFFDF7;
  background-image: none;
  width: 38.4px;
  width: 2.4rem;
}

.c-btn--mail:focus-visible::before {
  background-color: #2e2e2e;
  background-image: none;
}

.c-card__link {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
  text-decoration: none;
}

.c-card__link:hover .c-card__img img, .c-card__link:focus-visible .c-card__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.c-card__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.c-card__img {
  position: relative;
  overflow: hidden;
}

.c-card__img img {
  aspect-ratio: 320/250;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-card__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #111;
  padding: 12.8px 9.6px 6.4px;
  padding: .8rem .6rem .4rem;
  width: 46.4px;
  width: 2.9rem;
  color: #FFFDF7;
  font-size: 25.6px;
  font-size: 1.6rem;
  letter-spacing: .4em;
  line-height: 1.4375;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

html.translated-ltr .c-card__tag {
  padding: 9.6px 16px;
  padding: .6rem 1rem;
  width: auto;
  max-width: 80%;
  font-size: max(10px, 19.2px);
  font-size: max(10px, 1.2rem);
  letter-spacing: .05em;
  line-height: 1.4;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  text-align: center;
}

.c-card__title {
  margin-top: 12.8px;
  margin-top: .8rem;
  font-size: 25.6px;
  font-size: 1.6rem;
  letter-spacing: .08em;
  line-height: 1.4375;
}

.c-card__date {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #111;
  font-size: max(10px, 19.2px);
  font-size: max(10px, 1.2rem);
  letter-spacing: .1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.c-exports-table {
  gap: 38.4px;
  gap: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-exports-table__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-exports-table__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  cursor: pointer;
  border: none;
  background-color: #fff;
  padding: 12.8px 25.6px;
  padding: .8rem 1.6rem;
  width: 100%;
  color: #111;
  font-family: inherit;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
}

.c-exports-table__title::before, .c-exports-table__title::after {
  position: absolute;
  right: 25.6px;
  right: 1.6rem;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  background-color: currentColor;
  width: 32px;
  width: 2rem;
  height: 2px;
  content: '';
}

.c-exports-table__title::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c-exports-table__title[aria-expanded=true] {
  background-color: #111;
  color: #FFFDF7;
}

.c-exports-table__title[aria-expanded=true]::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-exports-table__title--open {
  cursor: default;
  background-color: #111;
  color: #FFFDF7;
}

.c-exports-table__title--open::before, .c-exports-table__title--open::after {
  display: none;
}

.c-exports-table__content {
  display: none;
}

.c-exports-table__content.is-open {
  display: block;
}

.c-exports-table__table {
  display: none;
}

.c-exports-table__table-header {
  gap: 5.9292035398%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #111;
  padding-bottom: 12.8px;
  padding-bottom: .8rem;
  width: 100%;
  font-size: max(10px, 22.4px);
  font-size: max(10px, 1.4rem);
  font-weight: 700;
}

.c-exports-table__th {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-exports-table__th--date {
  width: 6.4601769912%;
}

.c-exports-table__th--country {
  width: 17.6991150442%;
}

.c-exports-table__th--orderer {
  width: 7.0796460177%;
}

.c-exports-table__th--shipping {
  width: 8.8495575221%;
}

.c-exports-table__th--content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.c-exports-table__table-row {
  gap: 5.9292035398%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #111;
  padding: 12.8px 0;
  padding: .8rem 0;
  width: 100%;
  font-size: 25.6px;
  font-size: 1.6rem;
}

.c-exports-table__td {
  word-wrap: break-word;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-exports-table__td--date {
  word-wrap: normal;
  width: 6.4601769912%;
}

.c-exports-table__td--country {
  width: 17.6991150442%;
}

.c-exports-table__td--orderer {
  width: 7.0796460177%;
}

.c-exports-table__td--shipping {
  width: 8.8495575221%;
}

.c-exports-table__td--content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  word-break: break-word;
}

.c-exports-table__cards {
  position: relative;
  background-color: #F5F5F5;
}

.c-exports-table__cards.slick-initialized {
  padding-bottom: 51.2px;
  padding-bottom: 3.2rem;
}

.c-exports-table__cards .slick-arrow {
  display: none !important;
}

.c-exports-table__cards .slick-dots {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-exports-table__cards .slick-dots li {
  margin: 0;
  width: 12.8px;
  width: .8rem;
  height: 12.8px;
  height: .8rem;
}

.c-exports-table__cards .slick-dots li button {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: #D9D9D9;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.c-exports-table__cards .slick-dots li button::before {
  display: none;
}

.c-exports-table__cards .slick-dots li.slick-active button {
  background-color: #A0A0A0;
}

.c-exports-table__card {
  height: auto;
}

.c-exports-table__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-exports-table__dl-row {
  gap: 25.6px;
  gap: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #111;
  background-color: #FFFDF7;
  padding: 12.8px;
  padding: .8rem;
}

.c-exports-table__dl-row--last {
  border-bottom: none;
}

.c-exports-table__dt {
  word-wrap: break-word;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 112px;
  width: 7rem;
  font-size: max(10px, 22.4px);
  font-size: max(10px, 1.4rem);
  font-weight: 700;
}

.c-exports-table__dd {
  font-size: 25.6px;
  font-size: 1.6rem;
}

html.translated-ltr .c-exports-table__dd {
  padding-left: 16px;
  padding-left: 1rem;
  font-size: max(10px, 22.4px);
  font-size: max(10px, 1.4rem);
}

.c-section-title {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
}

.c-section-title::before {
  aspect-ratio: 1/1;
  background: url(../img/icon_logo_black.svg) no-repeat center/contain;
  width: 38.4px;
  width: 2.4rem;
  content: '';
}

.c-section-title--sm::before {
  width: 36.8px;
  width: 2.3rem;
}

.c-section-title--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 48px;
  margin-bottom: 3rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #F5F5F5;
  border-bottom: 1px solid #F5F5F5;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body * + * {
  margin-top: 25px;
}

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

.p-article__body .wp-block-spacer, .p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 16px;
  margin-left: 1rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 16px;
  gap: 1rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #111;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-article__body a:not([class]) {
  color: #111;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: currentColor;
  font-size: 22.4px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F5F5F5;
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #F5F5F5;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #F5F5F5;
  padding: 32px 16px;
  padding: 2rem 1rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #F5F5F5;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 22.4px;
  font-size: 1.4rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__links {
  margin-top: 48px;
  margin-top: 3rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #111;
  width: 2em;
  height: 2em;
  color: #111;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #111;
  color: #FFFDF7;
}

.post-page-numbers.dots {
  border: none;
}

.p-exhibition {
  position: relative;
  background: url(../img/common_bg.jpg) no-repeat center/cover;
  padding: 89.6px 0;
  padding: 5.6rem 0;
}

.p-exhibition__list {
  gap: 64px;
  gap: 4rem;
  display: grid;
  grid-template-columns: 1fr;
}

.p-exhibition__empty {
  font-size: 25.6px;
  font-size: 1.6rem;
  letter-spacing: .08em;
  text-align: center;
}

.p-exhibition__pagination {
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-exports-single {
  position: relative;
  z-index: 1;
  background: url(../img/common_bg.jpg) no-repeat center/cover;
  padding: 89.6px 0;
  padding: 5.6rem 0;
  overflow: clip;
}

.p-exports-single::before {
  aspect-ratio: 277/282;
  position: absolute;
  top: -28.8px;
  top: -1.8rem;
  left: -51.2px;
  left: -3.2rem;
  z-index: -1;
  background: url(../img/icon_deco02.png) no-repeat center/contain;
  width: 192px;
  width: 12rem;
  content: '';
}

.p-exports-single__content {
  gap: 76.8px;
  gap: 4.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-exports-single__gallery {
  gap: 38.4px;
  gap: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.p-exports-single__slider {
  position: relative;
}

.p-exports-single__slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  border: none;
  background: transparent no-repeat center/contain;
  width: 27.2px;
  width: 1.7rem;
  height: 27.2px;
  height: 1.7rem;
  font-size: 0;
}

.p-exports-single__slider .slick-prev {
  left: 12.8px;
  left: .8rem;
  background-image: url(../img/icon_slider_arrow.svg);
}

.p-exports-single__slider .slick-next {
  right: 12.8px;
  right: .8rem;
  -webkit-transform: translateY(-50%) scaleX(-1);
  transform: translateY(-50%) scaleX(-1);
  background-image: url(../img/icon_slider_arrow.svg);
}

.p-exports-single__slide img {
  aspect-ratio: 343/268;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-exports-single__thumbs {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-exports-single__thumb {
  opacity: .6;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  cursor: pointer;
}

.p-exports-single__thumb.is-active, .p-exports-single__thumb:hover {
  opacity: 1;
}

.p-exports-single__thumb img {
  aspect-ratio: 1/1;
  width: 128px;
  width: 8rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-exports-single__info {
  gap: 25.6px;
  gap: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}

.p-exports-single__info::before {
  aspect-ratio: 300/294;
  position: absolute;
  top: -64px;
  top: -4rem;
  right: -28.8px;
  right: -1.8rem;
  z-index: -1;
  background: url(../img/icon_deco01.png) no-repeat center/contain;
  width: 192px;
  width: 12rem;
  content: '';
}

.p-exports-single__meta {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-exports-single__meta-label {
  font-weight: 700;
}

.p-exports-single__body {
  line-height: 1.8;
}

.p-exports-single__body p + p {
  margin-top: 1em;
}

.p-exports-single__body strong {
  font-weight: 700;
}

.p-exports__section {
  position: relative;
  background: #F5F5F5;
  padding: 89.6px 0;
  padding: 5.6rem 0;
}

.p-exports__list {
  gap: 64px;
  gap: 4rem;
  display: grid;
  grid-template-columns: 1fr;
}

.p-exports__empty {
  font-size: 25.6px;
  font-size: 1.6rem;
  letter-spacing: .08em;
  text-align: center;
}

.p-exports__pagination {
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-exports__table-wrap {
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-footer .footer__content {
  margin-top: 0;
}

.p-lowerFv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 192px;
  height: 12rem;
  color: #111;
  font-family: 'Shippori Mincho', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', serif;
  font-size: 25.6px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.5;
}

.p-lowerFv__bg {
  inset: 0;
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.p-lowerFv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-lowerFv__title {
  position: relative;
  z-index: 10;
  color: #FFFDF7;
  font-size: 44.8px;
  font-size: 2.8rem;
  font-weight: 500;
}

.p-lowerFv__lang {
  position: absolute;
  right: 16px;
  bottom: -32px;
  bottom: -2rem;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 20;
}

.p-lowerFv__lang a {
  border-radius: .4rem;
  background: #111;
  padding: 12.8px 25.6px;
  padding: .8rem 1.6rem;
  color: #FFFDF7;
  font-size: max(10px, 19.2px);
  font-size: max(10px, 1.2rem);
  font-weight: 500;
}

.p-lowerFv__lang .gtranslate_wrapper {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-overseas-about {
  position: relative;
  z-index: 1;
  background: url(../img/common_bg.jpg) no-repeat center/cover;
  padding: 83.2px 0;
  padding: 5.2rem 0;
  overflow: hidden;
}

html.translated-ltr .p-overseas-about {
  padding-bottom: 192px;
  padding-bottom: 12rem;
}

.p-overseas-about::before {
  aspect-ratio: 300/294;
  position: absolute;
  bottom: 80px;
  bottom: 5rem;
  left: -32px;
  left: -2rem;
  z-index: -1;
  background: url(../img/icon_deco01.png) no-repeat center/contain;
  width: 184px;
  width: 11.5rem;
  content: none;
}

html.translated-ltr .p-overseas-about::before {
  bottom: -16px;
  bottom: -1rem;
}

.p-overseas-about::after {
  aspect-ratio: 277/282;
  position: absolute;
  top: 560px;
  top: 35rem;
  right: -48px;
  right: -3rem;
  z-index: -1;
  background: url(../img/icon_deco02.png) no-repeat center/contain;
  width: 160px;
  width: 10rem;
  content: none;
}

.p-overseas-about__content {
  gap: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

html.translated-ltr .p-overseas-about__content {
  gap: 38.4px;
  gap: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-overseas-about__title {
  margin-left: 1em;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .4em;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

html.translated-ltr .p-overseas-about__title {
  margin-left: 0;
  width: 100%;
  letter-spacing: .1em;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
}

.p-overseas-about__text {
  margin: 0;
  height: 704px;
  height: 44rem;
  font-size: max(10px, 22.4px);
  font-size: max(10px, 1.4rem);
  letter-spacing: .4em;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

html.translated-ltr .p-overseas-about__text {
  max-width: 100%;
  height: auto;
  letter-spacing: .05em;
  line-height: 1.8;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
}

.p-overseas-contact {
  background: url(../img/common_bg.jpg) no-repeat center/cover;
  padding: 89.6px 0;
  padding: 5.6rem 0;
}

.p-overseas-contact__text {
  margin-top: 76.8px;
  margin-top: 4.8rem;
  font-size: max(10px, 22.4px);
  font-size: max(10px, 1.4rem);
  letter-spacing: .08em;
}

.p-overseas-contact__link {
  margin-top: 38.4px;
  margin-top: 2.4rem;
}

.p-overseas-exhibition {
  position: relative;
  z-index: 1;
  background: url(../img/common_bg.jpg) no-repeat center/cover;
  padding: 89.6px 0;
  padding: 5.6rem 0;
  overflow: hidden;
}

.p-overseas-exhibition::after {
  aspect-ratio: 277/282;
  position: absolute;
  top: -6.4px;
  top: -.4rem;
  right: -78.4px;
  right: -4.9rem;
  z-index: -1;
  background: url(../img/icon_deco02.png) no-repeat center/contain;
  width: 152px;
  width: 9.5rem;
  content: '';
}

.p-overseas-exhibition__list {
  gap: 64px;
  gap: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-overseas-exhibition__more {
  margin-top: 76.8px;
  margin-top: 4.8rem;
  text-align: center;
}

.p-overseas-exports {
  position: relative;
  z-index: 1;
  background-color: #F5F5F5;
  padding: 89.6px 0;
  padding: 5.6rem 0;
  overflow: hidden;
}

.p-overseas-exports::after {
  aspect-ratio: 300/294;
  position: absolute;
  top: 9.6px;
  top: .6rem;
  right: -70.4px;
  right: -4.4rem;
  z-index: -1;
  background: url(../img/icon_deco01.png) no-repeat center/contain;
  width: 192px;
  width: 12rem;
  content: '';
}

.p-overseas-exports__list {
  gap: 64px;
  gap: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-overseas-exports__item {
  list-style: none;
}

.p-overseas-exports__card {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.p-overseas-exports__visual {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-overseas-exports__img {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-overseas-exports__img img {
  aspect-ratio: 320/250;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-overseas-exports__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #111;
  padding: 12.8px 12.8px 0;
  padding: .8rem .8rem 0;
  width: 43.2px;
  width: 2.7rem;
  color: #FFFDF7;
  font-size: 25.6px;
  font-size: 1.6rem;
  letter-spacing: .4em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

html.translated-ltr .p-overseas-exports__tag {
  padding: 9.6px 16px;
  padding: .6rem 1rem;
  width: auto;
  max-width: 80%;
  font-size: max(10px, 19.2px);
  font-size: max(10px, 1.2rem);
  letter-spacing: .05em;
  line-height: 1.4;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
}

.p-overseas-exports__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 27.2px;
  width: 1.7rem;
  font-size: max(10px, 19.2px);
  font-size: max(10px, 1.2rem);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-overseas-exports__name {
  font-size: 25.6px;
  font-size: 1.6rem;
}

.p-overseas-exports__more {
  margin-top: 76.8px;
  margin-top: 4.8rem;
  text-align: center;
}

.p-overseas-exports__table-wrap {
  gap: 38.4px;
  gap: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-overseas-exports__year-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-overseas-exports__year-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  cursor: pointer;
  border: none;
  background-color: #fff;
  padding: 12.8px 25.6px;
  padding: .8rem 1.6rem;
  width: 100%;
  color: #111;
  font-family: inherit;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
}

.p-overseas-exports__year-title::before, .p-overseas-exports__year-title::after {
  position: absolute;
  right: 25.6px;
  right: 1.6rem;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  background-color: currentColor;
  width: 32px;
  width: 2rem;
  height: 2px;
  content: '';
}

.p-overseas-exports__year-title::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-overseas-exports__year-title[aria-expanded=true] {
  background-color: #111;
  color: #FFFDF7;
}

.p-overseas-exports__year-title[aria-expanded=true]::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-overseas-exports__year-title--open {
  cursor: default;
  background-color: #111;
  color: #FFFDF7;
}

.p-overseas-exports__year-title--open::before, .p-overseas-exports__year-title--open::after {
  display: none;
}

.p-overseas-exports__year-content {
  display: none;
}

.p-overseas-exports__year-content.is-open {
  display: block;
}

.p-overseas-exports__table {
  display: none;
}

.p-overseas-exports__table-header {
  gap: 107.2px;
  gap: 6.7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #111;
  padding-bottom: 12.8px;
  padding-bottom: .8rem;
  font-size: max(10px, 22.4px);
  font-size: max(10px, 1.4rem);
  font-weight: 700;
}

.p-overseas-exports__th {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-overseas-exports__th--date {
  width: 116.8px;
  width: 7.3rem;
}

.p-overseas-exports__th--country {
  width: 400px;
  width: 25rem;
}

.p-overseas-exports__th--orderer {
  width: 80px;
  width: 5rem;
}

.p-overseas-exports__th--content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-overseas-exports__table-row {
  gap: 107.2px;
  gap: 6.7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #111;
  padding: 12.8px 0;
  padding: .8rem 0;
  font-size: 25.6px;
  font-size: 1.6rem;
}

.p-overseas-exports__td {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-overseas-exports__td--date {
  width: 116.8px;
  width: 7.3rem;
}

.p-overseas-exports__td--country {
  width: 400px;
  width: 25rem;
}

.p-overseas-exports__td--orderer {
  width: 72px;
  width: 4.5rem;
}

.p-overseas-exports__td--content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-overseas-exports__cards {
  position: relative;
  background-color: #F5F5F5;
  padding-bottom: 51.2px;
  padding-bottom: 3.2rem;
}

.p-overseas-exports__cards .slick-dots {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  bottom: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-overseas-exports__cards .slick-dots li {
  margin: 0;
  width: 12.8px;
  width: .8rem;
  height: 12.8px;
  height: .8rem;
}

.p-overseas-exports__cards .slick-dots li button {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: #D9D9D9;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.p-overseas-exports__cards .slick-dots li button::before {
  display: none;
}

.p-overseas-exports__cards .slick-dots li.slick-active button {
  background-color: #A0A0A0;
}

.p-overseas-exports__card-item {
  height: auto;
}

.p-overseas-exports__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-overseas-exports__dl-row {
  gap: 25.6px;
  gap: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #111;
  background-color: #FFFDF7;
  padding: 12.8px;
  padding: .8rem;
}

.p-overseas-exports__dl-row--last {
  border-bottom: none;
}

.p-overseas-exports__dt {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 72px;
  width: 4.5rem;
  font-size: max(10px, 22.4px);
  font-size: max(10px, 1.4rem);
  font-weight: 700;
}

.p-overseas-exports__dd {
  font-size: 25.6px;
  font-size: 1.6rem;
}

.p-overseas-products {
  position: relative;
  z-index: 1;
  background-color: #f5f5f5;
  padding: 89.6px 0;
  padding: 5.6rem 0;
  overflow: hidden;
}

.p-overseas-products__list {
  gap: 38.4px;
  gap: 2.4rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-overseas-products__item {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-overseas-products__img img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-overseas-products__name {
  gap: 25.6px;
  gap: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-family: 'Shippori Mincho', serif;
  font-size: 25.6px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.p-overseas-products__name::before {
  aspect-ratio: 1/1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../img/icon_logo_black.svg) no-repeat center/contain;
  width: 32px;
  width: 2rem;
  content: '';
}

.p-overseas-shipping {
  position: relative;
  z-index: 1;
  background-color: #f5f5f5;
  padding: 0 0 144px;
  padding: 0 0 9rem;
  overflow: hidden;
}

.p-overseas-shipping .l-container {
  padding-inline: 0;
  max-width: 100%;
}

.p-overseas-shipping__title {
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 500px;
}

.p-overseas-shipping__list {
  margin-top: 76.8px;
  margin-top: 4.8rem;
}

.p-overseas-shipping__item {
  margin-inline: 19.2px;
  margin-inline: 1.2rem;
  width: 384px;
  width: 24rem;
}

.p-overseas-shipping__card {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../img/overseas_diamond_bg.svg) no-repeat center/contain;
  width: 100%;
  width: 384px;
  width: 24rem;
}

.p-overseas-shipping__name {
  font-family: 'Shippori Mincho', serif;
  font-size: 28.8px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.p-overseas-shipping__line {
  margin-top: 19.2px;
  margin-top: 1.2rem;
  background-color: #111;
  width: 57.6px;
  width: 3.6rem;
  height: 1.6px;
  height: .1rem;
}

.p-overseas-shipping__icon {
  margin-top: 19.2px;
  margin-top: 1.2rem;
}

.p-overseas-shipping__icon img {
  width: 108.8px;
  width: 6.8rem;
  height: auto;
}

.p-overseas-shipping__list .slick-dots {
  gap: 12.8px;
  gap: .8rem;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  bottom: -38.4px;
  bottom: -2.4rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.p-overseas-shipping__list .slick-dots li {
  margin: 0;
  width: 12.8px;
  width: .8rem;
  height: 12.8px;
  height: .8rem;
}

.p-overseas-shipping__list .slick-dots li button {
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: #ccc;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.p-overseas-shipping__list .slick-dots li button::before {
  display: none;
}

.p-overseas-shipping__list .slick-dots li.slick-active button {
  background-color: #a0a0a0;
}

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

/************************************************************************
* visible device
************************************************************************/
.u-mobile {
  display: block;
}

.u-pc {
  display: none;
}

.u-pc-inline {
  display: none;
}

@media only screen and (min-width: 375px) {

  .p-overseas-about::before {
    content: '';
  }

  .p-overseas-about::after {
    content: '';
  }
}

@media screen and (min-width: 600px) {

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 64px;
    width: 4rem;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1300px;
  }

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

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

  body.l-overseas {
    background-color: #FFFDF7;
  }

  .c-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 25.6px 38.4px;
    padding: 1.6rem 2.4rem;
    width: auto;
    font-size: 25.6px;
    font-size: 1.6rem;
    font-weight: 700;
  }

  .c-btn::after {
    width: 38.4px;
    width: 2.4rem;
  }

  .c-btn span {
    text-align: left;
  }

  .c-card__link {
    gap: 25.6px;
    gap: 1.6rem;
  }

  .c-card__link--sm {
    gap: 6.4px;
    gap: .4rem;
  }

  .c-card__img img {
    aspect-ratio: 350/250;
  }

  .c-card__title {
    margin-top: 25.6px;
    margin-top: 1.6rem;
  }

  .c-card__link--sm .c-card__title {
    margin-top: 12.8px;
    margin-top: .8rem;
  }

  .c-card__date {
    font-size: max(10px, 22.4px);
    font-size: max(10px, 1.4rem);
    line-height: 1.4285714286;
  }

  .c-exports-table {
    gap: 89.6px;
    gap: 5.6rem;
  }

  .c-exports-table__title {
    padding: 12.8px 51.2px;
    padding: .8rem 3.2rem;
    font-size: 51.2px;
    font-size: 3.2rem;
  }

  .c-exports-table__title::before, .c-exports-table__title::after {
    right: 51.2px;
    right: 3.2rem;
    width: 51.2px;
    width: 3.2rem;
  }

  .c-exports-table__table {
    gap: 12.8px;
    gap: .8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    padding: 64px 88px;
    padding: 4rem 5.5rem;
    width: 100%;
  }

  .c-exports-table__cards {
    display: none;
  }

  .c-exports-table__dt {
    width: 96px;
    width: 6rem;
  }

  html.translated-ltr .c-exports-table__dd {
    padding-left: 0;
    font-size: 25.6px;
    font-size: 1.6rem;
  }

  .c-section-title {
    gap: 25.6px;
    gap: 1.6rem;
    font-size: 57.6px;
    font-size: 3.6rem;
  }

  .c-section-title::before {
    width: 54.4px;
    width: 3.4rem;
  }

  .c-section-title--sm {
    gap: 12.8px;
    gap: .8rem;
    font-size: 51.2px;
    font-size: 3.2rem;
  }

  .c-section-title--sm::before {
    width: 44.8px;
    width: 2.8rem;
  }

  .p-article__title {
    font-size: 24px;
  }

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-exhibition {
    padding: 160px 0;
    padding: 10rem 0;
  }

  .p-exhibition__list {
    gap: 89.6px 64px;
    gap: 5.6rem 4rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-exhibition__pagination {
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-exports-single {
    padding: 160px 0;
    padding: 10rem 0;
  }

  .p-exports-single::before {
    top: -44.8px;
    top: -2.8rem;
    left: -139.2px;
    left: -8.7rem;
    width: min(484.8px, 25vw);
    width: min(30.3rem, 25vw);
  }

  .p-exports-single::after {
    aspect-ratio: 300/294;
    position: absolute;
    right: -102.4px;
    right: -6.4rem;
    bottom: -52.8px;
    bottom: -3.3rem;
    z-index: -1;
    background: url(../img/icon_deco01.png) no-repeat center/contain;
    width: min(481.6px, 25vw);
    width: min(30.1rem, 25vw);
    content: '';
  }

  .p-exports-single__content {
    gap: 51.2px;
    gap: 3.2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-exports-single__gallery {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 44.3548387097%;
  }

  .p-exports-single__slider .slick-arrow {
    width: 38.4px;
    width: 2.4rem;
    height: 38.4px;
    height: 2.4rem;
  }

  .p-exports-single__slider .slick-prev {
    left: 19.2px;
    left: 1.2rem;
  }

  .p-exports-single__slider .slick-next {
    right: 19.2px;
    right: 1.2rem;
  }

  .p-exports-single__slide img {
    aspect-ratio: 550/400;
  }

  .p-exports-single__thumbs {
    gap: 25.6px;
    gap: 1.6rem;
  }

  .p-exports-single__thumb img {
    width: 160px;
    width: 10rem;
  }

  .p-exports-single__info {
    gap: 51.2px;
    gap: 3.2rem;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 259.2px;
    padding-bottom: 16.2rem;
  }

  .p-exports-single__info::before {
    display: none;
  }

  .p-exports__section {
    padding: 160px 0;
    padding: 10rem 0;
  }

  .p-exports__list {
    row-gap: 89.6px;
    row-gap: 5.6rem;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: .8rem;
    -moz-column-gap: .8rem;
    column-gap: .8rem;
  }

  .p-exports__pagination {
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-exports__table-wrap {
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-lowerFv {
    height: 449.6px;
    height: 28.1rem;
  }

  .p-lowerFv__title {
    font-size: 64px;
    font-size: 4rem;
  }

  .p-lowerFv__lang {
    right: 30px;
  }

  .p-lowerFv__lang a {
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 16px 38.4px;
    padding: 1rem 2.4rem;
    font-size: 22.4px;
    font-size: 1.4rem;
  }

  .p-lowerFv__lang a:hover {
    background: #FFFDF7;
    color: #111;
  }

  .p-overseas-about {
    padding: 160px 0;
    padding: 10rem 0;
  }

  html.translated-ltr .p-overseas-about {
    padding-bottom: 320px;
    padding-bottom: 20rem;
  }

  .p-overseas-about::before {
    bottom: max(-128px, -6vw);
    bottom: max(-8rem, -6vw);
    left: max(-80px, -4vw);
    left: max(-5rem, -4vw);
    width: min(480px, 25vw);
    width: min(30rem, 25vw);
  }

  html.translated-ltr .p-overseas-about::before {
    bottom: max(-208px, -6vw - 50px);
    bottom: max(-13rem, -6vw - 50px);
  }

  .p-overseas-about::after {
    top: max(-96px, -5vw);
    top: max(-6rem, -5vw);
    right: max(-160px, -7vw);
    right: max(-10rem, -7vw);
    width: min(484.8px, 25vw);
    width: min(30.3rem, 25vw);
  }

  .p-overseas-about__content {
    gap: 1em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-overseas-about__title {
    gap: 20.8px;
    gap: 1.3rem;
    margin-left: 2em;
    font-size: 51.2px;
    font-size: 3.2rem;
  }

  .p-overseas-about__text {
    height: 816px;
    height: 51rem;
    font-size: 25.6px;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .p-overseas-contact {
    padding: 160px 0;
    padding: 10rem 0;
  }

  .p-overseas-contact__text {
    margin-top: 51.2px;
    margin-top: 3.2rem;
    font-size: 28.8px;
    font-size: 1.8rem;
  }

  .p-overseas-exhibition {
    padding: 160px 0;
    padding: 10rem 0;
  }

  .p-overseas-exhibition::before {
    aspect-ratio: 300/294;
    position: absolute;
    bottom: max(-128px, -6vw);
    bottom: max(-8rem, -6vw);
    left: max(-80px, -4vw);
    left: max(-5rem, -4vw);
    z-index: -1;
    background: url(../img/icon_deco01.png) no-repeat center/contain;
    width: min(480px, 25vw);
    width: min(30rem, 25vw);
    content: '';
  }

  .p-overseas-exhibition::after {
    top: max(-11.2px, -.5vw);
    top: max(-.7rem, -.5vw);
    right: max(-228.8px, -10vw);
    right: max(-14.3rem, -10vw);
    width: min(443.2px, 25vw);
    width: min(27.7rem, 25vw);
  }

  .p-overseas-exhibition__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-overseas-exhibition__more {
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-overseas-exports {
    padding: 160px 0;
    padding: 10rem 0;
  }

  .p-overseas-exports::after {
    top: min(992px, 45vw);
    top: min(62rem, 45vw);
    right: max(-240px, -10vw);
    right: max(-15rem, -10vw);
    width: min(480px, 25vw);
    width: min(30rem, 25vw);
  }

  .p-overseas-exports__list {
    gap: 89.6px 76.8px;
    gap: 5.6rem 4.8rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-overseas-exports__card {
    gap: 38.4px;
    gap: 2.4rem;
  }

  .p-overseas-exports__img img {
    aspect-ratio: 350/250;
  }

  .p-overseas-exports__date {
    width: 36.8px;
    width: 2.3rem;
    font-size: 25.6px;
    font-size: 1.6rem;
  }

  .p-overseas-exports__name {
    font-size: 28.8px;
    font-size: 1.8rem;
  }

  .p-overseas-exports__more {
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-overseas-exports__table-wrap {
    gap: 89.6px;
    gap: 5.6rem;
    margin-top: 128px;
    margin-top: 8rem;
  }

  .p-overseas-exports__year-title {
    padding: 12.8px 51.2px;
    padding: .8rem 3.2rem;
    font-size: 51.2px;
    font-size: 3.2rem;
  }

  .p-overseas-exports__year-title::before, .p-overseas-exports__year-title::after {
    right: 51.2px;
    right: 3.2rem;
    width: 51.2px;
    width: 3.2rem;
  }

  .p-overseas-exports__table {
    gap: 12.8px;
    gap: .8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    padding: 64px 88px;
    padding: 4rem 5.5rem;
  }

  .p-overseas-exports__cards {
    display: none;
  }

  .p-overseas-products {
    padding: 160px 0 64px;
    padding: 10rem 0 4rem;
  }

  .p-overseas-products::after {
    aspect-ratio: 277/282;
    position: absolute;
    top: min(216px, 10vw);
    top: min(13.5rem, 10vw);
    right: max(-147.2px, -6vw);
    right: max(-9.2rem, -6vw);
    z-index: -1;
    background: url(../img/icon_deco02.png) no-repeat center/contain;
    width: min(484.8px, 25vw);
    width: min(30.3rem, 25vw);
    content: '';
  }

  .p-overseas-products__list {
    gap: min(89.6px, 4.5vw);
    gap: min(5.6rem, 4.5vw);
    grid-template-columns: repeat(3, min(28rem, 23vw));
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: min(128px, 6.5vw);
    margin-top: min(8rem, 6.5vw);
  }

  .p-overseas-products__img img {
    width: min(448px, 23vw);
    width: min(28rem, 23vw);
  }

  .p-overseas-products__name {
    gap: min(25.6px, 1.3vw);
    gap: min(1.6rem, 1.3vw);
    font-size: min(38.4px, 2vw);
    font-size: min(2.4rem, 2vw);
  }

  .p-overseas-products__name::before {
    width: min(36.8px, 1.9vw);
    width: min(2.3rem, 1.9vw);
  }

  .p-overseas-shipping {
    padding: 64px 0 160px;
    padding: 4rem 0 10rem;
  }

  .p-overseas-shipping::before {
    aspect-ratio: 300/294;
    position: absolute;
    bottom: max(59.2px, 3vw);
    bottom: max(3.7rem, 3vw);
    left: max(-112px, -5vw);
    left: max(-7rem, -5vw);
    z-index: -1;
    background: url(../img/icon_deco01.png) no-repeat center/contain;
    width: min(480px, 25vw);
    width: min(30rem, 25vw);
    content: '';
  }

  .p-overseas-shipping .l-container {
    padding-inline: 30px;
    max-width: 1300px;
  }

  .p-overseas-shipping__title {
    margin-inline: 0;
    padding-right: 0;
    padding-left: 0;
    max-width: none;
  }

  .p-overseas-shipping__list {
    gap: min(89.6px, 4.5vw);
    gap: min(5.6rem, 4.5vw);
    margin-inline: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: min(128px, 6.5vw);
    margin-top: min(8rem, 6.5vw);
  }

  .p-overseas-shipping__item {
    margin-inline: 0;
    width: auto;
  }

  .p-overseas-shipping__card {
    aspect-ratio: auto;
    margin: 0;
    width: min(448px, 23vw);
    width: min(28rem, 23vw);
    max-width: none;
    height: min(448px, 23vw);
    height: min(28rem, 23vw);
  }

  .p-overseas-shipping__name {
    font-size: min(38.4px, 2vw);
    font-size: min(2.4rem, 2vw);
  }

  .p-overseas-shipping__line {
    margin-top: min(24px, 1.2vw);
    margin-top: min(1.5rem, 1.2vw);
    width: min(67.2px, 3.5vw);
    width: min(4.2rem, 3.5vw);
  }

  .p-overseas-shipping__icon {
    margin-top: min(24px, 1.2vw);
    margin-top: min(1.5rem, 1.2vw);
  }

  .p-overseas-shipping__icon img {
    width: min(126.4px, 6.5vw);
    width: min(7.9rem, 6.5vw);
  }

  .p-overseas-shipping__list .slick-dots {
    display: none !important;
  }

  .u-mobile {
    display: none;
  }

  .u-pc {
    display: block;
  }

  .u-pc-inline {
    display: inline;
  }
}

@media screen and (min-width: 1024px) {

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }
}

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

  .c-exports-table__title + .c-exports-table__content {
    margin-top: -72px;
    margin-top: -4.5rem;
    padding-top: 72px;
    padding-top: 4.5rem;
  }

  .p-overseas-exports__year-title + .p-overseas-exports__year-content {
    margin-top: -72px;
    margin-top: -4.5rem;
    padding-top: 72px;
    padding-top: 4.5rem;
  }
}

@media (any-hover: hover) {

  .c-btn:hover {
    border-color: #2e2e2e;
    background-color: #FFFDF7;
    color: #2e2e2e;
  }

  .c-btn:hover::before {
    background-image: url('../img/icon_logo_black.svg');
  }

  .c-btn--mail:hover::before {
    background-color: #2e2e2e;
    background-image: none;
  }
}