@charset "UTF-8";
html {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #f8f8f8;
  font-size: 18px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  min-height: 110vh;
  color: #2d2d2d;
  background-color: #f8f8f8;
  width: 100%;
}

.sp {
  display: none !important;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #2d2d2d;
  transition: 0.3s;
}

.basein {
  width: 1350px;
  margin: auto;
}

p {
  line-height: 1.8;
}

.btn a {
  border: 1px solid #002480;
  background-color: #002480;
  color: white;
  display: inline-block;
  padding: 10px 20px;
  white-space: nowrap;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: bold;
}
.btn a:hover {
  background-color: #e74c3c;
  border-color: #e74c3c;
}

.fuwatto.js-target {
  transition: 0.3s;
  opacity: 0;
}
.fuwatto.js-target.js-active {
  -webkit-animation: fuwatto 0.3s linear 0s normal both;
          animation: fuwatto 0.3s linear 0s normal both;
}

.hamburger-menu {
  display: block;
  display: none;
  position: absolute;
  transition: all 0.5s;
  z-index: 100;
  right: 0;
  top: 0;
}
.hamburger-menu p {
  position: absolute;
  font-size: 60%;
  top: 0;
}
.hamburger-menu .menu-btn.on span {
  background-color: rgba(255, 255, 255, 0) !important; /*メニューオープン時は真ん中の線を透明にする*/
  box-shadow: none;
  width: 25px;
}
.hamburger-menu .menu-btn.on span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 0.5s;
  width: 25px;
}
.hamburger-menu .menu-btn.on span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.5s;
  width: 25px;
}
.hamburger-menu .menu-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  transition: all 0.5s;
}
.hamburger-menu .menu-btn span, .hamburger-menu .menu-btn span:before, .hamburger-menu .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
  transition: all 0.5s;
}
.hamburger-menu .menu-btn span:before {
  bottom: 8px;
  width: 50px;
  right: 0;
}
.hamburger-menu .menu-btn span:after {
  top: 8px;
  width: 30px;
  right: 0;
}

.anchor {
  display: block;
  margin-top: -80px;
  padding-top: 80px;
  height: 0;
  width: 100%;
}

.newtab_icon {
  position: relative;
  display: inline-block;
}
.newtab_icon:after {
  content: "";
  width: 15px;
  padding-top: 15px;
  background-image: url("../img/icon-newtab.png");
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
}
@media all and (max-width: 1350px) {
  .newtab_icon:after {
    width: 1vw;
    padding-top: 1vw;
  }
}

header#header {
  color: white;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  z-index: 5;
  transition: 0.5s;
}
header#header.back {
  background-color: rgba(0, 36, 128, 0.5);
}
header#header.hide {
  top: -80px;
}
header#header a {
  color: white;
}
header#header .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
}
header#header .flex h1 {
  width: 25%;
  padding: 0;
  margin: 0;
  font-size: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header#header .flex .head_menu {
  width: 75%;
  display: flex;
  align-items: stretch;
}
header#header .flex .head_menu nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
header#header .flex .head_menu nav ul.menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
header#header .flex .head_menu nav ul.menu li {
  list-style: none;
  position: relative;
  padding: 0 10px;
}
@media all and (max-width: 1350px) {
  header#header .flex .head_menu nav ul.menu li {
    padding: 0 0.5vw;
  }
}
header#header .flex .head_menu nav ul.menu li[class*=has-children]:after {
  content: "";
  background-image: url("../img/icon-arrow-down.png");
  width: 12px;
  padding-top: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  transition: 0.3s;
  position: relative;
  top: 0;
}
@media all and (max-width: 1350px) {
  header#header .flex .head_menu nav ul.menu li[class*=has-children]:after {
    width: 1vw;
    padding-top: 1vw;
  }
}
header#header .flex .head_menu nav ul.menu ul.sub-menu {
  transition: 0.5s;
  opacity: 0;
  z-index: 2;
  position: absolute;
  list-style-type: none;
  padding: 0;
  margin: 0;
  top: 100%;
  left: 0;
  padding-top: 5px;
  height: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
}
header#header .flex .head_menu nav ul.menu ul.sub-menu li a {
  white-space: nowrap;
  padding: 10px 30px;
  display: block;
  text-align: left;
  background: rgba(0, 36, 128, 0.8);
  margin-bottom: 1px;
  transition: 0.3s;
}
header#header .flex .head_menu nav ul.menu ul.sub-menu li a:hover {
  background-color: #002480;
}
header#header .flex .head_menu nav ul.menu li:hover:after {
  top: 1px;
  transition: 0.3s;
}
header#header .flex .head_menu nav ul.menu li:hover > ul.sub-menu {
  transition: 0.3s;
  opacity: 1;
  z-index: 5;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
header#header .btn {
  margin-left: 15px;
}

#mv {
  position: relative;
}
#mv .flex {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#mv .flex h2 {
  position: absolute;
  display: block;
  font-size: 100%;
  color: white;
}
#mv .flex h2 span, #mv .flex h2 strong {
  display: block;
}
#mv .flex h2 span {
  padding: 2% 0;
}
#mv .flex h2 .catchs {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s;
}
#mv .flex h2 .catchs strong {
  font-size: 300%;
  font-style: italic;
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s;
}
#mv .flex h2 .catchs.js-active, #mv .flex h2 .catchs.js-active strong {
  transform: translate(0, 0);
}
#mv .flex .silhouette {
  width: 100%;
}
#mv .flex .silhouette img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .top_news {
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  background-color: #002480;
  padding: 1% 2vw;
  display: flex;
  align-items: center;
}
#mv .top_news h3 {
  padding: 0;
  margin: 0;
  padding-right: 2vw;
  margin-right: 2vw;
  position: relative;
  font-family: "Oswald", sans-serif;
}
#mv .top_news h3:after {
  content: "";
  width: 0.5px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: white;
}
#mv .top_news .date {
  font-family: "Oswald", sans-serif;
  padding-right: 2vw;
  font-weight: bold;
  font-size: 90%;
}
#mv .top_news .category {
  border: 1px solid white;
  padding: 0.5% 1vw;
  margin-right: 2vw;
  font-size: 80%;
}
#mv .top_news .read_more {
  display: flex;
  align-items: center;
}
#mv .top_news .title {
  max-width: 50vw;
  min-width: 25vw;
  font-size: 80%;
  font-weight: normal;
  padding-right: 2vw;
  text-align: left;
  transition: 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis; /* Safari */
  -o-text-overflow: ellipsis; /* Opera */
}
#mv .top_news a {
  color: white;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
#mv .top_news a:hover .title {
  color: #e74c3c;
}
#mv .top_news .read_more .more_btn {
  font-family: "Oswald", sans-serif;
  color: #ffbf13;
  font-size: 80%;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#mv .top_news .read_more .more_btn:after {
  content: "";
  width: 25px;
  margin-left: 2vw;
  padding-top: 25px;
  transition: 0.5s;
  background-image: url("../img/icon-arrow-right-yellow.png");
}
#mv .top_news .read_more .more_btn:hover:after {
  margin-left: 1vw;
  transform: rotate(360deg);
}

.nyu {
  overflow: hidden;
}
.nyu p {
  padding: 0;
  margin: 0;
  bottom: -50px;
  display: block;
  position: relative; /* bottomを指定するために必要 */
  -webkit-animation: popanime 1s ease-out 2s forwards;
          animation: popanime 1s ease-out 2s forwards; /* 最後ゆっくりになるアニメを1秒かけて1回だけやったあと固定 */
}

.googlemap {
  width: 100%;
  height: 400px;
}
.googlemap iframe {
  width: 100%;
  height: 100%;
}

section {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
section .section_header h2.title {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
section .section_header h2.title strong {
  color: #002480;
  font-size: 300%;
  font-family: "Oswald", sans-serif;
  margin-bottom: 1%;
  font-weight: normal;
}
section .section_content p {
  text-align: left;
}
section#aboutus_top {
  padding: 5% 0;
  position: relative;
}
section#aboutus_top h2.title strong {
  font-weight: bold;
}
section#aboutus_top .section_content {
  max-width: 62%;
}
section#services_top {
  padding: 5% 0;
  z-index: 3;
}
section#services_top .service_about {
  padding: 5%;
  margin-bottom: 5%;
  text-align: center;
  background-image: url("../img/service_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}
section#services_top .service_about .section_header h2.title {
  justify-content: center;
  align-items: center;
  margin-bottom: 2%;
}
section#services_top .service_about .section_header h2.title strong {
  color: white;
}
section#services_top .service_about .section_header h2.title strong:first-letter {
  color: #ffbf13;
}
section#services_top .service_about .section_content p {
  text-align: center;
  padding: 0 4.6%;
}
section#services_top .service_block {
  padding: 0 5%;
  margin: 5% 0;
  position: relative;
}
section#services_top .service_block .service_title {
  max-width: 1350px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5%;
}
section#services_top .service_block .service_title span {
  font-size: 100%;
  font-weight: bold;
  color: #ffbf13;
  font-family: "Oswald", sans-serif;
  transition: 0.3s;
}
section#services_top .service_block .service_title strong {
  font-size: 250%;
  font-weight: bold;
  color: #002480;
  font-family: "Oswald", sans-serif;
  transition: 0.3s;
}
section#services_top .service_block .service_title p {
  padding: 0;
  margin: 0;
}
section#services_top .service_block .text {
  width: 60%;
  position: relative;
  left: -6%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background-color: #002480;
  background-image: url("../img/service_01_bg.jpg");
  background-size: cover;
  z-index: 3;
}
section#services_top .service_block .text .wrap {
  padding: 5% 5% 5% 0;
  width: 745px;
  text-align: left;
}
@media all and (max-width: 1350px) {
  section#services_top .service_block .text .wrap {
    padding-left: 5%;
    width: 100%;
  }
}
section#services_top .service_block .text .wrap h4 {
  color: white;
  font-size: 150%;
  line-height: 1.5;
}
section#services_top .service_block .text .wrap p {
  color: white;
}
section#services_top .service_block .text .wrap .more_link a {
  border-color: white;
}
section#services_top .service_block .text .wrap .more_link a span {
  color: white;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
section#services_top .service_block .text .wrap .more_link a:after {
  background-image: url("../img/icon-arrow-right-white.png");
}
section#services_top .service_block .image {
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  height: 80%;
}
section#services_top .service_block .image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
section#services_top .service_block#service02 {
  overflow-x: hidden;
}
section#services_top .service_block#service02 .service_title {
  left: 50%;
  z-index: 5;
  position: relative;
  max-width: inherit;
  padding-left: 9%;
}
section#services_top .service_block#service02 .image {
  right: inherit;
  left: -5%;
}
section#services_top .service_block#service02 .text {
  left: 50%;
  justify-content: flex-start;
  width: 56%;
}
section#services_top .service_block#service02 .text .wrap {
  padding: 5% 5% 5% 15%;
}
@media all and (max-width: 1500px) {
  section#services_top .service_block#service02 .text .wrap {
    width: 100%;
  }
}
section#solution_top h2.title strong {
  font-weight: bold;
}
section#solution_top .back_img {
  background-image: url("../img/bg_solution.jpg");
  background-size: cover;
  padding: 5% 0;
  position: relative;
}
section#solution_top:before {
  content: "";
  width: 200%;
  background-color: #f2f2f2;
  height: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-37deg);
}
section#solution_top .back_white {
  background-color: white;
  padding: 5% 0;
}
section#solution_top .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section#solution_top .flex .text {
  width: 40%;
  text-align: left;
}
section#solution_top .flex .image {
  width: 50%;
}
section#solution_top .flex .image img {
  position: relative;
  top: -15%;
}
section#achievements_top {
  padding: 5% 0;
  color: white;
}
section#achievements_top h2.title strong {
  font-weight: bold;
}
section#achievements_top .achivements_back {
  background-image: url("../img/bg_achievements.jpg");
  background-size: cover;
  margin-right: 5%;
  padding: 5%;
  padding-left: 10%;
}
@media all and (max-width: 1600px) {
  section#achievements_top .achivements_back {
    padding: 5%;
    padding-left: 5%;
    margin-right: 0;
  }
}
section#achievements_top .section_header h2.title {
  justify-content: center;
  align-items: center;
  margin-bottom: 2%;
}
section#achievements_top .section_header h2.title strong {
  color: white;
}
section#achievements_top .section_header h2.title strong:first-letter {
  color: #ffbf13;
}
section#achievements_top .section_header h2.title strong p {
  display: inline;
  padding: 0;
  margin: 0;
  color: #ffbf13;
}
section#achievements_top .datas_block {
  padding: 5% 0;
}
section#achievements_top .datas_block .block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row-reverse;
  margin-bottom: 5%;
}
section#achievements_top .datas_block .block .image {
  width: 28%;
}
section#achievements_top .datas_block .block .text {
  padding-top: 5%;
  width: 67%;
  text-align: left;
}
section#achievements_top .datas_block .block .text .js-target span {
  color: #ffbf13;
  position: relative;
}
section#achievements_top .datas_block .block .text .js-target span:before {
  content: "";
  position: absolute;
  left: 100%;
  bottom: -13px;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 5px;
  transition: 1.3s;
  opacity: 0;
}
section#achievements_top .datas_block .block .text .js-target span:after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -10px;
  width: 0px;
  border-bottom: 1px solid white;
  transition: 1.3s;
}
section#achievements_top .datas_block .block .text .js-active span:after {
  width: 400px;
}
section#achievements_top .datas_block .block .text .js-active span:before {
  left: -142px;
  opacity: 1;
}
section#achievements_top .datas_block .block .text h3 {
  padding-top: 2%;
}
@media all and (max-width: 1350px) {
  section#achievements_top .datas_block .block .text .js-target span:after {
    left: -6vw;
  }
  section#achievements_top .datas_block .block .text .js-active span:before {
    left: -6.5vw;
  }
  section#achievements_top .datas_block .block .text .js-active span:after {
    width: 20vw;
  }
}
section#recruit_voice_top .flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
section#recruit_voice_top .block {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
section#recruit_voice_top .block .box {
  background-color: rgba(0, 36, 128, 0.9);
  padding: 5%;
  margin: 10% 5%;
  width: calc(675px - 10%);
  color: white;
}
section#recruit_voice_top .block .box .section_header {
  text-align: left;
  color: white;
}
section#recruit_voice_top .block .box .section_header strong {
  font-size: 250%;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  display: block;
  margin-bottom: 1%;
}
section#recruit_voice_top .block .box .section_header span {
  display: block;
}
section#recruit_voice_top .block .box .more_link a {
  border-color: white;
}
section#recruit_voice_top .block .box .more_link a span {
  color: white;
}
section#recruit_voice_top .block .box .more_link a:after {
  background-image: url("../img/icon-arrow-right-white.png");
}
section#recruit_voice_top .block.recruit_back {
  background-image: url("../img/bg_recruit.jpg");
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
section#recruit_voice_top .block.voice_back {
  background-image: url("../img/bg_voice.jpg");
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
section#news_section {
  padding: 5% 0;
}
section#news_section h2.title strong {
  font-weight: bold;
}
section#news_section .basein {
  position: relative;
}
section#news_section .more_link {
  position: absolute;
  right: 0%;
  top: 5%;
}
section#news_section .news_flex {
  padding: 5% 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
