@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  position: relative;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-all;
}

ul,
ol {
  list-style: none;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #333;
  transition: opacity 0.1s linear;
  display: inline-block;
}
a:hover {
  opacity: 0.8;
}

input,
textarea,
select {
  outline: none;
  margin: 0;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

svg {
  overflow-x: visible;
  overflow-y: visible;
  display: inline-block;
}

img {
  caret-color: transparent;
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

:root {
  /*Space*/
  --space-xl5: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  --space-xl4: clamp(6.4rem, 5.837rem + 1.502vw, 8rem);
  --space-xl3: clamp(4.8rem, 4.237rem + 1.502vw, 6.4rem);
  --space-xl2: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  --space-xl: clamp(2.4rem, 2.118rem + 0.751vw, 3.2rem);
  --space-lg: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  --space-md: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
  --space-sm: clamp(0.8rem, 0.659rem + 0.376vw, 1.2rem);
  --space-xs: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  --space-xs2: clamp(0.2rem, 0.13rem + 0.188vw, 0.4rem);
  --space-xs3: clamp(0.2rem, 0.2rem + 0vw, 0.2rem);
  /*FontSize*/
  --font-size-xl5: clamp(4.8rem, 3.673rem + 3.005vw, 8rem);
  --font-size-xl4: clamp(4rem, 3.155rem + 2.254vw, 6.4rem);
  --font-size-xl3: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  --font-size-xl2: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  --font-size-xl: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  --font-size-lg: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  --font-size-md: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  --font-size-sm: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  --font-size-xs: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  --font-size-xs2: clamp(1rem, 1rem + 0vw, 1rem);
  /*Radius*/
  --radius-xl: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  --radius-lg: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  --radius-md: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  --radius-sm: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  --radius-xs: clamp(0.3rem, 0.3rem + 0vw, 0.3rem);
}

html {
  font-size: 62.5%;
  width: 100%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
  -ms-overflow-style: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}
body.is-menu-opened {
  overflow: hidden;
}

.ja {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.en {
  font-family: "Roboto", sans-serif;
}

.inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.inner._maxw-800 {
  max-width: 800px;
}
.inner._maxw-1200 {
  max-width: 1200px;
}

.l-header {
  background-color: #fff;
  padding-left: clamp(2rem, 0.592rem + 3.756vw, 6rem);
  padding-right: clamp(2rem, 0.592rem + 3.756vw, 6rem);
  border-bottom: 1px solid #eee;
  width: 100%;
  z-index: 100;
  z-index: 999;
}
body.home .l-header {
  border-bottom: none;
  background-color: transparent;
}
.l-header__inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.l-header.l-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-105%);
  background-color: #fff;
  transition: all ease-in-out 300ms;
  overflow: hidden;
}
.l-header.l-header-fixed.is-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}
.l-header.l-header-fixed.is-hide {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-105%);
}

.l-footer {
  background-color: #222;
  color: #fff;
  padding-top: clamp(12rem, 7.775rem + 11.268vw, 24rem);
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.l-footer::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 2880/202;
  background: url(../img/deco_footer.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  background-size: 100% 100%;
  left: 50%;
  top: -1px;
  translate: -50% 0;
  z-index: 1;
}
body.single-works .l-footer {
  padding-top: clamp(7rem, 4.887rem + 5.634vw, 13rem);
}
body.single-works .l-footer::before {
  content: none;
}
body.about-us .l-footer {
  padding-top: clamp(7rem, 4.887rem + 5.634vw, 13rem);
}
body.about-us .l-footer::before {
  content: none;
}
.l-footer__inner {
  position: relative;
}
.l-footer__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  text-align: center;
}
.l-footer__body {
  padding-bottom: clamp(9rem, 7.662rem + 3.568vw, 12.8rem);
}
.l-footer__foot {
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  color: #333;
  background-color: #fff;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
}
.l-footer__company-info {
  font-style: normal;
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
  line-height: 2;
}
.l-footer__company-info .tel-fax {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.l-footer .copyright {
  font-family: Arial, Helvetica, sans-serif;
}

.l-drawer {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 120%;
  top: 0;
  right: 0;
  transition: all 0.1s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.l-drawer::-webkit-scrollbar {
  display: none;
}
.l-drawer:not(.is-open) {
  translate: 0 -20px;
  opacity: 0;
  pointer-events: none;
}
.l-drawer__inner {
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  max-width: 400px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: clamp(11rem, 10.296rem + 1.878vw, 13rem);
  padding-bottom: clamp(6rem, 5.296rem + 1.878vw, 8rem);
}

.l-mv-lv2page {
  overflow: hidden;
  position: relative;
}
.l-mv-lv2page.dispay-delay-because-jump2contents-in-page {
  opacity: 0;
  animation: initLv2PageHead 0.2s 0.1s linear forwards;
}
@keyframes initLv2PageHead {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.btn-link {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  font-weight: 700;
}
.btn-link *,
.btn-link *::before,
.btn-link *::after {
  transition: all 0.1s linear;
}
.btn-link._frame {
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  font-weight: 700;
  gap: 1em;
  border: solid 2px #ddd;
  border-radius: 999px;
  padding: 1em 2em;
}
.btn-link._frame::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: auto;
  aspect-ratio: 1/2;
  background: url("../img/icon_arrow_black.svg") no-repeat center center;
  background-size: contain;
  translate: 0 0.2em;
}
.btn-link._fill-black {
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  font-weight: 700;
  gap: 1em;
  border-radius: 999px;
  padding: 1em 2em;
  background-color: #333;
  color: #fff;
}
.btn-link._fill-black::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: auto;
  aspect-ratio: 1/2;
  background: url("../img/icon_arrow_white.svg") no-repeat center center;
  background-size: contain;
}
.btn-link._with-maru-arrow-white {
  color: #fff;
  gap: 0.5em;
}
.btn-link._with-maru-arrow-white::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/icon_maru_arrow_white.svg") no-repeat center center;
  background-size: contain;
}
.btn-link._with-maru-arrow-black {
  gap: 0.5em;
}
.btn-link._with-maru-arrow-black::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/icon_maru_arrow_black.svg") no-repeat center center;
  background-size: contain;
}
.btn-link._with-maru-arrow-black._large {
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: var(--font-size-lg);
}
.btn-link._with-maru-arrow-black._small {
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
}

.btn-menu-open,
.btn-menu-close {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  margin-left: auto;
  background-color: #fff;
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  border-radius: var(--radius-sm);
}
.btn-menu-open *,
.btn-menu-open *::before,
.btn-menu-open *::after,
.btn-menu-close *,
.btn-menu-close *::before,
.btn-menu-close *::after {
  transition: all 0.1s linear;
}
.btn-menu-open img,
.btn-menu-close img {
  width: 32px;
  height: auto;
}
.btn-menu-open .icon-close,
.btn-menu-close .icon-close {
  display: none;
}
.btn-menu-open.is-open .icon-open,
.btn-menu-close.is-open .icon-open {
  display: none;
}
.btn-menu-open.is-open .icon-close,
.btn-menu-close.is-open .icon-close {
  display: block;
}

.btn-goto-head {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
}
.btn-goto-head *,
.btn-goto-head *::before,
.btn-goto-head *::after {
  transition: all 0.1s linear;
}

#btnScroll2Top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms linear;
}
#btnScroll2Top.is-show {
  opacity: 1;
  pointer-events: inherit;
}

.js-dropdown__body {
  padding-top: 34px;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
}
.js-dropdown__body:not(.is-open) {
  display: none;
}

.nav-global._in-header {
  display: flex;
  align-items: center;
  gap: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
  gap: var(--space-xl2);
}
body.home .nav-global._in-header {
  margin-left: auto;
  margin-right: auto;
}
.nav-global._in-drawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}
.nav-global__instagram img {
  aspect-ratio: 1/1;
  width: clamp(2.2rem, 2.094rem + 0.282vw, 2.5rem);
}
.nav-global .items-nav-global {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 1.037rem + 1.502vw, 3.2rem);
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
  font-weight: 600;
}
.nav-global .items-nav-global._in-drawer {
  flex-direction: column;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.nav-global .items-nav-global._in-footer {
  justify-content: center;
  flex-wrap: wrap;
}
.nav-global .items-nav-global._in-footer .item a {
  color: #fff;
}
.nav-global .items-nav-global._in-footer .item._aboutus a::before {
  background-image: url(../img/icon_gnav_1_aboutus_white.png);
}
.nav-global .items-nav-global._in-footer .item._works a::before {
  background-image: url(../img/icon_gnav_2_works_white.png);
}
.nav-global .items-nav-global._in-footer .item._cvoice a::before {
  background-image: url(../img/icon_gnav_3_cvoice_white.png);
}
.nav-global .items-nav-global._in-footer .item._information a::before {
  background-image: url(../img/icon_gnav_4_info_white.png);
}
.nav-global .items-nav-global._in-footer .item._faq a::before {
  background-image: url(../img/icon_gnav_5_faq_white.png);
}
.nav-global .items-nav-global._in-footer .item._contact a::before {
  background-image: url(../img/icon_gnav_6_contact_white.png);
}
.nav-global .items-nav-global .item a {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  gap: var(--space-xs);
}
.nav-global .items-nav-global .item a::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_gnav_1_aboutus.png) no-repeat center center;
  background-size: contain;
}
.nav-global .items-nav-global .item._aboutus a::before {
  background-image: url(../img/icon_gnav_1_aboutus.png);
}
.nav-global .items-nav-global .item._works a::before {
  background-image: url(../img/icon_gnav_2_works.png);
}
.nav-global .items-nav-global .item._cvoice a::before {
  background-image: url(../img/icon_gnav_3_cvoice.png);
}
.nav-global .items-nav-global .item._information a::before {
  background-image: url(../img/icon_gnav_4_info.png);
}
.nav-global .items-nav-global .item._faq a::before {
  background-image: url(../img/icon_gnav_5_faq.png);
}
.nav-global .items-nav-global .item._contact a::before {
  background-image: url(../img/icon_gnav_6_contact.png);
}

.nav-submenu .items-nav-submenu {
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-submenu .items-nav-submenu .item {
  padding-left: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  padding-right: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  position: relative;
}
.nav-submenu .items-nav-submenu .item:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 1.5em;
  transform: rotate(0deg);
  background-color: #aaa;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.nav-submenu .items-nav-submenu .item a {
  color: #fff;
  display: block;
}
.nav-submenu .items-nav-submenu .item a .icon-instagram {
  aspect-ratio: 1/1;
  width: clamp(2rem, 1.824rem + 0.469vw, 2.5rem);
}
.nav-submenu .items-nav-submenu._in-drawer a {
  color: #333;
}

.js-dropdown-body {
  padding-top: 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
}
.js-dropdown-body:not(.is-open) {
  display: none;
}

.nav-breadcrumb .items-nav-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em 0.75em;
}
.nav-breadcrumb .items-nav-breadcrumb .item {
  font-weight: 400;
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
}
.nav-breadcrumb .items-nav-breadcrumb .item a {
  font-weight: 600;
}
.nav-breadcrumb .items-nav-breadcrumb .item a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.nav-cat-works {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 1em;
  gap: 1em;
}
.nav-cat-works .ttl-page img {
  aspect-ratio: 18/69;
  width: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.nav-cat-works .deco::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 2em;
  transform: rotate(0deg);
  background-color: #333;
  position: relative;
}
.nav-cat-works .items-nav-cat-works {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5em;
  margin-left: auto;
  margin-right: auto;
}
.nav-cat-works .items-nav-cat-works .item {
  width: 100%;
}
.nav-cat-works .items-nav-cat-works .item a {
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  writing-mode: vertical-rl;
  padding: 0.5em 0.25em;
  border-radius: clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem);
  border: solid 1px #333;
  letter-spacing: 0.25em;
  font-weight: 600;
}
.nav-cat-works .items-nav-cat-works .item.current a {
  background-color: #333;
  color: #fff;
}

.nav-cat-faq .items-nav-cat-faq {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}
.nav-cat-faq .items-nav-cat-faq > * + * {
  margin-top: 1em;
}
.nav-cat-faq .items-nav-cat-faq .item a {
  display: block;
  padding: 0.5em 1.5em;
  border-radius: 999px;
  font-weight: 600;
  background-color: #f8f8f8;
}
.nav-cat-faq .items-nav-cat-faq .item.current a {
  color: #fff;
  background-color: #555;
}

.nav-cvoice .items-nav-cvoice {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}
.nav-cvoice .items-nav-cvoice .item a {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  border-radius: 50%;
  font-weight: 600;
  background-color: #f8f8f8;
  aspect-ratio: 1/1;
  width: 3em;
  height: auto;
}
.nav-cvoice .items-nav-cvoice .item.current a {
  color: #fff;
  background-color: #555;
}

.nav-information .items-nav-information {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  gap: 0.5em 1em;
}
.nav-information .items-nav-information .item a {
  font-weight: 600;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1.5em;
  border: solid 1px #aaa;
  background-color: #fff;
}
.nav-information .items-nav-information .item.current a {
  background-color: #555;
  border-color: #555;
  color: #fff;
}

.wp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: max(40px, min(4.39238653vw, 60px));
}
.wp-pagination .navigation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(8px, min(0.7320644217vw, 10px));
}
.wp-pagination .navigation .nav-links .page-numbers {
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  border: solid 1px #333;
  color: #333;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: max(50px, min(4.39238653vw, 60px));
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: all 0.1s linear;
}
.wp-pagination .navigation .nav-links .page-numbers.current {
  background-color: #333;
  color: #fff;
}
.wp-pagination .navigation .nav-links .page-numbers:hover {
  background-color: #333;
  color: #fff;
}
.wp-pagination .navigation .nav-links .next {
  display: none;
}
.wp-pagination .navigation .nav-links .prev {
  display: none;
}
.wp-pagination__button {
  aspect-ratio: 7/13;
  width: 0.8rem;
  fill: #aaa;
  pointer-events: none;
}
.wp-pagination__button.is-active {
  fill: #333;
  cursor: pointer;
  pointer-events: inherit;
}
.wp-pagination__button._prev {
  scale: -1 1;
}
.wp-pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}
.wp-pager a {
  color: #333;
  font-weight: 600;
  transition: all 0.1s linear;
  line-height: 1;
}
.wp-pager a:hover {
  opacity: 0.8;
}
.wp-pager__button {
  opacity: 0.3;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.wp-pager__button img {
  aspect-ratio: 2/3;
  height: 0.75em;
  margin-top: 0.1em;
}
.wp-pager__button:has(a) {
  opacity: 1;
}
.wp-pager__button._prev .icon {
  scale: -1 1;
}
.box-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.box-modal-container .box-modal {
  background-color: #fff;
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  border-radius: var(--radius-sm);
  width: calc(100% - clamp(4rem, 1.183rem + 7.512vw, 12rem));
  max-width: 800px;
  max-height: calc(100% - clamp(4rem, 2.592rem + 3.756vw, 8rem));
  padding: clamp(4rem, 3.296rem + 1.878vw, 6rem) clamp(2rem, 1.296rem + 1.878vw, 4rem);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  overflow-y: scroll;
}
.box-modal-container .box-modal .btn-link {
  padding: 0.75em 1.5em 0.8em;
}
.box-modal-container .box-modal-bg {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
}
.box-modal-container.is-open {
  opacity: 1;
  pointer-events: inherit;
}

.modal-illust {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  padding: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  background-color: #fff;
}
.modal-illust__inner {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.modal-illust__inner .illust {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
}
.modal-illust__inner .illust-description {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  max-width: 28em;
  font-weight: 400;
  line-height: 2;
}
.modal-illust__inner .illust-description .btn-link {
  margin-top: 1em;
  margin-left: auto;
}
.modal-illust .btn-close-modal {
  position: absolute;
  top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  right: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 1em;
  gap: 1em;
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
}
.modal-illust .btn-close-modal::before {
  content: "";
  display: inline-block;
  width: 3.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_close_modal.svg) no-repeat center center;
  background-size: contain;
}
.modal-illust.is-open {
  opacity: 1;
  pointer-events: inherit;
}

#modalVideo {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 2147483647;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
#modalVideo.close {
  filter: opacity(0);
  visibility: hidden;
}
#modalVideo.open {
  filter: opacity(1);
  visibility: visible;
}
#modalVideo iframe {
  width: 64vw;
  height: 36vw;
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.js-modal-video-open {
  cursor: pointer;
}

.items-blog {
  display: flex;
  gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}
.items-blog .item {
  width: 100%;
  flex: 1;
}
.items-blog .item a {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  gap: var(--font-size-sm);
}
.items-blog .item .thumbnail {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 1px #ccc;
}
.items-blog .item .title {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.items-blog .item .title::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background: url("../img/icon_maru_arrow.svg") no-repeat center center;
  background-size: contain;
  translate: 0 3%;
}

.items-interior-illust {
  display: flex;
  align-items: flex-start;
  width: calc(100% - clamp(4rem, -1.634rem + 15.023vw, 20rem));
  margin-left: auto;
  margin-right: auto;
}
.items-interior-illust .item {
  flex: 1;
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
}
.items-interior-illust .item:nth-child(odd) .item__illust {
  top: 0;
  left: 5%;
}
.items-interior-illust .item:nth-child(even) {
  margin-top: 15%;
}
.items-interior-illust .item:nth-child(even) .item__illust {
  top: 0;
  right: 5%;
}
.items-interior-illust .item__illust {
  max-width: none;
  position: absolute;
  width: 105%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.items-interior-illust .item__title {
  display: block;
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
  position: absolute;
  bottom: 0;
  right: calc(50% + 1em);
  padding-left: 1em;
}
.items-interior-illust .item__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 1em;
  height: 4em;
  transform: rotate(0deg);
  background-color: transparent;
  border-bottom: 1px solid #aaa;
  border-right: 1px solid #aaa;
  bottom: 50%;
  left: calc(100% + 0em);
}

