@charset "UTF-8";
/******************************************************************
Theme Name: Nature steel.
******************************************************************/
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, label, input, textarea, small, figure, :before, :after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  word-break: break-all;
  line-height: 1.7em;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html, h1, h2, h3, h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-feature-settings: "palt";
}

@media screen and (max-width: 750px) {
  html {
    font-size: 3.73vw;
    line-height: 1.785em;
  }
}
article, header, footer, aside, figure, figcaption, nav, section, main, picture {
  display: block;
  box-sizing: border-box;
}

/* ページ内リンクのスクロール位置調整 */
html {
  scroll-padding-top: 150px;
}

body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #EFEFEC;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

p {
  font-size: 16px;
  line-height: 1.7em;
}

/* Common */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
section {
  padding: 80px 0;
}
@media screen and (max-width: 736px) {
  section {
    padding: 30px 0;
  }
}
section .box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
section .box h2.title {
  color: #000;
  text-align: center;
  font-family: Oswald;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 43.2px */
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  section .box h2.title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 100;
  background-color: #EFEFEC;
}
.header .box {
  height: 100%;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 30px;
}
@media screen and (max-width: 736px) {
  .header .box {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 736px) {
  .header .box .header-nav {
    width: 100%;
    order: 3;
  }
}
.header .box .header-nav ul {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 736px) {
  .header .box .header-nav ul {
    justify-content: center;
  }
}
.header .box .header-nav ul li {
  line-height: 1;
}
.header .box .header-nav ul li a {
  color: #000;
  text-align: center;
  font-family: Oswald;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 736px) {
  .header .box .header-nav ul li a {
    color: #000;
    text-align: center;
    font-family: Oswald;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
  }
}
.header .box .header-logo {
  text-align: center;
}
.header .box .header-logo h1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #000;
}
@media screen and (max-width: 736px) {
  .header .box .header-logo h1 a {
    width: 60px;
    height: 60px;
  }
}
.header .box .header-logo h1 a img {
  width: 90%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .box .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 736px) {
  .header .box .header-actions {
    gap: 15px;
  }
}
.header .box .header-actions .contact-link {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  transition: all 0.3s;
}
@media screen and (max-width: 736px) {
  .header .box .header-actions .contact-link {
    font-size: 12px;
  }
}
.header .box .header-actions .contact-link:hover {
  color: #666;
}
.header .box .header-actions .separator {
  width: 1px;
  height: 20px;
  background-color: #000;
}
.header .box .header-actions a.cart-link {
  display: flex;
  width: 90px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: #618BAD;
}
@media screen and (max-width: 736px) {
  .header .box .header-actions a.cart-link {
    width: 55px;
    height: 33px;
  }
}
.header .box .header-actions a.cart-link img {
  width: 18px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

main.top #mv {
  padding: 0;
  margin-top: 80px;
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: start;
  align-items: flex-end;
  overflow: hidden;
}
@media screen and (max-width: 736px) {
  main.top #mv {
    margin-top: 120px;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
main.top #mv .mv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
main.top #mv .mv-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main.top #mv .box {
  width: 100%;
  max-width: none;
  padding: 0;
  position: relative;
  z-index: 2;
}
main.top #mv .box .inner-box {
  width: 100%;
  padding: 0;
}
main.top #mv .box .inner-box h1 {
  max-width: 500px;
  margin: 0 0 50px 50px;
}
@media screen and (max-width: 736px) {
  main.top #mv .box .inner-box h1 {
    width: 50%;
    margin: 0 0 0 10px;
  }
}
main.top #mv .box .inner-box h1 img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
main.top #about .box .inner-box h3 {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  letter-spacing: 1.6px;
}
main.top #about .box .inner-box h3 span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1.1px;
}
main.top #about .box .inner-box p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 30px;
  letter-spacing: 1.6px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  main.top #about .box .inner-box p {
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 350;
    line-height: 20px; /* 181.818% */
    letter-spacing: 1.1px;
  }
}
main.top #about .box .inner-box .about-slide-box {
  margin-top: 60px;
}
main.top #about .box .inner-box .about-slide-box ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 736px) {
  main.top #about .box .inner-box .about-slide-box ul {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 20px;
  }
}
main.top #about .box .inner-box .about-slide-box ul li {
  width: 30%;
}
@media screen and (max-width: 736px) {
  main.top #about .box .inner-box .about-slide-box ul li {
    width: 60%;
    margin-left: 20px;
    flex-shrink: 0;
  }
}
main.top #about .box .inner-box .about-slide-box ul li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 736px) {
  main.top #product .box {
    width: 100%;
  }
}
main.top #product .box .inner-box ul {
  display: flex;
  justify-content: space-between;
}
main.top #product .box .inner-box ul li {
  width: 100%;
}
main.top #product .box .inner-box ul li a {
  display: block;
}
main.top #product .box .inner-box ul li a .img-box {
  overflow: hidden;
}
main.top #product .box .inner-box ul li a .img-box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 736px) {
  main.top #product .box .inner-box ul li a .img-box img {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom left;
       object-position: bottom left;
  }
}
main.top #product .box .inner-box ul li a h3 {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
main.top #product .box .inner-box ul li a h3 img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
main.top #product .box .inner-box ul li a:hover {
  opacity: 1;
}
main.top #product .box .inner-box ul li a:hover .img-box img {
  scale: 1.05;
}
main.top #feature .box .inner-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main.top #feature .box .inner-box ul li {
  width: 48%;
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  main.top #feature .box .inner-box ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
main.top #feature .box .inner-box ul li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
main.top #feature .box .inner-box ul li .text {
  margin-top: 30px;
}
main.top #feature .box .inner-box ul li .text h3 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 166.667% */
}
@media screen and (max-width: 736px) {
  main.top #feature .box .inner-box ul li .text h3 {
    font-size: 14px;
  }
}
main.top #feature .box .inner-box ul li .text p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 30px; /* 214.286% */
  letter-spacing: 1.4px;
  margin-top: 10px;
}
@media screen and (max-width: 736px) {
  main.top #feature .box .inner-box ul li .text p {
    font-size: 12px;
  }
}
@media screen and (max-width: 736px) {
  main.top #journal .box {
    width: 100%;
  }
}
main.top #journal .box h2.title {
  display: block;
  background-color: #618BAD;
  padding: 5px;
  width: 7em;
  margin: 0 auto 60px;
}
main.top #journal .box .inner-box ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 736px) {
  main.top #journal .box .inner-box ul {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 20px;
  }
}
main.top #journal .box .inner-box ul li {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 736px) {
  main.top #journal .box .inner-box ul li {
    width: 60%;
    margin-left: 20px;
    flex-shrink: 0;
  }
}
main.top #journal .box .inner-box ul li a {
  display: block;
}
main.top #journal .box .inner-box ul li a .img-box {
  overflow: hidden;
}
main.top #journal .box .inner-box ul li a .img-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
main.top #journal .box .inner-box ul li a .text {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
}
main.top #journal .box .inner-box ul li a .text h3 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 214.286% */
}
main.top #journal .box .inner-box ul li a .text .btn-box {
  margin-top: 5px;
}
main.top #journal .box .inner-box ul li a .text .btn-box img {
  width: 160px;
  height: auto;
  aspect-ratio: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
