@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0 auto;
  max-width: 500px;
  width: 100vw;
  font-family: "NotoSerifJP";
  font-weight: bold;
}

main {
  position: relative;
}

a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 100%;
  vertical-align: middle;
}

li {
  list-style: none;
}

h1 {
  font-size: clamp(56px, 13.5vw, 72px);
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: clamp(18px, 5.5vw, 24px);
}

h4 {
  font-size: clamp(17px, 5.3vw, 20px);
}

h5 {
  font-size: 16px;
}

h1,h2,h3,h4,h5 {
  font-weight: bold;
}

p {
  font-size: 14px;
  font-family: "NotoSansJP";
}

.text_outline {
  text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff;
}

section {
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  position: relative;
}

.brackets::before {
  width: 15px;
  height: 50px;
  border-top: solid 3px #333;
  border-bottom: solid 3px #333;
  border-left: solid 3px #333;
  content: "";
  position: absolute;
  top: -25%;
  left: 15%;
}

.brackets::after {
  width: 15px;
  height: 50px;
  border-top: solid 3px #333;
  border-bottom: solid 3px #333;
  border-right: solid 3px #333;
  content: "";
  position: absolute;
  top: -25%;
  right: 15%;
}

.bg_blue>.brackets::before{
  border-top: solid 3px #fff;
  border-bottom: solid 3px #fff;
  border-left: solid 3px #fff;

}
.bg_blue>.brackets::after {
  border-top: solid 3px #fff;
  border-bottom: solid 3px #fff;
  border-right: solid 3px #fff;
}

.h2_border {
  display: block;
  width: 60px;
  height: 1px;
  border-top: solid 3px #ffff00;
  margin: 10px auto;
}

.bg_blue {
  background-color: #0068B2;
}

.c_blue {
  color: #342D88;
}

.c_white {
  color: #fff;
}

.apply_btn {
  color: #302B83;
  text-align: center;
  background: repeating-linear-gradient(#FFFF00, #FFFF00 45%,#F5C53A 55%, #F5C53A 100%);
}

.header_btn {
  width: 35%;
  font-size: 16px;
}

.large_btn {
  display: block;
  width: 80%;
  height: 60px;
  margin: 20px auto;
  font-size: 20px;
}

.large_btn a {
  position: relative;
}

.large_btn a::after {
  position: absolute;
  width: 15px;
  height: 15px;
  display: block;
  content: "";
  border-top: solid 2px #302B83;
  border-right: solid 2px #302B83;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 10%;
}


#firstview {
  background-image: url(../img/fv_background.jpg);
  background-size: 430%;
    background-position: 62% 95%;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px 0;
}

#logo {
  width: 25%;
  aspect-ratio: 1.93/1;
}

.fv_container {
  position: relative;
}

.catchcopy {
  text-align: center;
  margin-top: 10px;
  font-size: clamp(24px, 5.5vw, 28px);
}

.catchcopy_small {
  font-size: clamp(20px, 5.5vw, 24px);
}

.fv_image_container {
  display: flex;
  position: relative;
  top: -76px;
  overflow: hidden;
}

.fv_image {
  aspect-ratio: 1/1.5;
  position: relative;
}

.fv_image img {
  position: relative;
  z-index: 10;
}

.fv_image_l img {
  width: 130%;
  top: 30px;
  left: -23%;
}

.fv_image_r img {
  width: 170%;
  top: 8px;
  right: 33%;
}

.fv_image_name {
  font-size: 28px;
  text-shadow:                 /* テキストの影（シャドウ）設定 */
    2px 2px 3px white,         /* 右下に白いぼかし */
    -2px -2px 3px white,       /* 左上に白いぼかし */
    2px -2px 3px white,        /* 右上に白いぼかし */
    -2px 2px 3px white;        /* 左下に白いぼかし */
  text-align: center;
  position: absolute;
  z-index: 20;
}

.fv_image_l .fv_image_name {
  bottom: 70px;
  left: 13%;
}

.fv_image_r .fv_image_name {
  bottom: 70px;
  right: 25%;
}

.fv_image_name p {
  font-size: 16px;
}

.emphasis_heading {
  writing-mode: vertical-rl;
  position: absolute;
  top: 85px;
  left: 50%;
  z-index: 20;
  transform: translate(-50%);
  text-shadow:                 /* テキストの影（シャドウ）設定 */
  2px 2px 3px white,         /* 右下に白いぼかし */
  -2px -2px 3px white,       /* 左上に白いぼかし */
  2px -2px 3px white,        /* 右上に白いぼかし */
  -2px 2px 3px white;        /* 左下に白いぼかし */
}

.fv_label {
  display: flex;
  justify-content: space-around;
  padding: 0 10px;
  margin-top: -120px;
  color: #302B83;
  font-weight: bold;
  font-size: clamp(14px, 4.3vw, 24px);
  text-align: center;
  position: relative;
  overflow-x: hidden;
  z-index: 20;
}

