@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;700&display=swap");
@import url("https://use.typekit.net/jid5chq.css");
@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  90% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes flip2 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes down {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  10% {
    transform: rotate(0deg) translateY(0px);
  }
  40% {
    transform: rotate(0deg) translateY(10px);
  }
  60% {
    transform: rotate(0deg) translateY(10px);
  }
  90% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
@keyframes line {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
section {
  width: 100%;
}
section > h3 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
  margin-bottom: 40px;
}
section > h3::before {
  content: "";
  width: 80px;
  height: 80px;
  background-color: #009d96;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px;
  border-radius: 40px;
  display: block;
}
section > h3 span {
  color: #009d96;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
section .btn {
  width: 25%;
  margin: 0 auto;
}
section .btn a {
  width: 100%;
  height: 56px;
  background-color: #000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
section .btn a:hover {
  background-color: #009d96;
}
section .btn a span {
  color: #FFF;
  font-family: neuzeit-grotesk-condensed, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
section#art {
  width: 100%;
  background-color: #FFF;
  padding: 120px 0;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
section#art > h3 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
  margin-bottom: 40px;
}
section#art > h3::before {
  content: "";
  width: 120px;
  height: 120px;
  background-color: #009d96;
  background-image: url(../../common/images/icon_art.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
  border-radius: 60px;
  display: block;
}
section#art > h3 span {
  color: #009d96;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
section#art .breadcrumb {
  width: calc(100% - 240px);
  max-width: 1280px;
  border-top: solid 1px #4E4E4E;
  border-bottom: solid 1px #4E4E4E;
}
section#art .breadcrumb:not(:last-child) {
  margin-bottom: 40px;
}
section#art .breadcrumb > div {
  padding: 16px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 8px;
}
section#art .breadcrumb > div a {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#art .breadcrumb > div span {
  color: #4E4E4E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#art .inner {
  width: calc(100% - 240px);
  max-width: 1280px;
}
section#art .inner.preparing {
  height: 320px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
section#art .inner.preparing h3 {
  color: #4E4E4E;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#art .inner .posts {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
section#art .inner .posts:not(:last-child) {
  margin-bottom: 40px;
}
section#art .inner .posts .plist {
  text-align: left;
  width: calc(20% - 40px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px 0;
  position: sticky;
  top: 126px;
}
section#art .inner .posts .plist h5 {
  color: #000;
  font-family: neuzeit-grotesk-extra-conden, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
section#art .inner .posts .plist .thumb a:hover dl dt {
  color: #009d96;
}
section#art .inner .posts .plist .thumb a dl dt {
  color: #4E4E4E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  transition: all 0.25s ease-in 0s;
}
section#art .inner .posts .plist .thumb a dl dd {
  display: none;
}
section#art .inner .posts .pwrap {
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
section#art .inner .posts .pwrap .lead {
  width: 100%;
  padding: 0 0 16px 0;
}
section#art .inner .posts .pwrap .lead p {
  color: #4E4E4E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  text-align: left;
}
section#art .inner .posts .pwrap .thumb {
  width: calc((100% - 64px) / 5);
  border-radius: 8px;
}
section#art .inner .posts .pwrap .thumb a {
  width: 100%;
  height: calc(((100vw - 240px) * 0.8 - 64px) / 5);
  max-height: 192px;
  background-color: #616161;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0px;
  position: relative;
  transition: all 0.25s ease-in 0s;
}
section#art .inner .posts .pwrap .thumb a:hover {
  background-color: #B6C0CA;
}
section#art .inner .posts .pwrap .thumb a dl {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
section#art .inner .posts .pwrap .thumb a dl dt {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#art .inner .posts .pwrap .thumb a dl dd {
  color: #FFF;
  font-family: neuzeit-grotesk-extra-conden, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

/* --------------------------------------- Media Queries Smartphone --------------------------------------- */
@media screen and (max-width: 768px) {
  section > h3 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
    margin-bottom: 40px;
  }
  section > h3::before {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    border-radius: 40px;
    display: block;
  }
  section > h3 span {
    color: #009d96;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
  }
  section .btn {
    width: 50%;
    margin: 0 auto;
  }
  section .btn a {
    width: 100%;
    height: 56px;
    background-color: #000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in 0s;
  }
  section .btn a:hover {
    background-color: #009d96;
  }
  section .btn a span {
    color: #FFF;
    font-family: neuzeit-grotesk-condensed, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
  section#art {
    padding: 56px 0;
  }
  section#art > h3 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
    margin-bottom: 40px;
  }
  section#art > h3::before {
    width: 80px;
    height: 80px;
    background-image: url(../../common/images/icon_art.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    border-radius: 40px;
  }
  section#art > h3 span {
    color: #009d96;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
  }
  section#art .breadcrumb {
    width: calc(100% - 32px);
  }
  section#art .breadcrumb:not(:last-child) {
    margin-bottom: 32px;
  }
  section#art .breadcrumb > div {
    padding: 16px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 8px;
  }
  section#art .breadcrumb > div a {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#art .breadcrumb > div span {
    color: #4E4E4E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#art .inner {
    width: calc(100% - 32px);
    max-width: 100%;
  }
  section#art .inner .posts {
    width: 100%;
  }
  section#art .inner .posts:not(:last-child) {
    margin-bottom: 40px;
  }
  section#art .inner .posts .plist {
    display: none;
  }
  section#art .inner .posts .pwrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
  }
  section#art .inner .posts .pwrap .lead {
    width: 100%;
    padding: 0 0 16px 0;
  }
  section#art .inner .posts .pwrap .lead p {
    color: #4E4E4E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
  section#art .inner .posts .pwrap .thumb {
    width: calc((100% - 16px) / 3);
    border-radius: 8px;
  }
  section#art .inner .posts .pwrap .thumb a {
    width: 100%;
    height: calc((100vw - 32px - 16px) / 3);
    max-height: calc((100vw - 32px - 16px) / 3);
  }
  section#art .inner .posts .pwrap .thumb a:hover {
    background-color: #616161;
  }
  section#art .inner .posts .pwrap .thumb a dl dt {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#art .inner .posts .pwrap .thumb a dl dd {
    color: #FFF;
    font-family: neuzeit-grotesk-extra-conden, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
}

/*# sourceMappingURL=style_art.css.map */
