@charset "utf-8";
/* CSS Document */
@import url("style.css");
body {
  margin: 0;
  padding: 0;
}
#wrap {
  width: 100%;
}
.wrapper {
  width: 100%;
}
p {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/*a:hover {
  opacity: 0.7;
}
*/
/* ===================
改行
====================== */
.pc-br {
  display: block;
}
.sp-br {
  display: none;
}
/* ===================
ヘッダー関連
====================== */
#header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 1em 0;
  z-index: 2000;
}
.head-wrap {
  width: 100%;
}
.head-logo {
  width: 30%;
}
.head-logo img {
  display: block;
  width: 350px;
  margin: 20px;
}
/* ===================
 ハンバーガー
====================== */
#hamburger {
  width: 15%;
  display: block;
  margin: 0px 0 0 0px;
  z-index: 2000
}
#hamburger ul {
  height: 100vh;
  /*overflow: scroll;*/
  -webkit-overflow-scrolling: 100%;
}
.inmenu input {
  display: none;
}
button {
  border: none;
  background: none;
  outline: none;
}

/*
a:hover, a img:hover, label img:hover {
  opacity: 0.8;
}
*/

.inmenu, .inmenu span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.inmenu {
  position: fixed;
  height: 54px;
  z-index: 10;
  width: 54px;
}
/*
@media (max-width: 1000px) {
  .inmenu {
  right: 17px;
}
}
*/
.inmenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 10;
  width:38px;
}
.inmenu span:nth-of-type(1) {
top: 15px;
left:8px;
background-color: #fff;
}
.inmenu span:nth-of-type(2) {
top: 25px;
left:8px;
background-color: #fff;
}
.inmenu span:nth-of-type(3) {
bottom: 15px;
left:8px;
background-color: #fff;
}
.inmenu.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.inmenu.active span:nth-of-type(2) {
  opacity: 0;
}
.inmenu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
  -ms-transform: translateY(-12px) rotate(-45deg);
  transform: translateY(-12px) rotate(-45deg);
}
/*------*/
.hammenu {
  height: 54px;
  width: 54px;
  margin-top: 0.3em;
  position: absolute;
  z-index: 1000;
  right: 30px;
  top: 12px;
  color: #fff;
  font-size: 12px;
  background-color: #2E7BF2;
  border-radius: 5px;
}
/*
@media (max-width: 1000px) {
 .hammenu { 
    right: 7px;   
  }
}
*/
.menu_text {
  font-size: 12px;
  color: #fff;
  position: absolute;
  bottom: -10%;
}
/*------*/
#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 32%;
  height: 95vh;
  opacity: 0;
  background:rgba(46,123,242,0.9);
  /*background-color: rgba(255, 255, 255, 0.95);*/
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  margin-top: 80px;
  padding-top: 50px;
  border-radius: 20px;
}
#nav.active {
top: 0px;
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  margin-top: 70px;
  padding-top: 10px;
-webkit-overflow-scrolling: touch;
overflow: hidden;
}
#nav ul {
  /*  padding: 50px 0 100px;*/
}
#nav ul li {
  list-style-type: none;
}
#nav ul li a {
  display: block;
  padding: 0.3em;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: left;
  text-decoration: none;
  color: #FFF;
  list-style-type: none;
}
@media (max-width: 950px) {
#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 105vh;
  opacity: 0;
  background:rgba(46,123,242,0.9);
  /*background-color: rgba(255, 255, 255, 0.95);*/
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  margin-top: 80px;
  padding-top: 50px;
  padding: 50px;
  border-radius: 20px;
 
}
#nav.active {
top: 0px;
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  margin-top: 70px;
  padding-top: 10px;
-webkit-overflow-scrolling: touch;
/*overflow: hidden;*/
overflow: scroll;
}
#nav ul {
  /*  padding: 50px 0 100px;*/
}
#nav ul li {
  list-style-type: none;
}
#nav ul li a {
  display: block;
  padding: 0.3em;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: left;
  text-decoration: none;
  color: #FFF;
  list-style-type: none;
}
}


ul.dl-menu {
  padding: 0px;
  margin: 0px 0 0 0;
  width: 100%;
  height: 100%;
  padding-bottom:3em;
}
ul.dl-menu li {
  list-style-type: none;
  /*float: left;*/
  width: 95%;
  /*border-bottom: dotted 1px #EEE;*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 5px;
  margin-top: 20px;
}
ul.dl-menu li {
  margin-top: 10px;
}
ul.dl-menu li {
  margin-right: 8px;
  margin-left: 8px;
  padding: 0.1em;
}
.accbox {
  border-bottom: dotted 1px #EEE;
  margin: 0;
  padding: 0.5em;
  width: 100%;
}
/*----------段下がりの設定--------*/
.accbox2 {
  font-size: 14px;
  padding: 0 0 0 3em;
}
/*----------段下がりの設定終了--------*/
/*ラベル*/
.accbox label {
  padding: 0.5em;
  color: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  display: block;
  text-align: left;
}
/*ラベルホバー時*/
.accbox label:hover {
  background-color:#2456c9;
}
/*チェックは隠す*/
.accbox input {
  display: none;
}
/*中身を非表示にしておく*/
.accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
/*クリックで中身表示*/
.cssacc:checked + .accshow {
  height: auto;
  padding: 5px;
  opacity: 1;
}
#sample01 {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
}
#sample01 p {
  text-align: left;
  font-size: 15px;
  color: #fff;
  margin: 2px 0;
  border-left: solid #007EA8 5px;
}
#sample01 a {
  list-style-type: none;
  width: 100%;
  margin: 5px 0;
  padding: 2px 0;
  border-left: none;
  font-size: 14px;
  background-color: #fff;
}
#sample01 p:nth-child(2) {
  margin: 2px
}
.locked {
  overflow-y: hidden;
}
/*-----hamburger_set_end-----*/
/* ===================
 サイト内検索
====================== */
.head_search {
  width: 80%;
}
.searchform {
  position: relative;
}
.searchfield {
  font-size: 14px;
  width: 100%;
  margin: 3px;
  padding: 5px;
  border: solid 1px #bbb;
  border-radius: 4px;
  background-color: #fff;
}
.searchsubmit {
  font-family: FontAwesome;
  font-size: 1.2em;
  position: absolute;
  top: -5%;
  right: 0%;
  margin-top: 0px;
  padding: 0;
  cursor: pointer;
  color: #C69C8E;
  border: none;
  background: transparent;
}
.searchsubmit:hover {
  opacity: .6;
}
table.table-search {
  width: 100%;
  margin: 0px auto;
}
table.table-search th {
  text-align: left;
  font-size: 15px;
  margin: 0px 0 5px 0px;
  vertical-align: middle;
}
table.table-search td {
  line-height: 160%;
  text-align: right;
  vertical-align: middle;
  font-size: 15px;
  padding: 0 0.2em;
}
table.table-search tr td:nth-of-type(2) {
  width: 32%;
}
/***2列め***/
table.table-search tr td:nth-of-type(3) {
  width: 20%;
}
/* ===================
 ブロック要素
====================== */
.lay-block {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding-top: 7rem;
}
.lay-block-09 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-10 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-11 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-12 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-13 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-14 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-top {
  width: 100%;
  position: relative;
  text-align: center;
}
.lay-block-page {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding-top: 15rem;
}


