@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
@font-face {
  font-family: "IBM_Plex_Sans_JP";
  font-weight: 500;
  src: url("../../font/IBM_Plex_Sans_JP/woff2/IBMPlexSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "IBM_Plex_Sans_JP";
  font-weight: 600;
  src: url("../../font/IBM_Plex_Sans_JP/woff2/IBMPlexSansJP-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "IBM_Plex_Sans_JP";
  font-weight: 700;
  src: url("../../font/IBM_Plex_Sans_JP/woff2/IBMPlexSansJP-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Exo";
  font-weight: 700;
  src: url("../../font/Exo/woff2/Exo-Italic-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Zen_Kaku_Gothic_Antique";
  font-weight: 400;
  src: url("../../font/Zen_Kaku_Gothic_Antique/woff2/ZenKakuGothicAntique-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Zen_Kaku_Gothic_Antique";
  font-weight: 500;
  src: url("../../font/Zen_Kaku_Gothic_Antique/woff2/ZenKakuGothicAntique-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Zen_Kaku_Gothic_Antique";
  font-weight: 700;
  src: url("../../font/Zen_Kaku_Gothic_Antique/woff2/ZenKakuGothicAntique-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Zen_Kaku_Gothic_Antique";
  font-weight: 800;
  src: url("../../font/Zen_Kaku_Gothic_Antique/woff2/ZenKakuGothicAntique-Black.woff2") format("woff2");
}
html {
  scroll-behavior: auto;
  /****** アンカーリンク用高さ調整 start  ******/
  scroll-padding-top: 120px;
  /******* アンカーリンク用高さ調整 end  *******/
}
html body {
  width: 100%;
  font-family: "IBM_Plex_Sans_JP", sans-serif;
  color: #393939;
  background: #f7f7f7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.75rem, 0.71rem + 0.2vw, 0.95rem);
  line-height: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  letter-spacing: 0.1rem;
  position: relative;
}
html body main {
  overflow: hidden;
}
html body main .space {
  display: block;
  height: 1rem;
}
html body.noscroll {
  overflow: hidden;
  touch-action: none; /* モバイルでも操作を制限 */
}

@media screen and (max-width: 480px) {
  html body {
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
    line-height: clamp(1.5rem, 1.46rem + 0.2vw, 1.7rem);
  }
}
/*****************************************/
/*****  inview  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.js-fader-l {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-l.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.js-fader-r {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-r.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.js-fader-t {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transition: 0.8s all;
  -webkit-transition: 0.8s all;
}
.js-fader-t.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.js-fader-d {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-d.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.js-blur {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-blur.is-show {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  filter: blur(0);
  -webkit-filter: blur(0);
}

.js-fader {
  -webkit-mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
  mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-size: 250% 100%;
  mask-size: 250% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0;
}

.js-fader.is-show {
  transition: opacity 1.8s, -webkit-mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s, mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s, mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  opacity: 1;
}

.zoomin {
  width: 100%;
  height: 100%;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transition: transform 1.2s ease, filter 1.2s ease;
  -webkit-transition: transform 1.2s ease, filter 1.2s ease;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  transition: all ease 1s;
  -webkit-transition: all ease 1s;
}
.zoomin.is-show {
  transform: scale(1);
  -webkit-transform: scale(1);
  filter: blur(0);
  -webkit-filter: blur(0);
}

.js-anim {
  position: relative;
  display: inline-block;
  transition: all 0.8s ease;
  clip-path: inset(0 100% 0 0);
}
.js-anim.is-show {
  clip-path: inset(0);
}

.js-bganim {
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  position: relative;
  transition-delay: 0.3s;
  display: flex;
}
.js-bganim span {
  transform: translateX(var(--x, -125%));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.25s;
}
.js-bganim::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 150%;
  transform: translateX(var(--cover-x, -101%));
  transition: transform 1.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: #bce9ec;
}
.js-bganim.is-show {
  --skewX: 0deg;
  --cover-x: 101%;
  --x: 0;
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  inview  end  ******/
/*****************************************/
img {
  max-width: 100%;
}

/*****************************************/
/****  コンテンツ部分基本幅設定  start  ****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.layout_width {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media screen and (max-width: 480px) {
  .layout_width {
    padding: 0 1rem;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/*****  コンテンツ部分基本幅設定  end  *****/
/*****************************************/
/*****************************************/
/*****  セクション部分空白設定  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
section {
  padding: 7.5rem 0;
  background-color: #f7f7f7;
}

@media screen and (max-width: 1024px) {
  section {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  セクション部分空白設定  end  ******/
/*****************************************/
.at {
  display: flex;
}
.at::before {
  content: "※";
}

/*****************************************/
/*******  見出し[h2]部分設定  start  ******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.lead {
  font-size: 1.25em;
  line-height: 2;
}

.lead_lg {
  font-size: 2em;
  line-height: 2;
  font-weight: normal !important;
}

.title01 {
  margin-bottom: 2rem;
  margin-left: 0;
  flex-flow: row;
  align-items: flex-end;
}
.title02 {
  position: relative;
}
.title02::before {
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8fc31f, #00913a);
  position: absolute;
  bottom: -0.5rem;
}
.title02 .en {
  display: none;
}
.title02 .ja {
  color: #008080;
  line-height: 1.5;
}
.title02 .ja span {
  font-size: 0.65em;
  margin-right: 1rem;
  color: #393939;
}

.title03 {
  text-align: left;
  flex-flow: row-reverse;
  width: 100%;
  justify-content: space-between;
}
.title03 .ja {
  font-size: 2.25em;
  line-height: 1.5;
}

h2 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  gap: 1rem;
  margin: 0 auto clamp(1.5rem, 5vw, 3rem) auto;
  font-family: "IBM_Plex_Sans_JP", sans-serif;
  line-height: 1;
}
h2 .en {
  text-transform: lowercase;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  font-family: "Exo";
  font-weight: 500;
  transform: scaleY(0.9);
  line-height: 1.1;
  -webkit-background-clip: text;
          background-clip: text;
  opacity: 0.75;
  font-family: "IBM_Plex_Sans_JP";
  letter-spacing: 0;
}
h2 .en::first-letter {
  text-transform: uppercase;
}
h2 .ja {
  font-size: clamp(1.7rem, 1.66rem + 0.2vw, 1.9rem);
  font-weight: 600;
}

@media screen and (max-width: 480px) {
  h2 .ja {
    font-size: clamp(1.3rem, 1.26rem + 0.2vw, 1.5rem);
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/********  見出し[h2]部分設定  end  *******/
/*****************************************/
.btn {
  background: #e8f0d7;
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 60px 10px;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background: #00913a;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .btn {
    padding: 13px 50px 10px;
  }
}
/*****************************************/
/**********  マーカー設定  start  *********/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.marker_type1 {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(51, 167, 97, 0.5) 55%);
  padding: 0 0.15rem;
  margin: 0 0.15rem;
  -webkit-text-emphasis: filled dot #00913a;
  text-emphasis: filled dot #00913a;
  font-weight: bold;
}

.marker_type2 {
  display: inline;
  background: linear-gradient(transparent 60%, rgb(255, 136, 0) 55%);
  padding: 0 0.15rem 0.25rem;
  margin: 1rem 0.15rem 0;
  -webkit-text-emphasis: filled rgb(255, 136, 0);
  text-emphasis: filled rgb(255, 136, 0);
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/***********  マーカー設定  end  **********/
/*****************************************/
/*****************************************/
/********フォトギャラリー上下中央設定*******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
#lightbox {
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  フォトギャラリー上下中央設定 ******/
/*****************************************/
#breadcrumb {
  padding: 0rem 0;
  margin: 1rem 0;
}
#breadcrumb .breadcrumb__warp {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
}
#breadcrumb .breadcrumb__warp ol {
  width: 100%;
  display: flex;
}
#breadcrumb .breadcrumb__warp ol li {
  padding: 0 0.5rem;
  font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
  font-weight: 800;
}
#breadcrumb .breadcrumb__warp ol li:first-child {
  padding: 0 1rem 0 0;
}

@media screen and (max-width: 480px) {
  #breadcrumb .breadcrumb__warp {
    width: 90%;
  }
}
#load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000000000;
  background-color: #fff;
  /* #load 全体のフェード・スライド設定 */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-in-out, transform 0.8s ease-in-out;
  pointer-events: auto;
  /* 非表示時のクラス */
}
#load.is-hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
#load #water {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #8fc31f, #00913a); /* 変数がなければ直接カラーコードを指定してください */
  opacity: 0.2;
}
#load .layer1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  /* ロゴ個別の動き */
  transition: opacity 0.6s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}
