@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
@font-face {
  font-family: "Zen Maru Gothic";
  font-weight: 300;
  font-style: normal;
  src: url("../../font/Zen_Maru_Gothic/woff2/ZenMaruGothic-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-weight: 400;
  font-style: normal;
  src: url("../../font/Zen_Maru_Gothic/woff2/ZenMaruGothic-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  font-style: normal;
  src: url("../../font/Zen_Maru_Gothic/woff2/ZenMaruGothic-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  font-style: normal;
  src: url("../../font/Zen_Maru_Gothic/woff2/ZenMaruGothic-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-weight: 900;
  font-style: normal;
  src: url("../../font/Zen_Maru_Gothic/woff2/ZenMaruGothic-Black.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  /****** アンカーリンク用高さ調整 start  ******/
  scroll-padding-top: 80px;
  /******* アンカーリンク用高さ調整 end  *******/
}
html body {
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #52585f;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 1rem);
  line-height: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  letter-spacing: 0.1rem;
  position: relative;
  font-weight: 500;
}
html body main {
  overflow: hidden;
}
html body main .space {
  display: block;
  height: 1rem;
}
html body.noscroll {
  overflow: hidden;
  touch-action: none; /* モバイルでも操作を制限 */
}

@media screen and (max-width: 480px) {
  html body {
    line-height: clamp(1.5rem, 1.46rem + 0.2vw, 1.7rem);
  }
}
/*****************************************/
/*****  inview  start  *****/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.splitText {
  overflow: hidden;
}

.js-fader-title {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-quad: cubic-bezier(0.11, 0, 0.5, 0);
  opacity: 0;
  transition: 1s all, opacity 0.5s;
  -webkit-transition: 1s all, opacity 0.5s;
}
.js-fader-title .char {
  opacity: 0;
  translate: 0 100%;
  --index: 0;
  display: inline-block;
}
.js-fader-title .char:first-child {
  text-transform: uppercase;
}
.js-fader-title.is-show {
  opacity: 1;
}
.js-fader-title.is-show .char {
  --delay: 0.2s;
  opacity: 1;
  translate: 0;
  transition: opacity 0.7s var(--ease-in-quad) calc(var(--delay) * var(--index)), translate 1.4s var(--ease-out-quart) calc(var(--delay) * var(--index));
}

.js-fader-l {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-l.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.js-fader-r {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-r.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.js-fader-t {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-t.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.js-fader-d {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-fader-d.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.js-blur {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  transition: 1s all;
  -webkit-transition: 1s all;
}
.js-blur.is-show {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  filter: blur(0);
  -webkit-filter: blur(0);
}

.js-fader {
  -webkit-mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
  mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  -webkit-mask-size: 250% 100%;
  mask-size: 250% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0;
}

.js-fader.is-show {
  transition: opacity 1.8s, -webkit-mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s, mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s, mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-mask-position 2.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  opacity: 1;
}

.zoomin {
  width: 100%;
  height: 100%;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transition: transform 1.2s ease, filter 1.2s ease;
  -webkit-transition: transform 1.2s ease, filter 1.2s ease;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  transition: all ease 1s;
  -webkit-transition: all ease 1s;
}
.zoomin.is-show {
  transform: scale(1);
  -webkit-transform: scale(1);
  filter: blur(0);
  -webkit-filter: blur(0);
}

.js-anim {
  position: relative;
  display: inline-block;
  transition: all 0.8s ease;
  clip-path: inset(0 100% 0 0);
}
.js-anim.is-show {
  clip-path: inset(0);
}

.js-bganim {
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  position: relative;
  transition-delay: 0.3s;
  display: flex;
}
.js-bganim span {
  transform: translateX(var(--x, -125%));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.25s;
}
.js-bganim::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 150%;
  transform: translateX(var(--cover-x, -101%));
  transition: transform 1.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: #bce9ec;
}
.js-bganim.is-show {
  --skewX: 0deg;
  --cover-x: 101%;
  --x: 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: #ffffff;
}

@media screen and (max-width: 1024px) {
  section {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  セクション部分空白設定  end  ******/
/*****************************************/
.at {
  display: flex;
  flex-flow: column;
  gap: 6px;
}
.at p {
  line-height: 1.5;
  display: flex;
  font-size: 0.9em;
}
.at p::before {
  content: "※";
  color: #7096c9;
}
.at p b {
  color: #7096c9;
}

/*****************************************/
/*******  見出し[h2]部分設定  start  ******/
/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
.lead {
  font-size: 1.25em;
}

.lead_lg {
  font-size: 1.5em;
}

.title01 {
  flex-flow: row-reverse;
  justify-content: space-between;
  margin-left: 0;
  width: 100%;
}

.title02 {
  margin-left: 0;
  margin-bottom: 2rem;
}
.title02 .en {
  display: none;
}
.title02 .ja {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  display: flex;
  align-items: center;
  gap: 10px;
}
.title02 .ja::before {
  content: "";
  width: 2rem;
  height: 0.25rem;
  background-color: #b0c4de;
  display: block;
}

h2 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  gap: 1.5rem;
  margin: 0 auto 3rem auto;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
}
h2 .en {
  text-transform: uppercase;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  color: #b0c4de;
}
h2 .ja {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .lead {
    font-size: 1.15em;
  }
  .lead_lg {
    font-size: 1.35em;
  }
  h2 {
    margin-bottom: 2rem;
  }
  h2 .ja {
    font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  }
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/********  見出し[h2]部分設定  end  *******/
/*****************************************/
.btn {
  background: #b0c4de;
  color: #fff;
  font-weight: 600;
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  transition: 0.3s ease-in-out;
  border-radius: 5rem;
}
.btn:hover {
  background: #7096c9;
  color: #fff;
}

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

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
/******  フォトギャラリー上下中央設定 ******/
/*****************************************/
#breadcrumb {
  padding: 0rem 0;
  margin: 1rem 0;
}
#breadcrumb .breadcrumb__warp {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
}
#breadcrumb .breadcrumb__warp ol {
  width: 100%;
  display: flex;
}
#breadcrumb .breadcrumb__warp ol li {
  padding: 0 0.5rem;
  font-size: clamp(0.6rem, 0.56rem + 0.2vw, 0.8rem);
  font-weight: 800;
}
#breadcrumb .breadcrumb__warp ol li:first-child {
  padding: 0 1rem 0 0;
}

@media screen and (max-width: 480px) {
  #breadcrumb .breadcrumb__warp {
    width: 90%;
  }
}
header {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 15px 5%;
  background-color: #ffffff;
  position: absolute;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header .he_logo {
  transition: 0.3s ease;
  color: #fff;
  padding: 0.75rem 2rem 0.75rem 0;
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
header .he_logo::before {
  content: "";
  width: 200%;
  height: calc(100% + 30px);
  background-color: #b0c4de;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: -1;
}
header .he_logo a {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  line-height: 1.5;
  font-size: 1.35em;
  font-weight: 600;
}
header .he_logo span {
  font-size: 0.7em;
}
header .accordion {
  display: none;
}
header .nav_list__li.meg.open .accordion {
  display: block;
  white-space: nowrap;
  position: absolute;
  top: calc(100% + 1px);
  background-color: #fff;
  padding: 1rem 1.5rem;
}
header .nav_list__li.meg.open .accordion p {
  display: flex;
  gap: 5px;
}
header .nav_list__li.meg.open .accordion p::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin: 0.8em 0;
  background-color: #b0c4de;
  display: block;
}
header .he-box {
  position: relative;
  display: flex;
  justify-content: end;
}
header .he-box .he_wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}
header .he-box .he_wrap nav .nav_list {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  align-items: center;
}
header .he-box .he_wrap nav .nav_list__li {
  position: relative;
}
header .he-box .he_wrap nav .nav_list__li p {
  font-size: 15px;
  font-weight: 600;
}
header .he-box .he_wrap nav .nav_list__li p i {
  margin-left: 1rem;
  color: #7096c9;
}
header .he-box .he_wrap nav .nav_list__li span {
  color: #b0c4de;
  font-size: 11px;
  font-weight: 800;
}
header .he-box .he_wrap nav .nav_list__li a {
  position: relative;
  display: block;
}
header .he-box .he_wrap nav .nav_list__li a::after {
  position: absolute;
  bottom: -9%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  opacity: 0;
  background-color: #7ccccc;
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: 0.3s;
}
header .he-box .he_wrap nav .nav_list__li a:hover::after {
  opacity: 1;
  bottom: -5%;
}
header .he-box .he_wrap nav .nav_list .active a::after {
  transform: scale(1, 1);
  width: 100%;
}

/* 上部に固定させるスタイルを用意 */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: color-mix(in srgb, rgb(0, 0, 0) 10%, transparent) 0px 0px 1rem;
}
.fixed .he_logo {
  padding: 0.5rem 2rem 0.5rem 1rem;
}

@media screen and (max-width: 1280px) {
  header .he-box .he_wrap nav .nav_list {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  header .he-box .he_wrap nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .he_logo {
    padding: 0.5rem 2rem 0.5rem 0;
  }
  .fixed .he_logo {
    padding: 0.5rem 2rem 0.5rem 0;
  }
}
@media screen and (max-width: 600px) {
  header {
    padding: 12px 5%;
  }
  header .he_logo {
    padding: 0 2rem 0 0;
  }
  header .he_logo::before {
    height: calc(100% + 24px);
  }
  header .he-box .he_wrap {
    margin: 0 15px 0 0;
  }
  .fixed .he_logo {
    padding: 0 2rem 0 0;
  }
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: #fff;
  /*動き*/
  transition: all 0.6s;
}
#g-nav .g-nav-icon {
  display: flex;
  align-items: center;
  width: 200px;
  margin-top: 30px;
  margin-left: 5px;
}
#g-nav .g-nav-icon a {
  padding: 0;
}
#g-nav .g-nav-icon a img {
  width: 30px;
  margin-right: 20px;
  transition: 0.4s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

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

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

/*リストのレイアウト設定*/
#g-nav .nav_list {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  align-items: center;
}
#g-nav .nav_list .logo a {
  color: #7096c9;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
  align-items: center;
  line-height: 1.5;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 1rem;
}
#g-nav .nav_list .logo a span {
  font-size: 0.8em;
}
#g-nav .nav_list__li {
  list-style: none;
  text-align: center;
  width: 75%;
  border-bottom: 1px solid #dedede;
  padding-bottom: 1rem;
}
#g-nav .nav_list__li:last-child {
  border-bottom: none;
}
#g-nav .nav_list__li img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 2rem;
}
#g-nav .nav_list__li a {
  font-weight: bold;
  text-decoration: none;
  display: block;
  letter-spacing: 0.1em;
  transition: 0.5s;
}
#g-nav .nav_list__li p {
  text-align: center;
  position: relative;
}
#g-nav .nav_list__li p i {
  position: absolute;
  margin-left: 1rem;
  top: 50%;
  transform: translate(0%, -50%);
  color: #7096c9;
}
#g-nav .nav_list__li span {
  font-weight: 600;
}
#g-nav .nav_list__li:first-child a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#g-nav .accordion {
  display: none;
}
#g-nav .nav_list__li.meg {
  position: relative;
}
#g-nav .nav_list__li.meg.open .accordion {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  white-space: nowrap;
  position: relative;
  background-color: #fff;
  padding: 0.5rem 0rem 0;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;
}
#g-nav .nav_list__li.meg.open .accordion p {
  display: flex;
  align-items: center;
  gap: 5px;
}
#g-nav .nav_list__li.meg.open .accordion p::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: #b0c4de;
  display: block;
}

