@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*=========================================================
    FOUNDATION
=========================================================*/
/*=========================================================
    COLOR
=========================================================*/
/*=========================================================
    DECORATION
=========================================================*/
:root {
  --header-height: 190px;
}

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

html {
  font-size: clamp(12px, 1.0416666667vw, 20px);
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}
@media screen and (max-width: 750px) {
  html {
    font-size: clamp(12px, 3.4666666667vw, 26px);
  }
}

body {
  margin: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
  overflow-y: auto;
}
body.non-active {
  height: 100%;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, table th {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #000000;
}

p, a, ul li {
  font-family: "Noto Serif JP", serif;
  color: #000000;
  font-size: 1rem;
  line-height: 1em;
}

p {
  font-weight: 100;
}

a {
  text-decoration: none;
  line-height: 2em;
  color: #000000;
  color: #16203F;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s ease;
  word-break: break-word;
}
a:hover {
  filter: brightness(1.2);
  background: rgba(255, 255, 255, 0);
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

b {
  font-weight: 700;
}

#dumplingsContent,
#ippinContent,
#essayContent {
  scroll-margin-top: var(--header-height);
  scroll-behavior: smooth;
}

#tContainer {
  transition: opacity 0.5s ease;
  opacity: 1;
}
#tContainer.fade-out {
  opacity: 0;
}
#tContainer.fade-in {
  opacity: 1;
}