main.top #journal .box .inner-box ul li a:hover {
  opacity: 1;
}
main.top #journal .box .inner-box ul li a:hover .img-box img {
  scale: 1.05;
}
main.top #journal .box .inner-box .btn-box {
  margin-top: 60px;
  text-align: center;
}
main.top #journal .box .inner-box .btn-box a {
  display: inline-block;
  width: 320px;
}
@media screen and (max-width: 736px) {
  main.top #journal .box .inner-box .btn-box a {
    width: 240px;
  }
}
main.top #journal .box .inner-box .btn-box a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 736px) {
  main.top #story .box {
    width: 100%;
  }
}
main.top #story .box .inner-box ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 736px) {
  main.top #story .box .inner-box ul {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 20px;
  }
}
main.top #story .box .inner-box ul li {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 736px) {
  main.top #story .box .inner-box ul li {
    width: 60%;
    margin-left: 20px;
    flex-shrink: 0;
  }
}
main.top #story .box .inner-box ul li a {
  display: block;
}
main.top #story .box .inner-box ul li a .img-box {
  overflow: hidden;
}
main.top #story .box .inner-box ul li a .img-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
main.top #story .box .inner-box ul li a .text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main.top #story .box .inner-box ul li a .text h3 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 214.286% */
}
main.top #story .box .inner-box ul li a .text span.cat {
  color: #000;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 272.727% */
}
main.top #story .box .inner-box ul li a .text .btn-box {
  width: 100%;
  margin-top: 5px;
}
main.top #story .box .inner-box ul li a .text .btn-box img {
  width: 160px;
  height: auto;
  aspect-ratio: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