/*========= ボタンのためのCSS ===============*/
/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9999;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  top: -10px;
  right: 0px;
  z-index: 9999999;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 10px 0;
}

.navicon {
  background: #b0c4de;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

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

.navicon:after {
  bottom: 9px;
  background: #b0c4de;
}

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

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

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn,
.menu-icon {
  display: none;
}

@media screen and (max-width: 1024px) {
  .menu-btn,
  .menu-icon {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #g-nav .nav_list .sns_wrap {
    margin-top: 1rem;
  }
  #g-nav .nav_list li p {
    line-height: 20px;
  }
  #g-nav .nav_list li img {
    margin-bottom: 1rem;
  }
}
#floating {
  position: fixed;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 99;
  display: none;
}
#floating li {
  display: block;
  margin: 0.5rem 0;
  border-right: none;
}
#floating li a {
  width: 42px;
  text-transform: uppercase;
  background-color: #b9ddeb;
  color: #fff;
  overflow: hidden;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  position: relative;
  transition: all ease 0.4s;
  font-size: 1.1em;
  font-weight: bold;
}
#floating li a i {
  top: 0;
  background-color: #edf7f7;
  color: #7ccccc;
  padding: 0.75rem 1rem;
  font-size: 0.8em;
  transition: all ease 0.4s;
}
#floating li a span {
  padding: 0.5rem 1rem 0.75rem 1rem;
  letter-spacing: 0.15em;
}
#floating li:hover a {
  background-color: #edf3fa;
  color: #b0c4de;
}
#floating li:hover a i {
  background-color: #b0c4de;
  color: #fff;
}

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

