@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/**/
/* fonts */
@font-face {
  src: url(../fonts/NotoSansJP-Bold.woff) format("woff"), url(../fonts/NotoSansJP-Bold.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../fonts/NotoSansJP-Medium.woff) format("woff"), url(../fonts/NotoSansJP-Medium.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../fonts/NotoSansJP-Regular.woff) format("woff"), url(../fonts/NotoSansJP-Regular.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../fonts/Montserrat-Bold.woff) format("woff"), url(../fonts/Montserrat-Bold.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../fonts/Montserrat-SemiBold.woff) format("woff"), url(../fonts/Montserrat-SemiBold.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  src: url(../fonts/Montserrat-Medium.woff) format("woff"), url(../fonts/Montserrat-Medium.woff2) format("woff2"), url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
/* font:rem=px デザインしたwidthを割る  */
html {
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 769px) {
  html {
    font-size: 0.6944444444vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.2;
  color: #606060;
  font-display: optional;
  font-size: 1.4rem;
  /* ページ遷移時 */
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
body.fade::after {
  opacity: 1;
}

.en {
  font-family: "Montserrat", serif;
  line-height: 1;
}

.sp_only {
  display: block;
}
@media only screen and (min-width: 769px) {
  .sp_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media only screen and (min-width: 769px) {
  .pc_only {
    display: block;
  }
}

/**/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}
@media only screen and (min-width: 769px) {
  .header {
    padding: 2.5rem;
  }
}
.header .to_top {
  cursor: pointer;
}
.header .logo {
  width: 14rem;
}
@media only screen and (min-width: 769px) {
  .header .logo {
    width: 22rem;
  }
}
.header .right_contents {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .header .right_contents {
    gap: 5rem;
  }
}
@media only screen and (min-width: 769px) {
  .header .right_contents .entry_btn {
    order: 2;
  }
}
.header .right_contents .entry_btn a {
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  background: #4593D0;
  border: solid 1px #fff;
  color: #fff;
  border-radius: 0.2rem;
  letter-spacing: 0.2em;
  padding: 1.2em 2em;
  margin-right: 5rem;
}
@media only screen and (min-width: 769px) {
  .header .right_contents .entry_btn a {
    font-size: 1.8rem;
    padding: 1.5em 4em;
    margin-right: 0;
  }
}
@media only screen and (min-width: 769px) {
  .header .right_contents .entry_btn a {
    order: 2;
  }
}
.header .right_contents .nav_btn {
  display: none;
}
@media only screen and (max-width: 769px) {
  .header .right_contents .nav_btn {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    width: 3rem;
    height: 2.3rem;
    transition: all 0.4s;
    z-index: 1000;
  }
}
.header .right_contents .nav_btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #001E3C;
  transition: all 0.4s;
}
.header .right_contents .nav_btn span:first-of-type {
  top: 0;
}
.header .right_contents .nav_btn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .right_contents .nav_btn span:last-of-type {
  bottom: 0;
}
.header .right_contents .nav_btn.open span {
  background: #fff;
}
.header .right_contents .nav_btn.open span:first-of-type {
  top: 1rem;
  transform: rotate(-45deg);
}
.header .right_contents .nav_btn.open span:nth-last-of-type(2) {
  display: none;
}
.header .right_contents .nav_btn.open span:last-of-type {
  top: 1rem;
  transform: rotate(45deg);
}
@media only screen and (max-width: 769px) {
  .header .right_contents nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    font-size: 1.4rem;
    transition: all 0.4s;
    z-index: 999;
  }
}
.header .right_contents nav.open {
  right: 0;
}
.header .right_contents nav .nav_menu {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
@media only screen and (max-width: 769px) {
  .header .right_contents nav .nav_menu {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    gap: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .header .right_contents nav .nav_menu {
    gap: 5rem;
  }
}
.header .right_contents nav .nav_menu li a {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #001E3C;
}
@media only screen and (max-width: 769px) {
  .header .right_contents nav .nav_menu li a {
    display: block;
    padding: 1em 0;
    color: #fff;
  }
}

/* common */
.heading {
  text-align: center;
  margin-bottom: 4rem;
}
.heading h2.en {
  text-transform: uppercase;
  color: #4593D0;
  font-family: "Montserrat", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 4.8rem;
}
@media only screen and (min-width: 769px) {
  .heading h2.en {
    font-size: 9.6rem;
  }
}
.heading h3 {
  margin-top: 1em;
}
@media only screen and (min-width: 769px) {
  .heading h3 {
    margin-top: 1rem;
  }
}
.heading h3.ja {
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-left: 1.4em;
}
.heading h3.ja::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.4rem;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/**/
.inner {
  padding: 6rem 2.5rem;
}
@media only screen and (min-width: 769px) {
  .inner {
    padding: 12rem 22rem;
  }
}

/**/
.read_more {
  text-align: center;
}
.read_more a {
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  font-family: "Montserrat", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  border: solid 1px #4593D0;
  border-radius: 10rem;
  color: #4593D0;
  padding: 1.3em 9em 1.3em 5em;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  .read_more a {
    padding: 1.7em 8.4em 1.7em 5.6em;
  }
}
.read_more a span {
  position: relative;
  z-index: 1;
}
.read_more a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 4.5rem;
  background: url(../images/btn_deco_blue.svg) no-repeat center/contain;
}
@media only screen and (min-width: 769px) {
  .read_more a::after {
    width: 5.6rem;
    height: 5.6rem;
  }
}
.read_more a::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transition: transform ease 0.4s;
  background: #4593D0;
  transform: scaleX(0);
  transform-origin: 100% 50%;
}
.read_more a.white {
  border: solid 1px #fff;
  color: #fff;
}
.read_more a.white::before {
  background: #fff;
}
.read_more a.white::after {
  background: url(../images/btn_deco_white.svg) no-repeat center/contain;
}
.read_more a.white:hover {
  color: #4593D0;
}
.read_more a.white:hover::after {
  background: url(../images/btn_deco_blue.svg) no-repeat center/contain;
}
.read_more a:hover {
  color: #fff;
}
.read_more a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.read_more a:hover::after {
  background: url(../images/btn_deco_white.svg) no-repeat center/contain;
}

/**/
.entry_btn a {
  position: relative;
  z-index: 1;
}
.entry_btn a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #005BAB;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.4s;
}
.entry_btn a:hover::after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/* ▼ TOP start ▼ */
/* fv */
.fv {
  position: relative;
  overflow: hidden;
  min-height: 55rem;
}
@media only screen and (max-width: 769px) {
  .fv {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 769px) {
  .fv {
    min-height: 65rem;
  }
}
.fv::before {
  position: absolute;
  content: "";
  background: url(../images/back_fv_grade_sp.webp) no-repeat left -20rem top -20rem/118rem 95.45rem;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media only screen and (min-width: 769px) {
  .fv::before {
    background: url(../images/back_fv_grade_sp.webp) no-repeat left -20rem top -40rem/205.4rem 133.8rem;
  }
}
.fv .fv_animation {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fv_animation 20s linear infinite;
  mix-blend-mode: multiply;
}
.fv .fv_animation:nth-child(2) {
  animation-delay: 5s;
}
.fv .fv_animation:nth-child(3) {
  animation-delay: 10s;
}
.fv .fv_animation:nth-child(4) {
  animation-delay: 15s;
}
@keyframes fv_animation {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  28% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.fv .fv_animation img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fv .inner {
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .fv .inner {
    padding: 14.3rem 0 0 10rem;
  }
}
.fv .inner h2 {
  position: relative;
  z-index: 0;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3em;
  font-size: 3.6rem;
  padding-left: 2rem;
}
@media only screen and (min-width: 769px) {
  .fv .inner h2 {
    font-size: 8rem;
    padding-left: 0;
  }
}
.fv .inner h2 span {
  display: inline-block;
  position: relative;
}
.fv .inner h2 span::after {
  position: absolute;
  content: "";
  bottom: 0.44em;
  left: -2rem;
  height: 1px;
  width: calc(96.3% + 2rem);
  background: #fff;
}
@media only screen and (min-width: 769px) {
  .fv .inner h2 span::after {
    left: -10rem;
    width: calc(96.3% + 10rem);
  }
}
.fv .inner h2 span:nth-of-type(2)::after {
  width: calc(87.6% + 2rem);
}
@media only screen and (min-width: 769px) {
  .fv .inner h2 span:nth-of-type(2)::after {
    width: calc(87.6% + 10rem);
  }
}
.fv .scroll_bar {
  position: absolute;
  content: "";
  bottom: 4rem;
  width: 6.5rem;
  height: 5.7rem;
  font-size: 1rem;
  letter-spacing: 0.3em;
}
@media only screen and (max-width: 769px) {
  .fv .scroll_bar {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .fv .scroll_bar {
    bottom: 9.3rem;
    right: -3rem;
    height: 1.4rem;
    width: 12.3rem;
    font-size: 1.2rem;
    text-align: right;
    transform: rotate(90deg);
  }
}
.fv .scroll_bar span {
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 769px) {
  .fv .scroll_bar span {
    display: inline-block;
  }
}
.fv .scroll_bar::before, .fv .scroll_bar::after {
  position: absolute;
  content: "";
}
.fv .scroll_bar::after {
  width: 1px;
  height: 4.5rem;
  background: #fff;
}
@media only screen and (max-width: 769px) {
  .fv .scroll_bar::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 769px) {
  .fv .scroll_bar::after {
    width: 4.5rem;
    height: 1px;
    left: 0;
    bottom: 60%;
  }
}
.fv .scroll_bar::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media only screen and (max-width: 769px) {
  .fv .scroll_bar::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 769px) {
  .fv .scroll_bar::before {
    width: 0.8rem;
    height: 0.8rem;
    animation: circlemovepc 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
    top: 8%;
  }
}
@keyframes circlemove {
  0% {
    top: 1rem;
  }
  100% {
    top: 5.5rem;
  }
}
@keyframes circlemovepc {
  0% {
    left: 0;
  }
  100% {
    left: 3.5rem;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}

/* about_us */
.about_us {
  position: relative;
  background: url(../images/en_about_us.svg) no-repeat top 1.5rem right/3.758rem 56.678rem;
  z-index: 0;
}
@media only screen and (min-width: 769px) {
  .about_us {
    background: url(../images/en_about_us.svg) no-repeat top 2rem right/5.481rem 82.656rem;
  }
}
.about_us::after {
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../images/back_grade_about_us.webp) no-repeat;
  background-size: contain;
  width: 53rem;
  height: 53rem;
  top: 3rem;
  left: -14rem;
}
@media only screen and (min-width: 769px) {
  .about_us::after {
    width: 106.2rem;
    height: 106.2rem;
    top: 0;
    left: -31rem;
  }
}
.about_us .inner {
  /*padding: 6rem 2.5rem 0;*/
  padding: 6rem 2.5rem;
}
@media only screen and (min-width: 769px) {
  .about_us .inner {
    padding: 12rem 22rem 23.1rem 0;
  }
}
.about_us .heading {
  text-align: left;
}
@media only screen and (min-width: 769px) {
  .about_us .heading {
    text-align: right;
  }
}
.about_us .heading h3.ja::before {
  background: #ED86B3;
}
@media only screen and (min-width: 769px) {
  .about_us .contents {
    display: flex;
    justify-content: flex-end;
    gap: 9rem;
  }
}
.about_us .contents .image {
  position: relative;
}
.about_us .contents .image .main_photo {
  width: 31.5rem;
  filter: drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.1));
}
@media only screen and (min-width: 769px) {
  .about_us .contents .image .main_photo {
    width: 56rem;
    filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.1));
  }
}
.about_us .contents .image .signboard {
  position: absolute;
  width: 18rem;
  bottom: -4rem;
  left: 16rem;
  filter: drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.1));
}
@media only screen and (min-width: 769px) {
  .about_us .contents .image .signboard {
    width: 30rem;
    bottom: -8rem;
    left: 46.6rem;
    filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.1));
  }
}
@media only screen and (max-width: 769px) {
  .about_us .contents .image + div {
    margin-top: 6.5rem;
  }
}
@media only screen and (min-width: 769px) {
  .about_us .contents .text {
    width: 47rem;
  }
}
.about_us .contents .read_more {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .about_us .contents .read_more {
    text-align: right;
    margin-top: 5rem;
  }
}

/* interview */
.interview {
  background: url(../images/en_interview.svg) no-repeat bottom 4rem left -0.2rem/39.889rem 4.2rem, linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%), url(../images/back_gray.webp);
}
@media only screen and (min-width: 769px) {
  .interview {
    background: url(../images/en_interview.svg) no-repeat bottom 10rem left -0.4rem/146.26rem 15.4rem, linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%), url(../images/back_gray.webp);
  }
}
.interview .inner {
  padding: 6rem 2.5rem 8rem;
}
@media only screen and (min-width: 769px) {
  .interview .inner {
    padding: 0 22rem 18rem;
  }
}
.interview .heading h3.ja::before {
  background: #F8C170;
}
@media only screen and (min-width: 769px) {
  .interview .video ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
.interview .video ul li {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  filter: drop-shadow(0 1.5rem 2rem rgba(0, 0, 0, 0.1));
}
@media only screen and (min-width: 769px) {
  .interview .video ul li {
    filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.1));
  }
}
.interview .video ul li .video_wrap {
  aspect-ratio: 16/9;
  width: 100%;
}
.interview .video ul li .video_wrap iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.interview .video ul li .text_wrap {
  position: relative;
  text-align: center;
  line-height: 1.6;
  padding: 1rem 0 1.5rem;
}
.interview .video ul li .text_wrap .department {
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) {
  .interview .video ul li .text_wrap .department {
    font-size: 1.6rem;
  }
}
.interview .video ul li .text_wrap .name {
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .interview .video ul li .text_wrap .name {
    font-size: 2.6rem;
  }
}
.interview .video ul li .text_wrap::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.interview .video ul li:first-child .text_wrap .department {
  color: #ED86B3;
}
.interview .video ul li:first-child .text_wrap::after {
  background: #ED86B3;
}
.interview .video ul li:nth-child(2) .text_wrap .department {
  color: #F8C170;
}
.interview .video ul li:nth-child(2) .text_wrap::after {
  background: #F8C170;
}
.interview .video ul li:nth-child(3) .text_wrap .department {
  color: #A7D081;
}
.interview .video ul li:nth-child(3) .text_wrap::after {
  background: #A7D081;
}
.interview .video ul li:nth-child(4) .text_wrap .department {
  color: #4593D0;
}
.interview .video ul li:nth-child(4) .text_wrap::after {
  background: #4593D0;
}
@media only screen and (max-width: 769px) {
  .interview .video ul li + li {
    margin-top: 2rem;
  }
}

/* recruit */
@media only screen and (min-width: 769px) {
  .recruit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 769px) {
  .recruit .images {
    max-height: 57rem;
  }
}
.recruit .inner {
  overflow: hidden;
  position: relative;
  color: #fff;
  background: url(../images/back_recruit.webp) no-repeat top -21rem right -55rem/274%, #A7D081;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 769px) {
  .recruit .inner {
    padding: 6rem 2.5rem;
  }
}
@media only screen and (min-width: 769px) {
  .recruit .inner {
    background: url(../images/back_recruit.webp) no-repeat top -30rem right -85rem/236%, #A7D081;
    padding: 0;
  }
}
.recruit h2 {
  position: relative;
  z-index: 1;
}
.recruit h2.en {
  color: #fff;
}
.recruit h3.ja::before {
  background: #fff;
}

/* culture */
.culture {
  background: url(../images/back_gray.webp) no-repeat top left/cover;
}
@media only screen and (min-width: 769px) {
  .culture {
    background: url(../images/back_culture_left.webp), linear-gradient(to bottom, rgb(69, 147, 208) 0%, rgb(69, 147, 208) 100%), url(../images/back_gray.webp);
    background-position: top left, top left, top left;
    background-size: 11rem 100%, 11rem 100%, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
  }
}
.culture .heading h3.ja::before {
  background: #A7D081;
}
.culture .numbers ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.culture .numbers ul li {
  text-align: center;
  background: #fff;
  overflow: hidden;
  position: relative;
  border-radius: 0.5rem;
  padding: 1.6rem 0 2.2rem;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li {
    border-radius: 1rem;
    padding: 3.2rem 0 4.5rem;
  }
}
.culture .numbers ul li h4 {
  font-size: 1rem;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li h4 {
    font-size: 2rem;
  }
}
.culture .numbers ul li .main {
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li .main {
    font-size: 2.4rem;
  }
}
.culture .numbers ul li .main p {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.culture .numbers ul li .main.ratio {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li .main.ratio {
    gap: 3rem;
  }
}
.culture .numbers ul li .main.ratio .gender_wrap .gender {
  color: #606060;
  display: block;
  font-size: 0.8rem;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li .main.ratio .gender_wrap .gender {
    font-size: 1.6rem;
  }
}
.culture .numbers ul li .main.ratio .gender_wrap p .en {
  font-size: 3.5rem;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li .main.ratio .gender_wrap p .en {
    font-size: 7rem;
  }
}
.culture .numbers ul li .main .en {
  font-weight: 500;
  font-size: 4.8rem;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li .main .en {
    font-size: 9.6rem;
  }
}
.culture .numbers ul li .note {
  margin-top: 0.5em;
  font-size: 0.8rem;
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li .note {
    font-size: 1.4rem;
  }
}
.culture .numbers ul li::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
@media only screen and (min-width: 769px) {
  .culture .numbers ul li::after {
    width: 2rem;
    height: 2rem;
  }
}
.culture .numbers ul li:first-child .main, .culture .numbers ul li:nth-child(5) .main {
  color: #ED86B3;
}
.culture .numbers ul li:first-child::after, .culture .numbers ul li:nth-child(5)::after {
  background: #ED86B3;
}
.culture .numbers ul li:nth-child(2) .main, .culture .numbers ul li:nth-child(6) .main {
  color: #F8C170;
}
.culture .numbers ul li:nth-child(2)::after, .culture .numbers ul li:nth-child(6)::after {
  background: #F8C170;
}
.culture .numbers ul li:nth-child(3) .main, .culture .numbers ul li:nth-child(4) .main {
  color: #A7D081;
}
.culture .numbers ul li:nth-child(3)::after, .culture .numbers ul li:nth-child(4)::after {
  background: #A7D081;
}
.culture .read_more {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .culture .read_more {
    margin-top: 5rem;
  }
}

/* credo */
.credo {
  background: linear-gradient(to bottom, rgba(9, 52, 96, 0.5) 0, rgba(9, 52, 96, 0.5) 100%), url(../images/credo_back_sp.webp) no-repeat center right/cover;
  background-blend-mode: multiply, normal;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .credo {
    background: linear-gradient(to bottom, rgba(9, 52, 96, 0.5) 0, rgba(9, 52, 96, 0.5) 100%), url(../images/credo_back.webp) no-repeat center/cover;
  }
}
.credo .inner {
  text-align: center;
}
@media only screen and (max-width: 769px) {
  .credo .heading {
    margin-bottom: 2.5rem;
  }
}
.credo .heading h2.en {
  background: linear-gradient(87deg, #FFCF88 9.92%, #CCFF9D 92.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.credo .heading h3.ja {
  color: #fff;
}
.credo .heading h3.ja::before {
  background: #fff;
}
.credo .read_more {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .credo .read_more {
    margin-top: 5rem;
  }
}

/* ▲ TOP end ▲ */
/* ▼ common section ▼ */
/* entry */
.entry {
  text-align: center;
  color: #fff;
  position: relative;
  background: url(../images/back_entry.webp) no-repeat center/374%;
}
@media only screen and (min-width: 769px) {
  .entry {
    background: url(../images/back_entry.webp) no-repeat center/180%;
  }
}
@media only screen and (max-width: 769px) {
  .entry .heading {
    margin-bottom: 2.5rem;
  }
}
.entry .heading h2.en {
  color: #fff;
}
.entry .heading h3.ja::before {
  background: #fff;
}
@media only screen and (min-width: 769px) {
  .entry .text {
    font-size: 1.8rem;
  }
}
.entry .entry_btn {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .entry .entry_btn {
    margin-top: 5rem;
  }
}
.entry .entry_btn a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  padding: 1.5em 0;
  width: 100%;
  background: #4593D0;
  color: #fff;
  border: solid 1px #fff;
}
@media only screen and (min-width: 769px) {
  .entry .entry_btn a {
    font-size: 1.8rem;
    padding: 1.5em 7.5em;
    width: auto;
  }
}
.entry .entry_btn a::before {
  position: absolute;
  content: "";
  width: 0.675rem;
  height: 1.35rem;
  background: #fff;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* footer */
.footer {
  background: #001E3C;
  color: #fff;
  text-align: center;
}
.footer .inner {
  padding: 4rem 2.5rem;
}
@media only screen and (min-width: 769px) {
  .footer .inner {
    padding: 8rem 22rem;
  }
}
@media only screen and (min-width: 769px) {
  .footer .flex {
    display: flex;
    gap: 9rem;
  }
}
.footer .logo {
  width: 20rem;
}
@media only screen and (max-width: 769px) {
  .footer .logo {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 769px) {
  .footer .logo {
    width: 26.5rem;
  }
}
@media only screen and (max-width: 769px) {
  .footer ul {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 769px) {
  .footer ul {
    width: 100%;
    display: flex;
    align-items: center;
    /*justify-content: space-around;*/
    justify-content: center;
  }
}
.footer ul li {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .footer ul li {
    /*width: 20%;*/
    width: 18%;
  }
}
@media only screen and (max-width: 769px) {
  .footer ul li + li {
    margin-top: 2rem;
  }
}
.footer .copy {
  font-size: 1rem;
  margin-top: 6rem;
}
@media only screen and (min-width: 769px) {
  .footer .copy {
    margin-top: 8rem;
  }
}

/* ▲ common section ▲ */
/* ▼ 下層ページ common ▼ */
.lower_layer .inner {
  padding: 1.5rem 2.5rem 0;
}
@media only screen and (min-width: 769px) {
  .lower_layer .inner {
    padding: 6rem 22rem 0;
  }
}
.lower_layer .breadcrumbs {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.lower_layer .breadcrumbs a {
  border-bottom: solid 1px;
}
.lower_layer h2 {
  font-weight: 600;
}
.lower_layer h2.en {
  color: #4593D0;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
}
@media only screen and (min-width: 769px) {
  .lower_layer h2.en {
    font-size: 7rem;
  }
}
.lower_layer h2 + div {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .lower_layer h2 + div {
    margin-top: 5rem;
  }
}
.lower_layer .top_image {
  width: 100%;
}
.lower_layer .top_image img {
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  max-height: 20rem;
}
@media only screen and (min-width: 769px) {
  .lower_layer .top_image img {
    max-height: 40rem;
  }
}
.lower_layer .top_image + .intro {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .lower_layer .top_image + .intro {
    margin-top: 4rem;
  }
}
.lower_layer .intro--text + div {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .lower_layer .intro--text + div {
    margin-top: 4rem;
  }
}
.lower_layer .intro .box_wrap {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .lower_layer .intro .two_boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
.lower_layer .intro .two_boxes .box .image_list {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
@media only screen and (min-width: 769px) {
  .lower_layer .intro .two_boxes .box .image_list {
    margin-top: 3rem;
  }
}
.lower_layer .intro .two_boxes .box .image_list figure {
  width: calc(50% - 1.5rem);
}
.lower_layer .intro .two_boxes .box .image_list figure img {
  display: block;
  max-height: 5rem;
}
@media only screen and (max-width: 769px) {
  .lower_layer .intro .two_boxes .box .image_list figure img {
    max-height: 4rem;
  }
}
@media only screen and (max-width: 769px) {
  .lower_layer .intro .two_boxes .box + .box {
    margin-top: 2rem;
  }
}

/* common box */
.box {
  overflow: hidden;
  border-radius: 1rem;
  border: solid 1px;
  position: relative;
  padding: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .box {
    padding: 4rem 5rem;
  }
}
@media only screen and (min-width: 769px) {
  .box.variable {
    display: inline-block;
  }
}
.box h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 769px) {
  .box h3 {
    font-size: 3rem;
  }
}
.box::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.box .point_list ul li {
  position: relative;
  padding-left: 1.25em;
}
.box .point_list ul li::before {
  position: absolute;
  content: "■";
  top: 0;
  left: 0;
  font-size: 1em;
}
.box .point_list.multiple_ul {
  display: inline-flex;
}
@media only screen and (max-width: 769px) {
  .box .point_list.multiple_ul {
    flex-direction: column;
  }
}
@media only screen and (min-width: 769px) {
  .box .point_list.multiple_ul {
    gap: 5rem;
  }
}
.box.pink {
  border-color: #ED86B3;
  background: rgba(237, 134, 179, 0.05);
}
.box.pink h3 {
  color: #ED86B3;
}
.box.pink::after {
  background: #ED86B3;
}
.box.pink .point_list ul li::before {
  color: #ED86B3;
}
.box.blue {
  border-color: #4593D0;
  background: rgba(69, 147, 208, 0.05);
}
.box.blue h3 {
  color: #4593D0;
}
.box.blue::after {
  background: #4593D0;
}
.box.blue .point_list ul li::before {
  color: #4593D0;
}
.box.orange {
  border-color: #F8C170;
  background: rgba(248, 193, 112, 0.05);
}
.box.orange h3 {
  color: #F8C170;
}
.box.orange::after {
  background: #F8C170;
}
.box.orange .point_list ul li::before {
  color: #F8C170;
}
.box.yellow_green {
  border-color: #A7D081;
  background: rgba(167, 208, 129, 0.05);
}
.box.yellow_green h3 {
  color: #A7D081;
}
.box.yellow_green::after {
  background: #A7D081;
}
.box.yellow_green .point_list ul li::before {
  color: #A7D081;
}

/**/
.common_contents.after_top {
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%), url(../images/back_gray.webp);
}
.common_contents h2 {
  color: #001E3C;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 769px) {
  .common_contents h2 {
    margin-bottom: 5rem;
  }
}
.common_contents h2 span {
  display: inline-block;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 1em;
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  .common_contents h2 span {
    font-size: 3rem;
  }
}
.common_contents h2 span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.4rem;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media only screen and (min-width: 769px) {
  .common_contents h2 span::before {
    width: 1.5rem;
    height: 1.9rem;
  }
}
.common_contents h2 span.blue::before {
  background: #4593D0;
}
.common_contents h2 span.pink::before {
  background: #ED86B3;
}
.common_contents h2 span.orange::before {
  background: #F8C170;
}
.common_contents h2 span.yellow_green::before {
  background: #A7D081;
}
@media only screen and (min-width: 769px) {
  .common_contents .contents {
    width: 90%;
    margin: 0 auto;
  }
}
.common_contents .contents dl dt {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .common_contents .contents dl dt {
    font-size: 2.6rem;
  }
}
.common_contents .contents dl dt + dd {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: solid 1px;
}
@media only screen and (min-width: 769px) {
  .common_contents .contents dl dt + dd {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.common_contents .contents dl + dl {
  margin-top: 4rem;
}
@media only screen and (min-width: 769px) {
  .common_contents .contents dl + dl {
    margin-top: 6rem;
  }
}
.common_contents .contents dl + div {
  margin-top: 4rem;
}
@media only screen and (min-width: 769px) {
  .common_contents .contents dl + div {
    margin-top: 6rem;
  }
}
.common_contents .contents dl.blue dt {
  color: #4593D0;
}
.common_contents .contents dl.blue dt + dd {
  border-color: #4593D0;
}
.common_contents .contents dl.orange dt {
  color: #F8C170;
}
.common_contents .contents dl.orange dt + dd {
  border-color: #F8C170;
}
.common_contents .contents dl.yellow_green dt {
  color: #A7D081;
}
.common_contents .contents dl.yellow_green dt + dd {
  border-color: #A7D081;
}
@media only screen and (min-width: 769px) {
  .common_contents .box_wrap {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.common_contents .three_things ul li .image {
  position: relative;
  max-height: 24rem;
  filter: drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.1));
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li .image {
    width: 42%;
    max-height: 30rem;
    filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.1));
  }
}
.common_contents .three_things ul li .image::after {
  position: absolute;
  content: "";
  width: calc(90% + 2.5rem);
  height: 100%;
  top: 2.5rem;
  left: -2.5rem;
  border-radius: 0 1rem 1rem 0;
  z-index: -1;
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li .image::after {
    width: calc(90% + 22rem);
    top: 5rem;
    left: -22rem;
  }
}
.common_contents .three_things ul li .image img {
  border-radius: 1rem;
}
@media only screen and (max-width: 769px) {
  .common_contents .three_things ul li .image + .text {
    margin-top: 4.5rem;
  }
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li .text {
    width: 51.5%;
  }
}
.common_contents .three_things ul li .text h3 {
  font-weight: 500;
  line-height: 1.6;
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li .text h3 {
    font-size: 2.6rem;
  }
}
.common_contents .three_things ul li .text h3 + p {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li .text h3 + p {
    margin-top: 2rem;
  }
}
.common_contents .three_things ul li:first-child .image::after {
  background: rgba(237, 134, 179, 0.2);
}
.common_contents .three_things ul li:first-child .text h3 {
  color: #ED86B3;
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li:nth-child(2) .image {
    order: 2;
  }
}
.common_contents .three_things ul li:nth-child(2) .image::after {
  background: rgba(248, 193, 112, 0.2);
  border-radius: 1rem 0 0 1rem;
  right: -2.5rem;
  left: auto;
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li:nth-child(2) .image::after {
    right: -22rem;
  }
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li:nth-child(2) .text {
    order: 1;
  }
}
.common_contents .three_things ul li:nth-child(2) .text h3 {
  color: #F8C170;
}
.common_contents .three_things ul li:nth-child(3) .image::after {
  background: rgba(167, 208, 129, 0.2);
}
.common_contents .three_things ul li:nth-child(3) .text h3 {
  color: #A7D081;
}
.common_contents .three_things ul li + li {
  margin-top: 4rem;
}
@media only screen and (min-width: 769px) {
  .common_contents .three_things ul li + li {
    margin-top: 12rem;
  }
}

/* ▲ 下層ページ common ▲ *//*# sourceMappingURL=style.css.map */