@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");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
html body {
  font-family: "Zen Old Mincho", serif;
  color: #16160e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
  position: relative;
  font-weight: 500;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

.wrap-all {
  overflow-x: hidden;
  height: 100%;
}

.wrap-all::-webkit-scrollbar {
  display: none;
}

.coming-soon {
  font-size: 2em;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.15em;
  font-weight: bold;
}

* {
  min-height: 0;
  min-width: 0;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0);
  transition: 0.75s all;
  text-shadow: rgba(74, 74, 79, 0.85) 0px 2px 7px;
  color: #fff;
}
.header.page-open {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: rgba(100, 100, 111, 0.1) 0px 3px 7px 0px;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.75);
  color: #16160e;
}
.header.page-open nav .nav_list li a span {
  color: #4c4c4c;
}
.header.page-open .header__logo a img {
  filter: invert(0) !important;
}
.header .menu-container {
  display: none;
}
.header__wrap {
  height: 100%;
  width: calc(100% - 15px);
  margin: 0 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo a {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
.header__logo a img {
  width: 70px;
  filter: invert(100%);
  transition: 0.75s all;
}
.header__logo a p {
  font-size: 1.5em;
  line-height: 1;
}
.header__logo a p span {
  font-size: 1.5em;
  font-family: "Zen Old Mincho", serif;
}
.header nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.header nav .nav_list {
  height: 100%;
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 998;
}
.header nav .nav_list li a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  transition: 1s all;
  line-height: 1;
  white-space: nowrap;
}
.header nav .nav_list--2 {
  gap: 0;
  margin-left: 30px;
}
.header nav .nav_list--2 li {
  height: 100%;
  width: 60px;
  transition: 1s all;
}
.header nav .nav_list--2 li a {
  transition: 1s all;
  position: relative;
}
.header nav .nav_list--2 li a p {
  font-size: 0.75em;
  color: #fff !important;
}
.header nav .nav_list--2 li a i {
  font-size: 1.8em;
  color: #fff !important;
}
.header nav .nav_list--2 li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 1s all;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 50%) no-repeat; /*グラデーション①*/
  z-index: -1;
}
.header nav .nav_list--2 li:nth-child(2) a::after {
  background: #d0111b;
}
.header nav .nav_list--2 li:nth-child(3) a::after {
  background: #e73820;
}
.header.page-open nav .nav_list--2 li {
  width: 80px;
}
.header.page-open nav .nav_list--2 li a img {
  filter: none;
}
.header.page-open nav .nav_list--2 li a::after {
  opacity: 1;
}
.header.page-open nav .nav_list--2 li:last-child a::before {
  filter: drop-shadow(rgba(74, 74, 79, 0) 0px 2px 7px);
}

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

