@charset "UTF-8";
/* -------------------------------
	default
-------------------------------- */
:root {
  --app-h: 100vh;
  --app-w: 100vw;
}

@supports (height: 100dvh) {
  :root {
    --app-h: 100dvh;
    --app-w: 100dvw;
  }
}
html {
  font-size: 16px;
}
@media print, screen and (min-width: 992px) {
  html {
    font-size: min(calc(16px + 4 * (100vw - 992px) / 508), 20px);
  }
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
}

@media screen {
  #wrapper {
    opacity: 0;
  }

  body.is-loaded #wrapper {
    opacity: 1;
  }
}
/* -------------------------------
	ローディング
-------------------------------- */
.loader {
  color: rgba(0, 0, 0, 0.2);
  font-size: 8px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: load4 1.3s infinite linear;
  transform: translate(-50%, -50%);
  position: fixed;
  left: 50%;
  top: 50%;
  visibility: hidden;
}

@keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
/* -------------------------------
	見出しタグ調整
-------------------------------- */
h1 {
  font-size: 1.9rem;
  /* ≒ 38px相当 */
}

h2 {
  font-size: 1.69rem;
  /* ≒ 34px相当 */
}

h3 {
  font-size: 1.5rem;
  /* ≒ 30px相当 */
}

h4 {
  font-size: 1.33rem;
  /* ≒ 27px相当 */
}

h5 {
  font-size: 1.19rem;
  /* ≒ 24px相当 */
}

h6 {
  font-size: 1.05rem;
  /* ≒ 21px相当 */
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.21rem;
    /* ≒ 44px相当 */
  }

  h2 {
    font-size: 1.97rem;
    /* ≒ 39px相当 */
  }

  h3 {
    font-size: 1.75rem;
    /* ≒ 35px相当 */
  }

  h4 {
    font-size: 1.56rem;
    /* ≒ 31px相当 */
  }

  h5 {
    font-size: 1.38rem;
    /* ≒ 28px相当 */
  }

  h6 {
    font-size: 1.23rem;
    /* ≒ 25px相当 */
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 2.37rem;
    /* ≒ 47px相当 */
  }

  h2 {
    font-size: 2.11rem;
    /* ≒ 42px相当 */
  }

  h3 {
    font-size: 1.88rem;
    /* ≒ 38px相当 */
  }

  h4 {
    font-size: 1.67rem;
    /* ≒ 33px相当 */
  }

  h5 {
    font-size: 1.48rem;
    /* ≒ 30px相当 */
  }

  h6 {
    font-size: 1.32rem;
    /* ≒ 26px相当 */
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 2.53rem;
    /* ≒ 51px相当 */
  }

  h2 {
    font-size: 2.25rem;
    /* ≒ 45px相当 */
  }

  h3 {
    font-size: 2rem;
    /* ≒ 40px相当 */
  }

  h4 {
    font-size: 1.78rem;
    /* ≒ 36px相当 */
  }

  h5 {
    font-size: 1.58rem;
    /* ≒ 32px相当 */
  }

  h6 {
    font-size: 1.4rem;
    /* ≒ 28px相当 */
  }
}
@media screen and (min-width: 1500px) {
  h1 {
    font-size: 3.04rem;
    /* ≒ 61px相当 */
  }

  h2 {
    font-size: 2.7rem;
    /* ≒ 54px相当 */
  }

  h3 {
    font-size: 2.4rem;
    /* ≒ 48px相当 */
  }

  h4 {
    font-size: 2.13rem;
    /* ≒ 43px相当 */
  }

  h5 {
    font-size: 1.9rem;
    /* ≒ 38px相当 */
  }

  h6 {
    font-size: 1.69rem;
    /* ≒ 34px相当 */
  }
}
h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

p, ol, ul, dl, table {
  margin-bottom: 1rem;
}
p + h3, p + h4, p + h5, p + h6, ol + h3, ol + h4, ol + h5, ol + h6, ul + h3, ul + h4, ul + h5, ul + h6, dl + h3, dl + h4, dl + h5, dl + h6, table + h3, table + h4, table + h5, table + h6 {
  margin-top: 2rem;
}
p:last-child, ol:last-child, ul:last-child, dl:last-child, table:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  padding-left: 1.5em;
}