#main-visual {
  padding: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
#main-visual .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
#main-visual .copy {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 5%;
  line-height: 2;
  white-space: nowrap;
  z-index: 2;
  font-weight: 600;
  display: flex;
  flex-flow: column;
  gap: 6rem;
}
#main-visual .copy_wrap:last-of-type {
  padding-left: 4rem;
}
#main-visual .copy .main {
  font-size: 2em;
}
#main-visual .copy .main .col1 {
  color: #b0c4de;
}
#main-visual .copy .main .col2 {
  color: #7ccccc;
}
#main-visual .copy .js-fader-t:nth-of-type(2) {
  transition-delay: 0.5s;
}
@keyframes show {
  0% {
    top: 15px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
#main-visual .swiper-top {
  width: 65%;
  max-width: 1200px;
  margin-inline: auto 5%;
  height: 100% !important;
  position: relative;
  overflow: hidden;
}
#main-visual .swiper-top .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}
#main-visual .swiper-top .swiper-slide .swiper-img {
  width: 100%;
  height: 100%;
  will-change: transform;
  overflow: hidden;
}
#main-visual .swiper-top .swiper-slide .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 2s ease-in-out;
}
#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-active .swiper-img,
#main-visual .swiper-slide-duplicate-active .swiper-img,
#main-visual .swiper-slide-prev .swiper-img {
  animation: zoomUp 12s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@media screen and (max-width: 1780px) {
  #main-visual .swiper-top {
    margin-right: 0;
  }
  #main-visual .copy {
    left: 3%;
  }
  #main-visual .copy .main {
    font-size: 1.75em;
  }
  #main-visual .copy_wrap:last-of-type {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  #main-visual .copy {
    gap: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  #main-visual {
    aspect-ratio: unset;
    height: 80vh;
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
    flex-flow: column-reverse;
  }
  #main-visual .copy {
    gap: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    top: unset;
    left: unset;
    margin-inline: auto;
    transform: unset;
  }
  #main-visual .copy_wrap:last-of-type {
    margin-left: auto;
  }
  #main-visual .swiper-top {
    margin-top: 4.5rem;
    width: 90%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 600px) {
  #main-visual {
    height: 90vh;
    gap: 1.5rem;
  }
  #main-visual .copy {
    gap: 1.5rem;
  }
  #main-visual .copy .main {
    font-size: 4vw;
  }
}
@media screen and (max-width: 480px) {
  #main-visual .copy .main {
    font-size: 5vw;
  }
  #main-visual .swiper-top {
    margin-top: 4rem;
  }
}
#blog2 .btn {
  margin: 0 auto;
}
#blog2 .blog__warp--box--listbox--list--link--item--cat,
#blog2 .blog__warp--box--listbox--list--link--item--read,
#blog2 .fa-regular {
  display: none;
}
#blog2 .blog__warp--box {
  padding-bottom: 2rem;
  border-top: 1px solid #dedede;
  padding-top: 0.75rem;
}
#blog2 .blog__warp--box--listbox--list {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dedede;
  transition: 0.3s ease;
}
#blog2 .blog__warp--box--listbox--list:hover h3 {
  color: #7096c9;
}
#blog2 .blog__warp--box--listbox--list--link--item {
  display: flex;
  align-items: center;
}
#blog2 .blog__warp--box--listbox--list--link--item--time {
  order: -1;
  margin-right: 1rem;
  line-height: 1;
  color: #7ccccc;
  font-weight: bold;
}
#blog2 .blog__warp--box--listbox--list--link--item--h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: 0.3s ease;
}
#blog2 .blog__warp--box--listbox--list--link--item--h3 b {
  font-weight: unset;
}

