@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 400;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 500;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 600;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 700;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-weight: 900;
  src: url("../../font/Zen_Old_Mincho/woff2/ZenOldMincho-Black.woff2") format("woff2");
}
@font-face {
  font-family: "LINESeedJP";
  font-style: normal;
  font-weight: 100;
  src: url("../../font/line_seed/woff2/LINESeedJP_OTF_Th.woff2") format("woff2");
}
@font-face {
  font-family: "LINESeedJP";
  font-style: normal;
  font-weight: 400;
  src: url("../../font/line_seed/woff2/LINESeedJP_OTF_Rg.woff2") format("woff2");
}
@font-face {
  font-family: "LINESeedJP";
  font-style: normal;
  font-weight: 700;
  src: url("../../font/line_seed/woff2/LINESeedJP_OTF_Bd.woff2") format("woff2");
}
@font-face {
  font-family: "LINESeedJP";
  font-style: normal;
  font-weight: 800;
  src: url("../../font/line_seed/woff2/LINESeedJP_OTF_Eb.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  /****** アンカーリンク用高さ調整 start  ******/
  scroll-padding-top: 180px;
  /******* アンカーリンク用高さ調整 end  *******/
}
html body {
  width: 100%;
  font-family: "Zen Old Mincho", "LINESeedJP", sans-serif;
  color: #0f1111;
  background: #fffbec;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  line-height: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  letter-spacing: 0.1rem;
  position: relative;
  font-weight: 500;
}
html body img {
  user-drag: none;
  user-select: none;
  -webkit-user-drag: none;
  /* Webkitブラウザ（ChromeやSafari）向け */
  -webkit-user-select: none;
  -moz-user-select: none;
  /* Firefox向け */
  -ms-user-select: none;
  /* IE向け */
  pointer-events: none;
  /* 右クリックや長押し禁止 */
}
html body main {
  overflow: hidden;
}
html body main .space {
  display: block;
  height: 1rem;
}

.curve {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 250px;
  width: 120%;
}

@media screen and (max-width: 480px) {
  html body {
    font-size: 0.75em;
  }
}
/*****************************************/
/*****  inview  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.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;
  visibility: hidden;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader.is-show {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.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: #fffbec;
}

.large_txt {
  font-size: 1.65em;
  font-weight: 500;
  font-family: "Shippori Mincho B1";
  color: #750000;
}

.middle_txt {
  font-size: 1.2em;
}

.ttle_flex {
  display: flex;
  gap: 10%;
}
.ttle_flex h2 {
  align-items: flex-start;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  justify-content: flex-start;
  flex-flow: column-reverse;
  border-top: 2px solid #750000;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 2rem;
  border-left: none;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.vertical-rl {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 3em;
}

@media screen and (max-width: 1024px) {
  section {
    padding: 4rem 0 4rem;
  }
  .ttle_flex {
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 3rem 0 3rem;
  }
}
@media screen and (max-width: 700px) {
  .ttle_flex {
    display: flex;
    flex-flow: column;
    gap: 10%;
  }
  .ttle_flex h2 {
    writing-mode: inherit;
    justify-content: flex-start;
    flex-flow: column-reverse;
    border-left: 2px solid #750000 !important;
    border-top: none;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 0;
    border-left: none;
    line-height: 1.25em;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 2.5rem 0 2.5rem;
  }
  .middle_txt {
    line-height: 2em;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  セクション部分空白設定  end  ******/
/*****************************************/
/*****************************************/
/*******  見出し[h2]部分設定  start  ******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
h2 {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 2rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: start;
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-size: 2.5em;
  line-height: 1.25em;
  color: #750000;
  border-left: 2px solid #750000;
  font-family: "Shippori Mincho B1";
  font-weight: 600;
}
h2 span {
  font-size: 0.4em;
  display: block;
  font-weight: 600;
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 2.15em;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/********  見出し[h2]部分設定  end  *******/
/*****************************************/
.btn {
  background: transparent;
  border: 1px solid #750000;
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px 10px 20px;
  transition: 0.3s ease-in-out;
  height: -moz-fit-content;
  height: fit-content;
  color: #750000;
}
.btn .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #750000;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 1em;
  height: 1px;
  background: currentColor;
}
.btn .arrow::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
.btn:hover {
  background: #750000;
  color: #fffbec;
}
.btn:hover .arrow {
  color: #fffbec;
}

.uver {
  border: 1px solid #06C167;
  color: #06C167;
  font-weight: bold;
}
.uver .arrow {
  color: #06C167;
}
.uver:hover {
  background-color: #06C167;
  color: #fff;
}

.demae {
  border: 1px solid #E83434;
  color: #E83434;
  font-weight: bold;
}
.demae .arrow {
  color: #E83434;
}
.demae:hover {
  background-color: #E83434;
  color: #fff;
}

.wolt {
  border: 1px solid #00C2E8;
  color: #00C2E8;
  font-weight: bold;
}
.wolt .arrow {
  color: #00C2E8;
}
.wolt:hover {
  background-color: #00C2E8;
  color: #fff;
}