ol {
  padding-left: 2em;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.in_rotatez, p, li, dt, dd {
  transform: rotateZ(0.03deg);
}

/* -------------------------------
	header
-------------------------------- */
/* --- topページ */
#header-home {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* */
.header_home_visual {
  width: 100%;
  height: 0;
  padding-top: 70vw;
  order: 1;
  position: relative;
}
@media print, screen and (min-width: 992px) {
  .header_home_visual {
    padding-top: 50%;
  }
}
@media print {
  .header_home_visual {
    padding-top: 0;
    height: 1000px;
  }
}
.header_home_visual .visual_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.header_home_visual .visual_img img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header_home_visual .sora_wave {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: min(3.50001vw, 70px);
  background: url("../images/home/sora_wave.png") repeat-x center top/auto 100%;
}
.header_home_visual .kumo {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 15;
  pointer-events: none;
}
.header_home_visual .kumo1 {
  left: 0;
  top: min(1.45001vw, 29px);
  width: min(11vw, 220px);
  aspect-ratio: 44 / 37;
  background-image: url("../images/home/header_home_1.png");
}
.header_home_visual .kumo2 {
  right: 0;
  top: min(0.55vw, 11px);
  width: min(5vw, 100px);
  aspect-ratio: 1 / 1;
  background-image: url("../images/home/header_home_2.png");
}
.header_home_visual h2 {
  position: absolute;
  left: min(15vw, 300px);
  top: min(4.65vw, 93px);
  z-index: 20;
  font-size: 4vw;
  letter-spacing: 0.15em;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 1em;
}
.header_home_visual h2 > span {
  color: #fff;
  padding: 0.34em 0;
  width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  white-space: nowrap;
  border-radius: 0.34em;
  background-color: rgba(1, 113, 0, 0.8);
}
@media print, screen and (min-width: 992px) {
  .header_home_visual h2 {
    left: min(18vw, 360px);
    font-size: min(2.90001vw, 58px);
  }
}

/**/
.header_home_sns {
  position: absolute;
  right: 70px;
  top: min(4.65vw, 93px);
  z-index: 20;
  font-size: clamp(25px, 3vw, 60px);
  line-height: 1;
  padding: 0.33334em 0.66666em;
  border-radius: 0.33334em;
  background-color: rgba(255, 255, 255, 0.95);
}
.header_home_sns > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.41666em;
}
.header_home_sns > ul > li > a {
  display: flex;
  align-items: center;
}
.header_home_sns > ul > li > a img {
  width: 1em;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}
.header_home_sns > ul > li > a:hover img {
  opacity: 0.65;
}
@media print, screen and (min-width: 992px) {
  .header_home_sns {
    right: min(1.5vw, 30px);
  }
}

/**/
.header_home_link {
  position: absolute;
  right: min(1.5vw, 30px);
  bottom: min(8.9vw, 175px);
  display: none;
}
@media print, screen and (min-width: 768px) {
  .header_home_link {
    display: block;
  }
}
.header_home_link > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: clamp(5px, 0.5vw, 10px);
}
.header_home_link > ul > li {
  flex: 0 0 clamp(50px, 11vw, 220px);
}
.header_home_link > ul > li > a {
  display: flex;
  align-items: center;
  border-radius: clamp(10px, 1.25vw, 25px);
  background-color: #fff;
}
.header_home_link > ul > li > a img {
  vertical-align: middle;
  transition: opacity 0.3s ease;
  border-radius: clamp(10px, 1.25vw, 25px);
}
.header_home_link > ul > li > a:hover img {
  opacity: 0.65;
}

