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

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* iOSでのフォーム要素のデフォルトスタイルをリセット */
input,
textarea,
select,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
}

/* iOSでタップしたときに出るグレーのハイライトを消す */
* {
  -webkit-tap-highlight-color: transparent;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
  color: #333;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.block-wall {
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex: 1;
  align-items: stretch;
}
.block-wall::before {
  content: ""; /* 疑似要素には必須 */
  /* 親要素いっぱいに広げる */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 背景画像を設定 */
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: var(--bg-filter, none);
  background-color: var(--bg-color, none);
  background-blend-mode: overlay;
  /* ぼかし効果の端が白っぽくなるのを防ぐ（任意） */
  transform: scale(1.1);
}

.split-width {
  position: relative;
  display: none;
  flex: 1 0 0;
  overflow: hidden;
}
.split-width .font-clamp {
  position: absolute;
  line-height: 103%;
}
.split-width .font-clamp span {
  font-weight: bold;
  color: white;
}
.split-width--left .font-clamp {
  position: absolute;
  top: 5%;
  right: 5%;
}
.split-width--right .font-clamp {
  position: absolute;
  left: 5%;
  bottom: 5%;
}

@media screen and (min-width: 1400px) {
  .split-width {
    display: block;
  }
}
img {
  width: 100%;
  border-radius: 6px;
}

/* 視覚的には非表示だが、スクリーンリーダーや検索エンジンは認識する */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 遅延読み込みのためのスタイル */
/* 遅延読み込みのためのスタイル */
.block-wall {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.block-wall.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.link-btn {
  margin-top: 20px;
  text-align: center;
}
.link-btn .btn {
  font-size: 12px;
  font-weight: bold;
  color: white;
  background-color: #000;
  border-radius: 6px;
  padding: 1px 16px;
  transition: 0.3s;
}
.link-btn .btn:hover {
  background-color: royalblue;
}

.btn::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}

.grid1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid6 {
  grid-template-columns: repeat(6, 1fr);
}

/* [通常表示用] 
   画面幅が480px以下の場合に、各グリッドを1カラムにする */