/*****************************************/
/**********  マーカー設定  start  *********/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.marker_type1 {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(255, 251, 0, 0.6) 55%);
  padding: 0 0.15rem;
  margin: 0 0.15rem;
  -webkit-text-emphasis: filled #750000;
  text-emphasis: filled #750000;
  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;
  color: #750000;
}
#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%;
  position: fixed;
  z-index: 99999;
  transition: all ease 0.5s;
  overflow: hidden;
  font-family: "Shippori Mincho B1";
}
#header .nav_list {
  width: 90vw;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
#header .header__warp {
  padding: 4rem 2rem 0;
  overflow: hidden;
}
#header .header__warp .logo_header a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#header .header__warp .logo_header a .logo_txt {
  font-weight: bold;
  font-family: "Shippori Mincho B1";
  letter-spacing: -0.05em;
  font-size: 1.25em;
}
#header .header__warp .logo_header img {
  width: 55px;
  transition: all ease 1s;
  overflow: hidden;
}
#header .header__warp .logo_header .logo_txt {
  display: none;
}
#header .header__warp nav {
  color: #fff;
  font-size: 1.5em;
  writing-mode: vertical-lr;
  text-orientation: upright;
  font-weight: 600;
}
#header .header__warp nav li {
  padding: 1rem;
  transition: 0.5s ease;
}
#header .header__warp nav li:hover {
  opacity: 0.5;
}

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

@media screen and (max-width: 1080px) {
  #header {
    top: 0;
  }
  #header .header__warp {
    padding: 1rem 2rem 0;
  }
  #header .header__warp .logo_header img {
    display: block;
  }
  #header .header__warp .right_menu {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #header .header__warp {
    padding: 0.5rem 1rem 0;
  }
}
.fixed {
  visibility: visible !important;
  height: auto !important;
  position: fixed !important;
  opacity: 1 !important;
  top: 0;
  left: 0;
  z-index: 999999999;
  box-shadow: rgba(90, 90, 90, 0.05) 0px 13px 27px -5px, rgba(68, 68, 68, 0.1) 0px 8px 16px -8px;
  background-color: #750000 !important;
  padding: 0.25rem 0rem !important;
  overflow: hidden;
}
.fixed .openbtn span {
  background-color: #750000;
}
.fixed .logo_header {
  display: inline-block !important;
}
.fixed .logo_header img {
  width: 80px;
}
.fixed .logo_header .logo_txt {
  display: block !important;
}
.fixed .nav_list {
  flex-flow: row !important;
  justify-content: start !important;
  align-items: center !important;
}
.fixed .right_menu {
  margin-left: 5rem !important;
}
.fixed .header__warp {
  padding: 0.5rem 2rem !important;
}
.fixed .header__warp .logo_header img {
  width: 50px;
  transition: all ease 1s;
  display: block !important;
  filter: brightness(0) invert(1) !important;
}
.fixed .header__warp nav {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed;
  text-shadow: unset !important;
  display: flex;
  justify-content: space-around;
}
.fixed .header__warp nav li {
  display: inline-block;
  margin: 0 1rem;
  padding: 0 !important;
}
.fixed .header__warp nav li a {
  text-decoration: none;
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.1rem);
  display: block;
}
.fixed .header__warp .header__warp--sp {
  margin: 0rem 0rem 0rem 1rem !important;
}
.fixed .header__warp .header__warp--sp .header__warp--sp--label span {
  background-color: #fffdf7 !important;
}

/*========= ナビゲーションのためのCSS ===============*/
.header__logo {
  display: none;
  transition: opacity 0.5s ease;
}

#g-nav {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  /* 右端に配置 */
  width: 100%;
  height: 100vh;
  background-color: #fcf4da;
  opacity: 0;
  /* 初期状態では非表示 */
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s 0.6s;
  /* フェードイン効果 */
  /* アクティブ状態でフェードイン */
  /* ナビゲーションリスト：上下左右中央に配置 */
  /* メニューアイテム */
}
#g-nav.panelactive {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s;
}
#g-nav .logo_txt {
  font-weight: bold;
  font-size: 1.8em;
  font-family: "Shippori Mincho B1";
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
#g-nav .logo {
  width: 100px;
  padding-bottom: 1rem;
  pointer-events: none;
}
#g-nav ul {
  position: absolute;
  z-index: 99999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #750000;
  font-weight: bold;
  font-size: 1.5em;
  text-decoration: none;
  padding: 20px 0 5px 0;
  display: block;
  letter-spacing: 0.1em;
  width: 250px;
  transition: 0.5s;
}
#g-nav li a:hover {
  opacity: 0.5;
}

/* ハンバーガーメニュー用のボタン */
.openbtn {
  display: none;
  position: absolute;
  z-index: 999999;
  top: 30px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 30px;
}
.openbtn i {
  padding-top: 10px;
  font-size: 20px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #750000;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  z-index: 9999999;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  z-index: 9999999;
}

/*========= ボタンのためのCSS ===============*/
/* Hamburger menu button */
/* ハンバーガーメニュー用のボタン */
.openbtn {
  display: none;
  position: absolute;
  z-index: 999999;
  top: 30px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 30px;
}
.openbtn i {
  padding-top: 10px;
  font-size: 20px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #750000;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  z-index: 9999999;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  z-index: 9999999;
}