.bg-lightgray {
  background: #f2f2f2;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

.tb {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .tb {
    display: block !important;
  }
}
@media screen and (max-width: 428px) {
  .tb {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .sp {
    display: block !important;
  }
}

.btn-primary {
  display: block;
  font-size: 0.63rem;
  display: flex;
  align-items: center;
  position: relative;
  color: #000;
}
@media screen and (max-width: 750px) {
  .btn-primary {
    font-size: 0.92rem;
  }
}
.btn-primary:before {
  content: "";
  border-bottom: 1px solid #000;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: calc(100% + 0.63rem);
  transform: scale(0);
  transition: transform 0.3s;
}
.btn-primary:hover::before {
  transform: scale(1);
}
.btn-primary:after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background: url(../img/arrow-type1-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}
.btn-primary .logo-ig {
  background-image: url("../img/logo-ig-mono-bk.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.2em;
  aspect-ratio: 1/1;
  margin-right: 0.5em;
}
.btn-primary.white {
  color: #fff;
}
.btn-primary.white:before {
  border-bottom: 1px solid #fff;
}
.btn-primary.white:after {
  background: url(../img/arrow-type1-w.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.btn-primary.white .logo-ig {
  background-image: url("../img/logo-ig-mono.svg");
}

.btn-second {
  display: block;
  text-align: center;
  border-radius: 48px;
  border: 1px solid #000;
  padding: 1rem 1.63rem;
  position: relative;
}
.btn-second:after {
  content: "";
  position: absolute;
  width: 0.36rem;
  height: 0.36rem;
  background: url(../img/arrow-type2-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  right: 1.27rem;
  top: 50%;
  transform: translateY(-50%);
}

/*=========================================================
    Container
=========================================================*/
.container-l {
  max-width: 1760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 158px;
  padding-right: 158px;
}
@media (max-width: 1120px) {
  .container-l {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*=========================================================
    header
=========================================================*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 7.27rem 26px;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 750px) {
  .header {
    position: fixed;
    background: rgba(255, 255, 255, 0);
    padding-left: 40px;
    padding-right: 40px;
  }
}
.header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ececeb;
  bottom: 0;
  left: 0;
}
@media (max-width: 750px) {
  .header::after {
    display: none;
  }
}
.header:has(.modal-window.open) .logo img {
  opacity: 1 !important;
}
.header .modal-window {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  transition: all 0.3s ease-in;
  z-index: -1;
  pointer-events: none;
}
.header .modal-window.open {
  opacity: 1;
  z-index: 0;
}
.header .logo {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 20;
}
.header .logo img {
  height: 3.818rem;
  width: auto;
}
@media (max-width: 750px) {
  .header .logo img {
    height: 3.2rem;
  }
}
.header .btn {
  position: absolute;
  right: 7.27rem;
  top: 5rem;
  transform: translateY(-50%);
  z-index: 21;
}
.header .btn#headerBtn {
  display: flex;
  gap: 15px;
}
@media (max-width: 750px) {
  .header .btn {
    margin-top: 2.09rem;
    display: none;
    opacity: 0;
    pointer-events: none;
    position: relative;
    order: 2;
    z-index: 10;
    right: 0rem;
    top: 0rem;
  }
}
@media (max-width: 750px) {
  .header .btn.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}
.header .btn a {
  color: #000;
}
@media (max-width: 750px) {
  .header .btn a {
    color: #000;
  }
}
@media (max-width: 750px) {
  .header .btn a:before {
    border-bottom: 1px solid #000 !important;
  }
}
@media (max-width: 750px) {
  .header .btn a:after {
    background: url(../img/arrow-type1-b.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.header .modal-btn {
  display: none;
  flex-direction: column;
  padding: 13px;
  position: relative;
  width: 4rem;
  cursor: pointer;
  gap: 0.46rem;
}
@media (max-width: 750px) {
  .header .modal-btn {
    z-index: 110;
    position: fixed;
    right: 1.53rem;
    top: 3rem;
    display: flex;
  }
}
.header .modal-btn span {
  width: 100%;
  height: 1px;
  background: #000;
  border-radius: 1px;
  transition: all 0.3s ease-in;
}
@media (max-width: 750px) {
  .header .modal-btn span {
    border: 0.5px solid #fff;
    height: 2px;
  }
}
.header .modal-btn.open {
  padding: 15px;
}
.header .modal-btn.open span {
  background: #000;
}
.header .modal-btn.open span:nth-child(1) {
  transform: translateY(0.27rem) rotate(40deg);
}
.header .modal-btn.open span:nth-child(2) {
  transform: translateY(-0.27rem) rotate(-40deg);
}
.header .nav {
  margin-top: 2.09rem;
  width: 100%;
}
@media (max-width: 750px) {
  .header .nav {
    display: none;
    opacity: 0;
    pointer-events: none;
    order: 1;
    z-index: 10;
  }
}
@media (max-width: 750px) {
  .header .nav.open {
    display: grid;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
  }
}
.header .nav ul {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 2.27rem;
       column-gap: 2.27rem;
  width: 100%;
}
@media (max-width: 750px) {
  .header .nav ul {
    flex-wrap: wrap;
    -moz-column-gap: 1.53rem;
         column-gap: 1.53rem;
  }
}
.header .nav ul.ifFooter {
  display: none;
}
.header .nav ul li {
  position: relative;
}
@media (max-width: 750px) {
  .header .nav ul li {
    display: flex;
    align-items: center;
    padding: 0.86rem 0;
    width: calc((100% - 1.53rem) / 2);
  }
}
.header .nav ul li img {
  display: none;
  width: 2.27rem;
  height: 2.27rem;
  margin-right: 1.27rem;
}
@media (max-width: 750px) {
  .header .nav ul li img {
    display: block;
  }
}
.header .nav ul li p {
  position: relative;
  color: #000;
  font-size: 0.9rem;
}
@media (max-width: 750px) {
  .header .nav ul li p {
    color: #000;
  }
}
.header .nav ul li p::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100% + 0.63rem);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scale(0);
  transition: transform 0.3s;
}
.header .nav ul li:hover p::after {
  transform: scale(1);
}
.header .nav ul li a {
  position: absolute;
  width: calc(100% + 2.27rem);
  height: 2em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  .header .nav ul li a {
    transform: none;
  }
}
.header .nav ul li.side-line {
  padding: 0 1.36rem;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
@media (max-width: 750px) {
  .header .nav ul li.side-line {
    padding: 0;
    border-left: 0px solid #000;
    border-right: 0px solid #000;
  }
}
.header .nav ul li.dropdown-menu {
  position: relative;
}
@media (max-width: 750px) {
  .header .nav ul li.dropdown-menu {
    width: 100%;
    flex-flow: column nowrap;
    gap: 1rem;
  }
  .header .nav ul li.dropdown-menu > p {
    width: 100%;
    text-align: left;
    font-size: 110%;
  }
}
.header .nav ul li.dropdown-menu .sub-menu {
  display: flex;
  z-index: 11;
  position: fixed;
  top: var(--header-height);
  left: 0;
  -moz-column-gap: 2.09rem;
       column-gap: 2.09rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100vw;
  overflow: hidden;
  max-height: 0;
  background-color: #fff;
  transition: max-height 0.3s ease;
  padding: 0 20vw;
}
@media (max-width: 750px) {
  .header .nav ul li.dropdown-menu .sub-menu {
    z-index: 0;
    position: static;
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
    max-height: none !important;
    transition: none !important;
    background-color: transparent;
    width: 100%;
    padding: 0;
    border-top: 1px solid #f2f2f2;
  }
}
.header .nav ul li.dropdown-menu .sub-menu li {
  width: calc((100% - 4.18rem) / 3);
  display: flex;
  align-items: center;
  padding: 0.86rem 0;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}
@media (max-width: 750px) {
  .header .nav ul li.dropdown-menu .sub-menu li {
    width: calc((100% - 1rem) / 2);
    padding-left: 5px;
  }
}
.header .nav ul li.dropdown-menu .sub-menu li p {
  color: #000;
}
.header .nav ul li.dropdown-menu .sub-menu li p::after {
  transform: scale(0);
}
.header .nav ul li.dropdown-menu .sub-menu li img {
  display: block;
  width: 2.27rem;
  height: 2.27rem;
  margin-right: 1.27rem;
}
@media (max-width: 750px) {
  .header .nav ul li.dropdown-menu .sub-menu li img {
    margin-right: 1rem;
  }
}
.header .nav ul li.dropdown-menu .sub-menu li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
}
.header .nav ul li.dropdown-menu .sub-menu li:hover p::after {
  transform: scale(0);
}
.header .nav ul li.dropdown-menu:hover::before {
  content: "";
  position: absolute;
  top: calc(28px + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 0.4rem 0.4rem 0.4rem;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.header .bnr {
  display: none;
}
@media (max-width: 750px) {
  .header .bnr {
    margin-top: 2.09rem;
    opacity: 0;
    pointer-events: none;
    position: relative;
    order: 3;
    z-index: 10;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 750px) {
  .header .bnr.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}
.header .copy {
  display: none;
}
@media (max-width: 750px) {
  .header .copy {
    margin-top: 2.09rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    position: relative;
    order: 4;
    z-index: 10;
  }
}
@media (max-width: 750px) {
  .header .copy.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}
.header.is-home {
  background: rgba(255, 255, 255, 0);
}
.header.is-home::after {
  content: none;
}
.header.is-home ul li p {
  position: relative;
  color: #fff;
  font-size: 0.9rem;
}
@media (max-width: 750px) {
  .header.is-home ul li p {
    color: #000;
  }
}
.header.is-home ul li p::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100% + 0.63rem);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scale(0);
  transition: transform 0.3s;
}
.header.is-home ul li:hover p::after {
  transform: scale(1);
}
.header.is-home ul li a {
  position: absolute;
  width: calc(100% + 2.27rem);
  height: 2em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header.is-home ul li.side-line {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.header.is-home .btn a {
  color: #fff;
}
@media (max-width: 750px) {
  .header.is-home .btn a {
    color: #000;
  }
}
.header.is-home .modal-btn span {
  background: #fff;
}
.header.is-home .modal-btn.open {
  padding: 15px;
}
.header.is-home .modal-btn.open span {
  background: #000;
}

/*=========================================================
    footer
=========================================================*/
.footer {
  padding: 2.72rem 158px 24px;
  position: relative;
  background: #fff;
}
@media (max-width: 750px) {
  .footer {
    padding: 80px 40px;
  }
}
.footer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 13.54rem;
  background-image: url(../img/footer-sdw.png);
  top: -3rem;
  left: 0;
  z-index: -1;
}
@media (max-width: 750px) {
  .footer:before {
    height: 11.46rem;
  }
}
.footer .totop {
  position: fixed;
  right: 158px;
  bottom: 2.18rem;
  display: none;
}
@media (max-width: 750px) {
  .footer .totop {
    right: 40px;
  }
}
.footer .totop.visible {
  display: block;
}
.footer .totop.at-footer {
  position: absolute;
  bottom: calc(100% + 2.18rem);
}
.footer .totop__inner {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 0.72rem;
  z-index: 500;
  position: relative;
}
.footer .totop__inner img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .totop__inner P {
  font-size: 0.72rem;
  border-bottom: 1px solid #000;
}
.footer .totop__inner a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer__content {
  display: flex;
  -moz-column-gap: 10%;
       column-gap: 10%;
  margin-bottom: 4.18rem;
}
@media (max-width: 750px) {
  .footer__content {
    flex-wrap: wrap;
    margin-bottom: 0rem;
  }
}
.footer__content__main {
  width: 65%;
}
@media (max-width: 750px) {
  .footer__content__main {
    width: 100%;
    padding: 0;
  }
}
.footer__content__main h3 {
  font-size: 1.363rem;
  margin-bottom: 2.72rem;
}
@media (max-width: 750px) {
  .footer__content__main h3 {
    font-size: 1.15rem;
    margin-bottom: 2.3rem;
  }
}
.footer__content__main__wrapper ul {
  display: flex;
  -moz-column-gap: 2.09rem;
       column-gap: 2.09rem;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .footer__content__main__wrapper ul {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.footer__content__main__wrapper ul.ifHeader {
  display: none;
}
.footer__content__main__wrapper ul li {
  width: calc((100% - 4.18rem) / 3);
  display: flex;
  align-items: center;
  padding: 0.86rem 0;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}
@media (max-width: 750px) {
  .footer__content__main__wrapper ul li {
    width: calc((100% - 1rem) / 2);
  }
}
.footer__content__main__wrapper ul li img {
  width: 2.27rem;
  height: 2.27rem;
  margin-right: 1.27rem;
}
@media (max-width: 750px) {
  .footer__content__main__wrapper ul li img {
    margin-right: 0.5rem;
  }
}
.footer__content__main__wrapper ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.footer__content__side {
  width: 25%;
}
@media (max-width: 750px) {
  .footer__content__side {
    width: 100%;
    padding: 0;
  }
}
.footer__content__release {
  display: none;
  padding: 0 40px 80px;
  border: 0.5px solid;
  margin-bottom: 80px;
}
@media (max-width: 750px) {
  .footer__content__release {
    display: block;
  }
}
.footer__content__release__head {
  border-bottom: 1px solid #ececeb;
}
.footer__content__release__head h3 {
  text-align: center;
  font-size: 1.09rem;
  line-height: 1.475em;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media (max-width: 750px) {
  .footer__content__release__head h3 {
    display: block;
    line-height: 1.8em;
    padding-top: 3em;
    padding-bottom: 1.77em;
  }
}
.footer__content__release__body .read {
  margin-top: 1.636rem;
  margin-bottom: 2.72rem;
  display: flex;
  -moz-column-gap: 0.727rem;
       column-gap: 0.727rem;
}
.footer__content__release__body .read .img {
  width: 3rem;
  height: 3rem;
}
.footer__content__release__body .read .txt {
  width: 100%;
  flex: 1;
}
@media (max-width: 750px) {
  .footer__content__release__body .read .txt p {
    line-height: 1.4em;
    letter-spacing: 0.04em;
  }
}
.footer__content__release__body .book {
  margin-bottom: 3.07rem;
}
.footer__content__release__body .document {
  width: 100%;
  height: 5.9rem;
  background: url(../img/home-document-bg.png);
  background-size: cover;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  /*
                      &:after{
                          content:"";
                          width: 1.27rem;
                          height: 1.27rem;
                          position: absolute;
                          top:50%;
                          transform: translateY(-50%);
                          right:0.81rem;
                          background: url(../img/arrow-type1-w.png);
                          background-repeat: no-repeat;
                          background-size: contain;
                      }
  */
}
.footer__content__release__body .document p {
  color: #fff;
  font-size: 0.9rem;
}
.footer__content__release__body .document a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer__navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  .footer__navi {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 750px) {
  .footer__navi__menu {
    margin-bottom: 1.84rem;
  }
}
.footer__navi__menu ul {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 750px) {
  .footer__navi__menu ul {
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 0px;
         column-gap: 0px;
    row-gap: 0.36rem;
  }
}
.footer__navi__menu ul li {
  padding-right: 16px;
  line-height: 1em;
  border-right: 1px solid #747474;
}
@media (max-width: 750px) {
  .footer__navi__menu ul li {
    padding-left: 16px;
    border-left: 1px solid #747474;
    margin-right: -1px;
  }
}
.footer__navi__menu ul li.space {
  display: none;
}
@media (max-width: 750px) {
  .footer__navi__menu ul li.space {
    display: block;
    width: 100%;
  }
}
.footer__navi__menu ul li:last-child {
  border-right: 0px solid #747474;
}
@media (max-width: 750px) {
  .footer__navi__menu ul li:last-child {
    border-right: 1px solid #747474;
  }
}
.footer__navi__menu ul li a {
  font-size: 0.81rem;
}
.footer__navi__copy {
  position: relative;
}
.footer__navi__copy .ig {
  position: absolute;
  bottom: -0.2rem;
  left: -4rem;
  width: 3rem;
}
@media (max-width: 750px) {
  .footer__navi__copy .ig {
    bottom: 8rem;
    left: calc(50% - 3rem);
    transform: translateX(-50%);
    width: 2rem;
  }
  .footer__navi__copy .ig::after {
    bottom: 50%;
    left: calc(100% + 0.4rem);
    transform: translateY(50%);
  }
}
.footer__navi__copy p {
  font-size: 0.7272rem;
}
@media (max-width: 750px) {
  .footer__navi__copy p {
    text-align: center;
    width: 100%;
  }
}

/*=========================================================
    画像表示アニメーション
=========================================================*/
.mask-bg {
  overflow: hidden;
  transition: opacity 0.3s ease-in;
  position: relative;
}

.mask-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 2;
  transform: translateX(0%);
}

.mask-bg::after {
  background: #747474;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  transform: translateX(0%);
}

/* アニメーション開始時 */
.mask-bg.is-animated::before {
  animation: white-mask-slide 0.5s cubic-bezier(0.8, 0, 0.17, 1) forwards;
  animation-delay: 0.5s;
}

.mask-bg.is-animated::after {
  animation: gray-mask-slide 0.5s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}

/* 白いマスクのスライドアニメーション */
@keyframes white-mask-slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-101%);
  }
}
/* グレーのマスクアニメーション */
@keyframes gray-mask-slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-101%);
  }
}
/*=========================================================
    archive共通
=========================================================*/
.archive__header {
  position: relative;
  text-align: center;
  margin-top: var(--header-height);
  padding-top: 7.86rem;
  padding-bottom: 3.54rem;
}
@media (max-width: 750px) {
  .archive__header {
    padding-top: 6.64rem;
    padding-bottom: 2.99rem;
  }
}
.archive__header h1 {
  font-size: 1.81rem;
  line-height: 1.3em;
  margin-bottom: 1.2rem;
}
@media (max-width: 750px) {
  .archive__header h1 {
    font-size: 1.53rem;
    margin-bottom: 1.01rem;
  }
}
.archive__header p {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}
@media (max-width: 750px) {
  .archive__header p {
    font-size: 0.76rem;
  }
}

/*=========================================================
    投稿ページ共通
=========================================================*/
:where(.is-layout-flex):has(.image-margin) {
  gap: 0;
}

.single {
  margin-top: calc(var(--header-height) + 5rem);
  padding-bottom: 10px;
}
@media (max-width: 750px) {
  .single {
    padding-bottom: 80px;
  }
}
.single__wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.single__wrapper__ttl {
  padding-left: 158px;
  padding-right: 158px;
}
@media (max-width: 1120px) {
  .single__wrapper__ttl {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.single__wrapper__ttl h1 {
  font-size: 1.36rem;
  line-height: 1.5em;
  border-bottom: 1px solid #747474;
  padding-bottom: 24px;
  margin-bottom: 25px;
}
.single__wrapper__content {
  padding-left: 158px;
  padding-right: 158px;
}
@media (max-width: 1120px) {
  .single__wrapper__content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.single__wrapper__content h2 {
  font-size: 24px;
  line-height: 1.8em;
  margin-top: 64px;
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  .single__wrapper__content h2 {
    font-size: 20px;
  }
}
.single__wrapper__content p {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.5em;
  letter-spacing: 0.12em;
}
.single__wrapper__content p + p {
  margin-bottom: 25px;
}
.single__wrapper__content p.JP, .single__wrapper__content p.EN {
  line-height: 1.8em;
}
.single__wrapper__content p.has-small-font-size {
  font-size: 10px !important;
}
@media (max-width: 750px) {
  .single__wrapper__content p.has-small-font-size {
    font-size: 12px !important;
  }
}
.single__wrapper__content p.has-medium-font-size {
  font-size: 15px !important;
}
@media (max-width: 750px) {
  .single__wrapper__content p.has-medium-font-size {
    font-size: 16px !important;
  }
}
.single__wrapper__content p.has-large-font-size {
  font-size: 36px !important;
}
@media (max-width: 750px) {
  .single__wrapper__content p.has-large-font-size {
    font-size: 30px !important;
  }
}
@media (max-width: 750px) {
  .single__wrapper__content p {
    font-size: 16px;
  }
}
.single__wrapper__content li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.5em;
  letter-spacing: 0.12em;
}
.single__wrapper__content .wp-block-group.box {
  padding: 3rem;
}
.single__wrapper__content .wp-block-group.box h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
.single__wrapper__content .wp-block-group.box h2:has(+ p) {
  margin-bottom: 1rem;
}
.single__wrapper__content .wp-block-group.box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.single__wrapper__content .wp-block-group.box h3:has(+ p) {
  margin-bottom: 1rem;
}
.single__wrapper__content .wp-block-group.box .wp-block-separator,
.single__wrapper__content .wp-block-group.box .line {
  border-top: 0.1rem solid #ccc;
  margin: 2rem 0;
}
.single__wrapper__content .wp-block-group.box p {
  margin-bottom: 0;
}
.single__wrapper__content .wp-block-group.box figure {
  margin: 0 0 2rem;
}
.single__wrapper__content .wp-block-group.box figure figure {
  padding: 0;
  margin: 0;
}
.single__wrapper__content .wp-block-group.box figure.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.single__wrapper__content .wp-block-group.box .wp-block-columns {
  margin: 0 0 2rem;
}
.single__wrapper__content .wp-block-group.box .wp-block-columns * {
  padding: 0;
}
.single__wrapper__content .wp-block-group.box .wp-block-columns .wp-block-image,
.single__wrapper__content .wp-block-group.box .wp-block-columns .wp-block-column {
  margin-bottom: 0;
}
.single__wrapper__content .wp-block-group.box .wp-block-image,
.single__wrapper__content .wp-block-group.box .wp-block-column {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 2rem;
}
.single__wrapper__content .wp-block-group.box .wp-block-image *,
.single__wrapper__content .wp-block-group.box .wp-block-column * {
  margin-bottom: 0;
}
.single__wrapper__content .wp-block-group.box .wp-block-spacer {
  display: none;
}
.single__wrapper__content .no-click {
  pointer-events: none;
  cursor: default;
}
.single__wrapper__content .wp-block-image, .single__wrapper__content .wp-block-column {
  margin-bottom: 50px;
}
.single__wrapper__content .wp-block-image.caption, .single__wrapper__content .wp-block-column.caption {
  margin-bottom: 5px;
}

/*=========================================================
    パンくず
=========================================================*/
.breadcrumbs {
  position: absolute;
  left: 7.27rem;
  top: 1.81rem;
  width: calc(100% - 316px);
}
@media (max-width: 750px) {
  .breadcrumbs {
    left: 40px;
    width: calc(100% - 80px);
  }
}
.breadcrumbs ul {
  display: flex;
  -moz-column-gap: 0.54rem;
       column-gap: 0.54rem;
  align-items: center;
}
.breadcrumbs ul li {
  color: #747474;
  font-size: 0.63rem;
  max-width: 60%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumbs ul li a {
  color: #747474;
  font-size: 0.63rem;
}
.breadcrumbs ul li:before {
  content: "/";
  -moz-column-gap: 0.54rem;
       column-gap: 0.54rem;
  margin-right: 0.54rem;
}
.breadcrumbs ul li.active {
  position: relative;
  padding: 4px 0;
}
.breadcrumbs ul li.active:after {
  content: "";
  width: calc(100% - 0.54rem - 0.3em);
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}

.single__wrapper .breadcrumbs {
  position: absolute;
  left: 158px;
  top: -3rem;
}
@media (max-width: 1120px) {
  .single__wrapper .breadcrumbs {
    left: 40px;
  }
}

.category.feature .breadcrumbs li {
  color: #fff;
}
.category.feature .breadcrumbs li a {
  color: #fff;
}
.category.feature .breadcrumbs li.active:after {
  content: "";
  background: #fff;
}

/*=========================================================
    コラム一覧共通
=========================================================*/
.column-list__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.54rem;
  position: relative;
}
.column-list__head__ttl h3 {
  font-size: 1.54rem;
  line-height: 1.529em;
  letter-spacing: 0.12em;
  margin-bottom: 1.27rem;
}
.column-list__head__ttl p {
  font-size: 1rem;
  letter-spacing: 0.12em;
}
@media (max-width: 750px) {
  .column-list__head__ttl p {
    line-height: 1.6em;
  }
}
.column-list__head__ttl p.limit-content {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.6em 0.5em;
  margin: 0 0 0.65rem;
}
@media (max-width: 750px) {
  .column-list__head__link {
    position: absolute;
    right: 0%;
    top: 0;
  }
}
.column-list__body {
  display: flex;
  flex-wrap: wrap;
}
.column-list__body.col3 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 2.18rem;
}
@media (max-width: 750px) {
  .column-list__body.col3 {
    -moz-column-gap: 1.53rem;
         column-gap: 1.53rem;
  }
}
.column-list__body.col3 .column-list__body__inner {
  width: calc((100% - 4rem) / 3);
}
@media (max-width: 750px) {
  .column-list__body.col3 .column-list__body__inner {
    width: calc((100% - 1.53rem) / 2);
  }
}
.column-list__body.col4 {
  -moz-column-gap: 2.72rem;
       column-gap: 2.72rem;
  row-gap: 3.63rem;
}
@media (max-width: 750px) {
  .column-list__body.col4 {
    -moz-column-gap: 1.92rem;
         column-gap: 1.92rem;
  }
}
.column-list__body.col4 .column-list__body__inner {
  width: calc((100% - 8.16rem) / 4);
}
@media (max-width: 750px) {
  .column-list__body.col4 .column-list__body__inner {
    width: calc((100% - 1.92rem) / 2);
  }
}
.column-list__body.col5 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 2.18rem;
}
@media (max-width: 750px) {
  .column-list__body.col5 {
    -moz-column-gap: 1.53rem;
         column-gap: 1.53rem;
  }
}
.column-list__body.col5 .column-list__body__inner {
  width: calc((100% - 8rem) / 5);
}
@media (max-width: 750px) {
  .column-list__body.col5 .column-list__body__inner {
    width: calc((100% - 1.53rem) / 2);
  }
}
.column-list__body__inner {
  position: relative;
}
.column-list__body__inner .img img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.column-list__body__inner .ttl {
  margin-top: 1.5rem;
  margin-bottom: 0.9rem;
}
.column-list__body__inner .ttl h4 {
  font-size: 1.09rem;
  line-height: 1.708em;
  letter-spacing: 0.12em;
  margin-top: -0.427em;
  margin-bottom: -0.427em;
  text-align: left;
}
@media (max-width: 750px) {
  .column-list__body__inner .ttl h4 {
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}
.column-list__body__inner .detail {
  margin-bottom: 0.9rem;
}
.column-list__body__inner .detail p {
  font-size: 1rem;
  line-height: 1.86em;
}
.column-list__body__inner .category ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.column-list__body__inner .category ul li p {
  display: inline-block;
  width: auto;
  background: #f2f2f2;
  padding: 8px 18px;
  color: #747474;
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
@media (max-width: 750px) {
  .column-list__body__inner .category ul li p {
    font-size: 1.15rem;
    font-size: 0.746rem;
  }
}
.column-list__body__inner .category ul li:last-child {
  margin-bottom: 0px;
}
.column-list__body__inner .date p {
  font-size: 0.818rem;
  color: #747474;
  text-align: left;
}
@media (max-width: 750px) {
  .column-list__body__inner .date p {
    font-size: 0.75rem;
  }
}

/*=========================================================
    サイド要素共通
=========================================================*/
.side__category h3 {
  font-size: 1.363rem;
  margin-bottom: 1.181rem;
  text-align: left;
}
@media (max-width: 750px) {
  .side__category h3 {
    margin-bottom: 1.38rem;
    font-size: 1.153rem;
  }
}
@media (max-width: 750px) {
  .side__category ul {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 1.53rem;
         column-gap: 1.53rem;
  }
}
.side__category ul li {
  display: flex;
  align-items: center;
  padding: 0.86rem 0;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}
@media (max-width: 750px) {
  .side__category ul li {
    width: calc((100% - 1.53rem) / 2);
  }
}
.side__category ul li img {
  width: 2.27rem;
  height: 2.27rem;
  margin-right: 1.27rem;
}
.side__category ul li p {
  font-size: 0.9rem;
}
.side__category ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.side__promotion {
  margin-top: 2.818rem;
  margin-bottom: 2.818rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.818rem;
}
@media (max-width: 750px) {
  .side__promotion {
    margin-top: 2.384rem;
    margin-bottom: 2.384rem;
    display: flex;
    flex-direction: column;
    row-gap: 2.384rem;
  }
}
.side__promotion__inner {
  text-align: left;
  position: relative;
}
.side__promotion__inner .img {
  margin-bottom: 20px;
}
.side__promotion__inner .img img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.side__promotion__inner .txt h3 {
  font-size: 1rem;
  margin-bottom: 1.36rem;
}
.side__promotion__inner .txt .info p {
  font-size: 0.81rem;
  color: #747474;
}
.side__promotion__inner a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*=========================================================
    特集一覧共通
=========================================================*/
.feature__list {
  display: flex;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer */
}
.feature__list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
@media (max-width: 750px) {
  .feature__list {
    flex-direction: column;
  }
}
.feature__list__inner {
  width: 86px;
  height: 42.6rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  pointer-events: none;
  transition: flex 0.5s ease;
  background: #000;
}
@media (max-width: 750px) {
  .feature__list__inner {
    height: 3.15rem;
    width: 100%;
  }
}
.feature__list__inner__bg {
  position: absolute;
  width: calc(100vw - 516px);
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 750px) {
  .feature__list__inner__bg {
    width: 100%;
  }
}
.feature__list__inner__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
@media (max-width: 750px) {
  .feature__list__inner__bg::after {
    content: none;
  }
}
.feature__list__inner__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-filter: blur(15px);
  filter: blur(15px);
  -o-object-position: 20% 30%;
     object-position: 20% 30%;
}
@media (max-width: 750px) {
  .feature__list__inner__bg img {
    -ms-filter: blur(0px);
    filter: blur(0px);
    -o-object-position: 0% 50%;
       object-position: 0% 50%;
  }
}
.feature__list__inner.is-locked {
  pointer-events: none;
}
.feature__list__inner__label {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  align-items: center;
  width: 86px;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: auto;
  transition: opacity 0.5s ease;
  opacity: 1;
}
@media (max-width: 750px) {
  .feature__list__inner__label {
    height: 3.15rem;
    width: 100%;
    flex-direction: row;
  }
}
.feature__list__inner__label__bg {
  position: absolute;
  width: 86px;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 750px) {
  .feature__list__inner__label__bg {
    width: 100%;
    height: 3.15rem;
  }
}
.feature__list__inner__label__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
.feature__list__inner__label__bg img {
  height: 100%;
  width: 100%;
  -o-object-position: 43% 30%;
     object-position: 43% 30%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(2) translateY(10%);
}
.feature__list__inner__label .ttl {
  padding-top: 4rem;
}
@media (max-width: 750px) {
  .feature__list__inner__label .ttl {
    padding-top: 0rem;
    padding-left: 4rem;
  }
}
.feature__list__inner__label .ttl h3 {
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}
@media (max-width: 750px) {
  .feature__list__inner__label .ttl h3 {
    writing-mode: horizontal-tb;
  }
}
.feature__list__inner__label .month {
  padding-bottom: 4rem;
}
@media (max-width: 750px) {
  .feature__list__inner__label .month {
    padding-bottom: 0rem;
    padding-right: 4rem;
  }
}
.feature__list__inner__label .month p {
  color: #fff;
  writing-mode: vertical-rl;
  font-fauture-settings: initial;
  text-orientation: upright;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}
@media (max-width: 750px) {
  .feature__list__inner__label .month p {
    writing-mode: horizontal-tb;
  }
}
.feature__list__inner__label .month p span {
  text-combine-upright: all;
}
.feature__list__inner__content {
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0%;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media (max-width: 750px) {
  .feature__list__inner__content {
    width: 100%;
    height: 0%;
  }
}
.feature__list__inner__content__wrapper {
  padding: 2.5rem 5.1rem;
  width: calc(100vw - 516px);
  height: 100%;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper {
    width: 100%;
    height: 28rem;
    padding: 0;
  }
}
.feature__list__inner__content__wrapper__txt {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10% 0 0;
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper__txt {
    padding: 0 40px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin-right: auto;
    height: 50%;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper__txt:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper__txt .ttl {
    padding-bottom: 0.78rem;
  }
}
.feature__list__inner__content__wrapper__txt .ttl h3 {
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  letter-spacing: 0.28em;
  margin-bottom: 2.54rem;
  line-height: 1.3;
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper__txt .ttl h3 {
    writing-mode: horizontal-tb;
    margin-right: auto;
    font-size: 1.69rem;
  }
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper__txt .detail {
    padding-bottom: 1.84rem;
  }
}
.feature__list__inner__content__wrapper__txt .detail p {
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 2.13em;
  word-break: keep-all;
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper__txt .detail p {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }
}
.feature__list__inner__content__wrapper__txt .slide-num {
  position: absolute;
  left: 0%;
  bottom: 0;
  display: flex;
  -moz-column-gap: 4.9rem;
       column-gap: 4.9rem;
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper__txt .slide-num {
    display: none;
  }
}
.feature__list__inner__content__wrapper__txt .slide-num:before {
  content: "";
  width: 4.27rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: calc((100% - 4.27rem) / 2);
  transform: translateeY(-50%);
  background: #747474;
}
.feature__list__inner__content__wrapper__txt .slide-num:after {
  content: "";
  width: 4.27rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: calc((100% - 4.27rem) / 2);
  background: #fff;
}
.feature__list__inner__content__wrapper__txt .slide-num p {
  color: #fff;
}
.feature__list__inner__content__wrapper__img {
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
@media (max-width: 750px) {
  .feature__list__inner__content__wrapper__img {
    opacity: 0;
  }
}
.feature__list__inner__content__wrapper__img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature__list__inner__content a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  pointer-events: auto;
}
.feature__list__inner__content__main .wp-block-group.box {
  padding: 3rem;
}
.feature__list__inner__content__main .wp-block-group.box h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
.feature__list__inner__content__main .wp-block-group.box h2:has(+ p) {
  margin-bottom: 1rem;
}
.feature__list__inner__content__main .wp-block-group.box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.feature__list__inner__content__main .wp-block-group.box h3:has(+ p) {
  margin-bottom: 1rem;
}
.feature__list__inner__content__main .wp-block-group.box .wp-block-separator,
.feature__list__inner__content__main .wp-block-group.box .line {
  border-top: 0.1rem solid #ccc;
  margin: 2rem 0;
}
.feature__list__inner__content__main .wp-block-group.box p {
  margin-bottom: 0;
}
.feature__list__inner__content__main .wp-block-group.box figure {
  margin: 0 0 2rem;
}
.feature__list__inner__content__main .wp-block-group.box figure figure {
  padding: 0;
  margin: 0;
}
.feature__list__inner__content__main .wp-block-group.box figure.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.feature__list__inner__content__main .wp-block-group.box .wp-block-columns {
  margin: 0 0 2rem;
}
.feature__list__inner__content__main .wp-block-group.box .wp-block-columns * {
  padding: 0;
}
.feature__list__inner__content__main .wp-block-group.box .wp-block-columns .wp-block-image,
.feature__list__inner__content__main .wp-block-group.box .wp-block-columns .wp-block-column {
  margin-bottom: 0;
}
.feature__list__inner__content__main .wp-block-group.box .wp-block-image,
.feature__list__inner__content__main .wp-block-group.box .wp-block-column {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 2rem;
}
.feature__list__inner__content__main .wp-block-group.box .wp-block-image *,
.feature__list__inner__content__main .wp-block-group.box .wp-block-column * {
  margin-bottom: 0;
}
.feature__list__inner__content__main .wp-block-group.box .wp-block-spacer {
  display: none;
}
.feature__list__inner:not(.is-show) .feature__list__inner__label {
  opacity: 1;
}
.feature__list__inner.is-show {
  width: 100%;
  flex: 1;
  cursor: default;
}
@media (max-width: 750px) {
  .feature__list__inner.is-show {
    height: 28rem;
    flex: none;
  }
}
.feature__list__inner.is-show .feature__list__inner__label {
  opacity: 0;
  pointer-events: none;
}
.feature__list__inner.is-show .feature__list__inner__content {
  opacity: 1;
  pointer-events: none;
  width: 100%;
}
@media (max-width: 750px) {
  .feature__list__inner.is-show .feature__list__inner__content {
    height: 28rem;
  }
}

/*=========================================================
    最新号
=========================================================*/
.new-arrive {
  padding: 0 0 4rem;
  border: 1px solid #f2f2f2;
  text-align: center;
  margin-bottom: 2.63rem;
  position: relative;
}
@media (max-width: 750px) {
  .new-arrive {
    display: flex;
    align-items: center;
    border: 1px solid #f2f2f2;
    padding: 1rem 0 0;
    margin: 2rem 0;
  }
}
@media (max-width: 750px) {
  .new-arrive__left, .new-arrive__right {
    width: 50%;
  }
}
.new-arrive h3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  font-size: 0.9rem;
}
.new-arrive .num {
  color: #747474;
  font-size: 0.818rem;
  margin-bottom: 0.9rem;
}
.new-arrive h4 {
  font-size: 1.09rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: keep-all;
  -webkit-line-break: after-white-space;
}
@media (min-width: 750px) {
  .new-arrive h4 {
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% + 0.5em));
    width: 100%;
  }
}
@media (max-width: 850px) {
  .new-arrive h4 {
    font-size: 0.95rem;
  }
}
.new-arrive a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*=========================================================
    ページネーション
=========================================================*/
.pagination {
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.pagination__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__inner .current-page {
  padding-left: 1.636rem;
}
.pagination__inner .separator {
  padding-left: 10px;
  padding-right: 10px;
}
.pagination__inner .total-pages {
  padding-right: 1.636rem;
}
.pagination__inner img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/*=========================================================
    sinfle ページネーション
=========================================================*/
.single-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding: 0rem 1rem 8rem;
}
.single-pagenavi .prev {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.single-pagenavi .prev:before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/prev.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.single-pagenavi .next {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.single-pagenavi .next:after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/next.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.single-pagenavi a.list img {
  width: 1.4rem;
  height: 1.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  padding-bottom: 0.4rem;
}

/*=========================================================
    プラグインスライドショーの調整
=========================================================*/
.wp-block-gutsliders-photo-carousel .swiper-container-outer img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*=========================================================
    英語記事格納機能
=========================================================*/
.english-collapse {
  transition: all 0.2s ease;
}
.english-collapse__button {
  background-color: #f6f6f6;
  width: 100%;
  font-family: "adobe-garamond-pro", serif;
  font-size: 18px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
}
.english-collapse__button::marker, .english-collapse__button::-webkit-details-marker {
  display: none;
}
.english-collapse__button::after {
  content: "";
  display: block;
  float: right;
  --b: 0.15em;
  --c: #0000 90deg,#000 0;
  width: 0.9em;
  aspect-ratio: 1;
  background: conic-gradient(from 90deg at var(--b) var(--b), var(--c)) calc(100% + var(--b) / 2) calc(100% + var(--b) / 2)/calc(50% + var(--b)) calc(50% + var(--b));
  transition: all 0.2s ease;
}
.english-collapse[open] .english-collapse__button::after {
  transform: rotate(45deg);
}
.english-collapse__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.home {
  /*=========================================================
  		共通
  =========================================================*/
  /*=========================================================
  		初期表示アニメーション
  =========================================================*/
  /*=========================================================
  		mv
  =========================================================*/
  /*=========================================================
  		INFORMATION
  =========================================================*/
  /*=========================================================
  		viewpost
  =========================================================*/
  /*=========================================================
  		feature
  =========================================================*/
}
.home section {
  padding-top: 152px;
  padding-bottom: 152px;
}
@media (max-width: 750px) {
  .home section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.home h2 {
  font-family: "adobe-garamond-pro", serif;
  font-size: 1.54rem;
  margin-bottom: 2.54rem;
}
.home #show-first {
  width: 100vw;
  height: 100vh;
  opacity: 1;
  transition: all 1s ease-in;
  z-index: 200;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
}
.home #show-first .show-first__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 201;
  overflow: hidden;
}
.home #show-first .show-first__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 1;
}
.home #show-first .show-first__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20% 30%;
     object-position: 20% 30%;
  animation: scaleUp 3s ease-in-out forwards;
}
@keyframes scaleUp {
  0% {
    transform: scale(1); /* 初期サイズ */
  }
  100% {
    transform: scale(1.1); /* 10%大きく */
  }
}
.home #show-first.d-none {
  opacity: 0;
  z-index: -1;
}
.home #show-first #show-firstImg {
  opacity: 1;
  transition: all 1s ease-in;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  z-index: 210;
}
@media (max-width: 750px) {
  .home #show-first #show-firstImg {
    max-width: 278px;
    width: 100%;
    height: auto;
  }
}
.home #show-first #show-firstImg.d-none {
  opacity: 0;
  z-index: -1;
}
.home .mv {
  width: 100%;
  height: 100vh;
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .home .mv {
    height: auto;
  }
}
@media (max-width: 750px) {
  .home .mv {
    height: auto;
  }
}
.home .mv__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home .mv__bg .swiper {
  width: 100%;
  height: 100%;
}
.home .mv__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 1;
}
.home .mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-filter: blur(15px);
  filter: blur(15px);
  -o-object-position: 20% 30%;
     object-position: 20% 30%;
}
.home .mv__content {
  position: relative;
  padding-top: 13rem;
  padding-bottom: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
@media (max-width: 750px) {
  .home .mv__content {
    height: auto;
    min-height: 100vh;
    flex-wrap: wrap;
    padding-top: calc(var(--header-height));
    padding-bottom: 0px;
  }
}
.home .mv__content .swiper {
  width: 100%;
  height: 100%;
}
.home .mv__content .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.home .mv__content .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .home .mv__content .swiper-slide {
    flex-wrap: wrap;
  }
}
.home .mv__content .swiper-slide a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home .mv__content .swiper-slide a:hover {
  filter: brightness(0);
  background: rgba(255, 255, 255, 0);
}
.home .mv__content__main {
  display: flex;
  max-width: 62.5%;
  height: 100%;
  position: relative;
}
@media (max-width: 750px) {
  .home .mv__content__main {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
  }
}
.home .mv__content__main__txt {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
  min-width: 500px;
}
@media (max-width: 1000px) {
  .home .mv__content__main__txt {
    min-width: 0px;
  }
}
@media (max-width: 750px) {
  .home .mv__content__main__txt {
    order: 2;
    width: 100%;
    height: 100%;
    padding: 0 5.38rem;
    margin-top: 1.3rem;
    min-width: 0px;
  }
}
@media (max-width: 750px) {
  .home .mv__content__main__txt .ttl {
    position: absolute;
    top: 0;
    right: 2.61rem;
  }
}
.home .mv__content__main__txt .ttl h2 {
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  letter-spacing: 0.28em;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .home .mv__content__main__txt .ttl h2 {
    font-size: 1.38rem;
  }
}
.home .mv__content__main__txt .detail p {
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 2.13em;
}
.home .mv__content__main__txt .slide-num {
  position: absolute;
  left: 10%;
  bottom: 0;
  display: flex;
  -moz-column-gap: 4.9rem;
       column-gap: 4.9rem;
}
@media (max-width: 750px) {
  .home .mv__content__main__txt .slide-num {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 2.3rem;
    margin-right: auto;
  }
}
.home .mv__content__main__txt .slide-num p {
  color: #fff;
}
.home .mv__content__main__txt .slide-num:before {
  content: "";
  width: 4.27rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: calc((100% - 4.27rem) / 2);
  transform: translateeY(-50%);
  background: #747474;
}
.home .mv__content__main__txt .slide-num:after {
  content: "";
  width: 4.27rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: calc((100% - 4.27rem) / 2);
  transform-origin: left center;
  transform: scaleX(0);
  background: #fff;
  animation: grow-line 20s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}
