@charset "UTF-8";
/* CSS Document */
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common
  - Header
  - Footer
  - Call To Action
# Content
  - Breadcrumbs
  - Headline
  - Text 
# Animation
  - play Up
  - play Left
  - Text Animation
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  color: #313131;
  background-color: #f7f7f7;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button {
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid #313131;
  outline-offset: 2px;
}

body.is-menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
  padding: 0 6rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #b2b2b2;
}
@media screen and (max-width: 960px) {
  .site-header {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 480px) {
  .site-header {
    height: 6rem;
    padding: 0 1.6rem;
  }
}

.site-header__logo {
  display: inline-flex;
}
.site-header__logo img {
  width: auto;
  height: 4.1874rem;
}
@media screen and (max-width: 480px) {
  .site-header__logo img {
    height: 3.2rem;
  }
}

.site-header__nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 480px) {
  .site-header__nav {
    gap: 2rem;
  }
}

.languageBtn {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  z-index: 101;
  width: 16rem;
  padding: 0.8rem;
  background-color: #f7f7f7;
  border: 1px solid #b2b2b2;
  border-radius: 0.5rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
}
.languageBtn li {
  list-style: none;
}
.languageBtn li + li {
  margin-top: 0.4rem;
}
.languageBtn a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #313131;
}
.languageBtn a:hover, .languageBtn a.current_language {
  background-color: #ffffff;
}
.languageBtn a img {
  width: 2rem;
  height: auto;
}

.site-header__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
}
.site-header__lang .site-header__lang-icon {
  width: 2.4rem;
  height: 2.4rem;
}
.site-header__lang .site-header__lang-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
}
.site-header__lang:hover {
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .site-header__lang {
    padding: 0.4rem;
  }
  .site-header__lang .site-header__lang-text {
    display: none;
  }
}

.site-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 5.2rem;
}
.site-header__menu .site-header__menu-label {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
.site-header__menu:hover {
  opacity: 0.6;
}

.hamburger {
  position: relative;
  width: 4.8rem;
  height: 1.3rem;
}
.hamburger span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4.8rem;
  height: 1px;
  background-color: #313131;
  transition: transform 0.35s ease;
  backface-visibility: hidden;
}
.hamburger span:nth-child(1) {
  transform: translateY(-6px);
}
.hamburger span:nth-child(2) {
  transform: translateY(6px);
}

.site-header__menu.is-active .hamburger span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.site-header__menu.is-active .hamburger span:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.global-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  background-color: #f7f7f7;
  background-image: repeating-linear-gradient(to right, transparent 0, transparent calc((100% - 1px) / 8), #e5e5e5 calc((100% - 1px) / 8), #e5e5e5 calc((100% - 1px) / 8 + 1px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5rem);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}
.global-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s;
}

.global-menu__inner {
  max-width: 192rem;
  min-height: 100%;
  margin: 0 auto;
  padding: 16rem 0 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 960px) {
  .global-menu__inner {
    padding: 12rem 0 6rem;
  }
}

.global-menu__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 18rem 6rem 6rem;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 960px) {
  .global-menu__body {
    flex-direction: column;
    gap: 5rem;
    padding: 0 3rem 4rem;
  }
}

.global-menu__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 39.5rem;
}
@media screen and (max-width: 960px) {
  .global-menu__brand {
    width: 100%;
    align-items: flex-start;
  }
}

.global-menu__logo img {
  width: auto;
  height: 8.9407rem;
}
@media screen and (max-width: 960px) {
  .global-menu__logo img {
    height: 6rem;
  }
}