.lay-block-page-rec {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding-top: 1rem;
}



.inside-page {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding-top: 7rem;
  padding-bottom:7rem;
}



@media (max-width:1000px) {
  .lay-block-page {
    padding-top: 5rem;
  }
}
.lay-block-bottom {
  width: 100%;
  padding: 0 1%;
  background-color: #000;
}
/* ===================
 ボタン
====================== */
.btn {
  width: 15%;
  display: inline-block;
  padding: 0.5em;
  font-weight: 400;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none !important;
  font-size: 1.5rem;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  text-align: center;
  background-color: #1470a9;
  margin: 1em;
  border-radius: 10px;
}
.btn a {
  color: #fff !important;
  font-size: 1.5rem;
}
.btn:hover {
  opacity: 0.8;
}
.btn-box {
  width: 100%;
  text-align: center;
}
/* ===================
 フッターのリスト
====================== */
.footer-box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2em;
}

.footer-link {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  list-style: none;
  margin-left: 0.5vw;
}
.footer-link2 {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /*justify-content: space-around;*/
  list-style: none;
  margin-left: 2vw;
  justify-content: flex-end;
  color: #FFFFFF;
  padding: 50px 0 0 0;
}
.footer-link li{
   padding: 0;
}

.footer-link li::after {
  content: "/";
  transform: translate(-50%, -50%);
  color: #fff;
  margin-left: 10px;
}
.footer-link li:last-of-type::after{
    display: none;
}
.footer-link a {
  color: #fff;
  font-size: 15px;
}
.footer-link2 a {
  color: #fff;
  font-size: 15px;
}


.company-name {
  list-style: none;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 160%;
  letter-spacing: 0.1em;
  display: block;
}


.company-name img{
	width:20%;
	max-width:100px;
}


@media (max-width:1024px) {
  .footer-link a {
  font-size: 12px;
}
}
.link-wrap {
  width: calc(100%/ 4 - 3em);
  margin: 1.5em 0 1em;
}
.link-wrap ul {
  padding-left: 0;
}
.link-wrap ul li {
  width: 100%;
  list-style: none;
}
.link-wrap li {
  width: 100%;
  color: #fff;
  list-style: none;
  padding: 0.5em 0;
}
.link-wrap a {
  color: #fff;
  font-size: 15px;
}
.company-info-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  margin: 0 auto;
}
.company-info {
  width: 15%;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 180%;
  text-decoration: none;
  display: block;
}
.company-info ul {
  text-align: center;
  list-style: none;
  color: #fff;
}
.company-info img {
  display: block;
  width: 100%;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .company-info img {
  max-width: 160px;
}
}
.copy {
  font-size: 13px;
  color: #fff;
  text-align: center;
  margin: 3em 0 1em 0;
  padding: 20px 0;
  padding-bottom: 15px;
}
/* ===================
 ニュース
====================== */
.news-wrap {
  margin-bottom: 100px;
}
.news-box {
  width: 100%;
  max-width: 1000px;
  margin: 2em auto;
  padding: 0;
}
/*news のtable*/
table.table-news {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin: 0 auto;
}
table.table-news th {
  padding: 1em 1em 1em 3em;
  border-bottom: 1px #d2e6eb solid;
  line-height: 180%;
  text-align: left;
  vertical-align: top;
  color: #333;
  font-size: 18px;
  font-weight: normal;
}
table.table-news td {
  padding: 1em 3em 1em 1em;
  border-bottom: 1px #d2e6eb solid;
  line-height: 180%;
  text-align: left;
  vertical-align: middle;
  color: #333;
  font-size: 18px;
  font-weight: normal;
}
table.table-news tr th a, table.table-news tr td a {
  text-decoration: none;
  color: #333;
}



table.table-rec {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin: 0 auto;
  }
table.table-rec th {
  padding: 0.2em;
  /*border-bottom: 1px #d2e6eb solid;*/
  line-height: 150%;
  text-align: left;
  vertical-align: top;
  color: #333;
  font-size: 17px;
  font-weight: normal;
	width:30%;
}
table.table-rec td {
  padding: 0.2em;
  /*border-bottom: 1px #d2e6eb solid;*/
  line-height: 150%;
  text-align: left;
  vertical-align: middle;
  color: #333;
  font-size: 17px;
  font-weight: normal;
}
table.table-rec tr th a, table.table-rec tr td a {
  text-decoration: none;
  color: #333;
}


table.table-skill_map {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin: 0 auto;
  }
table.table-skill_map th {
  display: block; 
  background-color: #00EBFF;
  border-radius: 10px;
  height: 40px;
  padding: 10px;
  font-size: 19px;
  line-height: 170%;
  text-align: center;
  vertical-align: top;
  font-weight: bold;
}
table.table-skill_map td {
   display: block;    
  padding: 0.8em 0 0 0;
  /*border-bottom: 1px #d2e6eb solid;*/
  line-height: 170%;
   text-align: justify;
  vertical-align: middle;
  color: #333;
  font-size: 17px;
  font-weight: normal; 
    }
table.table-skill_map tr th a, table.table-skill_map tr td a {
  text-decoration: none;
  color: #333;
}