@keyframes grow-line {
  0% {
    transform: scaleX(0); /* スケール0 */
  }
  100% {
    transform: scaleX(1); /* フルスケール */
  }
}
.home .mv__content__main__img {
  width: 50%;
  height: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 750px) {
  .home .mv__content__main__img {
    order: 1;
    width: 100%;
    padding: 0 5.38rem;
  }
}
.home .mv__content__main__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .mv__content__promotion {
  position: relative;
  max-width: 37.5%;
  height: 100%;
  padding: 0% 4%;
}
@media (max-width: 750px) {
  .home .mv__content__promotion {
    position: relative;
    max-width: 100%;
    width: 100%;
    top: 0;
    padding: 0% 0%;
    margin-top: 2.3rem;
  }
}
.home .mv__content__promotion h2 {
  position: absolute;
  left: calc(100% + 0.9rem);
  top: -4%;
  margin-bottom: 0;
  transform: rotate(90deg);
  transform-origin: left bottom;
  font-family: "adobe-garamond-pro", serif;
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 750px) {
  .home .mv__content__promotion h2 {
    position: static;
    width: 100%;
    transform: rotate(0deg);
    font-size: 0.84rem;
  }
}
.home .mv__content__promotion__wrapper {
  background: rgba(0, 0, 0, 0.8);
  position: relative;
  padding: 9% 12.5%;
  display: flex;
  flex-direction: column;
  row-gap: 2.18rem;
  height: 100%;
}
@media (max-width: 750px) {
  .home .mv__content__promotion__wrapper {
    flex-flow: row wrap;
    padding: 1.846rem 1.53rem;
    row-gap: 1.18rem;
  }
}
.home .mv__content__promotion__wrapper__inner {
  height: calc((100% - 2.18rem) / 2);
  position: relative;
}
@media (max-width: 750px) {
  .home .mv__content__promotion__wrapper__inner {
    display: flex;
    flex-flow: column nowrap;
    -moz-column-gap: 1.076rem;
         column-gap: 1.076rem;
    width: 50%;
    padding: 0.6rem;
    height: 100%;
  }
}
.home .mv__content__promotion__wrapper__inner .img {
  height: calc(100% - 1.8rem);
  text-align: center;
}
@media (max-width: 750px) {
  .home .mv__content__promotion__wrapper__inner .img {
    width: 100%;
    margin-bottom: 0.4rem;
    height: auto;
  }
}
.home .mv__content__promotion__wrapper__inner .img img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 750px) {
  .home .mv__content__promotion__wrapper__inner .img img {
    height: auto !important;
  }
}
.home .mv__content__promotion__wrapper__inner .txt p {
  font-size: 0.9rem;
  line-height: 1.88em;
  color: #fff;
}
.home .mv__content__promotion__wrapper__inner a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home .information {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.home .information h2 {
  margin-bottom: 1rem;
}
.home .information__headline {
  width: 100%;
  padding: 0.5rem 1rem 1rem;
  margin-bottom: 1rem;
}
.home .information__headline .headline-list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 750px) {
  .home .information__headline .headline-list {
    gap: 1rem;
  }
}
.home .information__headline .headline-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  height: 40px;
}
@media (max-width: 750px) {
  .home .information__headline .headline-item {
    flex-flow: column nowrap;
    align-items: flex-start;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.home .information__headline .headline-item .date {
  width: 9.5rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 750px) {
  .home .information__headline .headline-item .date {
    width: 100%;
  }
}
.home .information__headline .headline-item .title {
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .information__headline .headline-item .title a {
  text-decoration: underline;
}
@media (max-width: 750px) {
  .home .information__headline .headline-item .title {
    width: 100%;
  }
}
.home .information__wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  height: 21rem;
}
@media (max-width: 750px) {
  .home .information__wrapper {
    flex-flow: column nowrap;
    gap: 1rem;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.home .information__promo {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  width: 70%;
  padding: 0;
}
@media (max-width: 750px) {
  .home .information__promo {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.home .information__promo .promo-item {
  width: 100%;
}
.home .information__promo .promo-item__img img {
  aspect-ratio: 1.5/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.home .information__promo .promo-item__txt .ttl h3 {
  overflow: hidden;
  width: 100%;
  height: 3.72em;
  display: -webkit-box;
  font-size: 0.8rem;
  line-height: 1.86em;
  letter-spacing: 0.12em;
  margin: 0.6em auto 1em;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home .information__promo .promo-item__txt .info p a, .home .information__promo .promo-item__txt .info p span {
  font-size: 0.81rem;
  color: #747474;
}
@media (max-width: 750px) {
  .home .information__promo .promo-item__txt .info p a, .home .information__promo .promo-item__txt .info p span {
    font-size: 0.841rem;
  }
}
.home .information .information-pagination {
  position: absolute;
  bottom: 5.5rem !important;
  left: 50% !important;
  transform: translateX(calc(-50% - 12rem));
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 750px) {
  .home .information .information-pagination {
    top: 50% !important;
    bottom: auto !important;
    transform: translate(-50%, calc(-50% + 3.5rem));
    gap: 10px;
  }
}
.home .information .information-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #ccc;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.home .information .information-pagination .swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 1;
}
@media (max-width: 750px) {
  .home .information .information-pagination .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.home .information__main-promo {
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
  width: 30%;
  height: 100%;
}
@media (max-width: 750px) {
  .home .information__main-promo {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.home .information__main-promo .ad-item {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.home .information__main-promo .ad-item__image {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
}
@media (max-width: 750px) {
  .home .information__main-promo .ad-item__image {
    width: 100%;
  }
}
.home .information__main-promo .ad-item__image img {
  width: 100%;
  height: 100%;
}
.home .information__main-promo .ad-item__ttl h3 {
  overflow: hidden;
  width: 100%;
  height: 3.72em;
  display: -webkit-box;
  font-size: 0.8rem;
  line-height: 1.86em;
  letter-spacing: 0.12em;
  margin: 0.6em auto 1em;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home .information__main-promo .ad-item__info p a, .home .information__main-promo .ad-item__info p span {
  font-size: 0.81rem;
  color: #747474;
}
@media (max-width: 750px) {
  .home .information__main-promo .ad-item__info p a, .home .information__main-promo .ad-item__info p span {
    font-size: 0.841rem;
  }
}
.home .viewpost {
  padding-bottom: 50.6666666667px;
}
@media (max-width: 750px) {
  .home .viewpost {
    padding-bottom: 26.6666666667px;
  }
}
.home .viewpost__wrapper {
  display: flex;
  -moz-column-gap: 10%;
       column-gap: 10%;
}
.home .viewpost__main {
  width: 65%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 7.5%;
       column-gap: 7.5%;
  row-gap: 3.125rem;
}
@media (max-width: 750px) {
  .home .viewpost__main {
    width: 100%;
  }
}
.home .viewpost__main__inner {
  width: 46.25%;
  display: flex;
  -moz-column-gap: 6.25%;
       column-gap: 6.25%;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .home .viewpost__main__inner {
    width: 100%;
  }
}
.home .viewpost__main__inner .img {
  width: 37.5%;
  height: 100%;
  aspect-ratio: 1/1;
}
@media (max-width: 750px) {
  .home .viewpost__main__inner .img {
    width: 30%;
  }
}
.home .viewpost__main__inner .img a {
  display: block;
  width: 100%;
  height: 100%;
}
.home .viewpost__main__inner .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .viewpost__main__inner .txt {
  width: 56.25%;
}
@media (max-width: 750px) {
  .home .viewpost__main__inner .txt {
    width: 63.75%;
  }
}
.home .viewpost__main__inner .txt h3 {
  overflow: hidden;
  width: 100%;
  height: 3.18em;
  display: -webkit-box;
  font-size: 1rem;
  line-height: 1.59em;
  letter-spacing: 0.08em;
  margin: 0.5em 0;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 750px) {
  .home .viewpost__main__inner .txt h3 {
    height: auto;
    line-height: 1.38rem;
    margin-top: 0;
  }
}
.home .viewpost__main__inner .txt .description p {
  font-size: 1rem;
  line-height: 1.86em;
  letter-spacing: 0.12em;
  margin: 0.5em 0;
}
.home .viewpost__main__inner .txt .info p {
  font-size: 0.81rem;
  color: #747474;
  letter-spacing: 0.08em;
}
.home .viewpost__main__inner:nth-child(1) {
  width: 100%;
}
@media (max-width: 750px) {
  .home .viewpost__main__inner:nth-child(1) {
    flex-wrap: wrap;
  }
}
.home .viewpost__main__inner:nth-child(1) .img {
  aspect-ratio: 4/3;
}
@media (max-width: 750px) {
  .home .viewpost__main__inner:nth-child(1) .img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 750px) {
  .home .viewpost__main__inner:nth-child(1) .img img {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .home .viewpost__main__inner:nth-child(1) .txt {
    width: 100%;
  }
}
.home .viewpost__main__inner:nth-child(1) .txt h3 {
  overflow: visible;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.363rem;
  line-height: 1.575em;
  letter-spacing: 0.12em;
  margin: 0.8em 0 0.5em;
}
.home .viewpost__main__inner:not(:nth-child(1)) .txt .info span {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  line-height: 1.4rem;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.home .viewpost__main__inner:not(:nth-child(1)) .txt .info span.separate {
  display: none;
}
.home .viewpost__side {
  width: 25%;
}
@media (max-width: 750px) {
  .home .viewpost__side {
    display: none;
  }
}
.home .viewpost__ad {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  width: 100%;
  margin: 0 0 3rem;
}
@media (max-width: 750px) {
  .home .viewpost__ad {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.home .viewpost__ad .ad-promo {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 750px) {
  .home .viewpost__ad .ad-promo {
    display: none;
  }
}
.home .viewpost__ad .ad-promo h3 {
  text-align: center;
  font-size: 1.09rem;
  line-height: 1.475em;
  padding-top: 1em;
  padding-bottom: 1em;
}
.home .viewpost__ad .ad-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.home .viewpost__ad .ad-item__image {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media (max-width: 750px) {
  .home .viewpost__ad .ad-item__image {
    width: 100%;
    height: 13rem;
  }
}
.home .viewpost__ad .ad-item__image::after {
  content: "New";
  position: absolute;
  top: 0.4rem;
  left: 0.5rem;
  display: block;
  font-family: "adobe-garamond-pro", serif;
  font-size: 1rem;
  color: #fff;
  opacity: 0.8;
}
.home .viewpost__ad .ad-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .feature {
  padding-top: 50.6666666667px;
}
@media (max-width: 750px) {
  .home .feature {
    padding-top: 26.6666666667px;
  }
}
.home .feature__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
@media (max-width: 750px) {
  .home .feature__head {
    position: relative;
  }
}
.home .feature__head__ttl {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 750px) {
  .home .feature__head__ttl {
    flex-wrap: wrap;
  }
}
.home .feature__head__ttl h2 {
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .home .feature__head__ttl h2 {
    width: 100%;
    margin-bottom: 1.27rem;
  }
}
.home .feature__head__ttl p {
  font-size: 1.2rem;
}
@media (max-width: 750px) {
  .home .feature__head__ttl p {
    font-size: 0.92rem;
    line-height: 1.45em;
  }
}
@media (max-width: 750px) {
  .home .feature__head__link {
    position: absolute;
    right: 40px;
    top: 0;
  }
}
.home .feature__body {
  display: flex;
  -moz-column-gap: 10%;
       column-gap: 10%;
}
@media (max-width: 750px) {
  .home .feature__body {
    flex-wrap: wrap;
  }
}
.home .feature__body__main {
  width: 65%;
}
@media (max-width: 750px) {
  .home .feature__body__main {
    width: 100%;
    order: 2;
  }
}
.home .feature__body__main .column-list {
  margin-top: 152px;
}
@media (max-width: 750px) {
  .home .feature__body__main .column-list {
    margin-top: 80px;
  }
}
.home .feature__body__side {
  width: 25%;
  margin-top: 152px;
}
@media (max-width: 750px) {
  .home .feature__body__side {
    width: 100%;
    order: 1;
    margin-top: 80px;
  }
}
@media (max-width: 750px) {
  .home .feature__body__side__recruit {
    display: none;
  }
}
.home .feature__body__side__recruit__head {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.home .feature__body__side__recruit__head h3 {
  text-align: center;
  font-size: 1.09rem;
  line-height: 1.475em;
  padding-top: 1em;
  padding-bottom: 1em;
}
.home .feature__body__side__recruit__body .read {
  margin-top: 1.636rem;
  margin-bottom: 2.72rem;
  display: flex;
  -moz-column-gap: 0.727rem;
       column-gap: 0.727rem;
}
.home .feature__body__side__recruit__body .read .img {
  width: 3rem;
  height: 3rem;
}
.home .feature__body__side__recruit__body .read .txt {
  width: 100%;
  flex: 1;
}
.home .feature__body__side__recruit__body .read .txt > p {
  letter-spacing: 0.02em;
  line-height: 1.5em;
}
.home .feature__body__side__recruit__body .book {
  margin-bottom: 3.63rem;
}
.home .feature__body__side__recruit__body .document {
  width: 100%;
  position: relative;
  /*
  							&:after{
  								content:"";
  								width: 1.27rem;
  								height: 1.27rem;
  								position: absolute;
  								top:50%;
  								transform: translateY(-50%);
  								right:0.81rem;
  								background: url(../img/arrow-type1-w.png);
  								background-repeat: no-repeat;
  								background-size: contain;
  							}
  */
}
.home .feature__body__side__recruit__body .document p {
  color: #fff;
  font-size: 0.9rem;
}
.home .feature__body__side__recruit__body .document a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 90%;
  background: url(../img/about-gr.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10% center;
  overflow-x: hidden;
  /* アニメーション表示定義 */
}
.about p {
  letter-spacing: 0.1em;
}
.about .btn {
  display: inline-block;
}
.about .ttl-animation {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: clip-path 2s ease, opacity 3s ease;
}
.about .ttl-animation.is-animated {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  opacity: 1;
}
.about .ttl-animation.is-animated {
  opacity: 1;
  transform: translateX(0);
}
.about .txt-animation1, .about .txt-animation2, .about .txt-animation3, .about .txt-animation4, .about .txt-animation5, .about .txt-animation6, .about .txt-animation7 {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 2s ease, transform 1s ease;
}
.about .txt-animation1.is-animated, .about .txt-animation2.is-animated, .about .txt-animation3.is-animated, .about .txt-animation4.is-animated, .about .txt-animation5.is-animated, .about .txt-animation6.is-animated, .about .txt-animation7.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.about .img-animation img {
  clip-path: circle(0 at 50% 50%);
  transition: clip-path 4s ease;
}
.about .img-animation.is-animated img {
  clip-path: circle(100% at 50% 50%);
}
.about .line-animation img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.5s ease;
}
.about .line-animation.is-animated img {
  clip-path: inset(0 0 0 0);
}
.about .ill-animation {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 2s ease, transform 1s ease;
}
.about .ill-animation img {
  clip-path: circle(100% at 50% 50%);
}
.about .ill-animation.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.about__header {
  margin-top: calc(var(--header-height));
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding: 0 0px !important;
}
.about__header img {
  width: 100%;
}
.about__header__block01 {
  width: 52.5%;
  position: absolute;
  z-index: 1;
  top: 9rem;
  left: 9.36rem;
}
@media (max-width: 750px) {
  .about__header__block01 {
    font-size: 1.53rem;
    width: 100%;
    padding: 6rem 2.69rem 0;
    top: 0;
    left: 0;
  }
}
.about__header__block01 .img {
  margin-bottom: 2.36rem;
}
@media (max-width: 750px) {
  .about__header__block01 .img {
    margin-bottom: 2rem;
  }
}
.about__header__block01 .img p {
  font-size: 1.09rem;
  font-family: "adobe-garamond-pro", serif;
  font-style: italic;
  line-height: 1em;
}
@media (max-width: 750px) {
  .about__header__block01 .img p {
    font-size: 1.15rem;
    text-align: center;
  }
}
.about__header__block01 .ttl {
  margin-bottom: 1.36rem;
}
@media (max-width: 750px) {
  .about__header__block01 .ttl {
    margin-bottom: 1.15rem;
  }
}
.about__header__block01 .ttl h2 {
  font-size: 1.545rem;
  line-height: 1.52em;
}
@media (max-width: 750px) {
  .about__header__block01 .ttl h2 {
    font-size: 1.56rem;
    line-height: 1.54em;
    text-align: center;
  }
}
.about__header__block01 .detail p {
  font-size: 0.909rem;
  line-height: 2.55em;
}
@media (max-width: 750px) {
  .about__header__block01 .detail p {
    font-size: 0.769rem;
  }
}
.about__header__block02 {
  position: absolute;
  bottom: -3rem;
  left: calc(1.81rem + 160px);
}
@media (max-width: 750px) {
  .about__header__block02 {
    bottom: auto;
    top: 100%;
    left: 2.69rem;
  }
}
.about__header__block02 .ttl {
  padding-bottom: 0.9rem;
}
@media (max-width: 750px) {
  .about__header__block02 .ttl {
    padding-bottom: 0.76rem;
  }
}
.about__header__block02 .ttl h2 {
  font-size: 1.454rem;
}
@media (max-width: 750px) {
  .about__header__block02 .ttl h2 {
    font-size: 1.23rem;
    line-height: 1.54em;
  }
}
.about__header__block02 .detail p {
  font-size: 0.909rem;
  line-height: 2.55em;
}
@media (max-width: 750px) {
  .about__header__block02 .detail p {
    font-size: 0.769rem;
    line-height: 1.85em;
  }
}
.about__content {
  padding: 0 !important;
  position: relative;
  z-index: 1;
  max-width: 1980px;
  margin-left: auto;
  margin-right: auto;
}
.about__content h4 {
  font-size: 1.81rem;
  margin-bottom: 1.54rem;
}
@media (max-width: 750px) {
  .about__content h4 {
    font-size: 1.538rem;
    margin-bottom: 1.3rem;
  }
}
.about__content p {
  font-size: 0.909rem;
  line-height: 1.95em;
  margin-bottom: 1.63rem;
}
@media (max-width: 750px) {
  .about__content p {
    font-size: 0.769rem;
    margin-bottom: 1.32rem;
  }
}
.about__content p:last-child {
  margin-bottom: 0rem;
}
.about__content__block01 {
  display: flex;
  align-items: flex-end;
  padding: 0 7.27rem;
  -moz-column-gap: 5%;
       column-gap: 5%;
  margin-top: 9.54rem;
}
@media (max-width: 750px) {
  .about__content__block01 {
    margin-top: 16rem;
    flex-wrap: wrap;
    padding: 0 2.69rem 0 2.69rem;
  }
}
.about__content__block01__left {
  width: 58%;
}
@media (max-width: 750px) {
  .about__content__block01__left {
    width: 50%;
  }
}
.about__content__block01__left__img {
  position: relative;
}
.about__content__block01__right {
  width: 37%;
}
@media (max-width: 750px) {
  .about__content__block01__right {
    width: 70%;
    margin-left: auto;
    padding-top: 2rem;
  }
}
.about__content__block01__right__txt {
  position: relative;
}
.about__content__block02 {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 12%;
       column-gap: 12%;
  margin-top: 6.63rem;
}
@media (max-width: 750px) {
  .about__content__block02 {
    margin-top: 0rem;
    flex-wrap: wrap;
    position: relative;
  }
}
.about__content__block02__left {
  width: 55.4%;
}
@media (max-width: 750px) {
  .about__content__block02__left {
    position: absolute;
    width: 80%;
    top: 20%;
  }
}
.about__content__block02__left__img {
  position: relative;
}
.about__content__block02__right {
  width: 32.6%;
  display: flex;
  flex-direction: column;
  row-gap: 23.86rem;
}
@media (max-width: 750px) {
  .about__content__block02__right {
    row-gap: 26rem;
    width: 80%;
    margin-left: auto;
  }
}
.about__content__block02__right__img {
  padding-right: 2.63rem;
  position: relative;
  text-align: right;
}
@media (max-width: 750px) {
  .about__content__block02__right__img {
    padding-right: 2.23rem;
    text-align: right;
  }
}
.about__content__block02__right__img img {
  width: 90%;
}
@media (max-width: 750px) {
  .about__content__block02__right__img img {
    width: 40%;
  }
}
.about__content__block02__right__txt {
  position: relative;
  padding-right: 7.27rem;
  margin-bottom: 1.36rem;
}
@media (max-width: 750px) {
  .about__content__block02__right__txt {
    padding-right: 2.69rem;
    margin-bottom: 0;
  }
}
.about__content__block03 {
  display: flex;
  align-items: flex-end;
  margin-top: 9.68rem;
  position: relative;
}
@media (max-width: 750px) {
  .about__content__block03 {
    margin-top: 8.19rem;
    flex-wrap: wrap;
  }
}
.about__content__block03__bg {
  position: absolute;
  width: 55%;
  top: -16%;
  left: 0;
  z-index: 0;
}
@media (max-width: 750px) {
  .about__content__block03__bg {
    width: 100%;
  }
}
.about__content__block03__left {
  width: 47.8%;
  padding-bottom: 5.13rem;
  padding-left: 12.57rem;
  padding-right: 10.68rem;
}
@media (max-width: 750px) {
  .about__content__block03__left {
    padding-bottom: 4.34rem;
    order: 2;
    width: 80%;
    padding-left: 2.69rem;
    padding-right: 0;
  }
}
.about__content__block03__left__txt {
  width: 100%;
  margin: 0 auto;
}
.about__content__block03__right {
  width: 52.2%;
  padding-right: 8.68rem;
}
@media (max-width: 750px) {
  .about__content__block03__right {
    padding-right: 1rem;
    width: 70%;
    order: 1;
    margin-left: auto;
  }
}
.about__content__block03__right__img {
  position: relative;
}
.about__content__block04 {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 5.7%;
       column-gap: 5.7%;
  margin-top: 5.59rem;
  position: relative;
}
@media (max-width: 750px) {
  .about__content__block04 {
    margin-top: 4.73rem;
    flex-wrap: wrap;
  }
}
.about__content__block04__bg {
  position: absolute;
  width: 49.5%;
  top: -16%;
  right: 11.18rem;
  z-index: -1;
}
@media (max-width: 750px) {
  .about__content__block04__bg {
    right: 0rem;
    width: 100%;
  }
}
.about__content__block04__left {
  width: 65%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 750px) {
  .about__content__block04__left {
    width: 100%;
  }
}
.about__content__block04__left__img {
  width: 78%;
  margin-right: auto;
  padding-left: 2.63rem;
  position: relative;
}
@media (max-width: 750px) {
  .about__content__block04__left__img {
    padding-left: 2.23rem;
    width: 50%;
  }
}
.about__content__block04__left__txt {
  width: 42%;
  margin-left: auto;
}
@media (max-width: 750px) {
  .about__content__block04__left__txt {
    width: 80%;
    margin: 3rem auto 0;
  }
}
.about__content__block04__right {
  width: 29.3%;
}
@media (max-width: 750px) {
  .about__content__block04__right {
    position: absolute;
    right: 0;
    top: 32%;
  }
}
.about__content__block04__right__img {
  position: relative;
}
.about__content__block05 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  -moz-column-gap: 6.35%;
       column-gap: 6.35%;
  margin-top: 13.54rem;
  position: relative;
}
@media (max-width: 750px) {
  .about__content__block05 {
    margin-top: 9rem;
    flex-wrap: wrap;
  }
}
.about__content__block05__bg {
  position: absolute;
  width: 36%;
  top: -42%;
  left: 0;
  z-index: -1;
}
.about__content__block05__left {
  width: 45.8%;
  display: flex;
  flex-direction: column;
  row-gap: 6.9rem;
}
@media (max-width: 750px) {
  .about__content__block05__left {
    width: 100%;
    row-gap: 3.84rem;
    padding-left: 2.69rem;
    padding-right: 2.69rem;
    padding-bottom: 3.84rem;
  }
}
.about__content__block05__left__img {
  padding-right: 5.13rem;
  padding-left: 6.77rem;
  position: relative;
}
@media (max-width: 750px) {
  .about__content__block05__left__img {
    width: 60%;
    margin-right: auto;
    padding-right: 0rem;
    padding-left: 0rem;
  }
}
.about__content__block05__left__txt {
  width: 61%;
  margin-left: auto;
}
@media (max-width: 750px) {
  .about__content__block05__left__txt {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
}
.about__content__block05__left__txt img {
  padding-right: 3rem;
  margin-bottom: 1.181rem;
}
@media (max-width: 750px) {
  .about__content__block05__left__txt img {
    padding-right: 2.53rem;
    margin-bottom: 1.53rem;
    max-width: 70%;
    margin-bottom: 0.581rem;
  }
}
.about__content__block05__left__txt p {
  padding-left: 1.845rem;
  padding-bottom: 4rem;
}
@media (max-width: 750px) {
  .about__content__block05__left__txt p {
    padding-left: 1rem;
    padding-bottom: 3.38rem;
    padding-bottom: 0rem;
    margin-bottom: 1rem;
  }
}
.about__content__block05__right {
  width: 47.85%;
}
@media (max-width: 750px) {
  .about__content__block05__right {
    width: 70%;
    margin-left: auto;
  }
}
.about__content__block05__right__img {
  position: relative;
  padding-right: 4.818rem;
}
@media (max-width: 750px) {
  .about__content__block05__right__img {
    padding-right: 0rem;
  }
}
.about__content .illust {
  position: absolute;
  z-index: 0;
}
.about__content .illust.illust-img01 {
  bottom: 98%;
  right: 7.18rem;
  z-index: 2;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img01 {
    right: 6.07rem;
  }
}
.about__content .illust.illust-img01 img {
  width: 8.5rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img01 img {
    width: 7.19rem;
  }
}
.about__content .illust.illust-img02 {
  bottom: 100%;
  right: -7.18rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img02 {
    right: -3rem;
  }
}
.about__content .illust.illust-img02 img {
  width: 13.5rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img02 img {
    width: 8rem;
  }
}
.about__content .illust.illust-line01 {
  bottom: 40%;
  right: -70%;
  z-index: -1;
}
.about__content .illust.illust-line01 img {
  width: 37.09rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line01 img {
    width: 31.38rem;
  }
}
.about__content .illust.illust-line02 {
  bottom: 50%;
  right: 0;
  transform: translateX(-106%);
  z-index: -1;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line02 {
    transform: translateX(-50%);
  }
}
.about__content .illust.illust-line02 img {
  width: 29rem;
  height: auto;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line02 img {
    width: 24.53rem;
  }
}
.about__content .illust.illust-line03 {
  top: 95%;
  left: 0;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line03 {
    top: 69%;
    transform: translateX(-10%);
  }
}
.about__content .illust.illust-line03 img {
  width: 41.09rem;
  height: auto;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line03 img {
    width: 34.76rem;
  }
}
.about__content .illust.illust-img03 {
  top: -4.5rem;
  left: 10.75%;
}
.about__content .illust.illust-img03 img {
  width: 5.63rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img03 img {
    width: 4.76rem;
  }
}
.about__content .illust.illust-txt01 {
  top: -1.136rem;
  right: 38.24%;
}
@media (max-width: 750px) {
  .about__content .illust.illust-txt01 {
    top: -1.96rem;
    right: 32.04%;
  }
}
.about__content .illust.illust-txt01 img {
  width: 3.9rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-txt01 img {
    width: 4.76rem;
  }
}
.about__content .illust.illust-line04 {
  bottom: 90%;
  right: 0;
  transform: translateX(-45%);
  z-index: -1;
}
.about__content .illust.illust-line04 img {
  width: 29.77rem;
  height: auto;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line04 img {
    width: 25.19rem;
  }
}
.about__content .illust.illust-img04 {
  top: 2.86rem;
  left: -5.6%;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img04 {
    top: 2.86rem;
  }
}
.about__content .illust.illust-img04 img {
  width: 6.59rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img04 img {
    width: 2.46rem;
  }
}
.about__content .illust.illust-txt02 {
  top: -1.5rem;
  right: 9.3%;
}
@media (max-width: 750px) {
  .about__content .illust.illust-txt02 {
    top: -1.26rem;
  }
}
.about__content .illust.illust-txt02 img {
  width: 6.27rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-txt02 img {
    width: 5.26rem;
  }
}
.about__content .illust.illust-line05 {
  bottom: 80.7%;
  right: 0;
  transform: translateX(100%);
  z-index: -1;
}
.about__content .illust.illust-line05 img {
  width: 17.68rem;
  height: auto;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line05 img {
    width: 14.96rem;
  }
}
.about__content .illust.illust-line06 {
  bottom: 57%;
  right: 0%;
  transform: translateX(-80%);
  z-index: -1;
}
.about__content .illust.illust-line06 img {
  width: 36.13rem;
  height: auto;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line06 img {
    width: 30.57rem;
  }
}
.about__content .illust.illust-txt03 {
  top: 10.18rem;
  left: 3.2%;
}
@media (max-width: 750px) {
  .about__content .illust.illust-txt03 {
    top: 0.61rem;
  }
}
.about__content .illust.illust-txt03 img {
  width: 5.227rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-txt03 img {
    width: 4.42rem;
  }
}
.about__content .illust.illust-img05 {
  top: -1.81rem;
  left: 14.8%;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img05 {
    top: -4.53rem;
    left: 32.8%;
  }
}
.about__content .illust.illust-img05 img {
  width: 8.18rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img05 img {
    width: 6.92rem;
  }
}
.about__content .illust.illust-img06 {
  bottom: 98%;
  right: 26%;
}
.about__content .illust.illust-img06 img {
  width: 8.68rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img06 img {
    width: 7.34rem;
  }
}
.about__content .illust.illust-line07 {
  bottom: 57%;
  right: 0%;
  transform: translateX(90%);
  z-index: -1;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line07 {
    bottom: 69%;
    transform: translateX(110%);
  }
}
.about__content .illust.illust-line07 img {
  width: 38.4rem;
  height: auto;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line07 img {
    width: 32.5rem;
  }
}
.about__content .illust.illust-line08 {
  bottom: 57%;
  left: 0%;
  transform: translateX(-80%);
  z-index: -1;
}
.about__content .illust.illust-line08 img {
  width: 22.77rem;
  height: auto;
}
@media (max-width: 750px) {
  .about__content .illust.illust-line08 img {
    width: 19.26rem;
  }
}
.about__content .illust.illust-img07 {
  top: -5.9rem;
  left: 31.8%;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img07 {
    top: -5rem;
  }
}
.about__content .illust.illust-img07 img {
  width: 6.09rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img07 img {
    width: 5.15rem;
  }
}
.about__content .illust.illust-img08 {
  bottom: 97%;
  left: 32.24%;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img08 {
    bottom: 0%;
    left: -17.76%;
  }
}
.about__content .illust.illust-img08 img {
  width: 5.68rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-img08 img {
    width: 4.8rem;
  }
}
.about__content .illust.illust-txt04 {
  top: 9%;
  right: 14%;
}
@media (max-width: 750px) {
  .about__content .illust.illust-txt04 {
    top: 0%;
    right: 7%;
  }
}
.about__content .illust.illust-txt04 img {
  width: 2.4rem;
}
@media (max-width: 750px) {
  .about__content .illust.illust-txt04 img {
    width: 2.03rem;
  }
}
.about__backnum {
  padding: 152px 7.27rem;
  width: 100%;
}
@media (max-width: 750px) {
  .about__backnum {
    padding: 80px 40px;
  }
}
.about__backnum__wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 5%;
       column-gap: 5%;
  border: 1px solid #dadad8;
  padding: 4.36rem;
}
@media (max-width: 750px) {
  .about__backnum__wrapper {
    flex-wrap: wrap;
    padding: 2.36rem;
    row-gap: 2.69rem;
  }
}
.about__backnum__wrapper__left {
  width: 51.4%;
}
@media (max-width: 750px) {
  .about__backnum__wrapper__left {
    width: 100%;
  }
}
.about__backnum__wrapper__left h3 {
  font-family: "adobe-garamond-pro", serif;
  font-size: 2.27rem;
  margin-bottom: 1.81rem;
}
@media (max-width: 750px) {
  .about__backnum__wrapper__left h3 {
    margin-bottom: 1.53rem;
  }
}
.about__backnum__wrapper__left .detail p {
  font-size: 0.9rem;
  line-height: 1.8em;
  margin-bottom: 3.18rem;
}
@media (max-width: 750px) {
  .about__backnum__wrapper__left .detail p {
    font-size: 0.76rem;
    margin-bottom: 2.69rem;
  }
}
.about__backnum__wrapper__left .btn {
  display: inline-block;
}
.about__backnum__wrapper__left .btn a {
  font-size: 0.9rem;
  padding: 0.6rem 3.03rem;
}
@media (max-width: 750px) {
  .about__backnum__wrapper__left .btn a {
    font-size: 0.76rem;
  }
}
.about__backnum__wrapper__right {
  width: 43.6%;
}

.archive.featurecat {
  position: relative;
  /*    
      &::after{
          content:"";
          position: absolute;
          width: 100%;
          height: 2px;
          background: var.$mediumgray;
          top:var(--header-height);
          left:0;
      }
  */
}
.archive.featurecat .featurecat__wrapper {
  display: flex;
  -moz-column-gap: 8%;
       column-gap: 8%;
}
@media (max-width: 750px) {
  .archive.featurecat .featurecat__wrapper {
    flex-wrap: wrap;
  }
}
.archive.featurecat .featurecat__wrapper__main {
  width: 65%;
}
@media (max-width: 750px) {
  .archive.featurecat .featurecat__wrapper__main {
    width: 100%;
  }
}
.archive.featurecat .featurecat__wrapper__main .column-list {
  margin-top: 0;
}
.archive.featurecat .featurecat__wrapper__main .breadcrumbs {
  left: 0;
}
.archive.featurecat .featurecat__wrapper__side {
  width: 27%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  text-align: center;
  margin: calc(var(--header-height) + 7.86rem) 0 0;
  padding: 1rem;
}
@media (max-width: 750px) {
  .archive.featurecat .featurecat__wrapper__side {
    width: 100%;
    margin-top: 0;
    padding-top: 80px;
  }
}

/*=========================================================
    特集category一覧
=========================================================*/
.archive.feature .feature__content {
  padding: 152px 158px;
}
@media (max-width: 750px) {
  .archive.feature .feature__content {
    padding: 80px 40px;
  }
}
.archive.feature .feature__content .column-list__body__inner .ttl h4 {
  font-size: 1.36rem;
}
@media (max-width: 750px) {
  .archive.feature .feature__content .column-list__body__inner .ttl h4 {
    font-size: 1.15rem;
  }
}

/*=========================================================
    category内一覧
=========================================================*/
.category.feature .feature__header {
  margin-top: var(--header-height);
  overflow: hidden;
  position: relative;
  height: calc(100vh - var(--header-height));
}
@media (max-width: 750px) {
  .category.feature .feature__header {
    height: auto;
  }
}
.category.feature .feature__header__bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}
.category.feature .feature__header__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
.category.feature .feature__header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-filter: blur(10px);
  filter: blur(10px);
  -o-object-position: 20% 13%;
     object-position: 20% 13%;
}
.category.feature .feature__header__inner {
  padding: 2.236rem 158px;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  -moz-column-gap: 6%;
       column-gap: 6%;
}
@media (max-width: 750px) {
  .category.feature .feature__header__inner {
    padding: 0;
  }
}
.category.feature .feature__header__inner__txt {
  width: 23%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 750px) {
  .category.feature .feature__header__inner__txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 40px 24px;
    align-items: flex-start;
  }
}
.category.feature .feature__header__inner__txt h2 {
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  letter-spacing: 0.28em;
  margin-bottom: 2.54rem;
  line-height: 1.3;
}
@media (max-width: 750px) {
  .category.feature .feature__header__inner__txt h2 {
    writing-mode: horizontal-tb;
    margin-right: auto;
    font-size: 1.69rem;
    margin-bottom: 1rem;
  }
}
.category.feature .feature__header__inner__txt p {
  color: #fff;
  font-size: 1.09rem;
  text-align: left;
  line-height: 1.58em;
}
.category.feature .feature__header__inner__txt__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.category.feature .feature__header__inner__txt__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}
.category.feature .feature__header__inner__txt__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-filter: blur(15px);
  filter: blur(15px);
  -o-object-position: 20% 30%;
     object-position: 20% 30%;
}
.category.feature .feature__header__inner__img {
  width: 30%;
}
@media (max-width: 750px) {
  .category.feature .feature__header__inner__img {
    width: 100%;
    height: 100%;
  }
}
.category.feature .feature__header__inner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.category.feature .feature__read {
  max-width: calc(50rem + 316px);
  margin-left: auto;
  margin-right: auto;
  padding: 152px 158px;
}
@media (max-width: 750px) {
  .category.feature .feature__read {
    padding: 80px 40px;
  }
}
.category.feature .feature__read p {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  line-height: 1.5em;
}
@media (max-width: 750px) {
  .category.feature .feature__read p {
    font-size: 0.76rem;
  }
}
.category.feature .feature__content {
  display: flex;
  -moz-column-gap: 10%;
       column-gap: 10%;
  max-width: 1400px;
  padding-left: 158px;
  padding-right: 158px;
  margin: 0 auto 152px;
}
@media (max-width: 750px) {
  .category.feature .feature__content {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 80px;
  }
}
.category.feature .feature__content__side {
  width: 25%;
}
@media (max-width: 750px) {
  .category.feature .feature__content__side {
    display: none;
  }
}
.category.feature .feature__content__side__inner {
  position: sticky;
  top: 20%;
}
.category.feature .feature__content__side__inner .img {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.category.feature .feature__content__side__inner .info {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: flex-end;
}
.category.feature .feature__content__side__inner .info .month {
  font-size: 1rem;
  color: #747474;
  text-align: center;
}
@media (max-width: 750px) {
  .category.feature .feature__content__side__inner .info .month {
    font-size: 0.846rem;
  }
}
.category.feature .feature__content__side__inner .info .ttl {
  white-space: nowrap;
  margin-top: 0.818rem;
  font-size: 1.363rem;
  text-align: center;
}
@media (max-width: 750px) {
  .category.feature .feature__content__side__inner .info .ttl {
    margin-top: 0.38rem;
    font-size: 1.1153rem;
  }
}
.category.feature .feature__content__side__inner .toc {
  margin-top: 1.45rem;
}
@media (max-width: 750px) {
  .category.feature .feature__content__side__inner .toc {
    margin-top: 1.78rem;
  }
}
.category.feature .feature__content__side__inner .toc .ttl {
  font-size: 1.545rem;
}
@media (max-width: 750px) {
  .category.feature .feature__content__side__inner .toc .ttl {
    font-size: 1.307rem;
  }
}
.category.feature .feature__content__side__inner .toc ul {
  margin-top: 1.909rem;
  counter-reset: list-counter;
}
.category.feature .feature__content__side__inner .toc ul li {
  margin-bottom: 1.18rem;
  list-style: none;
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  align-items: flex-start;
  counter-increment: list-counter;
}
.category.feature .feature__content__side__inner .toc ul li:before {
  content: counter(list-counter, decimal-leading-zero) "_";
  left: 0;
  margin-top: 0.1em;
}
.category.feature .feature__content__side__inner .toc ul li a {
  line-height: 1.4em;
  color: #747474;
}
.category.feature .feature__content__side__inner .toc ul li a.active {
  color: #000;
}
.category.feature .feature__content__main {
  width: 100%;
}
@media (max-width: 750px) {
  .category.feature .feature__content__main {
    width: 100%;
  }
}
.category.feature .feature__content__main h2 {
  font-size: 1.181rem;
  line-height: 1.576em;
  margin-top: 64px;
  margin-bottom: 60px;
}
.category.feature .feature__content__main h2.ttl {
  border-bottom: 1px solid #747474;
  font-size: 1.8rem;
  padding-bottom: 24px;
  margin-bottom: 70px;
  margin-top: 0;
}
.category.feature .feature__content__main p {
  font-size: 0.9rem;
  margin-bottom: 50px;
  line-height: 1.5em;
  letter-spacing: 0.12em;
}
.category.feature .feature__content__main p + p {
  margin-bottom: 25px;
}
.category.feature .feature__content__main p.JP, .category.feature .feature__content__main p.EN {
  line-height: 1.8em;
}
.category.feature .feature__content__main p.has-small-font-size {
  font-size: 10px !important;
}
@media (max-width: 750px) {
  .category.feature .feature__content__main p.has-small-font-size {
    font-size: 12px !important;
  }
}
.category.feature .feature__content__main p.has-medium-font-size {
  font-size: 15px !important;
}
@media (max-width: 750px) {
  .category.feature .feature__content__main p.has-medium-font-size {
    font-size: 16px !important;
  }
}
.category.feature .feature__content__main p.has-large-font-size {
  font-size: 36px !important;
}
@media (max-width: 750px) {
  .category.feature .feature__content__main p.has-large-font-size {
    font-size: 30px !important;
  }
}
@media (max-width: 750px) {
  .category.feature .feature__content__main p {
    font-size: 16px;
  }
}
.category.feature .feature__content__main .wp-block-image, .category.feature .feature__content__main .wp-block-column {
  margin-bottom: 50px;
}
.category.feature .feature__content__main .wp-block-group.box {
  padding: 3rem;
}
.category.feature .feature__content__main .wp-block-group.box h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 2rem;
}
.category.feature .feature__content__main .wp-block-group.box h2:has(+ p) {
  margin-bottom: 1rem;
}
.category.feature .feature__content__main .wp-block-group.box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.category.feature .feature__content__main .wp-block-group.box h3:has(+ p) {
  margin-bottom: 1rem;
}
.category.feature .feature__content__main .wp-block-group.box .wp-block-separator,
.category.feature .feature__content__main .wp-block-group.box .line {
  border-top: 0.1rem solid #ccc;
  margin: 2rem 0;
}
.category.feature .feature__content__main .wp-block-group.box p {
  margin-bottom: 0;
}
.category.feature .feature__content__main .wp-block-group.box figure {
  margin: 0 0 2rem;
}
.category.feature .feature__content__main .wp-block-group.box figure figure {
  padding: 0;
  margin: 0;
}
.category.feature .feature__content__main .wp-block-group.box figure.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.category.feature .feature__content__main .wp-block-group.box .wp-block-columns {
  margin: 0 0 2rem;
}
.category.feature .feature__content__main .wp-block-group.box .wp-block-columns * {
  padding: 0;
}
.category.feature .feature__content__main .wp-block-group.box .wp-block-columns .wp-block-image,
.category.feature .feature__content__main .wp-block-group.box .wp-block-columns .wp-block-column {
  margin-bottom: 0;
}
.category.feature .feature__content__main .wp-block-group.box .wp-block-image,
.category.feature .feature__content__main .wp-block-group.box .wp-block-column {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 2rem;
}
.category.feature .feature__content__main .wp-block-group.box .wp-block-image *,
.category.feature .feature__content__main .wp-block-group.box .wp-block-column * {
  margin-bottom: 0;
}
.category.feature .feature__content__main .wp-block-group.box .wp-block-spacer {
  display: none;
}
.category.feature .feature__content__main .content-box {
  padding: 30px;
}
.category.feature .feature__content__main .content-box .wp-block-column {
  margin-bottom: 0;
}
.category.feature .feature__content__main .content-box .wp-block-separator {
  margin: 20px 0;
}
.category.feature .feature__content__main .content-box p {
  margin-bottom: 0;
}
.category.feature .feature__content__main .content-box p + p {
  margin-top: 20px;
}

/*=========================================================
    投稿ページ カテゴリーページ共通
=========================================================*/
.category.feature .feature__reference, .single.feature .feature__reference {
  display: flex;
  padding: 0 158px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .category.feature .feature__reference, .single.feature .feature__reference {
    padding: 0 40px;
    flex-wrap: wrap;
    row-gap: 24px;
    text-align: center;
  }
}
.category.feature .feature__reference .btn a, .single.feature .feature__reference .btn a {
  font-size: 0.9rem;
  padding: 0.4rem 3.63rem;
  display: inline-block;
}
@media (max-width: 750px) {
  .category.feature .feature__reference .btn a, .single.feature .feature__reference .btn a {
    font-size: 0.76rem;
    padding: 0.338rem 3.07rem;
  }
}
.category.feature .feature__reference__ttl, .single.feature .feature__reference__ttl {
  width: 27%;
  padding-right: 1rem;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__ttl, .single.feature .feature__reference__ttl {
    width: 100%;
    padding-right: 0rem;
  }
}
.category.feature .feature__reference__ttl h3, .single.feature .feature__reference__ttl h3 {
  font-size: 1.36rem;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__ttl h3, .single.feature .feature__reference__ttl h3 {
    font-size: 1.15rem;
  }
}
.category.feature .feature__reference__content, .single.feature .feature__reference__content {
  border-left: 1px solid #ececeb;
  display: flex;
  align-items: center;
  width: 73%;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__content, .single.feature .feature__reference__content {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 24px;
  }
}
.category.feature .feature__reference__content__img, .single.feature .feature__reference__content__img {
  width: 41.5%;
  padding-left: 5.18rem;
  padding-right: 3rem;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__content__img, .single.feature .feature__reference__content__img {
    padding-left: 0rem;
    padding-right: 0rem;
    width: 100%;
  }
}
.category.feature .feature__reference__content__txt, .single.feature .feature__reference__content__txt {
  flex: 1;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__content__txt, .single.feature .feature__reference__content__txt {
    flex: none;
    width: 100%;
  }
}
.category.feature .feature__reference__content__txt .ttl, .single.feature .feature__reference__content__txt .ttl {
  font-size: 1.09rem;
  line-height: 1em;
  margin-bottom: 0.818rem;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__content__txt .ttl, .single.feature .feature__reference__content__txt .ttl {
    font-size: 0.92rem;
    margin-bottom: 0.69rem;
  }
}
.category.feature .feature__reference__content__txt .month, .single.feature .feature__reference__content__txt .month {
  font-size: 1.09rem;
  line-height: 1em;
  margin-bottom: 2.636rem;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__content__txt .month, .single.feature .feature__reference__content__txt .month {
    font-size: 0.92rem;
    margin-bottom: 2.23rem;
  }
}
.category.feature .feature__reference__content__txt h4, .single.feature .feature__reference__content__txt h4 {
  font-size: 1.54rem;
  line-height: 1.3em;
  margin-bottom: 1.18rem;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__content__txt h4, .single.feature .feature__reference__content__txt h4 {
    font-size: 1.307rem;
    margin-bottom: 1rem;
  }
}
.category.feature .feature__reference__content__txt .detail, .single.feature .feature__reference__content__txt .detail {
  margin-bottom: 2.09rem;
  font-size: 1.09rem;
  line-height: 1.3em;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__content__txt .detail, .single.feature .feature__reference__content__txt .detail {
    margin-bottom: 1.76rem;
    font-size: 0.92rem;
    margin-bottom: 1.76rem;
  }
}
.category.feature .feature__reference__content__txt .btn a, .single.feature .feature__reference__content__txt .btn a {
  font-size: 0.9rem;
  padding: 0.4rem 3.63rem;
  display: inline-block;
}
@media (max-width: 750px) {
  .category.feature .feature__reference__content__txt .btn a, .single.feature .feature__reference__content__txt .btn a {
    font-size: 0.76rem;
    padding: 0.338rem 3.07rem;
  }
}
.category.feature .feature__recommend, .single.feature .feature__recommend {
  padding: 152px 158px;
}
@media (max-width: 750px) {
  .category.feature .feature__recommend, .single.feature .feature__recommend {
    padding: 80px 40px;
  }
}
.category.feature .feature__recommend h3, .single.feature .feature__recommend h3 {
  font-size: 1.36rem;
  margin-bottom: 2.72rem;
}
@media (max-width: 750px) {
  .category.feature .feature__recommend h3, .single.feature .feature__recommend h3 {
    font-size: 1.15rem;
    margin-bottom: 2.3rem;
  }
}

.archive.ippin .ippin__search, .single.ippin .ippin__search {
  display: flex;
  -moz-column-gap: 6.25%;
       column-gap: 6.25%;
  padding: 3.36rem 6.9rem;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search, .single.ippin .ippin__search {
    flex-wrap: wrap;
    padding: 3.36rem 40px;
    row-gap: 80px;
  }
}
.archive.ippin .ippin__search:before, .single.ippin .ippin__search:before {
  content: "";
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.archive.ippin .ippin__search h2, .single.ippin .ippin__search h2 {
  font-size: 1.36rem;
  padding-bottom: 1em;
  border-bottom: 1px solid #747474;
  margin-bottom: 2.95rem;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search h2, .single.ippin .ippin__search h2 {
    font-size: 1.11rem;
  }
}
.archive.ippin .ippin__search__place, .single.ippin .ippin__search__place {
  width: 62.5%;
  position: relative;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place, .single.ippin .ippin__search__place {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.archive.ippin .ippin__search__place .map, .single.ippin .ippin__search__place .map {
  padding-left: 4.54rem;
  padding-right: 8.09rem;
  position: relative;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .map, .single.ippin .ippin__search__place .map {
    padding-left: 0;
    padding-right: 0;
  }
}
.archive.ippin .ippin__search__place .map__inner, .single.ippin .ippin__search__place .map__inner {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.archive.ippin .ippin__search__place .area, .single.ippin .ippin__search__place .area {
  position: absolute;
}
.archive.ippin .ippin__search__place .area p, .single.ippin .ippin__search__place .area p {
  background-color: #747474;
  color: #fff;
  padding: 0.36rem 0.9rem;
  border-radius: 16px;
  font-size: 0.81rem;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area p, .single.ippin .ippin__search__place .area p {
    font-size: 0.68rem;
  }
}
.archive.ippin .ippin__search__place .area a, .single.ippin .ippin__search__place .area a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.archive.ippin .ippin__search__place .area:before, .single.ippin .ippin__search__place .area:before {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 100px;
  background: rgba(244, 130, 79, 0.3);
  transition: all 0.3s ease;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.archive.ippin .ippin__search__place .area:after, .single.ippin .ippin__search__place .area:after {
  content: "";
  position: absolute;
  width: 0.27rem;
  height: 0.27rem;
  border-radius: 100px;
  background: rgb(244, 130, 79);
  transition: all 0.3s ease;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.archive.ippin .ippin__search__place .area:hover p, .single.ippin .ippin__search__place .area:hover p {
  background-color: #000;
}
.archive.ippin .ippin__search__place .area:hover:before, .single.ippin .ippin__search__place .area:hover:before {
  width: 3.18rem;
  height: 3.18rem;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.archive.ippin .ippin__search__place .area:hover:after, .single.ippin .ippin__search__place .area:hover:after {
  width: 0.54rem;
  height: 0.54rem;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.archive.ippin .ippin__search__place .area.no-content p, .single.ippin .ippin__search__place .area.no-content p {
  background-color: #ececeb;
  color: #747474;
}
.archive.ippin .ippin__search__place .area.no-content:hover p, .single.ippin .ippin__search__place .area.no-content:hover p {
  background-color: #ececeb;
}
.archive.ippin .ippin__search__place .area.no-content:hover:before, .single.ippin .ippin__search__place .area.no-content:hover:before {
  width: 0.9rem;
  height: 0.9rem;
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.archive.ippin .ippin__search__place .area.no-content:hover:after, .single.ippin .ippin__search__place .area.no-content:hover:after {
  transform-origin: center;
  transform: translate(-50%, -50%);
}
.archive.ippin .ippin__search__place .area.area01, .single.ippin .ippin__search__place .area.area01 {
  display: none;
  top: 22%;
  right: -5%;
}
@media (max-width: 1000px) {
  .archive.ippin .ippin__search__place .area.area01, .single.ippin .ippin__search__place .area.area01 {
    right: -10%;
  }
}
@media (max-width: 860px) {
  .archive.ippin .ippin__search__place .area.area01, .single.ippin .ippin__search__place .area.area01 {
    right: -15%;
  }
}
@media (max-width: 780px) {
  .archive.ippin .ippin__search__place .area.area01, .single.ippin .ippin__search__place .area.area01 {
    right: -20%;
  }
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area01, .single.ippin .ippin__search__place .area.area01 {
    top: 28%;
    right: 0%;
  }
}
.archive.ippin .ippin__search__place .area.area01:before, .archive.ippin .ippin__search__place .area.area01:after, .single.ippin .ippin__search__place .area.area01:before, .single.ippin .ippin__search__place .area.area01:after {
  left: -71%;
  top: -129%;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area01:before, .archive.ippin .ippin__search__place .area.area01:after, .single.ippin .ippin__search__place .area.area01:before, .single.ippin .ippin__search__place .area.area01:after {
    left: -21%;
    top: -229%;
  }
}
.archive.ippin .ippin__search__place .area.area02, .single.ippin .ippin__search__place .area.area02 {
  top: 44%;
  left: 79%;
}
.archive.ippin .ippin__search__place .area.area02:before, .archive.ippin .ippin__search__place .area.area02:after, .single.ippin .ippin__search__place .area.area02:before, .single.ippin .ippin__search__place .area.area02:after {
  left: -88%;
  top: 50%;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area02:before, .archive.ippin .ippin__search__place .area.area02:after, .single.ippin .ippin__search__place .area.area02:before, .single.ippin .ippin__search__place .area.area02:after {
    left: -67%;
    top: 50%;
  }
}
.archive.ippin .ippin__search__place .area.area03, .single.ippin .ippin__search__place .area.area03 {
  top: 76%;
  left: 44%;
}
.archive.ippin .ippin__search__place .area.area03:before, .archive.ippin .ippin__search__place .area.area03:after, .single.ippin .ippin__search__place .area.area03:before, .single.ippin .ippin__search__place .area.area03:after {
  left: 54%;
  top: -113%;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area03:before, .archive.ippin .ippin__search__place .area.area03:after, .single.ippin .ippin__search__place .area.area03:before, .single.ippin .ippin__search__place .area.area03:after {
    left: 39%;
    top: -103%;
  }
}
.archive.ippin .ippin__search__place .area.area04, .single.ippin .ippin__search__place .area.area04 {
  bottom: 23%;
  left: 64%;
}
@media (max-width: 924px) {
  .archive.ippin .ippin__search__place .area.area04, .single.ippin .ippin__search__place .area.area04 {
    bottom: 18%;
  }
}
@media (max-width: 78px) {
  .archive.ippin .ippin__search__place .area.area04, .single.ippin .ippin__search__place .area.area04 {
    bottom: 13%;
  }
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area04, .single.ippin .ippin__search__place .area.area04 {
    bottom: 20%;
    left: 62%;
  }
}
.archive.ippin .ippin__search__place .area.area04:before, .archive.ippin .ippin__search__place .area.area04:after, .single.ippin .ippin__search__place .area.area04:before, .single.ippin .ippin__search__place .area.area04:after {
  left: 19%;
  top: -199%;
}
.archive.ippin .ippin__search__place .area.area05, .single.ippin .ippin__search__place .area.area05 {
  bottom: 35%;
  left: 32%;
}
.archive.ippin .ippin__search__place .area.area05:before, .archive.ippin .ippin__search__place .area.area05:after, .single.ippin .ippin__search__place .area.area05:before, .single.ippin .ippin__search__place .area.area05:after {
  left: 90%;
  top: 282%;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area05:before, .archive.ippin .ippin__search__place .area.area05:after, .single.ippin .ippin__search__place .area.area05:before, .single.ippin .ippin__search__place .area.area05:after {
    left: 64%;
    top: 244%;
  }
}
.archive.ippin .ippin__search__place .area.area06, .single.ippin .ippin__search__place .area.area06 {
  display: none;
  bottom: 30%;
  left: 9%;
}
@media (max-width: 940px) {
  .archive.ippin .ippin__search__place .area.area06, .single.ippin .ippin__search__place .area.area06 {
    bottom: 32%;
    left: 7%;
  }
}
@media (max-width: 776px) {
  .archive.ippin .ippin__search__place .area.area06, .single.ippin .ippin__search__place .area.area06 {
    bottom: 34%;
    left: 0%;
  }
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area06, .single.ippin .ippin__search__place .area.area06 {
    bottom: 31%;
    left: 6%;
  }
}
.archive.ippin .ippin__search__place .area.area06:before, .archive.ippin .ippin__search__place .area.area06:after, .single.ippin .ippin__search__place .area.area06:before, .single.ippin .ippin__search__place .area.area06:after {
  left: 110%;
  top: 170%;
}
.archive.ippin .ippin__search__place .area.area07, .single.ippin .ippin__search__place .area.area07 {
  display: none;
  bottom: 12%;
  left: 31%;
}
@media (max-width: 940px) {
  .archive.ippin .ippin__search__place .area.area07, .single.ippin .ippin__search__place .area.area07 {
    bottom: 8%;
  }
}
@media (max-width: 810px) {
  .archive.ippin .ippin__search__place .area.area07, .single.ippin .ippin__search__place .area.area07 {
    bottom: 4%;
  }
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area07, .single.ippin .ippin__search__place .area.area07 {
    bottom: 11%;
    left: 33%;
  }
}
.archive.ippin .ippin__search__place .area.area07:before, .archive.ippin .ippin__search__place .area.area07:after, .single.ippin .ippin__search__place .area.area07:before, .single.ippin .ippin__search__place .area.area07:after {
  left: 0%;
  top: -149%;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area07:before, .archive.ippin .ippin__search__place .area.area07:after, .single.ippin .ippin__search__place .area.area07:before, .single.ippin .ippin__search__place .area.area07:after {
    left: -10%;
    top: -139%;
  }
}
.archive.ippin .ippin__search__place .area.area08, .single.ippin .ippin__search__place .area.area08 {
  bottom: 6%;
  left: 19%;
}
.archive.ippin .ippin__search__place .area.area08:before, .archive.ippin .ippin__search__place .area.area08:after, .single.ippin .ippin__search__place .area.area08:before, .single.ippin .ippin__search__place .area.area08:after {
  left: -37%;
  top: -65%;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__place .area.area08:before, .archive.ippin .ippin__search__place .area.area08:after, .single.ippin .ippin__search__place .area.area08:before, .single.ippin .ippin__search__place .area.area08:after {
    left: -28%;
    top: -43%;
  }
}
.archive.ippin .ippin__search__tag, .single.ippin .ippin__search__tag {
  width: 31.25%;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__tag, .single.ippin .ippin__search__tag {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__tag ul, .single.ippin .ippin__search__tag ul {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 1.53rem;
         column-gap: 1.53rem;
  }
}
.archive.ippin .ippin__search__tag ul li, .single.ippin .ippin__search__tag ul li {
  display: flex;
  align-items: center;
  padding: 0.86rem 0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 0.9rem;
  position: relative;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__tag ul li, .single.ippin .ippin__search__tag ul li {
    width: calc((100% - 1.53rem) / 2);
  }
}
.archive.ippin .ippin__search__tag ul li img, .single.ippin .ippin__search__tag ul li img {
  width: 3.18rem;
  height: 3.18rem;
  margin-right: 1.27rem;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__search__tag ul li img, .single.ippin .ippin__search__tag ul li img {
    width: 2.27rem;
    height: 2.27rem;
    margin-right: 1.27rem;
  }
}
.archive.ippin .ippin__search__tag ul li p, .single.ippin .ippin__search__tag ul li p {
  flex: 1;
}
.archive.ippin .ippin__search__tag ul li a, .single.ippin .ippin__search__tag ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.archive.ippin .ippin__search__tag .bunner, .single.ippin .ippin__search__tag .bunner {
  padding-top: 0.86rem;
  position: relative;
}
.archive.ippin .ippin__search__tag .bunner a, .single.ippin .ippin__search__tag .bunner a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.archive.ippin .ippin__search__tag a.outside, .single.ippin .ippin__search__tag a.outside {
  position: relative;
  display: inline-block;
}
.archive.ippin .ippin__search__tag a.outside:after, .single.ippin .ippin__search__tag a.outside:after {
  content: "";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 102%;
  background: url(../img/ic-outside.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.archive.ippin .ippin__content, .single.ippin .ippin__content {
  padding: 152px 158px;
}
.archive.ippin .ippin__content:has(.ippin-header), .single.ippin .ippin__content:has(.ippin-header) {
  padding-top: 76px;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__content, .single.ippin .ippin__content {
    padding: 80px 40px;
  }
}
.archive.ippin .ippin__content .ippin-header, .single.ippin .ippin__content .ippin-header {
  border-bottom: 1px solid #747474;
  width: 100%;
  padding-bottom: 1rem;
  margin: 2rem 0;
}
.archive.ippin .ippin__content .ippin-header__title, .single.ippin .ippin__content .ippin-header__title {
  font-size: 1.36rem;
}
.archive.ippin .ippin__content .column-list__body__inner .category .online-order, .single.ippin .ippin__content .column-list__body__inner .category .online-order {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #747474;
  border-radius: 100vw;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9rem;
  color: #fff;
  padding: 0.4em 1.5em 0.6em;
}
@media (max-width: 750px) {
  .archive.ippin .ippin__content .column-list__body__inner .category .online-order, .single.ippin .ippin__content .column-list__body__inner .category .online-order {
    font-size: 0.6rem;
  }
}

.archive.essay .essay__head {
  display: flex;
  justify-content: center;
  padding: 0 158px;
}
@media (max-width: 750px) {
  .archive.essay .essay__head {
    padding: 0 40px;
  }
}
.archive.essay .essay__author {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2.727rem;
       column-gap: 2.727rem;
  padding: 5.54rem 158px;
}
@media (max-width: 750px) {
  .archive.essay .essay__author {
    flex-wrap: wrap;
    row-gap: 1rem;
    padding: 4.61rem 40px;
  }
}
.archive.essay .essay__author__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 750px) {
  .archive.essay .essay__author__inner {
    width: 100%;
    align-items: center;
  }
}
.archive.essay .essay__author__inner.head {
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}
.archive.essay .essay__author__inner.head p {
  font-size: 0.9rem;
  padding-right: 1.36rem;
  border-right: 1px solid #dadad8;
}
@media (max-width: 750px) {
  .archive.essay .essay__author__inner.head p {
    font-size: 0.76rem;
    padding-right: 0rem;
    border-right: 0px solid #dadad8;
  }
}
.archive.essay .essay__author__inner.person {
  row-gap: 0.72rem;
  position: relative;
}
@media (max-width: 750px) {
  .archive.essay .essay__author__inner.person {
    row-gap: 0.61rem;
  }
}
.archive.essay .essay__author__inner.person .name {
  color: #000;
  font-size: 1.36rem;
}
@media (max-width: 750px) {
  .archive.essay .essay__author__inner.person .name {
    font-size: 1.15rem;
  }
}
.archive.essay .essay__author__inner.person .name.only {
  margin-top: -1.2rem;
}
@media (max-width: 750px) {
  .archive.essay .essay__author__inner.person .name.only {
    margin-top: 0;
  }
}
.archive.essay .essay__author__inner.person .title {
  color: #747474;
  font-size: 0.81rem;
}
@media (max-width: 750px) {
  .archive.essay .essay__author__inner.person .title {
    font-size: 0.69rem;
  }
}
.archive.essay .essay__author__inner.person a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.archive.essay .essay__content {
  padding: 0 158px 152px;
}
@media (max-width: 750px) {
  .archive.essay .essay__content {
    padding: 0 40px 80px;
  }
}
.archive.essay .essay__content + .essay__head {
  margin-top: -76px;
}
@media (max-width: 750px) {
  .archive.essay .essay__content + .essay__head {
    margin-top: -40px;
  }
}

.archive.dumplings .dumplings__search {
  background: #f2f2f2;
  display: flex;
  align-items: center;
  -moz-column-gap: 2.6%;
       column-gap: 2.6%;
  padding: 3.36rem 0;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search {
    flex-wrap: wrap;
    row-gap: 2rem;
  }
}
.archive.dumplings .dumplings__search:before {
  content: "";
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.archive.dumplings .dumplings__search__place {
  width: 60%;
  height: 100%;
  position: relative;
  margin-left: 3.5rem;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: 0;
  }
}
.archive.dumplings .dumplings__search__place .area {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area {
    flex-direction: column;
    gap: 0.2rem;
  }
}
.archive.dumplings .dumplings__search__place .area p {
  background-color: #747474;
  color: #fff;
  padding: 0.36rem 0.9rem;
  border-radius: 16px;
  font-size: 0.81rem;
  transition: background-color 0.2s ease;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area p {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
}
.archive.dumplings .dumplings__search__place .area .icon {
  position: relative;
  width: 1.68rem;
  height: 0.81rem;
  filter: drop-shadow(0px 0px 3px #000);
  scale: 1;
  transition: scale 0.2s ease;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area .icon {
    width: 2rem;
    height: 1.15rem;
  }
}
.archive.dumplings .dumplings__search__place .area a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.archive.dumplings .dumplings__search__place .area.disabled {
  pointer-events: none;
}
.archive.dumplings .dumplings__search__place .area.disabled p {
  background-color: #ececeb;
  color: #747474;
}
.archive.dumplings .dumplings__search__place .area.disabled .icon {
  filter: grayscale(1);
}
.archive.dumplings .dumplings__search__place .area:hover p {
  background-color: #000;
}
.archive.dumplings .dumplings__search__place .area:hover .icon {
  scale: 1.3;
}
.archive.dumplings .dumplings__search__place .area.area01 {
  top: 30%;
  left: 20%;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area.area01 {
    top: 28%;
    left: 22%;
  }
}
.archive.dumplings .dumplings__search__place .area.area02 {
  top: 69%;
  left: 34%;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area.area02 {
    top: 66%;
    left: 33%;
  }
}
.archive.dumplings .dumplings__search__place .area.area03 {
  top: 55%;
  left: 50%;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area.area03 {
    top: 53%;
    left: 47%;
  }
}
.archive.dumplings .dumplings__search__place .area.area04 {
  top: 30%;
  left: 50%;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area.area04 {
    top: 29%;
    left: 47%;
  }
}
.archive.dumplings .dumplings__search__place .area.area05 {
  top: 33%;
  left: 80%;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area.area05 {
    top: 33%;
    left: 70%;
  }
}
.archive.dumplings .dumplings__search__place .area.area06 {
  top: 76%;
  left: 72%;
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area.area06 {
    top: 73%;
    left: 72%;
    flex-direction: column;
  }
}
.archive.dumplings .dumplings__search__place .area.area06::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(350%, -150%);
  background-color: #f2f2f2;
  background-image: url("../img/dumplings-map-hawaii.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #8ec0c0;
  width: 3rem;
  height: 3rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area.area06::after {
    display: none;
  }
}
.archive.dumplings .dumplings__search__place .area.area06::before {
  content: "ハワイ";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(734%, -483%);
  font-family: "Noto Serif JP", serif;
  color: #000000;
  font-size: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__place .area.area06::before {
    display: none;
  }
}
.archive.dumplings .dumplings__search__place .area.area06:hover::after, .archive.dumplings .dumplings__search__place .area.area06:hover::before {
  opacity: 1;
}
.archive.dumplings .dumplings__search__new {
  position: relative;
  margin-right: 7.27rem;
  overflow: hidden;
  width: 37.4%;
  padding: 2.727rem 4.31rem 3rem;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__new {
    padding: 2.307rem 3.65rem 2.53rem;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
.archive.dumplings .dumplings__search__new-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-filter: blur(20px);
  filter: blur(20px);
  z-index: 0;
  opacity: 0.3;
  overflow: hidden;
}
.archive.dumplings .dumplings__search__new-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive.dumplings .dumplings__search__new h2 {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  margin-bottom: 1.27rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__search__new h2 {
    font-size: 0.76rem;
    margin-bottom: 1.07rem;
  }
}
.archive.dumplings .dumplings__search__new h2:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #f4824f;
}
.archive.dumplings .dumplings__search__new .img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.archive.dumplings .dumplings__search__new .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive.dumplings .dumplings__author {
  padding: 152px 158px;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__author {
    padding: 80px 40px;
  }
}
.archive.dumplings .dumplings__author__inner {
  display: flex;
  justify-content: center;
  height: 100%;
  -moz-column-gap: 1.636rem;
       column-gap: 1.636rem;
  padding: 2.9rem 6.36rem;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__author__inner {
    padding: 2.45rem 0;
    flex-wrap: wrap;
    align-items: center;
  }
}
.archive.dumplings .dumplings__author__inner .img {
  align-self: center;
  width: 6.81rem;
  height: 100%;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__author__inner .img {
    width: 100%;
    text-align: center;
    margin-bottom: 1.23rem;
  }
}
.archive.dumplings .dumplings__author__inner .img img {
  width: 100%;
}
.archive.dumplings .dumplings__author__inner .txt {
  width: 100%;
  flex: 1;
}
.archive.dumplings .dumplings__author__inner .txt h3 {
  font-size: 1.36rem;
  letter-spacing: 0.4em;
  margin-bottom: 32px;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__author__inner .txt h3 {
    text-align: center;
  }
}
.archive.dumplings .dumplings__author__inner .txt h3 span {
  font-size: 0.81rem;
  margin-left: 14px;
  letter-spacing: 0.1em;
  color: #747474;
}
.archive.dumplings .dumplings__author__inner .txt p {
  font-size: 0.81rem;
  letter-spacing: 0.14em;
  line-height: 1.77em;
}
.archive.dumplings .dumplings__content {
  padding: 0 158px 152px;
}
@media (max-width: 750px) {
  .archive.dumplings .dumplings__content {
    padding: 0 40px 80px;
  }
}
.archive.dumplings .dumplings__content .column-title {
  font-size: 1.81rem;
  line-height: 1.3em;
  text-align: center;
  margin-bottom: 3rem;
}/*# sourceMappingURL=style.css.map */