@charset "UTF-8";
html {
  font-size: 56.25%;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #132d66;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab {
    display: block;
    transition: 0.4;
  }
}

.tab_non {
  display: block;
}
@media screen and (min-width: 768px) {
  .tab_non {
    display: none;
  }
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .flex-sp {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.grecaptcha-badge {
  display: none;
}

/* === animation ==== */
.fadeInTrigger,
.slideTrigger,
.fadeDownTrigger,
.fadeUpTrigger,
.fadeLTrigger,
.fadeRTrigger {
  opacity: 0;
}

.fadeIn {
  opacity: 0;
  animation: fadein 2s forwards;
}

.fadeDown {
  opacity: 0;
  animation: fadedown 1.5s forwards;
}

.fadeUp {
  opacity: 0;
  animation: fadeup 1.5s forwards;
}

.fadeL {
  opacity: 0;
  animation: fadel 1.5s forwards;
}

.fadeR {
  opacity: 0;
  animation: fader 1s forwards;
  animation-delay: 0.5s;
}

.slideIn {
  position: relative;
}
.slideIn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #132d66;
  animation: slideL 1.8s forwards;
}

.slide-item {
  opacity: 0;
  animation: fadein 0.6s linear 1.2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadedown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadel {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fader {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideL {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*=== 共通 ====*/
.content-wrapper {
  padding: 80px 20px;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .content-wrapper {
    padding: 80px 8%;
  }
}

.section:last-child {
  padding-bottom: calc(250px + 11.244%);
}

.content {
  margin-top: 60px;
}

.span-small {
  font-size: 1.4rem;
}

.main-title {
  color: #bfa200;
  font-family: "Red Hat Display", sans-serif;
  font-size: 8rem;
  line-height: 1;
}

.sc-title {
  font-size: 2.2rem;
}

p {
  margin-top: 14px;
}

.main-btn {
  display: block;
  margin: 40px auto;
  padding-bottom: 6px;
  border-bottom: 3px solid #132d66;
  text-align: center;
}

.img-btn {
  border: none;
}

/*=== header ====*/
.header {
  position: fixed;
  width: 100%;
  padding: 18px 3%;
  background-color: #fff;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-wrapper .logo {
  width: 250px;
}
.header .header-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 70px;
  right: 0;
  width: 100%;
  padding: 40px 8%;
  background-color: #fff;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .header .header-menu {
    position: static;
    display: block;
    width: auto;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
  }
}
.header .header-menu.show {
  opacity: 1;
  visibility: visible;
}
.header .nav {
  display: block;
}
@media screen and (min-width: 768px) {
  .header .nav {
    display: flex;
  }
}
.header .nav .nav-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
}
.header .nav_toggle {
  display: block;
  position: relative;
  width: 55px;
  height: 27px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .header .nav_toggle {
    display: none;
  }
}
.header .nav_toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #132d66;
  position: absolute;
  transition: transform 0.3s, opacity 0.3s;
}
.header .nav_toggle i:nth-child(1) {
  top: 0;
}
.header .nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header .nav_toggle i:nth-child(3) {
  bottom: 0;
}
.header .nav_toggle.show i:nth-child(1) {
  transform: translateY(15px) rotate(-45deg);
}
.header .nav_toggle.show i:nth-child(2) {
  opacity: 0;
}
.header .nav_toggle.show i:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

/* main-view */
.main-view {
  position: relative;
}
.main-view .main-view-img {
  width: 100%;
  height: 90vh;
  background: url("../img/main-view-sp.jpg") center center no-repeat;
  background-size: cover;
  background-position: 40px;
}
@media screen and (min-width: 768px) {
  .main-view .main-view-img {
    background: url("../img/main-view.jpg") center center no-repeat;
    background-size: cover;
    background-position: 60px;
  }
}
.main-view .main-copy {
  position: absolute;
  bottom: -1px;
  left: 39px;
  padding-right: 30px;
  border-radius: 0 20px 0 0;
  background-color: #fff;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .main-view .main-copy {
    left: 59px;
    font-size: 4rem;
  }
}

/* info-block */
.info-block {
  position: relative;
  overflow: hidden;
  line-height: 2;
}
.info-block .info-content {
  align-items: flex-start;
  gap: 100px;
}
.info-block .design-box {
  position: absolute;
  top: 140px;
  left: 0;
  width: 70%;
  height: 380px;
  background-color: #f8f8f8;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .info-block .design-box {
    top: 148px;
    width: 60%;
  }
}
.info-block .img-area {
  width: 100%;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .info-block .img-area {
    width: 40%;
  }
}
.info-block .text-area {
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .info-block .text-area {
    width: 70%;
    margin-top: 0;
  }
}
.info-block .feature-content {
  margin-bottom: 80px;
  background-color: #132d66;
  color: #fff;
}
.info-block .feature-content .flex-sp {
  align-items: stretch;
  gap: 20px;
}
.info-block .feature-content .flex-sp .list-item {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
}
.info-block .feature-content .flex-sp .list-item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .info-block .feature-content .flex-sp .list-item {
    margin-top: 0;
  }
}
.info-block .feature-content .feature-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.info-block .feature-content .feature-title .title-wrap {
  margin-top: auto;
}
.info-block .feature-content .feature-number {
  margin-top: -10px;
  color: #bfa200;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .info-block .feature-content .feature-number {
    font-size: 6rem;
  }
}
.info-block .feature-content .feature-text {
  margin-top: auto;
}

.about {
  margin-top: 30px;
}
.about .main-btn {
  width: 180px;
}

.media .main-text-area {
  display: flex;
  flex-direction: column;
}
.media .stats .content-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
.media .stats .img-area {
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .media .stats .img-area {
    width: 50%;
    margin-top: 0;
  }
}
.media .stats .stats-graph .img-area {
  width: 100%;
  align-items: flex-start;
  gap: 110px;
  margin-top: 36px;
}
.media .stats .graph-date {
  text-align: center;
}
.media .stats .graph-date p {
  display: inline-block;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 20px;
  background-color: #132d66;
  color: #fff;
}
.media .stats .graph-date img {
  width: 80%;
  margin: 16px auto;
}
@media screen and (min-width: 768px) {
  .media .stats .graph-date img {
    width: 100%;
  }
}
.media .stats-block {
  margin-top: 20px;
  padding: 40px 20px;
  border-radius: 16px;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .media .stats-block {
    padding: 40px 8%;
  }
}
.media .stats-block .text-area {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .media .stats-block .text-area {
    width: 65%;
  }
}
.media .main-btn {
  width: 180px;
}

.advertorial .list-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .advertorial .list-item {
    width: 33.3333333333%;
  }
}

.article {
  position: relative;
}
.article .design-box {
  position: absolute;
  top: 148px;
  left: 0;
  width: 60%;
  height: 600px;
  background-color: #f8f8f8;
  z-index: -1;
}
.article .article-img-content {
  position: relative;
}
.article .article-img-content .article-img {
  width: 100%;
  padding-top: 67%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.article .article-img-content .article-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 16px;
  background-color: #bfa200;
  color: #fff;
}
.article .article-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  justify-content: start;
}
.article .article-list .list-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .article .article-list .list-item {
    margin-top: 0;
  }
}
.article .article-desc {
  margin: 10px 0;
  font-size: 1.4rem;
}
.article .article-desc-link {
  display: block;
  width: 100px;
  margin: auto auto 0;
  padding: 3px 16px;
  border-radius: 20px;
  background-color: #132d66;
  color: #fff;
  text-align: center;
}
.article .main-btn {
  width: 130px;
}
.article .design-line {
  width: 100%;
  height: 2px;
  background-color: #132d66;
}

.article-list .main-title {
  margin-top: 80px;
}

.wp-pagenavi {
  margin-top: 60px;
  font-size: 1.6rem;
  text-align: center;
  transition: 0.8s;
}

.wp-pagenavi a,
.wp-pagenavi span {
  margin: 10px;
  padding: 8px 16px;
  border: 2px solid #132d66;
  border-radius: 50px;
  background-color: #fff;
  transition: 0.3s;
}