section#news_section .news_flex .tab {
  width: 20%;
}
section#news_section .news_flex .tab nav {
  display: flex;
  flex-direction: column;
}
section#news_section .news_flex .tab nav a {
  padding: 8% 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #002480;
  background-color: white;
  color: #002480;
  margin-bottom: 5%;
  transform: 0.3s;
  position: relative;
}
section#news_section .news_flex .tab nav a:after {
  content: "";
  width: 1px;
  border-left: 1px solid #002480;
  height: 60%;
  position: absolute;
  right: -2px;
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%);
}
section#news_section .news_flex .tab nav a:before {
  content: "";
  width: 1px;
  border-left: 1px solid #002480;
  height: 60%;
  position: absolute;
  right: -2px;
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%);
}
section#news_section .news_flex .tab nav a.on {
  background-color: #002480;
  color: white;
}
section#news_section .news_flex .tab nav a.on:before {
  transform: translateY(-50%) rotate(90deg);
  border-left: 1px solid white;
  right: 3%;
  height: 30%;
  z-index: 3;
}
section#news_section .news_flex .tab nav a.on:after {
  transform: translateY(-50%) rotate(90deg);
  z-index: 2;
}
section#news_section .news_flex .news_details {
  width: 75%;
}
section#news_section .news_flex .news_details .news_blocks {
  display: none;
}
section#news_section .news_flex .news_details .news_blocks.view {
  display: block;
}
section#news_section .news_flex .news_details .news_blocks .nodata {
  padding: 2% 0;
  text-align: left;
  font-size: 90%;
}
section#news_section .news_flex .news_details .news_blocks a {
  display: flex;
  align-items: center;
  padding: 3% 1%;
  border-bottom: 1px solid #002480;
  transition: 0.3s;
}
section#news_section .news_flex .news_details .news_blocks a .date {
  font-family: "Oswald", sans-serif;
  padding-right: 2vw;
  font-weight: bold;
  font-size: 90%;
}
section#news_section .news_flex .news_details .news_blocks a .category {
  border: 1px solid #002480;
  padding: 0.5% 1vw;
  margin-right: 2vw;
  font-size: 70%;
  color: white;
  background-color: #002480;
  min-width: 130px;
  transition: 0.3s;
}
section#news_section .news_flex .news_details .news_blocks a .read_more {
  display: flex;
  align-items: center;
}
section#news_section .news_flex .news_details .news_blocks a .title {
  max-width: 50vw;
  min-width: 25vw;
  font-size: 80%;
  font-weight: normal;
  padding-right: 2vw;
  text-align: left;
  transition: 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis; /* Safari */
  -o-text-overflow: ellipsis; /* Opera */
}
section#news_section .news_flex .news_details .news_blocks a:hover {
  background-color: #002480;
}
section#news_section .news_flex .news_details .news_blocks a:hover .date, section#news_section .news_flex .news_details .news_blocks a:hover .title {
  color: white;
}
section#news_section .news_flex .news_details .news_blocks a:hover .category {
  background-color: white;
  color: #002480;
}

.more_link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 0;
}
.more_link a {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #002480;
}
.more_link a:after {
  content: "";
  width: 33px;
  height: 33px;
  background-image: url("../img/icon-arrow-right-blue.png");
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s;
}
.more_link a span {
  font-size: 100%;
  font-weight: bold;
  color: #002480;
  font-family: "Oswald", sans-serif;
  transition: 0.3s;
  position: relative;
  left: 0;
}
.more_link a:hover span {
  left: 3%;
}
.more_link a:hover:after {
  transform: rotate(360deg);
}
@media all and (max-width: 1400px) {
  .more_link a {
    width: 20vw;
    padding: 1vw 0;
  }
  .more_link a:after {
    width: 2vw;
    height: 2vw;
  }
}
.more_link.black span {
  color: #262626;
}
.more_link.black a {
  border-color: #262626;
}
.more_link.black a:after {
  background-image: url("../img/icon-arrow-right-black.png");
}

.single .btn.b02 {
  margin: 5% auto;
}
.single div[class^=page_] #eye_catch.in_image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .single_block {
  padding: 5%;
  text-align: left;
  max-width: 900px;
  margin: auto;
}
.single .single_block .btn:last-child {
  margin: 15% 0 0;
}
.single .single_block a {
  text-decoration: underline;
  color: #002480;
}
.single .single_block .btn a {
  color: white;
  text-decoration: none;
}
.single .single_block .btn a:hover {
  color: #2d2d2d;
}
.single .single_block h1 {
  font-size: 40px;
  color: #3a1da3;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 1350px) {
  .single .single_block h1 {
    font-size: 3vw;
  }
}
@media all and (max-width: 540px) and (orientation: portrait) {
  .single .single_block h1 {
    font-size: 180%;
  }
}
.single .single_block h2 {
  font-size: 32px;
  color: #507fdf;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: inline-block;
  position: relative;
}
.single .single_block h2:after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 2px solid #507fdf;
  position: absolute;
  left: 0;
  bottom: -0.4em;
}
@media all and (max-width: 1350px) {
  .single .single_block h2 {
    font-size: 2.3vw;
  }
}
@media all and (max-width: 540px) and (orientation: portrait) {
  .single .single_block h2 {
    font-size: 150%;
  }
}
.single .single_block h3 {
  font-size: 24px;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 1350px) {
  .single .single_block h3 {
    font-size: 1.5vw;
  }
}
@media all and (max-width: 540px) and (orientation: portrait) {
  .single .single_block h3 {
    font-size: 130%;
  }
}
.single .single_block h4 {
  font-size: 20px;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 1350px) {
  .single .single_block h4 {
    font-size: 1.2vw;
  }
}
@media all and (max-width: 540px) and (orientation: portrait) {
  .single .single_block h4 {
    font-size: 110%;
  }
}

.back_outer {
  position: relative;
  overflow-x: hidden;
}

.img_top_back01 {
  position: absolute;
  width: 100%;
  left: 50%;
  top: -280px;
  z-index: 1;
  transform: translateX(-50%);
  max-width: 2500px;
}
.img_top_back01 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1400px) {
  .img_top_back01 {
    top: -16vw;
  }
}

section#link_section {
  position: relative;
  top: 6vw;
}
section#link_section .link_box_flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: #002480;
  width: 50%;
  margin: auto;
}
section#link_section .link_box_flex .link_box {
  width: 100%;
  background-color: #002480;
}
section#link_section .link_box_flex .link_box a {
  display: block;
  padding: 10% 10%;
  color: white;
  text-align: left;
  position: relative;
  border: 1px solid #002480;
  transition: 0.3s;
}
section#link_section .link_box_flex .link_box a h2 {
  font-family: "Oswald", sans-serif;
  font-size: 300%;
  font-weight: bold;
  padding: 0;
  margin: 0;
}
section#link_section .link_box_flex .link_box a:after {
  content: "";
  right: 5%;
  width: 5%;
  padding-top: 5%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/icon-arrow-right-outline.png");
  background-size: 95% 95%;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
section#link_section .link_box_flex .link_box a:hover {
  background-color: white;
}
section#link_section .link_box_flex .link_box a:hover h2, section#link_section .link_box_flex .link_box a:hover p {
  color: #002480;
}
section#link_section .link_box_flex .link_box a:hover:after {
  background-image: url("../img/icon-arrow-right-blue.png");
}
section#link_section .link_box_flex .link_box:first-child a {
  position: relative;
}
section#link_section + footer#footer {
  padding-top: 8vw;
}

footer#footer {
  background-color: #2d2d2d;
  padding: 5%;
  position: relative;
  color: white;
}
footer#footer a {
  color: white;
}
footer#footer a:hover {
  opacity: 0.7;
}
footer#footer ul, footer#footer ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
}
footer#footer ul li, footer#footer ol li {
  width: 100%;
}
footer#footer .menu_block {
  padding: 5% 0;
  border-bottom: 1px solid #a7a7a7;
}
footer#footer .menu_block ul li, footer#footer .menu_block ol li {
  text-align: left;
}
footer#footer .menu_block ul li a, footer#footer .menu_block ol li a {
  display: block;
  width: 100%;
  padding: 5px;
  transition: 0.3s;
}
footer#footer .menu_block ul li a:hover, footer#footer .menu_block ol li a:hover {
  opacity: 0.8;
}
footer#footer .menu_block ul li:not(.no_child) ul.sub-menu, footer#footer .menu_block ol li:not(.no_child) ul.sub-menu {
  flex-direction: column;
}
footer#footer .menu_block ul li:not(.no_child) ul.sub-menu a, footer#footer .menu_block ol li:not(.no_child) ul.sub-menu a {
  color: #a7a7a7;
}
footer#footer .address_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #a7a7a7;
}
footer#footer .address_flex .box {
  width: 35%;
  text-align: left;
  padding: 3% 0;
}
footer#footer .address_flex .box.sns {
  width: 63%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
footer#footer .address_flex .box.sns .copy {
  padding-top: 2%;
  font-family: "Oswald", sans-serif;
}
footer#footer .address_flex .address ul {
  flex-direction: column;
}
footer#footer .address_flex .address ul li {
  padding: 0.5% 0;
}
footer#footer .address_flex .sns_list a {
  display: block;
}
@media all and (max-width: 1350px) {
  footer#footer .address_flex .sns_list a {
    max-width: 3vw;
  }
}
footer#footer .foot_bunners {
  padding: 5% 0 0;
  display: flex;
  justify-content: space-evenly;
}
footer#footer .foot_bunners .box {
  width: 30%;
}
footer#footer .foot_bunners .box a {
  display: block;
}
footer#footer .foot_bunners .box a.sap img {
  width: 100%;
  border-radius: 50px;
}
footer#footer .foot_bunners .box a.dl {
  background-color: #002480;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  border-color: #002480;
  border-radius: 50px;
  position: relative;
}
footer#footer .foot_bunners .box a.dl:after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 5%;
  padding-top: 5%;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: url("../img/icon-download.png") center center/cover no-repeat scroll transparent;
}
footer#footer .foot_bunners .box a.dl:hover:after {
  top: 55%;
}
footer#footer .foot_bunners .box a.school {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  border: 1px solid white;
  border-radius: 50px;
  position: relative;
  font-size: 90%;
}
footer#footer .foot_bunners .box a.school:after {
  content: "";
  position: absolute;
  width: 3%;
  padding-top: 4%;
  top: 50%;
  right: 5%;
  transition: 0.3s;
  transform: translateY(-50%);
  background: url("../img/icon-arrow-right.png") center center/cover no-repeat scroll transparent;
}
footer#footer .foot_bunners .box a.school:hover:after {
  right: 3%;
}

#totop {
  position: fixed;
  bottom: -10vw;
  transition: 0.3s;
  opacity: 0;
  font-family: "Oswald", sans-serif;
  font-size: 90%;
  text-shadow: 2px 2px 1px white, -2px 2px 1px white, 2px -2px 1px white, -2px -2px 1px white, 2px 0px 1px white, 0px 2px 1px white, -2px 0px 1px white, 0px -2px 1px white;
  right: -2px;
  z-index: 100;
  transform: rotate(90deg);
}
#totop.show {
  opacity: 1;
  bottom: 10vw;
}
#totop.bottom:before {
  border-color: white;
}
#totop.bottom:after {
  background-color: white;
}
#totop:before {
  content: "";
  border-bottom: 1px solid #002480;
  width: 0px;
  height: 1px;
  position: absolute;
  right: 105%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  -webkit-animation: totop_line 5s ease-in-out 0s alternate infinite;
          animation: totop_line 5s ease-in-out 0s alternate infinite;
}
#totop:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #002480;
  border-radius: 5px;
  right: 105%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  -webkit-animation: totop_mark 5s ease-in-out 0s alternate infinite;
          animation: totop_mark 5s ease-in-out 0s alternate infinite;
}
@-webkit-keyframes totop_line {
  0% {
    width: 0;
  }
  30% {
    width: 0;
  }
  70% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}
@keyframes totop_line {
  0% {
    width: 0;
  }
  30% {
    width: 0;
  }
  70% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}
@-webkit-keyframes totop_mark {
  0% {
    width: 0px;
    height: 0px;
    right: 105%;
  }
  30% {
    width: 0px;
    height: 0px;
    right: 105%;
  }
  70% {
    width: 5px;
    height: 5px;
    right: calc(105% + 100px);
  }
  100% {
    width: 5px;
    height: 5px;
    right: calc(105% + 100px);
  }
}
@keyframes totop_mark {
  0% {
    width: 0px;
    height: 0px;
    right: 105%;
  }
  30% {
    width: 0px;
    height: 0px;
    right: 105%;
  }
  70% {
    width: 5px;
    height: 5px;
    right: calc(105% + 100px);
  }
  100% {
    width: 5px;
    height: 5px;
    right: calc(105% + 100px);
  }
}

#page2nd header#header a {
  color: #2d2d2d;
}
#page2nd header#header .btn a {
  color: white;
}
#page2nd header#header .sub-menu li a {
  color: white;
}
#page2nd header#header .hamburger-menu .menu-btn span, #page2nd header#header .hamburger-menu .menu-btn span:before, #page2nd header#header .hamburger-menu .menu-btn span:after {
  background-color: #2d2d2d;
}
#page2nd header#header.back h1 a {
  color: white;
}
#page2nd header#header.back .hamburger-menu .menu-btn span, #page2nd header#header.back .hamburger-menu .menu-btn span:before, #page2nd header#header.back .hamburger-menu .menu-btn span:after {
  background-color: white;
}
#page2nd header#header.back .flex .head_menu nav ul.menu li a {
  color: white;
}
#page2nd #subpage {
  padding-top: 80px;
}