.fv_label li {
  width: 31.5%;
  height: 100%;
  aspect-ratio: 1/0.6;
  padding-top: 4%;
  text-align: center;
  background-color: rgba(255,255,255,0.85);
  transform: skewX(-20deg);  /*X軸方向（水平方向）に45度傾ける */
}

.fv_label_text {
  transform: skewX(20deg);
  display: block;
}

.fv_label_text p {
  font-size: clamp(12px, 3.5vw, 16px);
}

.fv_label strong {
  font-size: clamp(24px, 3.5vw, 32px);
}

.fv_content {
  text-align: center;
  margin-top: 15px;
}

.fv_content_filter {
  padding: 20px;
  background-color: rgba(255,255,255,0.7);
  text-shadow:                 /* テキストの影（シャドウ）設定 */
    2px 2px 3px white,         /* 右下に白いぼかし */
    -2px -2px 3px white,       /* 左上に白いぼかし */
    2px -2px 3px white,        /* 右上に白いぼかし */
    -2px 2px 3px white;        /* 左下に白いぼかし */
}

.fv_content h3 {
  margin-top: 20px;
}

.fv_content p {
  width: 80%;
  margin: 15px auto;
  position: relative;
}

.fv_content p::before {
  display: block;
  width: 70px;
  height: 1px;
  transform: rotate(77deg);
  border-top: solid 3px #333;
  content: "";
  position: absolute;
  top: 36px;
  left: -17%;
}

.fv_content p::after {
  display: block;
  width: 70px;
  height: 1px;
  transform: rotate(-77deg);
  border-top: solid 3px #333;
  content: "";
  position: absolute;
  top: 36px;
  right: -17%;
}

/* philosophy ------------------------------------------ */
#philosophy {
  text-align: center;
  background-color: #0068B6;
}

#philosophy h2 {
  color: #FFFF00;
  font-size: 26px;
  line-height: 1.5;
}

#philosophy p{
  margin-top: 10px;
  line-height: 2;
}

/* need ----------------------------------------------- */
#need {
  text-align: center;
  background: url(../img/need_background.jpg);
  background-size: 390%;
  background-position: 35% 33%;
  position: relative;
}

.need_filter::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.7);
}

.need_container {
  position: relative;
}

#need h5 {
  margin-top: 30px;
}

.need_item {
  background-color: #fff;
  margin: 20px 20px;
  padding: 20px 5% 20px 10%;
  text-align: left;
}

.need_item li {
  list-style: square;
  margin: auto;
}

.need_message {
  background:repeating-linear-gradient(transparent, transparent 5%,#fff 5%, #fff 100%);
  margin: 40px 0 0;
}

.need_message h3 {
  width: fit-content;
  background: linear-gradient(90deg, #0068B2, rgba(0, 104, 178, 0.7));
  padding: 10px 40px;
  margin: 0 auto;
}

.need_message_container {
  padding: 20px;
}

.president {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.president img {
  width: 100%;
  margin: -6% -33%;
}

.need_message_contents {
  margin-top: 10px;
  line-height: 1.5;
  text-align: left;
}

/* features------------------------------------- */
.features_container {
  padding: 20px;
  background-color: #fff;
}

.features_content:not(:first-child) {
  margin-top: 40px;
}

.features_content h3{
  text-align: center;
  position: relative;
}

.features_content h3::after {
  width: 100%;
  height: 1px;
  border-top: solid 3px #302B83;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
}

.features_content img {
  margin-top: 20px;
}

.features_content p {
  margin-top: 10px;
}

/* recommendation------------------------------------------ */
.recommendation_content {
  display: flex;
  margin-top: 20px;
}

.recommendation_image {
  width: 33%;
  aspect-ratio: 1/1.5;
  overflow: hidden;
}

.recommendation_image_item {
  width: 130%;
  margin: -11% -7%;
}

.recommendation_image_minowa {
  margin: -11% -14%;
}

.recommendation_text {
  width: 62%;
  margin-left:5%;
  line-height: 1.3;
}

.recommendation_text_title {
  display: block;
  font-size: 12px;
}

.recommendation_text_name {
  display: block;
  margin: 5px 0 10px;
  font-size: 24px;
}

/* workcontent------------------------------------- */
.workcontent_text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.workcontent_emphasis {
  display: block;
  margin-top: 25px;
  text-align: center;
  font-size: clamp(24px, 7.3vw, 28px);
  color: #FFFF00;
}

.active_method {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

/* appeal------------------------------------------- */
#appeal {
  background: url(../img/appeal_background.jpg);
  background-size: 695%;
    background-position: 61% 53%;
}

#appeal h2 span {
  display: block;
  position: relative;
  color: #FFFF00;
  font-size: 52px;
}

#appeal h2 span::before {
  display: block;
  width: 10%;
  height: 1px;
  border-top: solid 2px #fff;
  position: absolute;
  content: "";
  top: 48%;
  left: 0;
}

#appeal h2 span::after {
  display: block;
  width: 10%;
  height: 1px;
  border-top: solid 2px #fff;
  position: absolute;
  content: "";
  top: 48%;
  right: 0;
}

.appeal_content {
  margin-top: 25px;
  padding: 20px;
  background-color: rgba(255,255,255,0.7);
}