@media screen and (max-width: 1279px) {
  #blog2 {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 928px) {
  #blog2 .section {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #blog2 .section__list .inner a {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  #blog2 .section__list .inner a span {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 480px) {
  #blog2 .blog__warp--box {
    padding-bottom: 0.5rem;
  }
  #blog2 .blog__warp--box--listbox--list--link--item {
    display: flex;
    flex-flow: column;
    align-items: inherit;
  }
  #blog2 .blog__warp--box--listbox--list--link--item--time {
    width: -moz-fit-content;
    width: fit-content;
  }
  #blog2 .blog__warp--box--listbox--list--link--item--h3 {
    padding-top: 0.5rem;
  }
}
#hours .section_inner table {
  width: 100%;
  margin: 0 auto;
}
#hours .section_inner table tr th,
#hours .section_inner table tr td {
  padding: 10px 5px;
}
#hours .section_inner table tr th {
  border-bottom: 1px solid #dedede;
  white-space: nowrap;
  font-weight: unset;
  width: 140px;
  font-weight: bold;
  color: #7096c9;
}
#hours .section_inner table tr td {
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  color: #7ccccc;
  text-align: center;
}
#hours .section_inner table tr:first-child th {
  border-top: 1px solid #dedede;
  text-align: center;
  font-weight: unset;
  color: #52585f;
}
@media screen and (max-width: 480px) {
  #hours .section_inner table tr th,
  #hours .section_inner table tr td {
    padding: 10px 2px;
  }
  #hours .section_inner table tr th {
    width: 40px;
  }
  #hours .section_inner table tr th:first-child {
    padding-left: 0;
  }
  #hours .section_inner table tr th:last-child {
    padding-right: 0;
  }
  #hours .section_inner table tr td:last-child {
    padding-right: 0;
  }
}
#hours .section_inner table {
  margin-bottom: 1rem;
}

