@charset "UTF-8";
@font-face {
  font-family: "BIZ UDPGothic";
  font-weight: 400;
  src: url("../../font/BIZ_UDPGothic/woff2/BIZUDPGothic-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "BIZ UDPGothic";
  font-weight: 700;
  src: url("../../font/BIZ_UDPGothic/woff2/BIZUDPGothic-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Zen_Kaku_Gothic_New";
  font-weight: 400;
  src: url("../../font/Zen_Kaku_Gothic_New/woff2/ZenKakuGothicNew-Medium.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  /****** アンカーリンク用高さ調整 start  ******/
  scroll-padding-top: 180px;
  /******* アンカーリンク用高さ調整 end  *******/
}
html body {
  width: 100%;
  font-family: "Zen_Kaku_Gothic_New", "LINESeedJP", sans-serif;
  color: #33383a;
  background: #fafeff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.95rem, 0.91rem + 0.2vw, 1.15rem);
  line-height: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  letter-spacing: 0.1rem;
  position: relative;
  font-weight: 500;
}
html body main {
  overflow: hidden;
  border: 1rem solid #b0e0e6;
  border-top: none;
  border-bottom: none;
}
html body main .space {
  display: block;
  height: 1rem;
}

@media screen and (max-width: 480px) {
  html body {
    line-height: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  }
  html body main {
    border: 0.75rem solid #b0e0e6;
    border-top: none;
    border-bottom: none;
  }
}
/*****************************************/
/*****  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(50px);
  -webkit-transform: translateY(50px);
  transition: 1s all;
  -webkit-transition: 1s 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);
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  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: 6rem 0;
  background-color: #fafeff;
}

@media screen and (max-width: 1024px) {
  section {
    padding: 4rem 0 4rem;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 3rem 0 3rem;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  セクション部分空白設定  end  ******/
/*****************************************/
/*****************************************/
/*******  見出し[h2]部分設定  start  ******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.txt_m {
  font-size: 1.25em;
  line-height: 1.9;
  font-weight: bold;
}

.txt_l {
  font-size: 1.5em;
  line-height: 2;
  font-weight: bold;
}

h2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-flow: column;
  margin-bottom: 4rem;
  line-height: 1.5;
  font-family: "Zen_Kaku_Gothic_New", "LINESeedJP", sans-serif;
  font-weight: bold;
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
}
h2::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
h2 .en {
  color: #6ab6a3;
  text-transform: uppercase;
}
h2 .ja {
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  letter-spacing: 0.1em;
  font-family: "Zen_Kaku_Gothic_New", "LINESeedJP", sans-serif;
  font-weight: bold;
  margin: 0.5rem 0 0 0;
}

.icon01::before {
  background-image: url(../../img/common/icon01.png);
}

.icon02::before {
  background-image: url(../../img/common/icon02.png);
}

.icon03::before {
  background-image: url(../../img/common/icon03.png);
}

.icon04::before {
  background-image: url(../../img/common/icon04.png);
}

.icon05::before {
  background-image: url(../../img/common/icon05.png);
}

.icon06::before {
  background-image: url(../../img/common/icon06.png);
}

.icon07::before {
  background-image: url(../../img/common/icon07.png);
}

.icon08::before {
  background-image: url(../../img/common/icon08.png);
}

.icon09::before {
  background-image: url(../../img/common/icon09.png);
}

.icon10::before {
  background-image: url(../../img/common/icon10.png);
}

.icon11::before {
  background-image: url(../../img/common/icon11.png);
}

@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 2.5rem;
  }
  h2 .ja {
    font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  }
}
@media screen and (max-width: 480px) {
  .txt_l {
    font-size: 1.4em;
    line-height: 1.9;
  }
  .txt_m {
    font-size: 1.15em;
    line-height: 1.7;
  }
  h2 {
    margin-bottom: 2rem;
    padding-bottom: 5rem;
  }
  h2 .en {
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  }
  h2 .ja {
    font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  }
  h2::before {
    width: 70px;
    height: 70px;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/********  見出し[h2]部分設定  end  *******/
/*****************************************/
@keyframes clickhere {
  0% {
    transform: translateY(0.5rem);
    opacity: 0;
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    transform: translateY(0.25rem);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0.5rem);
    opacity: 0;
  }
}
.btn {
  background: #b0e0e6;
  border-radius: 100px;
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  transition: 0.3s ease-in-out;
  font-weight: 600;
}
.btn:hover {
  background: #6ab6a3;
  color: #fafeff;
}

/*****************************************/
/**********  マーカー設定  start  *********/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.marker_type1 {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(106, 182, 163, 0.6) 55%);
  padding: 0 0.15rem;
  margin: 0 0.15rem;
  -webkit-text-emphasis: filled #6ab6a3;
  text-emphasis: filled #6ab6a3;
  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;
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  フォトギャラリー上下中央設定 ******/
/*****************************************/
/*****************************************/
/**********  パララックス  start  *********/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.parallax_imagebox {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 400px;
}
.parallax_imagebox .background {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax_imagebox .bg_image_one {
  background-image: url("../../img/common/sample__bg.jpg");
}

@media screen and (max-width: 768px) {
  .parallax_imagebox {
    height: 400px;
  }
  .parallax_imagebox .background {
    background-position: bottom -20vh;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/***********  パララックス  end  **********/
/*****************************************/
#breadcrumb {
  padding: 1rem 0;
  border: 1rem solid #b0e0e6;
  border-bottom: none;
  border-top: none;
}
#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.7rem, 0.66rem + 0.2vw, 0.9rem);
  font-weight: 800;
}
#breadcrumb .breadcrumb__warp ol li:first-child {
  padding: 0 1rem 0 0;
}

@media screen and (max-width: 480px) {
  #breadcrumb {
    border: 0.75rem solid #b0e0e6;
    border-bottom: none;
    border-top: none;
  }
  #breadcrumb .breadcrumb__warp {
    width: 90%;
  }
}
header {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 20px 3%;
  background-color: #fafeff;
  position: fixed;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1rem solid #b0e0e6;
  border-bottom: none;
  border-radius: 2em 2em 0 0;
}
header:before {
  content: "";
  width: calc(100% + 2rem);
  height: 1rem;
  position: absolute;
  background-color: #b0e0e6;
  top: -1rem;
  left: -1rem;
}
header .he_logo {
  font-size: 2em;
  transition: 0.3s ease;
  font-weight: bold;
  letter-spacing: 0.1em;
}
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 ul {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  align-items: center;
}
header .he-box .he_wrap nav ul li {
  font-weight: 600;
  transition: 0.3s;
}
header .he-box .he_wrap nav ul li p {
  text-align: center;
}
header .he-box .he_wrap nav ul li i {
  margin-right: 0.5rem;
}
header .he-box .he_wrap nav ul li a {
  position: relative;
  display: inline-block;
}
header .he-box .he_wrap nav ul li:hover {
  color: #6ab6a3;
}
header .he-box .he_wrap nav ul li a:hover::after {
  transform: scale(1, 1);
}
header .he-box .he_wrap nav ul .active a {
  color: #6ab6a3;
}

