@charset "UTF-8";
/* -----------------------
共通CSS
----------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
    overflow-x: hidden;
  }
}

body {
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  color: #2B2B2B;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media (min-width: 769px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
.container {
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
}

main {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

img {
  width: 100%;
}

a:hover {
  cursor: pointer;
}

.font-txt {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* -----------------------
ヘッダー
----------------------- */
.header {
  width: 100%;
  height: 96px;
  position: fixed;
  top: 0;
  z-index: 100;
  background: rgba(254, 254, 254, 0.9);
}
@media (max-width: 768px) {
  .header {
    height: 0px;
    border: none;
  }
}
.header__inner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 11px;
}
@media (max-width: 768px) {
  .header__inner .container {
    background-color: rgba(234, 233, 243, 0.75);
    width: 100% !important;
    max-width: 100% !important;
    height: 54px;
    position: relative;
    z-index: 1;
  }
}
.header__inner .container .header__logo {
  width: 218px;
}
@media (max-width: 768px) {
  .header__inner .container .header__logo {
    width: 170px;
  }
}
.header__inner .container ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .header__inner .container ul {
    display: none;
  }
}
.header__inner .container ul li {
  font-size: 16px;
  text-align: center;
}
.header__inner .container ul li .font-txt:hover {
  border-bottom: solid 1px #2B2B2B;
  padding-bottom: 20px;
}
.header__inner .container ul .contact-btn__area {
  display: flex;
  gap: 40px;
}
.header.headerColorScroll .header__inner {
  display: block;
}
.header__inner--sp {
  display: none;
}
@media (max-width: 768px) {
  .header__inner--sp {
    display: block;
  }
}
.header__inner--sp .header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: ease 0.4s;
  background: #fff;
}
.header__inner--sp .header__nav .overlay {
  background: linear-gradient(130deg, rgba(156, 201, 222, 0.5) 4%, rgba(130, 132, 180, 0.5) 72%, rgba(137, 118, 164, 0.5) 100%);
  width: 100%;
  height: 100vh;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
}
.header__inner--sp .nav-items {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 37px;
  top: 50%;
  transform: translateY(-50%);
}
.header__inner--sp .nav-items li {
  font-size: 20px;
  line-height: 24px;
  padding: 27px 0 25px;
  border-bottom: solid 1px #AAA2D0;
}
.header__inner--sp .nav-items li a span {
  font-size: 24px;
}
.header__inner--sp .nav-items li:nth-of-type(5) {
  margin-bottom: 60px;
}
.header__inner--sp .nav-items li.contact-btn__area {
  border-bottom: none;
  text-align: center;
  padding: 0;
  margin-bottom: 16px;
}
.header__inner--sp .nav-items li.contact-btn__area .contact-btn {
  width: 80% !important;
  display: block;
  padding: 13px;
  text-align: center;
  background: rgba(212, 211, 220, 0) !important;
  border: solid 1px #fff;
  margin: 20px auto 0px;
}
.header__inner--sp .nav-items li.sns-icon {
  width: 46px;
  border-bottom: none;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
.header__inner--sp .header__hamburger {
  width: 54px;
  height: 54px;
  background-color: #fff;
  padding: 16px 8px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.header__inner--sp .hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  width: 30px;
}
.header__inner--sp .hamburger span {
  width: 30px;
  height: 2px;
  background-color: #AAA2D0;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.header__inner--sp .hamburger span:nth-child(1) {
  top: 0;
}
.header__inner--sp .hamburger span:nth-child(2) {
  margin: 8px 0;
}
.header__inner--sp .hamburger span:nth-child(3) {
  top: 0;
}
.header__inner--sp .header__nav.active {
  transform: translateX(0%);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
}
.header__inner--sp .hamburger.active span:nth-child(1) {
  top: 10px;
  left: 5px;
  transform: rotate(45deg);
}
.header__inner--sp .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__inner--sp .hamburger.active span:nth-child(3) {
  top: -10px;
  left: 5px;
  transform: rotate(-45deg);
}

/* -----------------------
共通ボタン
----------------------- */
a.contact-btn, input.wpcf7-form-control.wpcf7-submit.has-spinner.contact-btn.btn-gr {
  position: relative;
  padding: 8px 22px;
  border-radius: 100px;
  background: #D4D3DC;
}
a.contact-btn:hover, input.wpcf7-form-control.wpcf7-submit.has-spinner.contact-btn.btn-gr:hover {
  background: linear-gradient(90deg, #1ba1dd 20%, #5357a8 50%, #5357a8 80%);
}
a.contact-btn p, input.wpcf7-form-control.wpcf7-submit.has-spinner.contact-btn.btn-gr p {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

/* 光のスタイル */
.more-btn {
  width: 236px;
}
@media (max-width: 768px) {
  .more-btn {
    width: 200px;
  }
}
.more-btn a {
  border: solid 1px #2B2B2B;
  border-radius: 50px;
  padding: 18px 26px;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .more-btn a {
    padding: 16px 10px 16px 12px;
  }
}
.more-btn a p {
  color: #2B2B2B;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  text-align: left;
}
.more-btn a p::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 90px;
  height: 2px;
  background: #2B2B2B;
  transition: 0.3s;
}
.more-btn a p::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 2px solid #2B2B2B;
  border-bottom: 2px solid #2B2B2B;
  transform: rotate(-135deg);
  transition: 0.3s;
}
.more-btn a:hover p::before {
  right: 0px;
  width: 110px;
}
.more-btn a:hover p::after {
  right: 0px;
}

/* -----------------------
共通見出し
----------------------- */
h2.ttl-1 {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 20px;
  padding-left: 30px;
  color: #000;
}
@media (max-width: 768px) {
  h2.ttl-1 {
    font-size: 25px;
  }
}

h2.ttl-2 {
  text-align: center;
  font-size: 20px;
  line-height: 55px;
  font-weight: 500;
}
h2.ttl-2 span {
  font-family: "League Spartan", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 10px;
}

.page-about h2.ttl-2 {
  text-align: center;
  font-size: 20px;
  line-height: 55px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-about h2.ttl-2 {
    font-size: 1.5rem;
    line-height: 43px;
  }
}
.page-about h2.ttl-2 span {
  font-family: "League Spartan", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 10px;
}
@media (max-width: 768px) {
  .page-about h2.ttl-2 span {
    font-size: 3rem;
  }
}

/* -----------------------
下層ページタイトル
----------------------- */
.page-ttl__area {
  background: url(../img/lower_ttl_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 384px;
}
@media (max-width: 768px) {
  .page-ttl__area {
    background-position: -735px center;
    height: 329px;
  }
}
.page-ttl__area .overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(101, 64, 151), rgba(83, 87, 168, 0.8), rgba(55, 124, 195, 0.55), rgba(27, 161, 221, 0.05) 100%);
}
.page-ttl__area .container {
  z-index: 1;
}
@media (max-width: 768px) {
  .page-ttl__area .container {
    max-width: 88%;
  }
}
.page-ttl__area h1.ttl-3 {
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  position: absolute;
  top: 146px;
}
@media (max-width: 768px) {
  .page-ttl__area h1.ttl-3 {
    font-size: 1.5rem;
    line-height: 30px;
    top: 83px;
  }
}
.page-ttl__area h1.ttl-3 span {
  font-family: "League Spartan", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 10px;
}
@media (max-width: 768px) {
  .page-ttl__area h1.ttl-3 span {
    font-size: 3rem;
  }
}
.page-ttl__area .contact-btn__area {
  position: absolute;
  top: 280px;
  right: 0;
}
@media (max-width: 768px) {
  .page-ttl__area .contact-btn__area {
    position: relative;
    top: -159px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
  }
}