.news-archive {
  display: block;
  padding: 10px;
  width: 200px;
  margin: 0 auto;
  color: #fff;
}
.news-archive a {
  color: #333;
  font-size: 18px;
  text-decoration: underline;
}
/* ===================
 グーグルマップ
====================== */
.access-wrap {
  width: 100%;
  margin: 0 auto 3em;
}
.map-box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 1em;
  text-align: center;
}
.gmap {
  max-width: 1100px;
  width: 100%;
  height: 380px;
  position: relative;
  margin: 0 auto;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.clone-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.is-show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* ===================
 フォーム関連
====================== */
input, select {
  border: solid 1px #CCC;
  background-color: #f9f9f9;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
  height: 2.5em;
  cursor: pointer;
  vertical-align: middle;
}
textarea {
  border: solid 1px #CCC;
  background-color: #FFFFFF;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
}
input#submit_button {
  width: 18%;
  cursor: pointer;
}
input#reset_button {
  width: 18%;
  cursor: pointer;
}
.hissu {
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  color: #FFF;
  background-color: #D8070B;
  display: inline-block;
  padding: 5px;
  margin: 0px 0 0 10px;
}
/* ===================
 ページトップへ
====================== */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #2ea8e1;
  opacity: 0.8;
  border-radius: 50%;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: FontAwesome;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/* ===================
小野高速印刷
====================== */
/*トップ*/
.top-img {
  position: relative;
  background-image: url("../img/top_main_pc.jpg");
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 2160/1200;
}
.top-txt1 {
  width: 90%;
  position: absolute;
  bottom: -3%;
  right: 7%;
}
.top-txt2 {
  width: 50%;
  position: absolute;
  bottom: 10%;
  right: 10%;
}
.top-lead {
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
}
.top-lead-cnt {
  text-align: left;
  color: #fff;
  padding: 3em 0 4em;
}
@media (max-width:1440px) {
  .top-lead-cnt {
    text-align: left;
    color: #fff;
    padding: 3em 2em 4em 3em;
  }
}
.top-lead-ttl {
  font-size: 50px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width:1280px) {
  .top-lead-ttl {
    font-size: 30px;
  }
}

.flex1 {
  display: flex;
  justify-content: flex-start;
}
.flex2 {
  display: flex;
  justify-content: center;
}
.top-lead .flex1 {
  position: relative;
  align-items: center;
}

.top-lead .flex1 .item1 {
  width: calc(70% - 5%);
  margin-right: 5%;
  padding-top: 1.5em;
}
@media (max-width: 768px) {
 .top-lead .flex1 .item1 { 
    width: 100%;
}
}
.top-lead .flex1 .item1 p {
  color: #fff;
  font-size: 16px;
}
.top-lead .flex1 .item2 {
  width: 80%;
  margin-top: -6em;
}
.top-lead .flex1 .item2 img {
  width: 100%;
  display: block;
}
.growing-up {
  margin-top: 10em;
}
.growing-up-ttl {
  display: flex;
  align-items: flex-end;
  margin-left: 5em;
}
@media (max-width:1024px) {
  .growing-up-ttl {
    margin-left: 0;
  }
}
.growing-up-ttl p {
  font-size: 26px;
  margin: 0 0 0 26px;
}
.sub-t1 {
  font-size: 26px;
}
.growing-up .flex1 {}
.growing-up .flex1 .item1 {
  position: relative;	
  background-color:#EEE;
}
.growing-up .flex1 .item1 i::before {
  font-size: 40px;
  color: #fff;
	
}
.growing-up .flex1 .item1 .first-left {
  position: absolute;
  top: 40%;
  left: 6%;
}
.growing-up .flex1 .item1 .second-right {
  position: absolute;
  top: 48%;
  left: 6%;
}
.growing-up .flex1 .item1 .third-left {
  position: absolute;
  top: 16%;
  right: 5%;
}
.growing-up .flex1 .item1 .forth-right {
  position: absolute;
  top: 48%;
  left: 10%;
}
.story-info h4 {
  color: #fff;
  font-size: 15px;
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  width: fit-content;
  margin: 5px 0 0 0;
  padding: 3px 6px;
}
@media (max-width:1024px) {
  .story-info h4 {
    font-size: 10px;
  }
}
.story-info p {
  color: #fff;
  font-size: 18px;
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  width: fit-content;
  margin: 3px 0 0 0;
  padding: 3px;
}
.story-info p:first-of-type {
  margin-top: 10px;
}
@media (max-width:1280px) {
  .story-info p {
    font-size: 15px;
  }
}
@media (max-width:1024px) {
  .story-info p {
    font-size: 12px;
  }
}
.story-txt img {
  display: block;
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 1000;
  position: relative;
}
.type1 {
  margin-top: 2em;
}
.type2 {
  margin-top: -2em;
}
@media (max-width:1000px) {
  .type2 {
    margin-top: -1em;
  }
}
.type3 {
  margin-top: 5em;
}
.story-arrow1 {
  position: absolute;
  top: 8%;
  right: 8%;
}
.story-arrow2 {
  position: absolute;
  bottom: 12%;
  right: 8%;
}
.story-txt {
position: relative;
z-index: 1000;
}
.top-msg {
  margin-top: 10em;
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  position: relative;
}
.top-msg a{
display: block;
transition-duration: .7s;
}


.top-msg a:hover{
 /* background-color:#051D5F;*/
 transform: scale(1.1);
   background: linear-gradient(20deg, rgba(30, 120, 253, 1) 60%, rgba(55, 170, 253, 1) 100%);
}

.top-msg a:hover img{
  opacity: 1!important;
}
.top-msg-cnt {}
@media (max-width:1024px) {
  .top-msg-cnt {
    padding: 2em;
  }
}
.top-msg-cnt .flex1 .item1{
  width: 50%;
}
.top-msg-cnt .flex1 .item1 img {
  width: 100%;
  max-width: 360px;
  transform: translateY(3em);
  border-radius: 5px;
}
.top-msg-cnt .flex1 .item2 {
  width: 50%;
  margin-left: 5em;
  padding-top: 5em;
}
.top-msg-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.top-msg-ttl p {
  font-size: 21px;
}
.top-msg-info {
  display: flex;
  justify-content: space-between;
  margin-top: 6em;
  padding-right: 1em;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}