/* 上部に固定させるスタイルを用意 */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: orange;
  color: red;
}
@media screen and (max-width: 1400px) {
  header .he-box .he_wrap nav ul {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    align-items: center;
  }
}
@media screen and (max-width: 1320px) {
  header .he-box .he_wrap nav {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header {
    border-radius: 1.5em 1.5em 0 0;
    padding: 20px 4%;
    border: 0.75rem solid #b0e0e6;
    border-bottom: none;
  }
  header:before {
    content: "";
    width: calc(100% + 1.5rem);
    height: 0.75rem;
    top: -0.75rem;
    left: -0.75rem;
  }
  header .he-box .he_wrap {
    margin: 0 15px 0 0;
  }
}
#heading {
  width: 100%;
  height: 600px;
  position: relative;
  padding: 0;
  border: 1rem solid #b0e0e6;
  border-bottom: none;
  border-top: none;
}
#heading .background {
  width: 100%;
  height: 100%;
  position: relative;
}
#heading .background__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
#heading .background__image {
  position: fixed;
  transform: translate(-50%, 0%);
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../../img/common/heading/heading.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
#heading .background__image--diy {
  background-image: url("../../img/common/heading/heading_diy.jpg");
  background-position: center 10%;
}
#heading .background__image--perspective-diagram {
  background-image: url("../../img/common/heading/heading_perspective-diagram.jpg");
  background-position: center 0%;
}
#heading .background__image--blog02 {
  background-image: url("../../img/common/heading/heading_works.jpg");
  background-position: center 0%;
}
#heading .background__image--about {
  background-image: url("../../img/common/heading/heading_about.jpg");
  background-position: center 50%;
}
#heading .background__image--purchase {
  background-image: url("../../img/common/heading/heading_purchase.jpg");
  background-position: center 80%;
}
#heading .background__image--blog {
  background-image: url("../../img/common/heading/heading_works.jpg");
}
#heading .background::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  background-color: #33383a;
  opacity: 0.1;
}
#heading .heading {
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
}
#heading .heading h1 {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.5;
  gap: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 5em;
  opacity: 0.5;
}

@media screen and (max-width: 928px) {
  #heading {
    height: 300px;
  }
  #heading .heading h1 {
    font-size: 7vw;
  }
}
@media screen and (max-width: 480px) {
  #heading {
    border: 0.75rem solid #b0e0e6;
    border-bottom: none;
    border-top: none;
  }
  #heading .heading {
    top: 65%;
  }
  #heading .heading h1 {
    font-size: 10vw;
  }
  #heading .background__image--about {
    background-position: center bottom;
  }
  #heading .background__image--instructor {
    background-position: center -100% !important;
  }
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999999;
  /*ナビのスタート位置と形状*/
  top: 0;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: #fafeff;
  /*動き*/
  transition: all 0.6s;
  opacity: 0;
}
#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 {
  top: 0;
  opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 99999;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav ul {
  display: flex;
  flex-flow: column;
  align-items: center;
}
#g-nav ul .logo_txt {
  font-size: 2.5em;
  margin-bottom: 2rem;
  font-weight: bold;
}
#g-nav ul li {
  list-style: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
#g-nav ul li img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 2rem;
}
#g-nav ul li a {
  font-weight: bold;
  text-decoration: none;
  padding: 25px 0 5px 0;
  display: block;
  letter-spacing: 0.1em;
  transition: 0.5s;
}
#g-nav ul li a i {
  margin-right: 0.5rem;
}
#g-nav ul li a:hover {
  opacity: 0.5;
}
#g-nav ul li span {
  font-weight: 600;
  font-size: 13px;
  color: #33383a;
  line-height: 10px;
}
#g-nav ul li:first-child a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/*========= ボタンのためのCSS ===============*/
/* Hamburger menu button */
.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: -10px;
  right: 0px;
  z-index: 9999999;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 10px 0;
}

.navicon {
  background: #33383a;
  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: #33383a;
  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: 1320px) {
  .menu-btn,
  .menu-icon {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #g-nav ul {
    top: 45%;
  }
  #g-nav ul li a {
    padding: 20px 5px 5px 5px;
  }
}
#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-right: none;
  transition: all ease 0.3s;
}
#floating li a {
  transform: translateX(1rem);
  width: 70px;
  text-transform: uppercase;
  background-color: #b0e0e6;
  border-radius: 1em 0 0 1em;
  padding: 1rem 2rem 1rem 0.5rem;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  position: relative;
  font-weight: bold;
}
#floating li a i {
  margin-bottom: 0.25rem;
}
#floating li:hover {
  transform: translateX(-1rem);
}
@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;
}