/* ナビゲーションの縦スクロール */
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 1080px) {
  .openbtn {
    display: block !important;
    /* 必要なら表示 */
    position: fixed;
    /* 固定表示 */
    top: 10px;
    /* 上端に配置 */
    right: 20px;
    /* 右端からの距離 */
    z-index: 999999;
    /* 最前面に表示 */
    width: 50px;
    /* サイズを指定 */
    height: 50px;
    /* サイズを指定 */
    background-color: transparent;
    /* 背景色を透明に */
    cursor: pointer;
  }
}
@media screen and (max-width: 480px) {
  .openbtn {
    right: 10px;
  }
  #g-nav ul {
    top: 43%;
  }
  #g-nav ul li a {
    width: 270px;
    padding: 20px 0 5px 0;
  }
  #g-nav ul li p {
    font-size: 18px;
    line-height: 20px;
  }
}
#floating {
  position: fixed;
  top: 70%;
  right: 2.5em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 99;
  display: none;
}
#floating li {
  display: block;
  margin: 0.5rem 0;
  transition: all ease 0.5s;
}
#floating li a {
  text-transform: uppercase;
  color: #750000;
  padding: 1rem 0.5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  position: relative;
  transition: all ease 0.5s;
}
#floating li a::before {
  content: "";
  position: absolute;
  top: 5px;
  width: 45px;
  height: 45px;
  border-radius: 40px;
  border: 0.19rem solid #750000;
}
#floating li a i {
  margin-bottom: 0.75rem;
  font-size: 23px;
  position: relative;
}
#floating li:hover {
  opacity: 0.5;
}

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

.start {
  background: #fffbec;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99999;
}
.start .sp_slide {
  display: none;
}
.start img {
  padding-bottom: 1rem;
  width: 100px;
}
.start p {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  display: block;
  opacity: 0;
  z-index: 9999;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  text-align: center;
  font-size: 1.5em;
  letter-spacing: 0.08rem;
  color: rgba(218, 104, 38, 0.7);
  opacity: 0;
  font-family: "RocknRoll One", serif;
  font-weight: 400;
  font-style: normal;
}

#main-visual {
  padding: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
#main-visual .sp_img {
  display: none;
}
#main-visual h1 {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
#main-visual .copy {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 25%;
  line-height: 1.75;
  white-space: nowrap;
  z-index: 2;
  color: #fff;
  font-family: "Shippori Mincho B1";
  font-weight: 600;
  display: flex;
  gap: 5%;
  align-items: center;
}
#main-visual .copy img {
  opacity: 0;
  width: 300px;
  animation: forwards 2s show;
  animation-delay: 1s;
}
#main-visual .copy .main {
  font-size: 2.6em;
  letter-spacing: 0.075em;
}
#main-visual .copy .main .komadori {
  font-size: 1.15em;
  letter-spacing: -0.065em;
}
#main-visual .copy p {
  opacity: 0;
  animation: forwards 2s show;
  animation-delay: 1s;
}
#main-visual .copy p.sub {
  animation-delay: 2s;
}
@keyframes show {
  0% {
    top: 15px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
#main-visual .swiper-top {
  width: 100%;
  height: 100% !important;
  position: relative;
}
#main-visual .swiper-top .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}
#main-visual .swiper-top .swiper-slide__image {
  width: 100%;
  height: 100%;
  will-change: transform;
  overflow: hidden;
}
#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::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 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.08);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@media screen and (max-width: 1500px) {
  #main-visual .copy {
    left: 30%;
  }
}
@media screen and (max-width: 1200px) {
  #main-visual .copy {
    left: 45%;
    top: 80%;
  }
  #main-visual .copy img {
    width: 20vw;
    min-width: 150px;
  }
}
@media screen and (max-width: 480px) {
  #main-visual .sp_img {
    display: block;
  }
  #main-visual .pc_img {
    display: none;
  }
  #main-visual .copy {
    left: 50%;
    top: 70%;
  }
  #main-visual .copy .main {
    font-size: 2.5em;
  }
  #main-visual .copy img {
    display: none;
  }
}
#blog {
  padding-top: 10rem;
}
#blog .blog__warp--box--listbox--list--link--item--time {
  font-size: 0.9em;
  line-height: 0.5em;
  margin-top: 0.5rem;
  color: #750000;
  font-weight: bold;
}
#blog .blog__warp--box--listbox--list--link--item--time i {
  display: none;
}
#blog .blog__warp--box--listbox--list--link--item--cat,
#blog .blog__warp--box--listbox--list--link--item--txt,
#blog .blog__warp--box--listbox--list--link--item--read {
  display: none;
}
#blog .btn {
  margin: 3rem 0 0 auto;
  font-size: 1.1em;
}
#blog .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #blog .section {
    width: 90%;
  }
}
#blog .blog__warp--box--listbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
}
#blog .blog__warp--box--listbox.is-single .blog__warp--box--listbox--list {
  grid-column: 1/2;
  justify-self: center;
}
#blog .blog__warp--box--listbox--list {
  width: 100%;
  transition: 0.3s ease;
}
#blog .blog__warp--box--listbox--list:hover {
  opacity: 0.6;
}
#blog .blog__warp--box--listbox--list--link--images {
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .blog__warp--box--listbox--list--link--images img {
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .blog__warp--box--listbox--list--link--item {
  display: flex;
  gap: 0.5rem;
  flex-flow: column;
  padding-top: 0.5rem;
}
#blog .blog__warp--box--listbox--list--link--item--h3 {
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  order: 2;
}
#blog .blog__warp--box--listbox--list--link--item--time {
  order: 1;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  #blog {
    padding-top: 7.5rem;
  }
  #blog .blog__warp--box--listbox {
    grid-template-columns: 1fr;
  }
  #blog .blog__warp--box--listbox.is-single .blog__warp--box--listbox--list {
    grid-column: 2/2;
    justify-self: center;
  }
  #blog .blog__warp--box--listbox--list:nth-child(2), #blog .blog__warp--box--listbox--list:nth-child(3), #blog .blog__warp--box--listbox--list:nth-child(4), #blog .blog__warp--box--listbox--list:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #blog {
    padding-top: 5rem;
  }
}
#concept .sp_br {
  display: none;
}
#concept .ttle_flex {
  flex-flow: row-reverse;
}
#concept .space {
  width: 1rem;
}
#concept .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #concept .section {
    width: 90%;
  }
}
#concept .section h2 {
  align-items: start;
  margin-left: auto;
}
#concept .section .two_colum {
  display: flex;
  gap: 4rem;
}
#concept .section .two_colum .img img {
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  #concept .section .two_colum {
    flex-flow: column;
  }
  #concept .section .two_colum .img img {
    aspect-ratio: 8/5;
  }
}
@media screen and (max-width: 480px) {
  #concept .section .two_colum {
    gap: 2rem;
  }
}

@media screen and (max-width: 700px) {
  #concept .ttle_flex {
    flex-flow: column;
  }
  #concept .section h2 {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  #concept .sp_br {
    display: block;
  }
  #concept .space {
    width: 0.5rem;
  }
}
#box .wrapper__box {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
}
#box .wrapper__box figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 2/1;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox {
  overflow: hidden;
  margin: 0px 0 0 0;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery {
  width: 100% !important;
  max-width: 100%;
  margin: 0px auto 0px;
  position: relative;
  overflow: hidden;
  display: flex;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-02, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-03, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-04, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-05 {
  width: 100% !important;
  height: auto;
  margin: 0 0 10px 0;
  position: relative;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-02 .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-03 .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-04 .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-05 .swiper-slide {
  width: 100% !important;
  aspect-ratio: 4/3;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-02 .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-03 .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-04 .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-05 .swiper-slide img {
  width: 100% !important;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper {
  width: auto;
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0px 0 0 20px;
  gap: 5px;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper .swiper-slide {
  width: 70px !important;
  height: 70px;
  aspect-ratio: 1/1;
  text-align: center;
  overflow: hidden;
  opacity: 0.4;
  margin: 0 0 10px;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper .swiper-slide:hover, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper .swiper-slide:hover, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper .swiper-slide:hover, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper .swiper-slide:hover, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper .swiper-slide:hover {
  cursor: pointer;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper .swiper-slide img {
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper .swiper-slide-thumb-active, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper .swiper-slide-thumb-active, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper .swiper-slide-thumb-active, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper .swiper-slide-thumb-active, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper .swiper-slide-thumb-active {
  opacity: 1;
}
#box .wrapper__box--text {
  width: 85%;
}
#box .wrapper__box--text h3 {
  margin: 0px 0 20px;
}
#box .wrapper__box--text .btn {
  text-align: left;
  margin: 25px auto 30px;
}
#box .wrapper ul {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 50px auto 0;
}

@media screen and (max-width: 1024px) {
  #box .wrapper__box {
    grid-template-columns: 1fr;
  }
  #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery {
    flex-flow: column;
  }
  #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-02 .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-03 .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-04 .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-05 .swiper-slide {
    aspect-ratio: auto;
  }
  #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-02 .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-03 .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-04 .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-slider-05 .swiper-slide img {
    aspect-ratio: auto;
    height: 300px;
  }
  #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper {
    flex-flow: nowrap;
  }
  #box .wrapper__box--text {
    width: 90%;
    margin: 0 auto;
  }
  #box .wrapper__box--text p {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper {
    padding: 0px 0 0 10px;
    gap: 0px;
  }
  #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper .swiper-slide, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper .swiper-slide {
    width: 50px !important;
    height: 50px;
  }
  #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs .swiper-wrapper .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-02 .swiper-wrapper .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-03 .swiper-wrapper .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-04 .swiper-wrapper .swiper-slide img, #box .wrapper__box figure .menu__warp--contents--left--swiperbox .gallery-thumbs-05 .swiper-wrapper .swiper-slide img {
    width: 50px;
    height: 50px;
  }
  #box .wrapper__box--text {
    width: 90%;
    margin: 0 auto;
  }
  #box .wrapper__box--text h3 {
    font-weight: 600;
    margin: 0 0 15px;
    line-height: 1.5;
  }
  #box .wrapper__box--text h3 .none {
    display: none;
  }
  #box .wrapper__box--text p {
    width: 100%;
  }
  #box .wrapper__box--text .btn {
    text-align: left;
    margin: 25px auto 0px;
  }
  #box .wrapper ul {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 30px auto 0;
  }
}
#gallery01 {
  width: 100%;
}
#gallery01 .section__title {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
#gallery01 .section__list {
  display: flex;
  transition-timing-function: linear !important;
}
#gallery01 .section__list li {
  width: 360px;
  aspect-ratio: 3/2;
  display: block;
}
#gallery01 .section__list li a {
  width: 100% !important;
  height: 100%;
  display: block;
}
#gallery01 .section__list li figure {
  width: 100%;
  height: 100%;
}
#gallery01 .section__list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 928px) {
  #gallery01 .section__list li {
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  #gallery01 .section__list li {
    width: 280px;
  }
}
#gallery02 {
  width: 100%;
  position: relative;
  padding: 150px 0 180px;
}
#gallery02 .section {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
#gallery02 .section__title {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
#gallery02 .footer__gallery {
  display: flex;
  width: 100%;
}
#gallery02 .footer__gallery .swiper-wrapper {
  width: 100%;
  display: flex;
  transition-timing-function: linear !important;
}
#gallery02 .footer__gallery .swiper-wrapper li {
  width: 360px;
  aspect-ratio: 1/1;
  display: block;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
#gallery02 .footer__gallery .swiper-wrapper li a {
  width: 100% !important;
  height: 100%;
  display: block;
}
#gallery02 .footer__gallery .swiper-wrapper li figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#gallery02 .footer__gallery .swiper-wrapper li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s scale, 1s filter;
  filter: grayscale(80%) blur(1px);
}
#gallery02 .footer__gallery .swiper-wrapper .swiper-slide {
  opacity: 0.3;
  transform: scale(0.8);
  transition: 0.7s;
}
#gallery02 .footer__gallery .swiper-wrapper .swiper-slide:hover {
  opacity: 1;
}
#gallery02 .footer__gallery .swiper-wrapper .swiper-slide:hover img {
  scale: 1.05;
  filter: grayscale(30%) blur(0px);
}
#gallery02 .footer__gallery .swiper-wrapper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
#gallery02 .footer__gallery .swiper-wrapper .swiper-slide-active img {
  filter: grayscale(0%) !important;
}
#gallery02 .footer__gallery .swiper-button-prev,
#gallery02 .footer__gallery .swiper-button-next {
  position: absolute;
  transform: translate(-50%, -50%) !important;
  top: 50% !important;
  opacity: 0;
  transition: 1s opacity;
}
#gallery02 .footer__gallery .swiper-button-prev::after,
#gallery02 .footer__gallery .swiper-button-next::after {
  font-size: 32px !important;
  color: #888888 !important;
}
#gallery02 .footer__gallery .swiper-button-prev {
  left: calc(50% - 180px) !important;
}
#gallery02 .footer__gallery .swiper-button-next {
  left: calc(50% + 180px) !important;
}
#gallery02 .footer__gallery.swiper-container:hover .swiper-button-prev,
#gallery02 .footer__gallery.swiper-container:hover .swiper-button-next {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #gallery02 .footer__gallery .swiper-wrapper li {
    width: 50%;
  }
  #gallery02 .section .swiper-button-prev {
    left: 25% !important;
  }
  #gallery02 .section .swiper-button-next {
    left: 75% !important;
  }
}
@media screen and (max-width: 480px) {
  #gallery02 .footer__gallery .swiper-wrapper li {
    width: 70%;
  }
  #gallery02 {
    padding: 120px 0 135px;
  }
  #gallery02 .section .swiper-button-prev {
    left: 15% !important;
  }
  #gallery02 .section .swiper-button-next {
    left: 85% !important;
  }
}
#flow {
  padding: 120px 0 90px;
}
#flow .section {
  z-index: 10;
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #flow .section {
    width: 90%;
  }
}
#flow .section__title {
  margin-block-end: 90px;
}
#flow .section__list {
  display: flex;
}
#flow .section__list .inner {
  width: 720px;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
#flow .section__list .inner__title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  line-height: 1;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
#flow .section__list .inner__title span {
  font-weight: 600;
  padding-top: 3px;
  letter-spacing: 0.1em;
}
#flow .section__list .inner__text {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  line-height: 1.8;
  padding: 0 15px;
}
#flow .section__list .inner__text .copy {
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
}
#flow .section__list .inner__text span {
  display: inline-block;
}
#flow .section__list .inner__image {
  width: 100%;
}
#flow .section__list .inner__image img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
#flow .section__list .swiper-slide {
  opacity: 0.15;
  transform: scale(0.8);
  transition: 0.7s;
  filter: grayscale(80%);
}
#flow .section__list .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  filter: grayscale(0);
}
#flow .section .swiper-button-disabled {
  opacity: 0;
}
#flow .section .swiper-button-prev,
#flow .section .swiper-button-next {
  position: absolute;
  transform: translate(-50%, -50%) !important;
  top: 50% !important;
  transition: 1s opacity;
}
#flow .section .swiper-button-prev::after,
#flow .section .swiper-button-next::after {
  font-size: 32px !important;
  color: red !important;
}
#flow .section .swiper-button-prev {
  left: calc(50% - 360px) !important;
}
#flow .section .swiper-button-next {
  left: calc(50% + 360px) !important;
}