.info-ttl {
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.info-ttl .position {
  font-size: 14px;
}
.info-ttl .name {
  font-size: 18px;
  margin:0px 0 0px 20px;
}
.top-msg-info a > img {
  width: 30px;
  margin:-32px 0 0 400px;
}
.skill-group {
  margin-top: 15em;
}
@media (max-width:1280px) {
  .skill-group {
    padding: 0 1.5em;
  }
}
.skill-cnt .flex1 {
  align-items: center;
}
.skill-cnt .flex1 .item1 {
  width: 50%;
}
.skill-cnt .flex1 .item2 {
  width: 50%;
  margin-left: 2em;
}
.skill-cnt .flex1 .item1 img {
  width: 100%;
  max-width: 480px;
}
.skill-cnt .flex1 .item2 {
  text-align: left;
}
.skill-cnt .flex1 .item2 h3 {
  font-size: 26px;
}
.skill-cnt .flex1:last-of-type {
  margin-top: 8em;
}
.btn1 {
  display: inline-block;
  background-color: #000;
  width: 340px;
  padding: 1em;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 40px;
  border: 1px solid #000;
}
.btn1 img {
  transform: translateX(30px);
}
.btn1:hover {
  background-color: #fff;
  color: #000;
  transition: .5s;
}
.skill-cnt .btn1 {
  margin-top: 2em;
  transform: translateX(100px);
}






@media (max-width:1024px) {
  .skill-cnt .btn1 {
    transform: translateX(0);
  }
}
.order1 {
  order: 1;
}
.order2 {
  order: 2;
}
.recruit-info {
  background-color: #D9D9D9;
  margin-top: 7.5em;
}
.recruit-cnt {
  padding: 4.5em 0;
}
.btn2 {
  display: inline-block;
  background-color: #fff;
  width: 340px;
  padding: 1em;
  color: #2E7BF2;
  font-size: 16px;
  text-align: center;
  border-radius: 40px;
  border: 2px solid #2E7BF2;
  margin: 1em;
}
.btn2 img {
  transform: translateX(20px);
}
.btn2:hover {
  background-color: #2E7BF2;
  color: #fff;
  transition: .5s;
}



/*社長のメッセージ01---------------------------------*/
.lay-block-page01{
/* background:#FFFFFF*/;
}


/******PCのブレイクポイントの必要性、位置、htmlのくくり*******/



    
.president_01top{
padding-top: 100px;
height:auto;    
}
.president_00{
background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
border-radius: 30px 30px 30px 30px;
width: 80%;
height:65vh;
/* height: auto;*/
margin-left: auto;
margin-right: auto;
z-index: -1;
/*aspect-ratio: 8 / 4 ;*/
position: relative;
}
.president_01top_text1{
display: flex;
justify-content: space-between;
align-items: center;
}


.president_cut{
margin-right: auto;
width: 40%;
margin-left: calc(20% - 20vw);
}



.president_cut3{
width: 400px;
position: absolute;
left:-50px;
}

.president_cut5{
position:absolute;
 /*margin: 0px 5.8% 0px 0px;
 position:fixed;*/
 bottom:0px;
 left:calc(100% - 28vw); 
 /*max-height: 50%;*/
}

.president_cut5 img{
width: 100%;
max-width: 800px;
}





@media only screen and (min-device-width: 933px){

.president_00 .president_cut2{
/*height: 80%;*/
padding: 3% 0;
display: flex;
justify-content: center;
margin-left:47.5%;
}
.president_cut2 span{
color: #FFFFFF!important;
font-size: clamp(17px, 2vw, 24px);
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
}

}








/*サイズ可変以上-----------------------------------------------------------------------*/




/*スキルマップ*/
.lay-block-page04{
/* background:#FFFFFF*/;
}
.skill_map{
  top: 90px;
  position: relative;   
}

.skill_map01{
  width: 100%;
  text-align: center;
}

.skill_map02{
  width: 100%;
  /* 水平方向の中央揃え */
  margin: -30px auto 100px auto ;
}


.skill_map03 {
    width: 60%;
    max-width: 800px;
	text-align: center;
	margin:0 auto;
}

.skill_map04 {
    width: 100%;
	text-align: center;
	padding:1em;
}
.skill_map04 p{
    font-size:18px;
	width:90%;
	max-width:1000px;
	margin:0 auto;
    }



.president_01top_text2{
    margin-top: 0;
    position: relative;
    text-align: center;
 }
.president_cut4 img{
    margin-top: 15px;
    width:80%;
    max-width: 800px;
}
.president_01top_text2 p{
  /* 水平方向の中央揃え */
  margin: 100px auto;
  width:70%;
  text-align: justify;    
 font-size: 20px;
}

.president_01top_text3{
      /* 水平方向の中央揃え */
  margin: 100px auto 125px auto;
  width:100%;
 }
.president_01top_text3 p{
  font-size: 45px;
  font-weight: bold;
  color: #D800FF;
  text-align: justify;
}



.flex-box-page01{
width:100%;	
display:flex;
justify-content:center;	
flex-wrap: wrap;	
align-items:flex-start;
text-align: center;
margin:0 auto;	
}


.flex-box-page01 .flex-item-page01 {
display: flex;
flex-direction: column;		
width: calc(100% / 2 - 1em);
margin: 0.5em 0.5em 2em 0.5em;
padding:1em;
}

.lay-block-p00 {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto;
  text-align: center;
}

.lay-block-p00 h3{
 text-align:left;
 padding:0 0 0 2em;
}


.twoblock-box {
display: flex;
justify-content:flex-start;
align-items:flex-start;
width: 100%;
margin: 0 auto;
text-align: center;
padding: 0px 0% 0 0%;
}
.twoblock-img {
width: 25%;
height: auto;
}
.twoblock-img img {
margin: 0 auto;
}
.twoblock-text {
width: 55%;
font-size: 16px;
font-weight: normal;
text-align: left;
margin:0 3em 0 3em;
word-break: break-all ;
}
.twoblock-text p {
text-align: left;
line-height: 1.8;
}


.wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
  margin: 100px auto;
  text-align: center;
}

.president_01top_text5{
  display: block;
  width: 50%;
  height: auto;
  }
.president_01top_text5 img{
  border-radius: 30px 30px 30px 30px;
}


.president_01top_text4{
     width: 100%;
    }

.president_01top_text4 h1{
width:100%;  
}

.president_01top_text4 p{
    width:80%;
  text-align: justify;
}

.president_01top_text6{
margin: 50px auto 50px auto;
display: flex;
justify-content: center;
align-items: center;
}



/*社長のメッセージ01---------------------------------*/
    
    
    

/*スキルアッププログラム*/


.lay-block-page02{
/* background:#FFFFFF*/;
}
.improving_skills01{
 /*  top: 90px;*/
    margin: 90px 0 0 0;
  /*position: relative;*/ 
    
}
.improving_skills02{
    
  width: 100%;   
}
.improving_skills03{
  width: 100%;
  /* 水平方向の中央揃え */
  margin: -30px 30% 40px auto ;
}
.improving_skills_list{
    margin: 40px auto 0px auto;
}