.items-making-shop {
  display: flex;
  gap: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  flex-direction: row-reverse;
}
.items-making-shop .item {
  width: clamp(24rem, 17.662rem + 16.901vw, 42rem);
  flex-shrink: 0;
}
.items-making-shop .item__image {
  aspect-ratio: 400/500;
  width: 100%;
  height: auto;
}
.items-making-shop .item__text {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.items-making-shop .item__text .title {
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.items-making-shop .item__text .title .number {
  background-color: #333;
  color: #fff;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  aspect-ratio: 1/1;
  width: 2em;
  border-radius: 50%;
  font-weight: 600;
}
.items-making-shop .item__text .description {
  margin-top: 1.5em;
  line-height: 2;
  font-weight: 400;
}

.items-information {
  width: 100%;
  display: grid;
  grid-gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-row-gap: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  row-gap: clamp(3rem, 2.296rem + 1.878vw, 5rem);
}
.items-information .item {
  width: 100%;
}
.items-information .item a {
  display: block;
}
.items-information .item a:hover {
  opacity: 1;
}
.items-information .item a:hover .item__thumb img {
  scale: 1.1;
}
.items-information .item__thumb {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.items-information .item__thumb img {
  transition: all 0.1s linear;
}
.items-information .item__text {
  margin-top: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.items-information .item__text .date {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}
.items-information .item__text .title {
  margin-top: 0.25em;
  font-weight: 700;
}
.items-information .item__text .cat {
  margin-top: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border: solid 1px #aaa;
  background-color: #fff;
}

.items-works-cvoice {
  width: 100%;
  display: grid;
  grid-gap: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  gap: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-row-gap: 30px;
  row-gap: 30px;
}
.items-works-cvoice .item {
  width: 100%;
}
.items-works-cvoice .item a {
  display: block;
  width: 100%;
}
.items-works-cvoice .item__thumb {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.items-works-cvoice .item__text {
  text-align: center;
  padding-top: 10px;
}
.items-works-cvoice .item__text .information {
  margin-top: 0.25em;
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
}

.items-faq > * + * {
  margin-top: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
}
.items-faq .item {
  border: solid 1px #ccc;
  border-radius: clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem);
  background-color: #fcfcfc;
}
.items-faq .item__head {
  padding: 1.5em 1.5em;
}
.items-faq .item__head::after {
  right: 1.5em;
}
.items-faq .item__body {
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-bottom: 1.5em;
}
.items-faq .item .question {
  font-weight: 600;
  padding-right: 1em;
}
.items-faq .item .answer {
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  line-height: 2;
}
.items-faq .item .answer::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 5/1;
  background: url("../img/deco_arrow_faq.svg") no-repeat center center;
  background-size: contain;
  margin-top: 0.85em;
  opacity: 0.6;
}

.items-works-photo {
  width: 100%;
  display: grid;
  grid-gap: clamp(1rem, 0.648rem + 0.939vw, 2rem);
  gap: clamp(1rem, 0.648rem + 0.939vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  align-items: start;
}
.items-works-photo .item {
  cursor: pointer;
  position: relative;
}
.items-works-photo .item__thumb {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.items-works-photo .item__thumb .thumbnail {
  max-height: 400px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.1s linear;
}
.items-works-photo .item__title {
  margin-top: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  font-weight: 500;
  text-align: center;
}
.items-works-photo .item__description {
  margin-top: clamp(1rem, 0.859rem + 0.376vw, 1.4rem);
  font-weight: 400;
  line-height: 2;
}

.items-works .item a {
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 1em;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.items-works .item a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 0;
  left: 0;
  transition: all 0.1s linear;
}
.items-works .item a:hover {
  opacity: 1;
}
.items-works .item a:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.items-works .item a:hover .item__image {
  scale: 1.05;
}
.items-works .item__icon-new {
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  aspect-ratio: 1/1;
  width: 6em;
  border-radius: 50%;
  border: solid clamp(0.1rem, 0.065rem + 0.094vw, 0.2rem) #fff;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: "Inter", sans-serif;
  position: absolute;
  z-index: 2;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  top: 1.25em;
  right: 1.25em;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.15);
}
.items-works .item__image {
  transition: all 0.1s linear;
}
.items-works .item__info {
  color: #fff;
  position: relative;
  z-index: 2;
}
.items-works .item__info__main {
  display: flex;
  align-items: center;
  gap: 0.5em 0.75em;
  font-size: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
}
.items-works .item__info__sub {
  margin-top: 0.5em;
  display: flex;
  align-items: center;
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
  gap: 0.25em 0.5em;
}
.items-works .item__info .cat {
  font-size: 1rem;
  color: #333;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 0.75em;
  background-color: #fff;
  border-radius: clamp(0.2rem, 0.13rem + 0.188vw, 0.4rem);
  flex-shrink: 0;
}
.items-works .item__info .separator {
  display: block;
  font-size: 0.75em;
}
.items-works._other .item {
  aspect-ratio: 1/1;
  width: clamp(25rem, 20.423rem + 12.207vw, 38rem);
  height: auto;
}
.items-works._archive {
  display: grid;
  grid-auto-rows: auto;
  grid-gap: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
  gap: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
}
.items-works._archive .item {
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.items-works._archive .item a:hover img {
  scale: 1.035;
}
.items-works._pickup .item {
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.items-works._pickup .item a:hover img {
  scale: 1.035;
}
.items-works._top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: clamp(1.6rem, 1.107rem + 1.315vw, 3rem);
  gap: clamp(1.6rem, 1.107rem + 1.315vw, 3rem);
  padding-top: clamp(1.6rem, 1.107rem + 1.315vw, 3rem);
}
.items-works._top .item {
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.items-works._top .item a:hover img {
  scale: 1.035;
}

.l-wrap-by-ownwidth {
  container-type: inline-size;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1em;
}
.l-wrap-by-ownwidth > * {
  flex: 1 1 calc(100% - 1em);
}
.l-wrap-by-ownwidth._w700-g24-48 {
  gap: max(24px, min(3.513909224vw, 48px));
}
@container (width >= 700px) {
  .l-wrap-by-ownwidth._w700-g24-48 > * {
    flex: 1 1 calc(50% - max(24px, min(3.513909224vw, 48px)));
  }
}
.l-wrap-by-ownwidth._w800-g24-48 {
  gap: max(24px, min(3.513909224vw, 48px));
}
@container (width >= 800px) {
  .l-wrap-by-ownwidth._w800-g24-48 > * {
    flex: 1 1 calc(50% - max(24px, min(3.513909224vw, 48px)));
  }
}

.carousel-other-works {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.carousel-other-works__ui {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 946px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.carousel-other-works__ui .swiper-scrollbar {
  position: relative;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  background-color: #888;
}
.carousel-other-works__ui .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #eee;
}
.carousel-other-works__ui .btn-link {
  flex-shrink: 0;
}

.carousel-mv-top {
  overflow: hidden;
}
.carousel-mv-top__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 390/220;
}
.carousel-mv-top__pagination {
  width: auto !important;
  left: 16.1054172767vw !important;
  bottom: 20px !important;
}
.carousel-mv-top__pagination .swiper-pagination-bullet {
  border-radius: 0 !important;
  width: 36px;
  height: 4px;
  opacity: 1;
  background-color: #fff;
  transition: all 0.3s ease;
  caret-color: transparent;
}
.carousel-mv-top__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0c80b4;
  translate: 0 -6px;
}

.effect-fadeout-zoomup .swiper-slide-active img,
.effect-fadeout-zoomup .swiper-slide-duplicate-active img,
.effect-fadeout-zoomup .swiper-slide-prev img {
  width: 100%;
  height: auto;
  animation: mvZoomUp 8s linear 0s normal both;
}
@keyframes mvZoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.effect-pan .swiper-slide-duplicate-active > *,
.effect-pan .swiper-slide-prev > *,
.effect-pan .swiper-slide-active > * {
  animation: pan_r2l 8s linear 0s 1 normal both;
}
@keyframes pan_l2r {
  0% {
    transform: scale(1.06) translateX(-3%);
  }
  100% {
    transform: scale(1.06) translateX(3%);
  }
}
@keyframes pan_r2l {
  0% {
    transform: scale(1.06) translateX(3%);
  }
  100% {
    transform: scale(1.06) translateX(-3%);
  }
}

.js-tab-content:not(.is-active) {
  display: none;
}

.js-accordion-head {
  position: relative;
}
.js-accordion-head::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_accordion_close.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.js-accordion-head:not(.is-open)::after {
  background-image: url("../img/icon_accordion_open.svg");
}

.js-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  box-sizing: border-box;
  position: relative;
}
.js-accordion-body:not(.is-open) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.c-maru-arrow-down {
  width: 64px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  position: relative;
  border-radius: 50%;
  margin-top: -20px;
  background-color: #000;
  z-index: 2;
}
.c-maru-arrow-down._large {
  width: 80px;
  height: 80px;
}
.c-maru-arrow-down img {
  aspect-ratio: 1/1;
  width: 33%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-bourbon {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding: 0.5em 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eee;
  color: inherit;
  border-radius: 9999px;
}
.c-bourbon._frame {
  background-color: transparent;
  outline: solid 2px currentColor;
  outline-offset: calc -2px;
}

.c-marked-text {
  font-size: max(1.9rem, min(1.756954612vw, 2.4rem));
  font-weight: 900;
  overflow: hidden;
}
.c-marked-text > span {
  background-color: #ffea00;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  line-height: 2.4;
  padding: 0.25em 0.5em;
  text-align: center;
}

.logo-corporate a {
  color: #333;
  display: flex;
  align-items: center;
}
.logo-corporate a .logo {
  width: clamp(16rem, 12.69rem + 8.826vw, 25.4rem);
  height: auto;
  max-width: none;
}
.logo-corporate img {
  max-width: 100px;
  height: 100%;
}
.logo-corporate._in-footer a .logo {
  width: clamp(26rem, 21.07rem + 13.146vw, 40rem);
}

table {
  width: 100%;
  caret-color: transparent;
}

.tbl-company-spec {
  font-size: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
}
.tbl-company-spec tr {
  border-bottom: solid 1px #aaa;
}
.tbl-company-spec tr > * {
  padding: 1.25em 1em;
}
.tbl-company-spec tr th {
  font-weight: 600;
  width: 8em;
}
.tbl-company-spec tr td {
  padding-left: 1em;
  font-weight: 400;
  width: calc(100% - 8em);
}
.tbl-company-spec tr td a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.tbl-xxxxx._cl-12-29-59 tr th {
  width: 12%;
}
.tbl-xxxxx._cl-12-29-59 tr td:nth-of-type(1) {
  width: 29%;
}
.tbl-xxxxx._cl-12-29-59 tr td:nth-of-type(2) {
  width: 59%;
}

.tbl-kadomaru {
  border-collapse: separate;
  box-sizing: border-box;
}
.tbl-kadomaru thead {
  background-color: #eee;
}
.tbl-kadomaru thead th {
  border-top: solid 2px #ddd;
}
.tbl-kadomaru thead th:first-child {
  border-left: solid 2px #ddd;
  border-top-left-radius: clamp(0.6rem, 0.53rem + 0.188vw, 0.8rem);
}
.tbl-kadomaru thead th:last-child {
  border-right: solid 2px #ddd;
  border-top-right-radius: clamp(0.6rem, 0.53rem + 0.188vw, 0.8rem);
}
.tbl-kadomaru tbody {
  background-color: #fff;
}
.tbl-kadomaru tbody tr:last-child *:first-child {
  border-bottom-left-radius: clamp(0.6rem, 0.53rem + 0.188vw, 0.8rem);
}
.tbl-kadomaru tbody tr:last-child *:last-child {
  border-bottom-right-radius: clamp(0.6rem, 0.53rem + 0.188vw, 0.8rem);
}
.tbl-kadomaru tbody tr th:first-child {
  border-left: solid 2px #ddd;
}
.tbl-kadomaru tbody th,
.tbl-kadomaru tbody td {
  border-right: solid 2px #ddd;
  border-bottom: solid 2px #ddd;
}

.tbl-vertical-when-sp {
  writing-mode: vertical-lr;
}
.tbl-vertical-when-sp td,
.tbl-vertical-when-sp th {
  writing-mode: horizontal-tb;
}

section {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
section._pt30_40 {
  padding-top: max(30px, min(2.9282576867vw, 40px));
}
section._pt40-60 {
  padding-top: max(40px, min(4.39238653vw, 60px));
}
section._pt60-80 {
  padding-top: max(60px, min(5.8565153734vw, 80px));
}
section._pt60-120 {
  padding-top: max(60px, min(8.78477306vw, 120px));
}
section._pt80-160 {
  padding-top: max(80px, min(11.7130307467vw, 160px));
}
section._pb60-120 {
  padding-bottom: max(60px, min(8.78477306vw, 120px));
}
section._pb80-120 {
  padding-bottom: max(80px, min(8.78477306vw, 120px));
}
section._pb80-160 {
  padding-bottom: max(80px, min(11.7130307467vw, 160px));
}
section._pb90-180 {
  padding-bottom: max(90px, min(13.17715959vw, 180px));
}
section._pb200_320 {
  padding-bottom: max(200px, min(23.4260614934vw, 320px));
}
section._pb240_480 {
  padding-bottom: max(240px, min(35.1390922401vw, 480px));
}

.c-marquee-texts {
  color: #005faf;
  font-size: max(4rem, min(7.3206442167vw, 10rem));
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
}
.c-marquee-texts > .text {
  pointer-events: none;
  display: block;
  display: flex;
  padding-left: 0.25em;
  gap: 0.25em;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.c-marquee-texts > .text > * {
  display: block;
}

.c-loop-slider-by-over3child {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.c-loop-slider-by-over3child > * {
  padding-left: max(15px, min(2.196193265vw, 30px));
  animation: loop-slider 50s linear infinite;
}
@keyframes loop-slider {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.u-none,
.u-misai {
  display: none !important;
}

.u-screen-reader-text,
.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-fs14_16 {
  font-size: max(1.4rem, min(1.1713030747vw, 1.6rem)) !important;
}

.u-fs28_32 {
  font-size: max(2.8rem, min(2.3426061493vw, 3.2rem)) !important;
}

.u-lh10 {
  line-height: 1 !important;
}

.u-lh11 {
  line-height: 1.1 !important;
}

.u-lh12 {
  line-height: 1.2 !important;
}

.u-lh15 {
  line-height: 1.5 !important;
}

.u-lh17 {
  line-height: 1.7 !important;
}

.u-lh18 {
  line-height: 1.8 !important;
}

.u-lh20 {
  line-height: 2 !important;
}

.u-fw700 {
  font-weight: 700 !important;
}

.u-tc-red {
  color: #b70000 !important;
}

.u-tc-orange {
  color: #ff6b00 !important;
}

.u-tc-green {
  color: #008d1e !important;
}

.u-tc-black {
  color: #000 !important;
}

.u-tc-white {
  color: #fff !important;
}

.u-tc-pink {
  color: #ff016a !important;
}

.u-tc-blue {
  color: #00c8f8 !important;
}

.u-kadomaru {
  overflow: hidden;
  border-radius: 1em;
  isolation: isolate;
}
.u-kadomaru._s {
  border-radius: max(4px, min(0.7320644217vw, 10px));
}
.u-kadomaru._m {
  border-radius: max(10px, min(1.4641288433vw, 20px));
}
.u-kadomaru._l {
  border-radius: max(30px, min(2.9282576867vw, 40px));
}

.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

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

.u-pb40_60 {
  padding-bottom: max(40px, min(4.39238653vw, 60px)) !important;
}

.u-pb40_80 {
  padding-bottom: max(40px, min(5.8565153734vw, 80px)) !important;
}

.u-pb40_90 {
  padding-bottom: max(40px, min(6.588579795vw, 90px)) !important;
}

.u-pb60_130 {
  padding-bottom: max(60px, min(9.5168374817vw, 130px)) !important;
}

.u-pb70_120 {
  padding-bottom: max(70px, min(8.78477306vw, 120px)) !important;
}

.u-pb80_120 {
  padding-bottom: max(80px, min(8.78477306vw, 120px)) !important;
}

.u-pb100_140 {
  padding-bottom: max(100px, min(10.2489019034vw, 140px)) !important;
}

.u-pb100_200 {
  padding-bottom: max(140px, min(14.6412884334vw, 200px)) !important;
}

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

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt60_100 {
  padding-top: max(60px, min(7.3206442167vw, 100px)) !important;
}

.u-pt60_120 {
  padding-top: max(60px, min(8.78477306vw, 120px)) !important;
}

.u-pt64_120 {
  padding-top: max(64px, min(8.78477306vw, 120px)) !important;
}

.u-pt70_80 {
  padding-top: max(70px, min(5.8565153734vw, 80px)) !important;
}

.u-pt80_120 {
  padding-top: max(80px, min(8.78477306vw, 120px)) !important;
}

.u-pt100_140 {
  padding-top: max(100px, min(10.2489019034vw, 140px)) !important;
}

.u-mt1em {
  margin-top: 1em !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5_10 {
  margin-top: max(5px, min(0.7320644217vw, 10px)) !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt10_15 {
  margin-top: max(10px, min(1.0980966325vw, 15px)) !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt15_20 {
  margin-top: max(15px, min(1.4641288433vw, 20px)) !important;
}

.u-mt16_24 {
  margin-top: max(16px, min(1.756954612vw, 24px)) !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt20_30 {
  margin-top: max(20px, min(2.196193265vw, 30px)) !important;
}

.u-mt20_40 {
  margin-top: max(20px, min(2.9282576867vw, 40px)) !important;
}

.u-mt20_50 {
  margin-top: max(20px, min(3.6603221083vw, 50px)) !important;
}

.u-mt20_60 {
  margin-top: max(20px, min(4.39238653vw, 60px)) !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mt24_48 {
  margin-top: max(24px, min(3.513909224vw, 48px)) !important;
}

.u-mt25_30 {
  margin-top: max(25px, min(2.196193265vw, 30px)) !important;
}

.u-mt25_60 {
  margin-top: max(25px, min(4.39238653vw, 60px)) !important;
}

.u-mt30_50 {
  margin-top: max(30px, min(3.6603221083vw, 50px)) !important;
}

.u-mt30_60 {
  margin-top: max(30px, min(4.39238653vw, 60px)) !important;
}

.u-mt30_70 {
  margin-top: max(30px, min(5.1244509517vw, 70px)) !important;
}

.u-mt30_40 {
  margin-top: max(30px, min(2.9282576867vw, 40px)) !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mt32_64 {
  margin-top: max(32px, min(4.6852122987vw, 64px)) !important;
}

.u-mt35_40 {
  margin-top: max(35px, min(2.9282576867vw, 40px)) !important;
}

.u-mt35_50 {
  margin-top: max(35px, min(3.6603221083vw, 50px)) !important;
}

.u-mt35_55 {
  margin-top: max(35px, min(4.0263543192vw, 55px)) !important;
}

.u-mt35_80 {
  margin-top: max(35px, min(5.8565153734vw, 80px)) !important;
}

.u-mt40_50 {
  margin-top: max(40px, min(3.6603221083vw, 50px)) !important;
}

.u-mt40_60 {
  margin-top: max(40px, min(4.39238653vw, 60px)) !important;
}

.u-mt40_64 {
  margin-top: max(40px, min(4.6852122987vw, 64px)) !important;
}

.u-mt40_70 {
  margin-top: max(40px, min(5.1244509517vw, 70px)) !important;
}

.u-mt40_80 {
  margin-top: max(40px, min(5.8565153734vw, 80px)) !important;
}

.u-mt40_90 {
  margin-top: max(40px, min(6.588579795vw, 90px)) !important;
}

.u-mt40_100 {
  margin-top: max(40px, min(7.3206442167vw, 100px)) !important;
}

.u-mt45_70 {
  margin-top: max(45px, min(5.1244509517vw, 70px)) !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt50_60 {
  margin-top: max(50px, min(4.39238653vw, 60px)) !important;
}

.u-mt50_70 {
  margin-top: max(50px, min(5.1244509517vw, 70px)) !important;
}

.u-mt50_80 {
  margin-top: max(50px, min(5.8565153734vw, 80px)) !important;
}

.u-mt50_100 {
  margin-top: max(50px, min(7.3206442167vw, 100px)) !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt60_80 {
  margin-top: max(60px, min(5.8565153734vw, 80px)) !important;
}

.u-mt60_90 {
  margin-top: max(60px, min(6.588579795vw, 90px)) !important;
}

.u-mt60_100 {
  margin-top: max(60px, min(7.3206442167vw, 100px)) !important;
}

.u-mt60_120 {
  margin-top: max(60px, min(8.78477306vw, 120px)) !important;
}

.u-mt64 {
  margin-top: 64px !important;
}

.u-mt40_120 {
  margin-top: max(40px, min(8.78477306vw, 120px)) !important;
}

.u-mt70_100 {
  margin-top: max(70px, min(7.3206442167vw, 100px)) !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt80_120 {
  margin-top: max(80px, min(8.78477306vw, 120px)) !important;
}

.u-mt80_160 {
  margin-top: max(80px, min(11.7130307467vw, 160px)) !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb70_100 {
  margin-bottom: max(70px, min(7.3206442167vw, 100px)) !important;
}

.u-mt-onlysp10 {
  margin-top: 10px;
}

.u-mt-onlysp20 {
  margin-top: 20px;
}

.u-mi-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-remove-mt-1st-child > *:first-child {
  margin-top: 0 !important;
}

.u-fill-parent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.u-img-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.u-img-frame > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-endpoint-of-linkto {
  position: absolute;
  left: 0;
  top: -100px;
  height: 1px;
  width: 1px;
  visibility: hidden;
  pointer-events: none;
}

.with-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.2s ease-in-out;
}
.with-shadow:hover {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

@keyframes kf_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kf_fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes kf_fadeup {
  from {
    opacity: 0;
    translate: 0 30px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes kf_popin {
  0% {
    scale: 1 0.9;
    translate: 0 0;
    opacity: 0;
  }
  30% {
    scale: 1 1.2;
    translate: 0 -30%;
    opacity: 1;
  }
  100% {
    scale: 1 1;
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes kf_nyokittoin {
  0% {
    translate: 0 100%;
  }
  100% {
    translate: 0 0%;
  }
}
.js-put-fadein {
  transition: all 1s ease;
}
.js-put-fadein:not(.is-played) {
  translate: 0 50px;
  opacity: 0;
}

.js-put-fadein-static {
  transition: all 0.5s 0.1s ease;
}
.js-put-fadein-static:not(.is-played) {
  translate: 0 0px;
  opacity: 0;
}

.js-put-popin {
  opacity: 0;
}
.js-put-popin.is-played {
  animation: kf_popin 1s ease forwards;
}

.js-put-nyokittoin {
  translate: 0 100%;
  transform-origin: center bottom;
}
.js-put-nyokittoin.is-played {
  animation: kf_nyokittoin 1s ease forwards;
}

.js-put-samidare-fadein-to-child > * {
  transition: all 0.5s ease;
}
.js-put-samidare-fadein-to-child > *:nth-child(1) {
  transition-delay: 0.15s;
}
.js-put-samidare-fadein-to-child > *:nth-child(2) {
  transition-delay: 0.3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(3) {
  transition-delay: 0.45s;
}
.js-put-samidare-fadein-to-child > *:nth-child(4) {
  transition-delay: 0.6s;
}
.js-put-samidare-fadein-to-child > *:nth-child(5) {
  transition-delay: 0.75s;
}
.js-put-samidare-fadein-to-child > *:nth-child(6) {
  transition-delay: 0.9s;
}
.js-put-samidare-fadein-to-child > *:nth-child(7) {
  transition-delay: 1.05s;
}
.js-put-samidare-fadein-to-child > *:nth-child(8) {
  transition-delay: 1.2s;
}
.js-put-samidare-fadein-to-child > *:nth-child(9) {
  transition-delay: 1.35s;
}
.js-put-samidare-fadein-to-child > *:nth-child(10) {
  transition-delay: 1.5s;
}
.js-put-samidare-fadein-to-child > *:nth-child(11) {
  transition-delay: 1.65s;
}
.js-put-samidare-fadein-to-child > *:nth-child(12) {
  transition-delay: 1.8s;
}
.js-put-samidare-fadein-to-child > *:nth-child(13) {
  transition-delay: 1.95s;
}
.js-put-samidare-fadein-to-child > *:nth-child(14) {
  transition-delay: 2.1s;
}
.js-put-samidare-fadein-to-child > *:nth-child(15) {
  transition-delay: 2.25s;
}
.js-put-samidare-fadein-to-child > *:nth-child(16) {
  transition-delay: 2.4s;
}
.js-put-samidare-fadein-to-child > *:nth-child(17) {
  transition-delay: 2.55s;
}
.js-put-samidare-fadein-to-child > *:nth-child(18) {
  transition-delay: 2.7s;
}
.js-put-samidare-fadein-to-child > *:nth-child(19) {
  transition-delay: 2.85s;
}
.js-put-samidare-fadein-to-child > *:nth-child(20) {
  transition-delay: 3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(21) {
  transition-delay: 3.15s;
}
.js-put-samidare-fadein-to-child > *:nth-child(22) {
  transition-delay: 3.3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(23) {
  transition-delay: 3.45s;
}
.js-put-samidare-fadein-to-child > *:nth-child(24) {
  transition-delay: 3.6s;
}
.js-put-samidare-fadein-to-child > *:nth-child(25) {
  transition-delay: 3.75s;
}
.js-put-samidare-fadein-to-child > *:nth-child(26) {
  transition-delay: 3.9s;
}
.js-put-samidare-fadein-to-child > *:nth-child(27) {
  transition-delay: 4.05s;
}
.js-put-samidare-fadein-to-child > *:nth-child(28) {
  transition-delay: 4.2s;
}
.js-put-samidare-fadein-to-child > *:nth-child(29) {
  transition-delay: 4.35s;
}
.js-put-samidare-fadein-to-child > *:nth-child(30) {
  transition-delay: 4.5s;
}
.js-put-samidare-fadein-to-child:not(.is-played) > * {
  translate: 0 30px;
  opacity: 0;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(1) {
  transition-delay: 0.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(2) {
  transition-delay: 0.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(3) {
  transition-delay: 0.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(4) {
  transition-delay: 1.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(5) {
  transition-delay: 1.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(6) {
  transition-delay: 1.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(7) {
  transition-delay: 2.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(8) {
  transition-delay: 2.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(9) {
  transition-delay: 2.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(10) {
  transition-delay: 3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(11) {
  transition-delay: 3.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(12) {
  transition-delay: 3.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(13) {
  transition-delay: 3.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(14) {
  transition-delay: 4.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(15) {
  transition-delay: 4.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(16) {
  transition-delay: 4.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(17) {
  transition-delay: 5.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(18) {
  transition-delay: 5.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(19) {
  transition-delay: 5.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(20) {
  transition-delay: 6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(21) {
  transition-delay: 6.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(22) {
  transition-delay: 6.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(23) {
  transition-delay: 6.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(24) {
  transition-delay: 7.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(25) {
  transition-delay: 7.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(26) {
  transition-delay: 7.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(27) {
  transition-delay: 8.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(28) {
  transition-delay: 8.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(29) {
  transition-delay: 8.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(30) {
  transition-delay: 9s;
}

/*-----------------------------------------------------
  TOPのMV
  -----------------------------------------------------*/
/*-----------------------------------------------------
  採用TOPのMV
  -----------------------------------------------------*/
.js-change-scroll-direction__sticky-wrap {
  position: sticky !important;
  overflow: hidden;
  top: 0;
  left: 0;
}
.js-change-scroll-direction__contents {
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
}

.js-change-scroll-direction-gsap {
  overflow: hidden;
}
.js-change-scroll-direction-gsap__contents {
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
}

.biz-calendar-custom #biz_calendar {
  max-width: none;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
}
.biz-calendar-custom #biz_calendar table.bizcal {
  border: none;
  border-collapse: separate;
  border-spacing: 4px;
  font-size: max(1.4rem, min(1.1713030747vw, 2.4rem));
  margin: 0;
}
.biz-calendar-custom #biz_calendar table.bizcal th {
  background-color: transparent;
  color: #666666;
}
.biz-calendar-custom #biz_calendar table.bizcal th:first-child {
  color: #fb7f22;
}
.biz-calendar-custom #biz_calendar table.bizcal th:nth-last-of-type(1) {
  color: #469de2;
}
.biz-calendar-custom #biz_calendar table.bizcal td {
  background-color: #f7f7f7;
  color: #666666;
  padding: 0.75em 0;
}
.biz-calendar-custom #biz_calendar table.bizcal td:empty {
  background-color: #ededed;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today {
  color: #333;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-weight: 900;
  position: relative;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.25em;
  height: 0.25em;
  transform: rotate(0deg);
  background-color: #000;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today.holiday::after {
  background-color: #fff;
}
.biz-calendar-custom #biz_calendar table.bizcal td.holiday {
  background-color: #fb7f22;
  color: #f7f7f7;
}
.biz-calendar-custom #biz_calendar table.bizcal td.eventday {
  color: #f7f7f7;
}
.biz-calendar-custom #biz_calendar table.bizcal .calmonth {
  color: #333;
  background-color: transparent;
  font-size: max(1.8rem, min(1.317715959vw, 2.2rem));
  padding-left: 0.5em;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn {
  background-color: transparent;
  position: relative;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn img {
  display: none;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.down-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_prev.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.today-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_home.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.up-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_next.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar p {
  padding-left: 4px;
  font-weight: 500;
  margin-top: 20px;
  margin-right: 1.5em;
  display: inline-block;
}
.biz-calendar-custom #biz_calendar p span.boxholiday {
  background-color: #fb7f22;
}
.biz-calendar-custom__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.biz-calendar-custom__body > li.widget {
  list-style: none;
}
.biz-calendar-custom__body > li.widget::marker {
  content: none;
}
.biz-calendar-custom__body .widgettitle {
  display: none;
}

.my-smf-container input[type=text],
.my-smf-container input[type=email],
.my-smf-container input[type=tel],
.my-smf-container .smf-form .smf-select-control__control,
.my-smf-container textarea,
.my-smf-container .smf-form .smf-textarea-control__control {
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: max(16px, min(1.4641288433vw, 20px)) max(16px, min(1.4641288433vw, 20px)) max(15px, min(1.317715959vw, 18px));
  border: solid 1px #f0f0f0;
  border-radius: max(3px, min(0.3660322108vw, 5px));
  width: 100%;
  font-weight: 500;
  background-color: #f0f0f0;
  caret-color: auto;
  line-height: 1.5;
  box-shadow: none;
}
.my-smf-container input[type=text]:focus,
.my-smf-container input[type=email]:focus,
.my-smf-container input[type=tel]:focus,
.my-smf-container .smf-form .smf-select-control__control:focus,
.my-smf-container textarea:focus,
.my-smf-container .smf-form .smf-textarea-control__control:focus {
  background-color: #fff;
  border-color: #c1c1c1;
}
.my-smf-container input[type=text]::-moz-placeholder, .my-smf-container input[type=email]::-moz-placeholder, .my-smf-container input[type=tel]::-moz-placeholder, .my-smf-container .smf-form .smf-select-control__control::-moz-placeholder, .my-smf-container textarea::-moz-placeholder, .my-smf-container .smf-form .smf-textarea-control__control::-moz-placeholder {
  color: #989898;
}
.my-smf-container input[type=text]::placeholder,
.my-smf-container input[type=email]::placeholder,
.my-smf-container input[type=tel]::placeholder,
.my-smf-container .smf-form .smf-select-control__control::placeholder,
.my-smf-container textarea::placeholder,
.my-smf-container .smf-form .smf-textarea-control__control::placeholder {
  color: #989898;
}
.my-smf-container textarea {
  resize: none;
  line-height: 1.5;
  height: 15em;
}
.my-smf-container .smf-checkbox-control {
  display: block;
}
.my-smf-container .smf-checkbox-control input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.my-smf-container .smf-checkbox-control input[type=checkbox]:checked ~ span::after {
  content: "";
  display: block;
  width: calc(20px * 0.55);
  height: calc(20px * 0.27);
  border-left: solid calc(20px * 0.15) #fff;
  border-bottom: solid calc(20px * 0.15) #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-60%) rotate(-45deg);
  left: calc(20px * 0.22);
}
.my-smf-container .smf-checkbox-control span {
  padding-left: calc(20px + 7px);
  display: block;
  position: relative;
}
.my-smf-container .smf-checkbox-control span::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: solid 1px #dddee0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.my-smf-container .smf-checkbox-control input[type=checkbox]:checked ~ span::before {
  background-color: #333;
  border-color: #333;
}
.my-smf-container .smf-checkbox-control span::before {
  border-radius: 2px;
}
.my-smf-container .smf-checkboxes-control .smf-label {
  margin-top: 0.5em;
  margin-right: 1.5em !important;
}
.my-smf-container .smf-radio-button-control {
  position: relative;
}
.my-smf-container .smf-radio-button-control input[type=radio] {
  opacity: 0;
  position: absolute;
}
.my-smf-container .smf-radio-button-control input[type=radio]:checked ~ span::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background-color: #c73926;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  left: calc((1.2em - 0.6em) / 2);
}
.my-smf-container .smf-radio-button-control span {
  display: inline-block;
  position: relative;
  padding-left: calc(1.2em + 0.5em);
}
.my-smf-container .smf-radio-button-control span::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border: solid 1px #c1c1c1;
  background-color: #fff;
  border-radius: 50%;
  z-index: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.my-smf-container .smf-label {
  margin-right: 1em !important;
}
.my-smf-container .smf-select-control {
  display: block;
  position: relative;
}
.my-smf-container .smf-select-control::after {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_arrow_down.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.5;
}
.my-smf-container .wp-block-snow-monkey-forms-item:not(:first-of-type) {
  margin-top: 30px;
}
.my-smf-container .smf-item__col--controls {
  margin-top: 0.5em;
}
.my-smf-container .smf-item__controls > * + * {
  margin-top: 1em;
}
.my-smf-container .check-privacy-cotainer > * {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em 2em;
}
.my-smf-container .check-privacy-cotainer .smf-label {
  margin-right: 0 !important;
  margin-top: 0 !important;
}
.my-smf-container .link2privacy {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  cursor: pointer;
}
.my-smf-container .link2privacy:hover {
  opacity: 0.8;
}
.my-smf-container .link2privacy::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_open_modal.svg) no-repeat center center;
  background-size: contain;
  opacity: 0.8;
}
.my-smf-container .smf-action {
  margin-top: 30px;
  margin-top: clamp(6rem, 5.296rem + 1.878vw, 8rem);
}
.my-smf-container .smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}
.my-smf-container .wp-block-group {
  margin-top: 30px;
  gap: max(16px, min(1.756954612vw, 24px));
  align-items: flex-start;
}
.my-smf-container .wp-block-group .wp-block-snow-monkey-forms-item {
  margin-top: 0;
  width: 100%;
}
.my-smf-container .wp-block-snow-monkey-forms-item:has([data-validations*=required]) .smf-item__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
}
.my-smf-container .wp-block-snow-monkey-forms-item:has([data-validations*=required]) .smf-item__label::before {
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
  display: inline-block;
  content: "必須";
  color: #dd5e1f;
  padding: 0.15em 0.5em;
  border: solid 1px #dd5e1f;
  border-radius: clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem);
}
.my-smf-container .smf-error-messages {
  color: #dd5e1f;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}
body.entry .my-smf-container .smf-form {
  padding-top: max(64px, min(8.78477306vw, 120px));
}
body.contact .my-smf-container .smf-form {
  padding-top: max(40px, min(4.6852122987vw, 64px));
}
.my-smf-container .msg-confirm,
.my-smf-container .msg-input {
  margin-bottom: max(40px, min(4.39238653vw, 60px));
}
.my-smf-container .msg-invalid {
  display: none;
}
.my-smf-container .smf-complete-content {
  padding-top: max(40px, min(4.39238653vw, 60px));
}
.my-smf-container [data-screen=confirm] .wp-block-snow-monkey-forms-item {
  background-color: #f8f8f8;
  padding: 1em;
  border-radius: 8px;
}
.my-smf-container input.zipcode {
  max-width: 130px;
}
.my-smf-container .smf-placeholder[data-name=zipcode] {
  display: flex;
  gap: 1em;
  align-items: center;
}
.my-smf-container .smf-placeholder[data-name=zipcode]::before {
  content: "〒";
  display: block;
}
.my-smf-container .msg-note {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  margin-top: 0.5em;
}
.my-smf-container .msg-note .color-invalid {
  color: #dd5e1f;
}
.my-smf-container .smf-action {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(10px, min(1.4641288433vw, 20px));
}
.my-smf-container .smf-action .smf-button-control__control {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #333;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  font-weight: 700;
  padding: 0.75em 1.5em;
  gap: 0.75em;
  font-size: 1.6rem;
  min-height: 64px;
  background-image: none;
  width: 100%;
}
.my-smf-container .smf-action .smf-button-control__control *,
.my-smf-container .smf-action .smf-button-control__control *::before,
.my-smf-container .smf-action .smf-button-control__control *::after {
  transition: all 0.1s linear;
}
.my-smf-container .smf-action .smf-button-control__control::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: auto;
  aspect-ratio: 2/3;
  background: url(../img/icon_btn_arrow.svg) no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}
.my-smf-container .smf-action .smf-button-control__control[data-action=back] {
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  background-color: #fff;
  border: solid 2px #000;
  padding-left: 2em;
  padding-right: 2em;
}
.my-smf-container .smf-action .smf-button-control__control[data-action=back]::after {
  content: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=confirm]) .msg-confirm {
  display: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=invalid]) .msg-invalid {
  display: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=input]):not([data-screen=invalid]):not([data-screen=back]) .msg-input {
  display: none;
}
.my-smf-container .snow-monkey-form .nav-progress {
  display: flex;
  flex-wrap: nowrap;
  gap: max(16px, min(2.3426061493vw, 32px));
  justify-content: center;
  margin-bottom: 40px;
}
.my-smf-container .snow-monkey-form .nav-progress .item {
  font-weight: 700;
  font-size: max(1.4rem, min(1.317715959vw, 1.8rem));
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 2.25em;
  border-radius: 999px;
  background-color: #646464;
  color: #fff;
  position: relative;
}
.my-smf-container .snow-monkey-form .nav-progress .item:not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  width: max(16px, min(2.3426061493vw, 32px));
  height: 1px;
  transform: rotate(0deg);
  background-color: #646464;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.my-smf-container .snow-monkey-form[data-screen=input] #stepInput, .my-smf-container .snow-monkey-form[data-screen=invalid] #stepInput, .my-smf-container .snow-monkey-form[data-screen=back] #stepInput {
  background-color: #c73926;
}
.my-smf-container .snow-monkey-form[data-screen=confirm] #stepConfirm {
  background-color: #c73926;
}
.my-smf-container .snow-monkey-form[data-screen=complete] #stepComplete {
  background-color: #c73926;
}

body:not(:has(form)) .grecaptcha-badge {
  visibility: hidden;
}

.wysiwyg-editor-content {
  font-weight: 400;
}
.wysiwyg-editor-content > *:first-child {
  margin-top: 0;
}
.wysiwyg-editor-content > * {
  margin-top: 1em;
}
.wysiwyg-editor-content h1,
.wysiwyg-editor-content h2,
.wysiwyg-editor-content h3,
.wysiwyg-editor-content h4,
.wysiwyg-editor-content h5,
.wysiwyg-editor-content h6 {
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
}
.wysiwyg-editor-content ul {
  list-style: "・";
  padding-left: 1em;
  line-height: 2;
}
.wysiwyg-editor-content ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.wysiwyg-editor-content p {
  font-weight: 400;
  line-height: 2;
}
.wysiwyg-editor-content p img {
  display: block;
}
.wysiwyg-editor-content p + ul,
.wysiwyg-editor-content ul + p {
  margin-top: 0;
}
.wysiwyg-editor-content figcaption {
  text-align: center;
}
.wysiwyg-editor-content a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 700;
}
.wysiwyg-editor-content .wp-block-buttons a {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.wysiwyg-editor-content img {
  max-width: calc(100% - clamp(4rem, 3.296rem + 1.878vw, 6rem));
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}

.l-main {
  position: relative;
}
.head-lv2page {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding-top: clamp(6rem, 3.887rem + 5.634vw, 12rem);
  padding-bottom: clamp(6rem, 3.887rem + 5.634vw, 12rem);
  font-size: clamp(3.2rem, 2.637rem + 1.502vw, 4.8rem);
}
.head-lv2page .ttl-page {
  text-align: center;
}
.head-lv2page .ttl-page .title {
  height: 1em;
  width: auto;
}
.head-lv2page .icon {
  margin-top: 0.35em;
  height: 0.85em;
  width: auto;
}

.init-movie {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  transition: all 1.5s ease;
}
.init-movie video {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.8s linear;
  opacity: 0;
}
.init-movie video.is-playing {
  opacity: 1;
}
.init-movie.not-active {
  opacity: 0;
  pointer-events: none;
}

.deco-mv-top {
  background-image: url("../img/bg_concrete.jpg");
  background-size: cover;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  aspect-ratio: 2550/380;
  opacity: 0.5;
  overflow: hidden;
}
.deco-mv-top::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  background-color: rgba(245, 245, 245, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.deco-mv-top img {
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: auto;
  aspect-ratio: 2550/320;
  z-index: 1;
}

.mv-top {
  position: relative;
  z-index: 0;
}
.mv-top__head {
  display: flex;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.mv-top__head__logo {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  flex: 3;
  position: relative;
  padding-top: clamp(1rem, 0.648rem + 0.939vw, 2rem);
}
.mv-top__head__logo .logo-mv {
  cursor: pointer;
  width: 60%;
  max-width: 420px;
}
.mv-top__head__logo .logo-mv img {
  aspect-ratio: 362/47;
  width: 100%;
  height: auto;
}
.mv-top__head__logo .btn-link {
  position: absolute;
  bottom: 0;
  right: 0;
}
.mv-top__head__thumb {
  flex: 4;
}

.sect-top-lead {
  position: relative;
  z-index: 1;
}
.sect-top-lead__head {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.sect-top-lead__head .ttl-section {
  font-size: clamp(2.4rem, 1.977rem + 1.127vw, 3.6rem);
  position: relative;
}
.sect-top-lead__head .ttl-section .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.sect-top-lead__head .ttl-section .text .line1 {
  width: 1em;
  height: auto;
}
.sect-top-lead__head .ttl-section .text .line2 {
  width: 1.15em;
  height: auto;
}
.sect-top-lead__head .ttl-section .illust {
  aspect-ratio: 119/170;
  width: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  height: auto;
  position: absolute;
  bottom: 0;
  right: calc(50% + 2.5em);
}
.sect-top-lead__head .text-lead {
  font-weight: 400;
  line-height: 2.5;
}
.sect-top-lead__head .btn-link {
  margin-left: auto;
}
.sect-top-lead__body {
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
  overflow-x: hidden;
  overflow-y: visible;
}

.sect-top-strength {
  padding-top: clamp(9rem, 5.831rem + 8.451vw, 18rem);
  padding-bottom: clamp(9rem, 5.831rem + 8.451vw, 18rem);
}
.sect-top-strength__head {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 1em;
  gap: 1em;
  font-size: clamp(1.3rem, 1.194rem + 0.282vw, 1.6rem);
}
.sect-top-strength__head .ttl-main img {
  height: 3.5em;
  width: auto;
}
.sect-top-strength__body {
  display: flex;
  align-items: stretch;
  gap: clamp(4rem, 3.648rem + 0.939vw, 5rem);
  position: relative;
}
.sect-top-strength__block {
  align-self: start;
  flex: 1;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 2em;
  gap: 2em;
}
.sect-top-strength__block .title {
  font-size: clamp(1.8rem, 1.518rem + 0.751vw, 2.6rem);
}
.sect-top-strength__block .description {
  line-height: 2;
  font-weight: 400;
}
.sect-top-strength__block .figure {
  height: clamp(14rem, 10.831rem + 8.451vw, 23rem);
  width: auto;
}
.sect-top-strength__separator {
  flex-shrink: 0;
  align-self: stretch;
  position: relative;
  display: block;
  width: 1px;
}
.sect-top-strength__separator::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 80px);
  transform: rotate(0deg);
  background-color: #bbb;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.bg-concrete {
  background-image: url("../img/bg_concrete.jpg");
  background-size: cover;
  position: relative;
}
.bg-concrete::before, .bg-concrete::after {
  position: absolute;
  left: 0;
  background-size: 100% 100%;
  pointer-events: none;
}
.bg-concrete::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 216/20;
  background: url(../img/deco_top_tokucho_top.webp) no-repeat center center;
  background-size: contain;
  top: -1px;
}
.bg-concrete::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 216/26;
  background: url(../img/deco_top_tokucho_bottom.webp) no-repeat center center;
  background-size: contain;
  bottom: -1px;
}

.sect-top-cvoice {
  padding-top: clamp(2rem, 0.592rem + 3.756vw, 6rem);
  padding-bottom: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-top-cvoice__inner {
  display: flex;
  gap: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  max-width: 946px;
}
.sect-top-cvoice__head {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  flex-shrink: 0;
}
.sect-top-cvoice__head .ttl-section {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 1.5em;
  gap: 1.5em;
  font-size: clamp(1.1rem, 0.924rem + 0.469vw, 1.6rem);
}
.sect-top-cvoice__head .ttl-section .ttl-page img {
  width: 2.8em;
}
.sect-top-cvoice__head .ttl-section .icon {
  height: 3em;
  width: auto;
}
.sect-top-cvoice__head .text-lead {
  line-height: 2;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  text-align: center;
}
.sect-top-cvoice__body > * + * {
  margin-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.sect-top-cvoice .box-cvoice__head .title {
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.sect-top-cvoice .box-cvoice__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  justify-content: space-between;
}
.sect-top-cvoice__btn-pc {
  display: none;
}
.sect-top-cvoice__btn-sp {
  display: flex;
}

.sect-top-information {
  padding-bottom: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-top-information__inner {
  max-width: 1080px;
}
.sect-top-information__head {
  width: calc(100vw - 2 * 0px);
  margin-left: calc(50% - 50vw + 0px);
  margin-right: calc(50% - 50vw + 0px);
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: clamp(6rem, 3.887rem + 5.634vw, 12rem);
}
.sect-top-information__head .ttl-section {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1em;
  width: 100%;
  font-size: clamp(1rem, 0.789rem + 0.563vw, 1.6rem);
}
.sect-top-information__head .ttl-section__text {
  display: flex;
  align-items: flex-end;
  gap: 0.5em;
}
.sect-top-information__head .ttl-section__text img {
  max-width: none;
}
.sect-top-information__head .ttl-section__text .main img {
  width: 3.5em;
}
.sect-top-information__head .ttl-section__text .icon {
  width: 1.75em;
  opacity: 0.8;
}
.sect-top-information__head .ttl-section__image {
  max-width: none;
  width: clamp(38rem, 21.451rem + 44.131vw, 85rem);
  margin-left: auto;
  margin-right: auto;
}
.sect-top-information__head .text-lead {
  line-height: 2;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}
.sect-top-information__body {
  margin-top: calc(-1 * clamp(4rem, 3.296rem + 1.878vw, 6rem));
}

.wrapper-sect-about-us .sect-about-us__inner {
  display: flex;
  gap: clamp(2rem, 0.592rem + 3.756vw, 6rem);
  max-width: 1280px;
}
.wrapper-sect-about-us .sect-about-us:first-child {
  padding-bottom: 0;
}

.sect-about-us {
  padding-bottom: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-about-us__illust {
  flex: 5;
  padding-top: clamp(2rem, -0.817rem + 7.512vw, 10rem);
  position: sticky;
  align-self: start;
  top: 100px;
}
.sect-about-us__illust .contents-from {
  display: none;
}
.sect-about-us .container-illust .information {
  display: flex;
  align-items: center;
  justify-self: center;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1em;
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
}
.sect-about-us .container-illust .information .name {
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
  font-weight: 400;
}
.sect-about-us .container-illust .information .btn-zoom {
  transition: all 0.1s linear;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  background-color: #dedede;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 4em;
  height: auto;
}
.sect-about-us .container-illust .information .btn-zoom::before {
  transition: all 0.1s linear;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_zoom.svg) no-repeat center center;
  background-size: contain;
}
.sect-about-us .container-illust .information .btn-zoom:hover::before {
  scale: 1.2;
}
.sect-about-us__text {
  flex: 4.5;
  padding-top: clamp(6rem, 3.183rem + 7.512vw, 14rem);
}
.sect-about-us__head .ttl-section {
  font-size: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 1.5em;
  gap: 1.5em;
}
.sect-about-us__head .ttl-section .logo {
  width: auto;
  height: 2em;
}
.sect-about-us__head .ttl-section .text {
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  font-size: 0.85em;
}
.sect-about-us__head .text-lead {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  line-height: 2.5;
  font-weight: 400;
}
.sect-about-us .wysiwyg-editor-content h2,
.sect-about-us .wysiwyg-editor-content h3,
.sect-about-us .wysiwyg-editor-content h4,
.sect-about-us .wysiwyg-editor-content h5,
.sect-about-us .wysiwyg-editor-content h6 {
  line-height: 1.7;
}
.sect-about-us .wysiwyg-editor-content p {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  line-height: 2.5;
}

.bg-old-paper {
  background-image: url("../img/bg_old_paper.jpg");
  background-size: cover;
}
.bg-old-paper::before, .bg-old-paper::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/18;
  background: url(../img/deco_edge_old_paper.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  background-size: 100% 100%;
  pointer-events: none;
}
.bg-old-paper::before {
  top: -1px;
}
.bg-old-paper::after {
  bottom: -1px;
  scale: -1 -1;
}
.bg-old-paper._bottom-222::after {
  background-image: url(../img/deco_edge_old_paper_222.png);
}

.hero-tool-illust {
  padding-top: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  padding-bottom: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  padding-left: 20px;
  padding-right: 20px;
}
.hero-tool-illust .tool-illust-aboutus {
  aspect-ratio: 1535/870;
  width: clamp(40rem, 23.451rem + 44.131vw, 87rem);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sect-making-shop {
  padding-bottom: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.sect-making-shop__inner {
  padding-top: clamp(10rem, 8.592rem + 3.756vw, 14rem);
}
.sect-making-shop__contents-wrapper {
  width: calc(100% - (50% - 50vw) - 0px);
  margin-left: calc(50% - 50vw + 0px);
  max-width: none;
  display: flex;
  justify-content: flex-end;
}
.sect-making-shop__contents {
  display: flex;
  flex-direction: row-reverse;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: flex-end;
  gap: clamp(3rem, 2.296rem + 1.878vw, 5rem);
}
.sect-making-shop .ttl-section .text img {
  aspect-ratio: 65/457;
  width: 3.5em;
  height: auto;
  max-width: none;
}
.sect-making-shop .text-lead {
  padding-top: 2em;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  line-height: 2.5;
  max-height: 34em;
  font-weight: 400;
}

.wrapper-sect-works-list {
  display: flex;
}
.wrapper-sect-works-list__head {
  align-self: start;
  position: sticky;
  top: 100px;
  left: 0;
  min-width: 3em;
  padding-top: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
  padding-bottom: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
}
.wrapper-sect-works-list__head .items-nav-cat-works {
  width: 100%;
}
.wrapper-sect-works-list__body {
  width: 100%;
}

.sect-works-list {
  position: relative;
  padding-bottom: clamp(6rem, 3.183rem + 7.512vw, 14rem);
}
.sect-works-list__inner {
  display: flex;
  gap: clamp(4rem, 3.155rem + 2.254vw, 6.4rem);
  max-width: 1440px;
}
.sect-works-list__head {
  flex-shrink: 0;
  padding-top: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  max-width: 320px;
  align-self: flex-start;
  position: sticky;
  top: 100px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.sect-works-list__head .ttl-section {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.sect-works-list__head .ttl-section .main {
  writing-mode: vertical-rl;
  font-size: clamp(2rem, 1.718rem + 0.751vw, 2.8rem);
  letter-spacing: 0.35em;
}
.sect-works-list__head .ttl-section .icon {
  aspect-ratio: 2/1;
  width: clamp(8rem, 6.592rem + 3.756vw, 12rem);
  height: auto;
}
.sect-works-list__head .description {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 2;
}
.sect-works-list__body {
  width: 100%;
  padding-top: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
}

.mv-works-single {
  padding-left: 20px;
  padding-right: 20px;
}
.mv-works-single__inner {
  max-width: 946px;
  padding-top: clamp(4rem, 2.944rem + 2.817vw, 7rem);
}
.mv-works-single__img {
  display: block;
  aspect-ratio: 235/100;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}

.sect-works-lead {
  padding-bottom: clamp(6rem, 3.887rem + 5.634vw, 12rem);
}
.sect-works-lead__inner {
  max-width: 752px;
}
.sect-works-lead .ttl-section {
  text-align: center;
}
.sect-works-lead .ttl-section .main {
  font-size: clamp(2.4rem, 1.837rem + 1.502vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
}
.sect-works-lead .ttl-section .information {
  margin-top: 0.25em;
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
  line-height: 2;
}
.sect-works-lead .text-lead {
  font-weight: 400;
  line-height: 2.5;
}
.sect-works-lead .tbl-works-spec {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  width: 100%;
  display: grid;
  grid-gap: 0;
  gap: 0;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.sect-works-lead .tbl-works-spec__row {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: solid 1px #ccc;
  display: flex;
  align-items: center;
  width: 100%;
}
.sect-works-lead .tbl-works-spec__row dt {
  width: 8em;
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
  font-weight: 600;
  flex-shrink: 0;
}
.sect-works-lead .tbl-works-spec__row dd {
  width: calc(100% - 8em);
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  font-size: var(--font-size-md);
  padding-left: 1em;
  padding-right: 1em;
  font-weight: 400;
  flex-grow: 1;
}
.sect-works-lead .tbl-works-spec__row dd a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.sect-works-photo {
  padding-bottom: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-works-photo .sect-works-photos__inner {
  max-width: 1440px;
}
.sect-works-photo .wrap-work-photos {
  display: flex;
  align-items: start;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}
.sect-works-photo .wrap-work-photos .items-works-photo {
  flex: 5;
}
.sect-works-photo .wrap-work-photos .active-work {
  flex: 4;
  flex-shrink: 0;
}
.sect-works-photo .wrap-work-photos .active-work__photo .photo {
  max-height: 600px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.sect-works-photo .wrap-work-photos .active-work__text > * + * {
  margin-top: 1em;
}
.sect-works-photo .wrap-work-photos .active-work__text .title {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  display: inline;
}
.sect-works-photo .wrap-work-photos .active-work__text .description {
  font-weight: 400;
  line-height: 2;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  display: inline;
}

.container-works-illust__inner {
  max-width: 800px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.container-works-illust .illust {
  display: block;
  width: 100%;
  height: auto;
}

.sect-other-works {
  background-color: #4a4a4a;
  padding-top: clamp(6rem, 4.944rem + 2.817vw, 9rem);
  padding-bottom: clamp(8rem, 7.296rem + 1.878vw, 10rem);
  color: #fff;
  overflow: hidden;
}
.sect-other-works__inner {
  max-width: 946px;
}
.sect-other-works .ttl-section .main {
  font-size: clamp(1.8rem, 1.589rem + 0.563vw, 2.4rem);
}

.wrapper-sect-cvoice-list {
  max-width: 1140px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(2rem, -0.113rem + 5.634vw, 8rem);
}
.wrapper-sect-cvoice-list__head {
  max-width: 400px;
  align-self: start;
  position: sticky;
  flex-shrink: 0;
  top: 100px;
  left: 0;
  padding-top: clamp(4rem, 2.944rem + 2.817vw, 7rem);
  padding-bottom: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  gap: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.wrapper-sect-cvoice-list__head .ttl-page .text {
  aspect-ratio: 40/158;
  width: clamp(3.2rem, 2.777rem + 1.127vw, 4.4rem);
}
.wrapper-sect-cvoice-list__head .icon {
  aspect-ratio: 5/3;
  width: clamp(6rem, 4.944rem + 2.817vw, 9rem);
}
.wrapper-sect-cvoice-list__head .description {
  line-height: 2;
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
}
.wrapper-sect-cvoice-list__body {
  padding-top: 20px;
}

.sect-cvoice-list {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  padding-bottom: clamp(6rem, 4.592rem + 3.756vw, 10rem);
  position: relative;
}
.sect-cvoice-list:first-child {
  padding-top: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.sect-cvoice-list:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: calc(100% - 20px);
  height: auto;
  aspect-ratio: 857/31;
  background: url(../img/deco_gizagiza_rough_line.svg) no-repeat center center;
  background-size: contain;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
  opacity: 0.5;
  display: block;
}
.sect-cvoice-list:nth-child(even)::after {
  scale: -1 1;
}
.sect-cvoice-list .box-cvoice__head {
  padding-top: 20px;
  position: relative;
}
.box-cvoice__head .title {
  font-size: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
}
.box-cvoice .thumb-movie {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  position: relative;
}
.box-cvoice .thumb-movie.js-modal-video-open::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: all 0.1s linear;
}
.box-cvoice .thumb-movie.js-modal-video-open::after {
  content: "";
  display: inline-block;
  width: 15%;
  height: auto;
  aspect-ratio: 65/46;
  background: url(../img/icon_youtube_white.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  transition: all 0.1s linear;
  opacity: 0.7;
}
.box-cvoice .thumb-movie.js-modal-video-open:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}
.box-cvoice .thumb-movie.js-modal-video-open:hover::after {
  scale: 1.1;
  opacity: 1;
}
.box-cvoice .message {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 2.5;
}
.box-cvoice .ttl-works {
  text-align: center;
}

.sect-information {
  padding-bottom: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-information__inner {
  max-width: 1080px;
}
.sect-information .head-lv2page {
  padding-bottom: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.sect-information .description {
  line-height: 2;
}
.sect-information .nav-information {
  padding-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}

.sect-post-information {
  padding-top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-bottom: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-post-information__inner {
  max-width: 752px;
}
.sect-post-information__head {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  gap: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.sect-post-information__head .title {
  text-align: center;
  font-size: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  padding-top: 1em;
}
.sect-post-information__head .cat-and-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.sect-post-information__head .cat-and-date .cat {
  font-size: clamp(1.1rem, 1.065rem + 0.094vw, 1.2rem);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border: solid 1px #aaa;
  background-color: #fff;
}
.sect-post-information__body {
  padding-bottom: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  border-bottom: solid 1px #ccc;
}
.sect-post-information__thumb {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}
.sect-post-information .btn-link {
  font-size: clamp(1.6rem, 1.53rem + 0.188vw, 1.8rem);
}

.wrapper-sect-faq-list {
  max-width: 1000px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(2rem, 0.592rem + 3.756vw, 6rem);
}
.wrapper-sect-faq-list__head {
  max-width: 400px;
  align-self: start;
  position: sticky;
  flex-shrink: 0;
  top: 100px;
  left: 0;
  padding-top: clamp(4rem, 2.944rem + 2.817vw, 7rem);
  padding-bottom: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  gap: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.wrapper-sect-faq-list__head .ttl-page .text {
  height: clamp(3.2rem, 2.918rem + 0.751vw, 4rem);
  width: auto;
}
.wrapper-sect-faq-list__head .icon {
  aspect-ratio: 112/80;
  width: 3em;
  height: auto;
}
.wrapper-sect-faq-list__body {
  width: 100%;
  padding-top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-bottom: clamp(6rem, 5.296rem + 1.878vw, 8rem);
}
.wrapper-sect-faq-list__body__foot {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 2em;
  gap: 2em;
  padding-left: 20px;
  padding-right: 20px;
}

.sect-faq-list {
  padding-top: 20px;
  padding-bottom: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.sect-faq-list__head .ttl-section {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.sect-faq-list__head .ttl-section::before {
  content: "";
  display: block;
  position: absolute;
  width: 3em;
  height: 1px;
  transform: rotate(0deg);
  background-color: #ccc;
  position: relative;
}
.sect-faq-list__head .ttl-section::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  transform: rotate(0deg);
  background-color: #ccc;
  position: relative;
}
.sect-faq-list__head .ttl-section .main {
  flex-shrink: 0;
}
.sect-contact {
  padding-bottom: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.sect-contact__inner {
  max-width: 752px;
}
.sect-contact .head-lv2page {
  padding-bottom: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.sect-contact .description {
  line-height: 2;
}

.sect-privacy {
  padding-bottom: clamp(8rem, 6.592rem + 3.756vw, 12rem);
}
.sect-privacy__inner {
  max-width: 750px;
}

.sect-company {
  padding-bottom: clamp(8rem, 6.592rem + 3.756vw, 12rem);
}
.sect-company .tbl-company-spec {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
}

.sect-404 {
  padding-bottom: clamp(8rem, 6.592rem + 3.756vw, 12rem);
}
.sect-404__inner {
  max-width: 752px;
}
.sect-404__body {
  text-align: center;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 860px) {
  .inner._maxw-800 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1260px) {
  .inner._maxw-1200 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
  }
  .l-header.l-header-fixed {
    display: none;
  }
  .nav-global._in-header {
    display: none;
  }
  .wp-pager {
    justify-content: center;
  }
  .modal-illust__inner {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
  }
  .modal-illust__inner .illust {
    width: calc(100vw - 2 * 4px);
    margin-left: calc(50% - 50vw + 4px);
    margin-right: calc(50% - 50vw + 4px);
    max-width: none;
  }
  .modal-illust__inner .illust-description .btn-link {
    margin-right: auto;
  }
  #modalVideo iframe {
    width: 95vw;
    height: 53.4375vw;
  }
  .items-works-photo {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    -moz-column-gap: clamp(2.4rem, 1.837rem + 1.502vw, 4rem);
         column-gap: clamp(2.4rem, 1.837rem + 1.502vw, 4rem);
    row-gap: clamp(4rem, 3.155rem + 2.254vw, 6.4rem);
  }
  .carousel-other-works {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .carousel-other-works__ui {
    flex-direction: column;
  }
  .carousel-mv-top__pagination {
    width: 100% !important;
    left: 0 !important;
    bottom: 14px !important;
  }
  .carousel-mv-top__pagination .swiper-pagination-bullet {
    background-color: #d9d9d9;
  }
  .js-accordion-body {
    transition-duration: 0.3s;
  }
  .c-marked-text > span {
    padding: 0.25em;
  }
  .tbl-xxxxx._cl-12-29-59 tr th {
    width: 100%;
  }
  .tbl-xxxxx._cl-12-29-59 tr td:nth-of-type(1) {
    width: 60%;
  }
  .tbl-xxxxx._cl-12-29-59 tr td:nth-of-type(2) {
    width: 40%;
  }
  .u-only-pc,
br.u-only-pc,
img.u-only-pc {
    display: none !important;
  }
  .u-endpoint-of-linkto {
    top: -70px;
  }
  .my-smf-container .msg-invalid {
    display: block;
    margin-top: max(40px, min(4.39238653vw, 60px));
    margin-bottom: max(40px, min(4.39238653vw, 60px));
    color: #dd5e1f;
    text-align: center;
  }
  .my-smf-container .smf-action {
    margin-top: 40px;
  }
  .l-main {
    padding-top: 70px;
  }
  .init-movie {
    padding-bottom: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  }
  .deco-mv-top {
    aspect-ratio: 3/1;
  }
  .deco-mv-top img {
    width: 200%;
    max-width: none;
    left: 0;
  }
  .sect-top-lead__head .btn-link {
    margin-left: auto;
    margin-right: auto;
  }
  .sect-top-strength__head .ttl-main img {
    height: 3em;
  }
  .sect-top-strength__body {
    flex-direction: column;
  }
  .sect-top-strength__separator {
    height: 1px;
    width: 100%;
  }
  .sect-top-strength__separator::before {
    height: 100%;
    width: calc(100% - 40px);
  }
  .sect-top-information__head {
    padding-top: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  }
  .wrapper-sect-about-us .sect-about-us__inner {
    flex-direction: column;
  }
  .wrapper-sect-about-us .sect-about-us:nth-child(n+2) .sect-about-us__text {
    padding-top: 20px;
  }
  .sect-about-us__illust {
    top: auto;
    position: relative;
  }
  .hero-tool-illust .tool-illust-aboutus {
    width: 100%;
  }
  .sect-making-shop .ttl-section {
    padding-right: 1em;
  }
  .wrapper-sect-works-list__head {
    top: 70px;
  }
  .mv-works-single__img {
    aspect-ratio: 3/2;
    width: calc(100vw - 2 * 0px);
    margin-left: calc(50% - 50vw + 0px);
    margin-right: calc(50% - 50vw + 0px);
    max-width: none;
  }
  .sect-works-photo .wrap-work-photos .active-work {
    display: none;
  }
  .wrapper-sect-cvoice-list {
    flex-direction: column;
  }
  .wrapper-sect-cvoice-list__head {
    position: relative;
    top: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
  }
  .wrapper-sect-faq-list {
    flex-direction: column;
  }
  .wrapper-sect-faq-list__head {
    position: relative;
    top: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768.1px) {
  .l-header__inner {
    height: 100px;
  }
  body.home .l-header.l-header-fixed {
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  .l-header.l-header-fixed .l-header__inner {
    height: 80px;
  }
  .l-header.l-header-fixed.is-front-page .l-header__inner {
    height: 70px;
  }
  .l-drawer {
    display: none;
  }
  .btn-menu-open,
.btn-menu-close {
    display: none;
  }
  .modal-illust__inner .illust {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .items-works-photo .item:hover .thumbnail {
    scale: 1.1;
  }
  .items-works-photo .item.is-active {
    border: solid 2px #000;
  }
  .items-works-photo .item.is-active::after {
    content: "";
    display: inline-block;
    width: 2em;
    height: auto;
    aspect-ratio: 1/1;
    background: url(../img/icon_active_photo.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    translate: 40% 40%;
  }
  .items-works-photo .item__thumb {
    aspect-ratio: 1/1;
  }
  .items-works-photo .item__thumb .thumbnail {
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .items-works-photo .item__text {
    display: none;
  }
  .carousel-mv-top__slide img {
    aspect-ratio: 1440/700;
  }
  .tbl-vertical-when-sp {
    writing-mode: inherit;
  }
  .u-only-sp,
br.u-only-sp,
img.u-only-sp {
    display: none !important;
  }
  .u-mt-onlysp10 {
    margin-top: 0;
  }
  .u-mt-onlysp20 {
    margin-top: 0;
  }
  .biz-calendar-custom #biz_calendar table.bizcal {
    padding: 0.8em;
  }
  .biz-calendar-custom #biz_calendar table.bizcal td {
    padding: 1.5em 0;
  }
  .biz-calendar-custom #biz_calendar table.bizcal td.today::after {
    top: 65%;
  }
  .biz-calendar-custom #biz_calendar table.bizcal .calbtn {
    transform: translateX(55%);
  }
  .my-smf-container textarea {
    height: 15em;
  }
  .wrapper-sect-about-us .sect-about-us:nth-child(even) .sect-about-us__inner {
    flex-direction: row-reverse;
  }
  .container-works-illust .illust {
    translate: -5% 0;
  }
  .wrapper-sect-cvoice-list__head .description {
    text-align: center;
  }
  .sect-contact .description {
    text-align: center;
  }
}
@media screen and (max-width: 1320px) {
  .nav-global .items-nav-global._in-header .item a {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1250px) {
  .nav-global .items-nav-global._in-header .item a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .nav-global .items-nav-global._in-header .item a .text {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .nav-global .items-nav-global._in-footer {
    flex-direction: column;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .mv-top__head__logo {
    aspect-ratio: 1/1;
  }
  .sect-top-information__head .ttl-section__image {
    width: 100%;
    margin-top: -15%;
  }
  .sect-works-lead .tbl-works-spec__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
  .sect-works-lead .tbl-works-spec__row dt {
    text-align: left;
  }
}
@media screen and (max-width: 800px) {
  .items-interior-illust {
    flex-direction: column;
    gap: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  }
  .items-interior-illust .item {
    aspect-ratio: auto;
    display: grid;
    align-items: center;
    justify-items: center;
    place-items: center;
    grid-gap: 1em;
    gap: 1em;
  }
  .items-interior-illust .item:nth-child(odd) .item__illust {
    left: auto;
  }
  .items-interior-illust .item:nth-child(even) .item__illust {
    right: auto;
  }
  .items-interior-illust .item:nth-child(even) {
    margin-top: 0%;
  }
  .items-interior-illust .item__illust {
    position: relative;
    width: 100%;
  }
  .items-interior-illust .item__title {
    right: auto;
    bottom: auto;
    position: relative;
    padding-left: 0;
  }
  .items-interior-illust .item__title::after {
    content: none;
  }
  .items-works._top {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
  .mv-top__head {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mv-top__head__logo .logo-mv {
    width: 70%;
  }
  .mv-top__body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sect-top-lead__head {
    padding-top: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  }
  .sect-top-lead__body {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-top: clamp(4rem, 3.296rem + 1.878vw, 6rem);
    padding-bottom: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  }
}
@media screen and (min-width: 600px) {
  .items-works._archive {
    grid-template-columns: 1fr 1fr;
  }
  .items-works._archive .item:nth-child(1) {
    grid-column: 1/-1;
    grid-row: 1;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(6) {
    grid-column: 1/-1;
    grid-row: 4;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(7) {
    grid-column: 1;
    grid-row: 5;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(8) {
    grid-column: 2;
    grid-row: 5;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(9) {
    grid-column: 1;
    grid-row: 6;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(10) {
    grid-column: 2;
    grid-row: 6;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(11) {
    grid-column: 1/-1;
    grid-row: 7;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(12) {
    grid-column: 1;
    grid-row: 8;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(13) {
    grid-column: 2;
    grid-row: 8;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(14) {
    grid-column: 1;
    grid-row: 9;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(15) {
    grid-column: 2;
    grid-row: 9;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(16) {
    grid-column: 1/-1;
    grid-row: 10;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(17) {
    grid-column: 1;
    grid-row: 11;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(18) {
    grid-column: 2;
    grid-row: 11;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(19) {
    grid-column: 1;
    grid-row: 12;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(20) {
    grid-column: 2;
    grid-row: 12;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(21) {
    grid-column: 1/-1;
    grid-row: 13;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(22) {
    grid-column: 1;
    grid-row: 14;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(23) {
    grid-column: 2;
    grid-row: 14;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(24) {
    grid-column: 1;
    grid-row: 15;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(25) {
    grid-column: 2;
    grid-row: 15;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(26) {
    grid-column: 1/-1;
    grid-row: 16;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(27) {
    grid-column: 1;
    grid-row: 17;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(28) {
    grid-column: 2;
    grid-row: 17;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(29) {
    grid-column: 1;
    grid-row: 18;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(30) {
    grid-column: 2;
    grid-row: 18;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(31) {
    grid-column: 1/-1;
    grid-row: 19;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(32) {
    grid-column: 1;
    grid-row: 20;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(33) {
    grid-column: 2;
    grid-row: 20;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(34) {
    grid-column: 1;
    grid-row: 21;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(35) {
    grid-column: 2;
    grid-row: 21;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(36) {
    grid-column: 1/-1;
    grid-row: 22;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(37) {
    grid-column: 1;
    grid-row: 23;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(38) {
    grid-column: 2;
    grid-row: 23;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(39) {
    grid-column: 1;
    grid-row: 24;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(40) {
    grid-column: 2;
    grid-row: 24;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(41) {
    grid-column: 1/-1;
    grid-row: 25;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(42) {
    grid-column: 1;
    grid-row: 26;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(43) {
    grid-column: 2;
    grid-row: 26;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(44) {
    grid-column: 1;
    grid-row: 27;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(45) {
    grid-column: 2;
    grid-row: 27;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(46) {
    grid-column: 1/-1;
    grid-row: 28;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(47) {
    grid-column: 1;
    grid-row: 29;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(48) {
    grid-column: 2;
    grid-row: 29;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(49) {
    grid-column: 1;
    grid-row: 30;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(50) {
    grid-column: 2;
    grid-row: 30;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(51) {
    grid-column: 1/-1;
    grid-row: 31;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(52) {
    grid-column: 1;
    grid-row: 32;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(53) {
    grid-column: 2;
    grid-row: 32;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(54) {
    grid-column: 1;
    grid-row: 33;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(55) {
    grid-column: 2;
    grid-row: 33;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(56) {
    grid-column: 1/-1;
    grid-row: 34;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(57) {
    grid-column: 1;
    grid-row: 35;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(58) {
    grid-column: 2;
    grid-row: 35;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(59) {
    grid-column: 1;
    grid-row: 36;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(60) {
    grid-column: 2;
    grid-row: 36;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(61) {
    grid-column: 1/-1;
    grid-row: 37;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(62) {
    grid-column: 1;
    grid-row: 38;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(63) {
    grid-column: 2;
    grid-row: 38;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(64) {
    grid-column: 1;
    grid-row: 39;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(65) {
    grid-column: 2;
    grid-row: 39;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(66) {
    grid-column: 1/-1;
    grid-row: 40;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(67) {
    grid-column: 1;
    grid-row: 41;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(68) {
    grid-column: 2;
    grid-row: 41;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(69) {
    grid-column: 1;
    grid-row: 42;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(70) {
    grid-column: 2;
    grid-row: 42;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(71) {
    grid-column: 1/-1;
    grid-row: 43;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(72) {
    grid-column: 1;
    grid-row: 44;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(73) {
    grid-column: 2;
    grid-row: 44;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(74) {
    grid-column: 1;
    grid-row: 45;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(75) {
    grid-column: 2;
    grid-row: 45;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(76) {
    grid-column: 1/-1;
    grid-row: 46;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(77) {
    grid-column: 1;
    grid-row: 47;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(78) {
    grid-column: 2;
    grid-row: 47;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(79) {
    grid-column: 1;
    grid-row: 48;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(80) {
    grid-column: 2;
    grid-row: 48;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(81) {
    grid-column: 1/-1;
    grid-row: 49;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(82) {
    grid-column: 1;
    grid-row: 50;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(83) {
    grid-column: 2;
    grid-row: 50;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(84) {
    grid-column: 1;
    grid-row: 51;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(85) {
    grid-column: 2;
    grid-row: 51;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(86) {
    grid-column: 1/-1;
    grid-row: 52;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(87) {
    grid-column: 1;
    grid-row: 53;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(88) {
    grid-column: 2;
    grid-row: 53;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(89) {
    grid-column: 1;
    grid-row: 54;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(90) {
    grid-column: 2;
    grid-row: 54;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(91) {
    grid-column: 1/-1;
    grid-row: 55;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(92) {
    grid-column: 1;
    grid-row: 56;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(93) {
    grid-column: 2;
    grid-row: 56;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(94) {
    grid-column: 1;
    grid-row: 57;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(95) {
    grid-column: 2;
    grid-row: 57;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .items-works._archive .item:nth-child(96) {
    grid-column: 1/-1;
    grid-row: 58;
    aspect-ratio: 235/100;
  }
  .items-works._archive .item:nth-child(97) {
    grid-column: 1;
    grid-row: 59;
    aspect-ratio: 2/3;
  }
  .items-works._archive .item:nth-child(98) {
    grid-column: 2;
    grid-row: 59;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(99) {
    grid-column: 1;
    grid-row: 60;
    aspect-ratio: 1/1;
  }
  .items-works._archive .item:nth-child(100) {
    grid-column: 2;
    grid-row: 60;
    aspect-ratio: 2/3;
    margin-top: -50%;
  }
  .sect-top-cvoice__head {
    position: sticky;
    top: 100px;
    left: 0;
    align-self: start;
  }
  .sect-top-cvoice__btn-pc {
    display: flex;
  }
  .sect-top-cvoice__btn-sp {
    display: none;
  }
  .sect-top-information__head .text-lead {
    text-align: right;
  }
}
@media screen and (min-width: 800px) {
  .items-works._top .item:nth-child(1) {
    grid-area: 1/1/3/2;
    aspect-ratio: 1/1;
  }
  .items-works._top .item:nth-child(2) {
    grid-area: 3/1/5/2;
    aspect-ratio: 1/1;
  }
  .items-works._top .item:nth-child(3) {
    grid-area: 1/2/4/3;
    aspect-ratio: 2/3;
  }
  .items-works._top .item:nth-child(4) {
    grid-area: 1/3/3/4;
    aspect-ratio: 1/1;
  }
  .items-works._top .item:nth-child(5) {
    grid-area: 3/3/5/4;
    aspect-ratio: 1/1;
  }
  .sect-top-lead__head {
    margin-top: -7.5%;
  }
}
@media screen and (max-width: 375px) {
  .my-smf-container .snow-monkey-form .nav-progress .item {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
@media screen and (min-width: 501px) and (max-width: 800px) {
  .mv-top__head__logo {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 600px) {
  .sect-top-cvoice__inner {
    flex-direction: column;
  }
  .sect-top-information__head .ttl-section {
    flex-direction: column;
    align-items: flex-end;
    gap: 1em;
  }
  .sect-works-list {
    padding-left: 0;
  }
  .sect-works-list__head {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: auto;
    left: auto;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1100px) {
  .sect-works-list__inner {
    flex-direction: column;
  }
  .sect-works-list__head .description {
    max-width: 30em;
  }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .sect-works-list__head {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: auto;
    left: auto;
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 500px) {
  .sect-information .description {
    text-align: center;
  }
}
/*# sourceMappingURL=maps/main.css.map */
