@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
@font-face {
  font-family: "Aboreto";
  font-weight: 400;
  font-style: normal;
  src: url("../../font/Aboreto/woff2/Aboreto-Regular.woff2") format("woff2");
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 1; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 1;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 1;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
html {
  scroll-behavior: smooth;
  /****** アンカーリンク用高さ調整 start  ******/
  scroll-padding-top: 180px;
  /******* アンカーリンク用高さ調整 end  *******/
}
html body {
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  line-height: clamp(1.1rem, 1.06rem + 0.2vw, 1.3rem);
  letter-spacing: 0.1rem;
  position: relative;
}
html body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/common/base.jpg);
  background-size: contain;
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.1;
}
html body p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}
html body h3 {
  font-size: 20px;
  line-height: 1.6;
}

/*****************************************/
/*****  ヘッダー部分基本幅設定  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.header_layout_width {
  width: 98%;
  margin: 0 auto;
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  ヘッダー部分基本幅設定  end  ******/
/*****************************************/
img {
  max-width: 100%;
}

/*****************************************/
/****  コンテンツ部分基本幅設定  start  ****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.layout_width_full {
  width: 90%;
  padding: 0 2rem;
  margin: 0 auto;
}

.layout_width {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.layout_width_1024 {
  width: 100%;
  max-width: 1024px;
  padding: 0 2rem;
  margin: 0 auto;
}

.layout_width_830 {
  width: 100%;
  max-width: 830px;
  padding: 0 2rem;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  html body p {
    font-size: 14px;
    letter-spacing: 0;
  }
  html body h3 {
    font-size: 17px;
  }
  .layout_width {
    padding: 0 1rem;
  }
  .layout_width_1024 {
    padding: 0 1rem;
  }
  .layout_width_830 {
    padding: 0 1rem;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/*****  コンテンツ部分基本幅設定  end  *****/
/*****************************************/
/*****************************************/
/*****  セクション部分空白設定  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
section {
  padding: 9rem 0 9rem;
}

@media screen and (max-width: 768px) {
  section {
    padding: 5rem 0 5rem;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 5rem 0 5rem;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  セクション部分空白設定  end  ******/
/*****************************************/
.bgcolor {
  background-color: #474747;
}
.bgcolor div h2 {
  color: #ffffff;
}
.bgcolor div h2 b {
  color: #ffffff;
}