.downloads_list .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.downloads_list .flex .downloads_block {
  width: 33.3%;
  padding: 2%;
}
.downloads_list .flex .downloads_block .block {
  background-color: white;
  padding-bottom: 5%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.downloads_list .flex .downloads_block .block .img img {
  width: 100%;
  height: 14vw;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.downloads_list .flex .downloads_block .block h3 {
  font-size: 100%;
  margin: 3%;
}
.downloads_list .flex .downloads_block .block h3 span {
  display: block;
  font-family: Oswald, sans-serif;
  color: #002480;
  font-weight: normal;
  font-size: 200%;
}
.downloads_list .flex .downloads_block .block h3 strong {
  font-size: 100%;
  padding: 3% 0 0;
  display: block;
}
.downloads_list .flex .downloads_block .block .date {
  display: block;
  padding: 1% 0;
  font-size: 80%;
  font-family: Oswald, sans-serif;
}
.downloads_list .flex .downloads_block .block .btn {
  padding: 5% 5% 0;
}
.downloads_list .flex .downloads_block .block .btn a {
  width: 100%;
  border-radius: 0;
  position: relative;
  padding: 20px;
}
.downloads_list .flex .downloads_block .block .btn a:after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 5%;
  padding-top: 5%;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: url("../img/icon-download.png") center center/cover no-repeat scroll transparent;
}

.form {
  padding: 5% 0;
}
@media all and (max-width: 1350px) {
  .form {
    padding: 5%;
  }
}
.form a {
  text-decoration: underline;
  color: #002480;
}
.form p {
  text-align: left;
  line-height: 1.5;
  min-height: 1rem;
}
.form dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #C4C4C4;
}
.form dl dt, .form dl dd {
  padding: 0;
  margin: 0;
}
.form dl dt {
  width: 23%;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 30px;
}
.form dl dt.hissu:before {
  content: "※";
  color: red;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form dl dd {
  width: 75%;
}
.form .form_block {
  padding: 5%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.form .form_block select,
.form .form_block input[type=date],
.form .form_block input[type=url],
.form .form_block input[type=text],
.form .form_block input[type=tel],
.form .form_block input[type=email],
.form .form_block textarea {
  padding: 10px 20px;
  width: 100%;
  background-color: #eee;
  border-radius: 3px;
  border: none;
}
.form .form_block select:active, .form .form_block select:focus,
.form .form_block input[type=date]:active,
.form .form_block input[type=date]:focus,
.form .form_block input[type=url]:active,
.form .form_block input[type=url]:focus,
.form .form_block input[type=text]:active,
.form .form_block input[type=text]:focus,
.form .form_block input[type=tel]:active,
.form .form_block input[type=tel]:focus,
.form .form_block input[type=email]:active,
.form .form_block input[type=email]:focus,
.form .form_block textarea:active,
.form .form_block textarea:focus {
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.form .form_block .select_block {
  position: relative;
}
.form .form_block .select_block:before {
  content: "";
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background-color: #002480;
  pointer-events: none;
  z-index: 2;
}
.form .form_block .select_block:after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  position: absolute;
  right: 18px;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(-45deg);
  z-index: 3;
  pointer-events: none;
}
.form .form_block .select_block select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding-right: 50px;
}
.form .form_block ol li, .form .form_block ul li {
  text-align: left;
}
.form .form_block .wpcf7-radio input {
  display: none;
}
.form .form_block .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.form .form_block .wpcf7-radio label .wpcf7-list-item-label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}
.form .form_block .wpcf7-radio label .wpcf7-list-item-label::before, .form .form_block .wpcf7-radio label .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
}
.form .form_block .wpcf7-radio label .wpcf7-list-item-label::before {
  background-color: #eee;
  border-radius: 2px;
  border: 1px solid #eee;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
.form .form_block .wpcf7-radio label .wpcf7-list-item-label::after {
  border-bottom: 4px solid #333;
  border-left: 4px solid #333;
  opacity: 0;
  height: 6px;
  width: 12px;
  transform: rotate(-45deg);
  top: 3px;
  left: 9px;
}
@media all and (max-width: 1350px) {
  .form .form_block .wpcf7-radio label .wpcf7-list-item-label:before {
    width: 1.3vw;
    height: 1.3vw;
  }
  .form .form_block .wpcf7-radio label .wpcf7-list-item-label:after {
    height: 0.5vw;
    width: 1.3vw;
    top: -0.1vw;
    left: 0.5vw;
  }
}
.form .form_block .btn {
  display: inline-block;
  margin: auto;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  width: 80%;
}
.form .form_block .btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}
.form .form_block .btn:hover input[type=submit],
.form .form_block .btn:hover input[type=button] {
  background-color: white;
  color: #002480;
}
.form .form_block .btn:hover input[type=submit],
.form .form_block .btn:hover input[type=button] {
  color: #2d2d2d;
  background-color: white;
}
.form .form_block .btn:hover:after {
  border-color: #2d2d2d;
}
.form .form_block .btn input[type=submit],
.form .form_block .btn input[type=button] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  cursor: pointer;
  color: white;
  border: 1px solid #002480;
  background-color: #002480;
  padding: 10px 30px 10px 30px;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  min-width: 300px;
  width: 100%;
}
.form .form_block .btn input[type=submit]:disabled,
.form .form_block .btn input[type=button]:disabled {
  border-color: #c4c4c4;
  background-color: #c4c4c4;
}
.form .form_block .btn .wpcf7-spinner {
  display: none;
}
.form .form_block.send .wp-block-heading {
  margin-bottom: 5%;
}

.wpcf7 form.invalid .wpcf7-response-output {
  position: fixed;
  z-index: 105;
  width: 80%;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) !important;
  background: white;
  padding: 2vw;
  word-break: auto-phrase;
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
@media all and (max-width: 1450px) {
  .basein_block .block,
.basein {
    width: 98%;
    margin: 0 1%;
  }
  .basein_block .block.w100,
.basein.w100 {
    width: 100%;
    margin: 0;
  }
  html {
    font-size: 1.3vw;
  }
  .customize-support #header.fixhead {
    top: 0;
  }
  header#header {
    height: 10vw;
  }
  header#header .btn {
    margin-left: 1vw;
  }
  #page2nd #subpage {
    padding-top: 10vw;
  }
  .anchor {
    margin-top: -10vw;
    padding-top: 10vw;
  }
}
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .sp_nolink > a {
    pointer-events: none;
  }
  .sp {
    display: inline-block !important;
  }
  .sp.block {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .sptcenter {
    text-align: center;
  }
  .sp_left {
    text-align: left !important;
  }
  p {
    text-align: initial;
  }
  body {
    overflow-x: hidden;
    font-size: 3.8vw;
  }
  body.fix_top {
    padding-top: 15vw;
  }
  img {
    max-width: 100%;
  }
  .basein {
    width: 90%;
    margin: 0 5%;
  }
  .basein.w100 {
    width: 100%;
    margin: 0;
  }
  html {
    font-size: 3.8vw;
  }
  .hamburger-menu {
    display: flex;
    top: 5%;
  }
  .hamburger-menu .menu-btn {
    height: 15vw;
    width: 15vw;
    margin-top: 1%;
    margin-right: 2%;
  }
  .hamburger-menu .menu-btn.on span:before, .hamburger-menu .menu-btn.on span:after {
    background-color: white !important;
  }
  .anchor {
    margin-top: -15vw;
    padding-top: 15vw;
  }
  .newtab_icon:after {
    width: 3.8vw;
    padding-top: 3.8vw;
  }
  header#header {
    height: 15vw;
  }
  header#header .flex h1 {
    width: 80%;
  }
  header#header .flex .head_menu {
    position: fixed;
    top: 0;
    left: 100vw;
    opacity: 0;
    width: 100%;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background: #002480;
    transition: 0.5s;
  }
  header#header .flex .head_menu.on {
    left: 0;
    opacity: 1;
  }
  header#header .flex .head_menu nav {
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    flex-wrap: wrap;
  }
  header#header .flex .head_menu nav ul.menu {
    flex-direction: column;
    justify-content: center;
  }
  header#header .flex .head_menu nav ul.menu li[class*=has-children]:after {
    position: absolute;
    top: 3vw;
    left: 6vw;
    width: 3vw;
    padding-top: 2vw;
  }
  header#header .flex .head_menu nav ul.menu a {
    width: 100%;
    display: block;
    white-space: wrap;
    padding: 2vw 10vw !important;
    text-align: left;
  }
  header#header .flex .head_menu nav ul.menu ul.sub-menu {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    position: relative;
    padding-left: 10vw;
    opacity: 1;
    width: auto;
  }
  header#header .flex .head_menu nav ul.menu ul.sub-menu li {
    padding: 0;
  }
  header#header .flex .head_menu nav ul.menu ul.sub-menu li a {
    white-space: wrap;
    margin-bottom: 0;
    word-break: auto-phrase;
  }
  header#header .flex .head_menu nav .btn {
    margin: 5vw auto 0;
  }
  header#header .flex .head_menu nav .btn a {
    background-color: #e74c3c;
    border-color: #e74c3c;
  }
  #mv .flex h2 .catchs strong {
    font-size: 200%;
  }
  #mv .flex h2 span p {
    text-align: center;
  }
  #mv .flex .silhouette img {
    min-height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #mv .top_news {
    flex-direction: column;
    width: 100%;
    padding: 2%;
    flex-wrap: wrap;
  }
  #mv .top_news h3 {
    text-align: left;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #mv .top_news h3::after {
    display: none;
  }
  #mv .top_news a {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  #mv .top_news a .title {
    max-width: inherit;
    min-width: inherit;
    width: 100%;
    padding: 2% 0;
  }
  #mv .top_news .read_more {
    width: 100%;
    position: absolute;
    top: 5%;
    right: 2%;
  }
  #mv .top_news .read_more a.more_btn {
    justify-content: flex-end;
  }
  #mv .top_news .read_more a.more_btn:after {
    width: 5%;
    padding-top: 5%;
    background-size: cover;
  }
  section#aboutus_top .section_content {
    max-width: 100%;
  }
  section#services_top .service_about .section_content p {
    text-align: left;
  }
  section#services_top .service_block {
    padding: 0;
    margin: 0;
  }
  section#services_top .service_block .service_title {
    padding: 5%;
  }
  section#services_top .service_block .text {
    width: 100%;
    left: 0;
  }
  section#services_top .service_block .text .wrap h4 {
    font-size: 110%;
  }
  section#services_top .service_block .text .wrap p {
    font-size: 80%;
  }
  section#services_top .service_block .image {
    position: relative;
    width: 100%;
  }
  section#services_top .service_block#service02 {
    padding-top: 10%;
  }
  section#services_top .service_block#service02 .service_title {
    left: 0;
  }
  section#services_top .service_block#service02 .text {
    left: 0;
    width: 100%;
  }
  section#services_top .service_block#service02 .text .wrap {
    padding: 5%;
  }
  section#services_top .service_block#service02 .image {
    left: 0;
  }
  section#solution_top {
    padding: 15% 0;
  }
  section#solution_top::before {
    display: none;
  }
  section#solution_top .flex .image, section#solution_top .flex .text {
    width: 100%;
  }
  section#solution_top .flex .image img {
    top: 0;
  }
  section#achievements_top {
    padding-bottom: 0;
  }
  section#achievements_top .section_header h2.title strong {
    font-size: 200%;
  }
  section#achievements_top .datas_block .block {
    flex-direction: column;
  }
  section#achievements_top .datas_block .block .text, section#achievements_top .datas_block .block .image {
    width: 100%;
  }
  section#achievements_top .datas_block .block .text .js-target span {
    display: block;
  }
  section#achievements_top .datas_block .block .text .js-target span:after {
    width: 0%;
    left: 0;
  }
  section#achievements_top .datas_block .block .text .js-active span:after {
    width: 100%;
  }
  section#achievements_top .datas_block .block .text .js-active span:before {
    left: 0;
  }
  section#recruit_voice_top .flex {
    flex-direction: column;
  }
  section#recruit_voice_top .flex .block .box .section_header {
    text-align: center;
  }
  section#news_section .more_link {
    min-width: 50vw;
    justify-content: flex-end;
  }
  section#news_section .news_flex {
    flex-direction: column;
  }
  section#news_section .news_flex .tab, section#news_section .news_flex .news_details {
    width: 100%;
  }
  section#news_section .news_flex .tab nav {
    flex-direction: row;
  }
  section#news_section .news_flex .tab nav a {
    padding: 2%;
    width: 100%;
    font-size: 60%;
    border-right: none;
  }
  section#news_section .news_flex .tab nav a:last-child {
    border-right: 1px solid #002480;
  }
  section#news_section .news_flex .news_details .news_blocks a {
    flex-wrap: wrap;
    padding: 3% 1% 0;
  }
  section#news_section .news_flex .news_details .news_blocks a .title {
    width: 100%;
    max-width: 100%;
    padding: 3% 0;
    margin: 0;
  }
  section#link_section {
    top: 0;
  }
  section#link_section .link_box_flex {
    flex-direction: column;
  }
  section#link_section .link_box_flex .link_box a {
    padding: 5% 10%;
  }
  section#link_section .link_box_flex .link_box a:after {
    width: 10%;
    padding-top: 10%;
  }
  section#link_section .link_box_flex .link_box:first-child a:before {
    border: none;
    border-bottom: 1px solid white;
    top: 100%;
    right: inherit;
    left: 10%;
    width: 80%;
    height: 1px;
  }
  section#link_section + footer#footer {
    padding-top: 5%;
  }
  .more_link {
    align-items: center;
    justify-content: center;
  }
  .more_link a {
    width: 60%;
  }
  .more_link a:after {
    width: 6vw;
    height: 6vw;
  }
  section#link_section .link_box_flex {
    width: 100%;
  }
  footer#footer ul, footer#footer ol {
    flex-direction: column;
  }
  footer#footer .menu_block ul li:not(.no_child) ul.sub-menu, footer#footer .menu_block ol li:not(.no_child) ul.sub-menu {
    padding-left: 5%;
  }
  footer#footer .address_flex .box, footer#footer .address_flex .box.sns {
    width: 100%;
  }
  footer#footer .address_flex .box .copy, footer#footer .address_flex .box.sns .copy {
    padding-top: 5%;
    padding: 5% 0;
    text-align: center;
  }
  footer#footer .address_flex .sns_list {
    align-items: center;
    justify-content: center;
  }
  footer#footer .address_flex .sns_list a {
    margin: auto;
    max-width: 7vw;
  }
  footer#footer .foot_bunners {
    flex-direction: column;
  }
  footer#footer .foot_bunners .box {
    width: 100%;
    margin-bottom: 5%;
  }
  footer#footer .foot_bunners .box a {
    min-height: 17vw;
  }
  #page2nd header#header a {
    color: white;
  }
  #page2nd header#header h1 a {
    color: #2d2d2d;
  }
  #page2nd #subpage {
    padding-top: 15vw;
  }
  .downloads_list .flex .downloads_block {
    width: 100%;
    margin-bottom: 10%;
  }
  .downloads_list .flex .downloads_block .block .img img {
    height: 30vw;
    max-height: 30vw;
  }
  .downloads_list .flex .downloads_block .block .text h3 strong, .downloads_list .flex .downloads_block .block .text h3 span {
    word-break: auto-phrase;
  }
  .downloads_list .flex .downloads_block .block .btn a {
    padding: 5%;
  }
  .form {
    padding: 5% 0;
  }
  .form dl {
    margin-bottom: 3%;
  }
  .form dl dt, .form dl dd {
    width: 100%;
  }
  .form dl dt.hissu {
    padding-right: 0;
    padding-left: 5vw;
  }
  .form dl dt.hissu::before {
    right: inherit;
    left: 0;
  }
  .form dl p {
    margin: 0;
  }
  .form .form_block {
    padding: 5%;
  }
  .form .form_block .wpcf7-radio label .wpcf7-list-item-label:before {
    width: 3.8vw;
    height: 3.8vw;
  }
  .form .form_block .wpcf7-radio label .wpcf7-list-item-label:after {
    height: 1.5vw;
    width: 3vw;
    top: 0vw;
    left: 2vw;
  }
  .form .form_block select,
