@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:wght@100..900&text=0123456789");
.delay01 {
  transition-delay: 0.1s !important;
}

.delay02 {
  transition-delay: 0.2s !important;
}

.delay03 {
  transition-delay: 0.3s !important;
}

.delay04 {
  transition-delay: 0.4s !important;
}

.delay05 {
  transition-delay: 0.5s !important;
}

.delay06 {
  transition-delay: 0.6s !important;
}

.delay07 {
  transition-delay: 0.7s !important;
}

.delay08 {
  transition-delay: 0.8s !important;
}

.delay09 {
  transition-delay: 0.9s !important;
}

.delay10 {
  transition-delay: 1s !important;
}

.delay11 {
  transition-delay: 1.1s !important;
}

.delay12 {
  transition-delay: 1.2s !important;
}

.delay13 {
  transition-delay: 1.3s !important;
}

.delay14 {
  transition-delay: 1.4s !important;
}

.delay15 {
  transition-delay: 1.5s !important;
}

.delay16 {
  transition-delay: 1.6s !important;
}

.delay17 {
  transition-delay: 1.7s !important;
}

.delay18 {
  transition-delay: 1.8s !important;
}

.delay19 {
  transition-delay: 1.9s !important;
}

.delay20 {
  transition-delay: 2s !important;
}

.delay21 {
  transition-delay: 2.1s !important;
}

.delay22 {
  transition-delay: 2.2s !important;
}

.delay23 {
  transition-delay: 2.3s !important;
}

.delay24 {
  transition-delay: 2.4s !important;
}

/* スクロール時のアニメーション */
.laser {
  position: relative;
  overflow: hidden;
}
.laser::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 3s ease;
  transition: all 3s ease;
}
.laser .hide {
  opacity: 0;
  transition: all 3s ease;
  transition-delay: 1s !important;
}
.laser.inview-on::after {
  left: 100%;
}
.laser.inview-on .hide {
  opacity: 1;
}

/* fade in */
.fade-in {
  opacity: 0;
  transition: all 0.5s ease;
}
.fade-in.inview-on {
  opacity: 1;
}

.inview-on .fade-in {
  opacity: 1;
}