@media screen and (max-width: 1280px) {
  .header nav .nav_list {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .header nav .nav_list li a {
    font-size: 0.9em;
  }
  .header nav .nav_list--2 {
    gap: 0;
    margin-left: 15px;
  }
  .header__logo a p {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 928px) {
  .header {
    text-shadow: none !important;
  }
  .header__wrap {
    position: relative;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .header .menu-container {
    display: flex;
    height: 100%;
    position: absolute;
    right: 0;
    z-index: 9999;
  }
  .header .menu-container .responsive_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.75s ease;
  }
  .header .menu-container .responsive_btn .menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .menu-container .responsive_btn .menu_btn i {
    font-size: 32px;
    color: #4c4c4c;
  }
  .header .menu-container .responsive_btn span {
    color: #16160e;
    font-size: 36px;
  }
  .header .menu-container .responsive_btn.menu_close {
    display: none;
  }
  .header .menu-container .responsive_btn.menu_close.active {
    display: flex;
  }
  .header .menu-container .responsive_btn.menu_open.active {
    display: none;
  }
  .header .menu-container .responsive_btn.menu_open .menu_btn i {
    color: #fff;
  }
  .header nav {
    position: fixed;
    top: 0%;
    transform: translateX(-50%);
    left: 160%;
    transition: 0.75s ease;
    width: 100vw;
    height: 102vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    gap: 30px;
  }
  .header nav .nav_list {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .header nav .nav_list li a {
    color: #16160e !important;
    font-weight: bold;
  }
  .header nav .nav_list li a span {
    font-size: 16px;
    color: #4c4c4c !important;
  }
  .header nav .nav_list li a p {
    font-size: 18px;
  }
  .header nav .nav_list--2 {
    margin: 0;
    gap: 5px;
  }
  .header nav .nav_list--2 li {
    width: 210px !important;
    height: auto;
  }
  .header nav .nav_list--2 li a {
    flex-direction: unset;
    padding: 10px 15px;
    gap: 5px;
    transition: 1s all;
  }
  .header nav .nav_list--2 li a p {
    font-size: 16px;
    color: #fff !important;
  }
  .header nav .nav_list--2 li a i {
    font-size: 16px;
  }
  .header nav .nav_list--2 li a::after {
    opacity: 1;
  }
  .header nav .nav_list--2 li a:hover {
    filter: brightness(0.75) contrast(120%);
  }
  .header nav.active {
    left: 50%;
  }
  .header.page-open .menu-container .responsive_btn.menu_open .menu_btn i {
    color: #4c4c4c;
  }
  .header.page-open .header__logo a p {
    text-shadow: none;
  }
}
@media screen and (max-width: 480px) {
  .header__logo a {
    white-space: nowrap;
  }
  .header__logo a p {
    font-size: 1.25em;
  }
  .header__wrap {
    width: calc(100% - 30px);
  }
}
#heading {
  width: 100%;
  height: 50vh;
  position: relative;
}
#heading .background {
  width: 100%;
  height: 100%;
  position: relative;
}
#heading .background__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
#heading .background__image {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 25vh;
  left: 50%;
  width: 100%;
  height: 100vh;
  background-image: url("../../img/common/heading/heading.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
#heading .background__image--menu {
  background-image: url("../../img/common/heading/menu.jpg");
}
#heading .background__image--info {
  background-image: url("../../img/common/heading/info.jpg");
}
#heading .background__image--gallery {
  background-image: url("../../img/common/heading/gallery.jpg");
}
#heading .background::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.4;
}
#heading .heading {
  z-index: 100;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  top: 100%;
  left: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#heading .heading h1 {
  line-height: 1;
  font-size: 3em;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding: 15px 30px;
  color: #fafafa;
}
#heading .heading h1.heading__title--cms {
  font-size: 2.2em;
}
#heading .heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #4c4c4c;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: -50%;
  z-index: -1;
  opacity: 0.85;
  transition: 0.5s ease-in-out;
}
#heading .heading.is-show::after {
  left: 50%;
}

@media screen and (max-width: 1024px) {
  #heading .heading h1 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  #heading .heading h1 {
    font-size: 2.2em;
    padding: 15px 30px 15px 15px;
  }
}
@media screen and (max-width: 480px) {
  #heading .heading h1 {
    font-size: 2em;
    padding: 15px 10px 15px 10px;
  }
}
.sp-fixed-link {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  position: fixed;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  z-index: 998;
  gap: 5px;
  color: #ffffff;
  transition: 0.5s all;
}
.sp-fixed-link.page-open {
  opacity: 1;
}
.sp-fixed-link a {
  background-color: #4c4c4c;
  width: 100%;
  padding: 15px 10px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 4px solid #ffffff;
  border-right: none;
}
.sp-fixed-link a i {
  font-size: 18px;
}
.sp-fixed-link a p {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 928px) {
  .sp-fixed-link {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    height: 60px;
    right: auto;
    top: auto;
    transform: unset;
    left: 0;
    bottom: 0;
    gap: 0;
  }
  .sp-fixed-link.scroll {
    opacity: 0;
    bottom: -15px;
  }
  .sp-fixed-link a {
    border: 2px solid #ffffff;
    border-left: none;
    border-bottom: none;
    font-weight: bold;
    aspect-ratio: unset;
    flex-direction: row;
    display: flex !important;
    padding: 0;
  }
  .sp-fixed-link a p {
    writing-mode: horizontal-tb;
  }
  .sp-fixed-link a i {
    padding-top: 3px;
    font-size: 1.2em;
  }
  .sp-fixed-link a:last-child {
    border-right: none;
  }
}
@media screen and (max-width: 600px) {
  .sp-fixed-link a {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto 1fr;
    row-gap: 5px;
  }
  .sp-fixed-link a i {
    padding: 0;
    grid-row: 2/3;
    font-size: 1.3em;
  }
  .sp-fixed-link a p {
    grid-row: 3/4;
    font-size: 0.75em;
  }
  .sp-fixed-link a:first-child i {
    font-size: 1.1em;
  }
}
#commitment {
  padding: 120px 0;
}
#commitment::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background-image: url(../../img/common/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
  opacity: 0.5;
}
#commitment .section {
  z-index: 10;
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  #commitment .section {
    width: 90%;
  }
}
#commitment .section__title {
  letter-spacing: 0.15em;
  line-height: 1.2;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.8em;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  row-gap: 5px;
  opacity: 0;
  position: relative;
  bottom: -15px;
  transition: 1s all;
  margin-block-end: 30px;
  text-align: left;
}
#commitment .section__title span {
  display: inline-block;
}
#commitment .section__title.is-show {
  opacity: 1;
  bottom: 0;
}
#commitment .section__text {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  line-height: 2;
  opacity: 0;
  position: relative;
  bottom: -15px;
  transition: 1s all;
}
#commitment .section__text.is-show {
  opacity: 1;
  bottom: 0;
}
#commitment .section__image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
#commitment .section__image figure {
  position: relative;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