/*タイトルとホバーの設定*/
 .improving_skills_list1 {
  text-align: center;
  position: relative;
  padding: 5px 0;
  margin: 50px 0 50px 0;
  /*font-family: "Sawarabi Mincho", serif;*/
}
.improving_skills_list1 h2 {
  font-size: 35px;
  padding-left: 15px;
  margin: 10px 0;

  color: #000;
  font-weight:bold;
  letter-spacing: 0.1em;
}
.improving_skills_list1 h2::first-letter {
  color: #000;
}
.improving_skills_list1 h2::before {
  background-color: #2E7BF2;
  bottom: 0;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 60px;
  color: #91bac5;
}
.improving_skills_list1 p {
  font-size: 13px;
  color: #004C97;
  line-height: 1.1;
		font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
/*.improving_skills_list1{
    margin: 100px auto 15px auto;
    font-size: 30px;
    font-weight:bolder;
    text-align:center;
    padding-bottom: 15px;
    position: relative;
}*/
/*.improving_skills_list1::before {
  background: #0F66FF;
  content: '';
  width: 180PX;
  height: 4px;
  position: absolute;
  /*left: 10px;*/
  /*bottom: 0;*/
  /*margin: 0 auto;*/
  /*transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.improving_skills_list1:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);*/


/*タイトルとホバーの設定以上*/

.improving_skills_listbk{
   padding: 2% 10% 2% 10%;
   background-color: #EEE;
}
.improving_skills_listbk2{
   padding: 0% 10% 5% 10%;
}

.wrap2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.wrap2 img {
  border-radius: 30px 30px 30px 30px;
  display: block;
  width: 48%;
  height: auto;
}

.wrap2_box {
  width: 48%;
}

.wrap2_box h2{
  font-size: 25px;
  color: #151B60;
  line-height: 1.5;
}

.under{
 margin: 100px auto 150px auto;
display: flex;
justify-content: center;
align-items: center;
}


/*体験記事01*/
.article-lead {}
.article-lead-cnt {
  color: #fff;
  text-align: left;
  position: relative;
}
.article-lead-cnt img {
  width: 50%;
  max-width: 900px;
}
@media (max-width:1280px) {
  .article-lead-cnt img {
    max-width: 580px;
  }
}
@media (max-width:1024px) {
  .article-lead-cnt img {
    max-width: 520px;
  }
}
@media (max-width:1000px) {
  .article-lead-cnt img {
    width: 100%;
    max-width: 100%;
  }
}
.txt-1, .txt-2, .txt-3, .txt-4 {
  color: #fff;
  padding: 2em;
  text-align: left;
  line-height: 150%;
}
.blue-bg {
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  border-radius: 30px 0 0 30px;
  width: 60%;
  position: absolute;
  top: -17%;
  right: 0;
  z-index: -1;
}

.blue-bg h3 {
  font-size: 41px;
  font-weight: bold;
  text-align: left;
  line-height: 1.8;
  color: #fff;
  padding-left: 25%;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}

.copy-toba h3 {
  font-size: 28px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  color: #fff;
  padding-left: 25%;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}



.flex-box-03{
width:100%;	
display:flex;
justify-content: flex-start;	
flex-wrap: wrap;	
align-items: stretch;
text-align: center;
margin:0 auto;	
}


.flex-box-03 .flex-item-03 {
display: flex;
flex-direction: column;		
width: calc(100% / 3 - 2em);
margin: 0.5em 0.5em 2em 0.5em;
border-left:#969292 solid 1px;
padding:1em;
}


.flex-box-03 .flex-item-03:first-child {
border-left:none;
}

.flex-box-03 strong {
    font-size: 19px;
}


.flex-box-03 .flex-item-03 img{
width: 100%;	
display: block;
margin: 0 auto;
}


.btn3 {
  
/*  display: inline-block;*/
  background-color: #000;
  width: 100%;
  padding: 0.5em;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 40px;
  border: 1px solid #000;
  height:45px;
  margin-top: auto;
}



.btn3 img{
  transform: translate(42%, -25px);
}

.btnicon{
height:27px;
}

.btn3:hover {
  background-color: #fff;
  color: #000;
  transition: .5s;
}

/*----------------スキルマップ用--------------*/

.flex-box-04{
width:100%;	
display:flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
text-align: center;
margin:150px 0 0 0;
padding: 0 10% 0 10%;
}

.flex-box-04 .flex-item-04 {
display: flex;
flex-direction: column;		
width: calc(85% / 3 - 1em);
margin: 1em 2em 2em 2em;
padding:1em;
}

.flex-box-04 .flex-item-04:first-child {
border-left:none;
}

.flex-box-04 p1{
  display: block; 
  background-color: #FFEA50;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
white-space: nowrap;  
}
.flex-box-04 p2{
  display: block; 
  background-color: #F3A49A;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
    white-space: nowrap;
  }
.flex-box-04 p3{
  display: block; 
  background-color: #A4D5BF;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
  white-space: nowrap
  }
.flex-box-04 p4{
  display: block; 
  background-color: #AFCBEB;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
    white-space: nowrap;
  }
.flex-box-04 p5{
  display: block; 
  background-color: #B1A0CC;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
    white-space: nowrap;
  }
.flex-box-04 p6{
  display: block; 
  background-color: #C0DA75;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
    white-space: nowrap;
  }

.flex-box-04 .flex-item-04 img{
width: 100%;	
display: block;
margin: 0 auto;
}
@media (max-width:1400px) {
.flex-box-04{
width:100%;	
display:flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
text-align: center;
margin:150px 0 0 0;
padding: 0 15% 0 15%;
}

.flex-box-04 .flex-item-04 {
display: flex;
flex-direction: column;		
width: calc(85% / 2 - 1em);
margin: 1em 1.5em 2em 1.5em;
padding:1em;
}

.flex-box-04 .flex-item-04:first-child {
border-left:none;
}

.flex-box-04 p1{
  display: block; 
  background-color: #FFEA50;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
white-space: nowrap;  
}
.flex-box-04 p2{
  display: block; 
  background-color: #F3A49A;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
    white-space: nowrap;
  }
.flex-box-04 p3{
  display: block; 
  background-color: #A4D5BF;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
  white-space: nowrap
  }
.flex-box-04 p4{
  display: block; 
  background-color: #AFCBEB;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
    white-space: nowrap;
  }
.flex-box-04 p5{
  display: block; 
  background-color: #B1A0CC;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
    white-space: nowrap;
  }
.flex-box-04 p6{
  display: block; 
  background-color: #C0DA75;
  border-radius: 10px;
  height: 40px;
  padding: 7px;
  font-size: 19px;
  font-weight: bold;    
  line-height: 150%;
  text-align: center;
    white-space: nowrap;
  }

.flex-box-04 .flex-item-04 img{
width: 100%;	
display: block;
margin: 0 auto;
}
}

@media (min-width:950px) {
  
/******RECRUIT*******/

.rec-head {
  width:100%;
  position:relative;
  top: 0%;
  left: 0;
}


.blue-bg-rec {
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  border-radius: 10px 20px 20px 10px;
  width: 70%;
  top: 0%;
  left: 0;
  z-index: 0;
  margin:5em 0 0em 0;
  padding:5% 0 5% 0;
}

.recttl{
width:70%;
background-color:#FFF;
padding:0.2em 0 0.2em 5%;
display: flex;
align-items: center;
border-radius: 0px 50px 50px 0px;
text-align: left;
}

.rec-cap{
margin:-12em 0 0 5%;
position: relative;
z-index: 1000;
}


.head-name-scale{
position:absolute;
z-index: 10;
bottom:13em;
left:-10%;
width:75%;
}


.head-name-scale img{
opacity: 0.3;
}	
	

.blue-bg-rec h2 {
font-size: clamp(24px, 2.4vw, 38px);
font-weight:bolder;
text-align: left;
line-height: 1.2;
color: #000;
}


.blue-bg-rec i{
  font-size: 12px;
  color:#666;
  font-style:normal;
　line-height: 120%;
  margin-left:3em;
}

.rec-head img {
position: absolute;
width:50%;
padding-right:5%;
padding-top: 5%;
z-index: 1;
}

.blue-bg-rec .rec-cap h3 {
  font-size: clamp(21px, 2vw, 31px);
  font-weight: bold;
  text-align: left;
  line-height: 1.8;
  color: #000;
  padding-left:0%;
	padding-top: 20%;
}

.blue-bg-rec p{
	width:67%;
  font-size: clamp(16px, 1.8vw, 18px);
  text-align: left;
  line-height: 1.6;
  color: #000;
  padding-left: 0%;
  padding-top: -10%;
  padding-bottom: 0.8em;
}

}


	
@media (max-width:949px) {
/******RECRUIT*******/

.rec-head {
  width:100%;
  /*position:relative;
  top: 0%;
  left: 0;*/
}


.blue-bg-rec {
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  border-radius: 10px 20px 20px 10px;
  width: 100%;
	
  margin:-40px 0 0 0;
	padding:50px 0 0 0;
  }

.recttl{
width:95%;
background-color:#FFF;
padding:0.1em 0 0.1em 5%;
/*display: flex;
align-items: center;*/
border-radius: 0px 50px 50px 0px;
text-align: left;
}


.blue-bg-rec h2 {
font-size: clamp(21px, 2vw, 28px);
font-weight:bolder;
text-align: left;
line-height: 1.2;
color: #000;
}


.blue-bg-rec i{
  font-size: 12px;
  color:#666;
  font-style:normal;
　line-height: 120%;
  margin-left:0em;
}

.rec-head img {
width:100%;
margin:5em auto;
}

.rec-cap{
margin:0em 0 0 5%;
}


.head-name-scale{
position:absolute;
z-index: 5000;
top:24em;
left:10%;
width:75%;
}
.head-name-scale img{
opacity: 0.3;
}

.blue-bg-rec .rec-cap h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  color: #000;
  padding-left:0%;
	padding-top: 0%;
}

.blue-bg-rec p{
  width:95%;
  font-size: 16px;
  text-align: left;
  line-height: 1.6;
  color: #000;
  padding-left: 0%;
  padding-top: -20%;
  padding-bottom: 0.8em;
}
}
	