.form .form_block input[type=date],
.form .form_block input[type=tel],
.form .form_block input[type=url],
.form .form_block input[type=text],
.form .form_block input[type=email],
.form .form_block textarea {
    padding: 2vw;
    margin: 1% 0;
  }
  .form .form_block .wpcf7-form-control-wrap,
.form .form_block .wpcf7-form-control {
    width: 100%;
    display: block;
  }
  .form .form_block .wpcf7-list-item {
    margin: 5%;
    width: 100%;
    display: block;
  }
  .form .form_block .wpcf7-list-item input[type=checkbox] {
    margin-right: 5%;
  }
  .form .form_block .btn input[type=submit],
.form .form_block .btn input[type=button] {
    min-width: auto;
  }
  .form .form_block .select_block:before {
    width: 10vw;
  }
  .form .form_block .select_block:after {
    content: "";
    width: 3vw;
    height: 3vw;
    right: 3vw;
    top: calc(50% - 0.5vw);
  }
  .form .form_block .select_block select {
    padding-right: 10vw;
  }
  .single .single_title {
    margin: 5%;
    text-align: left;
  }
  .single .single_block {
    padding: 0;
  }
}
/*****page navigation******************************************************/
.navigation.pagination {
  padding: 5% 0;
}

.navigation.post {
  position: relative;
}

.navigation.post .nav-links {
  text-align: center;
}

.navigation.post .nav-links a {
  text-decoration: none;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.page-numbers li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  width: 60px;
  height: 60px;
}
.page-numbers a, .page-numbers span {
  font-size: 130%;
  padding: 5px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: 0.3s;
  border-bottom: 2px solid #ccc;
  position: relative;
}
.page-numbers a.current, .page-numbers span.current {
  color: white;
  border-color: #002480;
  position: relative;
  background-color: #002480;
  border: 15px solid #f8f8f8;
}
.page-numbers a.current:after, .page-numbers span.current:after {
  content: "";
  position: absolute;
  left: -15px;
  bottom: -15px;
  width: calc(100% + 30px);
  border-bottom: 2px solid #002480;
}
.page-numbers a:hover, .page-numbers span:hover {
  color: white;
  border-color: #002480;
  position: relative;
  background-color: #002480;
}
.page-numbers .prev, .page-numbers .next {
  background-color: none;
  padding: 0 5px;
  font-size: 100%;
  font-weight: normal;
}
.page-numbers .prev img {
  transform: scaleX(-1);
}

.navigation.post .nav-links a:hover {
  color: #999;
}

.navigation.post .nav-links a[rel=prev] {
  position: absolute;
  left: 0;
}

.navigation.post .nav-links a[rel=next] {
  position: absolute;
  right: 0;
}

@media all and (max-width: 1350px) {
  .page-numbers li {
    width: 4vw;
    height: 4vw;
  }
  .page-numbers li a.current, .page-numbers li span.current {
    border: none;
  }
  .page-numbers li a.current:after, .page-numbers li span.current:after {
    display: none;
  }
}
@media all and (max-width: 540px) and (orientation: portrait) {
  .page-numbers li {
    width: 10vw;
    height: 10vw;
  }
  .page-numbers li a, .page-numbers li span {
    padding: 1vw;
  }
  .page-numbers li .prev, .page-numbers li .next {
    padding: 1vw;
    font-size: 70%;
  }
}
/***********************************************************/
.cursor {
  pointer-events: none;
}
.cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}
.cursor__ball circle {
  fill: #f7f8fa;
}

.float_l {
  float: left;
}

.float_r {
  float: right;
}

.end {
  clear: both;
  font-size: 1px;
  height: 1px;
  padding: 0px;
  margin: 0px;
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.clear {
  display: block;
  clear: both;
  height: 2px;
}

.cleared {
  display: block;
  clear: both;
}

.align_l, .t_left {
  text-align: left !important;
}

.align_r, .t_right {
  text-align: right !important;
}

.align_c, .t_center {
  text-align: center !important;
}

.bold, .bold * {
  font-weight: bold !important;
}

.nolink {
  pointer-events: none;
}
.nolink:after {
  display: none !important;
}

.mb5 {
  margin-bottom: 5% !important;
}

.mb8 {
  margin-bottom: 8% !important;
}

/* display */
.none {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inlineblock {
  display: inline-block;
}

.ime_act {
  ime-mode: active;
}

.ime_dis {
  ime-mode: disabled;
}

.ime_inact {
  ime-mode: inactive;
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.tips {
  font-size: 70%;
}

.clearfix {
  display: block;
}

html > body .clearfix {
  display: block\9 ;
}

@-webkit-keyframes opacityfadein {
  100% {
    opacity: 1;
  }
}
@keyframes opacityfadein {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fuwatto {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fuwatto {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes mvbackmove {
  0% {
    background-size: 100% 100%;
  }
  0% {
    background-size: 110% 110%;
  }
  100% {
    background-size: 100% 100%;
  }
}
@keyframes mvbackmove {
  0% {
    background-size: 100% 100%;
  }
  0% {
    background-size: 110% 110%;
  }
  100% {
    background-size: 100% 100%;
  }
}
@-webkit-keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -200vw 0;
  }
}
@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -200vw 0;
  }
}
@-webkit-keyframes popanime {
  from {
    bottom: -100px; /* 親要素外に配置させて見えなくしておく */
  }
  to {
    bottom: 0px; /* 下から0pxに指定 */
  }
}
@keyframes popanime {
  from {
    bottom: -100px; /* 親要素外に配置させて見えなくしておく */
  }
  to {
    bottom: 0px; /* 下から0pxに指定 */
  }
}
/*
* ContactForm7にてメール送信後にメッセージをアニメーションさせる
*/
/* 送信後、表示指定していないものは全部消す */
.wpcf7 form.sent > *:not(.tt-show) {
  display: none;
}

/* 送信結果表示、最初は消す */
.wpcf7 form .wpcf7-response-output {
  transform: translateY(50px);
  opacity: 0;
  padding: 1rem;
  line-height: 1.4;
  border-radius: 5px;
  margin: 1rem auto;
}

/* 送信結果表示、送信後は出す */
.wpcf7 form .wpcf7-response-output.tt-show,
.wpcf7 form.invalid .wpcf7-response-output {
  display: block;
  transform: translateY(0px);
  transition: all 0.5s ease-out;
  opacity: 1;
}

.lp-page #lp-section {
  position: relative;
}
.lp-page #lp-section .lp-mvimg {
  padding-top: 5%;
  margin-right: 5%;
  margin-bottom: 5%;
  position: relative;
}
.lp-page #lp-section .lp-mvimg .image {
  position: relative;
}
.lp-page #lp-section .lp-mvimg .image img {
  width: 100%;
  height: inherit;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.lp-page #lp-section .lp-mvimg .image .lp-title {
  position: absolute;
  top: -15%;
  right: 0;
}
.lp-page #lp-section .lp-mvimg .image .lp-title h2 {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.lp-page #lp-section .lp-mvimg .image .lp-title h2 span {
  font-size: 250%;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  display: block;
  margin-bottom: 1%;
  color: #002480;
}
.lp-page #lp-section .lp-mvimg .lp-scroll {
  position: absolute;
  top: 25%;
  right: -5%;
  transform: rotate(90deg);
  font-family: "Oswald", sans-serif;
  font-size: 90%;
}
.lp-page #lp-section .lp-mvimg .lp-scroll:before {
  content: "";
  border-bottom: 1px solid #002480;
  width: 0px;
  height: 1px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: scroll_line 5s ease-in-out 0s alternate infinite;
          animation: scroll_line 5s ease-in-out 0s alternate infinite;
}
.lp-page #lp-section .lp-mvimg .lp-scroll:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background-color: #002480;
  border-radius: 5px;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: scroll_mark 5s ease-in-out 0s alternate infinite;
          animation: scroll_mark 5s ease-in-out 0s alternate infinite;
}
.lp-page #lp-section .lp-mvimg .text {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: white;
  width: 100%;
}
.lp-page #lp-section .lp-mvimg .text h3 {
  font-size: 150%;
  margin-bottom: 0;
  line-height: 1.4;
}
.lp-page #lp-section .lp-mvimg .text p {
  margin: 0;
}
.lp-page .lp-content {
  padding: 0 0 5%;
  min-height: 100vh;
}
.lp-page .lp-content .flex {
  display: flex;
}
.lp-page .lp-content .lp-column {
  display: flex;
  gap: 30px;
  margin-bottom: 5%;
}
.lp-page .lp-content .lp-column .lp-block100 {
  width: 100%;
}
.lp-page .lp-content .lp-column .lp-block90 {
  width: 90%;
}
.lp-page .lp-content .lp-column .lp-block80 {
  width: 80%;
}
.lp-page .lp-content .lp-column .lp-block70 {
  width: 70%;
}
.lp-page .lp-content .lp-column .lp-block60 {
  width: 60%;
}
.lp-page .lp-content .lp-column .lp-block50 {
  width: 50%;
}
.lp-page .lp-content .lp-column .lp-block40 {
  width: 40%;
}
.lp-page .lp-content .lp-column .lp-block30 {
  width: 30%;
}
.lp-page .lp-content .lp-column .lp-block20 {
  width: 20%;
}
.lp-page .lp-content .lp-column .lp-block10 {
  width: 10%;
}
.lp-page .lp-content .lp-column div[class^=lp-block] {
  text-align: left;
}
.lp-page .lp-content .lp-text {
  margin-bottom: 5%;
}
.lp-page .lp-content .lp-text h3 {
  color: #002480;
  word-break: auto-phrase;
}
.lp-page .lp-content .lp-text h3 .y {
  color: #ffbf13;
  font-family: "Oswald", sans-serif;
  margin-right: 2%;
  display: inline-block;
}
.lp-page .lp-content .lp-text p {
  word-break: auto-phrase;
}
.lp-page .lp-content .lp-section {
  margin-bottom: 10%;
}
.lp-page .cta .bnr_blocks {
  display: flex;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: space-between;
  background-color: white;
}
.lp-page .cta .bnr_blocks .text {
  width: 65%;
  padding: 0 5%;
}
.lp-page .cta .bnr_blocks .text .bnr-back_black_title {
  display: inline-block;
  padding: 1%;
  background-color: #2d2d2d;
  color: white;
  font-size: 250%;
  font-weight: bold;
  margin: 0;
}
.lp-page .cta .bnr_blocks .text .bnr-back_black_title b {
  font-family: "Oswald", sans-serif;
}
.lp-page .cta .bnr_blocks .text .bnr-title {
  margin: 3% 0;
  font-size: 250%;
}
.lp-page .cta .bnr_blocks .text .more_link {
  justify-content: center;
}
.lp-page .cta .bnr_blocks .image {
  width: 35%;
}
.lp-page .lp-block04_type01 .block_title {
  text-align: center;
}
.lp-page .lp-block04_type01 .block_title strong {
  display: block;
  font-size: 130%;
  color: #002480;
}
.lp-page .lp-block04_type01 .block_title strong .yellow {
  color: #ffbf13;
}
.lp-page .lp-block04_type01 .block_title > span {
  padding: 1% 0;
  color: #ffbf13;
  display: block;
  font-size: 80%;
}
.lp-page .lp-block04_type01 .block04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  padding-bottom: 10%;
}
.lp-page .lp-block04_type01 .block04:after {
  content: "";
  width: 5%;
  padding-top: 3%;
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  background-image: url("../img/arrow_solution.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.lp-page .lp-block04_type01 .block04 .block {
  width: 23%;
  background-color: #002480;
  border: 2px solid #002480;
}
.lp-page .lp-block04_type01 .block04 .block .text {
  color: white;
  padding: 5%;
}
.lp-page .lp-block04_type01 .block04 .block .text h3 {
  margin: 0;
}
.lp-page .lp-block04_type01 .block04 .block .text p {
  text-align: left;
  font-size: 80%;
}
.lp-page .lp-block03_type01 {
  padding: 5% 0;
}
.lp-page .lp-block03_type01 .block_title {
  text-align: center;
  margin-bottom: 3%;
}
.lp-page .lp-block03_type01 .block_title strong {
  display: block;
  font-size: 130%;
  color: #002480;
}
.lp-page .lp-block03_type01 .block_title strong .yellow {
  color: #ffbf13;
}
.lp-page .lp-block03_type01 .block_title > span {
  padding: 1% 0;
  color: #ffbf13;
  display: block;
  font-size: 80%;
}
.lp-page .lp-block03_type01 .block03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
.lp-page .lp-block03_type01 .block03 .block {
  width: 30%;
  background-color: white;
  border: 1px solid #D1D1D1;
}
.lp-page .lp-block03_type01 .block03 .block .text {
  padding: 15% 5%;
}
.lp-page .lp-block03_type01 .block03 .block .text h3 {
  margin: 0 auto 5%;
  color: #002480;
}
.lp-page .lp-block03_type01 .block03 .block .text p {
  text-align: left;
  font-size: 80%;
}
.lp-page .lp-block03_type01 .block03 .block .image {
  position: relative;
}
.lp-page .lp-block03_type01 .block03 .block .image img {
  width: 100%;
}
.lp-page .lp-block03_type01 .block03 .block .image:after {
  content: "";
  width: 20%;
  padding-top: 20%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80%;
  background-image: url("../img/reason_icon01.png");
  background-size: cover;
}
.lp-page .lp-block03_type01 .block03 .block .image.icon02:after {
  background-image: url("../img/reason_icon02.png");
}
.lp-page .lp-block03_type01 .block03 .block .image.icon03:after {
  background-image: url("../img/reason_icon03.png");
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .lp-page #lp-section .lp-mvimg {
    padding-top: 0;
    margin-right: 0;
  }
  .lp-page #lp-section .lp-mvimg .image .lp-title {
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    padding: 1% 0;
    background-color: rgba(0, 36, 128, 0.5);
  }
  .lp-page #lp-section .lp-mvimg .image .lp-title h2 {
    align-items: center;
    justify-content: center;
    font-size: 100%;
  }
  .lp-page #lp-section .lp-mvimg .image .lp-title h2 span {
    color: white;
    font-size: 150%;
    margin-bottom: 0;
  }
  .lp-page #lp-section .lp-mvimg .image .lp-title h2 strong {
    color: #ffbf13;
  }
  .lp-page #lp-section .lp-mvimg .lp-scroll {
    display: none;
  }
  .lp-page #lp-section .lp-mvimg .text {
    position: relative;
    padding: 5% 0;
    width: 100%;
    border: 0;
    color: #333;
    top: 0%;
    transform: none;
    left: 0;
  }
  .lp-page #lp-section .lp-mvimg .text h3 {
    margin: 0;
  }
  .lp-page #lp-section .lp-mvimg .text p {
    margin: 1% 0;
    font-size: 80%;
    line-height: 1.2;
  }
  .lp-page .lp-content {
    min-height: auto;
  }
  .lp-page .lp-content .lp-column {
    gap: 0;
    flex-wrap: wrap;
  }
  .lp-page .lp-content .lp-column div[class^=lp-block] {
    width: 100%;
  }
  .lp-page .lp-content .section_header {
    margin-bottom: 5%;
  }
  .lp-page .lp-content .section_header h2.title {
    align-items: center;
    justify-content: center;
  }
  .lp-page .lp-content .section_header h2.title strong {
    font-size: 200%;
  }
  .lp-page .lp-content .lp-text {
    margin-bottom: 10%;
  }
  .lp-page .lp-content .lp-text h3 {
    text-align: center;
    line-height: 1.5;
  }
  .lp-page .cta .bnr_blocks {
    flex-direction: column;
  }
  .lp-page .cta .bnr_blocks .text, .lp-page .cta .bnr_blocks .image {
    width: 100%;
  }
  .lp-page .cta .bnr_blocks .text {
    padding: 5%;
  }
  .lp-page .cta .bnr_blocks .text .bnr-title {
    font-size: 150%;
  }
  .lp-page .lp-block04_type01 .block_title strong {
    word-break: auto-phrase;
  }
  .lp-page .lp-block04_type01 .block_title strong .yellow {
    display: block;
  }
  .lp-page .lp-block04_type01 .block04:after {
    bottom: 0;
    width: 15%;
    padding-top: 8%;
  }
  .lp-page .lp-block04_type01 .block04 .block {
    width: 49%;
    margin-bottom: 2%;
  }
  .lp-page .lp-block03_type01 .block_title {
    margin-bottom: 5%;
  }
  .lp-page .lp-block03_type01 .block03 {
    flex-wrap: wrap;
  }
  .lp-page .lp-block03_type01 .block03 .block {
    width: 100%;
    margin-bottom: 5%;
  }
  .lp-page .lp-block03_type01 .block03 .block .text {
    padding: 15% 5% 5%;
  }
}
@-webkit-keyframes scroll_line {
  0% {
    width: 0;
  }
  30% {
    width: 0;
  }
  70% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}