.order-form .section__title {
  margin-block-end: 60px;
}
.order-form .section p {
  text-align: center;
}
.order-form .section #item_calc {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.order-form .section #item_calc section {
  padding: 0;
}
.order-form .section #item_calc section:nth-of-type(3) .products__list .item:nth-child(1) .wrap-price h5 {
  display: none;
}
.order-form .section #item_calc section:nth-of-type(3) .products__list .item:nth-child(1) .wrap-price {
  flex-flow: row;
  justify-content: space-between;
}
.order-form .section #item_calc section:nth-of-type(3) .products__list .item:nth-child(1) .wrap-price::before {
  content: "お問い合わせください";
}
.order-form .section #item_calc section:nth-of-type(3) .products__list .item:nth-child(1) .wrap-price select {
  pointer-events: none;
  background-color: #eee;
  color: #888;
}
.order-form .section .products__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-inline: auto;
}
.order-form .section .products__list .item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  row-gap: 5px;
}
.order-form .section .products__list .item__image {
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
}
.order-form .section .products__list .item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1em;
}
.order-form .section .products__list .item__image .luxury,
.order-form .section .products__list .item__image .specialty {
  display: block;
  width: 75px;
  aspect-ratio: 1/1;
  background-image: url(../../img/order/luxury.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}
.order-form .section .products__list .item__image .luxury.specialty,
.order-form .section .products__list .item__image .specialty.specialty {
  width: 85px;
  background-image: url(../../img/order/specialty.png);
}
.order-form .section .products__list .item__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  justify-content: space-between;
  line-height: 1.5;
}
.order-form .section .products__list .item__name .amount {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 7.5px;
       column-gap: 7.5px;
  display: none;
}
.order-form .section .products__list .item__name .wrap-name {
  display: grid;
  grid-template-columns: auto 1fr;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 2px;
       column-gap: 2px;
  align-items: baseline;
  font-size: 0.9em;
  text-align: justify;
}
.order-form .section .products__list .item__name .wrap-name::before {
  content: "■";
  display: block;
  font-size: 0.75em;
  color: #6ab6a3;
}
.order-form .section .products__list .item .description {
  grid-row: 3/4;
}
.order-form .section .products__list .item .wrap-price {
  display: flex;
  flex-direction: column;
  row-gap: 2.5px;
}
.order-form .section .products__list .item .wrap-price li {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  justify-content: end;
}
.order-form .section .products__list .item .wrap-price li select {
  padding: 0 30px 0 10px;
  background-color: #fff;
  border: 1px solid #e2ecee;
}
.order-form .section .products__list .item .wrap-price li select:focus {
  outline: none;
}
.order-form .section .products__list .item .wrap-price li .select-wrap {
  position: relative;
}
.order-form .section .products__list .item .wrap-price li .select-wrap::after {
  color: #6ab6a3;
  content: "\f078";
  /* fontawesomeのアイコン表示 */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 0.6em;
  width: 0;
  z-index: 0;
  position: absolute;
  top: 56%;
  right: 17px;
  transform: translateY(-50%);
  pointer-events: none;
}
.order-form .section .products__list .item .wrap-price li .select-wrap select.sold-out {
  background-color: #eee;
  color: #999;
  cursor: not-allowed;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #fafeff;
  padding: 45px 30px 30px;
  width: 90%;
  max-width: 700px;
  border-radius: 5px;
  height: -moz-fit-content;
  height: fit-content;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 24px;
  cursor: pointer;
}

.close-btn:hover {
  color: #666;
}

.description {
  display: none;
}

.detail-btn {
  display: inline-block;
  padding: 5px 15px;
  margin: 5px 0;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #e2ecee;
  cursor: pointer;
  color: #6ab6a3;
  transition: 0.3s;
  text-align: center;
  letter-spacing: 0.2em;
}
.detail-btn:hover {
  background-color: #6ab6a3;
  color: #fff;
}

body.modal-open .header,
body.modal-open .sp-fixed-link {
  opacity: 0 !important;
  pointer-events: none;
}

.modal-content {
  max-height: 90svh;
  overflow-y: scroll;
  line-height: 1.5;
}

.modal-content::-webkit-scrollbar {
  display: none;
}