/**/
.header_home_content {
  width: 100%;
  margin-top: calc(-0px - 11vw);
  padding-bottom: 15px;
  background: url("../images/home/mv_bg.svg") no-repeat center top/cover;
  order: 2;
  position: relative;
  z-index: 10;
}
.header_home_content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 36%;
  background-color: #ffead0;
  z-index: -1;
}
.header_home_content:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(5px, 1vw, 20px);
  background: url("../images/common/line-white-1.png") repeat-x center top/100% auto;
  pointer-events: none;
}
.header_home_content h1 {
  text-align: center;
  position: relative;
}
.header_home_content h1 img {
  margin-top: -14vw;
  width: min(34.5vw, 345px);
}
@media print, screen and (min-width: 992px) {
  .header_home_content {
    margin-top: calc(-0px - 9.3vw);
    padding-bottom: clamp(30px, 3.75vw, 75px);
    height: 26.8vw;
  }
  .header_home_content h1 {
    text-align: center;
    position: relative;
  }
  .header_home_content h1 img {
    margin-top: calc(-0px - 7.4vw);
    width: min(17.25vw, 345px);
  }
}
.header_home_content .icon {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.header_home_content .icon1 {
  left: min(1vw, 20px);
  top: calc(-0px - min(1vw, 20px));
  width: min(14.6vw, 292px);
  aspect-ratio: 73 / 60;
  background-image: url("../images/common/header_home_3.png");
}
.header_home_content .icon2 {
  right: min(1vw, 20px);
  top: min(2vw, 40px);
  width: min(16.55vw, 331px);
  aspect-ratio: 331 / 200;
  background-image: url("../images/common/header_home_4.png");
}

.list-head-navi {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .list-head-navi {
    font-size: min(1.5vw, 30px);
    list-style: none;
    padding: 0;
    margin-top: 0.83333em;
    display: flex;
    justify-content: center;
  }
}
.list-head-navi > li {
  flex: 0 0 9em;
  display: flex;
}
.list-head-navi > li:after {
  content: "";
  width: 2px;
  height: 4em;
  display: block;
  background: url("../images/common/nav_line.png");
}
.list-head-navi > li:last-child:after {
  display: none;
}
.list-head-navi > li > a {
  font-weight: 800;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  flex: 1 1 0;
  display: block;
  position: relative;
  position: relative;
}
.list-head-navi > li > a:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 2em;
  height: 5px;
  border-radius: 1em;
  margin-left: -1em;
  transform: scaleX(0);
  background-color: #FFB600;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.list-head-navi > li > a small {
  color: var(--primary);
  font-size: 0.73334em;
  display: block;
}
.list-head-navi > li > a > span {
  width: 100%;
  height: 4em;
  display: block;
  margin-bottom: 0.83333em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}
.list-head-navi > li > a .icon01 {
  background-image: url("../images/common/gav01.png");
}
.list-head-navi > li > a .icon02 {
  background-image: url("../images/common/gav02.png");
}
.list-head-navi > li > a .icon03 {
  background-image: url("../images/common/gav03.png");
}
.list-head-navi > li > a .icon04 {
  background-image: url("../images/common/gav04.png");
}
.list-head-navi > li > a .icon05 {
  background-image: url("../images/common/gav05.png");
}
.list-head-navi > li > a .icon06 {
  background-image: url("../images/common/gav06.png");
}
.list-head-navi > li > a:hover, .list-head-navi > li.active > a {
  color: #000;
}
.list-head-navi > li > a:hover:after, .list-head-navi > li.active > a:after {
  transform: scaleX(1);
  visibility: visible;
}

/* -------------------------------
	header
-------------------------------- */
#header {
  padding-top: min(5.5vw, 110px);
  position: relative;
  z-index: 100;
}
#header > .bg_header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: min(7.8vw, 156px);
  background-color: #95d6a6;
}
#header > .bg_header:after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: min(2.15vw, 43px);
  background: url("../images/common/header_nami.png") repeat-x center top/contain;
}
@media print, screen and (min-width: 992px) {
  #header {
    padding-bottom: 35px;
  }
  #header .container-fluid {
    padding-left: min(calc(15px + 85 * (100vw - 992px) / 1008), 100px);
    padding-right: min(calc(15px + 85 * (100vw - 992px) / 1008), 100px);
  }
}
#header > .kumo1 {
  left: 0;
  bottom: calc(0px - min(4.6vw, 92px));
  width: min(7.9vw, 158px);
  aspect-ratio: 79 / 76;
  background-image: url("../images/common/kumo1.png");
}
#header > .kumo2 {
  right: 0;
  bottom: calc(0px - min(4.8vw, 96px));
  width: min(7.9vw, 158px);
  aspect-ratio: 158 / 149;
  background-image: url("../images/common/kumo2.png");
}

.head_row {
  display: flex;
  align-items: flex-end;
}
.head_row .logo {
  flex: 0 0 120px;
  order: 2;
}
.head_row .nav_left {
  order: 1;
  flex: 1 1 0;
}
.head_row .nav_right {
  order: 3;
  flex: 1 1 0;
}
@media print, screen and (min-width: 992px) {
  .head_row .logo {
    flex: 0 0 clamp(150px, 15.3vw, 306px);
    order: 2;
  }
}

/**/
.header_link {
  position: absolute;
  right: min(calc(15px + 85 * (100vw - 992px) / 1008), 100px);
  top: 0;
  display: none;
}
@media print, screen and (min-width: 992px) {
  .header_link {
    display: block;
  }
}
.header_link > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: clamp(5px, 0.5vw, 10px);
}
.header_link > ul > li {
  flex: 0 0 clamp(50px, 11vw, 220px);
}
.header_link > ul > li > a {
  display: flex;
  align-items: center;
  border-radius: 0 0 clamp(10px, 1.25vw, 25px) clamp(10px, 1.25vw, 25px);
  background-color: #fff;
}
.header_link > ul > li > a img {
  vertical-align: middle;
  transition: opacity 0.3s ease;
  border-radius: 0 0 clamp(10px, 1.25vw, 25px) clamp(10px, 1.25vw, 25px);
}
.header_link > ul > li > a:hover img {
  opacity: 0.65;
}

/* -------------------------------
	メインメニュー
-------------------------------- */
.list-gnav {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .list-gnav {
    font-size: min(1.5vw, 30px);
    list-style: none;
    padding: 0;
    margin-top: 0.83333em;
    display: flex;
    justify-content: center;
  }
}
.list-gnav > li {
  flex: 1 1 0;
  display: flex;
}
.list-gnav > li:after {
  content: "";
  width: 2px;
  height: 4em;
  display: block;
  background: url("../images/common/nav_line.png");
}
.list-gnav > li > a {
  font-weight: 800;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  flex: 1 1 0;
  display: block;
  position: relative;
  position: relative;
}
.list-gnav > li > a:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 2em;
  height: 5px;
  border-radius: 1em;
  margin-left: -1em;
  transform: scaleX(0);
  background-color: #FFB600;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.list-gnav > li > a small {
  color: var(--primary);
  font-size: 0.73334em;
  display: block;
}
.list-gnav > li > a > span {
  width: 100%;
  height: 4em;
  display: block;
  margin-bottom: 0.83333em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}
.list-gnav > li > a .icon01 {
  background-image: url("../images/common/gav01.png");
}
.list-gnav > li > a .icon02 {
  background-image: url("../images/common/gav02.png");
}
.list-gnav > li > a .icon03 {
  background-image: url("../images/common/gav03.png");
}
.list-gnav > li > a .icon04 {
  background-image: url("../images/common/gav04.png");
}
.list-gnav > li > a .icon05 {
  background-image: url("../images/common/gav05.png");
}
.list-gnav > li > a .icon06 {
  background-image: url("../images/common/gav06.png");
}
.list-gnav > li > a:hover, .list-gnav > li.active > a {
  color: #000;
}
.list-gnav > li > a:hover:after, .list-gnav > li.active > a:after {
  transform: scaleX(1);
  visibility: visible;
}

.nav_right .list-gnav > li:first-child:before {
  content: "";
  width: 2px;
  height: 4em;
  display: block;
  background: url("../images/common/nav_line.png");
}
.nav_right .list-gnav > li:last-child:after {
  display: none;
}