@keyframes scroll_line {
  0% {
    width: 0;
  }
  30% {
    width: 0;
  }
  70% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}
@-webkit-keyframes scroll_mark {
  0% {
    width: 0px;
    height: 0px;
    left: 100%;
  }
  30% {
    width: 0px;
    height: 0px;
    left: 100%;
  }
  70% {
    width: 5px;
    height: 5px;
    left: calc(100% + 100px);
  }
  100% {
    width: 5px;
    height: 5px;
    left: calc(100% + 100px);
  }
}
@keyframes scroll_mark {
  0% {
    width: 0px;
    height: 0px;
    left: 100%;
  }
  30% {
    width: 0px;
    height: 0px;
    left: 100%;
  }
  70% {
    width: 5px;
    height: 5px;
    left: calc(100% + 100px);
  }
  100% {
    width: 5px;
    height: 5px;
    left: calc(100% + 100px);
  }
}
.archive {
  position: relative;
}
.archive .archive-mv {
  padding-top: 5%;
  margin-right: 5%;
  margin-bottom: 5%;
  position: relative;
}
.archive .archive-mv .image {
  position: relative;
}
.archive .archive-mv .image img {
  width: 100%;
  height: inherit;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.archive .archive-mv .image .title {
  position: absolute;
  top: -15%;
  right: 0;
}
.archive .archive-mv .image .title h2 {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.archive .archive-mv .image .title h2 span {
  font-size: 250%;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  display: block;
  margin-bottom: 1%;
  color: #002480;
}
.archive .archive-mv .scroll {
  position: absolute;
  top: 25%;
  right: -5%;
  transform: rotate(90deg);
  font-family: "Oswald", sans-serif;
  font-size: 90%;
}
.archive .archive-mv .scroll:before {
  content: "";
  border-bottom: 1px solid #002480;
  width: 0px;
  height: 1px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: scroll_line 5s ease-in-out 0s alternate infinite;
          animation: scroll_line 5s ease-in-out 0s alternate infinite;
}
.archive .archive-mv .scroll:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background-color: #002480;
  border-radius: 5px;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: scroll_mark 5s ease-in-out 0s alternate infinite;
          animation: scroll_mark 5s ease-in-out 0s alternate infinite;
}
.archive.news #important_news {
  margin-bottom: 5%;
}
.archive.news #important_news .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.archive.news #important_news .flex header {
  width: 30%;
}
.archive.news #important_news .flex header h2.title strong {
  text-align: left;
}
.archive.news .news_blocks {
  padding: 2%;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.archive.news .news_blocks .nodata {
  padding: 2% 0;
  text-align: left;
  font-size: 90%;
}
.archive.news .news_blocks a {
  display: flex;
  align-items: center;
  padding: 3% 1%;
  border-bottom: 1px solid #ccc;
  transition: 0.3s;
}
.archive.news .news_blocks a:last-child {
  border-bottom: none;
}
.archive.news .news_blocks a .date {
  font-family: "Oswald", sans-serif;
  padding-right: 2vw;
  font-weight: bold;
  font-size: 90%;
}
.archive.news .news_blocks a .category {
  border: 1px solid #002480;
  padding: 0.5% 1vw;
  margin-right: 2vw;
  font-size: 70%;
  color: white;
  background-color: #002480;
  min-width: 130px;
  transition: 0.3s;
}
.archive.news .news_blocks a .read_more {
  display: flex;
  align-items: center;
}
.archive.news .news_blocks a .title {
  max-width: 50vw;
  min-width: 25vw;
  font-size: 80%;
  font-weight: normal;
  padding-right: 2vw;
  text-align: left;
  transition: 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis; /* Safari */
  -o-text-overflow: ellipsis; /* Opera */
}
.archive.news .news_blocks a:hover {
  background-color: #002480;
}
.archive.news .news_blocks a:hover .date, .archive.news .news_blocks a:hover .title {
  color: white;
}
.archive.news .news_blocks a:hover .category {
  background-color: white;
  color: #002480;
}
.archive.news .archive_menu {
  background-color: #002480;
  padding: 1% 0;
  margin-bottom: 5%;
}
.archive.news .archive_menu nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1%;
}
.archive.news .archive_menu a {
  padding: 1.5% 2%;
  width: 100%;
  background-color: white;
  color: #002480;
  border: 1px solid white;
}
.archive.news .archive_menu a:hover {
  background-color: #002480;
  color: white;
}
.archive.news .archive_menu a.on {
  background-color: #002480;
  color: white;
}
.archive.news .archive_menu a.on:hover {
  background-color: white;
  color: #002480;
}
.archive.news .news_list {
  margin-bottom: 5%;
}
.archive.news .news_list .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.archive.news .news_list .flex .news_block {
  width: 31.33%;
  margin: 0 1% 3%;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.archive.news .news_list .flex .news_block .img {
  height: 200px;
}
.archive.news .news_list .flex .news_block .img img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive.news .news_list .flex .news_block .text {
  padding: 5%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.archive.news .news_list .flex .news_block .text .date {
  font-size: 120%;
  text-align: left;
  color: #002480;
  font-family: "Oswald", sans-serif;
}
.archive.news .news_list .flex .news_block .text h3 {
  font-weight: normal;
  width: 100%;
  display: block;
  font-size: 100%;
  text-align: left;
}
.archive.news .news_list .flex .news_block .text .category {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.archive.news .news_list .flex .news_block .text .category span {
  border: 1px solid #002480;
  padding: 1%;
  margin-right: 1vw;
  font-size: 70%;
  color: white;
  background-color: #002480;
  min-width: 130px;
  transition: 0.3s;
}
.archive.news .news_list .flex .news_block a {
  height: 100%;
}
.archive.news .news_list .flex .news_block a:hover {
  background-color: rgba(0, 36, 128, 0.1);
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .archive .archive-mv {
    padding-top: 0;
    margin-right: 0;
  }
  .archive .archive-mv .image .title {
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    padding: 1% 0;
    background-color: rgba(0, 36, 128, 0.5);
  }
  .archive .archive-mv .image .title h2 {
    align-items: center;
    justify-content: center;
    font-size: 100%;
  }
  .archive .archive-mv .image .title h2 span {
    color: white;
    font-size: 150%;
    margin-bottom: 0;
  }
  .archive .archive-mv .image .title h2 strong {
    color: #ffbf13;
  }
  .archive .archive-mv .scroll {
    display: none;
  }
  .archive.news #important_news .flex header {
    width: 100%;
    margin-bottom: 5%;
  }
  .archive.news #important_news .flex header h2.title strong {
    font-size: 250%;
  }
  .archive.news #important_news .flex .news_blocks {
    margin: 5%;
    width: 100%;
  }
  .archive.news #important_news .flex .news_blocks a .category {
    min-width: 20vw;
  }
  .archive.news .archive_menu {
    padding: 1%;
    margin: 5%;
  }
  .archive.news .archive_menu .basein {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .archive.news .archive_menu .basein nav {
    flex-wrap: wrap;
    gap: 0;
  }
  .archive.news .archive_menu .basein nav a {
    padding: 5%;
    width: 50%;
  }
  .archive.news .news_list .flex .news_block {
    width: 100%;
  }
}
@keyframes scroll_line {
  0% {
    width: 0;
  }
  30% {
    width: 0;
  }
  70% {
    width: 100px;
  }
  100% {
    width: 100px;
  }
}
@keyframes scroll_mark {
  0% {
    width: 0px;
    height: 0px;
    left: 100%;
  }
  30% {
    width: 0px;
    height: 0px;
    left: 100%;
  }
  70% {
    width: 5px;
    height: 5px;
    left: calc(100% + 100px);
  }
  100% {
    width: 5px;
    height: 5px;
    left: calc(100% + 100px);
  }
}
.page_aboutus #greeting {
  padding: 5%;
  background-color: white;
  position: relative;
  margin-bottom: 5%;
}
.page_aboutus #greeting:before {
  content: "";
  width: 30%;
  padding-top: 30%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/greeting_back01.webp");
  background-size: cover;
  z-index: 1;
}
.page_aboutus #greeting:after {
  content: "";
  width: 30%;
  padding-top: 30%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../img/greeting_back02.webp");
  background-size: cover;
  z-index: 1;
}
.page_aboutus #greeting .basein {
  z-index: 2;
  position: relative;
}
.page_aboutus #greeting .name_stamp {
  text-align: right;
  padding: 5% 0;
}
.page_aboutus #greeting .name_stamp p {
  margin: 0;
  padding: 0;
  text-align: right;
}
.page_aboutus #greeting .name_stamp p.name {
  font-size: 120%;
}
.page_aboutus #profile .profile_block dl {
  display: flex;
  gap: 5%;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 1px solid #E8E8E8;
  padding: 2% 0;
  margin: 0;
  line-height: 1.5;
}
.page_aboutus #profile .profile_block dl dt {
  width: 20%;
}
.page_aboutus #profile .profile_block dl dt h3 {
  padding: 0;
  margin: 0;
  padding-left: 10%;
  font-size: 100%;
  font-weight: normal;
  border-left: 1px solid #002480;
}
.page_aboutus #profile .profile_block dl dd {
  width: 80%;
  margin: 0;
}
.page_aboutus #profile .profile_block ol {
  padding-left: 25px;
}
@media all and (max-width: 1350px) {
  .page_aboutus #profile .profile_block ol {
    padding-left: 2vw;
  }
}
.page_aboutus #history .history_block {
  position: relative;
}
.page_aboutus #history .history_block:before {
  content: "";
  position: absolute;
  left: 15%;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: #F2F2F2;
}
.page_aboutus #history .history_block:after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #002480;
  position: absolute;
  left: 15%;
  top: 100%;
  opacity: 0;
}
.page_aboutus #history .history_block.js-active:after {
  -webkit-animation: history_mark 0.3s linear 0s normal both;
          animation: history_mark 0.3s linear 0s normal both;
}
.page_aboutus #history .history_block dl {
  display: flex;
  gap: 5%;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  padding: 0 0 5%;
  margin: 0;
  line-height: 1.5;
}
.page_aboutus #history .history_block dl dt {
  width: 20%;
}
.page_aboutus #history .history_block dl dt h3 {
  padding: 0;
  margin: 0;
  font-size: 120%;
}
.page_aboutus #history .history_block dl dd {
  width: 80%;
  margin: 0;
  padding-bottom: 3%;
  border-bottom: 1px solid #E8E8E8;
}
.page_aboutus #history .history_block dl dd p {
  margin: 0;
  margin-bottom: 1%;
}
.page_aboutus #history .history_block:last-child dl {
  padding-bottom: 0;
}
@-webkit-keyframes history_mark {
  0% {
    opacity: 0;
    top: 100%;
  }
  100% {
    opacity: 1;
    top: 13px;
  }
}
@keyframes history_mark {
  0% {
    opacity: 0;
    top: 100%;
  }
  100% {
    opacity: 1;
    top: 13px;
  }
}
.page_aboutus #our_strength {
  background-color: white;
  padding: 5% 0;
}
.page_aboutus #our_strength .our-strength-blocks {
  display: flex;
  gap: 5%;
  align-items: stretch;
  justify-content: center;
}
.page_aboutus #our_strength .our-strength-blocks .our-strength-block {
  width: 20%;
}
.page_aboutus #our_strength .our-strength-blocks .our-strength-block .text p {
  text-align: left;
  font-size: 80%;
  word-break: auto-phrase;
}
.page_aboutus #access {
  margin-bottom: 0;
  padding: 5% 0;
}
.page_aboutus #access .access_block dl {
  display: flex;
  gap: 5%;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 1px solid #E8E8E8;
  padding: 2% 0;
  margin: 0;
  line-height: 1.5;
}
.page_aboutus #access .access_block dl dt {
  width: 20%;
}
.page_aboutus #access .access_block dl dt h3 {
  padding: 0;
  margin: 0;
  font-size: 100%;
}
.page_aboutus #access .access_block dl dd {
  width: 80%;
  margin: 0;
}
.page_aboutus #access .access_block ol {
  padding-left: 25px;
}
@media all and (max-width: 1350px) {
  .page_aboutus #access .access_block ol {
    padding-left: 2vw;
  }
}
.page_aboutus #access .access_block address {
  font-style: normal;
}
.page_aboutus #security-lock {
  padding: 5% 0;
}
.page_aboutus #security-lock .security-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_aboutus #security-lock .security-btn a {
  max-width: 500px;
  padding: 1.5% 5%;
  font-weight: bold;
  background-color: white;
  color: #002480;
  border: 2px solid #002480;
  transition: 0.5s;
  position: relative;
}
.page_aboutus #security-lock .security-btn a:before {
  content: "";
  width: 7%;
  padding-top: 7%;
  position: absolute;
  top: 50%;
  left: 5%;
  background-image: url(../img/icon_lock.png);
  background-size: contain;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.page_aboutus #security-lock .security-btn a:after {
  content: "";
  width: 7%;
  padding-top: 7%;
  position: absolute;
  top: 50%;
  right: 5%;
  background-image: url(../img/icon-arrow-right-blue.png);
  background-size: contain;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.page_aboutus #security-lock .security-btn a:hover {
  background-color: #ffbf13;
}
.page_aboutus #security-lock .security-btn a:hover:before {
  transform: translateY(-50%) rotate(-360deg);
}
.page_aboutus #security-lock .security-btn a:hover:after {
  transform: translateY(-50%) rotate(360deg);
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .page_aboutus #value .lp-text h3 {
    text-align: left !important;
    text-indent: -4vw;
    margin-left: 10vw;
  }
  .page_aboutus #greeting {
    padding: 10% 0;
    margin-bottom: 0;
  }
  .page_aboutus #greeting .basein {
    width: 100%;
    margin: 0;
  }
  .page_aboutus #greeting .lp-block70 {
    padding: 5%;
  }
  .page_aboutus #profile .basein {
    width: 100%;
    margin: 0;
  }
  .page_aboutus #profile .lp-block70 {
    padding: 5%;
  }
  .page_aboutus #profile .profile_block dl {
    flex-wrap: wrap;
  }
  .page_aboutus #profile .profile_block dl dt, .page_aboutus #profile .profile_block dl dd {
    width: 100%;
  }
  .page_aboutus #profile .profile_block dl dt h3 {
    padding-left: 5%;
  }
  .page_aboutus #profile .profile_block dl dd {
    margin: 0;
    padding: 2%;
    padding-left: 5%;
    font-size: 80%;
  }
  .page_aboutus #history .history_block:after, .page_aboutus #history .history_block:before {
    left: 22.5%;
  }
  .page_aboutus #history .history_block dl dt {
    width: 25%;
  }
  .page_aboutus #history .history_block dl dd {
    width: 70%;
  }
  .page_aboutus #our_strength {
    padding-top: 0;
  }
  .page_aboutus #our_strength .basein {
    width: 100%;
    margin: 0;
  }
  .page_aboutus #our_strength .our-strength-blocks {
    gap: 0;
    flex-wrap: wrap;
  }
  .page_aboutus #our_strength .our-strength-blocks .our-strength-block {
    width: 80%;
    padding: 2% 3% 5%;
  }
  .page_aboutus #our_strength .our-strength-blocks .our-strength-block .text p {
    text-align: left;
    font-size: 80%;
  }
  .page_aboutus #access .access_block dl {
    flex-wrap: wrap;
  }
  .page_aboutus #access .access_block dl dt, .page_aboutus #access .access_block dl dd {
    width: 100%;
  }
  .page_aboutus #access .access_block dl dd {
    margin: 0;
    padding: 2%;
    padding-left: 5%;
    font-size: 80%;
  }
  .page_aboutus #security-lock .security-btn {
    width: 100%;
  }
  .page_aboutus #security-lock .security-btn a {
    width: 100%;
    max-width: 100%;
    padding: 5%;
  }
}
.page_solution {
  padding-bottom: 0 !important;
}
.page_solution #solution {
  padding-bottom: 5%;
}
.page_solution #saps_4hana {
  padding: 5% 0;
  background-color: white;
}
.page_solution #saps_4hana h2.title {
  margin: 0;
}
.page_solution #saps_4hana h2.title strong {
  color: #002480;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 300%;
  display: block;
}
.page_solution #saps_4hana .db_catch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 5% 0;
  flex-wrap: wrap;
}
.page_solution #saps_4hana .db_catch .image {
  width: 70%;
}
.page_solution #saps_4hana .db_catch .text {
  position: absolute;
  width: 45%;
  background-color: #002480;
  color: white;
  padding: 2%;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page_solution #saps_4hana .db_catch .text h3 {
  margin: 0;
}
.page_solution #saps_4hana .db_catch .text h3 span, .page_solution #saps_4hana .db_catch .text h3 strong {
  display: block;
  text-align: left;
}
.page_solution #saps_4hana .db_catch .text h3 strong {
  font-size: 300%;
}
.page_solution #saps_4hana .db_catch .text p {
  margin-bottom: 0;
}
.page_solution #advantage h2.title {
  margin: 0;
}
.page_solution #advantage h2.title strong {
  color: #002480;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 300%;
  display: block;
}
.page_solution #case_study {
  padding: 5% 0;
  background-image: url("../img/case_back.webp");
  background-size: cover;
}
.page_solution #case_study h2.title {
  margin: 0;
}
.page_solution #case_study h2.title strong {
  color: #002480;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 300%;
  display: block;
}
.page_solution #case_study h2.title span {
  display: block;
}
.page_solution #case_study .case_block {
  padding: 1% 3%;
  background-color: white;
  margin: 5%;
}
.page_solution #case_study .case_block h3 {
  margin: 0;
  color: #002480;
  font-size: 120%;
  text-align: left;
  padding: 1% 0;
  border-bottom: 1px solid #D1D1D1;
}
.page_solution #case_study .case_block .block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_solution #case_study .case_block .block h4 {
  margin: 1% 0;
  padding: 1%;
  width: 15%;
  border-radius: 50px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #002480;
}
.page_solution #case_study .case_block .block p {
  margin: 0;
  width: 83%;
  font-size: 80%;
  display: flex;
  align-items: center;
  text-align: left;
  line-height: 1.3;
  justify-content: flex-start;
}
.page_solution #business_design {
  padding-top: 5%;
}
.page_solution #business_design h2.title {
  font-size: 100%;
}
.page_solution #business_design h2.title strong {
  font-size: 200%;
  color: #002480;
}
.page_solution #business_design h2.title p {
  font-weight: normal;
  font-size: 80%;
  text-align: center;
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .page_solution #saps_4hana h2.title strong {
    font-size: 200%;
  }
  .page_solution #saps_4hana .db_catch {
    flex-direction: column;
  }
  .page_solution #saps_4hana .db_catch .image {
    width: 100%;
  }
  .page_solution #saps_4hana .db_catch .text {
    width: 100%;
    left: 0;
    top: 0;
    transform: none;
    position: relative;
    padding: 5%;
  }
  .page_solution #saps_4hana .db_catch .text h3 span, .page_solution #saps_4hana .db_catch .text h3 strong {
    text-align: center;
  }
  .page_solution #saps_4hana .db_catch .text h3 strong {
    font-size: 250%;
  }
  .page_solution #saps_4hana .db_catch .text p {
    margin-top: 1%;
  }
  .page_solution #advantage h2.title strong {
    font-size: 200%;
  }
  .page_solution #case_study h2.title strong {
    font-size: 200%;
  }
  .page_solution #case_study .case_block {
    margin: 5% 0;
    padding: 5%;
  }
  .page_solution #case_study .case_block h3 {
    padding: 3% 0;
  }
  .page_solution #case_study .case_block .block {
    padding: 5% 0 0;
    flex-direction: column;
  }
  .page_solution #case_study .case_block .block h4 {
    width: 100%;
    padding: 2% 0;
  }
  .page_solution #case_study .case_block .block p {
    width: 100%;
    padding: 2%;
  }
}
.page_service01 {
  margin-bottom: 0;
  padding-bottom: 0 !important;
}
.page_service01 #solution h2.title {
  position: relative;
}
.page_service01 #solution h2.title .text {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.page_service01 #solution h2.title .text strong {
  color: #002480;
  font-size: 150%;
}
.page_service01 #solution h2.title .text p {
  font-size: 80%;
  margin: 0 auto;
}
.page_service01 #solution .solution_blocks {
  margin: 5% 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2%;
}
.page_service01 #solution .solution_blocks .solution_block {
  width: 100%;
  background-color: #002480;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.page_service01 #solution .solution_blocks .solution_block h3 {
  line-height: 1.5;
  font-size: 100%;
}
.page_service01 #service {
  padding: 5% 0;
  background-color: white;
  position: relative;
}
.page_service01 #service:before {
  content: "";
  width: 30%;
  padding-top: 30%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/greeting_back01.webp");
  background-size: cover;
  z-index: 1;
}
.page_service01 #service:after {
  content: "";
  width: 30%;
  padding-top: 30%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../img/greeting_back02.webp");
  background-size: cover;
  z-index: 1;
}
.page_service01 #service h2.title {
  margin: 0;
  z-index: 2;
  position: relative;
}
.page_service01 #service h2.title strong {
  color: #002480;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 300%;
  display: block;
}
.page_service01 #service h2.title p {
  margin: 0;
}
.page_service01 #service .block03 {
  margin: 5% 0;
  z-index: 2;
  position: relative;
}
.page_service01 #service .block03 .block {
  position: relative;
}
.page_service01 #service .block03 .block .image:after {
  background-image: url("../img/service02/service02_icon01.webp");
}
.page_service01 #service .block03 .block:nth-of-type(2) .image:after {
  background-image: url("../img/service02/service02_icon02.webp");
}
.page_service01 #service .block03 .block:nth-of-type(3) .image:after {
  background-image: url("../img/service02/service02_icon03.webp");
}
.page_service01 #service .block03 .block .text h4 {
  color: #C1E3FC;
  font-family: "Oswald", sans-serif;
  position: absolute;
  width: 100%;
  bottom: 2%;
  left: 0;
  text-align: center;
}
.page_service01 #remote_member,
.page_service01 #member {
  padding: 5% 0;
}
.page_service01 #remote_member h2.title strong,
.page_service01 #member h2.title strong {
  color: #002480;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 300%;
  display: block;
}
.page_service01 #remote_member h2.title strong b,
.page_service01 #member h2.title strong b {
  color: #ffbf13;
  font-weight: normal;
}
.page_service01 #remote_member .catch_text,
.page_service01 #member .catch_text {
  padding: 3% 0;
}
.page_service01 #remote_member .catch_text p,
.page_service01 #member .catch_text p {
  word-break: auto-phrase;
}
.page_service01 #remote_member .image img,
.page_service01 #member .image img {
  min-width: 540px;
}
.page_service01 #remote_member .white_block,
.page_service01 #member .white_block {
  padding: 5%;
  background-color: white;
  border-radius: 5px;
  position: relative;
  border: 1px solid #ccc;
}
.page_service01 #remote_member .white_block .block_title,
.page_service01 #member .white_block .block_title {
  position: absolute;
  padding: 2%;
  background-color: #002480;
  color: white;
  margin: 5px;
  left: 0;
  top: 0;
  display: inline-block;
}
.page_service01 #remote_member .white_block .block_title:after,
.page_service01 #member .white_block .block_title:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 10%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #002480;
}
.page_service01 #remote_member .white_block .text,
.page_service01 #member .white_block .text {
  margin: 5% 0;
  padding: 2% 5%;
  background-color: #EFF6FF;
}
.page_service01 #remote_member .white_block .text ol li,
.page_service01 #member .white_block .text ol li {
  text-align: left;
  padding-left: 2%;
  margin-bottom: 2%;
}
.page_service01 #remote_member .white_block .text ol li::marker,
.page_service01 #member .white_block .text ol li::marker {
  font-size: 150%;
  font-family: "Oswald", sans-serif;
  color: #002480;
  font-style: italic;
  margin-right: 2%;
  font-weight: bold;
}
.page_service01 #remote_member {
  background-color: white;
}
.page_service01 #support h2.title {
  margin-bottom: 5%;
}
.page_service01 #support h2.title strong {
  color: #002480;
}
.page_service01 #support h2.title strong b {
  color: #ffbf13;
}
.page_service01 #support .block03 .block .image:after {
  display: none;
}
.page_service01 #support .block03 .block .text {
  padding: 10% 5%;
}
.page_service01 #support .block03 .block .text h3 {
  text-align: left;
  line-height: 1.5;
  word-break: auto-phrase;
}
.page_service01 #bottom_catch {
  background-image: url("../img/service02/serivce02_bottom_mv.webp");
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_service01 #bottom_catch .catch_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 0;
  color: white;
}
.page_service01 #bottom_catch .catch_block h3 {
  word-break: auto-phrase;
}
.page_service01 #bottom_catch .catch_block p {
  text-align: left;
  line-height: 1.5;
  word-break: auto-phrase;
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .page_service01 #solution h2.title .text strong {
    font-size: 120%;
  }
  .page_service01 #solution h2.title .text p {
    font-weight: normal;
    font-size: 60%;
    text-align: center;
  }
  .page_service01 #solution .solution_blocks {
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
  }
  .page_service01 #solution .solution_blocks .solution_block {
    width: 49%;
    margin-bottom: 2%;
  }
  .page_service01 #solution .solution_blocks .solution_block h3 {
    font-size: 70%;
  }
  .page_service01 #service {
    padding: 10% 0;
  }
  .page_service01 #service h2.title p {
    text-align: center;
  }
  .page_service01 #service .block03 .block .text h4 {
    position: relative;
    bottom: 0;
  }
  .page_service01 #remote_member h2.title strong,