@media screen and (max-width: 480px) {
  #hours {
    padding-top: 2rem;
  }
}
#subject .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #subject .section {
    width: 90%;
  }
}
#subject .section {
  max-width: 1720px;
}
#subject .section_inner ul {
  display: grid;
  align-items: stretch;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
#subject .section_inner ul li {
  display: flex;
  flex-flow: column;
  text-align: justify;
  gap: 1rem;
}
#subject .section_inner ul li .txt {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
#subject .section_inner ul li .lead_lg {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}
#subject .section_inner ul li .lead_lg figure {
  margin-top: -2.5rem;
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 50%;
}
#subject .section_inner ul li .lead_lg img {
  width: 3rem;
}
#subject .section_inner ul li .btn {
  margin-top: auto;
  color: #b0c4de;
  background-color: #fff;
  border: 2px solid #b0c4de;
}
#subject .section_inner ul li .btn:hover {
  color: #7096c9;
  border: 2px solid #7096c9;
}

@media screen and (max-width: 1279px) {
  #subject .section_inner ul {
    grid-template-columns: repeat(1, 1fr);
  }
  #subject .section_inner ul li {
    flex-flow: row;
    gap: 2rem;
  }
  #subject .section_inner ul li .btn {
    margin-top: 1rem;
  }
  #subject .section_inner ul li .lead_lg {
    margin-left: -1rem;
    gap: 0;
  }
  #subject .section_inner ul li .lead_lg figure {
    margin-top: 0;
  }
  #subject .section_inner ul li .lead_lg img {
    width: 2.5rem;
  }
  #subject .section_inner ul li .txt {
    width: 50%;
    gap: 0;
  }
  #subject .section_inner ul li .image {
    width: 50%;
  }
  #subject .section_inner ul li .image figure img {
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #subject .section_inner ul li:nth-child(2) {
    flex-flow: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  #subject .section_inner ul {
    gap: 4rem;
  }
  #subject .section_inner ul li {
    flex-flow: column;
    gap: 0;
  }
  #subject .section_inner ul li .btn {
    margin-inline: auto;
  }
  #subject .section_inner ul li .image {
    width: 100%;
  }
  #subject .section_inner ul li .image figure {
    width: 85%;
    margin-inline: auto;
  }
  #subject .section_inner ul li .image figure img {
    aspect-ratio: 3/2;
  }
  #subject .section_inner ul li .txt {
    width: 95%;
    margin-inline: auto;
  }
  #subject .section_inner ul li .lead_lg {
    margin-left: 0rem;
  }
  #subject .section_inner ul li .lead_lg figure {
    aspect-ratio: 1;
    margin-top: -2rem;
    margin-bottom: 0.5rem;
  }
  #subject .section_inner ul li:nth-child(2) {
    flex-flow: column;
  }
}
@media screen and (max-width: 480px) {
  #subject .section_inner ul {
    gap: 3rem;
  }
}
#contents {
  padding-bottom: 10rem;
  position: relative;
}
#contents::before {
  content: "";
  width: 60%;
  height: calc(75% - 2rem);
  position: absolute;
  top: -1rem;
  background-color: #eaf4f7;
}
#contents .contents_wrap {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #contents .contents_wrap {
    width: 90%;
  }
}
#contents .contents_wrap {
  max-width: 1720px;
}
#contents .contents_wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
#contents .contents_wrap ul li {
  width: 100%;
  height: 100%;
}
#contents .contents_wrap ul li .contents_img {
  width: 100%;
  position: relative;
  transition: 0.5s all;
}
#contents .contents_wrap ul li .contents_img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #b4b4b4;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  transition: 0.3s ease;
}
#contents .contents_wrap ul li .contents_img img {
  width: 100%;
  aspect-ratio: 2.5/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  z-index: 0;
  transition: 0.5s all;
}
#contents .contents_wrap ul li .contents_img h5 {
  position: absolute;
  top: -0.75rem;
  left: 0.75rem;
  font-size: 1.5em;
  color: #b0c4de;
  line-height: 30px;
  z-index: 20;
  display: flex;
  flex-flow: column;
  line-height: 1.8;
  background-color: #edf3fa;
  background-color: #fff;
  border-top: 0.5rem solid #dbe8f7;
  padding: 1.5rem 2rem 1rem;
  min-width: 13rem;
  font-weight: 600;
  transition: 0.3s ease;
}
#contents .contents_wrap ul li .contents_img h5 .ja {
  transition: 0.3s ease;
  min-width: 7em;
}
#contents .contents_wrap ul li .contents_img h5 .en {
  text-transform: uppercase;
  font-size: 0.5em;
  color: #7ccccc;
  transition: 0.3s ease;
}
#contents .contents_wrap ul li:hover .contents_img::before {
  opacity: 0;
}
#contents .contents_wrap ul li:hover .contents_img h5 {
  border-top: 0.5rem solid #b0c4de;
}
#contents .contents_wrap ul li:hover .contents_img h5 .ja {
  letter-spacing: 0.15em;
  color: #7096c9;
}
#contents .contents_wrap ul li:hover .contents_img h5 .en {
  color: #b0c4de;
}

