@charset "UTF-8";
.contents_wrapper {
  /* Box sizing rules */
  /* Remove default margin */
  /* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
  /* Set core root defaults */
  /* Set core body defaults */
  /* A elements that don't have a class get default styles */
  /* Make images easier to work with */
  /* Inherit fonts for inputs and buttons */
  /* Remove all animations and transitions for people that prefer not to see them */
}
.contents_wrapper *,
.contents_wrapper *::before,
.contents_wrapper *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contents_wrapper body,
.contents_wrapper h1,
.contents_wrapper h2,
.contents_wrapper h3,
.contents_wrapper h4,
.contents_wrapper p,
.contents_wrapper figure,
.contents_wrapper blockquote,
.contents_wrapper dl,
.contents_wrapper dd {
  margin: 0;
}
.contents_wrapper ul[role=list],
.contents_wrapper ol[role=list] {
  list-style: none;
}
.contents_wrapper html:focus-within {
  scroll-behavior: smooth;
}
.contents_wrapper body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
.contents_wrapper a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.contents_wrapper img,
.contents_wrapper picture {
  max-width: 100%;
  display: block;
}
.contents_wrapper input,
.contents_wrapper button,
.contents_wrapper textarea,
.contents_wrapper select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  .contents_wrapper html:focus-within {
    scroll-behavior: auto;
  }
  .contents_wrapper *,
.contents_wrapper *::before,
.contents_wrapper *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
         -o-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.contents_wrapper {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif !important;
}
.contents_wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contents_wrapper img {
  width: 100%;
}

.lum-lightbox {
  z-index: 9999;
}

/* スライドの動き等速 */
.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
       -o-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/*
「/src/sass/foundation」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/foundation/base/_example.scss を読み込む場合
@forward "../../foundation/base/example";
*/
/*
「/src/sass/layout」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/layout/_example.scss を読み込む場合
@forward "../../layout/example";
*/
/*
「/src/sass/object/component」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/component/_example.scss を読み込む場合
@forward "../../object/component/example";
*/
.p-hero {
  background-color: #BFC0C0;
  height: calc(100vh - 98px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (max-width: 575px) {
  .p-hero {
    height: calc(100vh - 70px);
  }
}
.p-hero::before {
  content: "";
  width: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #FFE100;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .p-hero::before {
    width: 10px;
  }
}
.p-hero figure {
  width: 50%;
  max-width: 600px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-hero figure {
    width: 70%;
  }
}
.p-hero p {
  text-align: right;
  position: relative;
  z-index: 3;
  padding-right: 10%;
}
.p-hero p img {
  width: 90%;
  max-width: 600px;
  display: inline-block;
}
@media screen and (max-width: 1440px) {
  .p-hero p img {
    max-width: 500px;
  }
}
.p-hero__scroll {
  width: 40px;
  position: absolute;
  left: 48.5%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
  -webkit-animation: p-hero-fluffy 1.5s infinite;
          animation: p-hero-fluffy 1.5s infinite;
}

@-webkit-keyframes p-hero-fluffy {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes p-hero-fluffy {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.p-title {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-title {
    margin-bottom: 60px;
  }
}
.p-title h1, .p-title p {
  padding: 0 15px;
  max-width: 480px;
  margin: 0 auto;
}

.p-lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .p-lead {
    margin-bottom: 40px;
  }
}
.p-lead h2 {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .p-lead h2 {
    font-size: 19px;
  }
}
.p-lead p {
  margin: 1.5em 0;
  font-weight: 400;
  line-height: 2em;
}
.p-lead p:last-child {
  margin-bottom: 0;
}

.p-slider {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .p-slider {
    margin-bottom: 60px;
  }
}

.p-intro {
  padding: 0 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1440px) {
  .p-intro {
    padding: 0 15px;
  }
}
.p-intro__wrapper {
  background-color: #ECECEC;
  padding: 80px;
}
@media screen and (max-width: 1440px) {
  .p-intro__wrapper {
    padding: 60px 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-intro__wrapper {
    padding: 60px 15px 20px;
  }
}
.p-intro__title {
  width: 160px;
  margin: -160px auto 80px !important;
}
@media screen and (max-width: 960px) {
  .p-intro__title {
    margin: -130px auto 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .p-intro__title {
    margin: -100px auto 20px !important;
    width: 120px;
  }
}
.p-intro__lead {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-intro__lead {
    margin-bottom: 40px;
  }
}
.p-intro__lead h3 {
  text-align: center;
  line-height: 1.8em;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-intro__lead h3 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6em;
  }
}
.p-intro__lead h3 small {
  display: block;
}
.p-intro__lead h3::after {
  content: "";
  width: 100%;
  max-width: 100px;
  height: 3px;
  position: absolute;
  background-color: #FFE100;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-intro__lead p {
  text-align: center;
  line-height: 2.4em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-intro__lead p {
    text-align: left;
    line-height: 1.8em;
  }
}
.p-intro__map {
  max-width: 500px;
  margin: 60px auto !important;
}
@media screen and (max-width: 768px) {
  .p-intro__map {
    margin: 40px auto !important;
  }
}
.p-intro__checks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
}
@media screen and (max-width: 960px) {
  .p-intro__checks {
    display: block;
  }
}
.p-intro__check {
  width: 33.3333333333%;
  padding: 20px;
}
@media screen and (max-width: 960px) {
  .p-intro__check {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}
.p-intro__checkTitleBox {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.p-intro__checkTitleBox::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #333333;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-intro__checkTitleBox h2 {
  font-size: 24px;
  line-height: 1em;
  margin-bottom: 7px;
}
.p-intro__checkEn {
  font-size: 12px;
  font-weight: 700;
}
.p-intro__checkNum {
  margin-bottom: 20px;
}
.p-intro__checkNum span {
  text-align: center;
  display: inline-block;
  background-color: #000;
  height: 2em;
  width: 2em;
  text-align: center;
  border-radius: 50%;
  color: #FFE100;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
}
.p-intro__checkTitleEn {
  font-size: 16px;
  line-height: 1em;
  color: #BFC0C0;
  font-weight: 700;
}
.p-intro__checkTextBox {
  margin-bottom: 20px;
  height: 30vw;
  overflow-y: hidden;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(30%, black), to(black));
  -webkit-mask-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, black 30%, black 100%);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(30%, black), to(black));
          mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 30%, black 100%);
}
@media screen and (max-width: 1440px) {
  .p-intro__checkTextBox {
    height: 35vw;
  }
}
@media screen and (max-width: 960px) {
  .p-intro__checkTextBox {
    height: 60vw;
  }
}
@media screen and (max-width: 768px) {
  .p-intro__checkTextBox {
    height: 80vw;
  }
}
@media screen and (max-width: 575px) {
  .p-intro__checkTextBox {
    height: 100vw;
  }
}
.p-intro__checkTextBox--open {
  -webkit-mask-image: none;
          mask-image: none;
  overflow-y: visible;
}
.p-intro__checkTextBox h4 {
  font-size: 18px;
  text-align: center;
  margin: 1em;
}
.p-intro__checkTextBox figure {
  margin: 1.5em auto;
}
.p-intro__checkTextBox p {
  font-weight: 400;
}
.p-intro__checkTextBox dl {
  margin: 0.5em 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-intro__checkTextBox dl dt {
  width: 4em;
}
.p-intro__checkTextBox dl dt span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  aspect-ratio: 1/1;
  background-color: #FFE100;
  text-align: center;
  line-height: 1.4em;
}
.p-intro__checkTextBox dl dd {
  width: calc(100% - 5em);
  font-weight: 400;
}
.p-intro__checkContentTitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
}
.p-intro__checkBtn {
  text-align: center;
  cursor: pointer;
  text-align: center;
}
.p-intro__checkBtnIcon {
  width: 40px;
  margin: 0 auto;
}
.p-intro__checkBtnIcon img {
  display: inline-block;
}
.p-intro__checkBtnText {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-intro__checkBtnText {
    font-size: 12px;
  }
}
.p-intro__history {
  padding: 40px;
  background-color: #FFF;
  border-top: solid 5px #FFE100;
  margin: 1.5em 0;
}
.p-intro__history figure {
  width: 45px;
  float: left;
  margin: 0 15px 15px 0;
}
.p-intro__history p {
  line-height: 1.8em;
}
.p-intro__historyLogo {
  max-width: 200px;
  margin: 20px auto 0;
}

/*
「/src/sass/object/project」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/project/_example.scss を読み込む場合
@forward "../../object/project/example";
*/
.u-br {
  /*
  PCのみ
  */
  /*
  幅の狭いPC
  */
  /*
  タブレット・スマホ
  */
  /*
  スマホ
  */
}
.u-br__pc {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-br__pc {
    display: inline;
  }
}
.u-br__narrowpc {
  display: none;
}
@media screen and (max-width: 1440px) {
  .u-br__narrowpc {
    display: inline;
  }
}
.u-br__tb {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-br__tb {
    display: inline;
  }
}
.u-br__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br__sp {
    display: inline;
  }
}
.u-br__nosp {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-br__nosp {
    display: none;
  }
}

/*
「/src/sass/object/utility」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/utility/_example.scss を読み込む場合
@forward "../../object/utility/example";
*/
/* component project utilityをまとめる */
/*
「/src/sass/pages」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/pages/_example.scss を読み込む場合
@forward "../../pages/example";
*/
/*
コーディング規約
https://qiita.com/super-mana-chan/items/644c6827be954c8db2c0
*/
/*# sourceMappingURL=style.css.map */