.page_service01 #member h2.title strong {
    font-size: 200%;
  }
  .page_service01 #remote_member .catch_text p,
.page_service01 #member .catch_text p {
    font-size: 80%;
  }
  .page_service01 #remote_member .white_block,
.page_service01 #member .white_block {
    padding: 5px;
    text-align: left;
  }
  .page_service01 #remote_member .white_block h3.block_title,
.page_service01 #member .white_block h3.block_title {
    position: relative;
    margin-bottom: 5%;
  }
  .page_service01 #remote_member .white_block .text,
.page_service01 #member .white_block .text {
    margin: 0;
  }
  .page_service01 #remote_member .white_block .text ol,
.page_service01 #member .white_block .text ol {
    padding-left: 8vw;
  }
  .page_service01 #remote_member .white_block .text ol li,
.page_service01 #member .white_block .text ol li {
    margin-bottom: 5%;
  }
  .page_service01 #support {
    padding: 10% 0;
  }
  .page_service01 #bottom_catch {
    min-height: auto;
  }
}
.page_service02 .lp-mvimg .image .lp-title h2 {
  align-items: flex-end !important;
}
.page_service02 #traning01 {
  margin-bottom: 5%;
}
.page_service02 #traning_types {
  position: relative;
  padding: 5% 0;
}
.page_service02 #traning_types:before {
  content: "";
  width: 30%;
  padding-top: 30%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/greeting_back01.webp");
  background-size: cover;
  z-index: 1;
}
.page_service02 #traning_types:after {
  content: "";
  width: 30%;
  padding-top: 30%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../img/greeting_back02.webp");
  background-size: cover;
  z-index: 1;
}
.page_service02 #traning_types .traning_blocks {
  position: relative;
  z-index: 2;
}
.page_service02 #traning_types .traning_blocks .flex {
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2%;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block {
  width: 40%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 3%;
  background-color: white;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block h2.title {
  color: white;
  background-color: #002480;
  margin: 1% 0;
  padding: 2% 0;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block p {
  text-align: left;
  font-size: 90%;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum {
  width: 80%;
  margin: 10% auto;
  position: relative;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum:before {
  content: "";
  position: absolute;
  border: 2px solid #002480;
  width: 100%;
  height: 70%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum:after {
  content: "";
  background-color: white;
  position: absolute;
  width: 95%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  position: relative;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum .inner strong, .page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum .inner b, .page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum .inner span {
  display: block;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum .inner strong {
  color: #002480;
  font-size: 400%;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum .inner b {
  padding: 3% 0;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .curriculum .inner span {
  color: #002480;
  font-size: 70%;
  font-family: "Oswald", sans-serif;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .traning_box {
  text-align: left;
  margin-bottom: 5%;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .traning_box h4 {
  border-left: 1px solid #002480;
  padding: 1% 2%;
  font-weight: normal;
  position: relative;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .traning_box h4:after {
  content: "";
  display: block;
  bottom: -40%;
  left: 0;
  width: 100%;
  border-top: 1px solid #E8E8E8;
  position: absolute;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .traning_box ul {
  margin: 10% 5%;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .traning_box ul li {
  text-align: left;
  margin-bottom: 3%;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block .traning_box ul li::marker {
  color: #002480;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block.type02 h2.title {
  background-color: #ffbf13;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block.type02 .curriculum::before {
  border-color: #ffbf13;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block.type02 .curriculum .inner strong, .page_service02 #traning_types .traning_blocks .flex .traning_block.type02 .curriculum .inner span {
  color: #ffbf13;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block.type02 .traning_box h4 {
  border-color: #ffbf13;
}
.page_service02 #traning_types .traning_blocks .flex .traning_block.type02 .traning_box ul li::marker {
  color: #ffbf13;
}
.page_service02 #dispatch {
  padding: 5% 0 0;
}
.page_service02 #dispatch h2.title strong {
  color: #002480;
  font-size: 300%;
  font-family: "Oswald", sans-serif;
  margin-bottom: 1%;
  font-weight: normal;
}
.page_service02 #dispatch h2.title strong .yellow {
  color: #ffbf13;
}
.page_service02 #dispatch h2.title p {
  margin-top: 0;
  text-align: center;
}
.page_service02 #dispatch .sp_column_reverse {
  display: flex;
  flex-direction: column-reverse;
}
.page_service02 #dispatch .sp_column_reverse .images {
  display: flex;
}
.page_service02 #dispatch .sp_column_reverse .images .image {
  width: 100%;
}
.page_service02 #dispatch .sp_column_reverse .images .image img {
  max-width: 100%;
  width: 100%;
}
.page_service02 #dispatch .sp_column_reverse .text {
  padding: 5% 0;
}
.page_service02 #dispatch .sp_column_reverse .text h3.subtitle {
  color: #002480;
}
.page_service02 #dispatch .sp_column_reverse .text p {
  text-align: left;
}
.page_service02 #catch h2 {
  color: #002480;
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .page_service02 .lp-mvimg .image .lp-title h2 {
    align-items: center !important;
  }
  .page_service02 #traning_types .traning_blocks .flex .traning_block {
    width: 100%;
    margin-bottom: 5%;
  }
  .page_service02 #dispatch .sp_column_reverse {
    flex-direction: column;
  }
  .page_service02 #dispatch .sp_column_reverse .text {
    padding-top: 0;
  }
  .page_service02 #dispatch .sp_column_reverse .images {
    flex-direction: column;
  }
}
.page_information-security {
  text-align: left;
  line-height: 1.8;
}
.page_information-security .base_block {
  margin-bottom: 5%;
}
.page_information-security .base_block h2.title {
  color: #002480;
  font-size: 200%;
}
.page_information-security .base_block h3 {
  color: #002480;
  font-size: 150%;
}
.page_information-security .base_block a {
  text-decoration: underline;
}
.page_information-security li {
  margin-bottom: 1%;
}
.page_information-security li::marker {
  color: #002480;
}
.page_information-security ol {
  list-style: none; /* デフォルトの数字（1., 2.など）を非表示にする */
  counter-reset: custom-counter; /* カウンタをリセット */
  padding-left: 0; /* デフォルトの左パディングをリセット */
}
.page_information-security ol li {
  position: relative; /* ::before疑似要素の基準位置 */
  padding-left: 50px; /* カッコつき数字のスペースを確保 */
}
.page_information-security ol li:before {
  counter-increment: custom-counter; /* カウンタを増やす */
  content: "（" counter(custom-counter) "） "; /* カッコと数字を結合 */
  position: absolute; /* 親要素を基準に配置 */
  left: 0; /* 左端に配置 */
  top: 0; /* 上端に配置 */
  font-weight: bold; /* 数字を太字にするなど */
  color: #2d2d2d; /* 数字の色 */
}
.page_information-security table th, .page_information-security table td {
  padding: 10px;
}
.page_information-security table th {
  background-color: #002480;
  color: white;
  text-align: center;
}
.page_information-security table tr td {
  background-color: white;
  border: none;
  border: 1px solid #eee;
}
.page_information-security table tr td:first-child {
  border-left: none;
}
.page_information-security table tr td:last-child {
  border-right: none;
}
.page_information-security table tr:last-child td {
  border-bottom: none;
}
.page_information-security table.fix {
  table-layout: fixed;
}
.page_information-security table.center td {
  text-align: center;
}
.page_information-security table.side_table {
  width: 100%;
}
.page_information-security table.side_table tr th {
  width: 20%;
}
.page_information-security table.side_table tr td {
  border: none;
  border-bottom: 1px solid #eee;
}
.page_information-security #hogo {
  background-color: white;
  padding: 5% 0;
}
.page_information-security #kojinjoho {
  padding: 5% 0;
}
.page_information-security #bottom_btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_information-security #bottom_btn .btn a {
  max-width: 500px;
  padding: 1.5% 5%;
  font-weight: bold;
  background-color: white;
  color: #002480;
  border: 2px solid #002480;
  transition: 0.5s;
  position: relative;
  border-radius: 0;
}
.page_information-security #bottom_btn .btn a:before {
  content: "";
  width: 7%;
  padding-top: 7%;
  position: absolute;
  top: 50%;
  left: 5%;
  background-image: url(../img/pdf_icon_blue.png);
  background-size: contain;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.page_information-security #bottom_btn .btn a:after {
  content: "";
  width: 7%;
  padding-top: 7%;
  position: absolute;
  top: 50%;
  right: 5%;
  background-image: url(../img/dl_icon_blue.png);
  background-size: contain;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.page_information-security #bottom_btn .btn a:hover {
  background-color: #ffbf13;
}
.page_information-security #bottom_btn .btn a:hover:before {
  transform: translateY(-50%) rotate(-360deg);
}
.page_information-security #bottom_btn .btn a:hover:after {
  transform: translateY(-50%) rotate(360deg);
}
.page_information-security #security_bnr {
  padding: 5% 0;
}
.page_information-security #security_bnr .flex {
  align-items: center;
  justify-content: center;
}
.page_information-security #security_bnr .flex a {
  display: block;
  margin: 1%;
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .page_information-security {
    line-height: 1.5;
  }
  .page_information-security p {
    line-height: 1.5;
  }
  .page_information-security .base_block h2.title {
    font-size: 160%;
  }
  .page_information-security .base_block h3 {
    font-size: 130%;
  }
  .page_information-security .base_block h4 {
    font-size: 120%;
  }
  .page_information-security li {
    margin-bottom: 5%;
  }
  .page_information-security table.side_table tr {
    display: block;
    width: 100%;
  }
  .page_information-security table.side_table tr th, .page_information-security table.side_table tr td {
    width: 100%;
    display: block;
  }
  .page_information-security #bottom_btn .btn a {
    padding: 5%;
    width: 100%;
  }
  .page_information-security #bottom_btn .btn a:before {
    display: none;
  }
}
.page-recruits #data {
  padding: 5% 0;
  background-color: white;
}
.page-recruits #data .data_blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.page-recruits #data .data_blocks .block {
  width: 33.3%;
  padding: 5%;
  border-bottom: 1px solid #D4D4D4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.page-recruits #data .data_blocks .block:nth-of-type(3n+2):before {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  top: 10%;
  left: 0;
  border-left: 1px solid #d4d4d4;
}
.page-recruits #data .data_blocks .block:nth-of-type(3n+2):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  top: 10%;
  right: 0;
  border-right: 1px solid #d4d4d4;
}
.page-recruits #data .data_blocks .block h3 {
  width: 100%;
  text-align: left;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