/* -------------------------------
	main
-------------------------------- */
/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: min(calc(200px + 320 * (100vw - 320px) / 1180), 520px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.main_ttl:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: min(4.05vw, 81px);
  background: url("../images/common/main_top_bar.png") repeat-x center top/100% 100%;
}
.main_ttl > .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.main_ttl > .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_ttl h2 {
  color: #399a54;
  font-size: min(calc(25px + 35 * (100vw - 320px) / 1180), 60px);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.main_ttl h2 > span {
  display: inline-grid;
  min-width: 7.7066em;
  height: 2.70666em;
  place-items: center;
  padding: 0 1em;
  background: url("../images/common/mian_txt_bg.svg") no-repeat center center/100% 100%;
}
.main_ttl .main_btm {
  position: absolute;
  left: 0;
  bottom: calc(-0px - min(1.75vw, 35px));
  width: 100%;
  height: min(3.5vw, 70px);
  background: url("../images/common/main_btm.png") no-repeat center top/100% 100%;
  pointer-events: none;
}
.main_ttl .main_btm .icon1 {
  left: 0.8vw;
  bottom: min(1.75vw, 35px);
  width: clamp(100px, 21.95vw, 439px);
  aspect-ratio: 439 / 154;
  background-image: url("../images/common/main_icon_1.png");
}
.main_ttl .main_btm .icon2 {
  right: 2.4vw;
  bottom: min(1.75vw, 35px);
  width: clamp(120px, 32.55vw, 651px);
  aspect-ratio: 651 / 142;
  background-image: url("../images/common/main_icon_2.png");
}
.main_ttl.main_ttl_recruit {
  height: min(calc(200px + 320 * (100vw - 320px) / 1180), 520px);
}
@media print, screen and (min-width: 768px) {
  .main_ttl.main_ttl_recruit {
    height: auto;
    aspect-ratio: 125 / 48;
  }
}

.page_head {
  background-image: url("../images/common/page_head.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 100;
}
#pagetop img {
  width: min(9vw, 180px);
}
#pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 40px;
  }
}

/* -------------------------------
	スクロールバー
-------------------------------- */
div, .scrollbar {
  scrollbar-color: #111 #eeeeee;
  scrollbar-width: thin;
}
div::-webkit-scrollbar, .scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
div::-webkit-scrollbar-track, .scrollbar::-webkit-scrollbar-track {
  background: #eeeeee;
}
div::-webkit-scrollbar-thumb, .scrollbar::-webkit-scrollbar-thumb {
  background: #111;
}

/* -------------------------------
	サイドメニュー
-------------------------------- */
#sidebar {
  --ease: cubic-bezier(.01,.7,.58,1.2);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  background-color: #ffead0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 30%, 0) scaleX(1.1);
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease), transform 0.5s var(--ease);
  overflow-y: auto;
  z-index: 9900;
}
#sidebar .sidebar_inner {
  margin: auto;
}
.side-open #sidebar {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scaleX(1);
}
@media print, screen and (min-width: 992px) {
  #sidebar {
    display: none !important;
  }
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}

.sidebar_inner {
  padding: 10vw 5vw;
}
.sidebar_inner .logo {
  width: 140px;
  margin: 0 auto 30px;
}

.list-sidenavi {
  font-size: min(calc(10px + 8 * (100vw - 320px) / 448), 18px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
.list-sidenavi > li {
  flex: 0 0 33.33334%;
  display: flex;
  padding: 0 15px;
  position: relative;
}
.list-sidenavi > li:after {
  content: "";
  width: 2px;
  height: 4em;
  display: block;
  background: url("../images/common/nav_line.png");
  position: absolute;
  right: 0;
  top: 0;
}
.list-sidenavi > li:nth-child(3n):after {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .list-sidenavi > li {
    font-size: 20px;
    flex: 0 0 33.33334%;
  }
  .list-sidenavi > li:nth-child(even):after {
    display: block;
  }
  .list-sidenavi > li:nth-child(3n)::after {
    display: none;
  }
}
.list-sidenavi > li > a {
  text-align: center;
  text-decoration: none;
  flex: 1 1 0;
  display: block;
  white-space: nowrap;
  position: relative;
}
.list-sidenavi > li > a:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 2em;
  height: 5px;
  border-radius: 1em;
  margin-left: -1em;
  transform: scaleX(0);
  background-color: #FFB600;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.list-sidenavi > li > a small {
  color: var(--primary);
  font-size: 0.73334em;
  display: block;
}
.list-sidenavi > li > a > span {
  width: 100%;
  height: 4em;
  display: block;
  margin-bottom: 0.83333em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}
.list-sidenavi > li > a .icon01 {
  background-image: url("../images/common/gav01.png");
}
.list-sidenavi > li > a .icon02 {
  background-image: url("../images/common/gav02.png");
}
.list-sidenavi > li > a .icon03 {
  background-image: url("../images/common/gav03.png");
}
.list-sidenavi > li > a .icon04 {
  background-image: url("../images/common/gav04.png");
}
.list-sidenavi > li > a .icon05 {
  background-image: url("../images/common/gav05.png");
}
.list-sidenavi > li > a .icon06 {
  background-image: url("../images/common/gav06.png");
}
.list-sidenavi > li > a .icon07 {
  background-image: url("../images/common/gav07.png");
}
.list-sidenavi > li > a .icon08 {
  background-image: url("../images/common/gav08.png");
}
.list-sidenavi > li > a .icon09 {
  background-image: url("../images/common/gav09.png");
}
.list-sidenavi > li > a:hover, .list-sidenavi > li.active > a {
  color: #000;
}
.list-sidenavi > li > a:hover:after, .list-sidenavi > li.active > a:after {
  transform: scaleX(1);
  visibility: visible;
}

/* -------------------------------
	半透明
-------------------------------- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: white;
}
@media screen and (min-width: 992px) {
  .overlay {
    display: none;
  }
}

/* -------------------------------
	三本線
-------------------------------- */
.menuWrapper {
  position: fixed;
  right: 5px;
  top: 5px;
  width: 50px;
  height: 50px;
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}
@media print, screen and (min-width: 992px) {
  .menuWrapper {
    display: none;
  }
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 5px;
  background-color: #1db100;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -9px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 9px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  page-break-inside: avoid;
  position: relative;
  z-index: 50;
}

/**/
.foot_head {
  position: absolute;
  left: 0;
  top: calc(-0px - min(1.75vw, 35px));
  width: 100%;
  height: min(3.5vw, 70px);
  background: url("../images/common/foot_top.png") no-repeat center top/100% 100%;
  pointer-events: none;
}
.foot_head .icon1 {
  left: min(1.2vw, 24px);
  bottom: min(1.5vw, 30px);
  width: clamp(100px, 21.95vw, 439px);
  aspect-ratio: 439 / 154;
  background-image: url("../images/common/foot_icon_1.png");
}
.foot_head .icon2 {
  right: min(2vw, 40px);
  bottom: min(0.65vw, 13px);
  width: clamp(120px, 32.55vw, 651px);
  aspect-ratio: 651 / 142;
  background-image: url("../images/common/foot_icon_2.png");
}

/**/
.foot_content {
  padding: 50px 0;
  background-color: #ececec;
  background-image: url("../images/common/foot_content_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media print, screen and (min-width: 992px) {
  .foot_content {
    padding: 85px 0;
  }
}
.foot_content .foot_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.foot_content .foot_logo .logo {
  flex: 0 0 130px;
}
.foot_content .foot_logo .columns {
  flex: 0 0 auto;
}
.foot_content .foot_logo .columns h2 {
  font-size: 25px;
  margin: 0;
}
.foot_content .foot_logo .columns h2 small {
  font-size: 0.57142em;
  display: block;
}
.foot_content .foot_logo .columns p {
  font-size: 16px;
}
@media print, screen and (min-width: 992px) {
  .foot_content .foot_logo {
    justify-content: flex-start;
  }
  .foot_content .foot_logo .logo {
    flex: 0 0 min(calc(150px + 109 * (100vw - 992px) / 508), 259px);
  }
  .foot_content .foot_logo .columns {
    flex: 1 1 0;
  }
  .foot_content .foot_logo .columns h2 {
    font-size: min(calc(25px + 17 * (100vw - 992px) / 508), 42px);
    margin: 0;
  }
  .foot_content .foot_logo .columns h2 small {
    font-size: 0.57142em;
    display: block;
  }
  .foot_content .foot_logo .columns p {
    font-size: min(calc(16px + 8 * (100vw - 992px) / 508), 24px);
  }
}
.foot_content .foot_content_right {
  text-align: center;
  margin-top: 50px;
}
@media print, screen and (min-width: 992px) {
  .foot_content .foot_content_right {
    text-align: left;
    margin-top: 0;
    display: flex;
    align-items: center;
  }
  .foot_content .foot_content_right .tel_column {
    margin-right: auto;
  }
}
.foot_content .foot_content_right .tel_column {
  margin-bottom: 30px;
}
.foot_content .foot_content_right .tel_column .telphone {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
}
.foot_content .foot_content_right .tel_column .telphone i {
  color: #fff;
  font-size: 0.6em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-right: 0.2em;
  background-color: #66e500;
}
.foot_content .foot_content_right .tel_column .btn {
  color: #000;
  font-size: 18px;
  padding: 0.55em 2em;
  border-radius: 10em;
  box-shadow: 0 0 0 0.16666em #1db100;
  background-color: #fff;
}
.foot_content .foot_content_right .tel_column .btn:hover {
  color: #fff;
  background-color: #1db100;
}
@media print, screen and (min-width: 992px) {
  .foot_content .foot_content_right .tel_column {
    margin-bottom: 0;
    margin-left: -30px;
  }
  .foot_content .foot_content_right .tel_column .telphone {
    font-size: min(calc(30px + 20 * (100vw - 992px) / 508), 50px);
  }
  .foot_content .foot_content_right .tel_column .btn {
    font-size: min(calc(18px + 12 * (100vw - 992px) / 508), 30px);
  }
}
.foot_content .foot_content_right .sns_column > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 60px);
  justify-content: center;
  gap: 10px;
}
.foot_content .foot_content_right .sns_column > ul > li > a {
  transition: opacity 0.3s ease;
}
.foot_content .foot_content_right .sns_column > ul > li > a:hover {
  opacity: 0.65;
}
@media print, screen and (min-width: 992px) {
  .foot_content .foot_content_right .sns_column {
    font-size: min(calc(12px + 8 * (100vw - 992px) / 508), 20px);
    line-height: 1;
  }
  .foot_content .foot_content_right .sns_column > ul {
    grid-template-columns: repeat(2, 4em);
    gap: 1.25em;
  }
}

/**/
.foot_copyright {
  padding: clamp(30px, 3vw, 60px) 0;
  background-color: #cd924f;
  position: relative;
  z-index: 0;
}
.foot_copyright:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: clamp(20px, 3.5vw, 70px);
  margin-top: calc(-0px - clamp(10px, 1.75vw, 35px));
  background: url("../images/common/nami_brown.png") repeat-x center center/auto 100%;
}
.foot_copyright:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../images/common/footer_below_img.png") no-repeat center top/contain;
}
.foot_copyright p {
  color: #fff;
  font-weight: 500;
  font-size: 0.7em;
  text-align: center;
  padding: 0 15px;
  margin: 0;
  transform: rotateZ(0.03deg);
}

/* 印刷用 */
@page {
  margin: 10mm 4mm 10mm 4mm;
}
@media print {
  body {
    min-width: 1500px !important;
  }

  .container {
    min-width: 1200px !important;
  }

  .container-fluid-xl {
    min-width: 1500px !important;
  }

  .row {
    overflow: visible !important;
  }

  [class^="col"], [class*=" col"], [class^="col-"], [class*=" col-"] {
    page-break-inside: avoid;
  }

  #pagetop {
    opacity: 0;
    visibility: hidden;
  }

  .page-break {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
}
/* firefox　ハック */
@-moz-document url-prefix() {
  @page {
    margin: auto;
  }
}

/*# sourceMappingURL=screen.css.map */