#commitment .section__image figure::after {
  content: "";
  display: block;
  width: 101%;
  height: 110%;
  background: #4c4c4c;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.5s ease-in-out;
  transition-delay: 0.15s;
}
#commitment .section__image figure.is-show::after {
  left: 152%;
}
#commitment .section__image figure img {
  width: 100%;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
}
#commitment .section__image--1 figure:first-child {
  margin-block-start: 30px;
}
#commitment .section__image--2 {
  grid-row: 1/2;
  grid-column: 1/2;
}
#commitment .section__image--2 figure:last-child {
  margin-block-start: 30px;
}
#commitment .section--2 {
  padding: 180px 0;
  margin-block: 120px;
  position: relative;
}
#commitment .section--2 .section__text {
  text-shadow: rgba(44, 44, 47, 0.75) 0px 2px 2px;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 2.4;
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  max-width: 600px;
}
@media screen and (max-width: 480px) {
  #commitment .section--2 .section__text {
    width: 90%;
  }
}
#commitment .section--2 .section__text span {
  display: inline-block;
}
#commitment .section--2::after {
  content: "";
  display: block;
  width: 320px;
  aspect-ratio: 1/1;
  background-image: url(../../img/common/logo/logo.png);
  filter: invert(95%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  opacity: 0.85;
}
#commitment .section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
#commitment .section__img {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 102%;
  height: 100vh;
  background-image: url("../../img/commitment/commitment-bg.jpg");
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  z-index: -1;
  filter: blur(5px);
}

@media screen and (max-width: 1280px) {
  #commitment .section {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  #commitment .section__image figure img {
    aspect-ratio: 2/5;
  }
  #commitment .section--2::after {
    left: 0;
    top: 0;
    width: 240px;
  }
}
@media screen and (max-width: 1024px) {
  #commitment .section {
    display: flex;
    flex-direction: column;
  }
  #commitment .section__image {
    margin-block-start: 60px;
  }
  #commitment .section__image figure img {
    aspect-ratio: 2/3;
  }
  #commitment .section--2::after {
    left: 0;
    top: 0;
    width: 180px;
  }
}
@media screen and (max-width: 480px) {
  #commitment {
    padding: 90px 0;
  }
  #commitment .section__title {
    margin-block-end: 30px;
  }
  #commitment .section--2 {
    margin-block: 90px;
    padding: 180px 0 120px 0;
  }
  #commitment .section__image {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #commitment .section__image figure img {
    aspect-ratio: 1/2;
  }
}
#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #dcdcdc;
  -webkit-clip-path: polygon(0 0, 65% 0, 100% 100%, 35% 100%);
          clip-path: polygon(0 0, 65% 0, 100% 100%, 35% 100%);
}
#carousel .carousel__wrap h2 {
  margin: 0 auto 4rem;
}
#carousel .carousel__wrap--slider {
  overflow: hidden;
}
#carousel .carousel__wrap--slider--box {
  transition-timing-function: linear;
}
#carousel .carousel__wrap--slider--box--list {
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#carousel .carousel__wrap--slider--box--list img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#carousel .carousel__wrap--link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#carousel .carousel__wrap--link a {
  margin: 2rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  background-color: #dcdcdc;
  border: solid 1px #dcdcdc;
  color: #4c4c4c;
  transition: all ease 0.5s;
}
#carousel .carousel__wrap--link a:hover {
  background-color: #4c4c4c;
  color: #595757;
}

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

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4c4c4c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0px 6px 10px -6px #74635d;
  overflow: hidden;
  color: #fff;
  border: 2px solid #dcdcdc;
}