.item__swiper01 .wrap-swiper, .item__swiper02 .wrap-swiper, .item__swiper03 .wrap-swiper, .item__swiper04 .wrap-swiper, .item__swiper05 .wrap-swiper, .item__swiper06 .wrap-swiper {
  margin: 0 auto;
  width: 100%;
}
.item__swiper01 .wrap-swiper .swiper, .item__swiper02 .wrap-swiper .swiper, .item__swiper03 .wrap-swiper .swiper, .item__swiper04 .wrap-swiper .swiper, .item__swiper05 .wrap-swiper .swiper, .item__swiper06 .wrap-swiper .swiper {
  width: 100%;
}
.item__swiper01 .wrap-swiper .swiper .swiper-slide, .item__swiper02 .wrap-swiper .swiper .swiper-slide, .item__swiper03 .wrap-swiper .swiper .swiper-slide, .item__swiper04 .wrap-swiper .swiper .swiper-slide, .item__swiper05 .wrap-swiper .swiper .swiper-slide, .item__swiper06 .wrap-swiper .swiper .swiper-slide {
  width: 100%;
}
.item__swiper01 .wrap-swiper .slider-thumbnail01,
.item__swiper01 .wrap-swiper .slider-thumbnail02,
.item__swiper01 .wrap-swiper .slider-thumbnail03,
.item__swiper01 .wrap-swiper .slider-thumbnail04,
.item__swiper01 .wrap-swiper .slider-thumbnail05,
.item__swiper01 .wrap-swiper .slider-thumbnail06, .item__swiper02 .wrap-swiper .slider-thumbnail01,
.item__swiper02 .wrap-swiper .slider-thumbnail02,
.item__swiper02 .wrap-swiper .slider-thumbnail03,
.item__swiper02 .wrap-swiper .slider-thumbnail04,
.item__swiper02 .wrap-swiper .slider-thumbnail05,
.item__swiper02 .wrap-swiper .slider-thumbnail06, .item__swiper03 .wrap-swiper .slider-thumbnail01,
.item__swiper03 .wrap-swiper .slider-thumbnail02,
.item__swiper03 .wrap-swiper .slider-thumbnail03,
.item__swiper03 .wrap-swiper .slider-thumbnail04,
.item__swiper03 .wrap-swiper .slider-thumbnail05,
.item__swiper03 .wrap-swiper .slider-thumbnail06, .item__swiper04 .wrap-swiper .slider-thumbnail01,
.item__swiper04 .wrap-swiper .slider-thumbnail02,
.item__swiper04 .wrap-swiper .slider-thumbnail03,
.item__swiper04 .wrap-swiper .slider-thumbnail04,
.item__swiper04 .wrap-swiper .slider-thumbnail05,
.item__swiper04 .wrap-swiper .slider-thumbnail06, .item__swiper05 .wrap-swiper .slider-thumbnail01,
.item__swiper05 .wrap-swiper .slider-thumbnail02,
.item__swiper05 .wrap-swiper .slider-thumbnail03,
.item__swiper05 .wrap-swiper .slider-thumbnail04,
.item__swiper05 .wrap-swiper .slider-thumbnail05,
.item__swiper05 .wrap-swiper .slider-thumbnail06, .item__swiper06 .wrap-swiper .slider-thumbnail01,
.item__swiper06 .wrap-swiper .slider-thumbnail02,
.item__swiper06 .wrap-swiper .slider-thumbnail03,
.item__swiper06 .wrap-swiper .slider-thumbnail04,
.item__swiper06 .wrap-swiper .slider-thumbnail05,
.item__swiper06 .wrap-swiper .slider-thumbnail06 {
  display: none;
  margin-top: 5px;
}
.item__swiper01 .wrap-swiper .slider-thumbnail01 .swiper-slide img,
.item__swiper01 .wrap-swiper .slider-thumbnail02 .swiper-slide img,
.item__swiper01 .wrap-swiper .slider-thumbnail03 .swiper-slide img,
.item__swiper01 .wrap-swiper .slider-thumbnail04 .swiper-slide img,
.item__swiper01 .wrap-swiper .slider-thumbnail05 .swiper-slide img,
.item__swiper01 .wrap-swiper .slider-thumbnail06 .swiper-slide img, .item__swiper02 .wrap-swiper .slider-thumbnail01 .swiper-slide img,
.item__swiper02 .wrap-swiper .slider-thumbnail02 .swiper-slide img,
.item__swiper02 .wrap-swiper .slider-thumbnail03 .swiper-slide img,
.item__swiper02 .wrap-swiper .slider-thumbnail04 .swiper-slide img,
.item__swiper02 .wrap-swiper .slider-thumbnail05 .swiper-slide img,
.item__swiper02 .wrap-swiper .slider-thumbnail06 .swiper-slide img, .item__swiper03 .wrap-swiper .slider-thumbnail01 .swiper-slide img,
.item__swiper03 .wrap-swiper .slider-thumbnail02 .swiper-slide img,
.item__swiper03 .wrap-swiper .slider-thumbnail03 .swiper-slide img,
.item__swiper03 .wrap-swiper .slider-thumbnail04 .swiper-slide img,
.item__swiper03 .wrap-swiper .slider-thumbnail05 .swiper-slide img,
.item__swiper03 .wrap-swiper .slider-thumbnail06 .swiper-slide img, .item__swiper04 .wrap-swiper .slider-thumbnail01 .swiper-slide img,
.item__swiper04 .wrap-swiper .slider-thumbnail02 .swiper-slide img,
.item__swiper04 .wrap-swiper .slider-thumbnail03 .swiper-slide img,
.item__swiper04 .wrap-swiper .slider-thumbnail04 .swiper-slide img,
.item__swiper04 .wrap-swiper .slider-thumbnail05 .swiper-slide img,
.item__swiper04 .wrap-swiper .slider-thumbnail06 .swiper-slide img, .item__swiper05 .wrap-swiper .slider-thumbnail01 .swiper-slide img,
.item__swiper05 .wrap-swiper .slider-thumbnail02 .swiper-slide img,
.item__swiper05 .wrap-swiper .slider-thumbnail03 .swiper-slide img,
.item__swiper05 .wrap-swiper .slider-thumbnail04 .swiper-slide img,
.item__swiper05 .wrap-swiper .slider-thumbnail05 .swiper-slide img,
.item__swiper05 .wrap-swiper .slider-thumbnail06 .swiper-slide img, .item__swiper06 .wrap-swiper .slider-thumbnail01 .swiper-slide img,
.item__swiper06 .wrap-swiper .slider-thumbnail02 .swiper-slide img,
.item__swiper06 .wrap-swiper .slider-thumbnail03 .swiper-slide img,
.item__swiper06 .wrap-swiper .slider-thumbnail04 .swiper-slide img,
.item__swiper06 .wrap-swiper .slider-thumbnail05 .swiper-slide img,
.item__swiper06 .wrap-swiper .slider-thumbnail06 .swiper-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.item__swiper01 .wrap-swiper .slider-thumbnail01 .swiper-wrapper,
.item__swiper01 .wrap-swiper .slider-thumbnail02 .swiper-wrapper,
.item__swiper01 .wrap-swiper .slider-thumbnail03 .swiper-wrapper,
.item__swiper01 .wrap-swiper .slider-thumbnail04 .swiper-wrapper,
.item__swiper01 .wrap-swiper .slider-thumbnail05 .swiper-wrapper,
.item__swiper01 .wrap-swiper .slider-thumbnail06 .swiper-wrapper, .item__swiper02 .wrap-swiper .slider-thumbnail01 .swiper-wrapper,
.item__swiper02 .wrap-swiper .slider-thumbnail02 .swiper-wrapper,
.item__swiper02 .wrap-swiper .slider-thumbnail03 .swiper-wrapper,
.item__swiper02 .wrap-swiper .slider-thumbnail04 .swiper-wrapper,
.item__swiper02 .wrap-swiper .slider-thumbnail05 .swiper-wrapper,
.item__swiper02 .wrap-swiper .slider-thumbnail06 .swiper-wrapper, .item__swiper03 .wrap-swiper .slider-thumbnail01 .swiper-wrapper,
.item__swiper03 .wrap-swiper .slider-thumbnail02 .swiper-wrapper,
.item__swiper03 .wrap-swiper .slider-thumbnail03 .swiper-wrapper,
.item__swiper03 .wrap-swiper .slider-thumbnail04 .swiper-wrapper,
.item__swiper03 .wrap-swiper .slider-thumbnail05 .swiper-wrapper,
.item__swiper03 .wrap-swiper .slider-thumbnail06 .swiper-wrapper, .item__swiper04 .wrap-swiper .slider-thumbnail01 .swiper-wrapper,
.item__swiper04 .wrap-swiper .slider-thumbnail02 .swiper-wrapper,
.item__swiper04 .wrap-swiper .slider-thumbnail03 .swiper-wrapper,
.item__swiper04 .wrap-swiper .slider-thumbnail04 .swiper-wrapper,
.item__swiper04 .wrap-swiper .slider-thumbnail05 .swiper-wrapper,
.item__swiper04 .wrap-swiper .slider-thumbnail06 .swiper-wrapper, .item__swiper05 .wrap-swiper .slider-thumbnail01 .swiper-wrapper,
.item__swiper05 .wrap-swiper .slider-thumbnail02 .swiper-wrapper,
.item__swiper05 .wrap-swiper .slider-thumbnail03 .swiper-wrapper,
.item__swiper05 .wrap-swiper .slider-thumbnail04 .swiper-wrapper,
.item__swiper05 .wrap-swiper .slider-thumbnail05 .swiper-wrapper,
.item__swiper05 .wrap-swiper .slider-thumbnail06 .swiper-wrapper, .item__swiper06 .wrap-swiper .slider-thumbnail01 .swiper-wrapper,
.item__swiper06 .wrap-swiper .slider-thumbnail02 .swiper-wrapper,
.item__swiper06 .wrap-swiper .slider-thumbnail03 .swiper-wrapper,
.item__swiper06 .wrap-swiper .slider-thumbnail04 .swiper-wrapper,
.item__swiper06 .wrap-swiper .slider-thumbnail05 .swiper-wrapper,
.item__swiper06 .wrap-swiper .slider-thumbnail06 .swiper-wrapper {
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.item .swiper-button-next,
.item .swiper-button-prev {
  width: 30px !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  background-color: #33383a !important;
  border-radius: 100%;
}
.item .swiper-button-next:after,
.item .swiper-button-prev:after {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: bold;
}
.item__image {
  width: 100%;
}
.item__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1480px) {
  .order-form .section .products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1280px) {
  .order-form .section .products__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}
