@charset "UTF-8";
 /*  ––––––––––––––––––––––––––––––––––––––––––––––––––
 共通
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    scroll-behavior: smooth;
  }
  
  
  body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.065rem;
    font-family: 'Zen Maru Gothic', sans-serif !important;
    color: var(--black);
  }


section {
  background-color: var(--lightblue);
}
section.fixed{
	position: -webkit-sticky;/*Safari*/
	position: sticky;
  min-height: 105vh;
}



p{
  font-size: 1rem;
  letter-spacing: 0.03rem;
  line-height: 2.5rem;
  margin-top: 0;
  text-align: justify;
  font-feature-settings: "palt" 1 !important;
}

img{
  max-width: 100%;
  height: auto;
}

/* PC、tab、スマホ表示 */
.pc { display: block !important; }
.tab { display: none !important; }
.sp { display: none !important; }

@media only screen and (max-width: 1024px) {
  .pc { display: none !important;}
  .tab { display: block !important; }
}

@media only screen and (max-width: 576px) {
  .pc { display: none !important; }
  .tab { display: none !important; }
  .sp { display: block !important; }
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
}
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 2.75rem; line-height: 1.15;  font-weight: 900; font-family: 'Anton', sans-serif; text-align: center; margin-bottom: 0px; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem;}
h4 { font-size: 2.0rem; line-height: 1.35;}
h5 { font-size: 1.8rem; line-height: 1.5;}
h6 { font-size: 1.5rem; line-height: 1.6;}

/* Larger than phablet */
@media (min-width: 575px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 6rem; letter-spacing: 0.01rem; line-height: 0.85; font-weight: 900; text-align: center; margin-bottom: 0px; font-family: 'Anton', sans-serif; }
  h3 { font-size: 3.0rem; }
  h4 { font-size: 2.8rem; }
  h5 { font-size: 2.1rem; }
  h6 { font-size: 1.5rem; }
}

/*color*/
:root {
  --yellow: #F6D741;
  --lightyellow: #FFF8D5;
  --blue: #1E68A2;
  --darkblue: #1E4F79;
  --lightblue: #CCEFFF;
  --lightgreen: #d0ffed;
  --red:  #E4604C;
  --gray: #BCD4DF;
   }

 /*f-size*/
 :root {
  --28px: 1.75rem;
  --22px: 1.375rem;
  --20px: 1.25rem;
  --18px: 1.125rem;
  --14px: 0.875rem;
  --12px: 0.75rem;
  --10px: 0.625rem;
   }


/* 細かい共通パーツ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*矢印*/
.arrow img {
  display: block;
  margin: 0 auto;
}

.arrow .arrow-img {
  width: 60px;
}

.arrow .text-img {
  width: 400px;
  margin-bottom: 10px;
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.animated {
 -webkit-animation-duration: 2s;
 animation-duration: 2s;
 -webkit-animation-fill-mode: both;
 animation-fill-mode: both;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
  40% {-webkit-transform: translateY(-20px);}
  60% {-webkit-transform: translateY(-10px);}
} 

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-20px);}
  60% {transform: translateY(-10px);}
} 

/*アイテム*/
.item {
  width: 25%;
  position: absolute;
  transition: .3s;
}

.item:hover {
  margin-top: 7px; 
}

/*ねじ*/
.screw {
  width: 20px !important;
  height: 20px !important;
  position: absolute;
}

.screw01 {
  top: 10px;
  left: 10px;
}

.screw02 {
  top: 10px;
  right: 10px;
}

.screw03 {
  bottom: 10px;
  right: 10px;
}

.screw04 {
  bottom: 10px;
  left: 10px;
}

/*padding 消し*/
.mx-fix {
  padding: 0;
}

/*コウコウセイ移動*/
.h-student-wrap .h-studentimg {
  width: 350px;
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	-ms-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
	opacity: 0;
  visibility: hidden; 
}

.h-student-wrap .h-studentimg.view {
  opacity: 1;
  visibility: visible
}

/*02検証用*/
.h-studentwrap .h-student-img {
  width: 19%;
  position: fixed;
  z-index: 10;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	-ms-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
	opacity: 0;
  visibility: hidden; 
}

.h-studentwrap .h-student_img {
  width: 14%;
  position: fixed;
  z-index: 10;
  top: 36%;
  left: 48%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	-ms-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
	opacity: 0;
  visibility: hidden;
}

.h-studentwrap .h-student-img.view,.h-studentwrap .h-student_img.view {
  opacity: 1;
  visibility: visible
}

/*シーンに前後移動追加バージョン*/
.h-studentwrap .door {
  width: 6.5%;
}

.h-studentwrap .door-left {
  top: 38%;
  left: 38%;
  transform: translate(-37%, -37%);
  -webkit-transform: translate(-37%, -37%);
  -ms-transform: translate(-37%, -37%);
}

.h-studentwrap .door-right {
  top: 39%;
  right: 42%;
  transform: translate(62%, -40%);
  -webkit-transform: translate(62%, -40%);
  -ms-transform: translate(62%, -40%);
}

@media (max-width: 1024px) {
  .h-studentwrap .h-student_img {
    top: 44%;
  }
  .h-studentwrap .door {
    width: 13% !important;
  }
  
  .h-studentwrap .door-left {
    top: 16%;
    left: 63% !important;
    transform: translate(37%, -37%);
    -webkit-transform: translate(37%, -37%);
    -ms-transform: translate(37%, -37%);
  }
  
  .h-studentwrap .door-right {
    top: 67%;
    left: 63% !important;
    transform: translate(37%, -37%);
    -webkit-transform: translate(37%, -37%);
    -ms-transform: translate(37%, -37%);
  }
}