main.top #story .box .inner-box ul li a:hover {
  opacity: 1;
}
main.top #story .box .inner-box ul li a:hover .img-box img {
  scale: 1.05;
}

main.under #under-mv {
  margin-top: 120px;
  background-image: url(../img/under-mv/journal.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  padding-bottom: 30px;
}
@media screen and (max-width: 736px) {
  main.under #under-mv {
    margin-top: 120px;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
main.under #under-mv .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
main.under #under-mv .box .inner-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.under #under-mv .box .inner-box h1 {
  display: flex;
  align-items: flex-end;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 736px) {
  main.under #under-mv .box .inner-box h1 {
    margin-left: 15px;
    font-size: 18px;
  }
}
main.under #under-mv .box .inner-box h1 img {
  width: auto;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}
@media screen and (max-width: 736px) {
  main.under #under-mv .box .inner-box h1 img {
    height: 36px;
  }
}
main.under #under-mv .box .inner-box h2 {
  display: inline-block;
  background: #618BAD;
  color: #000;
  padding: 0 100px;
  text-align: center;
  font-family: Oswald;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 76.8px */
}
@media screen and (max-width: 736px) {
  main.under #under-mv .box .inner-box h2 {
    display: none;
  }
}

main#journal-archive #under-mv {
  background-image: url(../img/under-mv/journal.jpg);
}
main#journal-archive #journal-content .box {
  display: flex;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box {
    flex-direction: column;
  }
}
main#journal-archive #journal-content .box .journal-sidebar {
  min-width: 240px;
  border-right: 0.5px solid #000;
  margin-right: 60px;
  padding-right: 15px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar {
    min-width: auto;
    border-right: none;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0px;
  }
}
main#journal-archive #journal-content .box .journal-sidebar .filter-section {
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-section {
    width: 49%;
    margin-bottom: 0;
  }
}
main#journal-archive #journal-content .box .journal-sidebar .filter-section h3 {
  color: #000;
  font-family: Oswald;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  margin-bottom: 20px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-section h3 {
    text-align: center;
  }
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.82);
    z-index: 1000;
    padding: 10px 10px;
  }
  main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content.active {
    display: block;
  }
}
main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content ul.category-filter li a {
  display: block;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 30px; /* 214.286% */
  transition: all 0.3s;
  padding: 0 10px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content ul.category-filter li a {
    line-height: 1.2em;
    margin-bottom: 10px;
    text-indent: -0.6em;
  }
}
main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content ul.category-filter li a.current {
  color: #fff;
  background-color: #618BAD;
  border-radius: 100px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content ul.category-filter li a.current {
    color: #000;
    background-color: transparent;
    border-radius: 0;
  }
}
main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content .keyword-filter {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content .keyword-filter a {
  display: block;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 30px; /* 214.286% */
  transition: all 0.3s;
  padding: 0 10px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content .keyword-filter a {
    line-height: 1.2em;
    margin-bottom: 10px;
    text-indent: -0.6em;
  }
}
main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content .keyword-filter a.current {
  color: #fff;
  background-color: #618BAD;
  border-radius: 100px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-section .filter-content .keyword-filter a.current {
    color: #000;
    background-color: transparent;
    border-radius: 0;
  }
}
main#journal-archive #journal-content .box .journal-sidebar .filter-item {
  display: none;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-item {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-sidebar .filter-item .current-filter-display {
    width: 100%;
  }
}
main#journal-archive #journal-content .box .journal-main {
  width: 100%;
}
main#journal-archive #journal-content .box .journal-main ul.journal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-main ul.journal-grid {
    justify-content: space-between;
    gap: 0;
  }
}
main#journal-archive #journal-content .box .journal-main ul.journal-grid li {
  width: calc(50% - 30px);
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-main ul.journal-grid li {
    width: 48%;
  }
}
main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-image img {
    aspect-ratio: 3/4;
  }
}
main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content {
  position: relative;
}
main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content h3.article-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 214.286% */
  padding-right: 130px;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content h3.article-title {
    padding-right: 0;
  }
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content .article-keywords {
    margin-bottom: 30px;
  }
}
main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content .article-keywords span.tag {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 350;
  line-height: 30px; /* 250% */
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content .article-keywords span.tag {
    line-height: 1.5em;
  }
}
main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content .article-meta {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 736px) {
  main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content .article-meta {
    position: static;
  }
}
main#journal-archive #journal-content .box .journal-main ul.journal-grid li .article-content .article-meta span.category-label {
  color: #000;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 272.727% */
}