#page-top a:hover {
  opacity: 0.8;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(200px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
@media screen and (max-width: 928px) {
  #page-top {
    bottom: 65px;
  }
}
.footer {
  background-image: url(../../img/common/footer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10;
  color: #fff;
}
.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5) 60%, rgb(0, 0, 0));
  z-index: -1;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.footer__wrap {
  padding: 60px 0 30px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
  margin: 0 auto;
  display: grid;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
  grid-template-rows: repeat(4, auto);
}
.footer__logo {
  grid-column: 1/2;
  grid-row: 1/5;
  width: 240px;
  background-color: rgba(220, 220, 220, 0.75);
  padding: 15px;
}
.footer__logo img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__address {
  grid-row: 1/2;
  grid-column: 2/3;
  height: -moz-fit-content;
  height: fit-content;
}
.footer__address p span {
  display: block;
}
.footer__address p br {
  display: none;
}
.footer__tel {
  grid-row: 2/3;
  grid-column: 2/3;
}
.footer__tel a {
  display: flex;
  align-items: center;
  gap: 2.5px;
  font-size: 1.2em;
}
.footer__tel a img {
  width: 21px;
}
.footer__instagram {
  grid-row: 3/4;
  grid-column: 2/3;
  background-color: #fff;
}
.footer__instagram a {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
  position: relative;
  transition: 1s all;
}
.footer__instagram a img {
  width: 24px;
}
.footer__instagram a p {
  font-size: 1.2em;
}
.footer__instagram a::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border: 1px solid white;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.footer__instagram a:hover {
  filter: brightness(0.75) contrast(120%);
}
.footer__reserve {
  margin-top: 5px;
  grid-row: 4/5;
  grid-column: 2/3;
  background-color: #595757;
}
.footer__reserve a {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 1s all;
}
.footer__reserve a img {
  width: 30px;
}
.footer__reserve a p {
  display: flex;
  flex-direction: column;
}
.footer__reserve a p span {
  font-size: 1.2em;
}
.footer__reserve a:hover {
  filter: brightness(0.75) contrast(120%);
}
.footer__nav {
  grid-row: 5/6;
  grid-column: 1/3;
  margin-top: 30px;
}
.footer__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -moz-column-gap: 30px;
       column-gap: 30px;
  font-size: 0.9em;
}
.footer__nav ul li a {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 5px;
       column-gap: 5px;
  align-items: center;
  white-space: nowrap;
}
.footer__nav ul li a i {
  padding-top: 2px;
}

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

@media screen and (max-width: 928px) {
  .footer__copy {
    padding-bottom: 65px;
    background-color: unset;
  }
  .footer__wrap {
    display: flex;
    flex-direction: column;
  }
  .footer__reserve, .footer__instagram {
    width: 360px;
    white-space: nowrap;
  }
  .footer__instagram {
    margin-top: 15px;
  }
  .footer__address {
    margin-top: 30px;
    margin-bottom: 15px;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  .footer__address p br {
    display: inline;
  }
}
@media screen and (max-width: 600px) {
  .footer__nav ul {
    flex-wrap: wrap;
    max-width: 300px;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .footer__wrap {
    max-width: 90%;
    width: 90%;
  }
  .footer__instagram a p {
    font-size: 1em;
  }
  .footer__instagram, .footer__reserve {
    width: 280px;
    max-width: 360px;
  }
}/*# sourceMappingURL=style.css.map */