/*-----iPadPro用------*/
/*　画面サイズが980pxから1024pxまではここを読み込む　*/	
@media screen and (min-width:949px) and ( max-width:1325px) {
.rec-cap{
margin:-7em 0 0 5%;
}

}



/*共通タイトル*/
.page-ttl {
  text-align: center;
  position: relative;
  padding: 5px 0;
  /*font-family: "Sawarabi Mincho", serif;*/
}
.page-ttl h2 {
  font-size: 35px;
  padding-left: 15px;
  margin: 10px 0;

  color: #000;
  font-weight:bold;
  letter-spacing: 0.1em;
}
.page-ttl h2::first-letter {
  color: #000;
}
.page-ttl h2::before {
  background-color: #2E7BF2;
  bottom: 0;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 60px;
  color: #91bac5;
}
.page-ttl p {
  font-size: 13px;
  color: #004C97;
  line-height: 1.1;
		font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}


.article-top-info {
  font-size: 19px;
  color: #000;
  position: absolute;
  top: calc(1280/1920 * 100%);
  left: 55%;
}
  @media (max-width:1000px) {
  .article-top-info {
  top: 85%;
  left: 10%;
  margin: 10% 0 0 0;
	  }
	  
.blue-bg {
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  border-radius: 30px 0 0 30px;
  width: 63%;
  position: absolute;
  top: 65%;
  right: 0;
  z-index: 100;
}
	
.copy-toba h3 {
  font-size: 21px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  color: #fff;
  padding-left: 3%;
  padding-top: 3%;
  padding-right: 2%;
  padding-bottom: 0.8em;
}
	  
.pc-br {
  display: none;
}		  
 
}
.number-sec {
  color: #fff;
  text-align: left;
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  padding-bottom: 6em;
  margin-top: 10em;
}
@media (max-width:1000px) {
  .number-sec {
    margin-top: 15em;
  }
}


.number-sec {
  color: #fff;
  text-align: left;
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  padding-bottom: 6em;
  margin-top: 10em;
}


.number-cnt {
  position: relative;
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 2160/1036;
  margin-top: 5em;
}


.hou-no-1 {
  background-image: url("../img/hou_MG_2.JPG");
}
.hou-no-2 {
  background-image: url("../img/hou_MG_3.JPG");
}
.hou-no-3 {
  background-image: url("../img/hou_MG_4.JPG");
}
.hou-no-4 {
  background-image: url("../img/hou_MG_5.JPG");
}

.toba-no-1 {
  background-image: url("../img/toba_MG_2.jpg");
}
.toba-no-2 {
  background-image: url("../img/toba_MG_3.jpg");
}
.toba-no-3 {
  background-image: url("../img/toba_MG_4.JPG");
}
.toba-no-4 {
  background-image: url("../img/toba_MG_5.jpg");
}

.i-no-1 {
  background-image: url("../img/i_MG_2_jpg.jpg");
}
.i-no-2 {
  background-image: url("../img/i_MG_3.jpg");
}
.i-no-3 {
  background-image: url("../img/i_MG_4.jpg");
}

.k-no-1 {
  background-image: url("../img/k_MG_2.jpg");
}
.k-no-2 {
  background-image: url("../img/k_MG_3.jpg");
}
.k-no-3 {
  background-image: url("../img/k_MG_4.jpg");
}


