@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
/* 基本フォントサイズ設定 */
html {
  font-size: 100%; /* ブラウザのデフォルトのフォントサイズ。大抵は16px */
}

/* //基本フォントサイズ設定 */
/* 全体設定 */
body {
  font-family: "Noto Sans JP", sans-serif, YuGothic, "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, MS PGothic, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  color: #333333;
  -webkit-font-smoothing: antialiased; /* macで文字が太くなる現象を解消 */
}

main {
  margin-top: 34px;
  overflow: hidden;
}
main.has-cross {
  position: relative;
}
main.has-cross::before {
  content: "";
  width: 100%;
  height: 93.75vw;
  background-color: #F6F6F6;
  position: absolute;
  top: 403px;
  left: 0;
  clip-path: polygon(0 0, 100% 58.4%, 100% 100%, 0 41.6%);
  z-index: -1;
}
main.has-cross::after {
  content: "";
  width: 100%;
  height: 104vw;
  background-color: #EFF5FF;
  position: absolute;
  top: 1245px;
  right: 0;
  clip-path: polygon(0 50.3%, 100% 0%, 100% 50.3%, 0 100%);
  z-index: -2;
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

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

.container-1100 {
  padding: 0 15px;
  max-width: 1130px;
  margin: 0 auto;
}

.container-1460 {
  padding: 0 15px;
  max-width: 1490px;
  margin: 0 auto;
}

.container-1498 {
  padding: 0 15px;
  max-width: 1528px;
  margin: 0 auto;
}

.container-1500 {
  padding: 0 15px;
  max-width: 1530px;
  margin: 0 auto;
}

.container-1510 {
  padding: 0 15px;
  max-width: 1540px;
  margin: 0 auto;
}

.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

@media screen and (max-width: 1023px) {
  .d-lg-none {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .d-lg-block {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .d-xs-block {
    display: block;
  }
}

/* //全体設定 */
/* フォントファミリー */
.notosansjp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.nothing {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
}

.notosans {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* //フォントファミリー */
/* フォントウェイト */
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* //フォントウェイト */
/* 下から上にフェードイン */
.fade-in-from-bottom-elm {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-from-bottom-elm.scrolled {
  animation: fade-in-from-bottom 0.7s linear forwards;
}

@keyframes fade-in-from-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-from-bottom-x-center {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* //下から上にフェードイン */
/* 左から右にフェードイン */
.fade-in-from-left-elm {
  opacity: 0;
  transform: translateX(-20px);
}

.fade-in-from-left-elm.scrolled {
  animation: fade-in-from-left 1s linear forwards;
}

@keyframes fade-in-from-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* //左から右にフェードイン */
/* 右から左にフェードイン */
.fade-in-from-right-elm {
  opacity: 0;
  transform: translateX(20px);
}

.fade-in-from-right-elm.scrolled {
  animation: fade-in-from-right 1s linear forwards;
}

@keyframes fade-in-from-right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* //右から左にフェードイン */
/* color */
.txt-white {
  color: #FFFFFF;
}

/* //color */
/* title */
.ttl-pattern1 {
  font-size: 5rem;
  line-height: 1.2;
  color: #2C5BA3;
  display: block;
}
@media screen and (max-width: 1023px) {
  .ttl-pattern1 {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .ttl-pattern1 {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 599px) {
  .ttl-pattern1 {
    font-size: 2.5rem;
  }
}
.ttl-pattern1--ja {
  font-size: 3.375rem;
}
@media screen and (max-width: 767px) {
  .ttl-pattern1--ja {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 599px) {
  .ttl-pattern1--ja {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 479px) {
  .ttl-pattern1--ja {
    font-size: 1.875rem;
  }
}
.ttl-pattern1.txt-white {
  color: #FFFFFF;
}
.ttl-pattern1--center {
  text-align: center;
}
.ttl-pattern1--sub {
  font-size: 1.625rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .ttl-pattern1--sub {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .ttl-pattern1--sub {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 599px) {
  .ttl-pattern1--sub {
    font-size: 1.25rem;
  }
}
.ttl-pattern1--sub-en {
  letter-spacing: 0;
  margin-bottom: 3px;
}
.ttl-pattern1--sub-bottom {
  margin-top: -3px;
}
.ttl-pattern1--sub-center {
  text-align: center;
}

.ttl-pattern2 {
  font-size: 2.25rem;
  line-height: 1.2;
  color: #2C5BA3;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .ttl-pattern2 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 599px) {
  .ttl-pattern2 {
    font-size: 1.5rem;
  }
}

/* //title */
/* button */
.btn-w280 {
  width: 280px;
}

.btn-pattern1 {
  display: block;
  background-color: #ECA225;
  border-radius: 100vw;
  color: #FFFFFF;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 21px 0;
  position: relative;
}
.btn-pattern1::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translatey(-50%);
  transition: all 0.3s;
  border-radius: 50%;
}
.btn-pattern1:hover {
  opacity: 1;
}
.btn-pattern1:hover::before {
  transform: translate(8px, -50%);
}

/* //button */
/* bread crumb */
.breadcrumb-wrap {
  margin-top: 11px;
}
.breadcrumb-wrap ul {
  display: flex;
  gap: 20px;
}
.breadcrumb-wrap ul li {
  font-size: min(14px, 0.875rem);
}
.breadcrumb-wrap ul li:not(:last-of-type) {
  position: relative;
}
.breadcrumb-wrap ul li:not(:last-of-type)::before {
  content: "＞";
  font-size: min(14px, 0.875rem);
  position: absolute;
  top: 0;
  right: -17px;
}

/* fv */
.fv {
  position: relative;
}
.fv-txt-wrapper {
  position: absolute;
  top: min(168px, 8.75vw);
  left: max(-10px, -0.5208333333vw);
  padding-left: min(109px, 5.6770833333vw);
  padding-top: clamp(40px, 4.2708333333vw, 82px);
}
.fv__page-ttl {
  font-family: "Nothing You Could Do", cursive;
  color: #ECA225;
  transform: rotate(-15deg);
  font-size: clamp(32px, 4.1666666667vw, 80px);
  letter-spacing: 0.05em;
  line-height: 1.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fv__ttl {
  font-weight: 500;
  font-size: clamp(24px, 2.3958333333vw, 46px);
  color: #FFFFFF;
  background-color: #2C5BA3;
  position: relative;
  width: fit-content;
  letter-spacing: 0.05em;
  padding: min(32px, 1.6666666667vw) min(40px, 2.0833333333vw) min(34px, 1.7708333333vw) min(49px, 2.5520833333vw);
  display: block;
}
.fv__ttl:not(:last-of-type) {
  margin-bottom: min(11px, 0.5729166667vw);
}
.fv__ttl::before {
  content: "";
  width: 100%;
  height: min(3px, 0.15625vw);
  background-color: #FFFFFF;
  position: absolute;
  bottom: 3px;
  left: 0;
}
.fv__img {
  text-align: right;
}
.fv__img img {
  width: 89%;
  clip-path: polygon(17.5% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* //fv */
.child-fv {
  height: clamp(170px, 20.8333333333vw, 400px);
}
.child-fv::before {
  content: "";
  width: 89%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(17.5% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.child-fv .fv-txt-wrapper {
  top: min(56px, 2.9166666667vw);
  left: min(101px, 5.2604166667vw);
  padding-left: 0;
}
.child-fv .fv__page-ttl {
  left: min(14px, 0.7291666667vw);
}
.child-fv .fv__ttl {
  padding: min(19px, 0.9895833333vw) min(49px, 2.5520833333vw) min(26px, 1.3541666667vw) min(44px, 2.2916666667vw);
}

.parts-cta {
  background-color: #2C5BA3;
  position: relative;
  padding-top: 73px;
  padding-bottom: 97px;
}
@media screen and (max-width: 599px) {
  .parts-cta {
    padding-bottom: 70px;
  }
}
.parts-cta::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/parts-cta-bg.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
.parts-cta .container-1100 {
  position: relative;
}
.parts-cta-ttl-wrapper {
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFFFFF;
}
.parts-cta__ttl {
  font-size: 2.25rem;
  font-weight: 500;
  display: block;
}
.parts-cta__ttl--en {
  margin-bottom: 10px;
  display: block;
}
.parts-cta-wrapper {
  background-color: #FFFFFF;
  box-shadow: 10px -10px 0 #043B8F;
  padding: 80px 76px 40px 76px;
  max-width: 570px;
  margin: 50px auto 0;
}
@media screen and (max-width: 1023px) {
  .parts-cta-wrapper {
    padding: 40px;
  }
}
.parts-cta__message {
  margin-bottom: 9px;
}
.parts-cta__holiday {
  margin-top: 15px;
}
.parts-cta__message, .parts-cta__holiday {
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.parts-cta-btn-wrapper {
  width: 380px;
  max-width: 100%;
  margin: 0 auto;
}
.parts-cta__btn {
  display: block;
  background-color: #2C5BA3;
  color: #FFFFFF;
  border-radius: 100vw;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  padding: 25.5px 0;
}
.parts-cta__btn span {
  position: relative;
  padding-left: 36px;
}
.parts-cta__btn span::before {
  content: "";
  width: 20px;
  height: 15px;
  background: url(../img/common/icon-mail.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
}/*# sourceMappingURL=style-common.css.map */