/* fade in zoom */
.fade-in-zoom {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-zoom.inview-on {
  transform: scale(1);
  opacity: 1;
}

.inview-on .fade-in-zoom {
  transform: scale(1);
  opacity: 1;
}

/* fade in up */
.fade-in-up {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-up {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in down */
.fade-in-down {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-down {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in left */
.fade-in-left {
  transform: translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-left.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-left {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in right */
.fade-in-right {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-right.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-right {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in up left */
.fade-in-up-left {
  transform: translateY(20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in up right */
.fade-in-up-right {
  transform: translateY(20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down left */
.fade-in-down-left {
  transform: translateY(-20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down right */
.fade-in-down-right {
  transform: translateY(-20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
th,
td,
form,
figure {
  font-size: inherit;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

summary {
  display: block;
}

table {
  border-collapse: collapse;
  empty-cells: show;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
  height: auto;
}

input,
textarea,
select {
  color: inherit;
  font-family: inherit;
  appearance: none;
}

button {
  color: inherit;
  font-family: inherit;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
}

select::-ms-expand {
  display: none;
}

[disabled] {
  cursor: not-allowed;
}

input[type=button]:not([disabled]), input[type=submit]:not([disabled]), input[type=reset]:not([disabled]),
button[type=button]:not([disabled]),
button[type=submit]:not([disabled]),
button[type=reset]:not([disabled]) {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
img,
video {
  max-width: 100%;
  height: auto;
}

:root {
  font-size: 50px;
}
@media screen and (max-width: 1440px) and (min-width: 751px) {
  :root {
    font-size: 3.4722222222vw;
  }
}
@media screen and (max-width: 767px) {
  :root {
    font-size: 13.3333333333vw;
  }
}

body {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  color: #000;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.32rem;
  letter-spacing: 0;
  line-height: 1.8;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.3rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
body * {
  box-sizing: border-box;
}
body a {
  transition: all 0.3s ease;
}
body a:hover {
  opacity: 0.7;
}

.wrap {
  width: 19.4rem;
}
@media screen and (min-width: 768px) {
  .wrap {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .wrap {
    width: auto;
    margin-right: 0.3rem;
    margin-left: 0.3rem;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: revert;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
#wrapper {
  overflow: hidden;
}

/* ==================================================
	header
================================================== */
#header {
  position: fixed;
  top: 0;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  #header.fixed .header-bottom {
    position: fixed;
    width: 100%;
    top: 0;
  }
}

.header {
  width: 100%;
  z-index: 100;
  position: relative;
  padding: 0;
}
.header-inner {
  background: #ffffff;
  padding-left: 0.6rem;
}
@media screen and (min-width: 768px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0.25rem 0.4rem;
  }
}
.header-inner .logo {
  width: 5rem;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .header-inner .logo {
    width: 5rem;
  }
}
.header-inner .contact a {
  position: relative;
  color: #fff;
  background: #F15A23;
  background-image: url(../images/icon_mail.png);
  background-repeat: no-repeat;
  background-position: 0.7rem 50%;
  background-size: 0.5rem;
  width: 4.4rem;
  height: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-inner .contact a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  transform-origin: left top;
  transform: skewX(-20deg);
  background: #F15A23;
  pointer-events: none;
  transition: all 0.3s ease;
}
.header-inner .contact a span {
  position: relative;
  z-index: 1;
  font-size: 0.36rem;
  font-weight: 500;
  padding-left: 0.6rem;
}
.header-inner .contact a:hover {
  opacity: 1;
  background-color: rgb(211.5384615385, 66.3461538462, 13.4615384615);
}
.header-inner .contact a:hover:before {
  background-color: rgb(211.5384615385, 66.3461538462, 13.4615384615);
}

/* ==================================================
      gnav
================================================== */
@media screen and (min-width: 768px) {
  .gnav {
    margin-right: 1.6rem;
  }
  .gnav-menu {
    display: flex;
    gap: 1.2rem;
  }
}
.gnav-item {
  position: relative;
  font-size: 0.34rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .gnav-item {
    font-size: 0.32rem;
  }
}
.gnav-item a {
  position: relative;
}
.gnav-item a:after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  border: 0;
  border-bottom: solid 1px #B8B8B8;
  border-right: solid 1px #B8B8B8;
  transform: rotate(45deg);
  margin: -0.1rem auto 0;
  display: block;
}

@media screen and (max-width: 767px) {
  .gnav {
    position: fixed;
    z-index: 3;
    top: 1.5rem;
    right: -100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #0071D8;
    transition: all 0.5s ease;
  }
  .gnav-on {
    top: 1.5rem;
    right: 0;
    overflow-y: scroll;
  }
  .gnav-inner {
    transition: all 0.6s;
    margin: 0 0.4rem;
  }
  .gnav-item {
    font-size: 0.36rem;
  }
  .gnav-item:nth-child(n+2) {
    border-top: 1px solid #fff;
  }
  .gnav-item a {
    display: block;
    padding: 0.3rem 0;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .gnav-item a:after {
    width: 0.15rem;
    height: 0.15rem;
    border-bottom: none;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin: 0;
    margin-right: 0.1rem;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 999;
    right: 0.15rem;
    top: 0.32rem;
    right: 0.4rem;
    width: 0.88rem;
    height: 0.88rem;
    cursor: pointer;
    text-align: center;
    background: white;
    border-radius: 5px;
    border: 1px solid #0071D8;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 0.5rem;
    height: 4px;
    border-radius: 10px;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: #0071D8;
    transition: 0.2s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 0.2rem;
  }
  .hamburger span:nth-child(2) {
    top: 0.38rem;
  }
  .hamburger span:nth-child(3) {
    top: 0.56rem;
  }
  .hamburger-on span:nth-child(1) {
    top: 0.35rem;
    transform: rotate(-45deg);
  }
  .hamburger-on span:nth-child(2),
  .hamburger-on span:nth-child(3) {
    top: 0.35rem;
    transform: rotate(45deg);
  }
  .hambg {
    position: absolute;
    top: 0;
    right: 0;
    width: 2rem;
    z-index: 888;
  }
}
@media screen and (max-width: 767px) {
  .fixed_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    z-index: 10;
  }
  .fixed_bottom a {
    display: block;
    color: #fff;
    font-size: 0.3rem;
    font-weight: 600;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    line-height: 1.4;
  }
  .fixed_bottom a.tel {
    padding-left: 1.5rem;
    background-color: #0071D8;
    background-image: url(../images/icon_phone.png);
    background-repeat: no-repeat;
    background-position: 0.7rem 50%;
    background-size: 0.5rem;
  }
  .fixed_bottom a.mail {
    padding-left: 1.1rem;
    background-color: #F15A23;
    background-image: url(../images/icon_mail.png);
    background-repeat: no-repeat;
    background-position: 0.35rem 50%;
    background-size: 0.5rem;
  }
  .fixed_bottom a:hover {
    opacity: 1;
  }
}
/* ==================================================
footer
================================================== */
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 10px;
    right: 5px;
    width: 90px;
  }
}
#pagetop img {
  transition-duration: 0.5s;
}
#pagetop a {
  display: block;
}
#pagetop a:hover {
  opacity: 1;
}
#pagetop a:hover img {
  transform: rotateY(360deg);
  transition-duration: 0.5s;
}

/* ==================================================
	ページフッター
================================================== */
.footer {
  padding: 0.2rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0.5rem 0 1.5rem;
  }
}
.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .footer .wrap {
    display: grid;
    grid-template-columns: 1.4rem auto;
    grid-template-rows: repeat(2, 1fr);
    gap: 0 0.2rem;
    text-align: center;
  }
}
.footer .wrap .badge {
  width: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer .wrap .badge {
    width: auto;
    grid-area: 1/1/3/2;
  }
}
.footer .wrap .logo {
  width: 5.6rem;
}
@media screen and (max-width: 767px) {
  .footer .wrap .logo {
    width: 5rem;
    grid-area: 1/2/2/3;
  }
  .footer .wrap .logo img {
    margin-left: -0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .wrap .text {
    grid-area: 2/2/3/3;
    text-align: left;
    font-size: 0.23rem;
  }
}

/* ==================================================
	共通
================================================== */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent_wrap p {
  padding-left: 1em;
  text-indent: -1em;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

.desc p + p {
  margin-top: 0.4rem;
}

.scroll {
  margin-top: -1rem;
  padding-top: 1rem;
  display: block;
}/*# sourceMappingURL=common.css.map */