.global-menu__social {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.global-menu__social a {
  display: inline-flex;
}
.global-menu__social a:hover {
  opacity: 0.6;
}
.global-menu__social .icon-facebook {
  width: 5.4rem;
  height: 5.4rem;
}
.global-menu__social .icon-x {
  width: 4.1rem;
  height: 4.1rem;
}
.global-menu__social .icon-instagram {
  width: 4.8rem;
  height: 4.7rem;
}
.global-menu__social .icon-youtube {
  width: 5.4rem;
  height: 5.4rem;
}

.global-menu__cols {
  display: flex;
  gap: clamp(4rem, 9.6vw, 18.5rem);
  color: #313131;
}
@media screen and (max-width: 960px) {
  .global-menu__cols {
    gap: 6rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .global-menu__cols {
    gap: 4rem;
  }
}

.global-menu__col {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 480px) {
  .global-menu__col {
    gap: 4rem;
  }
}

.global-menu__group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.global-menu__heading {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .global-menu__heading {
    white-space: normal;
  }
}

.global-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.global-menu__links a {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  white-space: nowrap;
}
.global-menu__links a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 480px) {
  .global-menu__links a {
    white-space: normal;
  }
}

@media screen and (max-width: 768px) {
  .global-menu__inner {
    gap: 0;
    padding: 10rem 0 4rem;
  }
  .global-menu__body {
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    padding: 0 2rem 6rem;
    border-bottom: none;
  }
  .global-menu__brand {
    display: contents;
  }
  .global-menu__logo {
    order: 1;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .global-menu__logo img {
    height: 6rem;
  }
  .global-menu__cols {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 2.4rem;
    width: 100%;
  }
  .global-menu__col {
    display: contents;
  }
  .global-menu__group {
    gap: 1.2rem;
    min-width: 0;
  }
  .global-menu__heading,
  .global-menu__links a {
    font-size: 1.5rem;
    white-space: normal;
  }
  .global-menu__social {
    order: 3;
    justify-content: center;
    width: 100%;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 16rem 0 6rem;
  background-color: #ffffff;
  background-image: repeating-linear-gradient(to right, transparent 0, transparent calc((100% - 1px) / 8), #e5e5e5 calc((100% - 1px) / 8), #e5e5e5 calc((100% - 1px) / 8 + 1px));
}
@media screen and (max-width: 960px) {
  .site-footer {
    padding: 10rem 0 4rem;
  }
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 8rem 0 16rem;
  }
}

.site-footer__inner {
  position: relative;
  max-width: 192rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.site-footer__body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 18rem 6rem 6rem;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 960px) {
  .site-footer__body {
    flex-direction: column;
    gap: 5rem;
    padding: 0 3rem 4rem;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 39.5rem;
}
@media screen and (max-width: 960px) {
  .site-footer__brand {
    width: 100%;
    align-items: flex-start;
  }
}

.site-footer__brand-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 960px) {
  .site-footer__brand-top {
    align-items: flex-start;
  }
}

.site-footer__logo img {
  width: auto;
  height: 8.9407rem;
}
@media screen and (max-width: 960px) {
  .site-footer__logo img {
    height: 6rem;
  }
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-footer__social a {
  display: inline-flex;
}
.site-footer__social a:hover {
  opacity: 0.6;
}
.site-footer__social .icon-facebook {
  width: 5.4rem;
  height: 5.4rem;
}
.site-footer__social .icon-x {
  width: 4.1rem;
  height: 4.1rem;
}
.site-footer__social .icon-instagram {
  width: 4.8rem;
  height: 4.7rem;
}
.site-footer__social .icon-youtube {
  width: 5.4rem;
  height: 5.4rem;
}

.site-footer__banner {
  position: relative;
  display: block;
  width: 39.5rem;
  max-width: 100%;
  height: 21.6rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.site-footer__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.site-footer__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.site-footer__banner:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 960px) {
  .site-footer__banner {
    width: 39.5rem;
  }
}
@media screen and (max-width: 480px) {
  .site-footer__banner {
    width: 100%;
  }
}

.site-footer__banner-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.6;
  letter-spacing: 0.11rem;
  text-align: center;
  color: #ffffff;
}

.site-footer__cols {
  display: flex;
  gap: clamp(4rem, 9.6vw, 18.5rem);
  color: #313131;
}
@media screen and (max-width: 960px) {
  .site-footer__cols {
    gap: 6rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .site-footer__cols {
    gap: 4rem;
  }
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 480px) {
  .site-footer__col {
    gap: 4rem;
  }
}

.site-footer__group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.site-footer__heading {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .site-footer__heading {
    white-space: normal;
  }
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.site-footer__links a {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  white-space: nowrap;
}
.site-footer__links a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 480px) {
  .site-footer__links a {
    white-space: normal;
  }
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6rem;
  padding-right: 18rem;
}
.site-footer__legal a {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
.site-footer__legal a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .site-footer__legal {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem 4rem;
    padding: 0 3rem;
  }
}

.site-footer__copy {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  text-align: center;
  color: #313131;
}

@media screen and (max-width: 768px) {
  .site-footer__inner {
    gap: 4rem;
    padding: 0 2rem;
  }
  .site-footer__body,
  .site-footer__brand,
  .site-footer__brand-top {
    display: contents;
  }
  .site-footer__logo {
    order: 1;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .site-footer__logo img {
    height: 6rem;
  }
  .site-footer__cols {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 2.4rem;
    width: 100%;
  }
  .site-footer__col {
    display: contents;
  }
  .site-footer__group {
    gap: 1.2rem;
    min-width: 0;
  }
  .site-footer__heading,
  .site-footer__links a {
    font-size: 1.5rem;
    white-space: normal;
  }
  .site-footer__social {
    order: 3;
    justify-content: center;
    width: 100%;
  }
  .site-footer__banner {
    display: none;
  }
  .site-footer__legal {
    order: 4;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    padding: 4rem 0 0;
    border-top: 1px solid #e5e5e5;
    text-align: center;
  }
  .site-footer__legal a {
    font-size: 1.5rem;
  }
  .site-footer__copy {
    order: 5;
    font-size: 1.3rem;
  }
}
.pageBox__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .pageBox__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.pageBox h2,
.pageBox .wp-block-heading {
  margin-top: 35px;
  margin-bottom: 12.5px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: left;
}
.pageBox h2:first-child,
.pageBox .wp-block-heading:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .pageBox h2,
  .pageBox .wp-block-heading {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: 0.025em;
  }
}
.pageBox h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: left;
}
@media (max-width: 768px) {
  .pageBox h3 {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
.pageBox p {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}
@media (max-width: 768px) {
  .pageBox p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.025em;
  }
}
.pageBox ul,
.pageBox ol {
  margin-bottom: 40px;
  margin-left: 25px;
}
@media (max-width: 768px) {
  .pageBox ul,
  .pageBox ol {
    margin-bottom: 24px;
  }
}
.pageBox ul {
  list-style-type: disc;
}
.pageBox ol {
  list-style-type: decimal;
}
.pageBox li {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}
@media (max-width: 768px) {
  .pageBox li {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.025em;
  }
}
.pageBox a {
  color: #295e8d;
  text-decoration: underline;
}
.pageBox img {
  max-width: 100%;
  height: auto;
}
.pageBox .mb0 {
  margin-bottom: 0 !important;
}
.pageBox .mb1rem {
  margin-bottom: 10px !important;
}

.pageBox .h3_txt,
.pageBox .wp-block-heading.h3_txt {
  display: block;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d3d3d3;
  color: #313131;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: left;
}
@media (max-width: 768px) {
  .pageBox .h3_txt,
  .pageBox .wp-block-heading.h3_txt {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: 0.025em;
  }
}

.commerce__tbl thead {
  border-bottom: none;
}
.commerce__tbl thead th {
  padding: 15px 10px;
  border: 1px solid #313131;
  border-right: 1px solid #ffffff;
  background-color: #313131;
  color: #ffffff;
}
.commerce__tbl thead tr th:last-child {
  border-right: 1px solid #313131;
}
.commerce__tbl tbody th {
  padding: 15px 10px;
  border: 1px solid #313131;
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .commerce__tbl tbody th {
    padding: 5px;
  }
}
.commerce__tbl tbody td {
  padding: 15px 10px;
  border: 1px solid #313131;
}
@media (max-width: 768px) {
  .commerce__tbl tbody td {
    padding: 5px;
  }
}

.btn-wh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  width: 37.8rem;
  max-width: 100%;
  padding: 0.8rem 0.8rem 0.8rem 3.2rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  color: #313131;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-wh__label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  white-space: nowrap;
}
.btn-wh__arrow {
  position: relative;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
}
.btn-wh__arrow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-wh__arrow img:nth-child(1) {
  transform: translateX(0);
}
.btn-wh__arrow img:nth-child(2) {
  transform: translateX(-110%);
}
.btn-wh:hover .btn-wh__arrow img:nth-child(1) {
  transform: translateX(110%);
}
.btn-wh:hover .btn-wh__arrow img:nth-child(2) {
  transform: translateX(0);
}
.btn-wh:hover {
  opacity: 1;
}
.btn-wh.btn-wh--dark {
  background-color: #313131;
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .btn-wh {
    width: 100%;
    padding-left: 2rem;
  }
  .btn-wh__label {
    font-size: 1.6rem;
  }
}

.floating-banner {
  position: fixed;
  right: 0;
  top: 18.1rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: 12rem;
  padding: 2.4rem 1.6rem 1.6rem;
  background-color: #f7f7f7;
  border: 1px solid #b2b2b2;
  border-right: none;
  border-radius: 0.5rem 0 0 0.5rem;
}
@media screen and (max-width: 960px) {
  .floating-banner {
    width: 10rem;
    padding: 2rem 1.2rem 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .floating-banner {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    z-index: 150;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    width: 100%;
    padding: 0.8rem 1.2rem calc(0.8rem + env(safe-area-inset-bottom));
    border: none;
    border-top: 1px solid #b2b2b2;
    border-radius: 0;
  }
}

.floating-banner__label {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .floating-banner__label {
    grid-column: 1/-1;
    font-size: 1.4rem;
  }
}

.floating-banner__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 24rem;
  padding: 1.6rem 3.1rem 1.3rem;
  background-color: #ffffff;
  border: 1px solid #b2b2b2;
  border-radius: 0.5rem;
}
.floating-banner__card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .floating-banner__card {
    height: 20rem;
    padding: 1.4rem 2rem 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .floating-banner__card {
    height: 4.8rem;
    padding: 0.8rem 1rem;
  }
}

.floating-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .floating-banner__inner {
    flex-direction: row;
    width: 100%;
  }
}

.floating-banner__icon.is-logo {
  width: 2.6rem;
  height: 2.3rem;
}
.floating-banner__icon.is-catalog {
  width: 2.6rem;
  height: 2.2rem;
}

.floating-banner__text {
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.09rem;
  line-height: 1.22;
}
@media screen and (max-width: 768px) {
  .floating-banner__text {
    writing-mode: horizontal-tb;
    font-size: 1.3rem;
    letter-spacing: 0.04rem;
    line-height: 1.4;
    white-space: nowrap;
  }
}

.sec10 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec10 {
    flex-direction: column;
  }
}

.sec10__banner {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68.6rem;
  padding: 6rem 3rem;
  overflow: hidden;
}
.sec10__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../img/common/cta_hover.webp") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sec10__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.45);
  transition: background-color 0.4s ease;
}
.sec10__banner:hover::before {
  opacity: 1;
}
.sec10__banner:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 480px) {
  .sec10__banner {
    min-height: 48rem;
  }
}

