@charset "UTF-8";
/* ------------------------------------------------------------

Reset

------------------------------------------------------------ */
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,
main {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  background: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /*
  font:inherit;
  font-family:inherit;
  */
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

input,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  display: block;
}

dialog {
  margin: 0;
  padding: 0;
}

:root {
  --scrollbar: 17px;
}

html {
  font-size: calc((100vw - var(--scrollbar)) / 1440 * 10 / 1920 * 1620);
  /* ハードウェアアクセラレーションを有効化 */
  /* アニメーションの最適化 */
  /*-ブレイクポイント1920px-*/
  /*-ブレイクポイント1620px-*/
  /*-ブレイクポイント1440px-*/
  /*-ブレイクポイント1300px-*/
  /*-ブレイクポイント767px-*/
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 70.3125%;
  }
}
@media screen and (max-width: 1620px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 10);
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary,
textarea {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

/*a,
a:link,
a:visited,
a:hover,
a:active{
	outline:none;
	text-decoration:none;
}*/
/*a:focus-visible{outline: 2px dotted #333;}*/
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.focus-visible {
  outline: 2px dotted #333;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

li {
  list-style: "";
}

blockquote,
q {
  quotes: none;
}

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

input,
select {
  vertical-align: middle;
}

img {
  vertical-align: top;
}

button {
  background: none;
  appearance: none;
  border: none;
  padding: 0;
}

/*button:focus-visible{outline: thin dotted #333;}*/
@font-face {
  font-family: "LINE Seed JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff");
  font-display: swap;
}
* {
  font-family: "Zen Old Mincho", serif;
}

html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: #fff;
  color: #222;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
  font-feature-settings: "palt";
}

.svg_symbol {
  display: none;
}

.br-pc {
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

/* ------------------------------------------------------------

Shortcodes

------------------------------------------------------------ */
.normal {
  font-weight: 400 !important;
}

.bold {
  font-weight: 700 !important;
}

.italic {
  font-style: italic !important;
}

.none {
  display: none !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

sub {
  vertical-align: sub !important;
  font-size: 50%;
}

sup {
  vertical-align: super !important;
  font-size: 50%;
}

.txt-mail::after {
  content: "@";
}

.red01 {
  color: #FF0000;
}

.indent-1 {
  text-indent: -1em;
  padding-left: 1em;
}

/* ------------------------------------------------------------

タイトル

------------------------------------------------------------ */
.heading {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: fit-content;
}
.heading__en {
  font-size: 2rem;
  font-weight: 500;
  color: #bababa;
  line-height: 1.5;
}
.heading__ja {
  font-size: 2.4rem;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .heading__ja {
    font-size: 2rem;
  }
}
.heading.column {
  flex-direction: row-reverse;
  gap: 0;
}
.heading.column .heading__en {
  writing-mode: vertical-rl;
}
.heading.column .heading__ja {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.heading02 {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.4rem 1.6rem;
  background: #222;
  width: fit-content;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .heading02 {
    width: 100%;
  }
}
.heading02__ja {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .heading02__ja {
    font-size: 2.4rem;
  }
}
.heading02__en {
  font-size: 2rem;
  line-height: 1.8;
  color: #fff;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .heading02__en {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------------------

ボタン

------------------------------------------------------------ */
.button {
  display: flex;
  align-items: center;
  width: 32rem;
  padding: 1.2rem 2.4rem;
  border: 1px solid #222;
}
@media (hover: hover) {
  .button:hover span {
    translate: 0.4rem 0;
  }
  .button:hover svg {
    fill: #222;
    border: 1px solid #222;
    scale: 0.9;
  }
}
.button span {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #222;
  margin-left: 4rem;
  transition: translate 0.3s;
}
.button svg {
  width: 1.2rem;
  height: 1.2rem;
  padding: 1rem;
  fill: #ccc;
  border: 1px solid #ccc;
  margin-left: auto;
  transition: translate 0.3s, fill 0.3s, border 0.3s, scale 0.3s;
}

.button02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.2rem 5.6rem 4.2rem 2.4rem;
  border-bottom: 1px solid #ccc;
  transition: background 0.3s;
}
@media (hover: hover) {
  .button02:hover {
    background: #fff;
  }
  .button02:hover svg {
    fill: #222;
    border: 1px solid #222;
    scale: 0.9;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .button02 {
    width: 20rem;
    margin-left: auto;
    padding: 2.4rem 1.6rem;
  }
}
.button02__en {
  color: #aaa;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .button02__en {
    display: none;
  }
}
.button02__ja {
  color: #222;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  margin-left: -9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .button02__ja {
    margin-left: 0;
    font-size: 1.6rem;
  }
}
.button02 svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #ccc;
  padding: 1rem;
  border: 1px solid #ccc;
  transition: fill 0.3s, border 0.3s, scale 0.3s;
}

.button03 {
  width: 48rem;
  padding: 2rem 4rem 2rem 2rem;
  display: flex;
  align-items: center;
  background: #fff;
  color: #222;
}
@media (hover: hover) {
  .button03:hover span {
    translate: 0.4rem 0;
  }
  .button03:hover svg {
    fill: #222;
    border: 1px solid #222;
    scale: 0.9;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .button03 {
    width: 100%;
    padding: 1.6rem 2.4rem 1.6rem 1.6rem;
  }
}
.button03 img {
  width: 12rem;
  height: 12rem;
  margin-right: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .button03 img {
    width: 9.6rem;
    height: 9.6rem;
    margin-right: 1.6rem;
  }
}
.button03 span {
  font-size: 2rem;
  line-height: 1.8;
  transition: translate 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .button03 span {
    font-size: 1.6rem;
  }
}
.button03 svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #ccc;
  padding: 1rem;
  border: 1px solid #ccc;
  margin-left: auto;
  transition: fill 0.3s, border 0.3s, scale 0.3s;
  rotate: 90deg;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .button03 svg {
    width: 1rem;
    height: 1rem;
  }
}

/* ------------------------------------------------------------

画像の無限スライダー

------------------------------------------------------------ */
.loopImages {
  display: flex;
  gap: 16px;
}
.loopImages__image {
  width: 166.4rem;
  flex-shrink: 0;
  animation: slide 40s linear infinite;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .loopImages__image {
    width: 124.8rem;
  }
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.loopImages__image img {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------------

ページタイトル

------------------------------------------------------------ */
.pageTitle {
  position: relative;
  z-index: 0;
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTitle {
    margin-top: 6.4rem;
  }
}
.pageTitle .heading {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 19.6rem;
  margin-left: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTitle .heading {
    margin-top: 4rem;
    margin-left: 0;
  }
}
.pageTitle .heading__ja {
  font-size: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTitle .heading__ja {
    font-size: 2.4rem;
  }
}
.pageTitle__image {
  width: 66.6666666667%;
}
.pageTitle__image img {
  width: 100%;
  height: auto;
}
.pageTitle .breadcrumb {
  position: absolute;
  bottom: 2rem;
  left: 8rem;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTitle .breadcrumb {
    left: 2.4rem;
    bottom: 2rem;
  }
}

/* ------------------------------------------------------------

パンくずリスト

------------------------------------------------------------ */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  width: 1.2rem;
  height: 1px;
  background: #bcbcbc;
  margin-left: 0.5rem;
}
.breadcrumb__link {
  color: #222;
  font-size: 1.4rem;
  transition: opacity 0.3s;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------

ページネーション

------------------------------------------------------------ */
.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.pagination .arrow-icon {
  width: 1.6rem;
  height: 1.6rem;
  fill: #222;
  padding: 1.6rem;
  border: 1px solid #666;
  flex: none;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .pagination .arrow-icon:hover {
    transform: scale(0.9);
  }
}
.pagination .dots {
  display: grid !important;
}
.pagination .first-icon {
  scale: -1 1;
}
.pagination .pagination-prev .arrow-icon {
  scale: -1 1;
}
.pagination .page-numbers {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #222;
}
.pagination .page-numbers:not(.prev, .next) {
  display: none;
}
.pagination .page-numbers:nth-child(2), .pagination .page-numbers:nth-child(3), .pagination .page-numbers:nth-child(4) {
  display: flex;
}
.pagination .page-numbers:nth-last-child(2) {
  display: flex;
}
.pagination .page-numbers.current {
  background: #fff;
  display: flex !important;
}
@media (hover: hover) {
  .pagination .page-numbers:hover:not(:is(.next, .prev, .dots)) {
    background: #fff;
  }
}
.pagination .dots-separator {
  display: none;
}
.pagination:has(.page-numbers:nth-child(5)) .dots-separator {
  display: flex;
}
.pagination span.page-numbers,
.pagination span.page-number {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
}
.pagination .prev {
  margin-right: 4rem;
}
.pagination .next {
  margin-left: 4rem;
}
.pagination .disabled {
  display: none;
}

/* ------------------------------------------------------------

Header

------------------------------------------------------------ */
.bgFixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -5;
  width: 100%;
  height: 100dvh;
  background: url(../img/tex_bg01.webp) center/20rem repeat;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 6.4rem;
  padding-left: 4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header {
    padding-left: 2.4rem;
    justify-content: flex-start;
  }
}
.header.is-active, .header.sub-header {
  background: #fff;
}
.header.is-active .header__logo img, .header.sub-header .header__logo img {
  filter: invert(1);
}
.header.is-active .header__nav ul li a, .header.sub-header .header__nav ul li a {
  color: #222;
}
.header .sub:has(.header) {
  background: #fff;
}
.header .sub:has(.header) .header__logo img {
  filter: invert(1);
}
.header .sub:has(.header) .header__nav ul li a {
  color: #222;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__logo {
    margin-right: auto;
  }
}
.header__logo h1 a {
  display: block;
  width: 20.7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__logo h1 a {
    width: 16.6rem;
  }
}
.header__logo h1 a img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: filter 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.header__nav ul li a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}
.header__contact {
  align-self: flex-start;
}
.header__contact a {
  height: 6.4rem;
  padding: 1.2rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: url(../img/bg_header01.webp) center/cover no-repeat;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__contact a {
    width: 6.4rem;
    padding: 0;
    justify-content: center;
  }
}
.header__contact a svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: #fff;
}
.header__contact a span {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__contact a span {
    display: none;
  }
}
.header .menuButton {
  width: 6.4rem;
  cursor: pointer;
  background: #fff;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  opacity: 1;
  transition: background 0.4s, filter 0.4s;
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header .menuButton {
    display: inline-flex;
  }
}
.header .menuButton .border {
  position: absolute;
  width: 3rem;
  height: 0.2rem;
  background: #222;
  transition: transform 0.4s, opacity 0.4s;
}
.header .menuButton .border:nth-child(1) {
  transform: translateY(-0.8rem);
}
.header .menuButton .border:nth-child(3) {
  transform: translateY(0.8rem);
  scale: 0.7 1;
  transform-origin: left;
}
.header .menuButton.active .border:nth-child(1) {
  transform: rotate(45deg);
}
.header .menuButton.active .border:nth-child(2) {
  opacity: 0;
}
.header .menuButton.active .border:nth-child(3) {
  transform: rotate(-45deg);
  scale: 1;
  transform-origin: center;
}
.header .spMenu {
  width: 100%;
  height: 100dvh;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 3;
  transition: all 0.4s ease;
}
.header .spMenu.active {
  opacity: 1;
  visibility: visible;
}
.header .spMenu__logo {
  width: 26.9rem;
  box-sizing: content-box;
  padding: 1rem 0 0 1.5rem;
}
.header .drawerMenuNav {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header .drawerMenuNav {
    padding: 6rem 1.3rem 0;
    gap: 2rem;
    margin-bottom: 0;
  }
}
.header .drawerMenuNav a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.7rem;
  transition: translate 0.3s;
}
@media (hover: hover) {
  .header .drawerMenuNav a:hover {
    translate: 0.3rem 0;
  }
}
.header .drawerMenuNav a img {
  width: 1.9rem;
  height: 2.4rem;
  flex: none;
  margin-top: -0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header .drawerMenuNav > a {
    padding-left: 2rem;
    font-size: 1.6rem;
  }
}
.header .drawerMenuNav nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header .drawerMenuNav nav {
    flex-direction: column;
  }
}
.header .drawerMenuNav nav .info {
  width: 28%;
}
.header .drawerMenuNav nav .menu {
  width: 68%;
}
.header .drawerMenuNav nav .pcNavTitle {
  font-size: 1.7rem;
  padding-bottom: 1rem;
  margin-bottom: 3.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header .drawerMenuNav nav .pcNavTitle::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}