#load .layer1.is-hide {
  opacity: 0;
  transform: translateY(-20px); /* 上に少し移動 */
}
#load .layer2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background: linear-gradient(90deg, #8fc31f, #00913a);
  opacity: 0.3;
  /* トランジションの設定を追加 */
  transition: opacity 0.6s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(0);
}
#load .layer2.is-hide {
  opacity: 0;
  transform: translateY(100%); /* ★ layer2 だけ「下」にスライドアウトさせる */
}

/* SVGアニメーションのスタイル */
path,
line {
  stroke: #0a9943;
  stroke-width: 0.5px;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: svg 1.3s ease-in both;
}

svg {
  width: 50%;
  max-width: 500px;
  height: auto;
}

@keyframes svg {
  0% {
    fill-opacity: 0;
    stroke-dashoffset: 2000;
  }
  70% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
    stroke-dashoffset: 0;
  }
}
header {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 5px 5%;
  background-color: #f7f7f7;
  position: absolute;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header .sp_br {
  display: none;
}
header .he_logo {
  transition: 0.3s ease;
  color: #fff;
  padding: 0.5rem 2rem 0.5rem 0;
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
header .he_logo::before {
  content: "";
  width: 200%;
  height: calc(100% + 10px);
  background: linear-gradient(90deg, #8fc31f, #00913a);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
header .he_logo a {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
header .he_logo a img {
  transition: 0.3s;
  width: 250px;
  opacity: 0.9;
}
header .he_logo span {
  font-size: 0.7em;
}
header .accordion {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
  position: absolute;
  top: calc(100% + 1px);
  background-color: #f7f7f7;
  padding: 1rem 1.5rem;
  font-size: 0.9em;
  display: flex;
  flex-flow: column;
  gap: 5px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header .accordion p {
  display: flex;
  gap: 5px;
  line-height: 1.75;
}
header .accordion p::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin: 0.8em 0;
  background-color: #33a761;
  display: block;
}
header .nav_list__li.meg.open .accordion {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  white-space: nowrap;
  position: absolute;
  top: calc(100% + 1px);
  background-color: #fff;
  padding: 1rem 1.5rem;
  font-size: 0.9em;
}
header .nav_list__li.meg.open .accordion p {
  display: flex;
  gap: 5px;
  color: #008080;
}
header .nav_list__li.meg.open .accordion p::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin: 0.5em 0;
  background-color: #8fc31f;
  display: block;
  border-radius: 50%;
}
header .he-box {
  position: relative;
  display: flex;
  justify-content: end;
}
header .he-box .he_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}
header .he-box .he_wrap nav .nav_list {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  align-items: center;
}
header .he-box .he_wrap nav .nav_list__li {
  position: relative;
}
header .he-box .he_wrap nav .nav_list__li p {
  color: #008080;
}
header .he-box .he_wrap nav .nav_list__li p i {
  margin-left: 1rem;
  color: #00913a;
}
header .he-box .he_wrap nav .nav_list__li span {
  color: #33a761;
  font-size: 11px;
  font-weight: 800;
}
header .he-box .he_wrap nav .nav_list__li a {
  position: relative;
  display: block;
}
header .he-box .he_wrap nav .nav_list__li a::after {
  position: absolute;
  bottom: -9%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, #8fc31f, #00913a);
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: 0.3s;
}
header .he-box .he_wrap nav .nav_list__li a:hover::after {
  opacity: 1;
  bottom: -5%;
}
header .he-box .he_wrap nav .nav_list .active a::after {
  transform: scale(1, 1);
  width: 100%;
}

/* 上部に固定させるスタイルを用意 */
.fixed {
  background-color: #f7f7f7;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: color-mix(in srgb, rgb(0, 0, 0) 10%, transparent) 0px 0px 1rem;
}
.fixed .he_logo::before {
  opacity: 1 !important;
}
.fixed .he_logo a img {
  opacity: 1;
  filter: brightness(0) invert(1);
}
.fixed .he-box .he_wrap nav .nav_list__li p {
  color: #008080 !important;
}
.fixed .he-box .he_wrap nav .nav_list__li p i {
  color: #00913a !important;
}

@media screen and (max-width: 1280px) {
  header .he-box .he_wrap nav .nav_list {
    gap: 30px;
  }
}
@media screen and (max-width: 1740px) {
  header .sp_br {
    display: none;
  }
  header p {
    border-bottom: 1px solid #d8e2dc;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.15em;
    font-weight: 600;
  }
  header .accordion {
    padding: 0;
    display: flex;
    flex-flow: row;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
    gap: 1rem;
  }
  header .accordion li a {
    padding: 0.5rem 2rem 0.25rem;
    background-color: #33a761;
    border-radius: 5px;
    width: 100%;
  }
  header .accordion li p {
    color: #fff;
    border-bottom: none;
    margin: 0;
    font-size: clamp(0.75rem, 0.71rem + 0.2vw, 0.95rem);
    font-weight: 500;
  }
  header .accordion li p::before {
    display: none;
  }
  header .he-box .he_wrap nav {
    display: none;
  }
  header .nav_list__li:nth-of-type(3) .accordion li a, header .nav_list__li:nth-of-type(6) .accordion li a {
    background-color: #008080;
  }
  header .nav_list__li:nth-of-type(4) .accordion li a, header .nav_list__li:nth-of-type(7) .accordion li a {
    background-color: #88b32d;
  }
}
@media screen and (max-width: 768px) {
  header .sp_br {
    display: block;
  }
  header p {
    margin-bottom: 10px;
  }
  header .accordion {
    gap: 10px;
  }
  header .accordion li {
    width: calc(50% - 5px);
  }
  header .accordion li a {
    padding: 12px 0 10px;
    height: 100%;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .accordion li p {
    line-height: 20px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding: 7px 5%;
  }
  header .he_logo {
    padding: 0 2rem 0 0;
  }
  header .he_logo::before {
    height: calc(100% + 15px);
  }
  header .he_logo a img {
    width: 200px;
  }
  header .he-box .he_wrap {
    margin: 0 15px 0 0;
  }
  .fixed .he_logo {
    padding: 0 2rem 0 0;
  }
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999999;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: 0%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: #f7f7f7;
  /*動き*/
  transition: all 0.6s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#g-nav .g-nav-icon {
  display: flex;
  align-items: center;
  width: 200px;
  margin-top: 30px;
  margin-left: 5px;
}
#g-nav .g-nav-icon a {
  padding: 0;
}
#g-nav .g-nav-icon a img {
  width: 30px;
  margin-right: 20px;
  transition: 0.4s;
}
#g-nav .g-nav-icon a img:hover {
  opacity: 0.5;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#g-nav.panelactive .accordion {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  z-index: 99999;
  width: 100%;
  /*表示する高さ*/
  position: relative;
  z-index: 99999;
  width: 90%;
  margin: 50px auto 100px;
}

/*ナビゲーション*/
#g-nav .nav {
  /*ナビゲーション天地中央揃え*/
  position: relative;
  z-index: 99999;
  width: 90%;
  margin-inline: auto;
}