/* -----------------------
全ページ共通footer
----------------------- */
.footer {
  padding: 49px 0 0px;
  background: linear-gradient(130deg, rgba(15, 19, 82, 0.9) 29%, rgba(20, 0, 47, 0.9) 100%);
}
.footer .container {
  max-width: 75%;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
  }
}
.footer__inner .footer__logo a {
  width: 227px;
  display: block;
}
@media (max-width: 768px) {
  .footer__inner .footer__logo a {
    width: 100%;
  }
}
.footer__inner .footer__logo p {
  margin-top: 29px;
  font-size: 15px;
  color: #fff;
  line-height: 32px;
}
@media (max-width: 768px) {
  .footer__inner .footer__logo {
    text-align: center;
    display: flex;
    flex-direction: column;
  }
}
.footer__inner ul.footer__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .footer__inner ul.footer__list {
    flex-direction: column;
    gap: 0px;
    width: 100%;
  }
}
.footer__inner ul.footer__list li {
  color: #fff;
  font-size: 16px;
}
@media (max-width: 768px) {
  .footer__inner ul.footer__list li {
    width: 100%;
    padding-top: 22px;
    font-size: 1.5rem;
  }
}
.footer__inner ul.footer__list li .font-txt:hover {
  border-bottom: solid 1px #fff;
  padding-bottom: 20px;
}
.footer__inner .footer__sns {
  font-size: 16px;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__inner .footer__sns {
    text-align: left;
    width: 100%;
    padding-top: 26px;
  }
}
.footer__inner .footer__sns a {
  width: 46px;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer__inner ul.footer__btn {
    padding-top: 26px;
    width: 100%;
  }
}
.footer__inner ul.footer__btn li {
  height: 48px;
  margin-bottom: 24px;
}
.footer__inner ul.footer__btn a.contact-btn {
  background: rgba(212, 211, 220, 0);
  border: solid 1px #fff;
  padding: 17px;
  width: 190px;
  display: inline-block;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__inner ul.footer__btn a.contact-btn {
    width: 100%;
  }
}
.footer__inner ul.footer__btn a.contact-btn:hover {
  background: linear-gradient(90deg, #1ba1dd 20%, #5357a8 50%, #5357a8 80%);
}
.footer__inner ul.footer__btn a.contact-btn p {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.footer .footer__bottom {
  margin-top: 65px;
  height: 57px;
  text-align: center;
  background-color: #fff;
  padding-top: 15px;
}
.footer .footer__bottom .copyright {
  font-size: 16px;
}

/* -----------------------
下層ページ共通タイトル
----------------------- */
.page-ttl-area {
  padding-top: 185px;
}
@media (max-width: 768px) {
  .page-ttl-area {
    padding-top: 150px;
  }
}
.page-ttl-area .container {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 20px;
}
@media (max-width: 768px) {
  .page-ttl-area .container {
    gap: 10px;
  }
}
.page-ttl-area p {
  font-size: 48px;
  color: #6B3A92;
}
@media (max-width: 768px) {
  .page-ttl-area p {
    font-size: 3.2rem;
    padding-right: 30px;
  }
}
.page-ttl-area h1 {
  font-size: 24px;
  color: #6B3A92;
}
@media (max-width: 768px) {
  .page-ttl-area h1 {
    font-size: 1.6rem;
    width: 100%;
  }
}
.page-ttl-area .page-btn-area {
  display: flex;
  margin-top: 45px;
}
.page-ttl-area .page-btn-area li {
  background-color: #EAE9F3;
  border-radius: 8px;
  padding: 8px 30px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .page-ttl-area .page-btn-area li {
    border-radius: 50px;
  }
}
.page-ttl-area .page-btn-area li a {
  display: block;
}
.page-ttl-area .page-btn-area li a p {
  font-size: 24px;
  color: #6B3891;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .page-ttl-area .page-btn-area li a p {
    font-size: 1.6rem;
  }
}
.page-ttl-area .page-btn-area li a p::before {
  content: "●";
  font-size: 14px;
  color: #6B3891;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
}

/* -----------------------
.top-footer-btn-area
----------------------- */
.top-footer-btn-area {
  padding: 106px 0 100px;
  background-color: #0C2F13;
  margin-top: -1px;
}
.top-footer-btn-area .txt {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .top-footer-btn-area .txt {
    font-size: 3rem;
    line-height: 40px;
  }
}
.top-footer-btn-area .container {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 83px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .top-footer-btn-area .container {
    gap: 20px;
    padding-top: 30px;
  }
}
.top-footer-btn-area .container .contact-btn {
  width: 354px !important;
  padding: 22px 0;
  border-radius: 38px;
}
@media (max-width: 768px) {
  .top-footer-btn-area .container .contact-btn {
    width: 100%;
  }
}

/* -----------------------
パンくずエリア
----------------------- */
.page-bread-list-area {
  font-size: 12px;
  padding-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .page-bread-list-area {
    font-size: 1rem;
    padding-top: 10px;
  }
}
.page-bread-list-area ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .page-bread-list-area ul {
    gap: 8px;
  }
}/*# sourceMappingURL=common.css.map */