*,
*::before,
*::after {
  box-sizing: border-box;
}

/* BASE STYLE
--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  line-height: 1.7;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

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

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

iframe {
  vertical-align: middle;
}

/* CLEAR-FIX */
.clearfix {
  zoom: 1;
}

a {
  text-decoration: none;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.inner {
  max-width: 1000px;
  width: 95%;
  margin: auto;
}

.wrap {
  overflow: hidden;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.is-between {
  justify-content: space-between;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

.font01 {
  font-family: "Outfit", sans-serif;
}

.js-fadein {
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateY(30px);
}

.error_text {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .inner {
    max-width: 560px;
    width: 92%;
    margin: auto;
  }
}
/*------------------------------------------------

l-header

-------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  height: 80px;
  z-index: 1000;
}
.l-header.active {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.l-header .l-header-inner {
  align-items: center;
  height: 100%;
}
.l-header .l-header-logo {
  width: 190px;
  margin-left: 24px;
}
.l-header .l-header-logo__ttl .-link {
  display: block;
}
.l-header .l-header-area__list {
  gap: 30px;
  margin-right: 330px;
}
.l-header .l-header-area__list-item .-link {
  display: block;
  letter-spacing: 0.08em;
  color: #222;
  font-size: 14px;
}
.l-header .l-header-area__contact {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
  display: flex;
}
.l-header .l-header-area__contact-btn .-link {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  letter-spacing: 0.08em;
}
.l-header .l-header-area__contact-btn.l-header-area__contact-btn--01 {
  width: 150px;
  font-size: 14px;
}
.l-header .l-header-area__contact-btn.l-header-area__contact-btn--01 .-link {
  background-color: #FA7818;
}
.l-header .l-header-area__contact-btn.l-header-area__contact-btn--01 span {
  position: relative;
  padding-left: 20px;
}
.l-header .l-header-area__contact-btn.l-header-area__contact-btn--01 span::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/mail-icon.png) no-repeat;
  background-size: contain;
  width: 15px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.l-header .l-header-area__contact-btn.l-header-area__contact-btn--02 {
  width: 150px;
  font-size: 16px;
}
.l-header .l-header-area__contact-btn.l-header-area__contact-btn--02 .-link {
  background-color: #222;
}
.l-header .l-header-area__contact-btn.l-header-area__contact-btn--02 span {
  position: relative;
  padding-left: 15px;
}
.l-header .l-header-area__contact-btn.l-header-area__contact-btn--02 span::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/tel-icon.png) no-repeat;
  background-size: contain;
  width: 10px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.l-header .l-header-area__contact-btn-sp {
  display: none;
}
.l-header .l-header-humbtn {
  display: none;
}
@media screen and (max-width: 1180px) {
  .l-header .l-header-logo {
    width: 180px;
  }
  .l-header .l-header-area__list {
    gap: 20px;
  }
  .l-header .l-header-area__list-item .-link {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 60px;
  }
  .l-header .l-header-logo {
    width: 140px;
  }
  .l-header .l-header-area {
    border-bottom: 10px solid #36A6EF;
    background-color: #fff;
    position: fixed;
    height: calc(100vh - 60px);
    top: 60px;
    padding: 40px 20px 30px;
    width: 100%;
    left: 0;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.3s ease;
    overflow: scroll;
  }
  .l-header .l-header-area.open {
    transform: translateX(0%);
    opacity: 1;
    z-index: 1000;
    pointer-events: auto;
  }
  .l-header .l-header-area__list {
    gap: 30px;
    width: 100%;
    margin-right: 0px;
  }
  .l-header .l-header-area__list-item {
    width: 100%;
  }
  .l-header .l-header-area__list-item .-link {
    display: block;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #454545;
  }
  .l-header .l-header-area__contact {
    position: static;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    margin-top: 50px;
    width: 100%;
    max-width: 300px;
  }
  .l-header .l-header-area__contact-btn {
    width: 100%;
  }
  .l-header .l-header-area__contact-btn .-link {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    letter-spacing: 0.08em;
  }
  .l-header .l-header-area__contact-btn .-link::after {
    content: "";
    position: absolute;
    width: 8px;
    height: auto;
    aspect-ratio: 1;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-45deg);
  }
  .l-header .l-header-area__contact-btn.l-header-area__contact-btn--01 {
    width: 280px;
    font-size: 14px;
  }
  .l-header .l-header-area__contact-btn.l-header-area__contact-btn--01 .-link {
    padding: 13px 0;
  }
  .l-header .l-header-area__contact-btn.l-header-area__contact-btn--02 {
    width: 280px;
    margin-top: 10px;
    font-size: 16px;
  }
  .l-header .l-header-area__contact-btn.l-header-area__contact-btn--02 .-link {
    padding: 12px 0;
  }
  .l-header .l-header-area__contact-btn-sp {
    display: block;
    width: 280px;
    margin-top: 10px;
  }
  .l-header .l-header-area__contact-btn-sp .-link {
    display: flex;
    align-items: center;
    background-color: #36A6EF;
    position: relative;
  }
  .l-header .l-header-area__contact-btn-sp .-link::after {
    content: "";
    position: absolute;
    width: 8px;
    height: auto;
    aspect-ratio: 1;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-45deg);
  }
  .l-header .l-header-area__contact-btn-sp .-img {
    width: 120px;
  }
  .l-header .l-header-area__contact-btn-sp .-txtbox {
    width: calc(100% - 120px);
    padding-left: 30px;
  }
  .l-header .l-header-area__contact-btn-sp .-txt {
    font-size: 15px;
    letter-spacing: 0.03em;
    font-weight: bold;
    color: #fff;
  }
  .l-header .l-header-humbtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #222;
    top: 50%;
    left: 25%;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(2) {
    opacity: 0;
  }
  .l-header .l-header-humbtn.open .l-header-humbtn__line:nth-child(3) {
    transform: translateY(0px) rotate(-45deg);
  }
  .l-header .l-header-humbtn__line {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #222;
    top: 50%;
    left: 25%;
    transition: all 0.3s ease;
  }
  .l-header .l-header-humbtn__line:nth-child(1) {
    transform: translateY(-8px);
  }
  .l-header .l-header-humbtn__line:nth-child(3) {
    transform: translateY(8px);
  }
}

/*------------------------------------------------

l-footer

-------------------------------------------------*/
.l-footer {
  position: relative;
  border-bottom: 20px solid #36A6EF;
  padding: 100px 0 110px;
}
.l-footer .l-footer-pagetop {
  position: absolute;
  width: 80px;
  height: 80px;
  top: -40px;
  right: 140px;
}
.l-footer .l-footer-pagetop a:hover {
  opacity: 1;
}
.l-footer .l-footer-area__logo {
  width: 210px;
  margin: auto;
}
.l-footer .l-footer-area__logo a {
  display: block;
}
.l-footer .l-footer-area__list {
  margin-top: 55px;
}
.l-footer .l-footer-area__list-group {
  gap: 30px;
  justify-content: center;
}
.l-footer .l-footer-area__list-item {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.l-footer .l-footer-area__list-item a {
  color: #222;
}
.l-footer .l-footer-area__access {
  margin-top: 50px;
  text-align: center;
}
.l-footer .l-footer-area__access p {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.l-footer .l-footer-area__access a {
  display: block;
  color: #2921FF;
  margin-top: 10px;
  text-decoration: underline;
}
.l-footer .l-footer-area__copy {
  margin-top: 70px;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .l-footer .l-footer-pagetop {
    right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    border-bottom: 14px solid #36A6EF;
    padding: 80px 0 90px;
  }
  .l-footer .l-footer-pagetop {
    width: 50px;
    height: 50px;
    top: -25px;
    right: 20px;
  }
  .l-footer .l-footer-area__list {
    margin-top: 50px;
  }
  .l-footer .l-footer-area__copy {
    margin-top: 50px;
  }
}

/*------------------------------------------------

c-ttl01

-------------------------------------------------*/
.c-ttl01 {
  font-size: 30px;
  letter-spacing: 0.06em;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}
.c-ttl01 span {
  display: block;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 4;
}
@media screen and (max-width: 768px) {
  .c-ttl01 {
    line-height: 1.3;
    font-size: 26px;
  }
  .c-ttl01 span {
    line-height: 3;
  }
}

/*------------------------------------------------

c-ttl02

-------------------------------------------------*/
.c-ttl02 {
  font-size: 30px;
  letter-spacing: 0.06em;
  font-weight: bold;
  text-align: center;
  color: #222;
  line-height: 1.5;
}
.c-ttl02 span {
  display: block;
  color: #FA7818;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 4;
}
@media screen and (max-width: 768px) {
  .c-ttl02 {
    font-size: 26px;
    line-height: 1.3;
  }
  .c-ttl02 span {
    line-height: 3;
  }
}/*# sourceMappingURL=common.css.map */