/*リストのレイアウト設定*/
#g-nav .nav {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  align-items: flex-start;
}
#g-nav .nav .nav_list__li {
  list-style: none;
  width: 100%;
}
#g-nav .nav .nav_list__li img {
  width: 90%;
  max-width: 300px;
  margin-bottom: 1rem;
}
#g-nav .nav .nav_list__li a {
  font-weight: 600;
  text-decoration: none;
  display: block;
  letter-spacing: 0.1em;
  transition: 0.5s;
}
#g-nav .nav .nav_list__li a:hover {
  opacity: 0.5;
}
#g-nav .nav .nav_list__li p i {
  font-size: 30px;
}
#g-nav .nav .nav_list__li span {
  font-weight: 600;
  color: #393939;
}
#g-nav .nav .nav_list__li:first-child a {
  width: -moz-fit-content;
  width: fit-content;
}

/*========= ボタンのためのCSS ===============*/
/* Hamburger menu button */
.active {
  background-color: #f0f8f0;
}

.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9999;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  top: -20px;
  right: 0px;
  z-index: 9999999;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 15px 5px;
}

.navicon {
  background: linear-gradient(90deg, #8fc31f, #00913a);
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: linear-gradient(90deg, #8fc31f, #00913a);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn,
.menu-icon {
  display: none;
}

@media screen and (max-width: 1740px) {
  .menu-btn,
  .menu-icon {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .menu-icon {
    top: -15px;
  }
}
@media screen and (max-width: 480px) {
  #g-nav .nav .nav_list__li img {
    margin-bottom: 0;
  }
}
#floating {
  position: fixed;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 99;
  display: none;
}
#floating li {
  display: block;
  margin: 0.5rem 0;
  border: solid 2px #ffffff;
  border-right: none;
}
#floating li a {
  width: 40px;
  text-transform: uppercase;
  background-color: #33a761;
  color: #008080;
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  padding: 1rem 0.5rem;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  position: relative;
  transition: all ease 0.5s;
}
#floating li a i {
  margin-bottom: 0.25rem;
}
#floating li:hover a {
  background-color: pink;
  color: red;
}