@media (max-width: 575px) {
  .h-studentwrap .h-student_img {
    top: 44%;
  }

  .h-studentwrap .door {
    width: 18% !important;
  }
  
  .h-studentwrap .door-left {
    top: 17%;
    left: inherit !important;
    right: 8% !important;
    transform: translate(37%, -37%);
    -webkit-transform: translate(37%, -37%);
    -ms-transform: translate(37%, -37%);
  }
  
  .h-studentwrap .door-right {
    top: 68%;
    right: 8% !important;
    left: inherit !important;
    transform: translate(0%, -40%);
    -webkit-transform: translate(0%, -40%);
    -ms-transform: translate(0%, -40%);
  }
}

/*scene 高さ*/
#scene1,#scene2,#scene3 {
  min-height: 100vh;
}

/*ボタン*/
.btn {
  background-color: var(--blue);
  color: #fff;
  border-radius: 50px;
  width: 100%;
  font-size: var(--16px);
  font-weight: 700;
  padding: 15px;
  position: relative;
  transition: .5s;
}

.btn:hover {
  color: #fff;
  top: 3px; 
}

.btn:after {
  font-family: "Font Awesome","Font Awesome 5 Free";
  font-weight: 900;
  content: '\f04b';
  color: var(--yellow);
  position: absolute;
  right: 20px;
}

.space-fix {
  letter-spacing: -0.5rem;
}

.space-fix02 {
  letter-spacing: -0.25rem;
}


/*アニメーション*/
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.anime-fuwafuwa {
  animation: 3s fuwafuwa infinite;
}

/*space*/
.mt-100 {
  margin: 100px 0 0;
}


/* header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*menu ナビ*/
header #g-nav {
  position:fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
  top:0;
  right: -120%;
  width:25%;
  height: 100svh;
  background:var(--red);
  padding: 40px 20px 15px 40px;
  transition: all 0.8s;
}

header #g-nav #menu-closebtn {
  position: absolute;
  z-index: 15;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
}

header #g-nav .menu-text {
  width: 130px;
  margin: 0 0 30px;
}

header #g-nav  ul {
  list-style: none;
  padding-left: 0;
}

header #g-nav  ul li {
  margin-bottom: 15px;
}

header #g-nav  ul li a {
  color: #fff;
  transition: 0.25s ;
}

header #g-nav  ul li a:hover {
  text-decoration: none;
  opacity: 0.75;
}

header #g-nav  ul li a img {
  width: 300px;
}

header #g-nav .bnr {
  display: flex;
  flex-wrap: wrap;
}

header #g-nav .bnr li {
  width: 47%;
  margin: 0 5px 14px 0;
}

header #g-nav .bnr li img {
  border-radius: 6px;
}

header #g-nav .bnr li:last-child img {
  border: solid 2px #fff;
}

header #g-nav.panelactive{
  right: 0;
}

/*menu ボタン*/
header .openbtn{
	position:fixed;
  z-index: 999;
	top: 0;
	right: 0;
	cursor: pointer;
   width: 150px;
   height: auto;
}

header #menu-closebtn {
  width: 60px;
}

header #menu-closebtn:hover {
  cursor: pointer;
}

header .d-none {
  display: none;
}

header .d-block {
  display: block;
}


/* top
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top {
  min-height: 100vh;
  position: relative;
}
/*.top {
  background-image: url(../img/top_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  text-align: center;
  min-height: 115vh;
  position: relative;
}*/

.top .top-btm {
  position: absolute;
  bottom: 0;
  left: 0;
}

.top .title-img {
  position: absolute;
  width: 37%;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.top .catch-wrap {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom:0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.top .catch-wrap .catch-img {
  width: 600px;
}

.top .catch-wrap p{
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.8;
}

.top .arrow  {
  bottom: -20px;
}

.top .scroll-img {
  width: 80px;
}

.top .pc {
  display: none;
}

/*雲*/
.top .cloud-wrap .cloud01 {
  position: absolute;
  width: 15%;
  top: 20px;
  left: 20px;
}

.top .cloud-wrap .cloud02 {
  position: absolute;
  width: 20%;
  bottom: 15%;
  right: 0;
}

.top .cloud-wrap .cloud03 {
  position: absolute;
  width: 23%;
  bottom: 0;
  left: 0;
}


/*ドア*/
.door-wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 100px 0 200px;
}
.door-wrap .door {
  width: 220px;
}

/*開閉アニメーション*/
.door-change {
  position: relative;
  margin-top: 100px;
}
.door-change  .door, .door-change  .door-back {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  transform: translate(-50%, -50%);
}

.door-change  .door {
  z-index: 10;
  transition: 1.25s;
  transform: translate(-50%, -50%);
  transform-origin: right;
}

@media (max-width: 575px) {
  .door-wrap .door {
    width: 100%;
  }
}



/* sec01
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec01 {
  background-color: var(--blue) ;
  position: relative;
  padding: 40px 10px 20px;
}

.sec01 .bg-illust {
  position: absolute;
}

.sec01 .bg-illust-left {
  width: 20%;
  left: 10px;
  top: 25%;
}

.sec01 .bg-illust-right {
  width: 30%;
  right: 20px;
  bottom: 10%;
}

.sec01 .box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 10px 10px var(--darkblue);
  padding: 25px 25px 18px;
  position: relative;
  text-align: center;
}

.sec01 .box .name {
  width: 180px;
  margin-bottom: 10px;
}

.sec01 .box p {
  font-size: var(--12px);
  line-height: 1.5;
  text-align: center;
  color: var(--darkblue);
  font-weight: 500;
  line-height: 1.75;
}

.sec01 .box .profile {
  border-right: dashed 3px var(--lightblue);
  border-radius: 3px;
}

/*.sec01 .arrow {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}*/

.sec01 .h-studentimg {
  width: 350px;
  display: block;
  margin: 80px auto 15px 24%;  
}



/* sec02
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*アイテム 玉ねぎ*/
.sec02 #item01 {
  top: 8%;
  right: 0;
  width: 18%;
}

/*アイテム 薬*/
.sec02 #item02 {
  left: 4%;
  bottom: 18%;
  width: 18%;
}

/*アイテム シャツ*/
.sec02 #item03 {
  top:3%;
  left: 0;
  width: 18%;
}

.sec02 .arrow {
  margin-top: -120px;
}


/* sec03
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec03 {
  position: relative;
}

/*雲*/
.sec03 .cloud-wrap .cloud01 {
  position: absolute;
  width: 33%;
  top: -13%;
  right: 0;
}



/*アイテム 飛行機*/
.sec03 #item04 {
  top: 0;
  right: 0;
  width: 18%;
}

/*アイテム 癌*/
.sec03 #item05 {
  top: 5%;
  left: 0;
}

/*アイテム 車*/
.sec03 #item06 {
  right: 20px;
  bottom: 5%;
  width: 18%;
}

.sec03 .arrow {
  margin-top: -120px;
}


/* sec04
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec04 {
  position: relative;
  background: linear-gradient(180deg, var(--lightblue) 0%, var(--lightblue) 50%, #8BC8F2 50%,#8BC8F2 100%);
}

/*.sec04 .bg {
  position: absolute;
  bottom: -40px;
  left: 0;
}*/

.sec04 .bg .bg_btm {
  position: absolute;
  bottom: -55px;
  left: 0;
}

/*雲*/
.sec04 .cloud-wrap .cloud01 {
  position: absolute;
  width: 25%;
  top: -13%;
  left: 0;
}

.sec04 .cloud-wrap .cloud02 {
  position: absolute;
  width: 15%;
  right: 15%;
  top: 18%;
}

/*アイテム 太陽*/
.sec04 #item07 {
  top: 0;
  right: 0;
}

/*アイテム 風力発電とソーラーパネル*/
.sec04 #item08 {
  top: 10%;
  left: 0;
}

/*アイテム 水*/
.sec04 #item09 {
  right:  0;
  bottom: 0;
  width: 18%;
}



/* アイテムポップアップ
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/*タイトル*/
.modaal-content-container {
  padding: 0px;
}

.inline-modal .tit-wrap img {
  width: 600px;
}

.inline-modal .tit-wrap {
  background-color: var(--blue);
  color: #fff;
  padding: 20px 40px;
}

.inline-modal .info-colse {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  z-index: 999;
}

/*タイトルカテゴリ*/
.inline-modal .tit-wrap .cat {
  font-size: var(--14px);
  color: #fff;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 6px;
  margin-bottom: 5px;
  display: inline-block;
}

.inline-modal .tit-wrap .cat-kankyo {
  background-color: #86c73c;
}

.inline-modal .tit-wrap .cat-oyo {
  background-color: #ddbe32;
}

.inline-modal .tit-wrap .cat-seimei {
  background-color: #f17186;
}


/*コンテンツ*/
.inline-modal .container {
  padding: 50px 35px;
}

.inline-modal p {
  color: var(--darkblue);
  font-weight: 500;
  line-height: 1.75;
  margin: 0 10px 25px;
}

.inline-modal h4 {
  background-color: var(--yellow);
  color: var(--blue);
  font-size: var(--20px);
  font-weight: 900;
  padding: 15px 10px 15px 55px;
  margin-bottom: 15px;
  border-radius: 50px;
  position: relative;
} 

.inline-modal h4:before {
  content: url(../img/screw03.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.55);
  position: absolute;
  top: 2px;
  left: 5px;
}

.inline-modal .ce_title {
  display: block;
  margin: 0px auto 10px;
  width: 400px;
}

.inline-modal .speech-balloon {
  background-color: var(--lightblue);
  border-radius: 6px;
  position: relative;
  padding: 20px 10px;
}


.inline-modal .speech-balloon .btn {
  width: 80%;
  display: block;
  margin: 10px auto 0px;
}

.inline-modal .speech-balloon p {
  font-size: var(--14px);
  line-height: 1.7;
  margin-bottom: 0px;
  text-align: center;
}

.inline-modal .speech-balloon:after {
  border: 20px solid transparent;
  border-right: 20px solid var(--lightblue);
  content: "";
  position: absolute;
  top: 65%;
  left: -30px;
  margin-top: -15px;
  transform:rotate(-8deg);
}

.inline-modal .speech-balloon-left {
  margin-left: 15px;
}

.inline-modal .speech-balloon-left:after {
  border: 20px solid transparent;
  border-left: 20px solid var(--lightblue);
  border-radius: 6px;
  content: "";
  position: absolute;
  top: 60%;
  left: inherit;
  right: -32px !important;
  margin-top: -15px;
  transform:rotate(8deg);
}

.inline-modal .round_btn {
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background:  var(--yellow);
  transition: all 1s;
}
.inline-modal .round_btn::before, .inline-modal .round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40%;
  width: 5px;
  border-radius: 3px;
  height: 30px;
  background:var(--blue);
}

.inline-modal .btn {
  font-size: var(--14px);
  font-weight: 500;
  padding: 10px;
  margin-top: 15px;
}

.inline-modal .btn:after {
  content: url(../img/pop_btn_arrow.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.55);
  position: absolute;
  top: -7px;
  right: 0;
}

.inline-modal .box {
  background-color: var(--lightyellow);
  border-radius: 6px;
  padding: 40px;
  position: relative;
  text-align: center;
  margin-top: 25px;
}

.inline-modal .box img {
  width: 400px;
}

.inline-modal .box .btn {
  width: 65%;
}

.inline-modal .job {
  border-radius: 10px;
  margin-bottom: 10px;
}

/*初期モーダル設定 上書き*/
.modaal-container {
  max-width: 800px;
  border-radius: 10px;
}

::-webkit-scrollbar {
  border-radius: 10px;
  width: 6px;  /* スクロールバーの幅 */
}

/* スクロールバーのツマミ部分 */
::-webkit-scrollbar-thumb {
  background-color: var(--gray);  /* ツマミの色を変更 */
  border-radius: 10px;  /* 角を丸くする */
}


/*sec05
-----------------------------------------------*/
.sec05 {
  background-image: url(../img/sec05_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  min-height: auto;
  padding: 60px 0 40px;
}

.sec05 .container {
  max-width: 800px;
}

.sec05 .container .margin-t {
  margin-top: -40px;
}

.sec05 .container .character img {
  width: 60%;
}


/*footer
-----------------------------------------------*/
footer {
  position: relative;
}

/*雲*/
footer .cloud-wrap .cloud01 {
  position: absolute;
  width: 15%;
  top: 5%;
  left: 7%;
}

footer .cloud-wrap .cloud02 {
  position: absolute;
  width: 28%;
  right: 0;
  bottom: 15%;
}

/*footer-top*/
footer .footer-top {
  background-color: var(--lightblue);
  text-align: center;
  padding-top: 60px;
} 

footer .footer-top .container {
  max-width: 800px;
}

footer .footer-top h4 {
  color: var(--blue);
  font-size: var(--28px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
}

footer .footer-top p {
  color: var(--blue);
  font-weight: 500;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 25px;
}

footer .footer-top .btn {
  background-color: var(--yellow);
  border-radius: 50px;
  box-shadow: 6px 6px var(--gray);
  color: var(--blue);
  display: block;
  font-weight: bold;
  padding: 12px;
  position: relative;
  margin: 0 auto 40px;
  width: 60%;
  transition: .5s;
}

footer .footer-top .btn:after {
  content: url(../img/pop_contents_btn_blue.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.55);
  position: absolute;
  top: -2px;
  right: 7px;
}

footer .footer-top .btn:hover {
  top: 5px; 
  box-shadow: 0 0 ;
}

footer .footer-top .building {
  margin-bottom: -38px;
  width: 300px;
}

/*footer-btm*/
footer .footer-btm {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

footer .footer-btm .bnr {
  max-width: 800px;
  margin: 10px auto 80px;
}

footer .footer-btm .bnr .bnr-wrap {
  overflow: hidden;
  border-radius: 6px;
}

footer .footer-btm .bnr .bnr-wrap img {
  border-radius: 6px;
  transition: transform .5s ease;
}

footer .footer-btm .bnr .bnr-wrap img:hover {
  transform: scale(1.1); 
}

footer .footer-btm .copy {
  color: #fff;
  font-size: var(--10px);
  letter-spacing: 0.075rem;
  text-align: center;
}

/*pagetop*/
#page-top a{
	display: flex;
  z-index: 9999;
	justify-content:center;
	align-items:center;
	border-radius: 5px;
	width: 120px;
	height: 120px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top  {
	position: fixed;
	right: 10px;
	bottom:0px;
	z-index: 10;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(150px);
  }
}




/*––––––––––––––––––––––––––––––––––––––––––––––––––
 レスポンシブ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 1550px) {
}

@media (max-width: 1199px) {
}

@media (max-width: 1024px) {
}

@media (max-width: 767px) {
}

@media (max-width: 575px) {
}




@media (max-width: 1550px) {
  .top .title-img {
    width: 43%;
}

  .arrow .arrow-img {
    width: 40px;
}
.top .scroll-img {
  width: 60px;
}

  footer .footer-top .building {
    margin-bottom: -28px;
  }
  
  footer .footer-btm {
    bottom: -50px;
}

  footer .footer-btm .bnr {
    margin: 10px auto 40px;
  }
}


@media (max-width: 1024px) {
  .h-studentwrap .h-student-img  {
    width: 33%;
    left: 72%;
  }

.h-studentwrap .h-student_img  {
    width: 25%;
    left: 70%;
  }

  
  /* header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*menu ナビ*/
header #g-nav {
  width:50%;
}

header #g-nav  ul {
  padding-left: 0;
}

header #g-nav  ul li a img {
  width: 80%;
}

header #g-nav .bnr li {
  width: 47%;
  margin: 0 5px 14px 0;
}

header #g-nav .bnr li a img {
  width: 100%;
}

/* top
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top .title-img {
  width: 70%;
  top: 25%;
}

.top .catch-wrap {
  bottom: 0;
}

.top .catch-wrap {
  left: 53%;
  transform: translate(-40%, -40%);
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
}

.modaal-inner-wrapper .pc {
 display: block !important;
}

/* sec01
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec01 {
  min-height: 50vh;
}

/* sec02
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*アイテム 玉ねぎ*/
.sec02 #item01 {
  top: 2%;
  left: 1.5%;
  width: 40%;
}

/*アイテム 薬*/
.sec02 #item02 {
  left: 1.5%;
bottom: 15%;
width: 40%;
}

/*アイテム 服*/
.sec02 #item03 {
  top: 30%;
  left: 1.5%;
  width: 43%;
}



.sec02 .arrow {
  margin-top: -120px;
}


/* sec03
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec03 .cloud-wrap .cloud01 {
  top: 0;
}

/*アイテム 飛行機*/
.sec03 #item04 {
  top: 2%;
  left: 0;
  width: 40%;
}

/*アイテム 癌*/
.sec03 #item05 {
  top: 33%;
  left: 0;
  width: 43%;
}

/*アイテム 車*/
.sec03 #item06 {
  left: 1.5%;
  bottom: 5%;
  width: 40%;
}

.sec03 .arrow {
  margin-top: -80px;
}


/* sec04
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec04 .bg {
  position: relative;
  bottom: -100px;
}

.sec04 .cloud-wrap .cloud01 {
  width: 25%;
  top: -4%;
}

.sec04 .cloud-wrap .cloud02 {
  right: 5%;
  top: 10%;
}

/*アイテム 太陽*/
.sec04 #item07 {
  top: 1%;
  left: 0;
  width: 40%;
}

/*アイテム 風力発電とソーラーパネル*/
.sec04 #item08 {
  top: 29%;
  left: 0;
  width: 43%;
}

/*アイテム 水*/
.sec04 #item09 {
  left:  0;
  bottom: 2%;
  width: 40%;
}


/* sec05
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec05 {
  padding: 160px 0 30px;
}

.sec05 .container {
  max-width: 600px;
}



/* footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer .footer-top .container {
  max-width: 600px;
}

footer .footer-btm {
  bottom: 3%;
  left: 20%;
  transform: translate(-13%, -13%);
  -webkit-transform: translate(-13%, -13%);
  -ms-transform: translate(-13%, -13%);
}
}



@media (max-width: 575px) {
  p{
    font-size: var(--14px);
    line-height: 1.65rem;
  }

  .h-student-wrap .h-studentimg {
    width: 35%;
    right: 20%;
    transform: translate(40%, -40%);
    -webkit-transform: translate(40%, -40%);
    -ms-transform: translate(40%, -40%);
}

.h-studentimg-sp {
  width: 65%;
  margin: 40px auto 10px;
}

/*02検証用*/
.h-studentwrap .h-student-img {
  width: 45%;
  left: inherit;
  right: 2%;
  transform: translate(20%, -25%);
  -webkit-transform: translate(20%, -25%);
  -ms-transform: translate(20%, -25%);
}

.h-studentwrap .h-student_img {
  width: 35%;
  left: inherit;
  right: 15%;
  transform: translate(40%, -40%);
  -webkit-transform: translate(40%, -40%);
  -ms-transform: translate(40%, -40%);
}


.h-studentwrap .h-student-img.view,.h-studentwrap .h-student_img.view {
  opacity: 1;
  visibility: visible
}

.modaal-wrapper {
  height: 100%;
}


.arrow .arrow-img {
  width: 30px;
}

.arrow .text-img {
  width: 75%;
}

#scene1, #scene2, #scene3 {
  min-height: 100vh;
  padding-top: 40px;
}

.arrow .text-img {
  width: 250px;
  margin-bottom: 10px;
}

.arrow .arrow-img {
width: 30px;
}


/* header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*menu ナビ*/
header #g-nav {
  width:100%;
  padding: 40px 15px 60px 35px;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

header #g-nav .menu-text {
  width: 100px;
}

/*menu ボタン*/
header .openbtn{
   width: 80px;
}


/* top
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top  {
  min-height: 100svh;
}

.top .title-img {
  width: 90%;
  top: 24%;
  left: 50%;
}

.top .scroll-img {
  width: 60px;
}

.top .cloud-wrap .cloud02 {
  bottom: 50%;
}


.top .catch-wrap .catch-img {
  margin-bottom: 15px;
}


/* sec01
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec01 {
  min-height: 90vh;
  padding-bottom: 80px;
}

.sec01 .container {
  margin-right: 7px;
  padding: 0;
}

.sec01 .box {
  box-shadow: 6px 6px var(--darkblue);
  margin: 0px;
  padding: 25px 20px 18px;
}

.sec01 .box .name {
  width: 120px;
  margin-bottom: 5px;
}

.sec01 .box p {
  font-size: var(--12px);
  line-height: 1.5;
  text-align: center;
  color: var(--darkblue);
  font-weight: 500;
  line-height: 1.75;
  margin-left: -10px;
}

.sec01 .box .profile {
  border-right: dashed 0px var(--lightblue);
  border-bottom: dashed 3px var(--lightblue);
  margin-bottom: 15px;
}

.sec01 .arrow {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.sec01 .arrow {
  width: 90%;
  bottom: -30px;
}

.sec01 .h-studentimg {
  width: 70%;
  margin: 40px auto 20px;
}

/*ドア*/
.door-wrap {
  margin-top: 20px;
}

.mt-100 {
  margin-top: 40px;
}


/* sec02
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*アイテム 玉ねぎ*/
.sec02 #item01 {
  top: 2%;
  left: 1.5%;
  width: 56%;
}