.appeal_content_header {
  display: flex;
  position: relative;
}

.appeal_content_header::after {
  display: block;
  width: 100%;
  height: 1px;
  border: solid 1px #0068B2;
  position: absolute;
  content: "";
  bottom: -22%;
}

.appeal_content_number {
  width: 11%;
  height: 75px;
  margin-top: -30px;
  padding-top: 35px;
  color: #fff;
  background: linear-gradient(90deg, #0068B2, rgba(0, 104, 178, 0.7));
  text-align: center;
  font-size: 200%;
}

.appeal_content_title {
  margin-left: 4%;
  color: #0068B2;
}

.appeal_content_text {
  margin-top: 20px;
}

/* staffcomment------------------------------------------ */
.staffcomment_container {
  padding: 15px 10px;
  background-color: #fff;
}

.staffcomment_container h3 {
  text-align: center;
  color: #0068B2;
}

.staffcomment_border {
  display: block;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #342D88,#342D88 45%,transparent 45%,transparent 55%,#342D88 55%,#342D88 100%);
  margin: 10px auto 0;
  position: relative;
}

.staffcomment_border::before {
  display: block;
  width: 10.5%;
  height: 13px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fff;
  position: absolute;
  content: "";
  top: -1px;
  left: 50%;
  transform: translate(-50%);
  z-index: 20;
}

.staffcomment_border::after {
  display: block;
  width: 12%;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #342D88;
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%);
}

.staffcomment_content {
  margin-top: 30px;
}

.staff_image {
  width: 50%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: solid 2px #342D88;
  overflow: hidden;
  margin: 0 auto;
}

.staff {
  width: 305%;
  margin: -130% -89%;
}

.staff_name {
  margin-top: 10px;
  margin-left: 10px;
}

.staffcomment_text {
  margin: 15px 10px 10px;
  line-height: 1.5;
}


/* video ------------------------------------------------ */
.video_container{
  margin-top: 40px;
}

.video_title {
  text-align: center;
  font-size: clamp(18px, 4.8vw, 24px);;
}

.video_content {
  width: 100%;
  margin-top: 15px;
}


/* recruitment ----------------------------------- */
.recruitment_contents {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
}

.recruitment_contents dt {
  width: 25%;
  padding: 10px 0;
  border-bottom: solid 1.5px #fff;
}

.recruitment_contents dd {
  width: 75%;
  padding: 10px 0;
  border-bottom: solid 1.5px #fff;
}

.recruitment_contents dt:last-of-type {
  border: none;
}
.recruitment_contents dd:last-child {
  border: none;
}

/* fqa ------------------------------------------------------------------ */
.fqa_container {
  padding: 10px;
  background-color: #fff;
}

.fqa_contents {
  padding: 10px;
  border-bottom: solid 1px #333;
}

.fqa_contents:last-child {
  border: none;
}

.q,.a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.a {
  margin-top: 10px;
}

.fqa_contents dt {
  width: 10.9%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  padding-top: 2.5%;
  text-align: center;
  font-family: 'Bahnschrift';
  font-size: 22px;
}
.q dt {
  background-color: #0090C8;
}
.a dt{
  background-color: #D2375D;
}

.fqa_contents dd {
  width: 85%;
  margin-left: 5px;
  padding-top: 2px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.q>dd,
.fqa_contents .p_12 {
  padding-top: 12px;
}



/* application ------------------------------------------- */
.application_container {
  background: linear-gradient(#fff,#fff 80%,transparent 80%,transparent 100%);
  color: #333;
  padding: 10px ;
}

.application_container p {
  font-size: 20px;
  margin-top: 20px;
}

.application_container input,
.application_container textarea {
  border: solid 1px #0068B2;
  width: 100%;
  font-size: 20px;
}

.application_container .send_btn {
  margin-top: 60px;
  font-size: 20px;
}

.message h1{
  font-size: 26px;
  line-height: 1.5;
}

.message p{
  margin-top: 15px;
  line-height: 1.8;
}

@media screen and  (max-width: 430px) {
  #workcontent .brackets::before {
    left: 5%;
  }

  #workcontent .brackets::after {
    right: 5%;
  }
}

@media screen and  (max-width: 400px) {
  .fv_content p::before {
    width: calc(500px - 105vw);
    top: 40px;
    left: -25%;
  }

  .fv_content p::after {
    width: calc(500px - 105vw);
    top: 40px;
    right: -25%;
  }

  #philosophy p {
    font-size: 11.5px;
  }

  .video_title {
    font-size: clamp(15.7px, 4.6vw, 24px);
  }

  .fqa_contents dt {
    padding-top: 0.3%;
  }

}

@media screen and  (max-width: 370px) {
  .fv_content p::before {
    left: -32%;
  }

  .fv_content p::after {
    right: -32%;
  }

}

@media screen and  (max-width: 350px) {
  .fv_content p::before {
    width: 110px;
    top: 47px;
    left: -34%;
  }

  .fv_content p::after {
    width: 110px;
    top: 47px;
    right: -32%;
  }

}