@media screen and (max-width: 1280px) {
  #contents .contents_wrap ul li .contents_img img {
    aspect-ratio: 2/1.25;
  }
}
@media screen and (max-width: 1024px) {
  #contents .contents_wrap ul li .contents_img::before {
    display: none;
  }
  #contents .contents_wrap ul li .contents_img h5 .ja {
    color: #7096c9;
  }
}
@media screen and (max-width: 768px) {
  #contents .contents_wrap ul {
    gap: 2rem;
  }
}
@media screen and (max-width: 700px) {
  #contents .contents_wrap ul {
    grid-template-columns: 1fr;
  }
  #contents .contents_wrap ul li .contents_img img {
    aspect-ratio: 2/1.25;
  }
}
@media screen and (max-width: 480px) {
  #contents {
    padding-bottom: 4rem;
  }
  #contents .contents_wrap ul {
    gap: 2rem;
  }
  #contents .contents_wrap ul li .contents_img img {
    aspect-ratio: 2/1.1;
  }
  #contents .contents_wrap ul li .contents_img h5 {
    padding: 0.75rem 1.25rem 0.25rem;
    min-width: 9rem;
    font-size: 1.25em;
    flex-flow: row-reverse;
    gap: 1rem;
    min-width: 16rem;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
#carousel {
  position: relative;
}
#carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40%;
  height: 100%;
  display: block;
  z-index: -1;
  background-color: #b0c4de;
  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: #b0c4de;
  border: solid 1px #b0c4de;
  color: #7096c9;
  transition: all ease 0.5s;
}
#carousel .carousel__warp--link a:hover {
  background-color: #edf3fa;
  color: #b0c4de;
}