.wp-pagenavi span.current {
  border-radius: 50px;
  background-color: #132d66;
  color: #fff;
}

.wp-pagenavi a:hover {
  background-color: #132d66;
  color: #fff;
}

.faq .main-title {
  margin-bottom: -12px;
  padding: 80px 8% 0;
}
.faq .content-wrapper {
  background-color: rgba(191, 162, 0, 0.5);
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .faq-item {
  border: 1px solid #132d66;
  background: #fff;
  transition: all 0.3s ease;
}
.faq .faq-item.active .faq-toggle {
  transform: rotate(180deg);
}
.faq .faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 26px 36px;
}
@media screen and (min-width: 768px) {
  .faq .faq-item.active .faq-answer {
    padding: 20px 80px 40px;
  }
}
.faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq .faq-question {
    padding: 20px 40px;
  }
}
.faq .faq-question .faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #132d66;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.faq .faq-question .faq-toggle {
  margin-left: auto;
  font-size: 4rem;
  transition: transform 0.2s ease;
}
.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 0 80px;
}
.faq .faq-answer a {
  text-decoration: underline;
}

.contact {
  margin-bottom: 80px;
}
.contact .contact-info {
  position: relative;
  width: 100%;
  margin: 40px auto 80px;
  padding: 40px 60px;
  border: 2px solid #132d66;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}
@media screen and (min-width: 768px) {
  .contact .contact-info {
    position: static;
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
.contact .contact-info .icon {
  position: absolute;
  top: -30px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: #132d66;
  color: #fff;
  font-size: 3.6rem;
}
@media screen and (min-width: 768px) {
  .contact .contact-info .icon {
    position: static;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
  }
}
.contact .form-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -15px;
  padding: 50px 60px;
  background-color: #f8f8f8;
}
.contact .contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  padding: 14px 28px;
  background-color: #132d66;
  color: #fff;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .contact .contact-button {
    margin: 0;
  }
}

/* ======= footer ====== */
.footer {
  background-color: #132d66;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    text-align: left;
  }
}
.footer .foot-logo {
  width: 250px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .foot-logo {
    margin: 20px 0;
  }
}
.footer .foot-link {
  display: flex;
}
.footer .copyright {
  font-size: 1.2rem;
}

/* ====== 404 ====== */
.error_page {
  width: 100%;
  height: 95vh;
  color: #132d66;
}
.error_page section {
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
.error_page h2 {
  padding-top: 200px;
  font-size: 3.8rem;
}
.error_page h2 span {
  display: block;
  padding-top: 16px;
  font-size: 1.6rem;
}
.error_page p {
  padding: 50px 0 100px;
}
.error_page a {
  padding: 16px;
  border: solid 1px #132d66;
  border-radius: 8px;
}

/* ====== CONTACT ====== */
.page-contact .contact-form {
  width: 100%;
  margin: 42px auto 0;
}
@media screen and (min-width: 768px) {
  .page-contact .contact-form {
    width: 65%;
  }
}
.page-contact .form-wrap {
  margin: 26px 0 8px;
}
@media screen and (min-width: 768px) {
  .page-contact .form-desc {
    margin-right: 16px;
  }
}
.page-contact .required {
  font-size: 1.4rem;
  color: #ff6f6f;
}
.page-contact .form-text input,
.page-contact .form-area textarea {
  width: 100%;
  padding: 6px;
  border: 1px solid #132d66;
  background-color: #f8f8f8;
}
.page-contact .select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 6px;
  border: 1px solid #132d66;
  background-color: #f8f8f8;
}
.page-contact .select-wrapper select {
  width: 100%;
}
.page-contact .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #132d66;
  border-bottom: 2px solid #132d66;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.page-contact [type=submit] {
  position: relative;
  display: block;
  width: 100%;
  margin: 40px auto 0;
  padding: 15px;
  border-radius: 50px;
  background-color: #132d66;
  color: #fff;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-contact [type=submit] {
    width: 360px;
  }
}/*# sourceMappingURL=style.css.map */