.no-1 {
  background-image: url("../img/article_img1_pc.jpg");
}
.no-2 {
  background-image: url("../img/article_img2_pc.jpg");
}
.no-3 {
  background-image: url("../img/article_img3_pc.jpg");
}
.no-4 {
  background-image: url("../img/article_img4_pc.jpg");
}
@media (max-width:1000px) {
  .number-cnt {
    aspect-ratio: 1500/800;
    margin-top: 10em;
  }
  .no-1 {
    background-image: url("../img/article_img1_sp.jpg");
  }
  .no-2 {
    background-image: url("../img/article_img2_sp.jpg");
  }
  .no-3 {
    background-image: url("../img/article_img3_sp.jpg");
  }
  .no-4 {
    background-image: url("../img/article_img4_sp.jpg");
  }
}
.num-1 {
  position: absolute;
  top: 5%;
  left: 5%;
}
.num-2 {
  position: absolute;
  top: 60%;
  right: 5%;
}
.num-3 {
  position: absolute;
  top: 5%;
  right: 5%;
}
.num-4 {
  position: absolute;
  bottom: 5%;
  right: 5%;
}
@media (max-width:1000px) {
  .num-1 {
    position: absolute;
    top: 38%;
  }
  .num-2 {
    position: absolute;
    top: 50%;
  }
  .num-3 {
    position: absolute;
    top: 60%;
  }
  .num-4 {
    position: absolute;
    top: 60%;
  }
}
.number-txt {
  width: 47%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  padding: 1.5em;
  text-align: left;
}
@media (max-width:1280px) {
  .number-txt {
    width: 60%;
    font-size: 15px;
  }
}
@media (max-width:1024px) {
  .number-txt {
    
  }
}
.txt-1 {
  bottom: 5%;
  right: 2%;
}
.txt-2 {
  bottom: 0%;
  left: 2%;
}
.txt-3 {
  bottom: 5%;
  right: 2%;
}
.txt-4 {
  bottom: 5%;
  left: 2%;
}
@media (max-width:1000px) {
  .txt-1 {
    bottom: 5%;
    left: auto;
    right: 0;
  }
  .txt-2 {
    bottom: -18%;
    right: auto;
    left: 0;
  }
  .txt-3 {
    bottom: 0;
    right: 40%;
  }
  .txt-4 {
    bottom: -10%;
    left: 0;
  }
}
.sliderArea {
  margin-top: 6em;
}
.slick-slide img {
  border-radius: 10px;
  height: 178px;
  object-fit: cover;
  padding: 5px;
}
.slider-block {
  position: relative;
}
.sliderArea .story-info {
  position: absolute;
  bottom: 7%;
  left: 7%;
}



.movebox {
  width: 100%;
  /*height: 200px;*/
  margin: 0 0 0% 0;
  overflow: hidden;


}

.movebox .boxInner {
  width: inherit;
  height: inherit;
  /*line-height: 200px;
  font-size: 1.5em;
  text-align: center;
  color: #555;*/
  /*background-color: #fff;*/
  opacity: 0;
	
}

.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.2,1);
  position: relative;
  opacity: 1 !important;
	
	
}
  
.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.2,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 101%;
  height: 100%;
  background-image: linear-gradient( 109.6deg,  rgba(67, 193, 253, 1) 11.2%, rgba(49, 135, 243, 1) 91.1%);
  /*background-image: linear-gradient( 109.6deg,  rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% );*/
}

@keyframes play {
  from {
    transform: translateX(-100%);
	  }
  
  to {
    transform: translateX(0);
	}
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}	



.growing-up-cnt .flex1 .item1{
width:100%;
height:398px;
margin:0 auto;
overflow:hidden;
border-radius: 0px;
}

.growing-up-cnt .flex1 .item1 img{
color: #231815;
font-weight: bold;
display: flex;
transition:1s all;
}


.growing-up-cnt .flex1 .item1 img:hover  {
transform:scale(1.2,1.2);
transition:1s all;
}


.slider01 a img {
  border-radius: 30px;
}
.slide-arrow {}
.slide-arrow img {
  display: block;
  width: 30px !important;
  height: 30px;
  position: absolute;
  bottom: 20px;
  right: 40px;
}

@media (max-width:1024px) {
  .slider01 .story-info h4 {
    font-size: 13px;
  }
}
@media (max-width:1000px) {
  .slider01 {
    margin: 0 auto;
    width: 100%;
  }
  .slider-block {
    position: relative;
  }
  .slider-block img {
    width: 100%;
    height: auto;
    margin: 0 10px;
  }
}

.head-name-scale2{
position:absolute;
z-index: 5000;
bottom:13em;
left:-10%;
width:50%;
opacity: 0.5;
}












/***********横向き************/
@media screen and (min-width:979px) and (max-width:1024px) and (orientation: landscape) {
	
.blue-bg {
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  border-radius: 30px 0 0 30px;
  width: 63%;
  position: absolute;
  top: -30%;
  right: 0;
  z-index: 100;
}


.copy-toba h3 {
  font-size: 21px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  color: #fff;
  padding-left: 2%;
  padding-top: 3%;
  padding-right: 2%;
  padding-bottom: 0.8em;
}	
	
	
.pc-br {
  display: none;
}		
	
	
.president_00 {
width: 80%;
height:70vh;
}
.president_01top{
  top: 0;
  height:auto;
}
	
.president_01top_text2 p{
  /* 水平方向の中央揃え */
  margin: 25px auto;
  width:70%;
  text-align: justify;
 font-size: 17px;
}
.president_cut2 p{
color: #FFFFFF;
font-size: clamp(18px, 1.7vw, 22px);
}
	
.president_cut3{
width: 300px;
position: absolute;
left:-50px;
bottom:40%;
}

.president_cut5{
 margin: 0px 0% 0px 0px;
 position:absolute;
 bottom:0px;
 left:calc(100% - 28vw); 
 /*max-height: 50%;*/
}
	
.head-name-scale img{
opacity: 0.5;
}
	
}