@media screen and (max-width: 768px) {
  #floating {
    display: none !important;
  }
}
_:lang(x) + _:-webkit-full-screen-document,
#floating {
  right: 25px;
}
_:lang(x) + _:-webkit-full-screen-document li,
#floating li {
  border: none;
}

#main-visual {
  padding: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
#main-visual .sp_br {
  display: none;
}
#main-visual::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, transparent 75%, #8fc31f, #00913a);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
  z-index: 5;
  pointer-events: none;
}
#main-visual::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #555555;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0.2;
  pointer-events: none;
}
#main-visual .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
#main-visual .copy {
  position: absolute;
  left: 5%;
  bottom: 10%;
  white-space: nowrap;
  z-index: 6;
  font-size: 1.25em;
}
#main-visual .copy .main {
  font-size: 2.5em;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.25;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
}
#main-visual .copy .main .rb {
  position: relative;
}
#main-visual .copy .main .rb::before {
  content: "・・・";
  position: absolute;
  right: 1em;
  font-size: 0.8em;
  letter-spacing: 0.45em;
  top: -0.7em; /* 好きな位置に調整 */
}
#main-visual .copy .main:nth-of-type(2) {
  padding-right: 0;
  margin-top: 2rem;
}
#main-visual .copy2 {
  position: absolute;
  right: 5%;
  top: 14%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  z-index: 6;
  font-size: 1.2em;
}
#main-visual .copy2 .sub {
  line-height: 2.5;
  margin-top: 2rem;
  color: #fff;
  font-size: 1.25em;
}
#main-visual .swiper-top {
  width: 100%;
  height: 100% !important;
  position: relative;
  overflow: hidden;
}
#main-visual .swiper-top .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}
#main-visual .swiper-top .swiper-slide .swiper-img {
  width: 100%;
  height: 100%;
  will-change: transform;
  overflow: hidden;
  /* 両方のアニメーションに対応 */
  transition: clip-path 0.6s ease-in;
}
#main-visual .swiper-top .swiper-slide .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-visual .swiper-top {
  /* アクティブ：全面表示 */
}
#main-visual .swiper-top .swiper-slide.swiper-slide-active .swiper-img {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#main-visual .swiper-top {
  /* 次のスライド：右側だけ残して幅0 */
}
#main-visual .swiper-top .swiper-slide.swiper-slide-next .swiper-img {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
#main-visual .swiper-horizontal > .swiper-pagination-bullets,
#main-visual .swiper-pagination-bullets.swiper-pagination-horizontal,
#main-visual .swiper-pagination-custom,
#main-visual .swiper-pagination-fraction {
  bottom: 5%;
  display: none;
}
#main-visual .swiper-slide-active .swiper-img,
#main-visual .swiper-slide-duplicate-active .swiper-img,
#main-visual .swiper-slide-prev .swiper-img {
  animation: zoomUp 10s ease-out 0s normal both;
}

@media screen and (max-width: 700px) {
  #main-visual .sp_br {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #main-visual .copy {
    bottom: 13%;
  }
  #main-visual .copy .main {
    font-size: 8.5vw;
  }
  #main-visual .copy2 .sub {
    line-height: 2;
    font-size: 4.75vw;
  }
}
#blog2 {
  position: relative;
  z-index: 0;
}
#blog2 .deco_img {
  position: absolute;
  opacity: 0.1;
  width: 55%;
  position: absolute;
  top: 70%;
  transform: translate(0%, -50%);
  right: -5%;
}
#blog2 .btn {
  margin: 2rem auto 0;
}
#blog2 .blog__warp--box--listbox--list--link--item--cat,
#blog2 .blog__warp--box--listbox--list--link--item--read,
#blog2 .fa-regular {
  display: none;
}
#blog2 .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #blog2 .section {
    width: 90%;
  }
}
#blog2 .section {
  max-width: 1600px;
  margin-top: 5vh;
}
#blog2 .blog__warp--box {
  border-top: 1px solid #d8e2dc;
  background-color: rgba(255, 255, 255, 0.35);
}
#blog2 .blog__warp--box--listbox--list {
  border-bottom: 1px solid #d8e2dc;
  transition: 0.3s ease;
}
#blog2 .blog__warp--box--listbox--list a {
  display: block;
  padding-block: 1rem 0.75rem;
  padding-right: 6rem;
}
#blog2 .blog__warp--box--listbox--list:hover {
  color: #008080;
}
#blog2 .blog__warp--box--listbox--list--link {
  position: relative;
}
#blog2 .blog__warp--box--listbox--list--link .arrow {
  position: absolute;
  right: 0;
  top: 35%;
  transform: translate(0%, -50%);
  scale: 0.27;
  transition: 0.3s;
}
#blog2 .blog__warp--box--listbox--list--link .arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f7f7f7;
  border: 2px solid #8fc31f;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: -1;
  transition: 0.3s;
}
#blog2 .blog__warp--box--listbox--list--link .arrow_inner {
  display: inline-block;
  width: 80px;
  height: 10px;
  scale: 0.65;
  border-radius: 9999px;
  background-color: #8fc31f;
}
#blog2 .blog__warp--box--listbox--list--link .arrow_inner::before, #blog2 .blog__warp--box--listbox--list--link .arrow_inner::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  width: 45px;
  height: 10px;
  border-radius: 9999px;
  background-color: #8fc31f;
  transform-origin: calc(100% - 2px) 50%;
}
#blog2 .blog__warp--box--listbox--list--link .arrow_inner::before {
  transform: rotate(45deg);
}
#blog2 .blog__warp--box--listbox--list--link .arrow_inner::after {
  transform: rotate(-45deg);
}
#blog2 .blog__warp--box--listbox--list--link--item {
  display: flex;
  align-items: center;
}
#blog2 .blog__warp--box--listbox--list--link--item--time {
  order: -1;
  margin-right: 2rem;
  font-family: "Exo";
  font-size: 0.8em;
  color: #959c98;
}
#blog2 .blog__warp--box--listbox--list--link--item--h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
#blog2 .blog__warp--box--listbox--list--link--item--h3 b {
  font-weight: 500;
}
#blog2 .blog__warp--box--listbox--list--link:hover .arrow {
  right: -0.5rem;
}

@media screen and (max-width: 928px) {
  #blog2 .section {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #blog2 .blog__warp--box--listbox--list a {
    padding-right: 4rem;
  }
  #blog2 .blog__warp--box--listbox--list--link .arrow {
    right: -1rem;
  }
}
@media screen and (max-width: 480px) {
  #blog2 .deco_img {
    width: 100%;
    opacity: 0.05;
  }
  #blog2 .blog__warp--box--listbox--list--link--item {
    display: flex;
    flex-flow: column;
    align-items: inherit;
  }
  #blog2 .blog__warp--box--listbox--list--link--item--time {
    width: -moz-fit-content;
    width: fit-content;
  }
  #blog2 .blog__warp--box--listbox--list--link--item--h3 {
    padding-top: 0.25rem;
  }
  #blog2 .blog__warp--box--listbox--list--link .arrow {
    top: 40%;
  }
}
#link .title03 {
  width: 80%;
  margin-inline: auto;
  max-width: 1480px;
  align-items: flex-start;
  opacity: 0.8;
}
#link .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #link .section {
    width: 90%;
  }
}
#link .section {
  width: 100%;
  max-width: calc(100% - 6rem);
}
#link .section__title {
  opacity: 0;
  position: absolute;
  z-index: -999;
  pointer-events: none;
}
#link .section__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 2rem;
}
#link .section__list .inner {
  width: calc((100% - 3rem) / 4);
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
#link .section__list .inner:nth-of-type(5), #link .section__list .inner:nth-of-type(6), #link .section__list .inner:nth-of-type(7) {
  width: calc((100% - 2rem) / 3);
  overflow: hidden;
}
#link .section__list .inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 75%, #8fc31f, #00913a);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  transition: 0.3s;
}
#link .section__list .inner:hover::before {
  opacity: 0.25;
}
#link .section__list .inner__image {
  width: 100%;
  height: clamp(1rem, 60vh, 440px);
  overflow: hidden;
  position: relative;
}
#link .section__list .inner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.7s ease;
  will-change: transform;
}
#link .section__list .inner a {
  display: flex;
  flex-flow: column-reverse;
}
#link .section__list .inner .ja {
  position: absolute;
  bottom: 0;
  z-index: 1;
  color: #fff;
  padding: 15px 10px;
  display: flex;
  flex-flow: column;
  gap: 5px;
  transition: 0.3s all;
  font-size: 1em;
}
#link .section__list .inner .ja span {
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.65;
  transition: 0.3s all;
}
#link .section__list .inner a:hover img {
  transform: scale(1.05);
}
#link .section__list .inner a:hover::after {
  opacity: 0.05;
}
#link .section__list .inner a:hover .ja {
  color: #fff;
}
#link .section__list .inner a:hover .ja span {
  color: #fff;
}
#link .section__list .inner:hover {
  background-color: #33a761;
}

@media screen and (max-width: 1280px) {
  #link .section__list .inner {
    width: calc((100% - 1rem) / 2);
  }
  #link .section__list .inner:nth-of-type(5), #link .section__list .inner:nth-of-type(6) {
    width: calc((100% - 1rem) / 2);
  }
  #link .section__list .inner:nth-of-type(7) {
    width: 100%;
  }
  #link .section__list .inner__image {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 768px) {
  #link .title03 {
    width: 90%;
  }
  #link .section {
    width: 90%;
    max-width: unset;
  }
}
@media screen and (max-width: 550px) {
  #link .section__list {
    display: grid;
    grid-template-columns: 1fr;
    width: 95%;
    margin-inline: auto;
  }
  #link .section__list .inner {
    width: 100%;
  }
  #link .section__list .inner::before {
    background: linear-gradient(180deg, transparent 50%, #8fc31f, #00913a);
  }
  #link .section__list .inner:nth-of-type(5), #link .section__list .inner:nth-of-type(6) {
    width: 100%;
  }
  #link .section__list .inner .ja span {
    display: block;
  }
  #link .section__list .inner__image {
    aspect-ratio: 3/2;
    height: unset;
  }
}
@media screen and (max-width: 480px) {
  #link .title03 {
    margin-bottom: 1rem;
  }
  #link .title03 .ja {
    font-size: 1.75em;
  }
  #link .title03 .en {
    margin-top: 2rem;
  }
  #link .section__list .inner__image .arrow {
    bottom: 1.5rem;
  }
  #link .section__list .inner .ja span {
    font-size: 1.35em;
  }
}
#greeting {
  overflow: hidden;
  position: relative;
  padding-block: clamp(1rem, 20vh, 250px);
  position: relative;
  z-index: 0;
}
#greeting::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #444444;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.35;
}
#greeting .bg_img {
  position: absolute;
  top: 0;
  width: 100%;
  height: calc(100% + 6rem);
  -o-object-fit: cover;
     object-fit: cover;
}
#greeting .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #greeting .section {
    width: 90%;
  }
}
#greeting .section {
  position: relative;
  z-index: 1;
  color: #fff;
}
#greeting .section h2 .en {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #fff;
  opacity: 1;
}
#greeting .section_inner {
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.1rem);
  line-height: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  text-align: center;
}
#greeting .section_inner .btn {
  margin: 2rem auto 0;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
#greeting .section_inner .btn:hover {
  background: #00913a;
  border: 1px solid #00913a;
}

@media screen and (max-width: 1279px) {
  #greeting .section_inner {
    text-align: justify;
  }
}
@media screen and (max-width: 480px) {
  #greeting {
    padding-block: clamp(1rem, 15vh, 150px);
  }
}
#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #33a761;
  clip-path: polygon(0 0, 65% 0, 100% 100%, 35% 100%);
}
#carousel .carousel__warp h2 {
  margin: 0 auto 4rem;
}
#carousel .carousel__warp--slider {
  overflow: hidden;
}
#carousel .carousel__warp--slider--box {
  transition-timing-function: linear;
}
#carousel .carousel__warp--slider--box--list {
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#carousel .carousel__warp--slider--box--list img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#carousel .carousel__warp--link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#carousel .carousel__warp--link a {
  margin: 2rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  background-color: #33a761;
  border: solid 1px #33a761;
  color: #008080;
  transition: all ease 0.5s;
}
#carousel .carousel__warp--link a:hover {
  background-color: #008080;
  color: #00913a;
}

#modal {
  padding: 5rem 0 15rem 0;
  position: relative;
  margin: 0 3rem 3rem;
  width: calc(100% - 6rem);
}
#modal::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "coating gallery";
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(4rem, 3.5rem + 2.5vw, 6.5rem);
  writing-mode: vertical-rl;
  text-wrap: nowrap;
  line-height: 1;
  z-index: 1;
}
#modal .modal__warp h2 {
  margin: 0 auto 4rem;
}
#modal .modal__warp .modal {
  padding: 0 0;
}
#modal .modal__warp .inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}
#modal .modal__warp .inner > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#modal .modal__warp .inner > ul > li {
  width: calc(25% - 20px);
  margin-top: unset !important;
  margin: 0 10px 20px;
}
#modal .modal__warp .inner > ul > li figure {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#modal .modal__warp .inner > ul > li figure img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 1s;
}
#modal .modal__warp .inner > ul > li figure:hover img {
  scale: 1.15;
}
#modal .modal__warp {
  /* モーダルを開くボタン */
}
#modal .modal__warp .modal__trigger {
  cursor: pointer;
}
#modal .modal__warp .modal__trigger:nth-child(n+2) {
  margin-top: 60px;
}
#modal .modal__warp {
  /* モーダル本体 */
}
#modal .modal__warp .modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
#modal .modal__warp .modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, 0.85);
  cursor: pointer;
}
#modal .modal__warp .modal__container {
  position: absolute;
  top: calc(50% + 46px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 1000px);
  height: calc(80vh - 40px);
  padding: 20px;
  background: #fff;
}
#modal .modal__warp .modal__inner {
  position: relative;
  overflow-y: scroll;
  height: calc(100% - 50px);
  padding: 0px 20px 20px 20px;
  margin: 50px 0 0 0;
}
#modal .modal__warp {
  /* モーダルを閉じるボタン */
}
#modal .modal__warp .modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgb(50, 50, 50);
  cursor: pointer;
  transition: opacity 0.6s;
  z-index: 999;
}
#modal .modal__warp .modal__close:hover {
  opacity: 0.6;
}
#modal .modal__warp .modal__close:before,
#modal .modal__warp .modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}
#modal .modal__warp .modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#modal .modal__warp .modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#modal .modal__warp {
  /* モーダル内のコンテンツ */
}
#modal .modal__warp .modal__content .modal__title {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
}
#modal .modal__warp .modal__content .modal__text {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 3.5em;
  right: 2.5em;
  z-index: 99;
  transition: 0.3s;
}
.pagetop a {
  width: 45px;
  height: 45px;
  aspect-ratio: 1/1;
  display: block;
  background: linear-gradient(90deg, #98ca4f, #3baa64);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 50%;
  transition: all ease 0.5s;
}
.pagetop a i {
  color: #fff;
  transition: all ease 0.5s;
}
.pagetop:hover {
  bottom: 4em;
}

@media screen and (max-width: 1280px) {
  .pagetop {
    bottom: calc(50px + 1rem);
  }
}
@media screen and (max-width: 480px) {
  .pagetop {
    display: none;
    position: fixed;
    bottom: calc(30px + 1.5rem);
    right: 1.5em;
  }
  .pagetop a {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
  }
}
_:lang(x) + _:-webkit-full-screen-document,
.pagetop {
  right: 18px;
}

.footer {
  position: relative;
  overflow: hidden;
}
.footer_bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.footer_wrap {
  width: 80%;
  max-width: 1280px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
  padding: 120px 0 45px;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
  align-items: center;
}
.footer_wrap__logo {
  grid-row: 1/3;
  grid-column: 1/2;
  width: 280px;
  max-width: 100%;
  text-align: center;
}
.footer_wrap__logo a {
  display: block;
  width: 100%;
}
.footer_wrap__logo img {
  width: 100%;
}
.footer_wrap__address {
  display: flex;
  align-items: center;
}
.footer_wrap__address span {
  display: inline-block;
}
.footer_wrap__tel .btn {
  display: flex;
  align-items: center;
}
.footer_wrap__tel i {
  margin-right: 0.5rem;
}
.footer_wrap__tel a {
  font-size: 1.1em;
}
.footer_wrap__nav {
  grid-column: 1/-1;
  margin-top: 2rem;
}
.footer_wrap__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
}
.footer_wrap__nav ul .active {
  background-color: transparent;
}
.footer_wrap__nav ul li a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: 0.9em;
  transition: 0.3s ease;
}
.footer_wrap__nav ul li a i {
  padding-top: 2px;
}
.footer_wrap__nav ul li a span {
  display: none;
}
.footer_wrap__nav ul li:hover a {
  opacity: 0.6;
}
.footer_copy {
  position: relative;
  z-index: 7;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-size: 0.9em;
  background-color: #00913a;
}
.footer_copy span {
  display: inline-block;
}

.sp-fixed-link {
  display: none;
}

@media screen and (max-width: 928px) {
  .footer_wrap__wrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer_wrap {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    padding-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer_wrap__logo, .footer_wrap__tel {
    margin-inline: auto;
  }
  .footer_wrap__address {
    justify-content: center;
    text-align: center;
  }
  .footer_wrap__nav ul {
    justify-content: center;
  }
  .sp-fixed-link {
    display: flex;
    position: fixed;
    bottom: -70px;
    /* 初期位置は画面外 */
    left: 0;
    z-index: 99;
    width: 100%;
    transition: bottom 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    /* transformを追加 */
    transform: translateY(100%);
    /* 初期位置は下に隠れる状態 */
  }
  .sp-fixed-link.hidden {
    display: none;
  }
  .sp-fixed-link.scroll {
    opacity: 0;
    transform: translateY(100%);
    /* スクロール中は下に隠れる */
    pointer-events: none;
  }
  .sp-fixed-link.page-open {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
    /* 下からスライドして表示される */
  }
  .sp-fixed-link.page-top {
    bottom: 0;
    opacity: 0;
    transform: translateY(0);
    /* 下からスライドして表示される */
    pointer-events: none;
  }
  #sp_btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border-top: 2px solid #e8f0d7;
  }
  #sp_btn ul {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  #sp_btn ul li {
    height: 45px;
    width: 100%;
    display: block;
    padding: 7.5px 0;
    background-color: #008080;
  }
  #sp_btn ul li a,
  #sp_btn ul li .button {
    display: flex;
    gap: 2px;
    text-align: center;
    color: #393939;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  #sp_btn ul li:nth-child(2) {
    border-left: 2px solid #e8f0d7;
  }
}
@media screen and (max-width: 480px) {
  .footer_wrap {
    width: 90%;
  }
  .footer_wrap__nav {
    margin-top: 0;
  }
}
header {
  background: transparent;
}
header .he_logo::before {
  opacity: 0;
}
header .he_logo a img {
  opacity: 1;
  filter: brightness(0) invert(1);
}
header .he-box .he_wrap nav .nav_list__li p {
  color: #fff;
}
header .he-box .he_wrap nav .nav_list__li p i {
  color: #fff;
}

.navicon,
.navicon:before,
.navicon:after {
  background: #fff;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  background: #33a761;
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  background: #33a761;
}

.fixed .navicon,
.fixed .navicon:before,
.fixed .navicon:after {
  background: linear-gradient(90deg, #8fc31f, #00913a);
}

/*========= 
↓以下すべてローディングのCSS
mainとheaderのopacity設定に注意
/*========= 

/*========= ローディング画面のためのCSS ===============*//*# sourceMappingURL=style.css.map */