main#journal-single #journal-detail {
  margin-top: 120px;
}
main#journal-single #journal-detail .box {
  max-width: 800px;
}
main#journal-single #journal-detail .box .inner-box .article-header h1.article-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  letter-spacing: 1.6px;
}
@media screen and (max-width: 736px) {
  main#journal-single #journal-detail .box .inner-box .article-header h1.article-title {
    font-size: 16px;
    line-height: 20px;
  }
}
main#journal-single #journal-detail .box .inner-box .article-header .article-meta time.article-date {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 350;
  line-height: 30px; /* 250% */
}
main#journal-single #journal-detail .box .inner-box .article-header .article-meta span.category-label {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 272.727% */
}
main#journal-single #journal-detail .box .inner-box .article-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
main#journal-single #journal-detail .box .inner-box .article-keywords {
  margin-bottom: 30px;
}
main#journal-single #journal-detail .box .inner-box .article-keywords span.tag {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 350;
  line-height: 30px; /* 250% */
}
main#journal-single #journal-detail .box .inner-box .article-content p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
main#journal-single #journal-detail .box .inner-box .article-footer {
  margin-top: 60px;
}
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .prev-post a,
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .next-post a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .prev-post a span.nav-label,
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .next-post a span.nav-label {
  color: #000;
}
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .prev-post a span.nav-title,
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .next-post a span.nav-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 214.286% */
}
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .prev-post a:hover,
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .next-post a:hover {
  opacity: 0.7;
}
main#journal-single #journal-detail .box .inner-box .article-footer .article-navigation .next-post a {
  align-items: flex-end;
}

main#product-single #product-hero {
  margin-top: 120px;
  padding: 0;
  position: relative;
}
main#product-single #product-hero .hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
main#product-single #product-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main#product-single #product-hero .hero-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
main#product-single #product-hero .hero-text p.product-subtitle {
  color: #FFF;
  font-family: Oswald;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 115.2px */
}
main#product-single #product-hero .hero-text h1.product-title-large {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
}
main#product-single #product-gallery .box .inner-box .gallery-grid {
  display: flex;
  gap: 30px;
}
main#product-single #product-gallery .box .inner-box .gallery-item {
  width: 33.333%;
}
main#product-single #product-gallery .box .inner-box .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main#product-single #product-description .box .inner-box .description-content h2.catchphrase {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 93.75% */
  margin-bottom: 30px;
}
main#product-single #product-description .box .inner-box .description-content .description-text p {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 30px; /* 187.5% */
  letter-spacing: 1.6px;
}
main#product-single #product-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
main#product-single #product-content-wrapper #product-details {
  min-width: 360px;
}
@media screen and (max-width: 736px) {
  main#product-single #product-content-wrapper #product-details {
    min-width: none;
  }
}
main#product-single #product-content-wrapper #product-details .box .inner-box .product-info .product-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
}
main#product-single #product-content-wrapper #product-details .box .inner-box .product-info .product-price {
  margin-bottom: 60px;
}
main#product-single #product-content-wrapper #product-details .box .inner-box .product-info .product-price span.price {
  font-size: 24px;
  font-weight: 700;
}
main#product-single #product-content-wrapper #product-details .box .inner-box .product-specs .specs-grid .spec-item span.spec-label {
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  display: block;
  border: 1px solid #000;
  padding: 5px 10px;
  margin-top: 15px;
}
main#product-single #product-content-wrapper #product-details .box .inner-box .product-specs .specs-grid .spec-item span.spec-value {
  font-size: 14px;
  font-weight: 350;
}
main#product-single #product-content-wrapper #product-details .box .inner-box .product-specs .specs-additional {
  border-top: 1px solid #000;
  margin-top: 15px;
  padding-top: 15px;
}
main#product-single #product-content-wrapper #product-details .box .inner-box .product-specs .specs-additional p {
  font-size: 14px;
  font-weight: 350;
}
main#product-single #product-content-wrapper #product-features .box {
  width: 100%;
  max-width: none;
}
main#product-single #product-content-wrapper #product-features .box .inner-box .features-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
main#product-single #product-content-wrapper #product-features .box .inner-box .feature-item {
  width: 100%;
}
main#product-single #product-content-wrapper #product-features .box .inner-box .feature-item .feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main#product-single #online-shop .box .inner-box a {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
main#product-single #online-shop .box .inner-box a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