/*アイテム 薬*/
.sec02 #item02 {
  left: 1.5%;
  bottom: 10%;
  width: 56%;
}

/*アイテム 服*/
.sec02 #item03 {
  top: 32%;
  left: 1.5%;
  width: 58%;
}


.sec02 .arrow {
  margin-top: -120px;
}


/* sec03
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec03 .cloud-wrap .cloud01 {
  top: 0;
}

/*アイテム 飛行機*/
.sec03 #item04 {
  top: 2%;
  left: 0;
  width: 56%;
}

/*アイテム 癌*/
.sec03 #item05 {
  top: 33%;
  left: 0;
  width: 58%;
}

/*アイテム 車*/
.sec03 #item06 {
  left: 1.5%;
  bottom: 5%;
  width: 56%;
}

.sec03 .arrow {
  margin-top: -80px;
}


/* sec04
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sec04 .bg {
  bottom: -60px;
}

.sec04 .bg .bg_btm {
  bottom: -20px;
}

.sec04 .cloud-wrap .cloud01 {
  width: 25%;
  top: -4%;
}

.sec04 .cloud-wrap .cloud02 {
  right: 5%;
  top: 6%;
}


/*アイテム 太陽*/
.sec04 #item07 {
  top: 1%;
  left: 0;
  width: 56%;
}

/*アイテム 風力発電とソーラーパネル*/
.sec04 #item08 {
  top: 29%;
  left: 0;
  width: 58%;
}

/*アイテム 水*/
.sec04 #item09 {
  left:  0;
  bottom: 2%;
  width: 56%;
}

/*sec05
-----------------------------------------------*/
.sec05 {
  padding: 90px 0 30px;
}
.sec05 .container .margin-t {
  margin-top: -10px;
}

.sec05 .container .character img {
  width: 75%;
}

/* アイテムポップアップ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.modaal-inner-wrapper {
    padding:15px;
}

.modaal-inner-wrapper .pc {
  display: none !important;
}


  /*タイトル*/
  .inline-modal .tit-wrap img {
    width: 100%;
  }

  .inline-modal .tit-wrap {
    padding: 20px 35px 20px 20px;
  }

  .inline-modal .info-colse {
    top: 3px;
    right: 5px;
    width: 35px;
    height: 35px;
  }

/*タイトルカテゴリ*/
.inline-modal .tit-wrap .cat {
  font-size: var(--12px);
}


  /*コンテンツ*/
.inline-modal .container {
  padding: 30px 15px;
}

.inline-modal h4 {
  font-size: var(--16px);
  font-weight: 900;
  padding: 15px 10px 15px 40px;
  margin-bottom: 15px;
  border-radius: 50px;
  position: relative;
} 

.inline-modal h4:before {
  transform: scale(0.35);
  left: -2px;
  top: 0;
}

.inline-modal .speech-balloon {
  padding: 20px 7px;
  margin-right: 18px;
}

.inline-modal .speech-balloon-left {
  margin-left: 18px;
  margin-right: 0px
}

.inline-modal .speech-balloon .btn {
  width: 95%;
}

.inline-modal .speech-balloon p {
  font-size: var(--12px);
  margin: 0px 2px;
}

.inline-modal .speech-balloon:after {
  border: 15px solid transparent;
  border-right: 15px solid var(--lightblue);
  left: -23px;
  margin-top: -5px;
  transform:rotate(-5deg);
}

.inline-modal .speech-balloon-left:after {
  border: 15px solid transparent;
  border-left: 15px solid var(--lightblue);
  left: inherit;
  right: -22px !important;
  margin-top: -5px;
  transform:rotate(-5deg);
}

.inline-modal .speech-balloon-sp {
  margin: 0 5px 5px 5px;
}

.inline-modal .speech-balloon-sp:after {
  left: inherit;
  right: 32% !important;
  margin-top: 40px;
  transform: rotate(-135deg);
}

.inline-modal .speech-balloon-splot{
  margin: 0 5px 5px 5px;
}

.inline-modal .speech-balloon-splot:after {
  left: inherit;
  right: 32% !important;
  margin-top: 50px;
  transform: rotate(-135deg);
}

.inline-modal .box {
  padding: 40px 5px;
}

.inline-modal .box img {
  width: 100%;
}

.inline-modal .box .btn {
  width: 95%;
  margin-top: 10px;
  padding: 10px 25px 10px 10px;
}

.inline-modal .box .btn-twoline:after {
  top: 2px;
}

.inline-modal .btn {
  font-size: var(--12px);
  letter-spacing: 0.05rem;
}

.inline-modal .btn:after {
  transform: scale(0.4);
  right: -8px;
}

/*footer*/
footer .footer-top h4 {
  font-size: var(--20px) !important;
  margin-bottom: 10px;
}

/*雲*/
footer .cloud-wrap .cloud02 {
  bottom: 30%;
}

footer .footer-top .btn {
  width: 95%;
}

footer .footer-top .btn:after {
  right: 0;
}

footer .footer-top .building {
  margin-bottom: -10px;
  width: 160px;
}

footer .footer-btm {
  bottom: 0;
  left: 0;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
}

footer .footer-btm .bnr {
  margin: 10px auto 20px;
}

footer .footer-btm .bnr .bnr-wrap {
  padding: 7px;
}

/*pagetop*/
#page-top,.page-top {
  right: 0;
}
#page-top a,.page-top a{
	width: 80px;
	height: 80px;
}

}