.header .drawerMenuNav nav .spNavTitle {
  font-size: 1.7rem;
  color: #4d867d;
  border-top: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
  padding: 1.8rem 0 1.4rem 2rem;
}
.header .drawerMenuNav nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header .drawerMenuNav nav ul {
    padding: 3rem 2rem 2.8rem;
    gap: 2.5rem;
  }
}
.header .drawerMenuNav nav ul li a {
  font-size: 1.5rem;
}
.header .drawerMenuNav nav .col {
  flex-wrap: wrap;
  flex-direction: row;
}
.header .drawerMenuNav nav .col li {
  width: calc((100% - 2.5rem) / 2);
}

/* ------------------------------------------------------------

Footer

------------------------------------------------------------ */
.contact {
  padding: 0 8rem 8rem;
  display: grid;
  place-items: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact {
    padding: 0;
    display: block;
  }
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__inner {
  position: relative;
  z-index: 0;
  width: min(128rem, 100%);
  display: flex;
  flex-direction: column;
  padding: 8.5rem 11rem 7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact__inner {
    padding: 4rem 2.4rem;
  }
}
.contact__text {
  width: 44rem;
  margin-bottom: 6.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact__text {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.contact__text .heading {
  margin-bottom: 2.4rem;
}
.contact__text p {
  text-align: justify;
}
.contact__links {
  display: flex;
  align-items: flex-end;
  gap: 9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}
.contact__links .tel {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.contact__links .tel a {
  color: #222;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact__links .tel a {
    font-size: 2.4rem;
  }
}
.contact__links .tel dl {
  display: flex;
  gap: 0.8rem;
}
.contact__links .tel dl dt {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  background: #222;
  display: grid;
  place-items: center;
}
.contact__links .tel dl dd {
  font-size: 1.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .contact__links .button {
    width: 100%;
  }
}

.footer {
  position: relative;
  z-index: 0;
  padding: 12rem 8.3333333333vw 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer {
    padding: 8rem 2.4rem;
  }
}
.footer__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.footer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__inner {
    margin-bottom: 8.5rem;
  }
}
.footer__address {
  width: 15.2777777778vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__address {
    width: 22.5rem;
    margin-inline: auto;
  }
}
.footer__address > img {
  width: 100%;
  height: auto;
  margin-bottom: 3.4rem;
}
.footer__address address p {
  color: #fff;
  font-size: 0.9722222222vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__address address p {
    font-size: 1.4rem;
  }
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  width: 62.5694444444vw;
  margin-bottom: 6.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav .navItem:nth-of-type(1) {
  width: 10.7638888889vw;
}
.footer__nav .navItem:nth-of-type(2) {
  width: 9.5833333333vw;
}
.footer__nav .navItem:nth-of-type(3) {
  width: 17.7777777778vw;
}
.footer__nav .navItem > p {
  color: #fff;
  font-size: 1.1111111111vw;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.footer__nav .navItem ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer__nav .navItem ul li a {
  font-size: 0.9722222222vw;
  line-height: 1.5;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s;
}
@media (hover: hover) {
  .footer__nav .navItem ul li a:hover {
    color: #81ce71;
  }
  .footer__nav .navItem ul li a:hover::before {
    background: #81ce71;
  }
}
.footer__nav .navItem ul li a::before {
  content: "";
  display: block;
  flex: none;
  width: 0.8rem;
  height: 0.1rem;
  background: #fff;
  transition: background 0.3s;
}
.footer__nav .navItem.rows ul {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.footer__nav .navItem.rows ul li {
  width: 45%;
}
.footer__nav .links {
  width: 11.8055555556vw;
}
.footer__nav .links ul {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.footer__nav .links ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 1.0416666667vw;
  transition: color 0.3s;
}
@media (hover: hover) {
  .footer__nav .links ul li a:hover {
    color: #81ce71;
  }
}
.footer__copy p {
  font-size: 0.8333333333vw;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer__copy p {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------------------

モーダル

------------------------------------------------------------ */
html:has(dialog[open]) {
  overflow: hidden;
}

.modal {
  width: 50%;
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: 3px solid #111;
  box-shadow: 0px 2px 0px 0px #111;
  padding: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .modal {
    width: 75%;
  }
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal[open] {
  animation: slide-in 0.3s ease-out;
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal__content {
  position: relative;
}
.modal__title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.2rem;
}
.modal__title button {
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-size: 1.8rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal__text {
  margin-bottom: 3.2rem;
  text-align: center;
}
.modal__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .modal__link {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.modal__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 20rem;
  height: 5.6rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  border: 3px solid #111;
  box-shadow: 0px 2px 0px 0px #111;
}
.modal__link a:first-child {
  background: #06C755;
}
.modal__link a:last-child {
  background: #2E7CF2;
}
@media (hover: hover) {
  .modal__link a:hover {
    translate: 0 0.3rem;
    box-shadow: none;
  }
}
.modal__link a img {
  width: 4rem;
  height: 4rem;
}

/* ------------------------------------------------------------

トップページ

------------------------------------------------------------ */
.page-top .fv {
  position: relative;
  z-index: 0;
  height: 100vh;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fv {
    height: 72rem;
  }
}
.page-top .fv .splide__slide {
  overflow: hidden;
  height: 100vh;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fv .splide__slide {
    height: 72rem;
  }
}
.page-top .fv .splide__slide:not(.is-active) img {
  transform: scale(1);
}
.page-top .fv .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  will-change: transform;
}
.page-top .fv .splide__pagination {
  position: absolute;
  bottom: 15rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fv .splide__pagination {
    bottom: 9rem;
  }
}
.page-top .fv .splide__pagination__page {
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.page-top .fv .splide__pagination__page.is-active {
  outline: 0.2rem solid #fff;
  outline-offset: 0.3rem;
}
.page-top .fv .splide .zoom-effect {
  animation: zoomIn 10s ease-out;
  animation-fill-mode: forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.page-top .fv__text {
  position: absolute;
  top: 50%;
  left: 12rem;
  translate: 0 -50%;
  z-index: 1;
  width: 75.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fv__text {
    width: 31.5rem;
    left: 50%;
    translate: -50% -50%;
  }
}
.page-top .fv__text img {
  width: 100%;
  height: auto;
}
.page-top .fv__dcr {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.page-top .fv__dcr img {
  width: 100%;
  height: auto;
}
.page-top .about {
  padding: 8rem 8rem 16rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about {
    padding: 4rem 2.4rem 8rem;
  }
}
.page-top .about__inner {
  width: min(128rem, 100%);
  margin-inline: auto;
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__inner {
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 0;
  }
}
.page-top .about__title {
  width: 33.3333333333vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__title {
    width: 100%;
  }
}
.page-top .about__title .heading {
  margin-bottom: 16rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__title .heading {
    margin-bottom: 0;
  }
}
.page-top .about__text {
  writing-mode: vertical-rl;
  font-feature-settings: "vrt2" on;
  font-size: 4.8rem;
  color: #222;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-left: 16rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__text {
    margin-left: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    font-size: 2.8rem;
    gap: 1.6rem;
  }
}
.page-top .about__text span:last-child {
  margin-top: 9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__text span:last-child {
    margin-top: 5rem;
  }
}
.page-top .about .content {
  width: 55.5555555556vw;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about .content {
    width: 100%;
    gap: 2.4rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about .content__image {
    width: 24.8rem;
  }
}
.page-top .about .content__image img {
  width: 100%;
  height: auto;
}
.page-top .about .content__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.page-top .about .content__text p {
  text-align: justify;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about .content .button {
    margin-inline: auto;
  }
}
.page-top .product {
  padding: 12rem 8rem 8rem 0;
  background: #fff;
  overflow-x: clip;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .product {
    padding: 4rem 2.4rem;
  }
}
.page-top .product__inner {
  display: flex;
  gap: 6.4rem;
  margin-bottom: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .product__inner {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.page-top .product__image {
  width: 55.5555555556%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .product__image {
    width: 36rem;
    margin-left: -2.4rem;
  }
}
.page-top .product__image img {
  width: 100%;
  height: auto;
}
.page-top .product__text {
  width: 49.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .product__text {
    width: 100%;
  }
}
.page-top .product__text .heading {
  margin-bottom: 2.4rem;
}
.page-top .product__text-desc {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 4rem;
}
.page-top .product__text-desc p {
  text-align: justify;
}
.page-top .type {
  padding: 14.2rem 8rem 16rem;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type {
    padding: 8rem 2.4rem;
  }
}
.page-top .type__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.page-top .type__bg img {
  width: 100%;
  height: auto;
}
.page-top .type__inner {
  display: flex;
  gap: 8rem;
  margin-bottom: 12rem;
  width: min(128rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__inner {
    display: contents;
  }
}
.page-top .type__inner:has(.content .button02:last-of-type:hover) .type__image picture:nth-child(1) {
  opacity: 0;
}
.page-top .type__inner:has(.content .button02:last-of-type:hover) .type__image picture:nth-child(2) {
  opacity: 1;
}
.page-top .type__image {
  width: 41.25%;
  aspect-ratio: 528/528;
  position: relative;
  z-index: -3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__image {
    display: contents;
  }
}
.page-top .type__image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-top .type__image picture:nth-child(1) {
  opacity: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__image picture {
    width: 16rem;
    height: 16rem;
    top: 29rem;
  }
}
.page-top .type__image picture img {
  width: 100%;
  height: auto;
}
.page-top .type .content {
  width: 56rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type .content {
    display: contents;
  }
}
.page-top .type .content .heading {
  margin-bottom: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type .content .heading {
    margin-bottom: 2.4rem;
  }
}
.page-top .type .content > p {
  margin-bottom: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type .content > p {
    margin-bottom: 2.4rem;
  }
}
.page-top .type .content .button02:first-of-type {
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type .content .button02:first-of-type {
    margin-bottom: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type .content .button02:last-of-type {
    margin-bottom: 8rem;
  }
}
.page-top .type__content {
  display: flex;
  justify-content: space-between;
  width: min(128rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.page-top .type__content .unit {
  width: 48.4375%;
  background: #fff;
  padding: 4.8rem 5.6rem;
  display: flex;
  flex-direction: column;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content .unit {
    width: 100%;
    padding: 2.4rem;
  }
}
.page-top .type__content .unit .heading {
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content .unit .heading {
    margin-bottom: 1.6rem;
  }
}
.page-top .type__content .unit__image {
  margin-bottom: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content .unit__image {
    margin-bottom: 1.6rem;
  }
}
.page-top .type__content .unit__image img {
  width: 100%;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content .unit__text {
    margin-bottom: 1.6rem;
  }
}
.page-top .type__content .unit__map {
  margin-bottom: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content .unit__map {
    margin-bottom: 1.6rem;
  }
}
.page-top .type__content .unit__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 508/240;
}
.page-top .type__content .unit__logo {
  width: 13.8rem;
  margin-bottom: 2rem;
}
.page-top .type__content .unit__logo img {
  width: 100%;
  height: auto;
  filter: invert(1);
}
.page-top .type__content .unit .address {
  margin-bottom: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content .unit .address {
    margin-bottom: 2.4rem;
  }
}
.page-top .type__content .unit .address dl {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid #ccc;
  padding: 0.8rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content .unit .address dl {
    align-items: center;
  }
}
.page-top .type__content .unit .address dl:last-of-type {
  border-bottom: none;
}
.page-top .type__content .unit .address dl dt {
  width: 8rem;
  font-size: 1.4rem;
  flex: none;
}
.page-top .type__content .unit__button {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.page-top .type__content .unit__button .button {
  width: 24rem;
  margin-left: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .type__content .unit__button .button {
    margin-inline: auto;
  }
}
.page-top .type__content .unit__button .button span {
  margin-left: 1rem;
}

/* ------------------------------------------------------------

植竹石材店について

------------------------------------------------------------ */
.page-about .lead {
  padding: 12rem 8rem;
}
.page-about .lead__inner {
  display: flex;
  justify-content: space-between;
  width: min(128rem, 100%);
  margin-inline: auto;
}
.page-about .lead__text {
  width: 46.875%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.page-about .lead__text .large {
  padding-top: 1.6rem;
  font-size: 2.8rem;
  color: #333;
}
.page-about .lead__image {
  width: 46.875%;
}
.page-about .lead__image img {
  width: 100%;
  height: auto;
}
.page-about .history {
  padding: 8rem 0 8rem 8rem;
  background: #fff;
}
.page-about .history .heading {
  margin-bottom: 6.6rem;
}
.page-about .history .splide {
  position: relative;
  z-index: 0;
}
.page-about .history .splide__arrows {
  position: absolute;
  top: -12rem;
  right: 10rem;
  display: flex;
  gap: 2rem;
}
.page-about .history .splide__arrow svg {
  border: 1px solid #ccc;
  fill: #bababa;
  transition: border 0.3s, fill 0.3s, scale 0.3s;
}
@media (hover: hover) {
  .page-about .history .splide__arrow:hover svg {
    scale: 0.9;
    border-color: #2b2b2b;
    fill: #2b2b2b;
  }
}
.page-about .history .splide__arrow--prev {
  transform: scale(-1, 1);
}
.page-about .history .splide__slide {
  width: 36rem;
}
.page-about .history .splide .historyItem .annoDomini {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4.6rem;
}
.page-about .history .splide .historyItem .annoDomini p {
  font-size: 1.6rem;
  color: #bababa;
  line-height: 1;
  font-weight: 700;
}
.page-about .history .splide .historyItem .annoDomini span {
  width: 0.7rem;
  height: 0.7rem;
  background: #2c512c;
  border-radius: 50%;
  margin-left: 1.5rem;
  flex: none;
  position: relative;
  z-index: 0;
}
.page-about .history .splide .historyItem .annoDomini span:before {
  content: "";
  background: #2b2b2b;
  width: 36rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -1.5rem;
  translate: 0 -50%;
  z-index: -1;
}
.page-about .history .splide .historyItem .annoDomini span::after {
  content: "";
  background: #2b2b2b;
  width: 1px;
  height: 6rem;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
.page-about .history .splide .historyItem .text {
  width: calc(100% - 2.4rem);
  min-height: 17.6rem;
  padding: 4rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  background: #f1f1f1;
  position: relative;
  z-index: 0;
}
.page-about .history .splide .historyItem .text dl {
  display: flex;
}
.page-about .history .splide .historyItem .text dl dt {
  width: 5rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #bababa;
}
.page-about .history .splide .historyItem .text dl dd {
  font-size: 1.6rem;
}
.page-about .message {
  padding: 12rem 8rem;
  position: relative;
  z-index: 0;
}
.page-about .message__bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-about .message__bg img {
  width: 100%;
  height: auto;
}
.page-about .message .heading {
  margin-bottom: 12rem;
}
.page-about .message__inner {
  width: min(128rem, 100%);
  margin-inline: auto;
}
.page-about .message__content {
  display: grid;
  grid-template-areas: "text01 . " "image01 text02";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4.4rem 8rem;
}
.page-about .message__content .text01 {
  grid-area: text01;
}
.page-about .message__content .image01 {
  grid-area: image01;
}
.page-about .message__content .text02 {
  grid-area: text02;
  padding-top: 4rem;
}
.page-about .message__content .item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-about .message__content .item img {
  width: 100%;
  height: auto;
}
.page-about .company {
  padding: 0 8rem 16rem;
}
.page-about .company__inner {
  width: min(128rem, 100%);
  margin-inline: auto;
}
.page-about .company .heading {
  margin-bottom: 4rem;
}
.page-about .company__content {
  display: flex;
  justify-content: space-between;
}
.page-about .company__content .outline {
  width: 56.25%;
  display: flex;
  flex-direction: column;
}
.page-about .company__content .outline dl {
  padding: 2.4rem 2rem;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 6rem;
}
.page-about .company__content .outline dl dt {
  width: 12rem;
  color: #2c512c;
  font-weight: 500;
  line-height: 1.5;
}
.page-about .company__content .outline dl dd {
  line-height: 1.5;
}
.page-about .company__content .map {
  width: 40.625%;
}
.page-about .company__content .map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 520/432;
}

/* ------------------------------------------------------------

石材・灯籠の種類

------------------------------------------------------------ */
.page-kind .lead {
  padding-top: 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lead {
    padding: 8rem 2.4rem 0;
  }
}
.page-kind .lead__inner {
  width: 98.4rem;
  margin-inline: auto;
  padding-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lead__inner {
    width: 100%;
    padding-bottom: 4rem;
  }
}
.page-kind .lead h2 {
  font-size: 3rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 3.8rem;
}
.page-kind .lead__textBox {
  width: 72rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lead__textBox {
    width: 100%;
  }
}
.page-kind .lead__textBox p {
  text-align: justify;
}
.page-kind .lead__button {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lead__button {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.page-kind .lead__fullImage {
  width: 100%;
  height: 44rem;
  overflow: hidden;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lead__fullImage {
    width: 39rem;
    height: 39rem;
    margin-left: -2.4rem;
  }
}
.page-kind .lead__fullImage picture {
  display: block;
  height: 100%;
}
.page-kind .lead__fullImage picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-kind .stone {
  padding: 12rem 8rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone {
    padding: 4rem 2.4rem 0;
  }
}
.page-kind .stone .heading {
  margin-bottom: 4rem;
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone .heading {
    margin-bottom: 2.4rem;
    margin-inline: 0;
  }
}
.page-kind .stone__content {
  width: min(128rem, 100%);
  margin-inline: auto;
  background: #fff;
  padding: 8rem 8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-kind .stone__content:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content {
    padding: 2rem 2rem 0;
  }
}
.page-kind .stone__content .cols {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.page-kind .stone__content .cols__textBox {
  width: 50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols__textBox {
    width: 100%;
  }
}
.page-kind .stone__content .cols__textBox .heading02 {
  margin-bottom: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols__textBox .heading02 {
    margin-bottom: 2.4rem;
  }
}
.page-kind .stone__content .cols__textBox p {
  text-align: justify;
}
.page-kind .stone__content .cols__textBox p:not(:last-child) {
  margin-bottom: 1.6rem;
}
.page-kind .stone__content .cols__textBox .large {
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols__textBox .large {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.page-kind .stone__content .cols__image {
  width: 46.4285714286%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols__image {
    width: 100%;
  }
}
.page-kind .stone__content .cols__image img {
  width: 100%;
  height: auto;
}
.page-kind .stone__content .card {
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .card {
    margin-bottom: 2.4rem;
  }
}
.page-kind .stone__content .card__title {
  text-align: center;
  margin-bottom: 2.4rem;
}
.page-kind .stone__content .card__title h3 {
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .card__title h3 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.page-kind .stone__content .card__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .card__content {
    flex-direction: column;
    gap: 4rem;
  }
}
.page-kind .stone__content .card__content .unit {
  width: calc((100% - 8rem) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 3.2rem;
  background: #f9f9f9;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .card__content .unit {
    width: 100%;
    padding: 2rem;
  }
}
.page-kind .stone__content .card__content .unit h4 {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  padding: 0.4rem 1.6rem;
  line-height: 1.5;
  border: 1px solid #222;
}
.page-kind .stone__content .card__content .unit__image img {
  width: 100%;
  height: auto;
}
.page-kind .stone__content .cols02 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols02 {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
  }
}
.page-kind .stone__content .cols02__image {
  width: 50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols02__image {
    width: 100%;
  }
}
.page-kind .stone__content .cols02__image img {
  width: 100%;
  height: auto;
}
.page-kind .stone__content .cols02__textBox {
  width: 46.4285714286%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols02__textBox {
    width: 100%;
  }
}
.page-kind .stone__content .cols02__textBox h4 {
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols02__textBox h4 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.page-kind .stone__content .cols02__textBox p {
  text-align: justify;
}
.page-kind .stone__content .cols02__textBox p:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols02__textBox p:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}
.page-kind .stone__content .cols02__textBox dl {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-bottom: 3.2rem;
}
.page-kind .stone__content .cols02__textBox dl > div {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols02__textBox dl > div {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.page-kind .stone__content .cols02__textBox dl > div dt {
  min-width: 13.6rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 0.4rem 0;
  border: 1px solid #222;
}
.page-kind .stone__content .reason {
  padding: 12rem;
  position: relative;
  z-index: 0;
  width: min(128rem, 100vw - 16rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .reason {
    width: calc(100vw - 4.8rem);
    padding: 4rem 2.4rem;
  }
}
.page-kind .stone__content .reason__bg {
  position: absolute;
  inset: 0;
}
.page-kind .stone__content .reason__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-kind .stone__content .reason .textBox {
  width: 60.8rem;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .reason .textBox {
    width: 100%;
  }
}
.page-kind .stone__content .reason .textBox h4 {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #fff;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #fff;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .reason .textBox h4 {
    font-size: 2.1rem;
  }
}
.page-kind .stone__content .reason .textBox__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-kind .stone__content .reason .textBox__desc p {
  color: #fff;
  text-align: justify;
}
.page-kind .stone__content > .heading02 {
  align-self: flex-start;
  margin-bottom: 2.4rem;
}
.page-kind .stone__content .leadTextBox {
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .leadTextBox {
    margin-bottom: 4rem;
  }
}
.page-kind .stone__content .leadTextBox h4 {
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .leadTextBox h4 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.page-kind .stone__content .leadTextBox__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-kind .stone__content .leadTextBox__desc p {
  text-align: justify;
}
.page-kind .stone__content .cols03 {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols03 {
    gap: 5.6rem;
    margin-bottom: 8rem;
  }
}
.page-kind .stone__content .cols03__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols03__content {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 0;
  }
}
.page-kind .stone__content .cols03__content:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols03__content:nth-child(even) {
    flex-direction: column;
  }
}
.page-kind .stone__content .cols03__content .textBox {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols03__content .textBox {
    width: 100%;
  }
}
.page-kind .stone__content .cols03__content .textBox h4 {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #d9d9d9;
}
.page-kind .stone__content .cols03__content .textBox__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-kind .stone__content .cols03__content .textBox__desc p {
  text-align: justify;
}
.page-kind .stone__content .cols03__content .image {
  width: 46.4285714286%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .stone__content .cols03__content .image {
    width: 100%;
  }
}
.page-kind .stone__content .cols03__content .image img {
  width: 100%;
  height: auto;
}
.page-kind .lantern {
  padding: 16rem 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lantern {
    padding: 8rem 2.4rem;
  }
}
.page-kind .lantern .heading {
  margin-inline: auto;
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lantern .heading {
    margin-inline: 0;
    margin-bottom: 1.6rem;
  }
}
.page-kind .lantern__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem 0;
  width: min(128rem, 100%);
  margin-inline: auto;
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lantern__cards {
    flex-direction: column;
    gap: 5.6rem 0;
    margin-bottom: 4rem;
  }
}
.page-kind .lantern__cards .card {
  width: calc((100% - 8rem) / 3);
  display: flex;
  flex-direction: column;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lantern__cards .card {
    width: 100%;
  }
}
.page-kind .lantern__cards .card figure {
  position: relative;
  z-index: 0;
  margin-bottom: 1.6rem;
}
.page-kind .lantern__cards .card figure picture img {
  width: 100%;
  height: auto;
}
.page-kind .lantern__cards .card figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  background: #2c512c;
}
.page-kind .lantern__cards .card p {
  text-align: justify;
  margin-bottom: 1.6rem;
}
.page-kind .lantern__cards .card__button {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.page-kind .lantern__cards .card__button .button {
  width: 25.6rem;
}
.page-kind .lantern__cols {
  width: min(128rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 65.625% 31.25%;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lantern__cols {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    gap: 0;
  }
}
.page-kind .lantern__cols .image img {
  width: 100%;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lantern__cols .textBox {
    margin-top: -4.4rem;
  }
}
.page-kind .lantern__cols .textBox h3 {
  width: fit-content;
  color: #fff;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  background: #2c512c;
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lantern__cols .textBox h3 {
    margin-bottom: 1.6rem;
  }
}
.page-kind .lantern__cols .textBox__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.page-kind .lantern__cols .textBox__desc p {
  text-align: justify;
}
.page-kind .lantern__cols .textBox__button .button {
  width: 25.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-kind .lantern__cols .textBox__button .button {
    margin-left: auto;
  }
}

/* ------------------------------------------------------------

アクセス

------------------------------------------------------------ */
.page-access .access__inner {
  padding: 12rem 8rem 16rem;
}
.page-access .access__map {
  margin-bottom: 4rem;
}
.page-access .access__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1280/480;
}
.page-access .access .content__item {
  display: flex;
  padding: 3.2rem 2rem;
  gap: 6rem;
  border-bottom: 1px solid #ccc;
}
.page-access .access .content__item:first-child > dt {
  padding-top: 1.4rem;
}
.page-access .access .content__item > dt {
  width: 12rem;
  color: #2c512c;
  font-weight: 500;
  flex: none;
}
.page-access .access .content__item.column {
  flex-direction: column;
  gap: 3.2rem;
}
.page-access .access .content__item .unit {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.page-access .access .content__item .map {
  display: flex;
  align-items: center;
  gap: 10rem;
}
.page-access .access .content__item .move > dl {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-access .access .content__item .move > dl > dt {
  padding: 0.4rem 0.8rem;
  background: #222;
  line-height: 1.5;
  color: #fff;
  width: fit-content;
  font-weight: 500;
}
.page-access .access .content__item .move > dl > dd {
  display: flex;
  justify-content: space-between;
}
.page-access .access .content__item .move > dl > dd > dl {
  width: calc((100% - 5.6rem) / 2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-access .access .content__item .move > dl > dd > dl > dt {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #d9d9d9;
}

/* ------------------------------------------------------------

記事一覧

------------------------------------------------------------ */
.page-archive .archive {
  padding: 12rem 8rem 16rem 0;
}
.page-archive .archive__inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  position: relative;
}
.page-archive .archive__buttons {
  width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 4rem 4rem 6.4rem;
  background: #fff;
  position: sticky;
  top: 8rem;
  left: 0;
}
.page-archive .archive__buttons button {
  padding: 0.8rem 2rem;
  font-size: 1.8rem;
  color: #222;
  background: url(../img/archive/bg_archive-btn01.webp) no-repeat center/cover;
  border: none;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}
.page-archive .archive__buttons button.is-active {
  background: #2c512c;
  color: #fff;
}
.page-archive .archive__content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5.6rem 3rem;
}
.page-archive .archive__content .card {
  width: calc((100% - 6rem) / 3);
  display: flex;
  flex-direction: column;
}
.page-archive .archive__content .card a {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (hover: hover) {
  .page-archive .archive__content .card a:hover figure img {
    scale: 1.02;
  }
  .page-archive .archive__content .card a:hover .textBox h3 {
    color: #2c512c;
  }
  .page-archive .archive__content .card a:hover .textBox svg {
    scale: 0.9;
  }
}
.page-archive .archive__content .card a figure {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.page-archive .archive__content .card a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 320/457;
  transition: scale 0.3s;
}
.page-archive .archive__content .card a figure figcaption {
  display: inline-flex;
  padding: 0.4rem 1.2rem;
  justify-content: center;
  align-items: center;
  background: #2c512c;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.page-archive .archive__content .card a .textBox {
  display: flex;
  align-items: center;
}
.page-archive .archive__content .card a .textBox h3 {
  flex: 1;
  line-height: 1.5;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.page-archive .archive__content .card a .textBox svg {
  flex: none;
  width: 1.2rem;
  height: 1.2rem;
  padding: 1rem;
  fill: #ccc;
  border: 1px solid #ccc;
  transition: scale 0.3s;
}

/* ------------------------------------------------------------

製品詳細

------------------------------------------------------------ */
.page-single .single {
  padding: 12rem 8rem 0;
}
.page-single .single__inner {
  width: min(128rem, 100%);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 8rem;
  border-bottom: 1px solid #ccc;
}
.page-single .single__images {
  width: 43.75%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-single .single__images .splide__slide {
  opacity: 0.6;
}
.page-single .single__images .splide__slide.is-active {
  opacity: 1;
}
.page-single .single__images .splide__slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.page-single .single .content {
  width: 53.125%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.page-single .single .content__title {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #ccc;
}
.page-single .single .content__title p {
  width: fit-content;
  padding: 0.4rem 1.2rem;
  background: #2c512c;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}
.page-single .single .content__title h3 {
  font-size: 3.2rem;
  line-height: 1.5;
}
.page-single .single .content__info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.page-single .single .content__info .title {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.5;
  padding: 0.4rem 1.2rem;
  background: #222;
  width: fit-content;
}
.page-single .single .content__info .textBox {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-single .single .content__products {
  display: flex;
  flex-direction: column;
}
.page-single .single .content__products dl {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 1.6rem 2rem;
  border-bottom: 1px solid #ccc;
}
.page-single .single .content__products dl dt {
  width: 12rem;
  color: #2c512c;
  font-weight: 500;
  line-height: 1.5;
}
.page-single .single .content__products dl dd {
  line-height: 1.5;
}
.page-single .single .content__button .button {
  width: 42rem;
}
.page-single .single .content__button .button span {
  margin-left: 0;
}
.page-single .recommend {
  padding: 4rem 8rem 16rem;
}
.page-single .recommend__inner {
  width: min(128rem, 100%);
  margin-inline: auto;
}
.page-single .recommend .heading {
  margin-bottom: 4rem;
}
.page-single .recommend__content {
  display: flex;
  gap: 4rem;
}
.page-single .recommend__content .card {
  width: calc((100% - 12rem) / 4);
  display: flex;
  flex-direction: column;
}
.page-single .recommend__content .card a {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (hover: hover) {
  .page-single .recommend__content .card a:hover figure img {
    scale: 1.02;
  }
  .page-single .recommend__content .card a:hover .textBox h3 {
    color: #2c512c;
  }
  .page-single .recommend__content .card a:hover .textBox svg {
    scale: 0.9;
    fill: #222;
    border: 1px solid #222;
  }
}
.page-single .recommend__content .card a figure {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.page-single .recommend__content .card a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 290/240;
  transition: scale 0.3s;
}
.page-single .recommend__content .card a figure figcaption {
  display: inline-flex;
  padding: 0.4rem 1.2rem;
  justify-content: center;
  align-items: center;
  background: #2c512c;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-single .recommend__content .card a .textBox {
  display: flex;
  align-items: center;
}
.page-single .recommend__content .card a .textBox h3 {
  flex: 1;
  line-height: 1.5;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.page-single .recommend__content .card a .textBox svg {
  flex: none;
  width: 1.2rem;
  height: 1.2rem;
  padding: 1rem;
  fill: #ccc;
  border: 1px solid #ccc;
  transition: scale 0.3s, fill 0.3s, border 0.3s;
}

#main-carousel .splide__slide img {
  aspect-ratio: 560/800;
}

#thumbnail-carousel .splide__slide {
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */
