@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : top.css
Description : トップ
===================================================================== */
/* テーマカラーの変数定義 */
/* =====================================================================
    共通
======================================================================*/
.js-pop {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.js-pop.is-show {
  -webkit-animation: pop 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: pop 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@-webkit-keyframes pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(100%);
            transform: scale(100%);
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(100%);
            transform: scale(100%);
  }
}
.js-slide {
  clip-path: inset(0 100% 0 0);
}

@-webkit-keyframes slideIn {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}

@keyframes slideIn {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
/* =====================================================================
    mv
======================================================================*/
.mv {
  padding: 15rem 0 7rem;
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 12rem 0;
  }
  .mv > .inner {
    width: calc(1620 / 1920 * 100%);
    max-width: 1620px;
  }
}
.mv-bg {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: calc(100% - 18.5rem);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .mv-bg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
  }
  .mv-bg > * {
    height: calc(100% - 6rem);
  }
}
.mv-bg-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  background-color: var(--color-bg);
}
.mv-bg-item.color02 {
  background-color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .mv-bg-item.color02 {
    margin-top: auto;
  }
}
.mv-bg-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 2;
  pointer-events: none;
  background-color: var(--next-color);
  -webkit-transition: none;
  transition: none;
}
.mv-bg-item.animate::after {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.mv-bg-item.color01::after {
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.mv-bg-item.color02::after {
  top: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.mv-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.mv-wrap-left {
  padding-top: 1px;
}
@media screen and (min-width: 768px) {
  .mv-wrap-left {
    width: 50%;
  }
}
.mv-wrap-right {
  position: relative;
  padding-top: 12rem;
}
@media screen and (min-width: 768px) {
  .mv-wrap-right {
    width: 50%;
    margin-top: 6rem;
    padding: 29.4rem 0 6rem;
  }
}
.mv-img {
  margin: -4.2rem 0 0 calc(-50 / 650 * 100%);
  width: calc(752 / 650 * 100%);
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
@media screen and (min-width: 768px) {
  .mv-img {
    margin: -6rem 0 0 calc(-107 / 810 * 100%);
    width: calc(1007 / 810 * 100%);
  }
}
.mv-catch {
  margin-left: calc(-18 / 650 * 100%);
  width: calc(690 / 650 * 100%);
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}
@media screen and (min-width: 768px) {
  .mv-catch {
    margin-left: calc(66 / 810 * 100%);
    width: calc(686 / 810 * 100%);
  }
}
.mv-catch svg {
  fill: #e9b19a;
}
.mv-recuit {
  margin: -5.3rem calc(34 / 650 * 100%) 0 auto;
  width: calc(362 / 650 * 100%);
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
@media screen and (min-width: 768px) {
  .mv-recuit {
    margin: -7.3rem calc(55 / 810 * 100%) 0 auto;
    width: calc(397 / 810 * 100%);
  }
}
.mv-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 25rem 0 0 calc(-25 / 650 * 100%);
  width: calc(700 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .mv-btn {
    margin: 20rem 0 0;
    width: 100%;
  }
}
.mv-btn .btn01 {
  margin: 0 1.4285714286%;
  width: 47.8571428571%;
  border: 0.227em solid #e9b19a;
}
.mv-btn .btn01::after {
  background-color: #e9b19a;
}
@media screen and (min-width: 768px) {
  .mv-btn .btn01 {
    margin: 0 calc(10 / 810 * 100%);
    width: calc(300 / 810 * 100%);
    font-size: 2.2rem;
    -webkit-transition-property: background-color, color, border-color;
    transition-property: background-color, color, border-color;
  }
  .mv-btn .btn01:hover {
    border-color: #131428;
  }
  .mv-btn .btn01:hover::after {
    background-color: #131428;
  }
}
[class^=mv-deco] {
  position: absolute;
  bottom: 0;
}

.mv-deco01 {
  left: 0;
  margin: 0 0 11.3rem calc(-73 / 650 * 100%);
  width: calc(198 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .mv-deco01 {
    top: 0;
    bottom: auto;
    margin: calc(-111 / 810 * 100%) 0 0 calc(106 / 810 * 100%);
    width: calc(207 / 810 * 100%);
  }
}
.mv-deco02 {
  left: 0;
  margin: 0 0 62.2rem calc(-66 / 650 * 100%);
  width: calc(178 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .mv-deco02 {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    margin: calc(31 / 810 * 100%) calc(-57 / 810 * 100%) 0 0;
    width: calc(247 / 810 * 100%);
  }
}
.mv-deco03 {
  right: 0;
  margin: 0 calc(-59 / 650 * 100%) -7rem 0;
  width: calc(200 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .mv-deco03 {
    margin: 0 calc(-57 / 810 * 100%) calc(-93 / 810 * 100%) 0;
    width: calc(200 / 810 * 100%);
  }
}

/* =====================================================================
    message
======================================================================*/
.message {
  padding: 20rem 0;
  background: url(../images/common/bg_pattern01.jpg) repeat top center/144rem auto;
}
@media screen and (min-width: 768px) {
  .message {
    background-size: 100% auto;
  }
}
@media screen and (min-width: 768px) {
  .message {
    padding: 15rem 0;
  }
  .message > .inner {
    width: calc(1620 / 1920 * 100%);
    max-width: 1620px;
  }
}
@media screen and (min-width: 768px) {
  .message-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .message-wrap > * {
    width: 50%;
  }
}
.message-wrap-left {
  padding: 10.6rem calc(50 / 650 * 100%) 12.6rem;
  color: #295a23;
  background-color: #f2cff0;
}
@media screen and (min-width: 768px) {
  .message-wrap-left {
    padding: 8rem calc(130 / 1620 * 100%) 10rem;
  }
}
.message-wrap-right {
  position: relative;
  padding-top: 1px;
}
@media screen and (min-width: 768px) {
  .message-wrap-right {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.message-wrap-right::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 13.2rem);
  background-color: #295a23;
}
@media screen and (min-width: 768px) {
  .message-wrap-right::before {
    height: 100%;
  }
}
.message-ttl {
  margin: 0 0 3.7rem calc(-120 / 550 * 100%);
  width: calc(348 / 550 * 100%);
}
@media screen and (min-width: 768px) {
  .message-ttl {
    margin: 0 0 -1rem -38.1818181818%;
    width: 63.2727272727%;
  }
}
.message-ttl svg {
  fill: #295a23;
}
.message-subttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 164%;
  line-height: 1.434;
}
@media screen and (min-width: 768px) {
  .message-subttl {
    font-size: 210%;
  }
}
.message-subttl + p {
  margin-top: 8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 92%;
  line-height: 2.076;
}
@media screen and (min-width: 768px) {
  .message-subttl + p {
    font-size: 100%;
  }
}
.message-btn {
  margin: 8rem auto 0;
  width: 15em;
  color: #f2cff0;
  background-color: #295a23;
}
@media screen and (min-width: 768px) {
  .message-btn {
    margin-left: 0;
  }
  .message-btn:hover {
    color: #ffffff;
    background-color: #131428;
  }
}
.message-img {
  position: relative;
  margin: -7.8rem calc(50% - 50vw) 0;
}
@media screen and (min-width: 768px) {
  .message-img {
    margin: -8.7rem 0 -7.8rem calc(-100 / 810 * 100%);
    width: calc(1030 / 810 * 100%);
  }
}

/* =====================================================================
    pickup
======================================================================*/
.pickup {
  padding: 10rem 0;
  background-color: #f44901;
}
@media screen and (min-width: 768px) {
  .pickup {
    padding-bottom: 15rem;
  }
}
.pickup > .inner::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(570 / 650 * 100%);
  height: calc(100% - 4.7rem);
  background: url(../images/common/bg_pattern01_purple.jpg) no-repeat center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .pickup > .inner::before {
    width: calc(1620 / 1920 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .pickup > .inner {
    width: 100%;
    max-width: 1920px;
  }
}
.pickup-ttl {
  margin: 0 0 10rem calc(-9 / 650 * 100%);
  width: calc(668 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .pickup-ttl {
    margin: 0 auto 8.5rem;
    width: calc(648 / 1920 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .pickup-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pickup-list.is-show figure figcaption.js-slide.js-slide {
  -webkit-animation: slideIn 0.4s linear 0.5s forwards;
          animation: slideIn 0.4s linear 0.5s forwards;
}
@media screen and (min-width: 768px) {
  .pickup-list li {
    margin: 0 calc(18 / 1920 * 100%);
    width: calc(428 / 1920 * 100%);
  }
}
.pickup-list li a {
  font-size: 114%;
}
@media screen and (min-width: 768px) {
  .pickup-list li a {
    font-size: 100%;
  }
}
.pickup .slick-list {
  overflow: visible;
}
.pickup .slick-slide li {
  margin: 0 1rem;
  width: 63rem !important;
}
.pickup .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2.4em 0;
  font-size: 2.6rem;
}
.pickup .slick-dots > li {
  display: inline-block;
  margin: 0 0.3em;
  width: 1.52em;
}
.pickup .slick-dots > li:nth-child(-n+9) button::before {
  content: "0";
  display: inline-block;
}
.pickup .slick-dots > li button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6em 0;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: #ffffff;
}
.pickup .slick-dots > li button::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 2em;
  z-index: -1;
}
.pickup .slick-dots > li.slick-active button {
  color: #b0afd7;
}
.pickup .slick-dots > li.slick-active button::after {
  height: 140%;
  background-color: #ffffff;
}

/* =====================================================================
    news
======================================================================*/
.news {
  padding: 18rem 0;
  background-color: #ccf3f5;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 14rem 0;
  }
}
.news::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  border: 1px solid #f12c36;
}
@media screen and (min-width: 768px) {
  .news > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1200px;
  }
}
.news-ttl {
  margin: 0 0 10rem calc(-30 / 650 * 100%);
  padding-left: 1.323em;
  font-size: 3.4rem;
  color: #f12c36;
  letter-spacing: 0.06em;
  border-left: 0.235em solid currentColor;
}
@media screen and (min-width: 768px) {
  .news-ttl {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
    font-size: 2.2rem;
  }
}
.news-ttl .en {
  display: block;
  margin-bottom: 0.2em;
  font-size: 294%;
  font-weight: 700;
  color: #ccf3f5;
  letter-spacing: 0.12em;
  text-shadow: 0.028em 0.028em 0 #f12c36, 0.028em -0.028em 0 #f12c36, -0.028em 0.028em 0 #f12c36, -0.028em -0.028em 0 #f12c36, 0.028em 0px 0 #f12c36, 0px 0.028em 0 #f12c36, -0.028em 0px 0 #f12c36, 0px -0.028em 0 #f12c36;
}
.news-ttl .ja {
  font-weight: 700;
}
.news-list {
  margin: 0 auto;
  padding-right: 0.8em;
  width: calc(600 / 650 * 100%);
  max-height: 28em;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .news-list {
    margin: 0;
    width: calc(850 / 1200 * 100%);
  }
}
.news-list::-webkit-scrollbar {
  width: 0.57em;
}
.news-list::-webkit-scrollbar-track {
  background: #a0c8ca;
  border-radius: 0.8em;
}
.news-list::-webkit-scrollbar-thumb {
  background: #f12c36;
  border-radius: 0.8em;
}
.news-list li {
  padding: 3rem 0;
  border-bottom: 1px solid #f12c36;
}
@media screen and (min-width: 768px) {
  .news-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5em;
  }
  .news-list li a:hover {
    opacity: 1;
  }
  .news-list li a:hover h3 {
    color: #f12c36;
    text-decoration: underline;
  }
}
.news-list li:first-child {
  border-top: 1px solid #f12c36;
}
.news-list li time {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 85%;
  color: #f12c36;
}
.news-list li h3 {
  color: #282828;
  line-height: 1.642;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news-list li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.7em;
  gap: 0.5em;
  font-size: 90%;
}
@media screen and (min-width: 768px) {
  .news-list li dl {
    margin: 0;
  }
}
.news-list li dl > * {
  padding: 0.4em 1em;
  font-weight: 700;
  color: #ffffff;
  background-color: #f12c36;
  line-height: 1;
  border-radius: 2em;
}

/* =====================================================================
    gallery
======================================================================*/
.gallery {
  padding: 13rem 0;
  color: #ffffff;
  background-color: #812f39;
}
@media screen and (min-width: 768px) {
  .gallery {
    padding: 8rem 0 10rem;
  }
}
.gallery-head {
  margin-bottom: 12rem;
}
@media screen and (min-width: 768px) {
  .gallery-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 8rem;
  }
}
.gallery-head p {
  padding-left: 4rem;
  font-size: 92%;
  line-height: 1.923;
  border-left: 0.4rem solid currentColor;
}
.gallery-ttl {
  text-align: center;
  margin-bottom: 8rem;
  font-size: 9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .gallery-ttl {
    text-align: right;
    margin: 0 4rem 0 0;
  }
}
.gallery-ttl .ja {
  display: block;
  margin-top: 0.8em;
  font-size: 33.33%;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) {
  .gallery-ttl .ja {
    font-size: 20%;
  }
}
.gallery-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 calc(50% - 50vw);
  will-change: transform;
}
.gallery-img img {
  width: auto;
  height: 64.2rem;
}

/* =====================================================================
    about
======================================================================*/
.about {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 28rem 0;
  background: -webkit-gradient(linear, left top, right top, from(#4579c4), color-stop(50%, #4579c4), color-stop(50%, #fbeeff), to(#fbeeff));
  background: linear-gradient(90deg, #4579c4 0%, #4579c4 50%, #fbeeff 50%, #fbeeff 100%);
}
@media screen and (min-width: 768px) {
  .about {
    padding: 18rem 0;
  }
}
.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-bg > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-bg > *::before, .about-bg > *::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: -webkit-transform 1.6s ease-in-out;
  transition: -webkit-transform 1.6s ease-in-out;
  transition: transform 1.6s ease-in-out;
  transition: transform 1.6s ease-in-out, -webkit-transform 1.6s ease-in-out;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about-bg > *::before, .about-bg > *::after {
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
}
.about-bg > *::before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.about-bg > *::after {
  top: 0;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.about-bg > *.is-active::before, .about-bg > *.is-active::after {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
.about-bg-group02::before {
  background-color: #e1badf;
}
.about-bg-group02::after {
  background-color: #4b7766;
}
.about-bg-group03::before {
  background-color: #ccf3f5;
}
.about-bg-group03::after {
  background-color: #f12c36;
}
.about-wrap {
  position: relative;
  padding: 30rem calc(60 / 650 * 100%);
  border-radius: 6rem;
  background: url(../images/common/bg_pattern01.jpg) repeat top center/144rem auto;
}
@media screen and (min-width: 768px) {
  .about-wrap {
    background-size: 100% auto;
  }
}
@media screen and (min-width: 768px) {
  .about-wrap {
    padding: 8rem calc(230 / 1400 * 100%) 30rem;
  }
}
.about-ttl {
  margin: 0 0 4rem -5.8181818182%;
  width: 52.9090909091%;
}
@media screen and (min-width: 768px) {
  .about-ttl {
    margin: 0 0 2rem -20%;
    width: 37.0212765957%;
  }
}
.about-ttl svg {
  fill: #4579c4;
}
.about-content::-webkit-scrollbar {
  width: 0.5em;
}
.about-content::-webkit-scrollbar-track {
  background: #d2dbdd;
  border-radius: 0.8em;
}
.about-content::-webkit-scrollbar-thumb {
  background: #b0c1d7;
  border-radius: 0.8em;
}
.about-content-group {
  position: relative;
}
.about-content-group:not(:last-child) {
  margin-bottom: 12rem;
}
@media screen and (min-width: 768px) {
  .about-content-group:not(:last-child) {
    margin-bottom: 26rem;
  }
}
.about-content-group h3 {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .about-content-group h3 {
    margin-bottom: 5rem;
  }
}
.about-content-group h3 span {
  padding: 0 0.1em;
  font-size: 178%;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.72;
  color: #4579c4;
  background-color: #f5e500;
}
@media screen and (min-width: 768px) {
  .about-content-group h3 span {
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 768px) {
  #about-content-group02 {
    padding-left: 20.2127659574%;
  }
}
#about-content-group02 h3 span {
  color: #4b7766;
}

@media screen and (min-width: 768px) {
  #about-content-group03 {
    padding-right: 20.2127659574%;
  }
}
#about-content-group03 h3 span {
  color: #812f39;
}

.about-content-group p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 92%;
  line-height: 2.23;
}
@media screen and (min-width: 768px) {
  .about-content-group p {
    font-size: 110%;
  }
}
.about-img01 {
  position: absolute;
  top: 0;
  right: 0;
  margin: -53.4rem -20.9090909091% 0 0;
  width: 124.7272727273%;
}
@media screen and (min-width: 768px) {
  .about-img01 {
    margin: -10rem -46.8085106383% 0 0;
    width: 72.8723404255%;
  }
}
.about-img02 {
  margin: 0 0 12rem -20.9090909091%;
  width: 119.8181818182%;
}
@media screen and (min-width: 768px) {
  .about-img02 {
    position: absolute;
    top: 0;
    left: 0;
    margin: -20.5rem 0 0 -44.6808510638%;
    width: 55.6382978723%;
  }
}
.about-img03 {
  margin: 0 -20.9090909091% 12rem auto;
  width: 120.1818181818%;
}
@media screen and (min-width: 768px) {
  .about-img03 {
    position: absolute;
    top: 0;
    right: 0;
    margin: -25rem -39.5744680851% 0 auto;
    width: 51.8085106383%;
  }
}
.about-img04 {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 0 -30rem calc(-30 / 650 * 100%);
  width: calc(724 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .about-img04 {
    margin: 0 0 -18rem -12.8571428571%;
    width: 55.9285714286%;
  }
}

/* =====================================================================
    entry
======================================================================*/
.entry {
  padding: 33rem 0 20rem;
  background: #f2e964 url(../images/common/bg_pattern01_yellow.jpg) no-repeat top center/144rem auto;
}
@media screen and (min-width: 768px) {
  .entry {
    padding: 3rem 0;
    background-size: cover;
  }
  .entry > .inner {
    width: 100%;
    max-width: 1920px;
  }
}
.entry-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .entry-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.entry-bg {
  position: absolute;
  top: 0;
  left: 0;
  margin: -20rem 0 0 calc(-44 / 650 * 100%);
  width: calc(781 / 650 * 100%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .entry-bg {
    bottom: -6rem;
    margin: auto 0 auto calc(64 / 1920 * 100%);
    width: calc(831 / 1920 * 100%);
  }
}
.entry-bg svg {
  fill: #ffffff;
}
.entry-ttl {
  text-align: center;
  margin: 0 auto 27rem;
  width: calc(312 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .entry-ttl {
    margin: 0;
    width: 50%;
  }
  .entry-ttl img {
    margin: 0 auto;
    width: 32.5%;
  }
}
@media screen and (min-width: 768px) {
  .entry-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }
}
.entry-list li {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .entry-list li {
    margin: 0 0.2rem;
    width: 48.4375%;
  }
}
.entry-list li a {
  position: relative;
  padding: 11rem calc(50 / 650 * 100%);
  background-color: #1a485f;
}
.entry-list li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 97%;
  height: 97%;
  background: url(../images/top/img_entry_corner.png) no-repeat center/100% 100%;
}
@media screen and (min-width: 768px) {
  .entry-list li a {
    padding: 14rem 9.0322580645%;
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .entry-list li a:hover {
    opacity: 1;
  }
}
.entry-list li h3 {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .entry-list li h3 {
    font-size: 6rem;
  }
}
.entry-list li .btn01 {
  color: #1a485f;
  background-color: #f4eb65;
}
.entry-list-newgraduate a:hover {
  background-color: #6579be;
}
.entry-list-newgraduate a:hover h3 {
  color: #e9b19a;
}
.entry-list-newgraduate a:hover .btn01 {
  color: #ffffff;
  -webkit-box-shadow: 0 0 2px 0 currentColor;
          box-shadow: 0 0 2px 0 currentColor;
  background-color: transparent;
}
.entry-list-career a:hover {
  background-color: #f2cff0;
}
.entry-list-career a:hover h3 {
  color: #295a23;
}
.entry-list-career a:hover .btn01 {
  color: #295a23;
  -webkit-box-shadow: 0 0 2px 0 currentColor;
          box-shadow: 0 0 2px 0 currentColor;
  background-color: transparent;
}/*# sourceMappingURL=top.css.map */