/* top
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#toppage .title-img {
  position: absolute;
    width: 47% !important;
    top: 25% !important;
    left: 48%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

#toppage .sec01 {
  background-color: var(--blue);
 background-size: 100%;
 background-repeat: no-repeat;
 background-position: top left;
 padding: 80px 10px;
 min-height: 100vh;
}

#toppage .sec01 .opendoor {
  margin-bottom: 60px;
}

#toppage .sec01 .civil-door {
  width: 55%;
  transform: rotate(-10deg);
  margin-left: 25%;
}

#toppage .sec01 .arch-door {
  width: 50%;
}

#toppage .sec01 .mech-door {
  width: 37%;
  transform: rotate(-15deg);
  margin:12% 8% 0 0;
}

#toppage .sec01 .ee-door {
  width: 65%;
  transform: rotate(8deg);
}

#toppage .sec01 .chem-door {
  width: 53%;
}

#toppage .sec01 .cs-door {
  width: 55%;
}

#toppage .sec01 .door {
  display: flex;
}

#toppage footer {
  background-color: var(--blue);
}

#toppage footer p {
  font-size: var(--12px);
  text-align: center;
  color: #fff;
  margin-bottom: 0;
 }


 /*  ––––––––––––––––––––––––––––––––––––––––––––––––––
 お仕事図鑑ページ追加
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* トップページ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top-career {
  background-color: var(--lightyellow);
  padding: 40px 10px;
  position: relative;
}

.top-career  .tit-img {
  max-width: 600px;
  margin: 0 auto 20px;
}

.top-career .top-slider {
  list-style: none;
  padding-left: 0px;
}

.top-career .top-slider li {
  list-style: none;
}

.top-career .top-slider .slick-slide {
  width: 360px;
  height: auto;
  margin: 0 7px;
  position: relative;
  overflow: hidden;
}

.top-career .top-slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.top-career .btn {
  background-color: var(--blue);
  border-radius: 50px;
  box-shadow: 6px 6px var(--gray);
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 12px;
  position: relative;
  margin: 80px auto 40px;
  width: 45%;
  transition: .5s;
}

.top-career .btn:after {
  content: url(../img/pop_contents_btn_yellow.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.55);
  position: absolute;
  top: -2px;
  right: 7px;
}

.top-career .slick-dots {
  bottom: 125px;
  right: 5px;
}

.top-career .slick-dots li {
  margin: 0 2px;
}

.top-career .slick-dots li button::before {
  font-family: slick;
  font-size: 30px;
  line-height: 20px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 35px;
  height: 35px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
}

.top-career .slick-dots .slick-active button::before {
  color: var(--blue) !important;
  opacity: 1;
}

.top-career .top-slider .slick-arrow {
  top: 35%;
  position: absolute;
  z-index: 10;
  cursor : pointer;
}

.top-career .top-slider .next-arrow {
  right: -60px;
} 

.top-career .top-slider .prev-arrow {
  left: -60px;
} 

/* header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#career .logo {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
}

/* top
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#career .top {
  background-image: url(../img/career-topbg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  min-height: auto;
  min-height: 100vh;
  position: relative;
}

#career .top .title-img {
  width: 55%;
  margin-top: 5%;
}

#career .top .character-img {
  position: absolute;
  bottom: 0;
  z-index: 10;
}

#career .top .cloud-wrap .cloud01 {
  position: absolute;
  width: 12%;
  top: 13%;
  left: 0;
}

#career .top .cloud-wrap .cloud02 {
  position: absolute;
  width: 22%;
  top: 10%;
  right: 0;
}

/* top-btm
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#career .top-btm {
  background-color: var(--lightyellow);
  padding: 10px;
}

#career .top-btm .character {
  width: 80px;
  transform-origin: center bottom;
    animation: yurayura 2.25s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(8deg);
  }
  50%{
      transform: rotate(-8deg);
  }
}

#career .top-btm .js-slider {
  list-style: none;
  padding-left: 0px;
}

#career .top-btm .js-slider li {
  list-style: none;
}

#career .top-btm .js-slider .slick-slide {
  width: 400px;
  height: auto;
  margin: 0 7px;
  position: relative;
  overflow: hidden;
}

#career .top-btm .js-slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* sec01-top
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#career .sec01-top {
  background-color: var(--blue);
  position: relative;
  padding: 20px 10px 0px
}

#career .sec01-top .sec01-teacher {
  width: 40%;
}

#career .scroll-img {
  width: 80px;
}

#career .sec01 .container,#career .sec02 .container {
  max-width: 75%;
}

/* sec01
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#career .sec01 {
  background-image: url(../img/sec05_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  min-height: auto;
  padding: 60px 0 140px;
}

#career .sec01 .arrow {
  margin-bottom: 40px;
}


/* sec02
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#career .sec02 {
  position: relative;
  background: linear-gradient(120deg, rgba(122,229,165,1) 0%, rgba(41,171,226,1)100%);
  padding: 60px 10px;
}

#career .sec02 .sec02-teacher {
  position: absolute;
  max-width: 350px;
  top: -9.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}


/* ポップアップ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#career .career-img {
  border-radius: 8px;
  margin-bottom: 20px;
}


.career-inline-modal .tit-wrap {
  background: url(../img/career-titbg.jpg) !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  min-height: auto;
}

.career-inline-modal .tit-wrap {
  position: fixed;
  z-index: 10;
  border-radius: 8px 8px 0 0;
  width: auto;
  min-width: 800px;
}

.career-inline-modal .container {
    padding-top: 45% !important;
}

.career-inline-modal ul {
  list-style: none;
  color: var(--darkblue);
   font-weight: 500;
   margin-bottom: 0px;
}

.career-inline-modal ul li {
  margin-bottom: 15px;
  line-height: 1.5;
  position: relative;
}

.career-inline-modal ul li:before {
  content: url(../img/list-img.png);
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.65);
  position: absolute;
  top: 2px;
  left: -25px;
}

.career-inline-modal ul li:last-child {
  margin-bottom: 0px;
}

.career-inline-modal ul li span {
    background:linear-gradient(transparent 60%, #FFDED9 0%);
}

.career-inline-modal .box {
  padding: 20px 40px;
  margin-top: 25px;
}

.career-inline-modal .box .row {
  padding: 0 40px;
}

.career-inline-modal .box img {
  width: auto;
}

.career-inline-modal .box .col-md-6 {
  padding: 15px 0;
}

.career-inline-modal .box .title-img {
  margin-bottom: 10px;
}

.career-inline-modal .career-speech-balloon {
  background-color: var(--yellow);
  border-radius: 6px;
  position: relative;
  padding: 20px 10px;
  z-index: 10;
}

.career-inline-modal .career-speech-balloon:after {
  border-left: var(--yellow)20px solid;
}

.career-inline-modal .career-speech-balloon p {
  text-align: left;
  font-weight: 900;
  font-size: var(--16px);
  color: var(--blue);
}

.career-inline-modal .senpai-img {
  border-radius: 8px;
  margin: 25px 0 0 -35px;
}

.career-inline-modal .box .company-name {
  font-size: var(--20px);
  font-weight: 900;
  margin: 15px 20px 10px;
  letter-spacing: 0.085rem;
  color: var(--blue);
}

.career-inline-modal .box .company-name span {
  border-radius: 3px;
  font-size: var(--12px);
  color: #fff;
  background-color: var(--blue);
  font-weight: 500;
  padding: 3px 6px;
  margin-right: 5px;
}

.career-inline-modal .box .department {
  margin: 0 20px 5px;
}

.career-inline-modal .box .department ,.career-inline-modal .box .name {
  font-size: var(--12px);
  line-height: 1.4;
}

.career-inline-modal .box .name {
  margin: 0 20px 15px;
}
 
.career-inline-modal .box .name span {
  font-weight: bold;
  font-size: 16px !important;
}

.career-inline-modal .item-img {
 width: 32%;
 margin-bottom: 25px;
}


/*ポップアップ 閉じるボタン追加*/
.inline-modal .btn-close {
  background-color: #fff;
  border: solid 2px #1F6398;
  padding: 10px;
  width: 50%;
  border-radius: 6px;
  text-align: center;
  margin: 50px auto 0;
  color: #1F6398;
  font-weight: bold;
}