@media screen and (max-width: 480px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.stripe-wall {
  width: 100%;
  background-image: repeating-linear-gradient(#ddd, #ddd 0px, transparent 1px, transparent 4px);
}

.coming {
  position: absolute;
  width: 100%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0.6;
}
.coming img {
  width: 160px;
}
.coming .title {
  font-size: clamp(55px, 6.793vw, 60px);
  font-weight: bold;
  color: white;
}
.coming .com_name {
  font-size: 20px;
  font-weight: 500;
  color: white;
}
.coming .comment {
  display: block;
  font-size: clamp(14px, 1.087vw, 16px);
  font-weight: 500;
  color: white;
}
.coming .comment span {
  display: block;
  font-size: 12px;
  font-weight: 900px;
  color: white;
}
.coming a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
  border-radius: 50px;
  padding: 2px 20px;
  margin-top: 30px;
}

.design01.pt01 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
.design01.pt01 .header-top {
  background-color: var(--bar-color1, #000);
}
.design01.pt01 .header-top-nav {
  display: flex;
  justify-content: flex-end;
  padding: 10px 16px 0;
  gap: 3px;
}
.design01.pt01 .header-top-nav li {
  display: inline-block;
  background-color: var(--bar-color2, #f2f2f2);
  padding: 2px 16px;
  border-radius: 4px 4px 0 0;
  transition: 0.5s;
}
.design01.pt01 .header-top-nav li a span {
  font-size: 1.2rem;
  color: #333;
}
.design01.pt01 .header-top-nav li:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.design01.pt01 .header-main {
  background-color: var(--bar-color2, #f2f2f2);
}
.design01.pt01 .header-main__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 12px 0 0;
}
.design01.pt01 .header-main__inner img {
  border-radius: initial;
}
.design01.pt01 .header-main h1 {
  padding-bottom: 6px;
}
.design01.pt01 .header-main .pc-nav ul {
  display: flex;
  justify-content: space-between;
}
.design01.pt01 .header-main .pc-nav ul li a {
  position: relative;
  display: inline-block;
  padding: 2px 16px;
  border-radius: 3px 3px 0 0;
}
.design01.pt01 .header-main .pc-nav ul li span {
  display: inline-block;
  font-size: 1.6rem;
  color: #333;
}
.design01.pt01 .header-main .pc-nav ul li .sub {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background-color: var(--bar-color1, #000);
  border-radius: 16px;
  padding: 2px 0;
  opacity: 0;
  transition: 0.5s;
}
.design01.pt01 .header-main .pc-nav ul li:hover .sub {
  opacity: 1;
}

.hamburger-button {
  display: none;
}

.sp-menu {
  display: none;
}

@media (max-width: 768px) {
  .header-main {
    padding: 15px 20px;
  }
  .pc-nav {
    display: none;
  }
  .hamburger-button {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .hamburger-button span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
  }
  .sp-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #e8e8d8;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  .sp-menu.is-open {
    transform: translateX(0);
  }
  .sp-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  .sp-menu-header .sp-menu-label {
    font-size: 13px;
    margin: 0;
  }
  .close-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  .close-button .close-icon {
    font-size: 36px;
    line-height: 1;
    font-weight: bold;
    color: #333;
  }
  .sp-menu-content {
    padding: 20px 30px;
  }
  .sp-menu-content .logo {
    margin-bottom: 25px;
  }
  .top-page-button {
    display: block;
    background-color: #3c3c3c;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .sp-nav ul li a {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px dotted #555;
  }
  .sp-nav ul li a .en {
    font-size: 16px;
    font-weight: 600;
  }
  .sp-nav ul li a .ja {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
  }
}
.design03 .wall-text-area {
  position: relative;
  width: 100%;
}
.design03 .wall-text-area__inner-item {
  display: inline-block;
}
.design03 .heading-with-icon {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 1%;
}
.design03 .heading-with-icon figure {
  padding-right: 0.5%;
}
.design03 .heading-with-icon figure img {
  width: auto;
  height: 50px;
}
.design03 .heading-with-icon__content {
  flex: 1;
}
.design03 .heading-with-icon__title {
  font-weight: 500;
}
.design03 .heading-with-icon__decoration {
  display: block;
  font-weight: bold;
  padding-left: 0.2%;
}
.design03 .image-text-block__body-layout {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.design03 .image-text-block__content {
  width: 100%;
  display: grid;
}
.design03 .image-text-block__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  overflow: hidden;
  position: relative;
}
.design03 .image-text-block__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 背景画像を設定 */
  background-image: var(--content-wall-image);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  z-index: -1;
}
.design03 .image-text-block__item-header {
  width: 100%;
}
.design03 .image-text-block__item-big-title {
  display: block;
  font-weight: 500;
  margin-bottom: 2.5%;
}
.design03 .image-text-block__item-big-title .line02 {
  display: block;
}
.design03 .image-text-block__item-big-title .throwing {
  display: block;
  font-weight: 500;
}
.design03 .image-text-block__item-subtitle {
  display: inline-block;
  font-weight: bold;
}
.design03 .image-text-block__item-subtitle span {
  display: inline-block;
  font-weight: bold;
}
.design03 .image-text-block__item-title {
  display: inline-block;
  font-weight: 500;
}
.design03 .image-text-block__item-figure {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  align-self: stretch;
}
.design03 .image-text-block__item-body {
  font-weight: normal;
  text-align: justify;
  line-height: 1.5;
}
.design03 .image-text-block__image {
  border-radius: 8px;
}
.design03 .price-list__explanation {
  margin-top: 16px;
  margin-bottom: -3px;
}
.design03 .price-list__items--batch {
  font-weight: bold;
  color: white;
  background-color: red;
  padding: 0 6px;
}
.design03 .price-list__items--price {
  font-weight: bold;
  margin: 0 4px;
}

.image-text-block {
  align-content: flex-start;
}
.image-text-block__figure {
  margin: 0;
}
.image-text-block__image {
  display: block;
  width: 100%;
  border-radius: 6px;
}
.image-text-block__heading {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
}
.image-text-block__heading span {
  display: block;
}
.image-text-block__subtitle, .image-text-block__body {
  font-size: 1.5rem;
  text-align: justify;
}
.image-text-block__subheading {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 1%;
}

.image-text-block {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.image-text-block--image-right {
  flex-direction: row-reverse;
}
.image-text-block--image-top {
  display: block;
}
.image-text-block--image-bottom {
  flex-direction: column-reverse;
}
.image-text-block--image-left, .image-text-block--image-right {
  align-items: center;
}
.image-text-block--image-left .image-text-block__content {
  padding-left: 3%;
}
.image-text-block--image-right .image-text-block__content {
  padding-right: 3%;
}
.image-text-block--image-top .image-text-block__content {
  padding: 2% 1%;
}
.image-text-block--image-bottom .image-text-block__content {
  padding: 0 0% 2%;
}