/***********iPad縦向き************/
@media print,screen and (min-width:667px) and  (orientation:portrait){
	
.blue-bg {
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  border-radius: 30px 0 0 30px;
  width: 63%;
  position: absolute;
  top: 55%;
  right: 0;
  z-index: 100;
}
	
.copy-toba h3 {
  font-size: 21px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  color: #fff;
  padding-left: 3%;
  padding-top: 3%;
  padding-right: 2%;
  padding-bottom: 0.8em;
}
	
.pc-br {
  display: none;
}	
	
	
.president_00 {
width: 80%;
height:30vh;
}

	
.president_01top_text2 p{
  /* 水平方向の中央揃え */
  margin: 25px auto;
  width:80%;
  text-align: justify;
 font-size: 18px;
}
.president_cut2 span{
color: #FFFFFF!important;
font-size: clamp(15px, 1.5vw, 18px);
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
}
	
	
.president_00 .president_cut2{
/*height: 80%;*/
padding: 3% 0;
display: flex;
justify-content: center;
margin-left:47.5%;
}
	
	
.president_cut3{
width: 300px;
position: absolute;
left:-50px;
bottom:40%;
}

.president_cut5{
 margin: 0px 0% 0px 0px;
 position:absolute;
 bottom:0px;
 left:calc(100% - 28vw); 
 /*max-height: 50%;*/
}
	
.head-name-scale img{
opacity: 0.5;
}
	
	

.flex-box-03 .flex-item-03 {
display: flex;
flex-direction: column;		
width: calc(100% / 2 - 2em);
margin: 0.5em 0.5em 2em 0.5em;
border-left:#969292 solid 1px;
padding:1em;
}	
	
.flex-box-03 .flex-item-03:first-child {
border-left:#969292 solid 1px;
}	
	
}
	
	
	
	
/***********iPadPro縦向き************/
@media print,screen and (min-width:1024px) and  (orientation:portrait){

.blue-bg {
  background: linear-gradient(90deg, rgba(67, 193, 253, 1) 35%, rgba(49, 135, 243, 1) 100%);
  border-radius: 30px 0 0 30px;
  width: 63%;
  position: absolute;
  top:-30%;
  right: 0;
  z-index: 100;
}
	
.copy-toba h3 {
  font-size: 21px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  color: #fff;
  padding-left: 3%;
  padding-top: 3%;
  padding-right: 2%;
  padding-bottom: 0.8em;
}	
	

.president_00 .president_cut2{
padding: 10% 0;
}
	
	
.president_cut2 span{
color: #FFFFFF!important;
font-size: clamp(16px, 1.8vw, 20px);
}
	
.president_cut3{
width: 300px;
position: absolute;
left:-50px;
bottom:40%;
}

.president_cut5{
 margin: 0px 0% 0px 0px;
 position:absolute;
 bottom:0px;
 left:calc(100% - 32vw); 
 /*max-height: 50%;*/
}		

.head-name-scale img{
opacity: 0.5;
}
	
	
}
	
	

/*-----iPadPro用横------*/
/*　画面サイズが980pxから1024pxまではここを読み込む　*/	
@media screen and (min-width:949px) and ( max-width:1325px) and (orientation: landscape) {
.president_00 {
width: 80%;
height:58vh;
}

	
.president_01top_text2 p{
  /* 水平方向の中央揃え */
  margin: 25px auto;
  width:70%;
  text-align: justify;
 font-size: 16px;
}

	
.president_00 .president_cut2{
/*height: 80%;*/
padding: 5% 0;
display: flex;
justify-content: center;
margin-left:47.5%;
}	
	
	
.president_cut2 span{
color: #FFFFFF!important;
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
font-size: clamp(18px, 1.6vw, 23px);
}
	
.president_cut3{
width: 300px;
position: absolute;
left:-50px;
bottom:40%;
}

.president_cut5{
 margin: 0px 0% 0px 0px;
 position:absolute;
 bottom:0px;
 left:calc(100% - 28vw); 
 /*max-height: 50%;*/
}
	
.head-name-scale img{
opacity: 0.3;
}
	
.copy-toba h3 {
  font-size: 21px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  color: #fff;
  padding-left: 20%;
  padding-top: 3%;
  padding-bottom: 0.8em;
}		
	

}


@media (orientation: landscape) and (max-width: 932px){
	
.president_00 {
width: 90%;
height:70vh;
}	
	
.president_00 .president_cut2{
/*height: 80%;*/
padding: 10% 0;
display: flex;
justify-content: center;
margin-left:30%;
}
	
.president_cut2 span{
color: #FFFFFF!important;
font-size: clamp(18px, 1.7vw, 21px);
}
	
.president_cut3{
width: 200px;
position: absolute;
left:-20px;
top:40%;
}
	
.president_cut5{
 margin: 0px 0% 0px 0px;
 position:absolute;
 bottom:0px;
 left:calc(100% - 28vw); 
 /*max-height: 50%;*/
}
	
.head-name-scale img{
opacity: 0.5;
}
	

}














.form-wrap {
width: 100%;
max-width: 1200px;
margin: 0 auto 5em;
text-align: center;
padding-bottom: 3em;
}

.form-box {
width: 100%;
margin: 1em auto 0em;
text-align: center;
}

.form-table {
width: 100%;
margin: 0px auto;
border-collapse: separate;
border-spacing: 10px;
padding: 0em 4em 3em 4em;
}

.form-table th {
display: block;
padding: 0em 0.6em;
line-height: 180%;
text-align: left;
vertical-align: top;
color: #222;
width: 100%;
font-size: 18px;
}

.form-table td {
display: block;
padding: 0em 0.5em 0.5em 0em;
line-height: 180%;
text-align: left;
vertical-align: top;
font-size: 16px;
color: #222;
width: 100%;
}

::placeholder {
color: #c3c3c3;
}

.kome{
color:#D8070B;
}

.contactttl{
font-size: 18px;
text-align: left;
font-weight: bold;
line-height: 1.9;
color: red;
}

.consent-text {
font-size: 17px;
font-weight: bold;
color: #000;
vertical-align: middle;
margin-bottom: 2em;
}

.kakunin {
padding: 30px 0;
background-color: #ffdc64;
font-size: 20px;
font-weight: bold;
width: 360px;
margin: 10px;
border-radius: 3px;
box-shadow: 10px 10px 0px 0px #dddddd;
}

.kakunin:hover{
opacity: 0.8;
}


.form-wrap {
width: 100%;
max-width: 1200px;
margin: 0 auto 5em;
text-align: center;
padding-bottom: 3em;
}

.form-box {
width: 100%;
margin: 1em auto 0em;
text-align: center;
}

.form-table {
width: 100%;
margin: 0px auto;
border-collapse: separate;
border-spacing: 10px;
padding: 0em 4em 3em 4em;
}

.form-table th {
display: block;
padding: 0em 0.6em;
line-height: 180%;
text-align: left;
vertical-align: top;
color: #222;
width: 100%;
font-size: 18px;
}

.form-table td {
display: block;
padding: 0em 0.5em 0.5em 0em;
line-height: 180%;
text-align: left;
vertical-align: top;
font-size: 16px;
color: #222;
width: 100%;
}

::placeholder {
color: #c3c3c3;
}

.kome{
color:#D8070B;
}

.contactttl{
font-size: 18px;
text-align: left;
font-weight: bold;
line-height: 1.9;
color: red;
}

.consent-text {
font-size: 17px;
font-weight: normal;
color: #000;
vertical-align: middle;
margin-bottom: 2em;
}

.btnentry {
  display: inline-block;
  background-color: #fff;
  width: 340px;
justify-content: center;
height: 55px;
  color: #2E7BF2;
  font-size: 16px;
font-weight: bold;
  text-align: center;
  border-radius: 40px;
  border: 2px solid #2E7BF2;
  margin: 0 auto;
}

.btnentry:hover {
  background-color: #2E7BF2;
  color: #fff;
  transition: .5s;
}