#modal {
  padding: 5rem 0 15rem 0;
  position: relative;
  margin: 0 3rem 3rem;
  width: calc(100% - 6rem);
}
#modal::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "coating gallery";
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(4rem, 3.5rem + 2.5vw, 6.5rem);
  writing-mode: vertical-rl;
  text-wrap: nowrap;
  line-height: 1;
  z-index: 1;
}
#modal .modal__warp 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 .modal__warp .modal__trigger {
  cursor: pointer;
}
#modal .modal__warp .modal__trigger:nth-child(n+2) {
  margin-top: 60px;
}
#modal .modal__warp {
  /* モーダル本体 */
}
#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 .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 .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: 0;
  right: 0;
  z-index: 99;
}
.pagetop a {
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  display: block;
  background-color: #edf3fa;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  transition: all ease 0.4s;
  color: #b0c4de;
}
.pagetop a i {
  transition: all ease 0.5s;
}
.pagetop a:hover {
  background-color: #b0c4de;
  color: #fff;
}
.pagetop.footer-active a {
  background-color: #edf3fa;
}

@media screen and (max-width: 1280px) {
  .pagetop {
    bottom: calc(50px + 1rem);
  }
}
@media screen and (max-width: 480px) {
  .pagetop {
    display: none;
    position: fixed;
    bottom: calc(50px + 1.5rem);
  }
  .pagetop a {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
  }
}
_:lang(x) + _:-webkit-full-screen-document,
.pagetop {
  right: 0;
}