@media screen and (max-width: 928px) {
  #flow .section__list .inner {
    width: 660px;
    padding: 0 30px;
  }
  #flow .section .swiper-button-prev {
    left: calc(50% - 330px) !important;
  }
  #flow .section .swiper-button-next {
    left: calc(50% + 330px) !important;
  }
}
@media screen and (max-width: 768px) {
  #flow .section__list .inner {
    width: 100%;
    padding: 0 30px;
  }
  #flow .section__list .inner__title {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
  #flow .section .swiper-button-prev {
    left: 0% !important;
  }
  #flow .section .swiper-button-next {
    left: 100% !important;
  }
}
@media screen and (max-width: 480px) {
  #flow {
    padding: 90px 0 60px;
  }
  #flow .section__title {
    margin-block-end: 45px;
  }
  #flow .section__list .inner {
    padding: 0 15px;
    row-gap: 15px;
  }
  #flow .section__list .inner__text {
    row-gap: 15px;
  }
}
#contents {
  padding-bottom: 10rem;
}
#contents .contents_wrap {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  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: #750000;
}
#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 1fr;
  gap: 1rem;
}
#contents .contents_wrap ul li {
  width: 100%;
  height: 90%;
  overflow: hidden;
}
#contents .contents_wrap ul li .contents_img {
  width: 100%;
  position: relative;
  transition: 0.5s all;
}
#contents .contents_wrap ul li .contents_img img {
  width: 100%;
  aspect-ratio: 8/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  z-index: 0;
  filter: sepia(0%) brightness(0.5);
  transition: 0.5s all;
}
#contents .contents_wrap ul li .contents_img h5 {
  width: 240px;
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 23px;
  color: #fff;
  font-weight: 400;
  transform: translateY(-50%) translateX(-50%);
  line-height: 30px;
  text-align: center;
  z-index: 20;
}
#contents .contents_wrap ul li .contents_img h5 span {
  font-size: 13px;
}
#contents .contents_wrap ul li .contents_img:hover img {
  filter: sepia(0%);
}
#contents .contents_wrap ul li .contents_img:hover h5 {
  text-shadow: 1px 1px 10px #000;
}

@media screen and (max-width: 1280px) {
  #contents .contents_wrap ul li .contents_img img {
    aspect-ratio: 2/3;
  }
}
@media screen and (max-width: 1024px) {
  #contents .contents_wrap ul li .contents_img h5 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #contents h5 {
    top: 50% !important;
  }
  #contents .contents_wrap ul {
    grid-template-columns: 1fr;
  }
  #contents .contents_wrap ul li {
    height: 200px;
  }
  #contents .contents_wrap ul li .contents_img img {
    height: 200px;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
  #contents .contents_wrap ul li .contents_img h5 {
    width: 220px;
  }
}
@media screen and (max-width: 480px) {
  #contents {
    padding-bottom: 4rem;
  }
  #contents .contents_wrap ul li {
    height: 150px;
  }
  #contents .contents_wrap ul li .contents_img img {
    height: 150px;
  }
}
#link {
  position: relative;
  background-color: #ddbeb4;
}
#link::after {
  content: "";
  display: block;
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  top: -180px;
  left: 30px;
  z-index: -1;
  opacity: 0.8;
}
#link .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #link .section {
    width: 90%;
  }
}
#link .section__title {
  opacity: 0;
  position: absolute;
  z-index: -999;
  pointer-events: none;
}
#link .section__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  row-gap: 90px;
}
#link .section__list .inner {
  width: calc((100% - 120px) / 3);
  position: relative;
  z-index: 2;
}
#link .section__list .inner__image {
  width: 100%;
  aspect-ratio: 6/7;
  overflow: hidden;
}
#link .section__list .inner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s scale;
}
#link .section__list .inner .ja {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  color: #750000;
  padding: 15px 10px;
  writing-mode: vertical-rl;
  font-size: 1.5em;
  font-weight: bold;
  transition: 1s all;
  background-color: #fff;
  border: 1px solid #750000;
}
#link .section__list .inner a:hover img {
  scale: 1.05;
}
#link .section__list .inner a:hover::after {
  opacity: 0.05;
}
#link .section__list .inner a:hover .ja {
  color: #fff;
  background-color: #750000;
}

@media screen and (max-width: 1400px) {
  #link .section__list {
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 45px;
  }
}
@media screen and (max-width: 1280px) {
  #link .section__list {
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 45px;
  }
  #link .section__list .inner__image {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 1024px) {
  #link .section__list .inner .ja {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 928px) {
  #link .section__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 3rem;
  }
  #link .section__list .inner {
    top: 0 !important;
    width: 100%;
  }
  #link .section__list .inner__image {
    aspect-ratio: 1;
  }
  #link .section__list .inner:last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #link .section__list {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
  #link .section__list .inner .ja {
    line-height: 1.2;
    top: 5px;
    left: 5px;
  }
  #link .section__list .inner .ja span {
    display: block;
  }
  #link .section__list .inner__image {
    aspect-ratio: 2/1;
  }
  #link .section__list .inner:last-child:nth-child(odd) {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #link::after {
    width: calc(100% - 2.5vw);
    left: 2.5vw;
    top: -120px;
  }
}
#link2 {
  position: relative;
  overflow: hidden;
}
#link2::after {
  content: "";
  display: block;
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  top: -180px;
  left: 30px;
  z-index: -1;
  opacity: 0.8;
}
#link2 .section {
  width: 100%;
  margin: 0 auto;
}
#link2 .section__title {
  opacity: 0;
  position: absolute;
  z-index: -999;
  pointer-events: none;
}
#link2 .section__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  row-gap: 10px;
  overflow: hidden;
}
#link2 .section__list .inner {
  width: calc((100% - 20px) / 3);
  height: 35vh;
  position: relative;
  overflow: hidden;
}
#link2 .section__list .inner:nth-of-type(4), #link2 .section__list .inner:nth-of-type(5) {
  width: calc((100% - 10px) / 2);
  overflow: hidden;
}
#link2 .section__list .inner_title {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 55%;
  left: 50%;
  z-index: 10;
  color: #fff;
  padding: 15px 10px;
  transition: 1s all;
  text-shadow: rgba(0, 0, 0, 0.8) 0px 2px 5px;
  text-align: center;
  line-height: 1.8em;
}
#link2 .section__list .inner_title .en {
  font-weight: 100;
  font-size: 3em;
  text-transform: uppercase;
}
#link2 .section__list .inner__image {
  width: 100%;
  overflow: hidden;
}
#link2 .section__list .inner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s scale;
  height: 35vh;
}
#link2 .section__list .inner a img {
  filter: blur(3px) sepia(70%);
  transition: 1s all;
}
#link2 .section__list .inner a::after {
  content: "";
  display: block;
  width: 100%;
  height: 35vh;
  background: rgba(74, 78, 39, 0.8);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 0.5;
  transition: 1s all;
}
#link2 .section__list .inner a:hover img {
  scale: 1.05;
  filter: unset;
}
#link2 .section__list .inner a:hover::after {
  opacity: 0;
}
#link2 .section__list .inner a:hover .ja {
  background-color: transparent;
}

@media screen and (max-width: 928px) {
  #link2 .section__list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    row-gap: 15px;
  }
  #link2 .section__list .inner {
    top: 0 !important;
    width: 100%;
    height: 25vh;
  }
  #link2 .section__list .inner:nth-of-type(4), #link2 .section__list .inner:nth-of-type(5) {
    width: 100%;
    overflow: hidden;
  }
  #link2 .section__list .inner__image {
    aspect-ratio: 5/2;
  }
}
@media screen and (max-width: 768px) {
  #link2 {
    padding-top: 30px;
  }
  #link2 .section__list .inner .ja {
    line-height: 1.2;
    top: 5px;
    left: 5px;
  }
  #link2 .section__list .inner .ja span {
    display: block;
  }
  #link2 .section__list .inner__image {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 480px) {
  #link2 {
    padding: 0 0 90px 0;
  }
  #link2::after {
    width: calc(100% - 2.5vw);
    left: 2.5vw;
    top: -120px;
  }
}
.bg_img {
  height: 100vh;
  position: fixed;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  z-index: -1;
}

#bgtransition {
  background-color: transparent;
  position: relative;
}
#bgtransition::before {
  content: "";
  background: linear-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.0001) 30%), linear-gradient(rgba(255, 255, 255, 0.0001) 0%, rgb(255, 255, 255) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}
#bgtransition p {
  line-height: 10em;
}

#sample .img_wrapper {
  position: relative;
  width: 200px;
  aspect-ratio: 1;
}
#sample .img_wrapper::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  background: #000;
  height: 200px;
  aspect-ratio: 1;
  z-index: 1;
  transform: rotate(10deg);
}
#sample .img_wrapper img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #750000;
  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: #750000;
  border: solid 1px #750000;
  color: #888888;
  transition: all ease 0.5s;
}
#carousel .carousel__warp--link a:hover {
  background-color: #fffdf7;
  color: #750000;
}

#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-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;
  font-weight: bold;
}
.pagetop a {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 50%;
  transition: all ease 0.5s;
  white-space: nowrap;
}
.pagetop a img {
  width: 50px;
}
.pagetop a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1280px) {
  .pagetop {
    bottom: calc(50px + 1rem);
  }
}
@media screen and (max-width: 480px) {
  .pagetop {
    display: none;
    position: fixed;
    bottom: calc(75px + 1.5rem);
    right: 1.5em;
  }
  .pagetop a {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
  }
}
.footer {
  position: relative;
  overflow: hidden;
  border-top: 2px solid #750000;
  color: #750000;
}
.footer .sp_br {
  display: none;
}
.footer__wrap {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 120px 0 45px;
  display: grid;
  grid-column: 2;
  grid-template-columns: 200px 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 1rem;
  align-items: center;
}
.footer__logo {
  grid-row: 0/4;
  grid-column: 1/2;
  width: 150px;
}
.footer .btn {
  margin-top: 1rem;
  padding: 10px 20px;
  align-items: center;
}
.footer .btn i {
  margin-right: 0.2rem;
}
.footer .shop_title {
  font-size: 1.2em;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.footer__shop {
  grid-row: 1/3;
  grid-column: 2/3;
  display: flex;
  flex-flow: column;
  gap: 3rem;
}
.footer__shop--inner {
  display: flex;
  gap: 2rem;
  max-width: 1300px;
}
.footer__shop--inner--txt {
  width: 30vw;
}
.footer__shop--inner--btn {
  display: flex;
  gap: 2rem;
}
.footer__date {
  grid-column: 2/2;
  margin: 3rem 0;
}
.footer .nav_list {
  grid-column: 2/2;
}
.footer .nav_list ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 5px;
}
.footer .nav_list ul li a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  transition: 0.3s ease;
}
.footer .nav_list ul li a i {
  padding-top: 2px;
}
.footer .nav_list ul li a span {
  display: none;
}
.footer .nav_list ul li:hover a {
  opacity: 0.6;
}
.footer__copy {
  position: relative;
  z-index: 7;
  padding: 10px 0;
  background-color: #fffdf7;
  text-align: center;
  color: #fff;
  font-size: 0.9em;
}
.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;
}

.footer__copy {
  padding: 10px 0;
  text-align: center;
  background-color: #750000;
  font-size: 0.9em;
}

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

@media screen and (max-width: 1450px) {
  .footer__shop--inner {
    flex-flow: column;
  }
  .footer__shop--inner--txt {
    width: 100%;
  }
}
@media screen and (max-width: 928px) {
  .footer__wrap {
    display: flex;
    flex-flow: column;
  }
  .footer__logo {
    margin-bottom: 4rem;
  }
  .footer__shop--inner {
    gap: 0;
  }
  .footer__date {
    margin: 3rem 10% 3rem 0;
  }
  .footer {
    padding-bottom: 50px;
  }
  .footer__nav ul {
    flex-wrap: wrap;
  }
  .footer__wrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    display: flex;
    flex-flow: column;
  }
  .footer__logo {
    margin-bottom: 4rem;
  }
  .footer__shop--inner {
    flex-flow: column;
  }
  .footer__shop--inner--txt {
    width: 100%;
  }
  .footer .nav_list ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sp-fixed-link {
    display: flex;
    position: fixed;
    bottom: -70px;
    /* 初期位置は画面外 */
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #888888;
    border-top: 2px solid #f4f6f6;
    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%;
    background-color: #750000;
    border-top: 2px solid #fffbec;
  }
  #sp_btn ul {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  #sp_btn ul li {
    width: 100%;
    display: block;
    padding: 10px 0;
  }
  #sp_btn ul li span {
    letter-spacing: 0.1em;
  }
  #sp_btn ul li a,
  #sp_btn ul li .button {
    display: flex;
    flex-flow: column;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
    color: #fff;
  }
  #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 {
    font-size: 13px;
    padding: 0 0 4px;
  }
  #sp_btn ul li:nth-child(2) {
    border-left: 2px solid #fffbec;
  }
  #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: 620px) {
  .footer__wrap {
    max-width: 90%;
  }
  .footer__date {
    width: -moz-fit-content;
    width: fit-content;
    margin: 3rem auto 3rem 0;
  }
  .footer .sp_br {
    display: block;
  }
  .footer__copy span {
    display: block;
  }
  .footer__shop--inner--btn {
    flex-wrap: wrap;
    row-gap: 0;
  }
  .footer__shop--inner--btn .btn:first-child {
    margin-right: 100%;
    white-space: nowrap;
  }
}
#header .header__warp .logo_header img {
  display: none;
}

.sp_bg {
  display: none;
}

.asirai01 {
  position: absolute;
  margin-top: -20%;
  width: 30vw;
  opacity: 0.5;
  transform: scale(-1, 1);
}

.asirai02 {
  position: absolute;
  margin-top: 20%;
  right: 0;
  width: 25vw;
  opacity: 0.5;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.asirai03 {
  position: absolute;
  margin-top: 40%;
  width: 25vw;
  opacity: 0.5;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.asirai04 {
  position: absolute;
  right: 5%;
  margin-top: -20%;
  width: 12vw;
  opacity: 0.75;
  transform: scale(-1, 1);
}

.asirai05 {
  position: absolute;
  right: 5%;
  margin-top: 80%;
  width: 25vw;
  opacity: 0.5;
  z-index: 1;
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 1280px) {
  .asirai04 {
    margin-top: -75%;
    width: 15vw;
  }
}
@media screen and (max-width: 1080px) {
  #header .header__warp .logo_header img {
    display: block;
  }
}
@media screen and (max-width: 928px) {
  .sp_bg {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .asirai02,
  .asirai03,
  .asirai05 {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .asirai04 {
    right: unset;
    left: 0;
    margin-top: -40%;
    width: 30vw;
  }
}
@media screen and (max-width: 480px) {
  .asirai04 {
    left: unset;
    right: 5%;
    margin-top: -40%;
    width: 30vw;
  }
}
/*========= 
↓以下すべてローディングのCSS
mainとheaderのopacity設定に注意
/*========= 

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