.inline-modal .btn-close:hover {
  color: #1F6398;
  cursor : pointer;
}


/* レスポンシブ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 1024px) {
  #career .top {
    background-image: url(../img/career-topbg-sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    min-height: auto;
    min-height: 100vh;
    position: relative;
}
  #career .top .title-img {
    width: 70%;
    margin-top: 15%;
}
#career .top .character-img-sp {
  width: 65%;
  left: 20%;

}
}

@media (max-width: 992px) { 
  .career-inline-modal .tit-wrap {
  min-width: 92% !important;
  }
}

@media (max-width: 575px) {
  .top-career .top-slider .slick-slide {
    width: 290px;
  }

  .career-inline-modal .container {
    padding: 60% 15px 30px !important;
  }
  .career-inline-modal .item-img {
    width: 48%;
}
.career-inline-modal ul li {
  font-size: var(--14px);
}
.career-inline-modal ul li:before {
  top: -3px;
  left: -30px;
}
  #career .logo {
    width: 220px;
}
#career .top .title-img {
  width: 95%;
  margin-top: 25%;
}
#career .top .character-img-sp {
  width: 80%;
  left: 10%; 
}
#career .top-btm .character {
  width: 50px;
}
#career .top-btm ul {
  padding-left: 0;
}
#career .sec01-top .sec01-teacher {
    width: 80%;
}
#career .sec01 {
  padding: 100px 15px 120px 10px;
}
#career .sec01 .arrow {
  margin-bottom: 40px;
  top: 50px;
  bottom: auto;
}
#career .sec01 .col-6,#career .sec02 .col-6 {
  padding-left: 3px;
  padding-right: 3px;
}
#career .career-img {
  margin-bottom: 10px;
}
#career .sec02 .sec02-teacher {
  max-width: auto;
  width: 70%;
  top: -14%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#career .sec02 {
  padding: 60px 5px;
}
}





@media (max-width: 1024px) {
.top-career .tit-img {
  max-width: 100%;
}
#career .sec01 .container, #career .sec02 .container {
  max-width: 95%;
}
}

@media screen and (max-width: 992px)  {
  .top-career .top-slider .slick-arrow {
    width: 35px;
    top: 40%;
    position: absolute;
    z-index: 10;
    cursor: pointer;
  }
  .top-career .top-slider .prev-arrow {
    left: -20px;
  }
  .top-career .top-slider .next-arrow {
    right: -20px;
  }
  }

  
@media (max-width: 575px) {
.inline-modal .tit-wrap {
    min-width: auto;
    margin-right: 5%
  }
.top-career .btn  {
  width: 100%;
}
}

.sec01 {
  padding-bottom: 200px;
}
.inline-modal .tit-wrap {
position: fixed;
z-index: 10;
border-radius: 8px 8px 0 0;
}