@media screen and (max-width: 600px) {
  .order-form .section .products__list .item .wrap-price li {
    flex-flow: column;
    align-items: flex-end;
    row-gap: 0.2rem;
  }
}
@media screen and (max-width: 480px) {
  .order-form .section .products__list {
    gap: 3rem 1rem;
  }
  .order-form .section .products__list .item__image img {
    border-radius: 0.5em;
  }
  .order-form .a_title {
    padding: 1rem;
  }
  .order-form .a_title::before {
    right: 3rem;
    font-size: 0.7em;
  }
  .order-form .a_title::after {
    right: 1.5rem;
    height: 3px;
    width: 20px;
    box-shadow: 0 -9px 0 0 #fff;
  }
  #products {
    padding: 30px 0 90px;
  }
  #products .section .products__list .item__image .luxury {
    width: 65px;
  }
}
.contact__warp--tel {
  width: 80%;
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
  border: 1px solid #e2ecee;
  background-color: #fff;
  padding: 2rem;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .contact__warp--tel {
    width: 86%;
  }
}
@media screen and (max-width: 480px) {
  .contact__warp--tel {
    width: 90%;
  }
}
.contact__warp--tel ul {
  max-width: 1200px;
  margin: 0 auto;
}
.contact__warp--tel ul li {
  display: flex;
}
.contact__warp--tel ul li:before {
  content: "※";
  color: #6ab6a3;
}
.contact__warp--tel .txt_m {
  background-color: #6ab6a3;
  color: #fff;
  padding: 0 1rem;
}
.contact__warp--tel p {
  line-height: 1.5;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.contact__warp--tel p .br {
  display: none;
}
.contact__warp--tel a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  font-family: "Zen_Kaku_Gothic_New", "LINESeedJP", sans-serif;
  color: #6ab6a3;
  margin: 1rem auto 0;
  line-height: 1;
}
.contact__warp--tel a i {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  margin: 0 0.5rem 0 0;
}
.contact__warp--tel--attention {
  margin: 2rem auto 0;
  border-top: none;
  width: -moz-fit-content;
  width: fit-content;
  text-align: justify;
}
.contact__warp--tel--attention p {
  text-align: justify;
  display: flex;
}
.contact__warp--tel--attention p::before {
  content: "※";
  color: #6ab6a3;
}

form {
  width: 80%;
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  form {
    width: 86%;
  }
}
@media screen and (max-width: 480px) {
  form {
    width: 90%;
  }
}
form .notation {
  width: 100%;
  margin: 4rem auto 0;
  color: #33383a;
  border: 1px #e2ecee solid;
  height: 200px;
  overflow-y: scroll;
  padding: 15px;
  background-color: white;
}
form .notation .wrap h3 {
  padding-bottom: 30px;
  scale: 0.8;
}
form .notation .wrap dl dd {
  padding-bottom: 15px;
}
form .simplebar-track .simplebar-scrollbar::before {
  background: #b0e0e6;
  /* ここでバーの色を設定 */
}
form .simplebar-track {
  background: #e5e5e5;
  /* バーの背景色を設定できます*/
  border-radius: 10px;
  /* バーに丸みをもたせる*/
}
form .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
  /* デフォルトだと薄くなっています。*/
}
form .contact__wrap--formbox {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
form .contact__wrap--formbox--list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
}
form .contact__wrap--formbox--list--title {
  width: 300px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}