.footer {
  position: relative;
  overflow: hidden;
}
.footer_bg {
  pointer-events: none;
  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_wrap {
  width: 80%;
  max-width: 1720px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
  padding: 120px 0 45px;
  display: flex;
  flex-flow: column;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 2rem;
}
.footer_wrap__logo {
  max-width: 100%;
}
.footer_wrap__logo a {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 2em;
  color: #b0c4de;
}
.footer_wrap__logo a span {
  font-size: 0.6em;
}
.footer_wrap__address {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.footer_wrap__address span {
  display: inline-block;
}
.footer_wrap .row {
  display: grid;
  align-items: flex-end;
  grid-template-columns: 35% 45% 20%;
  gap: 2rem 5rem;
}
.footer_wrap .row table {
  width: 100%;
  margin: 0 auto;
}
.footer_wrap .row table tr th,
.footer_wrap .row table tr td {
  padding: 10px 5px;
}
.footer_wrap .row table tr th {
  border-bottom: 1px solid #dedede;
  white-space: nowrap;
  font-weight: unset;
  width: 140px;
  font-weight: bold;
  color: #7096c9;
}
.footer_wrap .row table tr td {
  border-bottom: 1px solid #dedede;
  overflow: hidden;
  color: #7ccccc;
  text-align: center;
}
.footer_wrap .row table tr:first-child th {
  border-top: 1px solid #dedede;
  text-align: center;
  font-weight: unset;
  color: #52585f;
}
@media screen and (max-width: 480px) {
  .footer_wrap .row table tr th,
  .footer_wrap .row table tr td {
    padding: 10px 2px;
  }
  .footer_wrap .row table tr th {
    width: 40px;
  }
  .footer_wrap .row table tr th:first-child {
    padding-left: 0;
  }
  .footer_wrap .row table tr th:last-child {
    padding-right: 0;
  }
  .footer_wrap .row table tr td:last-child {
    padding-right: 0;
  }
}
.footer_wrap .row table {
  margin-bottom: 1rem;
}
.footer_wrap .row iframe {
  width: 100%;
  height: 100%;
}
.footer_wrap__tel .btn {
  display: flex;
  align-items: center;
  color: #b0c4de;
  background-color: #fff;
  border: 2px solid #b0c4de;
}
.footer_wrap__tel .btn:hover {
  color: #7096c9;
  border: 2px solid #7096c9;
}
.footer_wrap__tel i {
  margin-right: 0.5rem;
}
.footer_wrap__tel a {
  font-size: 1.1em;
}
.footer_wrap__nav {
  margin-top: 2rem;
}
.footer_wrap__nav ul {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
}
.footer_wrap__nav ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer_wrap__nav ul li::before {
  content: "";
  width: 1rem;
  height: 2px;
  background-color: #dbe8f7;
  display: block;
}
.footer_wrap__nav ul li a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: 0.9em;
  transition: 0.3s ease;
}
.footer_wrap__nav ul li a i {
  padding-top: 2px;
}
.footer_wrap__nav ul li a span {
  display: none;
}
.footer_wrap__nav ul li:hover a {
  opacity: 0.6;
}
.footer_copy {
  position: relative;
  z-index: 7;
  height: 42px;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  font-size: 0.9em;
  background-color: #b0c4de;
}
.footer_copy span {
  display: inline-block;
}

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

@media screen and (max-width: 1380px) {
  .footer_wrap .row {
    gap: 2rem 3rem;
  }
}
@media screen and (max-width: 1279px) {
  .footer_wrap {
    width: 90%;
  }
  .footer_wrap .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2rem;
  }
  .footer_wrap .row iframe {
    width: calc(50% - 1rem);
    height: auto;
  }
  .footer_wrap .time {
    width: calc(50% - 1.5rem);
    height: 100%;
  }
  .footer_wrap__nav {
    width: 100%;
  }
  .footer_wrap__nav ul {
    flex-flow: row;
  }
}
@media screen and (max-width: 928px) {
  .footer_wrap__wrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 50px;
  }
  .footer_wrap {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    padding-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer_wrap .row {
    flex-flow: column;
    align-items: center;
    gap: 0;
  }
  .footer_wrap .row .time,
  .footer_wrap .row iframe {
    width: 100%;
  }
  .footer_wrap .row iframe {
    height: 30vh;
    margin-top: 1.5rem;
  }
  .footer_wrap__logo {
    margin-inline: auto;
  }
  .footer_wrap__logo a {
    flex-flow: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer_wrap__address {
    justify-content: center;
    text-align: center;
    flex-flow: column;
    gap: 1rem;
  }
  .footer_wrap__nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  .sp-fixed-link {
    display: flex;
    position: fixed;
    bottom: -70px;
    /* 初期位置は画面外 */
    left: 0;
    z-index: 99;
    width: 100%;
    transition: bottom 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    /* transformを追加 */
    transform: translateY(100%);
    /* 初期位置は下に隠れる状態 */
  }
  .sp-fixed-link.hidden {
    display: none;
  }
  .sp-fixed-link.scroll {
    opacity: 0;
    transform: translateY(100%);
    /* スクロール中は下に隠れる */
    pointer-events: none;
  }
  .sp-fixed-link.page-open {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
    /* 下からスライドして表示される */
  }
  .sp-fixed-link.page-top {
    bottom: 0;
    opacity: 0;
    transform: translateY(0);
    /* 下からスライドして表示される */
    pointer-events: none;
  }
  #sp_btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    box-shadow: color-mix(in srgb, rgb(0, 0, 0) 10%, transparent) 0px 0px 1rem;
  }
  #sp_btn ul {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  #sp_btn ul li {
    height: 50px;
    width: 100%;
    display: block;
    padding: 7.5px 0;
    background-color: #dbe8f7;
  }
  #sp_btn ul li a,
  #sp_btn ul li .button {
    background-color: #ffffff;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding: 0 2rem;
    gap: 2px;
    text-align: center;
    color: #52585f;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: 0.5s;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 1.5em;
    color: #b0c4de;
    line-height: 1;
  }
  #sp_btn ul li a i,
  #sp_btn ul li .button i {
    font-size: 0.75em;
    color: #7ccccc;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .footer_wrap {
    width: 90%;
  }
  .footer_wrap__logo a {
    font-size: 1.75em;
  }
  .footer_wrap__logo a span {
    font-size: 0.7em;
  }
}
.bgc {
  position: relative;
  padding-top: 5vh;
  background-color: #edf3fa;
}
.bgc .js-fader-title {
  position: absolute;
  top: -3vw;
}
.bgc .deco {
  font-size: 12.75vw;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 0 #b0c4de, -1px -1px 0 #b0c4de, -1px 1px 0 #b0c4de, 1px -1px 0 #b0c4de, 0px 1px 0 #b0c4de, 0 -1px 0 #b0c4de, -1px 0 0 #b0c4de, 1px 0 0 #b0c4de;
}

.two {
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .two {
    width: 90%;
  }
}
.two {
  max-width: 1720px;
  gap: 4rem;
  display: flex;
}
.two section {
  min-width: calc(50% - 2rem);
  background-color: unset;
}
.two section .section {
  height: 100%;
  background-color: #fff;
  padding: 3rem 5rem;
}

@media screen and (max-width: 1580px) {
  .two section .section {
    padding: 3rem;
  }
}
@media screen and (max-width: 1279px) {
  .two {
    flex-flow: column;
    gap: 0;
  }
}
@media screen and (max-width: 480px) {
  .bgc .deco {
    font-size: 20vw;
  }
  .two section .section {
    padding: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */