@charset "utf-8";

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", Arial, sans-serif;
  font-style: normal;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  font-size: 1.6rem;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

a,
.submit {
  text-decoration: none;
  cursor: pointer;
}

h2 {
  font-size: 4.0rem;
}

.font-red {
  color: #e11000;
}

.underline__red {
  border-bottom: #e11000 1px solid;
}

.underline__blue {
  border-bottom: #063e72 1px solid;
}

.fs-30 {
  font-size: 3.0rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media(max-width:959px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/*=== FV ===*/
.main-area {
  position: relative;
  height: 90vh;
  width: 100%;
}

.main-area .bg {
  height: 90vh;
}

.box-fv {
  display: flex;
  margin-top: -8px;
  width: 100%;
}

.box-fv img {
  width: 50%;
}

.main-area .copy {
  writing-mode: vertical-rl;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 32px !important;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 6rem;
  font-family: "Zen Kaku Gothic New";
  font-weight: 300;
  color: #063e72;
  letter-spacing: 0.2em;
  z-index: 99;
}

.main-area .copy p{
  margin: 0;
}

.main-area .copy span {
  padding: 10px 0;
  background-color: #fff;
}

.main-area .copy2 {
  position: absolute;
  top: 24%;
  right: 23%;
  background-color: #063e72;
  width: 240px;
  font-size: 2.8rem;
  font-weight: 700 !important;
  font-family: "Zen Kaku Gothic New";
  letter-spacing: 0.02em;
  text-align: center;
  padding: 8px 0;
  z-index: 9;
}

.main-area .copy2 .text-blue {
  color: #063e72;
  background-color: #e8b11b;
  font-weight: 700 !important;
  margin: 6px 0;
  padding: 4px;
  z-index: 9;
  ;
}

.main-area .copy2 .text-white {
  color: #fff;
}

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #063e72;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }

  50% {
    transform-origin: top;
    transform: scaleY(1);
  }

  50.001% {
    transform-origin: bottom;
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.box-img1 {
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 75vh;
}

.box-img1 img {
  height: auto;
  width: 205px;
  display: block;
  max-height: 25vh;
}

.box-img1 .delay-time02 {
  margin-left: 70px;
}

.box-img2 {
  position: absolute;
  right: 0px;
  bottom: 0px;
  margin: 0;
  height: 75vh;
}

.box-img2 img {
  height: auto;
  width: 205px;
  display: block;
  max-height: 25vh;
}

.box-img2 .delay-time02 {
  margin-left: 70px;
}



/*画像が順番に出現*/
.box-img1 .delay-time02 {
  animation-delay: 1s;
}

.box-img1 .delay-time04 {
  animation-delay: 0.6s;
}

.box-img2 .delay-time02 {
  animation-delay: 0.4s;
}

.box-img2 .delay-time04 {
  animation-delay: 1.2s;
}

.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:1199px) {
  .main-area {
    margin-top: 86px;
    height: auto;
  }

  .main-area .copy2 {
    top: 2%;
    right: 2%;
    padding: 4px 0;
  }
}

@media(max-width:960px) {
  .main-area .copy {
    font-size: 4.0rem;
    top: 36%;
    gap: 8px !important;
  }

  .box-img1,
  .box-img2 {
    width: 29vw;
    top: 86px
  }

  .box-img2 img,
  .box-img1 img {
    width: 25vw;
    height: auto;
    margin-bottom: 4px;
  }

  .box-img2 .delay-time02,
  .box-img1 .delay-time02 {
    margin-left: 4vw;
  }

  .main-area .bg {
    height: 65vh;
    ;
  }

  .main-area .copy2 {
    font-size: 1.4rem;
    width: 120px;
    top: 1%;
    right: 2vw;
    padding: 4px 0;
  }
}

@media(max-width:560px) {
  .main-area .copy {
    font-size: 3.2rem;
  }
}

/* === header === */
header {
  max-width: 1280px;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

h1 {
  display: flex;
  align-items: center;
  padding-right: 24px;
  font-size: 1.4rem;
}

.header-container {
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  background-color: #063e72;
  height: 62px;
  white-space: nowrap;
}

.gnav ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
}

.gnav ul li a::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -5%;
  width: 110%;
  height: 4px;
  background: #fff;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

.gnav-list li a:hover::after {
  transform: scale(1, 1);
}

header h1 img {
  width: 160px;
  margin: 40px 0 0 -30px;
}

.gnav {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.gnav ul {
  display: flex;
  gap: 30px;
}

.button-contact {
  text-align: center;
  color: #fff;
  background-color: #ff4300;
  padding: 0 10px;
  height: 100px;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.ttl {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #e8b11b;
}

/*=== CTA ===*/
.cta-pc img {
  width: 164px;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 9999;
  transition: ease .3s;
  filter: drop-shadow(2px 2px 3px #999);
}

.cta-pc img:hover {
  transform: scale(1.05, 1.05);
}

.cta-sp {
  display: none;
}

@media(max-width:640px) {
  .cta-pc {
    display: none;
  }

  .cta-sp {
    display: block;
  }

  .cta-sp img {
    width: 80%;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
  }

  .slider-p {
    font-size: 3.3vw;
  }

  .slick-dots {
    margin-top: -27px;
  }
}

/*=== drawer-nav ===*/
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 80%;
  height: 80vh;
  background: #e8b11b;
  transition: all 0.9s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 70px;
  left: 12%;
}

#g-nav li {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

#g-nav li a {
  color: #063e72;
  font-size: 2.0rem;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
}

@media(max-width:1199px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 2.4rem !important;
  }

  #gnav {
    display: none;
  }

  header {
    height: 80px;
    padding: 0;
    display: flex;
    background-color: #063e72;
    top: 0;
    width: 100vw;
  }

  .header-container {
    width: 100vw;
    justify-content: flex-start;
    height: 80px;
    border-top: 6px solid #e8b11b;
  }

  header h1 img {
    width: 75px;
    margin: 0 15px;
  }

  .ttl {
    color: #e8b11b;
    background-color: #063e72;
  }

  .slider-area {
    margin-top: 85px;
  }

  .slider-p br {
    display: block;
  }
}

@media screen and (min-width:1200px) {
  .openbtn {
    display: none;
  }
}

@media(max-width:480px) {
  h1 {
    font-size: 1.4rem;
  }

  header h1 img {
    width: 60px;
    margin: 0 10px;
  }
}

/*=== ハンバーガーボタン==*/
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 23px;
  right: 8px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background-color: #e8b11b;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11px;
  height: 2px;
  background-color: #063e72;
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 12px;
}

.openbtn span:nth-of-type(2) {
  top: 22px;
}

.openbtn span:nth-of-type(3) {
  top: 32px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

/* === message === */
.section-message {
  padding-bottom: 80px;
}

.section-message h2 {
  font-size: 40px;
  color: #1a4d7e;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
  background-image: url(../img/triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0%;
  height: 237px;
  width: 40vw;
  margin: 0 auto;
  padding-top: 50px;
}

.section-message h2 span {
  font-size: 2.4rem;
  color: #e8b11b;
  font-weight: 600;
}

.section-message p {
  max-width: 960px;
  margin: 0 auto;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding: 8px 20px;
}

@media(max-width:959px) {
  .section-message {
    padding: 0 0 60px;
  }

  .section-message h2 {
    height: 130px;
    width: 92vw;
    padding-top: 40px;
  }

  .section-message h2 span {
    font-size: 1.6rem;
  }
}

/* === about === */
.about-frame {
  width: 100%;
  margin-bottom: -10%;
}

.section-about {
  background-color: #f2f2f2;
  max-width: 1280px;
  margin: 0px auto 0;
  position: relative;
  padding-top: 50px;
}

.section-about h2 {
  position: relative;
  color: #fff;
  text-align: center;
  background-image: url("../img/ribbon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  padding: 0 0 15px;
}

.section-about h2::before {
  content: url(../img/scissors.png);
  position: absolute;
  top: -150px;
  left: 100px;
  transform: scale(0.5);
}

.section-about h3 {
  position: relative;
  color: #fff;
  font-size: 3.0rem;
  text-align: center;
  margin: 50px auto 40px;
}

.h3-comb::after {
  content: url(../img/comb.png);
  position: absolute;
  top: -80px;
  right: 0px;
  transform: scale(0.5);
  z-index: 10;
}

.motto span {
  font-size: 4.8rem;
}

.sff-conainer {
  display: flex;
  justify-content: space-evenly;
  padding: 30px 0;
  margin: 100px auto 0;
  max-width: 1125px;
  background-color: #fff;
  border: 2px solid #e8b11b;

}

.sff-conainer p {
  font-weight: 500;
  margin: 0 40px;
  font-size: 1.8rem;
}

.sff-conainer_pc {
  width: 47%;
  max-width: 600px;
  margin-right: -50px;
  object-fit: contain;
}

.section-about .box-left {
  width: 55%;
}

.sff-conainer_sp,
.motto br {
  display: none;
}

.motto {
  color: #1a4d7e;
  font-size: 3.0rem !important;
  margin: 30px 0;
}

.background {
  position: relative;
  background-color: #fff;
  padding: 45px 70px;
  color: #063e72;
  font-size: 2.0rem;
  max-width: 980px;
  margin: 0 auto;
}

.background::before {
  content: '';
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: solid 2px #e8b11b;
  position: absolute;
  top: 4px;
  left: 4px;
}

.background::after {
  content: '';
  display: block;
  width: calc(100% - 23px);
  height: calc(100% - 23px);
  border: solid 1px #e8b11b;
  position: absolute;
  top: 10px;
  left: 10px;
}

.strengths-container {
  background-image: url("../img/bg-orange.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.strengths-container img {
  margin-top: -1px;
}

.section-about ul {
  display: flex;
  gap: 10px;
  padding: 70px 25px;
  list-style: none;
}

.section-about ul li {
  background-color: #fff;
  outline: #e8b11b 1px solid;
  outline-offset: -7px;
  padding: 45px 0;
  position: relative;
  width: 33%;
}

.section-about ul li p {
  font-size: 1.8rem;
  padding: 0 55px;
}

.section-about h4 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
  height: 100px;
  letter-spacing: 0;
}

.about-img1 {
  width: 155px;
  height: 100%;
}

.about-img2 {
  width: 580px;
  height: 100%;
  opacity: 0.08;
}

.about-img2__sp {
  display: none;
}

.about-img3 {
  width: 255px;
  height: 100%;
  margin-top: -100px;
  margin-right: -50px;
  z-index: 99
}

.section-about .box-yellow {
  margin-top: 54px;
  background-color: #f4d15c;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 40px 0;
}

.section-about .box-yellow img {
  width: 406px;
  margin: 0 auto;
}

.section-about .box-yellow a {
  display: flex;
  justify-content: center;
}

.section-about .h3-strengths {
  font-size: 5.0rem;
  color: #063e72;
  background-color: #fff;
  margin: 0 auto;
  padding-top: 78px;
}

.section-about ul li img {
  width: 57px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.underline-yellow {
  background: linear-gradient(transparent 60%, #f0d84e 60%);
}

.section-about .box-yellow::after {
  content: "";
  background-image: url(../img/about2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 280px;
  height: 245px;
  top: 10%;
  left: 8%;
  z-index: 9;
  display: inline-block;
}

.section-about .box-yellow::before {
  content: "";
  background-image: url(../img/about-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 255px;
  height: 255px;
  top: 10%;
  right: 5%;
  z-index: 9;
  display: inline-block;
}

@media(max-width:1199px) {
  .section-about ul {
    display: block;
    padding: 0 16px 70px;
  }

  .section-about ul li {
    width: 100%;
    margin: 60px auto 0;
    max-width: 900px;
  }

  .section-about ul li p {
    padding: 0 20px;
    font-size: 1.6rem;
  }

  .section-about h2::before {
    left: -20px;
    top: -170px;
    transform: scale(0.3);
  }

  .section-about .box-yellow img {
    max-width: 90%;
  }

  .about-img1 {
    width: 100px;
  }

  .about-img2 {
    width: 320px;
    opacity: 0.08;
  }

  .about-img3 {
    width: 200px;
    margin: -80px -20px 0 0;
  }

  .background {
    padding: 40px 20px;
    font-size: 1.6rem;
    max-width: 900px;
  }

  .section-about h2,
  body .section-description h2 {
    background-image: url("../img/ribbon-sp.png");
    height: 80px;
    line-height: 3;
    padding: 0;
    margin-bottom: 0;
  }

  .sff-conainer {
    max-width: 900px;
    padding-bottom: 80px !important;
    margin-top: 32px;
  }

  .sff-conainer_pc {
    display: none;
  }

  .sff-conainer_sp {
    display: block;
    max-width: 600px;
    margin: -80px auto 0;
    width: 105%;
  }

  .section-about h3 {
    font-size: 2.4rem;
  }

  .section-about .motto {
    font-size: 2.6rem !important;
    margin: 0 20px 16px;
  }

  .motto span {
    font-size: 3.0rem;
    margin-bottom: 0;
  }

  .section-about .h3-strengths {
    font-size: 2.8rem;
    margin: 0;
    padding-top: 120px;
  }

  .section-about .box-left {
    width: 100%;
  }

  .blue-box {
    padding: 0 20px;
  }

  .strengths-container ul li .fs-30 {
    font-size: 2.2rem;
  }

  .section-about h4 {
    font-size: 1.8rem;
    height: auto;
    margin-bottom: 15px;
  }

  .section-about .box-yellow::after {
    width: 130px;
    height: 130px;
    top: 80%;
  }

  .section-about .box-yellow::before {
    width: 120px;
    height: 120px;
    top: 80%
  }
}

@media(max-width:900px) {
  .h3-comb::after {
    top: -70px;
    right: -110px;
    transform: scale(0.3);
  }
}

@media(max-width:700px) {
  .h3-comb::after {
    top: -70px;
    right: -110px;
    transform: scale(0.2);
  }

  .about-img2__sp {
    display: block;
    width: 380px;
    max-width: 80%;
    margin: -30px auto 0;
    opacity: 0.08;
  }

  .about-img1 {
    width: 80px;
    margin-left: 10px;
  }

  .about-img3 {
    width: 150px;
    margin-right: -20px !important;
  }

  .section-about h2::before {
    left: -120px;
    top: -210px;
    transform: scale(0.2);
  }
}

@media(max-width:660px) {
  .sff-conainer_sp {
    margin: -80px -15px -15px;
    width: 110%;
  }
}

@media(max-width:1280px) {
  .reason-container {
    margin: 0;
    gap: 0;
  }
}

@media(max-width:1100px) {
  .sff-conainer {
    display: block;
  }

  .sff-conainer p {
    max-width: 100%;
    margin: 0 20px 16px;
  }
}

/* === ideal === */
.section-ideal {
  padding: 0 0 80px;
  background-color: #f2f2f2;
  max-width: 1280px;
  margin: 0 auto 100px;
}

.section-ideal h2,
.section-program h2 {
  color: #fff;
  text-align: center;
  background-image: url("../img/ribbon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  padding: 0 0 15px;
  margin: 80px 0 35px;
}

.section-ideal .box-text {
  max-width: 580px;
  margin: 0 auto;
  border: 6px solid #fff;
  padding: 64px 100px;
  font-size: 1.8rem;
}
.section-ideal .box-text ul li{
  padding: 4px 0;
}

@media(max-width:1199px) {
  .section-ideal {
    padding-top: 60px;
    margin-bottom: 0;
  }

  .section-ideal h2,
  .section-program h2 {
    background-image: url("../img/ribbon-sp.png");
    height: 80px;
    line-height: 3;
    margin: 0 0 32px;
    padding-bottom: 0;
  }
  .section-ideal .box-text{
    margin: 0 20px;
    font-size: 1.6rem;
  }
}

/* === program === */
.section-program {
  background-color: #063e72;
  margin-bottom: 60px;
}

.section-program .inner {
  background-color: #f5e485;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0 40px 0;
}

.section-program h2 {
  width: 120%;
  margin: 0 0 20px -10%;
}

.section-program .period {
  text-align: center;
  color: #13487a;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.section-program .message {
  font-size: 1.8rem;
  background-color: #fff;
  border: 1px #2e5d89 solid;
  padding: 32px 40px;
  line-height: 2;
  max-width: 1041px;
  margin: 40px -40px;
}

.section-program .img-flow {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.section-program .flow-img-sp {
  display: none;
}

.section-program .img-flow::before {
  content: "";
  background-image: url(../img/flow-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 18vw;
  height: 1400px;
  top: 50%;
  transform: translateY(-50%);
  left: -20vw;
  z-index: 999;
}

.section-program .img-flow::after {
  content: "";
  background-image: url(../img/flow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 18vw;
  height: 1850px;
  top: 1%;
  right: -20vw;
  z-index: 999;
}

@media(max-width:1199px) {
  .section-program {
    margin-bottom: 0;
  }

  .section-program .inner {
    padding: 60px 0 0;
  }

  .section-program h2 {
    font-size: 1.6rem !important;
    line-height: 4.2;
    margin: 0;
    width: 100%;
  }

  .section-program .period {
    font-size: 1.8rem;
  }
}

@media(max-width:860px) {

  .section-program .img-flow::after,
  .section-program .img-flow::before {
    display: none;
  }

  .section-program .message {
    margin: 20px;
    font-size: 1.6rem;
    padding: 24px;
    line-height: 1.8;
  }

  .section-program .img-flow {
    display: flex;
    justify-content: center;
    padding: 30px 16px 0 0;
  }

  .section-program .flow-img-sp {
    display: block;
    margin: 30px 0 0;
  }
}

/* === company === */
.section-company {
  background-color: #f2f2f2;
  padding: 65px 0;
}

.section-company h2 {
  font-size: 3.6rem;
  color: #063e72;
  text-align: center;
  margin-bottom: 65px;
}

.section-company h3 {
  font-size: 2.4rem;
  color: #063e72;
  text-align: center;
  margin: 65px auto 35px;
}

.section-company table {
  max-width: 500px;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.9;
}

.section-company table th {
  width: 80px;
  text-align: left;
  font-weight: 600;
}

.section-company img {
  max-width: 405px;
  display: block;
  margin: 0 auto;
  transition: ease .3s;
}

.section-company img:hover {
  opacity: 0.8;
}

.section-company ul {
  display: grid;
  width: fit-content;
  column-gap: 2em;
  grid-template-columns: repeat(3, auto);
  margin: 0 auto 36px;
  gap: 0 60px;
  font-size: 1.8rem;
}

@media(max-width:1199px) {
  html .section-company {
    padding: 65px 20px;
  }

  .section-company table td {
    padding-left: 10px !important;
  }

  .section-company ul {
    gap: 20px 30px !important;
  }

  .section-company table th {
    width: 60px;
  }

  .section-company ul {
    font-size: 1.6rem;
  }

  .section-company h2,
  .section-recruit h2,
  .section-entry h2 {
    margin-bottom: 35px;
  }
}

/* === graph === */
.section-graph {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.section-graph h2 {
  text-align: center;
  color: #063e72;
  font-size: 3.0rem;
  margin-bottom: 48px;
}

.section-graph img {
  max-width: 780px;
  margin: 0 auto;

}

.section-graph::after {
  content:"";
  width: 100vw;
  height: 50px;
  background-color:#f4f1d3;
  top:40%;
  left: 0;
  position: absolute;
  z-index: -1;
}

@media(max-width:1199px) {
  .section-graph {
    padding: 60px 20px;
  }

  .section-graph::after {
    height: 40px;
    top: 46%;
  }

  .section-graph img {
    max-width: 380px;
    width: 90vw;
  }
  .section-graph::after{
    display: none;
  }
}

/* === recruit === */
.section-recruit {
  padding: 65px 20px;
  background-color: #f2f2f2;
}

.section-recruit h2 {
  font-size: 4.0rem;
  color: #063e72;
  text-align: center;
  margin-bottom: 65px;
}

.section-recruit table {
  max-width: 720px;
  margin: 0 auto;
}

.section-recruit tr {
  border-bottom: 1px solid #dbdbdb;
  line-height: 1.87;
}

.section-recruit th {
  width: 110px;
  text-align: left;
  font-weight: 400;
}

.section-recruit td {
  padding: 20px;
  width: 610px;
  word-break: break-word;
}

@media(max-width:1199px) {

  .section-recruit h2,
  .section-entry h2 {
    margin-bottom: 35px !important;
  }

  .section-ideal .box-text {
    padding: 20px 32px;
  }

  .section-recruit table {
    max-width: 480px;
    width: 100%;
  }

  .section-recruit tr {
    width: 100% !important;
  }

  .section-recruit th {
    width: 25%;
  }

  .section-recruit td {
    width: 70% !important;
  }
}

/* === entry === */
.section-entry {
  max-width: 900px;
  margin: 160px auto 0;
  padding: 65px 0;
}

.section-entry h2 {
  font-size: 3.0rem;
  color: #063e72;
  text-align: center;
  margin-bottom: 65px;
}

.entory-container h2 {
  font-size: 2.6rem;
}

.section-entry .img-pc {
  margin: 40px auto 30px;
}

.section-entry .img-sp {
  display: none;
}

.entory-container {
  background-color: #f2f2f2;
  padding: 40px;
}

label {
  width: 40%;
  text-align: right;
}

input {
  width: 60%;
  height: 28px;
  background-color: #f8f7f7;
  border: 1px solid #d0d0d0;
  border-radius: 0;
}

.section-entry .form-flex p {
  margin: 5px 0;
  width: 200px;
  text-align: left;
}

textarea {
  width: 60%;
  height: 190px;
  background-color: #f8f7f7;
  border: 1px solid #d0d0d0;
  border-radius: 0;
}

.form-flex div {
  width: 60%;
  display: flex;
}

.form-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  align-items: center;
  gap: 40px;
}

.form-flex__message {
  align-items: flex-start;
}

.section-entry p {
  text-align: center;
  margin-top: 55px;
}

.section-entry p a {
  color: #333;
}

.policy #checkbox {
  background-color: #f8f7f7;
  border: 1px solid #d0d0d0;
  width: 22px;
  height: 22px;
}

.policy {
  max-width: 290px;
  margin: 10px auto 35px;
  justify-content: center;
  gap: 10px;
}

.section-entry ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 80px;
}

.section-entry ul li {
  width: 20%;
}

.section-entry ul li span {
  display: none;
}

.submit {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 auto;
  width: 200px;
  height: 44px;
  color: #063e72;
  background-color: #e8b11b;
  display: flex;
  justify-content: center;
  transition: ease .3s;
  border-radius: 0;
  border: none;
  font-family: "Noto Serif JP", Arial, sans-serif;
}

.submit:hover, .section-entry .btn-entry:hover{
  transform: scale(1.05, 1.05);
}

.bottom-copy {
  color: #063e72;
  margin-top: 5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center !important;
}

.logo-img {
  width: 270px;
  margin: 90px auto 0;
  display: block;
}
.section-entry .btn-entry{
  font-size: 2.0rem;
  font-weight: 500;
  margin: 0 auto;
  width: 320px;
  height: 56px;
  color: #063e72;
  background-color: #e8b11b;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease .3s;
  border-radius: 0;
  border: none;
 font-family: "Noto Serif JP", Arial, sans-serif;
}
@media screen and (max-width:690px) {
  .section-entry ul {
    display: block;
  }
  .section-entry ul li {
    width: 100%;
    margin-bottom: 8px;
  }
  .section-entry ul li span {
    display: inline-block;
  }
}

@media screen and (max-width:960px) {
  .section-entry {
    margin: 100px 0 0;
    padding: 40px 6%;
  }

  .entory-container {
    padding: 20px;
  }

  input,
  textarea,
  .form-flex div {
    width: 98%;
  }
}

@media screen and (max-width:690px) {

  .form-flex,
  .section-entry ul {
    display: block;
  }

  input,
  textarea {
    margin-top: 5px;
  }

  .section-entry .img-pc {
    display: none;
  }

  .section-entry .img-sp {
    display: block;
    margin: 20px 0;
  }
}

/* === privacy === */
.section-privacy {
  max-width: 900px;
  margin: 160px auto 100px;
  padding: 0 20px;
}

.section-privacy .headline-staff {
  margin-bottom: 80px;
}

.section-privacy .headline-staff img {
  width: 23%;
}

@media(max-width:1199px) {
  .section-privacy {
    max-width: 900px;
    margin: 140px auto 60px;
  }

  .section-privacy .headline-staff {
    margin-bottom: 40px;
  }

  .section-privacy h3 {
    margin-top: 24px;
  }
}

@media(max-width:600px) {
  .section-privacy .headline-staff img {
    width: 13%;
    ;
  }
}

/* === footer === */
footer {
  background-color: #063e72;
  color: #d1d1d1;
  text-align: center;
  padding: 30px 0 20px;
  font-size: 1.4rem;
}

small {
  font-size: 1.0rem;
}

/* フェードアップ */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* フェードインアニメーションの初期状態 */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
// フェードイン共通スタイル
// ======================================== */
.fade-in-list-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadein.is-visible,
.fade-in-list-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}