form .contact__wrap--formbox--list--title span {
  font-size: 0.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #33383a;
  color: #fff;
  font-weight: bold;
  padding: 0 5px;
  white-space: nowrap;
  line-height: 1.65;
}
form .contact__wrap--formbox--list--title span.optional {
  background-color: #6ab6a3;
}
form .contact__wrap--formbox--list--title p {
  text-align: left;
}
form .contact__wrap--formbox--list--title p span {
  display: inline-block;
  font-size: 1em;
  display: inline-block;
  background-color: transparent;
  padding: 0;
  white-space: unset;
  border-radius: unset;
}
form .contact__wrap--formbox--list--title.date {
  font-size: 0.9em;
}
form .contact__wrap--formbox--list--title.mail br {
  display: none;
}
form .contact__wrap--formbox--list--title.contact {
  height: auto;
  align-items: start;
}
form .contact__wrap--formbox--list--title.contact span {
  margin-block-start: 5px;
}
form .contact__wrap--formbox--list--title--auto {
  height: auto;
  align-items: start;
}
form .contact__wrap--formbox--list:last-child .contact__wrap--formbox--list--title {
  align-items: start;
  height: 200px;
  line-height: 1.5;
}
form .contact__wrap--formbox--list .form_contents {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 2.5px;
  align-items: center;
}
form .contact__wrap--formbox--list .attention {
  grid-column: 2/3;
  color: red;
  margin-block-start: -10px;
}
form .contact__wrap--formbox--list--contents {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
form .contact__wrap--formbox--list--contents input[type=text],
form .contact__wrap--formbox--list--contents input[type=email],
form .contact__wrap--formbox--list--contents input[type=tel],
form .contact__wrap--formbox--list--contents select {
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: solid 1px #e2ecee;
  background-color: #ffffff;
}
form .contact__wrap--formbox--list--contents input[type=text]:focus,
form .contact__wrap--formbox--list--contents input[type=email]:focus,
form .contact__wrap--formbox--list--contents input[type=tel]:focus,
form .contact__wrap--formbox--list--contents select:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #b0e0e6;
}
form .contact__wrap--formbox--list--contents--delivery label {
  height: 100%;
  padding: 15px;
  background-color: #b0e0e6;
  margin: 0 15px 0 0;
  transition: 0.5s;
  color: #fff;
}
form .contact__wrap--formbox--list--contents--delivery label:hover {
  background-color: rgba(176, 224, 230, 0.75);
}
form .contact__wrap--formbox--list--contents--delivery input[type=radio]:checked + label {
  background-color: #6ab6a3;
}
form .contact__wrap--formbox--list--contents--post-code {
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
form .contact__wrap--formbox--list--contents--post-code button {
  line-height: 1.5;
  text-align: center;
  font-size: 0.9em;
  width: 100px;
  height: 55px;
  background-color: #6ab6a3;
  color: #fff;
}
form .contact__wrap--formbox--list--contents--post-code button:active {
  scale: 0.98;
}
form .contact__wrap--formbox--list--contents--select {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
form .contact__wrap--formbox--list--contents--select select {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 2em 0.5rem 1rem;
  padding-right: 2rem;
}
form .contact__wrap--formbox--list--contents--select::after {
  content: "\f078";
  /* fontawesomeのアイコン表示 */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  width: 0;
  z-index: 0;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  pointer-events: none;
}
form .contact__wrap--formbox--list--contents--birth {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
form .contact__wrap--formbox--list--contents--birth select {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 1.5rem;
  margin-left: 10px;
  margin-right: 5px;
}
form .contact__wrap--formbox--list--contents--birth select:first-child {
  margin-left: 0;
}
form .contact__wrap--formbox--list--contents textarea {
  width: 100%;
  height: 200px;
  padding: 1rem;
  border: solid 1px #e2ecee;
  background-color: #ffffff;
  text-align: left;
}
form .contact__wrap--formbox--list--contents textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #b0e0e6;
}
form .contact__wrap--formbox--list--contents ::-moz-placeholder {
  color: #e0e0e0;
}
form .contact__wrap--formbox--list--contents ::placeholder {
  color: #e0e0e0;
}
form .contact__wrap--formbox--list--contents.wrap-check {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 15px;
}
form .contact__wrap--formbox--list--contents .checkbox,
form .contact__wrap--formbox--list--contents .radio {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
form .contact__wrap--formbox--list--contents .checkbox label,
form .contact__wrap--formbox--list--contents .radio label {
  white-space: nowrap;
  position: relative;
  line-height: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 7.5px;
       column-gap: 7.5px;
}
form .contact__wrap--formbox--list--contents .checkbox label::before,
form .contact__wrap--formbox--list--contents .radio label::before {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 1/1;
  background-color: #fff;
  box-shadow: #ccc 0 0 0 0.5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  transform: translateY(-50%);
  top: 50%;
}
form .contact__wrap--formbox--list--contents .checkbox label::after,
form .contact__wrap--formbox--list--contents .radio label::after {
  content: "";
  display: none;
  position: absolute;
  transform: translate(-50%, -50%);
  top: calc(50% + 0px);
  left: 7.5px;
  width: 10px;
  aspect-ratio: 1/1;
  background-color: #6ab6a3;
  border-radius: 50%;
  transition: all 0.3s ease;
}
form .contact__wrap--formbox--list--contents .checkbox input,
form .contact__wrap--formbox--list--contents .radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
form .contact__wrap--formbox--list--contents .checkbox input:checked ~ label::after,
form .contact__wrap--formbox--list--contents .radio input:checked ~ label::after {
  display: block;
}
form .contact__wrap--formbox--list--contents#date-time {
  position: relative;
}
form .contact__wrap--formbox--list--contents#date-time::after {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  background-image: url(../../img/common/date.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
form .contact__wrap--privacy {
  margin: 2rem 0 0 0;
}
form .contact__wrap--privacy caption {
  white-space: nowrap;
}
form .contact__wrap--privacy h4 {
  text-align: center;
  border-bottom: solid 1px #e2ecee;
  margin: 0 0 2rem 0;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}
form .contact__wrap--privacy h4::after {
  display: none;
}
form .contact__wrap--privacy h4 > p {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
form .contact__wrap--privacy h4 > p > b {
  display: inline-block;
  font-weight: normal;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
}
form .contact__wrap--privacy--box {
  padding: 2rem 2rem;
  border: solid 1px #e2ecee;
  height: 300px;
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  background-color: #fff;
}
form .contact__wrap--privacy--box > p {
  margin: 0 0 1rem;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
form .contact__wrap--privacy--box--fast {
  line-height: 1.4;
  margin: 0 0 1rem;
}
form .contact__wrap--privacy--box--listbox {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
form .contact__wrap--privacy--box--listbox--list {
  width: 100%;
  margin: 0 0 1rem;
}
form .contact__wrap--privacy--box--listbox--list h3 {
  padding-bottom: 8px;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  position: relative;
  overflow: hidden;
  line-height: 1;
  color: #b0e0e6;
}
form .contact__wrap--privacy--box--listbox--list h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #b0e0e6;
  /*ピンク*/
}
form .contact__wrap--privacy--box--listbox--list h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #e2ecee;
  /*薄ピンク*/
}
form .contact__wrap--privacy--box--listbox--list > p {
  margin: 0.5rem 0;
  line-height: 1.4;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox {
  width: calc(100% - clamp(0.8rem, 0.76rem + 0.2vw, 1rem));
  padding: 1rem 0rem 1rem 1rem;
  margin: 0rem 0 0 clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  counter-reset: cnt;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox > li {
  margin: 0 0 0.5rem;
  line-height: 1.1;
  list-style-type: none;
  counter-increment: cnt;
  text-indent: -1rem;
  padding: 0;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox > li::before {
  display: marker;
  content: "" counter(cnt) ".";
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox > li:first-child::before {
  margin: 0 0.05rem 0 0.1rem;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox > li:last-child {
  margin: 0;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist {
  width: calc(100% - clamp(0.8rem, 0.76rem + 0.2vw, 1rem));
  padding: 1rem 0rem 1rem 1rem;
  margin: 0rem 0 0 clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  text-indent: -1.8rem;
  counter-reset: kana;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist > li {
  counter-increment: kana;
  margin: 0 0 0.5rem;
  line-height: 1.1;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist > li::before {
  display: marker;
  content: "(" counter(kana, katakana) ")";
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist--marusulist {
  width: calc(100% - clamp(0.8rem, 0.76rem + 0.2vw, 1rem));
  padding: 1rem 0rem 1rem 1rem;
  margin: 0rem 0 0 clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  text-indent: -1.8rem;
  counter-reset: marusu;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist--marusulist > li {
  line-height: 1.1;
  padding-left: 30px;
  position: relative;
  counter-increment: marusu;
  margin: 0 0 0.5rem;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist--marusulist > li:first-child::before {
  margin: 0 0 0 0.05rem;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist--marusulist > li:nth-child(5)::before {
  margin: 0.05rem 0 0 0;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist--marusulist > li:last-child {
  margin: 0;
}
form .contact__wrap--privacy--box--listbox--list--sulistbox--kanalist--marusulist > li::before {
  content: counter(marusu, lower-roman);
  /* ローマ数字を小文字で表示 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
form .contact__wrap--privacy--box--listbox--list--table {
  width: 100%;
  height: auto;
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  margin: 1rem 0 0 0;
}
form .contact__wrap--privacy--box--listbox--list--table tbody tr th {
  width: 120px;
  background-color: #b0e0e6;
  padding: 0.25rem 1rem;
  font-weight: normal;
  border-bottom: solid 1px #b0e0e6;
  color: #fff;
}
form .contact__wrap--privacy--box--listbox--list--table tbody tr td {
  width: calc(100% - 120px);
  padding: 0.25rem 1rem;
  border-bottom: solid 1px #b0e0e6;
}
form .contact__wrap--privacy--checks {
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 0;
}
form .contact__wrap--privacy--checks--checkbox {
  color: #6ab6a3;
}
form .contact__wrap--privacy--checks input[type=checkbox] {
  display: none;
}
form .contact__wrap--privacy--checks input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: #33383a;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-weight: bold;
}
form .contact__wrap--privacy--checks input[type=checkbox] + label:last-child {
  margin-bottom: 0;
}
form .contact__wrap--privacy--checks input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #33383a;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  transition: all 0.12s, border-color 0.08s;
}
form .contact__wrap--privacy--checks input[type=checkbox]:checked + label:before {
  width: 10px;
  top: 2px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}
form .contact__wrap--privacy--attention {
  margin: 2rem 0;
}
form .contact__wrap--privacy--attention p {
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  line-height: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  text-indent: -0.9rem;
  padding-left: 0.9rem;
}
form .contact__wrap--submit {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
form .contact__wrap--formbox--list--contents--post-code {
  width: 50% !important;
}

.contact__wrap--formbox--list--image {
  row-gap: 5px;
}
.contact__wrap--formbox--list--image .text {
  grid-column: 2/3;
  text-align: left;
  font-size: 0.85em;
  margin-block-start: -10px;
  line-height: 1;
}
.contact__wrap--formbox--list--image .contact__wrap--formbox--list--title {
  grid-row: 1/3;
}

@media screen and (max-width: 928px) {
  form .contact__wrap--formbox--list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  form .contact__wrap--formbox--list--title {
    width: 100%;
    height: 50px !important;
    align-items: center !important;
  }
  form .contact__wrap--formbox--list--title.mail, form .contact__wrap--formbox--list--title.date {
    font-size: unset;
  }
  form .contact__wrap--formbox--list--title.mail br, form .contact__wrap--formbox--list--title.date br {
    display: none;
  }
  form .contact__wrap--formbox--list--contents.wrap-check {
    margin-block-start: 10px;
  }
  form .contact__wrap--formbox--list .attention {
    grid-column: 1/2;
  }
  form .contact__wrap--formbox--list--contents--delivery {
    row-gap: 0;
  }
  form .contact__wrap--formbox--list--contents--delivery label {
    width: 300px;
    height: 50px;
    padding: 10px 15px;
  }
  form .contact__wrap--formbox--list--contents--delivery label:nth-child(2) {
    margin-block-end: 10px;
  }
  form .contact__wrap--formbox--list--contents--delivery input {
    width: 0;
    height: 0;
  }
}
@media screen and (max-width: 768px) {
  form .contact__wrap--privacy--box {
    padding: 15px;
  }
  form .contact__wrap--privacy--box ul li table {
    display: block;
    width: 100%;
  }
  form .contact__wrap--privacy--box ul li table tbody {
    display: block;
    width: 100%;
  }
  form .contact__wrap--privacy--box ul li table tbody tr {
    display: block;
    width: 100%;
  }
  form .contact__wrap--privacy--box ul li table tbody tr th,
  form .contact__wrap--privacy--box ul li table tbody tr td {
    display: block;
    width: 100%;
    border-left: 1px solid #b0e0e6;
  }
  form .contact__wrap--privacy--box ul li table tbody tr th {
    height: 48px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  form .contact__wrap--privacy--box {
    height: 200px;
  }
  form .contact__wrap--formbox--list--contents--post-code {
    width: 100% !important;
  }
}
@media screen and (max-width: 480px) {
  form {
    margin-top: 2rem;
  }
  .contact__warp--tel {
    padding: 0.5rem;
    padding-top: 0;
  }
  .contact__warp--tel a {
    font-size: 2.25em;
  }
  form .contact__wrap--formbox--list--contents--delivery label {
    width: 100%;
    margin: 0;
    padding: 0.75rem 1rem;
  }
  form .contact__wrap--formbox {
    gap: 15px;
  }
  form .contact__wrap--formbox--list--title {
    height: 40px !important;
  }
}
#thanks .sp_br {
  display: none;
}
#thanks .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #thanks .section {
    width: 86%;
  }
}
@media screen and (max-width: 480px) {
  #thanks .section {
    width: 90%;
  }
}
#thanks .section .thanks__warp--message {
  margin: 2rem 0 0 0;
  border: solid 1px #e2ecee;
  padding: 2rem;
}

@media screen and (max-width: 480px) {
  #thanks .section .thanks__warp--comment {
    margin-top: 2rem;
  }
  #thanks .section .thanks__warp--message {
    padding: 1rem;
  }
}
#err .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #err .section {
    width: 86%;
  }
}
@media screen and (max-width: 480px) {
  #err .section {
    width: 90%;
  }
}
#err .section .err__warp--comment {
  margin: 4rem 0 0 0;
}
#err .section .err__warp--address {
  margin: 2rem 0 0 0;
}
#err .section .err__warp--address table {
  width: 100%;
}
#err .section .err__warp--address table tbody tr th {
  width: 140px;
  background-color: #6ab6a3;
  color: #fafeff;
  font-weight: normal;
  vertical-align: middle;
  padding: 1rem;
}
#err .section .err__warp--address table tbody tr td {
  width: calc(100% - 140px);
  padding: 1rem;
  border-bottom: solid 1px #6ab6a3;
}

@media screen and (max-width: 600px) {
  #err .section .err__warp--address table tbody tr th {
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  #err .section .err__warp--comment {
    margin-top: 2rem;
  }
  #err .section .err__warp--address {
    padding: 0;
  }
  #err .section .err__warp--address table tbody tr th {
    width: 100px;
  }
  #err .section .err__warp--address table tbody tr td {
    width: calc(100% - 100px);
  }
}
#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #6ab6a3;
  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: #6ab6a3;
  border: solid 1px #6ab6a3;
  color: #b0e0e6;
  transition: all ease 0.5s;
}
#carousel .carousel__warp--link a:hover {
  background-color: #b0e0e6;
  color: #6ab6a3;
}

#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 {
  /* モーダルを開くボタン */
  /* モーダル本体 */
  /* モーダルを閉じるボタン */
  /* モーダル内のコンテンツ */
}
#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__trigger {
  cursor: pointer;
}
#modal .modal__warp .modal__trigger:nth-child(n+2) {
  margin-top: 60px;
}
#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__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__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: 2.5em;
  right: 2.5em;
  z-index: 10;
}
.pagetop a {
  width: 52px;
  height: 52px;
  aspect-ratio: 1/1;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 50%;
  transition: all ease 0.5s;
  font-weight: bold;
}
.pagetop a i {
  font-size: 1.5em;
}
.pagetop a:hover {
  color: #6ab6a3;
}
@media screen and (max-width: 1280px) {
  .pagetop {
    bottom: calc(50px + 1rem);
  }
}
@media screen and (max-width: 480px) {
  .pagetop {
    display: none;
    position: fixed;
    bottom: calc(50px + 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;
  border: 1rem solid #b0e0e6;
  border-top: none;
  border-bottom: none;
  background-color: #b0e0e6;
}
.footer__wrap {
  max-width: 80%;
  margin-inline: auto;
  position: relative;
  z-index: 10;
  padding: 120px 0 45px;
  display: flex;
  flex-flow: column;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.footer__logo {
  grid-row: 1/3;
  grid-column: 1/2;
  max-width: 100%;
  text-align: center;
  font-size: 2.5em;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.footer__logo a {
  display: block;
  width: 100%;
}
.footer__logo img {
  width: 100%;
}
.footer__address {
  text-align: center;
}
.footer__tel .btn {
  background-color: #fafeff;
}
.footer__tel .btn:hover {
  background-color: #6ab6a3;
}
.footer__tel i {
  margin-right: 0.5rem;
}
.footer__tel a {
  font-size: 1.1em;
}
.footer__nav {
  grid-column: 1/3;
  margin-block-start: 30px;
  margin-inline: auto;
}
.footer__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 5px;
}
.footer__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__nav ul li a i {
  padding-top: 2px;
}
.footer__nav ul li a span {
  display: none;
}
.footer__nav ul li:hover a {
  opacity: 0.6;
}
.footer__copy {
  position: relative;
  z-index: 7;
  padding: 10px 0;
  text-align: center;
  font-size: 0.9em;
  background-color: #b0e0e6;
}
.footer__copy span {
  display: inline-block;
}
.footer__bg {
  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;
}

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

@media screen and (max-width: 928px) {
  .footer__nav ul {
    flex-wrap: wrap;
  }
  .footer__wrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 50px;
  }
  .footer__wrap {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-bottom: 15px;
    max-width: 90%;
  }
  .footer__logo, .footer__tel {
    margin-inline: auto;
  }
  .footer__address {
    justify-content: center;
    text-align: center;
  }
  .footer__nav {
    margin-block-start: 15px;
  }
  .sp-fixed-link {
    display: flex;
    position: fixed;
    bottom: -70px;
    /* 初期位置は画面外 */
    left: 0;
    z-index: 10;
    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%;
  }
  #sp_btn::before {
    content: "";
    width: calc(100% - 2rem);
    left: 1rem;
    height: 2px;
    position: absolute;
    background-color: #fafeff;
  }
  #sp_btn ul {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  #sp_btn ul li {
    height: 50px;
    width: 100%;
    display: block;
    padding: 10px 0;
    background-color: #b0e0e6;
  }
  #sp_btn ul li a,
  #sp_btn ul li .button {
    display: flex;
    text-align: center;
    color: #33383a;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    line-height: 1.8;
  }
  #sp_btn ul li a:hover,
  #sp_btn ul li .button:hover {
    opacity: 0.5;
  }
  #sp_btn ul li a i,
  #sp_btn ul li .button i {
    margin-right: 0.5rem;
  }
  #sp_btn ul li:nth-child(2) {
    border-left: 2px solid #f4f6f6;
  }
  #sp_btn ul li:nth-child(2) i {
    font-size: 13px;
    padding: 0 0 4px;
  }
  #sp_btn ul li:nth-child(2) span {
    font-size: 12px;
  }
  #sp_btn ul li:nth-child(3) i {
    font-size: 13px;
    padding: 0 0 4px;
  }
  #sp_btn ul li:nth-child(3) span {
    font-size: 11px;
  }
}
@media screen and (max-width: 480px) {
  .footer__wrap {
    max-width: 100%;
  }
  .footer__copy span {
    display: block;
  }
  #sp_btn::before {
    content: "";
    width: calc(100% - 1.5rem);
    left: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */