@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
@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: "craftmincho";
  font-weight: 400;
  src: url("../../font/craftmincho/woff2/craftmincho.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  /****** アンカーリンク用高さ調整 start  ******/
  scroll-padding-top: 180px;
  /******* アンカーリンク用高さ調整 end  *******/
}
html body {
  width: 100%;
  font-family: "Zen_Kaku_Gothic_Antique", sans-serif;
  color: #574b51;
  background: #fffeff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.1rem);
  line-height: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  letter-spacing: 0.1rem;
  position: relative;
  font-weight: 500;
}
html body main {
  overflow: hidden;
}
html body main .space {
  display: block;
  height: 1rem;
}
html body main .deco_line {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: calc(1024px + 4rem);
}
html body.noscroll {
  overflow: hidden;
  touch-action: none; /* モバイルでも操作を制限 */
}

@media screen and (max-width: 480px) {
  html body {
    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(30px);
  -webkit-transform: translateY(30px);
  transition: 0.7s all;
  -webkit-transition: 0.7s 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 {
  opacity: 0;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transition: 0.7s all;
  -webkit-transition: 0.7s all;
  transition-delay: 0.2s;
}
.js-fader.is-show {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(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: 5rem 0;
  background-color: #fffeff;
}

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

.txt_l {
  font-size: 2.25em;
  line-height: 1.75;
  font-family: "craftmincho";
}

.center {
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hukidasi {
  position: relative;
  gap: 0;
}
.hukidasi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../../img/common/hukidasi.png) no-repeat center/cover;
  width: calc(100% + 6rem);
  height: calc(100% + 4rem);
  z-index: 1;
  top: 50%;
  left: calc(50% + 0.5rem);
  transform: translate(-50%, -50%);
  background-size: contain;
}

h2 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-flow: column-reverse;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
  font-family: "Zen_Kaku_Gothic_Antique", sans-serif;
}
h2 .en {
  text-transform: uppercase;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #ff69b4, #ffc4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 .ja {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  font-family: "craftmincho";
  line-height: 1.25;
}
h2 .ja2 {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-family: "craftmincho";
  line-height: 1.25;
}

@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .txt_m {
    font-size: 1.25em;
  }
  .txt_l {
    font-size: 1.75em;
    line-height: 1.5;
  }
  .hukidasi {
    margin-left: 1.5rem;
  }
  .hukidasi::before {
    width: calc(100% + 4rem);
  }
  .hukidasi .ja {
    line-height: 1;
  }
  h2 {
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
  h2 .ja {
    font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/********  見出し[h2]部分設定  end  *******/
/*****************************************/
.btn {
  background-image: url(../../img/common/btn_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  color: #fff;
  font-weight: bold;
  transition: opacity 0.3s ease-in-out;
}
.btn:hover {
  opacity: 0.6;
}

/*****************************************/
/**********  マーカー設定  start  *********/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.marker_type1 {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(255, 193, 224, 0.6) 55%);
  padding: 0 0.15rem;
  margin: 0 0.15rem;
  -webkit-text-emphasis: filled #ffc1e0;
  text-emphasis: filled #ffc1e0;
  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: 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%;
  }
}
header {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  position: relative;
  left: 0;
  z-index: 20;
  padding: 10px 5% 10px 10%;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: "craftmincho";
}
header .he_logo {
  transition: 0.3s ease;
  font-size: 2em;
  transition: 0.3s ease;
}
header .he_logo img {
  width: 100%;
}
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: 30px;
  align-items: center;
}
header .he-box .he_wrap nav ul .sns {
  display: flex; /* Flexboxを使う */
  align-items: center; /* 縦方向中央寄せ */
  justify-content: center; /* 横方向中央寄せ */
  font-size: 1.6em;
  padding: 0.4em;
  height: 2em;
  width: 2em;
  background: linear-gradient(45deg, #fdf497 0%, #fd5949 30%, #d6249f 60%, #285aeb 100%);
  color: #fff;
  border-radius: 100%;
  transition: 0.3s;
}
header .he-box .he_wrap nav ul .sns:hover {
  opacity: 0.6;
}
header .he-box .he_wrap nav ul li {
  transition: 0.3s;
  position: relative;
}
header .he-box .he_wrap nav ul li::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../../img/common/btn_bg.jpg);
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  border-radius: 0.5rem;
  opacity: 0;
}
header .he-box .he_wrap nav ul li p {
  text-align: center;
}
header .he-box .he_wrap nav ul li span {
  color: #ffc1e0;
  font-size: 11px;
  font-weight: 800;
}
header .he-box .he_wrap nav ul li a {
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
}
header .he-box .he_wrap nav ul li:hover {
  color: #fff;
}
header .he-box .he_wrap nav ul li:hover::before {
  opacity: 1;
}

/* 上部に固定させるスタイルを用意 */
.fixed {
  padding: 10px 5%;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fffeff;
}
@media screen and (max-width: 1280px) {
  header .he-box .he_wrap nav ul {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    align-items: center;
  }
}
@media screen and (max-width: 927px) {
  header {
    top: 0;
    position: absolute;
    background-color: #fffeff;
    transition: background-color 0.3s ease, color 0.3s ease, 0.3s ease all;
  }
  header .he-box .he_wrap nav {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header .he_logo {
    width: 200px;
  }
  header .he-box .he_wrap {
    margin: 0 15px 0 0;
  }
  .fixed .he_logo {
    width: 200px;
  }
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: #fff5fa;
  /*動き*/
  transition: all 0.6s;
}
#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 {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#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 .sns_wrap {
  margin-top: 2rem;
}
#g-nav ul .sns_wrap .sns a {
  display: flex; /* Flexboxを使う */
  align-items: center; /* 縦方向中央寄せ */
  justify-content: center; /* 横方向中央寄せ */
  font-size: 1.6em;
  padding: 0.4em;
  height: 2em;
  width: 2em;
  background: linear-gradient(45deg, #fdf497 0%, #fd5949 30%, #d6249f 60%, #285aeb 100%);
  color: #fff;
  border-radius: 100%;
  transition: 0.3s;
}
#g-nav ul .sns_wrap .sns a:hover {
  opacity: 0.6;
}
#g-nav ul li {
  list-style: none;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.35em;
}
#g-nav ul li .logo_txt {
  display: block;
  font-size: 1.5em;
  padding-bottom: 2rem;
}
#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: 35px 0 5px 0;
  display: block;
  letter-spacing: 0.1em;
  transition: 0.5s;
}
#g-nav ul li a:hover {
  opacity: 0.5;
}
#g-nav ul li p {
  text-align: center;
  line-height: 20px;
}
#g-nav ul li p i {
  font-size: 30px;
}
#g-nav ul li span {
  font-weight: 600;
  color: #574b51;
  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: #ff69b4;
  display: block;
  height: 3px;
  background: #ff859f;
  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%;
  border-radius: 5px;
  width: 100%;
  position: absolute;
  background: #ff69b4;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
  background: #ffb1aa;
}

.navicon:after {
  bottom: 9px;
}

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

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

.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: 927px) {
  .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;
  }
  #g-nav ul li p {
    line-height: 20px;
  }
}
#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;
  font-family: "craftmincho";
  border-right: none;
}
#floating li a {
  border-radius: 0.5rem 0 0 0.5rem;
  background-image: url(../../img/common/btn_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 40px;
  text-transform: uppercase;
  color: #fff;
  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 {
  opacity: 0.6;
}

@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: 82vh;
  z-index: 0;
  margin-bottom: 5vh;
}
#main-visual .asrai01 {
  position: absolute;
  width: 18%;
  min-width: 180px;
  top: 20%;
  animation: slideLoop 15s linear infinite;
}
@keyframes slideLoop {
  0% {
    transform: translateX(-10%);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-10%);
  }
}
#main-visual h1 {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
#main-visual .copy {
  position: absolute;
  top: 30%;
  left: 15%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 2;
  font-family: "craftmincho";
  display: flex;
  flex-flow: column;
  gap: 2rem;
}
#main-visual .copy .main {
  font-size: 2em;
  background-color: #fffeff;
  border-radius: 0.5rem;
  color: #ff69b4;
  padding: 0.75rem 0.25rem 0;
  height: -moz-fit-content;
  height: fit-content;
}
#main-visual .copy .main:nth-of-type(2) {
  margin-top: 4rem;
}
#main-visual .copy .main:nth-of-type(3) {
  margin-top: 2rem;
  padding-top: 0;
}
#main-visual .copy .js-fader-t {
  transition-delay: 0.1s;
}
#main-visual .copy .js-fader-t:nth-of-type(2) {
  transition-delay: 0.6s;
}
#main-visual .copy .js-fader-t:nth-of-type(3) {
  transition-delay: 1.1s;
}
@keyframes show {
  0% {
    top: 15px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
#main-visual .swiper-top {
  width: 90%;
  margin: 0 0 0 auto;
  height: 100% !important;
  position: relative;
}
#main-visual .swiper-top .swiper-slide {
  width: 90%;
  height: 100%;
  position: relative;
  z-index: 99;
  opacity: 0;
}
#main-visual .swiper-top .swiper-slide__image {
  width: 100%;
  height: 100%;
  will-change: transform;
  overflow: hidden;
  border-radius: 0 0 0 1rem;
}
#main-visual .swiper-top .swiper-slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 2s ease-in-out;
}
#main-visual .swiper-top .swiper-slide.swiper-slide-active {
  opacity: 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 img {
  transform: scale(1);
  transition: transform 7s linear !important;
}

#main-visual .swiper-slide-active img {
  transform: scale(1.06);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
@media screen and (max-width: 927px) {
  #main-visual {
    height: 90vh;
  }
}
@media screen and (max-width: 768px) {
  #main-visual .copy {
    gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  #main-visual {
    height: 88vh !important;
  }
  #main-visual .copy {
    left: unset;
    right: 5%;
  }
  #main-visual .copy .main {
    font-size: 6vw;
  }
  @keyframes slideLoop {
    0% {
      transform: translateX(-20%);
    }
    50% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-20%);
    }
  }
}
#blog1 {
  /* ナビゲーションボタン */
}
#blog1 .section__btn {
  margin-top: 4rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
#blog1 .section {
  width: 90%;
  margin: 0 auto;
  margin-right: 0;
  max-width: 1465px;
  position: relative;
}
#blog1 .section_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
#blog1 .section_inner h2 {
  white-space: nowrap;
}
#blog1 .blog__warp--box--listbox--list--link--item--time {
  line-height: 1;
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  padding-top: 0.5rem;
  font-family: "craftmincho";
  /* ▼ ここから追加 ▼ */
}
#blog1 .blog__warp--box--listbox--list--link--item--time i {
  display: none;
}
#blog1 .blog__warp--box--listbox--list--link--item--cat,
#blog1 .blog__warp--box--listbox--list--link--item--txt,
#blog1 .blog__warp--box--listbox--list--link--item--read {
  display: none;
}
#blog1 .blog__warp {
  width: 80%;
}
#blog1 .blog__warp--box--listbox {
  display: flex;
  gap: 3rem;
}
#blog1 .blog__warp--box--listbox--list {
  transition: 0.3s ease;
}
#blog1 .blog__warp--box--listbox--list:hover {
  opacity: 0.6;
}
#blog1 .blog__warp--box--listbox--list--link--images {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog1 .blog__warp--box--listbox--list--link--images img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
#blog1 .blog__warp--box--listbox--list--link--item {
  display: flex;
  gap: 0.5rem;
  flex-flow: column;
  padding-top: 0.5rem;
}
#blog1 .blog__warp--box--listbox--list--link--item--h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  order: 2;
}
#blog1 .blog__warp--box--listbox--list--link--item--h3 b {
  font-weight: 500;
}
#blog1 .blog__warp--box--listbox--list--link--item--time {
  order: 1;
  width: -moz-fit-content;
  width: fit-content;
}
#blog1 .blog__warp--box--listbox {
  display: flex;
  overflow: hidden;
}
#blog1 .swiper-container-blog {
  width: 100%;
  overflow: hidden;
}
#blog1 .swiper-wrapper {
  display: flex;
  transition-timing-function: ease;
}
#blog1 .swiper-button-next,
#blog1 .swiper-button-prev {
  color: #fff !important;
  background-color: #ffc1e0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
}
#blog1 .swiper-button-next::after,
#blog1 .swiper-button-prev::after {
  font-size: 1em;
  font-weight: bold;
}
#blog1 .swiper-button-next {
  left: 6rem;
}
#blog1 .swiper-button-prev {
  left: 0rem;
}
#blog1 .swiper-button-next.swiper-button-disabled,
#blog1 .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}