.page-recruits #data .data_blocks .block .data_base {
  padding: 5% 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
.page-recruits #data .data_blocks .block .data_base .data {
  width: 100%;
}
.page-recruits #data .data_blocks .block .data_base .data:nth-of-type(2) {
  border-left: 1px solid #d4d4d4;
}
.page-recruits #data .data_blocks .block .data_base .data h4 {
  padding: 0;
  margin: 0;
  font-size: 200%;
}
.page-recruits #data .data_blocks .block .data_base .data h4 strong {
  font-weight: 400;
  font-size: 200%;
  font-family: "Oswald", sans-serif;
}
.page-recruits #data .data_blocks .block .data_base .data h5 {
  font-weight: normal;
  padding: 0;
  margin: 0;
  text-align: center;
}
.page-recruits #data .data_blocks .block p {
  text-align: left;
}
.page-recruits #data .data_blocks .block:nth-of-type(n + 4) {
  border-bottom: none;
}
.page-recruits #recruit_list {
  padding: 5% 0;
}
.page-recruits #recruit_list .blocks {
  margin-bottom: 5%;
}
.page-recruits #recruit_list .blocks .recruit_block {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.page-recruits #recruit_list .blocks .recruit_block .image {
  width: 27%;
}
.page-recruits #recruit_list .blocks .recruit_block .image img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-recruits #recruit_list .blocks .recruit_block .text {
  padding: 0 5%;
  width: 73%;
}
.page-recruits #recruit_list .blocks .recruit_block .text h3 {
  color: #002480;
}
.page-recruits #voices {
  padding: 5% 0;
  background-color: white;
}
.page-recruits #voices .voice_list {
  padding-bottom: 5%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.page-recruits #voices .voice_list .block {
  width: 33.33%;
  padding: 1%;
  transition: 0.3s;
}
.page-recruits #voices .voice_list .block:hover .image:after {
  opacity: 1;
}
.page-recruits #voices .voice_list .block .image {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.page-recruits #voices .voice_list .block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page-recruits #voices .voice_list .block .image h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #002480;
  color: white;
  margin: 0;
  padding: 5%;
  display: inline-block;
}
.page-recruits #voices .voice_list .block .image:after {
  z-index: 2;
  content: "";
  width: 100%;
  padding-top: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/read_more.webp");
  background-size: cover;
  transition: 0.3s;
  mix-blend-mode: hard-light;
  opacity: 0;
}
.page-recruits #voices .voice_list .block .text {
  padding-top: 5%;
}
.page-recruits #voices .voice_list .block .text h4 {
  border-bottom: 1px solid #eee;
  text-align: left;
  font-weight: normal;
  margin: 0;
  padding: 5%;
}
.page-recruits #voices .voice_list .block .text p {
  text-align: left;
}
.page-recruits #voices .btn a {
  min-width: 30%;
  border-radius: 0;
  padding: 2%;
  position: relative;
}
.page-recruits #voices .btn a:after {
  content: "";
  position: absolute;
  width: 3%;
  padding-top: 3%;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}
.page-recruits #conditions {
  padding: 5% 0;
}
.page-recruits #conditions .condition_list {
  display: flex;
  flex-wrap: wrap;
  padding: 2%;
  margin: 2% 0;
}
.page-recruits #conditions .condition_list .block {
  border-top: 1px solid #ccc;
  width: 33.33%;
  padding: 2%;
  text-align: left;
  position: relative;
  top: 1px;
}
.page-recruits #conditions .condition_list .block.list01:after, .page-recruits #conditions .condition_list .block.list02:after, .page-recruits #conditions .condition_list .block.list04:after {
  content: "";
  width: 1px;
  height: 80%;
  position: absolute;
  top: 10%;
  right: 0;
  border-right: 1px solid #ccc;
}
.page-recruits #conditions .condition_list .block.list04 {
  width: 66.66%;
}
.page-recruits #conditions .condition_list .block.list04, .page-recruits #conditions .condition_list .block.list05 {
  border-bottom: 1px solid #ccc;
}
.page-recruits #conditions .condition_list .block h3 {
  font-weight: normal;
}
.page-recruits #conditions ul {
  line-height: 1.8;
}
.page-recruits #conditions ul li {
  font-size: 80%;
}
.page-recruits #conditions ul li::marker {
  color: #002480;
}
.page-recruits #benefit {
  padding: 5% 0;
}
.page-recruits #benefit .benefit_list {
  display: flex;
  flex-wrap: wrap;
  padding: 2%;
  margin: 2% 0;
}
.page-recruits #benefit .benefit_list .block {
  border-top: 1px solid #ccc;
  width: 33.33%;
  padding: 2%;
  text-align: left;
  position: relative;
  top: 1px;
}
.page-recruits #benefit .benefit_list .block.list01:after, .page-recruits #benefit .benefit_list .block.list02:after, .page-recruits #benefit .benefit_list .block.list04:after, .page-recruits #benefit .benefit_list .block.list05:after {
  content: "";
  width: 1px;
  height: 80%;
  position: absolute;
  top: 10%;
  right: 0;
  border-right: 1px solid #ccc;
}
.page-recruits #benefit .benefit_list .block.list04, .page-recruits #benefit .benefit_list .block.list05, .page-recruits #benefit .benefit_list .block.list06 {
  border-bottom: 1px solid #ccc;
}
.page-recruits #benefit .benefit_list .block h3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3%;
}
.page-recruits #benefit .benefit_list .block h3 .icon {
  width: 25%;
}
.page-recruits #benefit .benefit_list .block h3 strong {
  font-weight: normal;
}
.page-recruits #benefit ul {
  line-height: 1.8;
}
.page-recruits #benefit ul li {
  font-size: 80%;
}
.page-recruits #benefit ul li::marker {
  color: #002480;
}
.page-recruits #entry_btns {
  padding: 5% 0;
}
.page-recruits #entry_btns .btn {
  display: inline-block;
  margin: auto;
  min-width: 50%;
  padding: 1% 3%;
  border: 1px solid #002480;
  position: relative;
}
.page-recruits #entry_btns .btn:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  height: 30px;
  transform: translateX(-50%);
  border-left: 1px solid #002480;
  opacity: 1;
  transition: 0.3s;
}
.page-recruits #entry_btns .btn:hover:before {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
.page-recruits #entry_btns .btn a {
  border-radius: 0;
  padding: 1% 2%;
  font-weight: 300;
  font-size: 200%;
  font-family: "Oswald", sans-serif;
  margin: 2%;
  position: relative;
  width: 80%;
}
.page-recruits #entry_btns .btn a:after {
  content: "";
  position: absolute;
  width: 3%;
  padding-top: 3%;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.page-recruit-list .recruit-detail {
  padding: 5% 0;
  flex-direction: row-reverse;
}
.page-recruit-list .recruit-detail .recruit_block .category span {
  display: inline-block;
  background-color: #002480;
  color: white;
  padding: 10px 30px;
}
.page-recruit-list .recruit-detail .recruit_block .text h3 {
  color: #002480;
}
.page-recruit-list .recruit-detail .recruit_block .text .recruit_data {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #d4d4d4;
  padding: 0 0 5%;
  margin: 5% 0;
}
.page-recruit-list .recruit-detail .recruit_block .text .recruit_data dt {
  width: 25%;
  padding: 0;
  margin: 0;
}
.page-recruit-list .recruit-detail .recruit_block .text .recruit_data dt h4 {
  border-left: 1px solid #002480;
  padding: 1% 5%;
  margin: 0;
}
.page-recruit-list .recruit-detail .recruit_block .text .recruit_data dd {
  width: 73%;
  padding: 0;
  margin: 0;
}
.page-recruit-list .recruit-detail .btns .flex {
  justify-content: space-between;
  margin-bottom: 5%;
}
.page-recruit-list .recruit-detail .btns .flex a {
  border: 2px solid #002480;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  color: #002480;
  background-color: white;
  display: inline-block;
  padding: 2% 5%;
  text-align: center;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: bold;
  width: 49%;
  position: relative;
}
.page-recruit-list .recruit-detail .btns .flex a:after {
  content: "";
  width: 5%;
  padding-top: 5%;
  background-image: url("../img/icon-arrow-right-blue.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}
.page-recruit-list .recruit-detail .btns .flex a:hover {
  background-color: #002480;
  color: white;
}
.page-recruit-list .recruit-detail .btns .flex a:hover:after {
  background-image: url("../img/icon-arrow-right-white.png");
}
.page-recruit-list .recruit-detail .btns .recruit_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5% 0;
  width: 100%;
  border: 2px solid #002480;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #002480;
  color: white;
  padding: 2% 5%;
  text-align: center;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: bold;
  position: relative;
}
.page-recruit-list .recruit-detail .btns .recruit_contact a:after {
  content: "";
  width: 1%;
  padding-top: 1%;
  position: absolute;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  top: 50%;
  right: 2%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}
.page-recruit-list .recruit-detail .btns .recruit_contact a:hover {
  color: #002480;
  background-color: white;
}
.page-recruit-list .recruit-detail .btns .recruit_contact a:hover:after {
  border-color: #002480;
  transform: translateY(-50%) rotate(315deg);
}
.page-recruit-list .back_block:nth-child(odd) {
  background-color: white;
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .page-recruits .lp-page #lp-section .lp-mvimg .text h3 {
    font-size: 130%;
  }
  .page-recruits #data .data_blocks .block {
    width: 100%;
  }
  .page-recruits #data .data_blocks .block:nth-of-type(3n+2):before, .page-recruits #data .data_blocks .block:nth-of-type(3n+2):after {
    display: none;
  }
  .page-recruits #data .data_blocks .block:nth-of-type(n + 4) {
    border-bottom: 1px solid #d4d4d4;
  }
  .page-recruits #data .data_blocks .block h3 {
    padding-top: 5%;
    text-align: center;
  }
  .page-recruits #recruit_list .blocks .recruit_block .image {
    width: 100%;
  }
  .page-recruits #recruit_list .blocks .recruit_block .text {
    width: 100%;
  }
  .page-recruits #recruit_list .blocks .recruit_block .text p {
    line-height: 1.2;
  }
  .page-recruits #recruit_list .blocks .recruit_block .text .more_link {
    justify-content: flex-end;
  }
  .page-recruits #voices .voice_list .block {
    width: 100%;
  }
  .page-recruits #voices .btn {
    margin-bottom: 10%;
  }
  .page-recruits #voices .btn a {
    padding: 5%;
    min-width: 100%;
  }
  .page-recruits #conditions .condition_list .block {
    width: 100%;
  }
  .page-recruits #conditions .condition_list .block.list01:after, .page-recruits #conditions .condition_list .block.list02:after, .page-recruits #conditions .condition_list .block.list04:after {
    display: none;
  }
  .page-recruits #conditions .condition_list .block.list04 {
    width: 100%;
    border-bottom: none;
  }
  .page-recruits #benefit .benefit_list .block {
    width: 100%;
  }
  .page-recruits #benefit .benefit_list .block.list01:after, .page-recruits #benefit .benefit_list .block.list02:after, .page-recruits #benefit .benefit_list .block.list04:after, .page-recruits #benefit .benefit_list .block.list05:after {
    display: none;
  }
  .page-recruits #benefit .benefit_list .block h3 .icon {
    width: 10%;
  }
  .page-recruits #benefit .benefit_list .block h3 strong {
    width: 80%;
  }
  .page-recruits #entry_btns .btn {
    min-width: 100%;
  }
  .page-recruits #entry_btns .btn a {
    padding: 3%;
    width: 96%;
  }
  .page-recruit-list .lp-page #lp-section .lp-mvimg .text h3 {
    font-size: 130%;
  }
  .page-recruit-list .recruit-detail {
    flex-direction: column-reverse;
    margin-bottom: 15% !important;
  }
  .page-recruit-list .recruit-detail .image {
    text-align: center;
    margin-bottom: 5%;
  }
  .page-recruit-list .recruit-detail .recruit_block .text .recruit_data {
    padding-bottom: 8%;
    margin: 8% 0;
  }
  .page-recruit-list .recruit-detail .recruit_block .text .recruit_data dt, .page-recruit-list .recruit-detail .recruit_block .text .recruit_data dd {
    width: 100%;
  }
  .page-recruit-list .recruit-detail .recruit_block .text .recruit_data dt h4 {
    margin-bottom: 5%;
  }
  .page-recruit-list .recruit-detail .btns .flex {
    flex-direction: column;
  }
  .page-recruit-list .recruit-detail .btns .flex a {
    width: 100%;
    margin-bottom: 3%;
  }
}
.page_voice .voice_list {
  padding-bottom: 5%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.page_voice .voice_list .block {
  width: 33.33%;
  padding: 1%;
  transition: 0.3s;
}
.page_voice .voice_list .block:hover {
  transition: 0.3s;
}
.page_voice .voice_list .block:hover .image {
  transition: 0.3s;
}
.page_voice .voice_list .block:hover .image:after {
  opacity: 1;
}
.page_voice .voice_list .block .image {
  transition: 0.3s;
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.page_voice .voice_list .block .image:after {
  z-index: 2;
  content: "";
  width: 100%;
  padding-top: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/read_more.webp");
  background-size: cover;
  transition: 0.3s;
  mix-blend-mode: hard-light;
  opacity: 0;
}
.page_voice .voice_list .block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
}
.page_voice .voice_list .block .image h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #002480;
  color: white;
  margin: 0;
  padding: 2% 5%;
  display: inline-block;
}
.page_voice .voice_list .block .image h3 p, .page_voice .voice_list .block .image h3 span {
  padding: 0;
  margin: 0;
  font-weight: normal;
  text-align: left;
  display: block;
  line-height: 2;
}
.page_voice .voice_list .block .image h3 p {
  border-top: 1px solid white;
}
.page_voice .voice_list .block .text {
  padding-top: 5%;
}
.page_voice .voice_list .block .text h4 {
  border-bottom: 1px solid #eee;
  text-align: left;
  font-weight: normal;
  margin: 0;
  padding: 5%;
}
.page_voice .voice_list .block .text p {
  text-align: left;
}

.voice_single #voice_datas .block {
  padding: 2% 0;
}
.voice_single #voice_datas .block:nth-child(even) {
  background-color: white;
}
.voice_single #voice_datas .block .data.first {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.voice_single #voice_datas .block .data.first .image {
  width: 30%;
}
.voice_single #voice_datas .block .data.first .text {
  width: 68%;
}
.voice_single #voice_datas .block .data .text {
  text-align: left;
}
.voice_single #voice_datas .block .data .text .name h3 {
  display: inline-block;
  background-color: #002480;
  color: white;
  padding: 2% 5%;
  margin: 0;
}
.voice_single #voice_datas .block .data .text .name h4 span {
  color: #002480;
  font-size: 300%;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  display: block;
}
.voice_single #voice_datas .block .data .text .name h4 strong {
  margin: 1%;
  display: block;
}
.voice_single #voice_datas .block .data .qa_block {
  padding: 2% 0;
  text-align: left;
}
.voice_single #voice_datas .block .data .qa_block h4 {
  color: #002480;
  margin-bottom: 2%;
}
.voice_single #voice_datas .block .data .qa_block h4:before {
  content: "#";
}

/* pc end */
/*#####################################################################
 *
 * tab base in
 *
 #####################################################################*/
/*#####################################################################
*
 * tab 767px in
 *
#####################################################################*/
/*#####################################################################
*
 * sp 540px in
 *
#####################################################################*/
@media all and (max-width: 540px) and (orientation: portrait) {
  .page-voice .voice_list .block {
    width: 50%;
  }
  .page-voice .voice_list .block .image h3 {
    font-size: 60%;
  }
  .voice_single #voice_datas .block .data.first .text,
.voice_single #voice_datas .block .data.first .image {
    width: 100%;
  }
  .voice_single #voice_datas .block .data.first .text .name {
    padding: 5% 0;
  }
}
/*# sourceMappingURL=default.css.map */