main#contactform #form .box {
  max-width: 800px;
}
main#contactform #form .box h2 {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-color: #000;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  main#contactform #form .box h2 {
    font-size: 12px;
  }
}
main#contactform #form .box form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
main#contactform #form .box form table {
  width: 100%;
}
main#contactform #form .box form table th {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 5px;
}
main#contactform #form .box form table th p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 736px) {
  main#contactform #form .box form table th p {
    font-size: 16px;
  }
}
main#contactform #form .box form table th span.req,
main#contactform #form .box form table th span.optional {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: #618BAD;
  padding: 0px 5px;
}
@media screen and (max-width: 736px) {
  main#contactform #form .box form table th span.req,
  main#contactform #form .box form table th span.optional {
    font-size: 12px;
  }
}
main#contactform #form .box form table th span.optional {
  background-color: #D9D9D9;
  color: #000;
}
main#contactform #form .box form table td {
  display: block;
  width: 100%;
}
main#contactform #form .box form table td p {
  margin-top: 0;
}
main#contactform #form .box form table td input,
main#contactform #form .box form table td textarea {
  width: 100%;
  border: 1px solid #D9D9D9;
  background: #FFF;
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 736px) {
  main#contactform #form .box form table td input,
  main#contactform #form .box form table td textarea {
    font-size: 14px;
  }
}
main#contactform #form .box form table td input:focus,
main#contactform #form .box form table td textarea:focus {
  outline: none;
  border: 1px solid #000;
}
main#contactform #form .box form table td .wpcf7-not-valid-tip {
  text-align: left;
}
main#contactform #form .box form table td .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 30px 0 60px;
}
@media screen and (max-width: 736px) {
  main#contactform #form .box form table td .wpcf7-radio {
    margin: 20px 0 10px;
  }
}
main#contactform #form .box form table td .wpcf7-radio .wpcf7-list-item {
  width: 49%;
  margin: 0;
}
@media screen and (max-width: 736px) {
  main#contactform #form .box form table td .wpcf7-radio .wpcf7-list-item {
    width: 100%;
  }
}
main#contactform #form .box form table td .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}
main#contactform #form .box form table td .wpcf7-radio .wpcf7-list-item label input {
  width: auto;
}
main#contactform #form .box form table td .wpcf7-radio .wpcf7-list-item label span {
  color: #000;
}
@media screen and (max-width: 736px) {
  main#contactform #form .box form table td .wpcf7-radio .wpcf7-list-item label span {
    font-size: 14px;
  }
}
main#contactform #form .box form p {
  text-align: center;
  margin-top: 30px;
}
main#contactform #form .box form p .wpcf7-list-item {
  margin: 0;
}
main#contactform #form .box form .btn-box {
  margin-top: 30px;
}
main#contactform #form .box form .btn-box p {
  text-align: center;
  margin-top: 0;
}
main#contactform #form .box form .btn-box p .wpcf7-submit {
  display: inline-block;
  width: 500px;
  margin: 0 auto;
  height: auto;
  background-color: #618BAD;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 736px) {
  main#contactform #form .box form .btn-box p .wpcf7-submit {
    font-size: 16px;
    width: 100%;
  }
}

main#privacy #privacy-box .box .title-box {
  text-align: center;
}
main#privacy #privacy-box .box .title-box h2 {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
}
main#privacy #privacy-box .box .inner-box {
  margin: 20px auto;
  max-width: 800px;
}
main#privacy #privacy-box .box .inner-box h3 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
  margin-top: 30px;
}
main#privacy #privacy-box .box .inner-box p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
main#privacy #privacy-box .box .inner-box ul {
  list-style-type: disc;
}
main#privacy #privacy-box .box .inner-box ul li {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-left: 2em;
}
main#privacy #privacy-box .box .inner-box address {
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
}
main#privacy #privacy-box .box .inner-box address a {
  color: #000;
  font-size: 14px;
}

/* フッター */
#banner {
  padding: 30px 0 0;
}
#banner .box .inner-box ul {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 736px) {
  #banner .box .inner-box ul {
    flex-wrap: wrap;
  }
}
#banner .box .inner-box ul li {
  width: 30%;
}
@media screen and (max-width: 736px) {
  #banner .box .inner-box ul li {
    width: 48%;
    margin-bottom: 20px;
  }
}
#banner .box .inner-box ul li img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 60px;
}
@media screen and (max-width: 736px) {
  footer {
    padding: 40px 0 20px;
  }
}
footer .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
footer .box .footer-logo a {
  width: 240px;
  display: inline-block;
}
@media screen and (max-width: 736px) {
  footer .box .footer-logo a {
    width: 180px;
  }
}
footer .box .footer-logo a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .box .footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 736px) {
  footer .box .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
footer .box .footer-nav ul li a {
  color: #fff;
  font-size: 14px;
  color: #FFF;
  text-align: center;
  font-family: Oswald;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 21.6px */
}
@media screen and (max-width: 736px) {
  footer .box .footer-nav ul li a {
    font-size: 16px;
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 736px) {
  footer .box .footer-nav ul li.privacy {
    margin-top: 30px;
  }
}
footer .box .footer-nav ul li.privacy a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 187.5% */
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .box .footer-nav ul li.privacy a img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .box .footer-bottom p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 350;
  line-height: 20px; /* 166.667% */
  letter-spacing: 1.2px;
}/*# sourceMappingURL=layout.css.map */