/*****************************************/
/*******  見出し[h2]部分設定  start  ******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/********  見出し[h2]部分設定  end  *******/
/*****************************************/
/*****************************************/
/**********  マーカー設定  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 #e8e7e5;
  text-emphasis: filled #e8e7e5;
  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,
.parallax_imagebox-topclass {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 400px;
}
.parallax_imagebox .background,
.parallax_imagebox-topclass .background {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax_imagebox .bg_image_one,
.parallax_imagebox-topclass .bg_image_one {
  background-image: url("../../img/home/mainvisual/mainvisual__3.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;
  width: 100%;
}
#breadcrumb .breadcrumb__warp {
  width: 100%;
  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: 400;
}
#breadcrumb .breadcrumb__warp ol li:first-child {
  padding: 0 1rem 0 0;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
main {
  overflow: hidden;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 1; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 1;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 1;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
#header {
  visibility: hidden;
  height: 0;
  opacity: 0;
  width: 100%;
  position: fixed;
  z-index: 99999;
  transition: all ease 0.5s;
}
#header .header__warp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
#header .header__warp--logo {
  width: auto;
  max-width: 60px;
  min-width: 60px;
  display: block;
  transition: all ease 1s;
  display: flex;
  align-items: center;
}
#header .header__warp--logo figure {
  width: 100px;
  display: flex;
  align-items: center;
}
#header .header__warp--logo figure img {
  width: 100%;
  transition: all ease 1s;
}
#header .header__warp--menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header__warp--menu--nav {
  margin: 0 1rem 0 0;
}
#header .header__warp--menu--nav h2 {
  display: none;
}
#header .header__warp--menu--nav nav ul {
  display: flex;
  align-items: center;
  padding: 0rem 0.5rem 0rem 2rem;
  transition: all ease 1s;
}
#header .header__warp--menu--nav nav ul li {
  position: relative;
}
#header .header__warp--menu--nav nav ul li a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: center;
  height: 100%;
  padding: 0.5rem 0;
  margin: 0 1.5rem;
  display: flex;
  flex-flow: column;
  font-family: "Aboreto", sans-serif;
}
#header .header__warp--menu--nav nav ul li a p {
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  font-weight: 600;
}
#header .header__warp--menu--nav nav ul li a span {
  font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
  line-height: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
}
#header .header__warp--menu--nav nav ul li a i {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
#header .header__warp--menu--nav nav ul li .instagram {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff !important;
  position: relative;
  z-index: 999;
}
#header .header__warp--menu--nav nav ul li .instagram figure {
  width: 12px;
  height: 12px;
}
#header .header__warp--menu--nav nav ul li .instagram figure img {
  width: 12px;
  height: 12px;
  display: block;
  margin: 0 0 0 0.25rem;
  fill: #ffffff !important;
}
#header .header__warp--menu--nav nav ul li div {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: center;
  height: 100%;
  padding: 0.25rem 1rem;
  margin: 0 0.25rem 0 1rem;
  display: flex;
  flex-flow: column;
  font-weight: bold;
  background-color: #f4f6f6;
  border-radius: 50px;
  color: #ffffff;
  border: solid 2px #f4f6f6;
  transition: all ease 0.5s;
}
#header .header__warp--menu--nav nav ul li div p {
  font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
}
#header .header__warp--menu--nav nav ul li div span {
  font-size: clamp(0.4rem, 0.36rem + 0.2vw, 0.6rem);
  line-height: clamp(0.4rem, 0.36rem + 0.2vw, 0.6rem);
}
#header .header__warp--menu--nav nav ul li div:hover {
  background-color: #ffffff;
  color: #ed6d01;
  cursor: pointer;
}
#header .header__warp--menu--nav nav ul li:last-child b {
  display: none;
}
#header .header__warp--menu--nav nav ul li:nth-child(7) {
  margin-left: -35px;
}
#header .header__warp--sp {
  width: 55px;
  height: 48px;
  display: none;
  justify-content: center;
  align-items: center;
  margin: 2rem 1rem 2rem 1rem;
  transition: all ease 1s;
  padding: 1rem;
  border-radius: 50px;
  position: relative;
  z-index: 9999999;
}
#header .header__warp--sp #menu-btn {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  display: none;
}
#header .header__warp--sp--label {
  width: 100%;
  height: 18px;
  position: relative;
  z-index: 9999999;
}
#header .header__warp--sp--label span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  transition: all ease 0.25s;
}
#header .header__warp--sp--label span:nth-child(1) {
  top: 0;
  left: 0;
}
#header .header__warp--sp--label span:nth-child(2) {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#header .header__warp--sp--label span:nth-child(3) {
  bottom: 0;
  left: 0;
}
#header .header__warp--sp #menu-btn:checked ~ .header__warp--sp--label span:nth-child(1) {
  width: 100%;
  left: 17%;
  transform: rotate(45deg);
  transform-origin: 0 0;
}
#header .header__warp--sp #menu-btn:checked ~ .header__warp--sp--label span:nth-child(2) {
  opacity: 0;
}
#header .header__warp--sp #menu-btn:checked ~ .header__warp--sp--label span:nth-child(3) {
  width: 100%;
  left: 17%;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

@media screen and (max-width: 768px) {
  #header {
    top: 0;
    height: 60px;
  }
  #header .header__warp--menu {
    position: absolute;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    background-color: #aaa;
    transition: all ease 1s;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  #header .header__warp--menu--nav {
    margin: 0 1rem 0 0;
    width: calc(100% - 4rem);
    max-width: 350px;
    margin: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  #header .header__warp--menu--nav h2 {
    display: block;
    width: 100%;
    font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Aboreto", sans-serif;
    border-bottom: 1px solid #fff;
    padding: 0 0 10px;
  }
  #header .header__warp--menu--nav nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header .header__warp--menu--nav nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin: 0rem 0 0 0;
    padding: 2rem;
  }
  #header .header__warp--menu--nav nav ul li a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    text-align: center;
    height: 100%;
    padding: 0rem 0;
    margin: 1rem 1rem;
    display: flex;
    font-family: "Aboreto", sans-serif;
    font-weight: normal;
  }
  #header .header__warp--menu--nav nav ul li a p {
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
    font-family: "Aboreto", sans-serif;
  }
  #header .header__warp--menu--nav nav ul li a span {
    font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
    text-transform: uppercase;
    font-family: "Aboreto", sans-serif;
  }
  #header .header__warp--menu--nav nav ul li .instagram {
    padding: 0.5rem 2rem;
    margin: 2rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
  }
  #header .header__warp--menu--nav nav ul li .instagram figure {
    width: 24px;
    height: 24px;
  }
  #header .header__warp--menu--nav nav ul li .instagram figure img {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 0 0 0.25rem;
    fill: #ffffff !important;
  }
  #header .header__warp--menu--nav nav ul li:nth-child(6), #header .header__warp--menu--nav nav ul li:nth-child(7) {
    display: none;
  }
  #header .header__warp--menu--nav nav ul .active::before {
    display: none;
  }
  #header .header__warp--sp {
    display: flex;
    margin: 1rem 1rem 1rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    height: 62px !important;
  }
  #header .header__warp {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
    position: relative;
  }
  #header .header__warp--logo {
    position: absolute;
    top: -2px;
    left: 47%;
    transform: translateX(-50%);
    width: 100px;
    display: block;
    transition: all ease 1s;
  }
  #header .header__warp--menu--contactbox--telbox--tel a figure svg {
    fill: #e8e7e5;
  }
  #header .header__warp--sp {
    margin: 0.2rem 0 1rem auto !important;
    transition: all ease 1s;
    width: 55px;
  }
  #header .header__warp--sp .icon {
    display: flex;
    margin-right: 15px;
    gap: 5px;
  }
  #header .header__warp--sp .icon i {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    color: #fff;
  }
}
@media screen and (max-width: 480px) {
  #header .header__warp--logo {
    left: 40%;
  }
}
.fixed {
  visibility: visible !important;
  height: auto !important;
  position: fixed !important;
  opacity: 1 !important;
  top: 0;
  left: 0;
  z-index: 999999999;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0rem !important;
}
.fixed .header__warp .header__warp--logo {
  max-width: 40px !important;
  min-width: 40px !important;
}
.fixed .header__warp .header__warp--logo figure img {
  filter: unset !important;
}
.fixed .header__warp .header__warp--menu .header__warp--menu--nav nav ul {
  background-color: unset !important;
}
.fixed .header__warp .header__warp--menu .header__warp--menu--nav nav ul li a {
  color: #ffffff !important;
}
.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: #000 !important;
}

#submain {
  margin: 0px auto 0;
  position: relative;
  padding: 0;
}
#submain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: contain;
  background-repeat: no-repeat;
}
#submain .submain_img {
  width: 100%;
  height: 400px;
  opacity: 0.7;
}
#submain .submain_img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
#submain .submain_img02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  opacity: 1;
  z-index: -1;
}
#submain .submain_img02 video {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
#submain .submain_text {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  width: 80%;
}
#submain .submain_text h3 {
  font-size: 35px;
  margin-bottom: 5px;
  text-shadow: #000 1px 0 10px;
  line-height: 1.2;
}
#submain .submain_text p {
  text-shadow: #000 1px 0 10px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #submain .submain_img {
    height: 300px;
  }
  #submain .submain_img img {
    height: 300px;
  }
  #submain .submain_img02 {
    height: 300px;
  }
  #submain .submain_img02 video {
    height: 300px;
  }
  #submain .submain_text h3 {
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 0px;
  }
}
#floating {
  position: fixed;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 99999;
}
#floating li {
  display: block;
  margin: 0.25rem 0;
  border: solid 4px #ffffff;
  border-right: none;
}
#floating li a {
  text-transform: uppercase;
  background-color: #474747;
  color: #ffffff;
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  padding: 2rem 0.5rem 1rem 0.5rem;
  writing-mode: vertical-rl;
  font-weight: 800;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  position: relative;
}
#floating li a::before {
  position: absolute;
  top: 0.75rem;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#floating li:nth-child(1) a::before {
  background-image: url("../../img/common/floating/tel.svg");
}
#floating li:nth-child(2) a::before {
  background-image: url("../../img/common/floating/plain.svg");
}
#floating li:nth-child(3) a::before {
  left: 0.75rem;
  background-image: url("../../img/common/floating/man.svg");
}

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

#business .business_wrap {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 80px;
  position: relative;
}
#business .business_wrap__heading {
  text-align: center;
  margin: 0 auto 100px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
}
#business .business_wrap__heading h2 {
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 5px;
  font-family: "Aboreto", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#business .business_wrap__heading h2::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  width: 70px;
  height: 1px;
  z-index: 1;
  background-color: #000;
  background-size: 10px 4px;
  background-repeat: repeat-x;
}
#business .business_wrap__heading h2 .none {
  display: none;
}
#business .business_wrap__heading p {
  margin: 5px 0 0 0;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  #business .business_wrap__heading h2 {
    font-size: 20px;
  }
  #business .business_wrap__heading h2::before {
    bottom: -40px;
  }
  #business .business_wrap__heading p {
    font-size: 13px;
  }
}
#business .business_wrap__heading h2 {
  color: #000;
}
#business .business_wrap__heading p {
  color: #000;
}
#business .business_wrap iframe {
  width: 100%;
  height: 500px;
  margin: 30px auto 0;
  text-align: center;
}
#business .business_wrap .access-p {
  margin-top: 20px;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
}
#business .business_wrap .access-p .none {
  display: none;
}

@media screen and (max-width: 768px) {
  #business {
    padding-top: 2.5rem;
  }
  #business .business_wrap {
    padding: 100px 30px;
  }
  #business .business_wrap__heading {
    text-align: center;
    margin: 0 auto 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
  }
  #business .business_wrap__heading h2 {
    font-weight: 600;
    text-align: center;
    position: relative;
    display: inline;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 5px;
    font-family: "Aboreto", sans-serif;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  #business .business_wrap__heading h2::before {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    width: 70px;
    height: 1px;
    z-index: 1;
    background-color: #000;
    background-size: 10px 4px;
    background-repeat: repeat-x;
  }
  #business .business_wrap__heading h2 .none {
    display: none;
  }
  #business .business_wrap__heading p {
    margin: 5px 0 0 0;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  #business .business_wrap__heading h2 {
    font-size: 20px;
  }
  #business .business_wrap__heading h2::before {
    bottom: -40px;
  }
  #business .business_wrap__heading p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  #business .business_wrap iframe {
    height: 300px;
  }
  #business .business_wrap .access-p {
    margin-top: 20px;
    font-size: 13px;
    color: #000;
  }
  #business .business_wrap .access-p .none {
    display: block;
  }
}
#route {
  padding-top: 0;
}
#route .route_wrap__heading {
  text-align: center;
  margin: 0 auto 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
}
#route .route_wrap__heading h2 {
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 5px;
  font-family: "Aboreto", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#route .route_wrap__heading h2::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  width: 70px;
  height: 1px;
  z-index: 1;
  background-color: #000;
  background-size: 10px 4px;
  background-repeat: repeat-x;
}
#route .route_wrap__heading h2 .none {
  display: none;
}
#route .route_wrap__heading p {
  margin: 5px 0 0 0;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  #route .route_wrap__heading h2 {
    font-size: 20px;
  }
  #route .route_wrap__heading h2::before {
    bottom: -40px;
  }
  #route .route_wrap__heading p {
    font-size: 13px;
  }
}
#route .route_wrap .box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#route .route_wrap .box h3 {
  font-size: 16px;
  margin-bottom: 20px;
}
#route .route_wrap .box__block {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid #aaa;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  #route {
    padding-top: 5rem;
  }
  #route .route_wrap .box h3 {
    font-size: 15px;
  }
}
#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #474747;
  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: #474747;
  border: solid 1px #474747;
  color: #ffffff;
  transition: all ease 0.5s;
}
#carousel .carousel__warp--link a:hover {
  background-color: #ffffff;
  color: #e8e7e5;
}

#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-item {
  display: none;
  flex-flow: column;
  gap: 5px;
  position: fixed;
  bottom: 6.5em;
  right: 1.7em;
  z-index: 99999;
}
.pagetop-item li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin: 0 0 5px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: #000;
}
.pagetop-item li:nth-child(2) {
  background: linear-gradient(to right, rgb(247, 207, 0), rgb(246, 37, 2) 45%, rgb(182, 47, 82) 75%, rgb(113, 58, 166));
}
.pagetop-item li a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 7px 10px;
  font-size: 17px;
  transition: 0.5s;
}
.pagetop-item li a:hover {
  opacity: 0.5;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 2.5em;
  right: 2.5em;
  z-index: 999999;
}
.pagetop a {
  width: 52px;
  height: 52px;
  aspect-ratio: 1/1;
  display: block;
  background-color: #000;
  border: solid 1px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 50%;
  transition: all ease 0.5s;
}
.pagetop a i {
  color: #ffffff;
}
.pagetop a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1280px) {
  .pagetop a {
    width: 45px;
    height: 45px;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .pagetop-item {
    bottom: 11em;
  }
  .pagetop {
    bottom: 5.5em;
  }
}
@media screen and (max-width: 480px) {
  .pagetop-item {
    bottom: 13.5em;
  }
  .pagetop {
    bottom: 7.5em;
  }
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 1; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 1;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 1;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
#footer {
  position: relative;
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  overflow: hidden;
}
#footer .footer__warp--upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #dedede;
}
#footer .footer__warp--upper--left {
  width: 45%;
  border-right: solid 1px #dedede;
  display: flex;
  flex-flow: column;
  padding: 0 6.25rem 0 0;
}
#footer .footer__warp--upper--left iframe {
  width: 100%;
  height: 600px;
}
#footer .footer__warp--upper--left--heading {
  text-align: center;
  margin: 0 auto 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
}
#footer .footer__warp--upper--left--heading h2 {
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 5px;
  font-family: "Aboreto", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#footer .footer__warp--upper--left--heading h2::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 70px;
  height: 1px;
  z-index: 1;
  background-color: #000;
  background-size: 10px 4px;
  background-repeat: repeat-x;
}
#footer .footer__warp--upper--left--heading h2 .none {
  display: none;
}
#footer .footer__warp--upper--left--heading p {
  margin: 5px 0 0 0;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  #footer .footer__warp--upper--left--heading h2 {
    font-size: 20px;
  }
  #footer .footer__warp--upper--left--heading p {
    font-size: 13px;
  }
}
#footer .footer__warp--upper--left--heading h2 {
  color: #fff;
}
#footer .footer__warp--upper--left--box p {
  text-align: center;
}
#footer .footer__warp--upper--left--box .p-fast {
  margin: 0 0 10px;
}
#footer .footer__warp--upper--right {
  width: 45%;
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  position: relative;
}
#footer .footer__warp--upper--right__heading {
  text-align: center;
  margin: 0 auto 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto 10px;
}
#footer .footer__warp--upper--right__heading h2 {
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 5px;
  font-family: "Aboreto", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#footer .footer__warp--upper--right__heading h2::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 70px;
  height: 1px;
  z-index: 1;
  background-color: #000;
  background-size: 10px 4px;
  background-repeat: repeat-x;
}
#footer .footer__warp--upper--right__heading h2 .none {
  display: none;
}
#footer .footer__warp--upper--right__heading p {
  margin: 5px 0 0 0;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  #footer .footer__warp--upper--right__heading h2 {
    font-size: 20px;
  }
  #footer .footer__warp--upper--right__heading p {
    font-size: 13px;
  }
}
#footer .footer__warp--upper--right .animate:before {
  animation: animation-bar 1s ease 0s 1 normal forwards;
}
@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}
#footer .footer__warp--upper--right--info {
  width: 100%;
  margin: 2.5rem 0;
}
#footer .footer__warp--upper--right--info table tr th,
#footer .footer__warp--upper--right--info table tr td {
  padding: 20px 10px 20px;
}
#footer .footer__warp--upper--right--info table tr th {
  white-space: nowrap;
}
#footer .footer__warp--upper--right--info table tr td {
  border-bottom: 1px solid #000;
  white-space: nowrap;
  vertical-align: middle;
}
#footer .footer__warp--upper--right--info table tr td .none {
  display: none;
}
#footer .footer__warp--upper--right--info address {
  width: 100%;
}
#footer .footer__warp--upper--right--info address p {
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  text-align: center;
}
#footer .footer__warp--upper--right--info address p span {
  background-color: #000;
  color: #fff;
  padding: 2px 30px;
}
#footer .footer__warp--upper--right--info address .en {
  font-size: clamp(0.4rem, 0.36rem + 0.2vw, 0.6rem);
  font-family: "Aboreto", sans-serif;
}
#footer .footer__warp--upper--right--info--contact {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1rem;
}
#footer .footer__warp--upper--right--info--contact p span {
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  font-family: "Aboreto", sans-serif;
}
#footer .footer__warp--upper--right--info--contact p > a {
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
}
#footer .footer__warp--upper--right--info--contact p:nth-child(2) {
  margin: 0 0 0 2rem;
}
#footer .footer__warp--upper--right--info--contact p > b {
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  font-weight: normal;
}
#footer .footer__warp--upper--right--info--contact > a {
  font-size: clamp(0.4rem, 0.36rem + 0.2vw, 0.6rem);
  border: solid 1px #dedede;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: "Aboreto", sans-serif;
}
#footer .footer__warp--upper--right--info--others p {
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
  text-align: center;
}
#footer .footer__warp--upper--right--info--others p span {
  background-color: #000;
  color: #fff;
  padding: 2px 30px;
}
#footer .footer__warp--buttom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Aboreto", sans-serif;
}
#footer .footer__warp--buttom nav {
  width: -moz-fit-content;
  width: fit-content;
}
#footer .footer__warp--buttom nav ul {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
}
#footer .footer__warp--buttom nav ul li {
  font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
  margin: 0 2.5rem 0 0;
}
#footer .footer__warp--buttom nav ul li:last-child {
  margin: 0 0 0 0;
}
#footer .footer__warp--buttom--copy {
  padding: 1rem 0;
  text-align: center;
  font-size: clamp(0.5rem, 0.46rem + 0.2vw, 0.7rem);
}

#sp_btn {
  display: none;
}

@media screen and (max-width: 1410px) {
  #footer .footer__warp--upper--left {
    width: 45%;
  }
  #footer .footer__warp--upper--right {
    width: 50%;
  }
  #footer .footer__warp--upper--right--info table {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1100px) {
  #footer .footer__warp {
    padding: 3rem 3rem 0;
  }
  #footer .footer__warp--upper {
    flex-flow: column;
  }
  #footer .footer__warp--upper--left {
    order: 2;
    width: 100%;
    border-right: solid 0px #dedede;
    border-top: solid 1px #dedede;
    border-bottom: solid 1px #dedede;
    padding: 5rem 0rem 5rem 0;
  }
  #footer .footer__warp--upper--right {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0rem 0 0rem;
  }
  #footer .footer__warp--buttom {
    flex-flow: column;
  }
  #footer .footer__warp--buttom nav ul {
    flex-wrap: wrap;
    margin: 1rem 0 0 0;
  }
  #footer .footer__warp--buttom nav ul li {
    width: 100%;
    font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
    margin: 0 2.5rem 1rem 0;
  }
  #footer .footer__warp--buttom nav ul li:last-child {
    margin: 0 2.5rem 0 0;
  }
  #footer .footer__warp--buttom--copy {
    font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
  }
}
@media screen and (max-width: 660px) {
  #sp_btn {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    width: 95%;
  }
  #sp_btn ul {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 5px;
  }
  #sp_btn ul li {
    width: 100%;
    display: block;
    padding: 10px 0;
    background-color: #000;
  }
  #sp_btn ul li a,
  #sp_btn ul li .button {
    display: flex;
    flex-flow: column;
    text-align: center;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
  }
  #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: 20px;
  }
  #sp_btn ul li:nth-child(2) i, #sp_btn ul li:nth-child(1) i {
    font-size: 17px;
    padding: 0 0 3px;
  }
  #sp_btn ul li:nth-child(2) span, #sp_btn ul li:nth-child(1) span {
    font-size: 10px;
  }
}
@media screen and (max-width: 660px) {
  #footer {
    padding-bottom: 4rem;
  }
  #footer .footer__warp--upper--right {
    width: 100%;
  }
  #footer .footer__warp--upper--right--info {
    width: 100%;
  }
  #footer .footer__warp--upper--right--info table {
    width: 100%;
  }
  #footer .footer__warp--upper--right--info table tr th {
    padding-left: 0;
  }
  #footer .footer__warp--upper--right--info table tr td {
    letter-spacing: 0;
  }
  #footer .footer__warp--upper--right--info table tr td .none {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer__warp {
    padding: 3rem 2rem 0;
  }
  #footer .footer__warp--upper--left--box p {
    text-align: justify;
  }
  #footer .footer__warp--upper--left--box p .none {
    display: none;
  }
  #footer .footer__warp--upper--left iframe {
    height: 300px;
  }
  #footer .footer__warp--upper--right--info {
    width: 100%;
  }
  #footer .footer__warp--upper--right--info table tbody {
    width: 100%;
    display: block;
  }
  #footer .footer__warp--upper--right--info table tbody tr {
    width: 100%;
    display: block;
  }
  #footer .footer__warp--upper--right--info table tbody tr th {
    width: 100%;
    display: block;
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
    position: relative;
    padding: 0 0 0 0px;
    margin: 1rem 0 0 30px;
  }
  #footer .footer__warp--upper--right--info table tbody tr th::before {
    content: "";
    width: 10px;
    height: 1px;
    border-bottom: solid 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: -30px;
  }
  #footer .footer__warp--upper--right--info table tbody tr td {
    display: block;
    margin: 0 0 0 1rem;
    padding: 10px 10px 20px;
  }
  #footer .footer__warp--upper--right--info table tbody tr td table {
    width: 100%;
  }
  #footer .footer__warp--upper--right--info table tbody tr td table tbody tr th {
    width: 100%;
    margin: 0 0 0 0px;
  }
  #footer .footer__warp--upper--right--info table tbody tr td table tbody tr th::before {
    display: none;
  }
  #footer .footer__warp--upper--right--info address p {
    font-size: 14px;
  }
}
.sp_fixed {
  position: fixed !important;
  bottom: -70px;
  left: 0;
  z-index: 999;
  transition: 1s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.parallax_imagebox .bg_image_one {
  background-image: url("../../img/home/mainvisual/mainvisual__3.jpg");
}/*# sourceMappingURL=style.css.map */