@media screen and (max-width: 1024px) {
  #blog1 .section_inner {
    flex-flow: column;
    gap: 0;
  }
  #blog1 .blog__warp {
    width: 100%;
  }
  #blog1 .section__btn {
    position: relative;
  }
  #blog1 .section__btn .btn {
    margin: 0 auto;
  }
  #blog1 .swiper-button-next {
    left: 6rem;
    top: unset;
    bottom: 4rem;
  }
  #blog1 .swiper-button-prev {
    left: 0rem;
    top: unset;
    bottom: 4rem;
  }
}
@media screen and (max-width: 480px) {
  #blog1 .section {
    width: 95%;
  }
  #blog1 .swiper-button-next,
  #blog1 .swiper-button-prev {
    height: 2em;
    width: 2em;
    bottom: 3rem;
  }
  #blog1 .swiper-button-next::after,
  #blog1 .swiper-button-prev::after {
    font-size: 1em;
  }
  #blog1 .swiper-button-next {
    right: 5%;
    left: unset;
  }
  #blog1 .swiper-button-prev {
    left: 0;
  }
  #blog1 .blog__warp {
    padding-top: 1rem;
  }
  #blog1 .blog__warp--box--listbox--list--link--item--h3 {
    line-height: 1.5;
  }
}
#concept {
  position: relative;
  margin-top: 5vh;
}
#concept .asrai01 {
  position: absolute;
  width: 20%;
  right: 15%;
  top: 30%;
  min-width: 150px;
}
#concept .asrai02 {
  position: absolute;
  width: 22%;
  left: 40%;
  top: -5%;
  min-width: 150px;
}
#concept .asrai03 {
  position: absolute;
  width: 15%;
  left: 15%;
  bottom: 0;
  min-width: 150px;
}
#concept .illust01 {
  position: absolute;
  left: 10%;
  top: 50%;
  width: 6%;
  min-width: 55px;
}
#concept .illust02 {
  position: absolute;
  right: 5%;
  bottom: 20%;
  width: 8%;
  min-width: 80px;
}
#concept .illust03 {
  position: absolute;
  right: 47%;
  top: 15%;
  width: 7%;
  min-width: 65px;
}
#concept .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1024px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #concept .section {
    width: 90%;
  }
}
#concept .section_inner__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
#concept .section_inner__row figure {
  width: 45%;
  position: relative;
  margin-right: -6rem;
}
#concept .section_inner__row figure img {
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#concept .section_inner__row figure .concept01 {
  aspect-ratio: 4/3;
  min-width: 240px;
}
#concept .section_inner__row figure .concept02 {
  aspect-ratio: 1;
  position: absolute;
  width: 50%;
  left: -60%;
  bottom: 4rem;
  min-width: 140px;
}
#concept .section_inner__row figure .concept03 {
  aspect-ratio: 4/5;
  position: absolute;
  width: 40%;
  left: 40%;
  top: 70%;
  min-width: 100px;
}
#concept .section_inner__row .txt_l {
  writing-mode: vertical-rl;
  text-orientation: upright;
  width: 20%;
  white-space: nowrap;
}
#concept .section_inner p {
  text-align: justify;
}

@media screen and (max-width: 1280px) {
  #concept .illust01 {
    left: 24%;
  }
  #concept .illust03 {
    top: 20%;
  }
  #concept .section_inner__row figure .concept03 {
    top: 65%;
  }
}
@media screen and (max-width: 1024px) {
  #concept .illust02 {
    bottom: 10%;
  }
  #concept .illust03 {
    right: 52%;
  }
  #concept .section_inner__row figure {
    margin-right: 0;
  }
}
@media screen and (max-width: 928px) {
  #concept .section_inner__row figure {
    width: 50%;
  }
  #concept .section_inner__row figure .concept02 {
    left: -35%;
  }
}
@media screen and (max-width: 927px) {
  #concept {
    margin-top: 10vh;
  }
}
@media screen and (max-width: 768px) {
  #concept {
    margin-bottom: 5vh;
  }
  #concept .asrai02 {
    left: 50%;
    top: -5%;
  }
  #concept .illust02 {
    bottom: -1.5rem;
  }
  #concept .section_inner__row .txt_l {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 480px) {
  #concept .illust01 {
    top: 49%;
  }
  #concept .illust03 {
    right: 5%;
    top: 0%;
  }
  #concept .section_inner__row {
    padding-top: 1rem;
  }
  #concept .section_inner__row .txt_l {
    margin-top: 1rem;
  }
}
#info {
  position: relative;
}
#info .section {
  z-index: 0;
  padding: 4rem 2rem;
}
#info .clip {
  position: absolute;
  width: 4rem;
  left: 50%;
  top: -3.5rem;
  transform: translate(-50%, 0%);
}
#info .bg_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffe9a7;
  opacity: 0.4;
  z-index: -1;
  border-radius: 0.5rem;
}
#info .Boxes {
  background-image: linear-gradient(#ffc1e0 1px, transparent 1px), linear-gradient(to right, #ffc1e0 1px, #fff1ea 1px);
  background-size: 20px 20px;
}
@media screen and (max-width: 480px) {
  #info .section {
    z-index: 0;
    padding: 2rem 1rem;
  }
  #info .clip {
    width: 3rem;
    top: -2.5rem;
  }
}
#info .sp_br {
  display: none;
}
#info .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1024px;
  position: relative;
  position: relative;
}
@media screen and (max-width: 480px) {
  #info .section {
    width: 90%;
  }
}
#info .section_inner table {
  width: 100%;
  margin: 0 auto;
  max-width: 768px;
}
#info .section_inner table tr {
  border-bottom: 2px solid #ffc1e0;
}
#info .section_inner table tr th,
#info .section_inner table tr td {
  padding: 15px;
  padding-left: 20px;
}
#info .section_inner table tr th {
  white-space: nowrap;
  font-weight: 500;
  width: 140px;
}
#info .section_inner table tr td {
  overflow: hidden;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #info .section_inner table tr th {
    width: unset;
  }
}
@media screen and (max-width: 480px) {
  #info .section_inner table tr th,
  #info .section_inner table tr td {
    padding: 5px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 928px) {
  #info .sp_br {
    display: block;
  }
}
#tiktok {
  color: #fff !important;
  padding: 0;
}
#tiktok .sp_br {
  display: none;
}
#tiktok .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1024px;
  position: relative;
  background-image: url(../../img/common/btn_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 2rem;
  border-radius: 1rem;
}
@media screen and (max-width: 480px) {
  #tiktok .section {
    width: 90%;
  }
}
#tiktok .section .mokumoku {
  filter: brightness(0) invert(1);
  display: block;
  width: 80%;
  max-width: 380px;
  margin: 0 auto;
}
#tiktok .section_inner {
  text-align: center;
}
#tiktok .section_inner .btn {
  font-size: 1.25em;
  margin: 4rem auto 0;
  background-color: #fff;
  background-image: unset;
  color: #ff69b4;
}

@media screen and (max-width: 768px) {
  #tiktok .sp_br {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #tiktok .section {
    padding: 2rem 0.5rem;
  }
  #tiktok .section_inner .btn {
    margin-top: 2rem;
  }
}
#contents .contents_wrap {
  width: 80%;
  margin: 0 auto;
  max-width: 1024px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #contents .contents_wrap {
    width: 90%;
  }
}
#contents .contents_wrap__heading {
  text-align: center;
}
#contents .contents_wrap__heading h2 {
  font-size: 60px;
  font-weight: 800;
  color: #ffc1e0;
}
#contents .contents_wrap__heading p {
  font-weight: 800;
  margin: 20px 0 0 0;
}
#contents .contents_wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
#contents .contents_wrap ul li {
  width: 100%;
  height: 90%;
  aspect-ratio: 1;
  border-radius: 1rem;
  transition: 0.3s;
  position: relative;
}
#contents .contents_wrap ul li .pin {
  position: absolute;
  width: 1.5rem;
  left: 45%;
  transform: translate(-50%, 0%);
  top: -1rem;
  z-index: 1;
}
#contents .contents_wrap ul li .contents_img {
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease, 0.3s all ease;
}
#contents .contents_wrap ul li .contents_img::before {
  content: "";
  background-image: linear-gradient(#ffc1e0 1px, transparent 1px), linear-gradient(to right, #ffc1e0 1px, #fff1ea 1px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  border-radius: 1rem;
  transition: 0.3s;
}
#contents .contents_wrap ul li .contents_img:hover {
  background-color: #fff5fa;
  transform: rotate(3deg);
}
#contents .contents_wrap ul li .contents_img:hover h5 {
  background-color: #ff69b4;
}
#contents .contents_wrap ul li .contents_img:hover::before {
  opacity: 0.7;
}
#contents .contents_wrap ul li .contents_img {
  width: 100%;
  height: 100%;
  position: relative;
}
#contents .contents_wrap ul li .contents_img img {
  position: absolute;
  width: 40%;
  min-width: 90px;
  top: 55%;
  left: 55%;
  transform: translate(-50%, -50%);
}
#contents .contents_wrap ul li .contents_img .title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.25rem;
}
#contents .contents_wrap ul li .contents_img h5 {
  font-family: "craftmincho";
  background-color: #574b51;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.25;
  padding: 0.25rem 0.1rem;
  border-radius: 0.25rem;
  z-index: 20;
  height: -moz-fit-content;
  height: fit-content;
  transition: 0.3s;
}
#contents .contents_wrap ul li:nth-child(1) .contents_img img {
  width: 60%;
  min-width: 130px;
}

@media screen and (max-width: 1024px) {
  #contents .contents_wrap ul li .contents_img img {
    left: 55%;
  }
}
@media screen and (max-width: 928px) {
  #contents h5 {
    top: 50% !important;
  }
  #contents .contents_wrap ul {
    grid-template-columns: 1fr 1fr;
  }
  #contents .contents_wrap ul li {
    aspect-ratio: unset;
    height: 40vh;
    width: 100%;
  }
  #contents .contents_wrap ul li:nth-child(3) {
    grid-column: 1/-1;
    max-width: calc(50% - 0.75rem);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #contents .contents_wrap ul li {
    height: 17rem;
  }
  #contents .contents_wrap ul li .contents_img .title {
    top: 2rem;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  #contents .contents_wrap ul li .contents_img img {
    top: unset;
    bottom: 1rem;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #ffc1e0;
  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: #ffc1e0;
  border: solid 1px #ffc1e0;
  color: #ff69b4;
  transition: all ease 0.5s;
}
#carousel .carousel__warp--link a:hover {
  background-color: #ff69b4;
  color: #ffc1e0;
}

#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: 99;
}
.pagetop a {
  width: 45px;
  height: 45px;
  aspect-ratio: 1/1;
  display: block;
  background-image: url(../../img/common/btn_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 50%;
  transition: all ease 0.5s;
  color: #fff;
}
.pagetop a:hover {
  opacity: 0.6;
}
@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 {
  margin-top: 5vh;
  position: relative;
  overflow: hidden;
  background-color: #fff5fa;
}
.footer__wrap {
  max-width: 80%;
  margin-inline: auto;
  position: relative;
  z-index: 10;
  padding: 120px 0 45px;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1rem;
  align-items: center;
}
.footer__logo {
  grid-row: 1/3;
  grid-column: 1/2;
  max-width: 100%;
  text-align: center;
  font-family: "craftmincho";
  font-size: 2.5em;
}
.footer__logo a {
  display: block;
  width: 100%;
}
.footer__logo img {
  width: 100%;
}
.footer__address {
  display: flex;
  align-items: center;
}
.footer__address span {
  display: inline-block;
}
.footer__tel .btn {
  display: flex;
  align-items: center;
}
.footer__tel i {
  margin-right: 0.5rem;
}
.footer__tel a {
  font-size: 1.1em;
}
.footer__nav {
  grid-column: 1/3;
  margin-block-start: 30px;
}
.footer__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
}
.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;
  color: #fff;
  font-size: 0.9em;
  background-color: #ff69b4;
}
.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: 45px;
  }
  .footer__wrap {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    padding-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer__logo, .footer__tel {
    margin-inline: auto;
  }
  .footer__address {
    justify-content: center;
    text-align: center;
    line-height: 2;
  }
  .footer__nav {
    margin-block-start: 15px;
  }
  .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%;
  }
  #sp_btn ul {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    background-image: url(../../img/common/btn_bg.jpg);
    background-size: cover;
  }
  #sp_btn ul li {
    height: 45px;
    width: 100%;
    display: block;
    padding: 7.5px 0;
  }
  #sp_btn ul li a,
  #sp_btn ul li .button {
    display: flex;
    gap: 2px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 1.1em;
  }
  #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 #fffeff;
  }
}
@media screen and (max-width: 480px) {
  .footer__wrap {
    max-width: 90%;
  }
  .footer__copy span {
    display: block;
  }
}
main {
  position: relative;
}
main .asrai04 {
  position: absolute;
  width: 15%;
  right: 10%;
  rotate: 15deg;
  padding-top: 25%;
}

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

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