.sec10__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sec10__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sec10__body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4rem;
  width: 84.7rem;
  max-width: 100%;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .sec10__body {
    gap: 4rem;
  }
}

.sec10__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.32rem;
}
@media screen and (max-width: 480px) {
  .sec10__title {
    font-size: 2.4rem;
  }
}

.sec10__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 350;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 480px) {
  .sec10__text {
    font-size: 1.5rem;
  }
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 40rem;
  margin-top: 8rem;
  overflow: hidden;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .page-hero {
    height: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .page-hero {
    height: 24rem;
    margin-top: 6rem;
  }
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 6.4rem;
  width: 100%;
  padding-left: 6rem;
  color: #313131;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .page-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 480px) {
  .page-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0 2rem;
  }
}

.page-hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: 0.32rem;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .page-hero__title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 480px) {
  .page-hero__title {
    font-size: 4rem;
    letter-spacing: 0.2rem;
  }
}
.page-hero__title--jp {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-style: normal;
  font-size: 3.2rem;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .page-hero__title--jp {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .page-hero__title--jp {
    font-size: 2.4rem;
  }
}

.page-hero__subtitle {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.4;
  letter-spacing: 0.32rem;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .page-hero__subtitle {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .page-hero__subtitle {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}

/* Color
--------------------------------------------- */
/* Fonts
--------------------------------------------- */
/* Mixin
--------------------------------------------- */
/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/
html {
  margin: 0 !important;
  color: #313131;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

body {
  position: relative;
  margin: 0;
  color: #313131;
  font-size: 16px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  body {
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    font-size: 15px;
    letter-spacing: 0.05em;
  }
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p {
  margin: 0 0 1.5rem 0;
  padding: 0;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  p {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #313131;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.8;
}
a:link, a:visited {
  color: #313131;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  img {
    width: 100%;
    max-width: 100%;
  }
}

input,
textarea,
select {
  border-radius: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  outline: none;
}
@media only screen and (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 1.6rem !important;
  }
}

@media only screen and (max-width: 768px) {
  input[type=submit] {
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
}

table {
  border-collapse: collapse;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl {
  margin-block-start: 0;
  margin-block-end: 0;
}

dd {
  margin-inline-start: 0;
}

button {
  outline: none;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
@viewport {
  width: extend-to-zoom 100%;
  zoom: 1;
}
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

#wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    position: relative;
    min-width: 320px;
  }
}

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

.pcIb {
  display: inline-block !important;
}
@media only screen and (max-width: 768px) {
  .pcIb {
    display: none !important;
  }
}

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

.spIb {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .spIb {
    display: inline-block !important;
  }
}

.outerBlock {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .outerBlock {
    min-width: 320px;
  }
}

.innerBlock {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .innerBlock {
    width: auto;
    padding: 0 15px;
  }
}

.intro-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.inner10 {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.inner12 {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.inner13 {
  position: relative;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.inner14 {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.m_auto {
  margin: auto;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* Header
--------------------------------------------- */
.header {
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 60px;
  background: rgba(49, 49, 49, 0.8);
}
@media only screen and (max-width: 768px) {
  .header {
    height: 67px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 12px 20px 12px 20px;
}
@media only screen and (max-width: 768px) {
  .header__inner {
    display: flex;
    padding: 10px;
  }
}
.header .logo__item {
  display: flex;
  align-items: center;
}
.header .logo__item-thumb {
  display: block;
  max-width: 180px;
  margin: auto;
  line-height: 100%;
}
@media only screen and (max-width: 768px) {
  .header .logo__item-thumb {
    z-index: 999999999;
    max-width: 192px;
    margin: auto;
  }
}
.header .menu__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-right: 0;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .header .menu__item {
    width: auto;
  }
}
.header .menu__list {
  display: none;
  column-gap: 20px;
  position: fixed;
  overflow: auto;
  top: 60px;
  right: 0;
  z-index: 999999;
  width: 320px;
  height: calc(100vh - 60px);
  background: #313131;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .header .menu__list {
    column-gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .header .menu__list {
    top: 67px;
    overflow: scroll;
    width: 100%;
    height: calc(100vh - 67px);
  }
}
.header .menu__list li.menu_title {
  position: relative;
  bottom: 1px;
  padding: 0.9325rem 1.25rem;
  border-top: 1px solid #9B9B9B;
  border-bottom: 1px solid #9B9B9B;
  color: #FFFFFF;
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: 500;
  text-align: left;
  line-height: 100%;
  letter-spacing: 0.05em;
}
.header .menu__list li.menu_title:not(:has(.icon_list))::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform 0.3s ease;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .header .menu__list li.menu_title:not(:has(.icon_list))::after {
    right: 0.9325rem;
    font-size: 18px;
  }
}
.header .menu__list li.menu_title.active:not(:has(.icon_list))::after {
  content: "\f068";
}
.header .menu__list li.menu_title.active {
  background-color: rgba(255, 255, 255, 0.1);
}
.header .menu__list li.menu_title:not(:has(.icon_list)):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.header .menu__list li.menu_title:has(.icon_list) {
  cursor: default;
}
.header .menu__list li.menu_title:has(.icon_list):hover {
  background-color: transparent;
}
.header .menu__list .sub_list {
  overflow: hidden;
  width: 100%;
  margin: 0.25rem 1.25rem 0.5rem;
}
.header .menu__list .sub_list li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: left;
  position: relative;
  width: 100%;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .header .menu__list .sub_list li {
    font-size: 15px;
    letter-spacing: 0.05em;
  }
}
.header .menu__list .sub_list li:last-child {
  border-bottom: none;
}
.header .menu__list .sub_list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 8px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/common/menu_icon.png) no-repeat center/contain;
  transition: 0.3s ease-in-out;
}
.header .menu__list .sub_list li:hover::after {
  left: 5px;
  transition: 0.3s ease-in-out;
}
.header .menu__list .sub_list li a {
  display: block;
  padding: 0.25rem 0.9325rem 0.25rem 1.25rem;
  color: #FFFFFF;
  font-size: 16px;
  letter-spacing: 0.05em;
  opacity: 1;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .header .menu__list .sub_list li a {
    font-size: 15px;
  }
}
.header .menu__list .sub_list li a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.header .menu__list .sub_list .no_topborder {
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
}
.header .menu__list .sub_list .no_topborder::after {
  display: none;
}
.header .menu__list .third_list {
  padding-left: 0.9325rem;
}
@media only screen and (max-width: 768px) {
  .header .menu__list .third_list {
    width: 100%;
    text-align: left;
  }
}
.header .menu__list .third_list li {
  position: relative;
  border: none;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .header .menu__list .third_list li {
    width: 100%;
    font-size: 14px;
    text-align: left;
    letter-spacing: 0.05em;
  }
}
.header .menu__list .third_list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 8px;
  background: url(../img/common/menu_third_icon.png) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.header .menu__list .third_list li:hover::after {
  left: 5px;
  transition: 0.3s ease-in-out;
}
.header .menu__list .icon_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 240px;
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .header .menu__list .icon_list {
    margin-top: 1.25rem;
  }
}
.header .menu__list .icon_list li {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  text-align: center;
}
.header .menu__list .icon_list a {
  display: block;
  width: 100%;
  margin: auto;
}
.header .menu__list .icon_list img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.header #menuBtn {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 9999999;
  width: 37px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .header #menuBtn {
    top: 20px;
    right: 10px;
  }
}
.header #menuBtn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 38px;
  height: 2px;
  margin: auto;
  border-radius: 0;
  background: #FFFFFF;
}
.header #menuBtn span:nth-child(1) {
  top: 0px;
}
.header #menuBtn span:nth-child(2) {
  top: 13px;
}
.header #menuBtn span:nth-child(3) {
  bottom: 13px;
  background: none;
  color: #FFFFFF;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0.05em;
}
.header #menuBtn.isOpen span:not(.txt):nth-child(1) {
  transform: translateY(8px) rotate(-22deg);
  top: 0;
}
.header #menuBtn.isOpen span:not(.txt):nth-child(2) {
  transform: translateY(8px) rotate(22deg);
  top: 0;
}
.header__lang {
  display: block;
  position: absolute;
  top: 18px;
  right: 80px;
  width: 120px;
}
@media only screen and (max-width: 480px) {
  .header__lang {
    right: 60px;
    width: 110px;
  }
}
@media only screen and (max-width: 375px) {
  .header__lang {
    display: none;
  }
}
.header__lang .headerLanguage {
  display: block;
  position: relative;
  width: 100%;
  height: 24px;
  padding: 4px 1rem;
  border: 1px solid #9B9B9B;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  line-height: 1;
  letter-spacing: 0;
}
@media only screen and (max-width: 480px) {
  .header__lang .headerLanguage {
    padding: 4px 10px;
  }
}
.header__lang .headerLanguage img {
  width: 16px;
  height: auto;
  margin-top: -1px;
  margin-right: 8px;
  object-fit: contain;
}
.header__lang .languageBtn {
  width: 100%;
  border: 1px solid #9B9B9B;
  cursor: pointer;
}
.header__lang .languageBtn li {
  padding: 0.25rem 1rem;
  border-top: none !important;
  border-bottom: none !important;
  background-color: #FFFFFF;
  list-style-type: none;
}
.header__lang .languageBtn li a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}
.header__lang .languageBtn li img {
  width: 16px;
  height: auto;
  margin: 10px 5px 0 0;
  object-fit: contain;
}

/* Footer
--------------------------------------------- */
.footer {
  background: #1F1F1F;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding-bottom: 64px;
  }
}
.footer .inner13 {
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .footer .inner13 {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
.footer__nav {
  display: flex;
  column-gap: 100px;
  width: calc(100% - 320px);
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .footer__nav {
    display: block;
    width: 100%;
    padding-left: 1.5rem;
  }
}
.footer__nav a {
  color: #FFFFFF;
}
.footer__navItem {
  width: fit-content;
  padding-left: 25px;
  border-left: 1px solid #9B9B9B;
}
@media only screen and (max-width: 768px) {
  .footer__navItem {
    margin-bottom: 2.5rem;
    padding-left: 0;
    border-left: none;
  }
}
.footer__navItem-ttl {
  color: #FFFFFF;
  font-size: 21px;
  font-family: "Montserrat";
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .footer__navItem-ttl {
    padding-left: 15px;
    border-left: 1px solid #9B9B9B;
    font-size: 24px;
  }
}
.footer__navItem .mt30 {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .footer__navList {
    padding-left: 15px;
    border-left: 1px solid #9B9B9B;
  }
}
.footer__navList li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 25px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .footer__navList li {
    align-items: left;
    justify-content: left;
    width: 100%;
  }
}
.footer__navList li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 8px;
  background: url(../img/common/menu_icon.png) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.footer__navList li:hover::after {
  left: 5px;
  transition: 0.3s ease-in-out;
}
.footer__navList li.no-border {
  padding-top: 0;
  border-top: none;
}
.footer__navList li.no-border::after {
  display: none;
}
.footer__navList li a.no-event {
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .footer__subnavList {
    width: 100%;
    text-align: left;
  }
}
.footer__subnavList li {
  position: relative;
  padding-left: 1.5rem;
  border: none;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 100%;
}
.footer__subnavList li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 8px;
  background: url(../img/common/menu_third_icon.png) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.footer__subnavList li:hover::after {
  transition: 0.3s ease-in-out;
}
.footer__logo {
  max-width: 320px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .footer__logo {
    max-width: 100%;
    background: #2E2E2E;
    padding-top: 25px;
    padding-bottom: 15px;
  }
}
.footer__logoThumb {
  max-width: 320px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .footer__logoThumb {
    max-width: 216px;
  }
}
.footer__logoThumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.footer__logoList {
  display: flex;
  width: 100%;
  max-width: 198px;
  margin: auto;
  padding-top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .footer__logoList {
    max-width: 135px;
    padding-top: 15px;
  }
}
.footer__logoList li {
  width: 25%;
  padding: 0;
  border: none;
  text-align: center;
}
.footer__logoList li a {
  margin: auto;
}
.footer__logoList li img {
  max-width: 30px;
}
@media only screen and (max-width: 768px) {
  .footer__logoList li img {
    max-width: 24px;
  }
}
.footer__lp {
  width: 100%;
  max-width: 360px;
  margin: 1.5rem auto 1rem auto;
}
.footer__lp img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.footer .copyright {
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .footer .copyright {
    background: #2E2E2E;
  }
}
.footer .copyright .inner13 {
  display: flex;
  padding-top: 60px;
}
@media only screen and (max-width: 768px) {
  .footer .copyright .inner13 {
    display: block;
    padding: 0;
  }
}
.footer .copyright__subList {
  display: flex;
  column-gap: 1.5rem;
  width: calc(100% - 280px);
  margin: auto;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .footer .copyright__subList {
    display: block;
    width: 100%;
    border-top: 1px solid #313131;
  }
}
.footer .copyright__subList li {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .footer .copyright__subList li {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #313131;
    text-align: center;
  }
}
.footer .copyright__subList a {
  color: #FFFFFF;
}
.footer .copyright__txt {
  width: 280px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .footer .copyright__txt {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.footer .copyright__txt p {
  color: #D3D3D3;
  font-size: 14px;
  font-family: "Montserrat";
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .footer .copyright__txt p {
    text-align: center;
  }
}
.footer .footerLanguage {
  display: block;
  width: 160px;
  height: 24px;
  padding: 3px 1rem;
  border: 1px solid #9B9B9B;
  color: #FFFFFF;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .footer .footerLanguage {
    width: 200px;
    height: 32px;
    margin: 0 auto;
    padding: 8px 1rem;
  }
}
.footer .footerLanguage img {
  width: 12px;
  height: auto;
  margin-top: 2px;
  margin-right: 5px;
  object-fit: contain;
}
.footer .languageBtn {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border: 1px solid #9B9B9B;
  cursor: pointer;
}
.footer .languageBtn li {
  padding: 0.25rem 1rem;
  list-style-type: none;
}
.footer .languageBtn li a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
}
.footer .languageBtn li img {
  width: 16px;
  height: auto;
  margin: 2px 5px 0 0;
  object-fit: contain;
}

/* Call To Action
--------------------------------------------- */
.cta {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .cta {
    display: block;
  }
}
.cta__box {
  display: flex;
  position: relative;
  width: 50%;
  padding: 150px 20px;
}
@media only screen and (max-width: 1024px) {
  .cta__box {
    width: 100%;
    padding: 100px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .cta__box {
    width: 100%;
    padding: 50px 25px;
  }
}
.cta__box::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(69, 69, 69, 0.5);
}
.cta .catalog {
  background: url(../img/common/catalog_bg.jpg) no-repeat center;
  background-size: cover;
}
.cta .contact {
  background: url(../img/common/contact_bg.jpg) no-repeat center;
  background-size: cover;
}
.cta .reserve {
  background: url(../img/common/reserve_bg.jpg) no-repeat center;
  background-size: cover;
}
.cta__content {
  z-index: 10;
  width: 100%;
  margin: auto;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .cta__content {
    max-width: 100%;
  }
}
.cta__content-ttl {
  margin-bottom: 2rem;
  font-size: 65px;
  font-family: "Montserrat";
  font-weight: 300;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1024px) {
  .cta__content-ttl {
    font-size: 50px;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .cta__content-ttl {
    font-size: 36px;
    margin-bottom: 1rem;
  }
}
.cta__content p {
  margin-bottom: 2.5rem;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  .cta__content p {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .cta__content p {
    font-size: 14px;
  }
}
.cta__content-btn {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.cta__content-btn a {
  display: block;
  width: 100%;
  padding: 20px;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-align: center;
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 1024px) {
  .cta__content-btn a {
    font-size: 16px;
  }
}
.cta__content-btn a:hover {
  background: #FFFFFF;
  color: #313131;
  transition: 0.5s ease-in-out;
  opacity: 1;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/* Breadcrumbs
--------------------------------------------- */
.breadcrumbs {
  position: relative;
  padding: 0.5rem 0;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 0.25rem 0;
  }
}
.breadcrumbs__inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.breadcrumbs__list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.breadcrumbs__listItem {
  flex-shrink: 0;
  white-space: nowrap;
  color: #9B9B9B;
  font-size: 14px;
}
.breadcrumbs__listItem::after {
  content: "/";
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}
.breadcrumbs__listItem:last-child::after {
  content: "";
  margin-right: 0;
}
.breadcrumbs__listItem a {
  color: #313131;
  font-size: 14px;
}
.breadcrumbs__listItem a:hover {
  text-decoration: underline;
}

/* Headline
--------------------------------------------- */
.h2_item {
  position: relative;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .h2_item {
    margin-bottom: 55px;
  }
}
.h2_item .ttl {
  position: inherit;
  z-index: 3;
  width: fit-content;
  padding-right: 50px;
  background: transparent;
  color: #313131;
  font-size: 66px;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .h2_item .ttl {
    font-size: 50px;
    padding-right: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .h2_item .ttl {
    font-size: 9.6vw;
  }
}
.h2_item .sub_ttl {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #D3D3D3;
  color: #A3A3A3;
  font-size: 21px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .h2_item .sub_ttl {
    padding-top: 10px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .h2_item .sub_ttl {
    font-size: 3.6vw;
  }
}
.h2_item .sub_ttl span {
  display: inline-block;
  margin-top: 8px;
  color: #9B9B9B;
  font-size: 12px;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .h2_item .sub_ttl span {
    font-size: 10px;
  }
}

/* Fixed button
--------------------------------------------- */
.fixed-btn {
  position: fixed;
  right: 0;
  bottom: 10px;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  width: 324px;
  height: 96px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .fixed-btn {
    display: none;
    position: relative;
  }
}
.fixed-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1rem;
  height: 1rem;
  background-color: #313131;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .fixed-btn::after {
    display: none;
    position: relative;
  }
}
.fixed-btn:hover::after {
  background-color: #FFFFFF;
}
.fixed-btn.is-active {
  opacity: 1;
  visibility: visible;
}
.fixed-btn a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 12px;
  width: 100%;
  height: 96px;
  padding: 0;
  background: rgba(49, 49, 49, 0.8);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .fixed-btn a {
    width: 100%;
    height: 48px;
    margin: 0 auto;
    padding: 8px 0;
  }
}
.fixed-btn a:hover {
  opacity: 1;
  filter: opacity(100%);
  background-color: #FFFFFF;
  color: #313131;
}
.fixed-btn__thumb {
  width: 96px;
  height: 96px;
  margin: 0;
  aspect-ratio: 1/1;
}
.fixed-btn__thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.fixed-btn__txt .ttl {
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.fixed-btn__txt .caption {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

/* Footer button
--------------------------------------------- */
.footer-btn {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  width: 100%;
  height: 64px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .footer-btn {
    display: block;
  }
}
.footer-btn.is-active {
  opacity: 1;
  visibility: visible;
}
.footer-btn-list {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 0;
}
.footer-btn-list__item {
  width: 100%;
  border-top: 2px solid #2E2E2E;
  border-right: 1px solid #9B9B9B;
}
.footer-btn-list__item:last-child {
  border-right: none;
}
.footer-btn-list__item a {
  display: block;
  width: 100%;
  height: 64px;
  padding: 10px 0;
  background-color: #313131;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.footer-btn-list__item a:hover {
  opacity: 1;
  filter: opacity(100%);
  background-color: #2E2E2E;
  color: #FFFFFF;
}
.footer-btn-list__item img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 24px;
  margin: 0 auto;
}

/* Fixed column
--------------------------------------------- */
.fixed-column {
  position: fixed;
  right: 0;
  top: 160px;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  width: 54px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .fixed-column {
    display: none;
    position: relative;
  }
}
.fixed-column.is-active {
  opacity: 1;
  visibility: visible;
}
.fixed-column a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
  padding: 1rem 0;
  background: rgba(49, 49, 49, 0.8);
  color: #FFFFFF;
}
.fixed-column a:hover {
  opacity: 0.8;
  filter: opacity(80%);
}
.fixed-column__icon {
  width: 36px;
  height: 36px;
  margin: 0;
  aspect-ratio: 1/1;
}
.fixed-column__icon img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.fixed-column__txt {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

/*--------------------------------------------------------------
# Animation
--------------------------------------------------------------*/
/* play Up
--------------------------------------------- */
.play_up {
  display: flex !important;
  opacity: 1 !important;
}
@media only screen and (max-width: 768px) {
  .play_up {
    display: block !important;
  }
}
.play_up li:nth-child(1) {
  animation-delay: 0.1s;
  animation-name: fedup01;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 0;
  display: block !important;
}
.play_up li:nth-child(2) {
  animation-name: fedup02;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 0.7s;
  opacity: 0;
  display: block !important;
}
.play_up li:nth-child(3) {
  animation-name: fedup03;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 1.2s;
  opacity: 0;
  display: block !important;
}

.play_up_delay {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .play_up_delay {
    display: block !important;
    opacity: 1;
  }
}
.play_up_delay li:nth-child(1) {
  animation-delay: 0.8s;
  animation-name: fedup01;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 0;
  display: block !important;
}
@media only screen and (max-width: 768px) {
  .play_up_delay li:nth-child(1) {
    opacity: 1;
  }
}
.play_up_delay li:nth-child(2) {
  animation-name: fedup02;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 1.5s;
  opacity: 0;
  display: block !important;
}
@media only screen and (max-width: 768px) {
  .play_up_delay li:nth-child(2) {
    opacity: 1;
  }
}
.play_up_delay li:nth-child(3) {
  animation-name: fedup03;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 2s;
  opacity: 0;
  display: block !important;
}
@media only screen and (max-width: 768px) {
  .play_up_delay li:nth-child(3) {
    opacity: 1;
  }
}

@keyframes fedup01 {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fedup02 {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fedup03 {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* play Left
--------------------------------------------- */
.play_left {
  animation-name: fedleft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 1 !important;
}

@keyframes fedleft {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* fade In
--------------------------------------------- */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* Text Animation
--------------------------------------------- */
.ttl_movie_start,
.ttl_movie_start::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 1s);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ttl_movie_start {
  display: block;
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 1s);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default;
  width: fit-content;
  overflow: hidden;
  opacity: 1 !important;
}
.ttl_movie_start::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #313131;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/*--------------------------------------------------------------
# Post（旧 post.css を統合）
  - Basic / Loading
  - News / Event / Case Archive
  - Error 404
--------------------------------------------------------------*/
/* Basic
--------------------------------------------- */
.h2_txt {
  margin-bottom: 55px;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .h2_txt {
    margin-bottom: 30px;
    font-size: 24px;
    letter-spacing: 0.075em;
  }
}

/* Page Title
--------------------------------------------- */
.pageTitle {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
.pageTitle__inner {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 588px;
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  .pageTitle__inner {
    min-height: 220px;
    padding: 60px 30px;
  }
}
.pageTitle__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -830px;
  width: 800px;
  height: 1px;
  background: #313131;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .pageTitle__inner::after {
    top: 42.5%;
    left: -30px;
    width: 50px;
    -webkit-transform: translateY(-42.5%);
    -ms-transform: translateY(-42.5%);
    transform: translateY(-42.5%);
  }
}
.pageTitle__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pageTitle__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pageTitle__ttl {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .pageTitle__ttl {
    flex-wrap: wrap;
    font-size: 21px;
    line-height: 1.4;
  }
}
.pageTitle__ttl span {
  margin: auto;
  margin-left: 50px;
  color: #D3D3D3;
  font-size: 32px;
  font-weight: 300;
  font-family: "Montserrat";
  line-height: 100%;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .pageTitle__ttl span {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    font-size: 24px;
    text-align: left;
  }
}

.postContent__meta {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 24px;
  margin-bottom: 24px;
}
.postContent__meta time {
  color: #9B9B9B;
}
.postContent__meta aside {
  background-color: #F9F9F9;
  text-align: center;
}
.postContent__meta aside a {
  display: block;
  color: #313131 !important;
  padding: 8px 16px;
  text-decoration: none !important;
}
.postContent .postTitle {
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .postContent .postTitle {
    font-size: 21px;
    letter-spacing: 0.025em;
  }
}
.postContent__thumb {
  position: relative;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}
.postContent__thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.postContent__body h2 {
  font-size: 24px;
  letter-spacing: 0.05em;
  position: relative;
  width: 100%;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .postContent__body h2 {
    font-size: 18px;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .postContent__body h2 {
    margin-top: 40px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
}
.postContent__body h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  bottom: 0;
  left: 0;
  background: #313131;
}
@media only screen and (max-width: 768px) {
  .postContent__body h2::after {
    width: 72px;
    height: 2px;
  }
}
.postContent__body h3 {
  font-size: 24px;
  letter-spacing: 0.05em;
  position: relative;
  width: 100%;
  margin-top: 64px;
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F9F9F9;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .postContent__body h3 {
    font-size: 18px;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .postContent__body h3 {
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 8px;
    line-height: 1.5;
  }
}
.postContent__body h4 {
  font-size: 24px;
  letter-spacing: 0.05em;
  position: relative;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid #313131;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .postContent__body h4 {
    font-size: 18px;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .postContent__body h4 {
    line-height: 1.5;
  }
}
.postContent__body p {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .postContent__body p {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .postContent__body p {
    margin-bottom: 24px;
    line-height: 1.6;
  }
}
.postContent__body a:not(.btn-wh) {
  color: #295E8D;
  text-decoration: underline;
}
.postContent__body figure:not(.case-list__item-thumb) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .postContent__body figure:not(.case-list__item-thumb) {
    margin-bottom: 24px;
  }
}
.postContent__body figure:not(.case-list__item-thumb) img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.postContent__body figure:not(.case-list__item-thumb) figcaption {
  margin: 4px 0 0 0;
  font-size: 14.4px;
  color: #9B9B9B;
}
.postContent__body figure:not(.case-list__item-thumb) a {
  color: #295E8D;
}
.postContent__body figure:not(.case-list__item-thumb) a:hover {
  text-decoration: underline;
}
.postContent__body blockquote {
  margin: 0 0 40px 0;
  padding: 24px 40px;
  background-color: #F9F9F9;
}
@media only screen and (max-width: 768px) {
  .postContent__body blockquote {
    margin-bottom: 24px;
    padding: 24px;
  }
}
.postContent__body blockquote p {
  margin-bottom: 16px;
}
.postContent__body blockquote p:last-child {
  margin-bottom: 0;
}
.postContent__body ul:not(.case-list) {
  margin-bottom: 40px;
  margin-left: 24px;
  list-style-type: none;
}
@media only screen and (max-width: 768px) {
  .postContent__body ul:not(.case-list) {
    margin-bottom: 24px;
  }
}
.postContent__body ul:not(.case-list) li {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .postContent__body ul:not(.case-list) li {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .postContent__body ul:not(.case-list) li {
    line-height: 1.5;
  }
}
.postContent__body ul:not(.case-list) li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: -18px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #313131;
}
.postContent__body ul:not(.case-list) li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: -20px;
  width: 16px;
  height: 16px;
  border: 1px solid #313131;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.postContent__body ol {
  margin-bottom: 40px;
  margin-left: 24px;
  padding-left: 0;
  list-style-type: none;
  counter-reset: listnum;
}
@media only screen and (max-width: 768px) {
  .postContent__body ol {
    margin-bottom: 24px;
  }
}
.postContent__body ol li {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .postContent__body ol li {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .postContent__body ol li {
    line-height: 1.5;
  }
}
.postContent__body ol li::before {
  content: counter(listnum);
  display: inline-block;
  position: absolute;
  top: 4px;
  left: -24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #313131;
  color: #FFFFFF;
  font-size: 14.4px;
  text-align: center;
  line-height: 1.1;
  counter-increment: listnum;
}
.postContent__body table thead {
  border-bottom: none;
}
.postContent__body table thead th {
  padding: 8px 16px;
  border: 1px solid #313131;
  border-right: 1px solid #FFFFFF;
  background-color: #313131;
  color: #FFFFFF;
}
.postContent__body table thead tr th:last-child {
  border-right: 1px solid #313131;
}
.postContent__body table tbody th {
  padding: 8px 16px;
  border: 1px solid #313131;
  background-color: #F9F9F9;
}
@media only screen and (max-width: 768px) {
  .postContent__body table tbody th {
    padding: 8px;
  }
}
.postContent__body table tbody td {
  padding: 8px 16px;
  border: 1px solid #313131;
}
@media only screen and (max-width: 768px) {
  .postContent__body table tbody td {
    padding: 8px;
  }
}
.postContent__body .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.postContent__body .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.postContent__body #toc_container {
  padding: 40px 32px;
}
@media only screen and (max-width: 768px) {
  .postContent__body #toc_container {
    padding: 24px;
  }
}
.postContent__body #toc_container .toc_list li {
  margin-top: 16px;
}
.postContent__body #toc_container .toc_list li::before, .postContent__body #toc_container .toc_list li::after {
  content: "";
  display: none;
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
}
.postContent__body #toc_container .toc_list li a {
  display: block;
  color: #313131;
  line-height: 1.5;
  letter-spacing: 0;
}
.postContent__body #toc_container .toc_list li ul {
  margin-bottom: 24px;
}
.postContent__body #toc_container .toc_list li ul li {
  font-size: 15.2px;
}
.postContent__body #toc_container .toc_list > li > a {
  padding-bottom: 4px;
  border-bottom: 1px dotted #313131;
  font-size: 16px;
  font-weight: 500;
}
.postContent__newsletter {
  margin: 56px 0;
  padding: 40px 32px;
  background-color: #F9F9F9;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .postContent__newsletter {
    margin: 40px 0;
    padding: 24px;
  }
}
.postContent__newsletter-ttl {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.postContent__newsletter-text {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .postContent__newsletter-text {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
.postContent__newsletter-btn {
  margin-inline: auto;
}

/* News
--------------------------------------------- */
.news .inner12 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .news .inner12 {
    flex-wrap: wrap;
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.news__content {
  width: calc(100% - 320px);
  padding-right: 55px;
  padding-bottom: 55px;
}
@media only screen and (max-width: 768px) {
  .news__content {
    width: 100%;
    padding-right: 0;
    padding-bottom: 40px;
  }
}
.news .sidebar {
  width: 320px;
  padding-bottom: 55px;
  padding-left: 55px;
  border-left: 1px solid #D3D3D3;
}
@media only screen and (max-width: 768px) {
  .news .sidebar {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0;
    border-top: 1px solid #D3D3D3;
    border-left: none;
  }
}
.news .sidebar .ttl {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-weight: bold;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .news .sidebar .ttl {
    font-size: 18px;
    letter-spacing: 0.025em;
  }
}
.news .sidebar .news__sideList {
  margin-left: 0;
}
.news .sidebar .news__sideList li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dotted #D3D3D3;
  line-height: 1.4;
  text-align: left;
}
.news .sidebar .news__sideList a {
  color: #313131;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .news .sidebar .news__sideList a {
    font-size: 14px;
  }
}
.news .sidebar .news__sideList a:hover {
  text-decoration: underline;
}
.news .sidebar .tag__sideList {
  margin-top: 56px;
}
.news .sidebar .tag__sideList li {
  margin-bottom: 24px;
}
.news .sidebar .tag__sideList a {
  font-size: 18px;
  letter-spacing: 0.05em;
  display: block;
  width: 100%;
  padding: 8px 0;
  border: 2px solid #313131;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .news .sidebar .tag__sideList a {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .news .sidebar .tag__sideList a {
    border: 1px solid #313131;
  }
}
.news .sidebar .tag__sideList a:hover {
  background: #313131;
  color: #FFFFFF;
}
.news .sidebar .column-post {
  width: 100%;
  margin-bottom: 56px;
}
.news .sidebar .column-post li {
  margin-bottom: 16px;
}
.news .sidebar .column-post li:last-child {
  margin-bottom: 0;
}
.news .sidebar .column-post a {
  display: block;
  position: relative;
  width: 100%;
}
.news .sidebar .column-post a figure {
  margin-bottom: 8px;
}
.news .sidebar .column-post a figure img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.news .sidebar .column-post a div {
  width: 100%;
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
}
.news .sidebar .column-categories {
  width: 100%;
  margin-bottom: 56px;
}
.news .sidebar .column-categories li {
  margin-bottom: 16px;
}
.news .sidebar .column-categories li:last-child {
  margin-bottom: 0;
}
.news .sidebar .column-categories a {
  display: block;
  position: relative;
  width: 100%;
  padding: 4px 16px;
  border: 1px solid #313131;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
.news .sidebar .column-categories a:hover {
  background: #313131;
  color: #FFFFFF;
}
.news .sidebar .column-categories a::after {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transform: translateY(-50%);
}

/* Event
--------------------------------------------- */
.event .postContent__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .event .postContent__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.event__content {
  width: 100%;
}
.event__link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin: 56px auto 0;
}
@media only screen and (max-width: 768px) {
  .event__link {
    margin: 40px auto 0;
  }
}

/* Pagination
--------------------------------------------- */
/* Pagination
--------------------------------------------- */
.pagination .wp-pagenavi {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}
.pagination .pages {
  display: none;
}
.pagination span.current {
  opacity: 0.8;
  min-width: 48px;
  min-height: 48px;
  padding: 10px 0;
  border: 1px solid #313131;
  background: #313131;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .pagination span.current {
    min-width: 36px;
    min-height: 36px;
    padding: 5px 0;
  }
}
.pagination a {
  display: block;
  min-width: 48px;
  min-height: 48px;
  padding: 10px 0;
  color: #313131 !important;
  font-weight: 300;
  text-align: center;
  text-decoration: none !important;
}
@media only screen and (max-width: 768px) {
  .pagination a {
    min-width: 36px;
    min-height: 36px;
    padding: 5px 0;
  }
}
.pagination a:hover {
  background: #313131;
  color: #FFFFFF !important;
}

/* Loading
--------------------------------------------- */
#loading {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(360deg, rgb(235, 235, 235), rgb(249, 249, 249));
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #313131;
  font-size: 10px;
  margin: 0 auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
/* News Archive
--------------------------------------------- */
.news__archiveListItem {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E5E5;
  list-style-type: none;
}
@media only screen and (max-width: 768px) {
  .news__archiveListItem {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .news__archiveListItem {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.news__archiveListItem-tag {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  width: fit-content;
}
.news__archiveListItem-tag time {
  color: #A3A3A3;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .news__archiveListItem-tag time {
    font-size: 14px;
  }
}
.news__archiveListItem-tag .tag {
  margin-left: 24px;
  padding: 4px 16px;
  background-color: #F9F9F9;
  color: #313131;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .news__archiveListItem-tag .tag {
    font-size: 14px;
  }
}
.news__archiveListItem-tag .tag.press {
  background-color: #F2EEE5;
}
.news__archiveListItem-tag .tag.media {
  background-color: #F0F2E5;
}

/* Event Archive
--------------------------------------------- */
.event .inner12 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .event .inner12 {
    flex-wrap: wrap;
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.event__list {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-bottom: 56px;
  margin-left: 0 !important;
}
@media only screen and (max-width: 768px) {
  .event__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .event__list {
    grid-template-columns: 1fr;
  }
}
.event__listItem {
  list-style-type: none;
}
.event__listItem-thumb {
  margin-bottom: 8px;
}
.event__listItem-thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  width: 100%;
  margin: 0;
}
.event__listItem-txt time {
  color: #A3A3A3;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .event__listItem-txt time {
    font-size: 14px;
  }
}
.event__listItem-txt h3 {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .event__listItem-txt h3 {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
.event__listItem-txt h3::after {
  position: relative;
  width: 0;
  height: 0;
  background: transparent;
}
.event__listItem-tag {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  width: fit-content;
}
.event__listItem-tag time {
  color: #A3A3A3;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .event__listItem-tag time {
    font-size: 14px;
  }
}
.event__listItem-tag .tag {
  margin-left: 24px;
  padding: 4px 16px;
  background-color: #F9F9F9;
  color: #313131;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .event__listItem-tag .tag {
    font-size: 14px;
  }
}
.event__listItem-tag .tag.press {
  background-color: #F2EEE5;
}
.event__listItem-tag .tag.media {
  background-color: #F0F2E5;
}

/* Case Archive & Related
--------------------------------------------- */
.case .postContent__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .case .postContent__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin: 0 0 56px;
  padding: 0;
  list-style-type: none;
}
@media only screen and (max-width: 1024px) {
  .case-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .case-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.case-list__item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  list-style-type: none;
}
.case-list__item a {
  display: block;
  color: #313131 !important;
  text-decoration: none !important;
}
.case-list__item-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 0;
  overflow: hidden;
}
.case-list__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-list__item-title {
  width: 100%;
  padding: 24px 16px;
}
.case-list__item-title .post-taxonomy {
  display: block;
  position: relative;
  margin: 0 0 4px;
  padding-left: 50px;
  color: #9B9B9B;
  font-size: 14.4px;
  line-height: 1.6;
}
.case-list__item-title .post-taxonomy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #E5E5E5;
  transform: translateY(-50%);
}
.case-list__item-title h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background-color: transparent;
}
.case-list__item-title .post-desc {
  margin: 12px 0 0 0 !important;
  color: #9B9B9B;
  font-size: 15.2px;
  line-height: 1.6;
  letter-spacing: 0;
}
.case-list__item-title .post-tags {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin: 16px 0 0;
}
.case-list__item-title .post-tags dd {
  margin: 0;
  padding: 6px 8px 8px;
  background-color: #E5E5E5;
  color: #313131;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.postContenth__product {
  margin-top: 56px;
  margin-bottom: 56px;
}
.postContenth__product h3 {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .postContenth__product h3 {
    font-size: 18px;
    letter-spacing: 0.025em;
  }
}
.postContenth__product .case-product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 1024px) {
  .postContenth__product .case-product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .postContenth__product .case-product-list {
    grid-template-columns: 1fr;
  }
}
.postContenth__product .case-product-list__item {
  width: 100%;
}
.postContenth__product .case-product-list__item a {
  display: block;
  color: #313131 !important;
  text-decoration: none !important;
}
.postContenth__product .case-product-list__item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0;
}
.postContenth__product .case-product-list__item figcaption {
  margin-top: 16px;
  color: #313131;
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

.pager {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  margin-bottom: 56px;
  padding-top: 24px;
  border-top: 1px solid #D3D3D3;
}
.pager .prev,
.pager .next {
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .pager .prev,
  .pager .next {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}
.pager .prev a,
.pager .next a {
  color: #313131;
  text-decoration: underline;
}

.case__link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.column .postContent__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .column .postContent__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.column .postContent__body h3 {
  background-color: #313131;
  color: #FFFFFF;
}
.column .postContent__newsletter {
  background-color: #313131;
  color: #FFFFFF;
}
.column .postContent__newsletter-ttl, .column .postContent__newsletter-text {
  color: #FFFFFF;
}

/* category list
--------------------------------------------- */
.column-cats {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px 24px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .column-cats {
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-top: 0;
    margin-bottom: 24px;
  }
}
.column-cats__item::before, .column-cats__item::after {
  content: "";
  display: none !important;
  width: auto;
  height: auto;
  background-color: transparent;
}
.column-cats__item a {
  display: inline-block;
  width: auto;
  padding: 8px 24px;
  border: 1px solid #313131;
  color: #313131 !important;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
  line-height: 100%;
}
@media only screen and (max-width: 768px) {
  .column-cats__item a {
    padding: 8px 12px;
    font-size: 14px;
  }
}
.column-cats__item a:hover {
  background: #313131;
  color: #FFFFFF !important;
  transition: 0.3s ease-in-out;
  opacity: 1;
}

/* column list
--------------------------------------------- */
.column-list {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 40px 24px;
  width: 100%;
  margin-bottom: 64px;
  margin-left: 0 !important;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .column-list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .column-list {
    grid-template-columns: 1fr;
  }
}
.column-list__item {
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 480px) {
  .column-list__item {
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #D3D3D3;
  }
}
@media only screen and (max-width: 480px) {
  .column-list__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.column-list__item a {
  color: #313131 !important;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}
.column-list__item a:hover {
  opacity: 0.8;
  filter: opacity(80%);
}
.column-list__item figure {
  overflow: hidden;
  width: 100%;
  margin-bottom: 0 !important;
  aspect-ratio: 16/9;
}
.column-list__item figure img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.column-list__item figure img:hover {
  transform: scale(1.1);
}
.column-list__item-meta {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 8px;
}
.column-list__item-meta time,
.column-list__item-meta .datetime {
  display: inline-block;
  color: #9B9B9B;
  font-size: 14px;
  font-weight: 400;
}
.column-list__item-meta .blog-cat {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 16px;
  background-color: #F9F9F9;
  color: #313131;
  font-size: 14px;
  font-weight: 400;
}
.column-list__item-title {
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .column-list__item-title {
    grid-column: 1/3;
    grid-rows: 2/3;
  }
}
.column-list__item-title p {
  margin: 0;
  color: #313131;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .column-list__item-title p {
    font-size: 16px;
    letter-spacing: 0.025em;
  }
}

/* My Pattern（記事内で使う定型パターン）
--------------------------------------------- */
.kakomi {
  margin: 0 auto 40px;
  padding: 24px;
  border-top: 6px solid #313131;
  background-color: #F9F9F9;
  box-shadow: 0 4px 6px rgba(49, 49, 49, 0.16);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.kakomi ul,
.kakomi p {
  margin-bottom: 16px;
}
.kakomi ul:last-child,
.kakomi p:last-child {
  margin-bottom: 0 !important;
}

.kakomi_with_title {
  position: relative;
}
.kakomi_with_title .title {
  display: inline-block;
  margin-bottom: 24px;
  color: #313131;
  font-size: 20px;
  font-weight: 700;
}
.kakomi_with_title .title i {
  margin-right: 6px;
  color: #313131;
}

.related {
  position: relative;
  margin: 0 0 40px;
  padding: 24px;
  border: 2px solid #313131;
}
.related .title,
.related .related_title {
  margin-bottom: 24px;
  color: #313131;
  font-size: 20px;
  font-weight: 500;
}
.related .title i,
.related .related_title i {
  margin-right: 6px;
  color: #313131;
}
.related p {
  position: relative;
  margin-bottom: 16px;
}
.related p:last-child {
  margin-bottom: 0 !important;
}
.related ul {
  margin: 0 !important;
}
.related ul li {
  padding: 16px 0;
  border-top: 1px solid #D3D3D3;
  list-style-type: none;
  margin: 0 !important;
}
.related ul li:first-child {
  border-top: none;
}
.related ul li::before, .related ul li::after {
  content: "";
  display: none;
  width: auto;
  height: auto;
  background-color: transparent;
}
.related ul li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px 16px;
  text-decoration: none !important;
}
.related ul li .thumbnail {
  width: 28.75%;
  margin: 0 !important;
}
.related ul li .thumbnail img {
  margin: 0 !important;
}
.related ul li .post_title {
  width: 71.75%;
  color: #313131;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin: 0 !important;
}

.txtlink {
  position: relative;
  color: #295E8D;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
.txtlink::before {
  content: "\f0c1";
  display: inline-block;
  margin-right: 8px;
  color: #313131;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.cvbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  min-width: 280px;
  margin: 24px 0;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none !important;
  transition: 0.3s ease-in-out;
}
.cvbtn:hover {
  opacity: 0.8;
}
.cvbtn.cvbtn_1 {
  background-color: #313131;
  color: #FFFFFF !important;
}
.cvbtn.cvbtn_2 {
  border: 1px solid #313131;
  background-color: #FFFFFF;
  color: #313131 !important;
}

/* Error
--------------------------------------------- */
.error__inner {
  width: 100%;
  max-width: 1000px;
  padding-top: 100px;
  padding-bottom: 134px;
}
@media only screen and (max-width: 768px) {
  .error__inner {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.error h2 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .error h2 {
    margin-bottom: 12px;
    font-size: 21px;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
.error p {
  margin-bottom: 56px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .error p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }
}
.error__link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-top: 55px;
}
@media only screen and (max-width: 768px) {
  .error__link {
    margin-top: 40px;
  }
}

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