@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  word-break: normal;
  word-wrap: break-word;
}

html {
  font-size: 20px;
  line-height: 2;
}

@font-face {
  font-family: 'notosans';
  font-weight: normal;
  src: url(./../fonts/NotoSansCJKjp-Regular.otf);
}

@font-face {
  font-family: 'notosans';
  font-weight: bold;
  src: url(./../fonts/NotoSansCJKjp-Bold.otf);
}

body {
  font-family: "notosans", 'ヒラギノ角ゴ ProN W3',"Hiragino Kaku Gothic ProN",
 "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","Hiragino Kaku Gothic Pro",
 "メイリオ","Meiryo",Meiryo,YuGothic,"游ゴシック",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  /* font-family:   ヒラギノ明朝 Pro W3,Hiragino Mincho Pro,HiraMinProN-W3,游明朝,
	Yu Mincho,游明朝体,YuMincho,HGS明朝E,HG明朝E,ＭＳ Ｐ明朝,MS PMincho,
	"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","HiraMinProN-W3","游明朝",
	"Yu Mincho","游明朝体","YuMincho","HGS明朝E","HG明朝E",
	"Hiragino Mincho Pro W3", "Hiragino Mincho Pro",
	"ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
  background-color: #fff;
  color: #000;
}

img {
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 100%;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

table {
  background-color: transparent;
}

table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

ul li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0px;
}

.fixedcontainer {
  width: 1080px;
  margin: 0 auto;
  padding: 0px;
}

a:visited,
a:link,
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.red {
  color: #ed1c24;
}

.yellow {
  color: #e58e55;
}

.bkyellow {
  background-color: #fff100;
}

.bold {
  font-weight: bold;
}

.btline {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.visible-sp {
  display: none;
}

.hidden-sp {
  display: block;
}

.visible-xs {
  display: none;
}

.hidden-xs {
  display: block;
}

.visible-500 {
  display: none;
}

.hidden-500 {
  display: block;
}

.flex_part .flex_img_left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex_part .flex_img_left > img {
  object-fit: contain;
}

.flex_part .flex_body {
  flex: 1;
}

.flex_part .flex_img_right {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.flex_part .flex_img_right > img {
  object-fit: contain;
}

.hover_anim {
  position: relative;
  overflow: hidden;
}

.hover_anim::after {
  background: #fff;
  content: "";
  height: 400px;
  left: -300px;
  opacity: .2;
  position: absolute;
  top: -80px;
  transform: rotate(35deg);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 150px;
  z-index: 100;
}

.hover_anim:hover::after {
  left: 120%;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-top {
  opacity: 0.1;
  transform: translate(0, 80px);
  transition: all 300ms ease-out 0s;
}

.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.custom_checkbox {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.custom_checkbox input[type=checkbox] {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  appearance: none;
  left: 0;
  top: 0;
}

.custom_checkbox input[type=checkbox]:focus {
  outline: none;
}

.custom_checkbox input[type=checkbox]:checked {
  background: #036eb8;
  z-index: 0;
}

.custom_checkbox input[type=checkbox]:checked + span {
  color: white;
}

.custom_checkbox span {
  z-index: 100;
}

#header .g_nav {
  display: none;
}

/* loading
------------------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  background: #fff;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
}

#line {
  margin: 50vh auto 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  position: relative;
}

.fullwidth .expand {
  width: 100%;
  height: 1px;
  margin: 0;
  background: #333;
  left: 0;
  top: 0;
  position: absolute;
  -webkit-animation: fullexpand 1s ease-out;
  animation: fullexpand 1s ease-out;
}

@-webkit-keyframes fullexpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes fullexpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.font16 {
  font-size: 0.8rem;
}

.font17 {
  font-size: 0.85rem;
}

.font18 {
  font-size: 0.9rem;
}

.font19 {
  font-size: 0.95rem;
}

.font20 {
  font-size: 1rem;
}

.font21 {
  font-size: 1.05rem;
}

.font22 {
  font-size: 1.1rem;
}

.font23 {
  font-size: 1.15rem;
}

.font24 {
  font-size: 1.2rem;
}

.font25 {
  font-size: 1.25rem;
}

.font26 {
  font-size: 1.3rem;
}

.font27 {
  font-size: 1.35rem;
}

.font28 {
  font-size: 1.4rem;
}

.font29 {
  font-size: 1.45rem;
}

.font30 {
  font-size: 1.5rem;
}

.font31 {
  font-size: 1.55rem;
}

.font32 {
  font-size: 1.6rem;
}

.font33 {
  font-size: 1.65rem;
}

.font34 {
  font-size: 1.7rem;
}

.font35 {
  font-size: 1.75rem;
}

.font36 {
  font-size: 1.8rem;
}

.font37 {
  font-size: 1.85rem;
}

.font38 {
  font-size: 1.9rem;
}

.font39 {
  font-size: 1.95rem;
}

.font40 {
  font-size: 2rem;
}

#pc_menu1 {
  width: 100%;
  text-align: center;
  height: 120px;
  background: #fff;
}

#pc_menu1 .menu_area {
  width: 100%;
  max-width: 1600px;
  min-width: 1200px;
  padding: 0 0 0 35px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

#pc_menu1 .header_logo1 {
    display: inline-block;
    padding-top: 0;
    }
#pc_menu1 .header_logo1 img{
    max-width: 50%;
    }
#pc_menu1 .header_btnarea1 {
    padding-top: 0;
    display: flex;
    align-items: center;
    }
#pc_menu1 .header_btnarea1 a {
    font-size: 0.8rem;
    display: inline-block;
    margin: 0 16px;
    color: black;
    }

#pc_menu1 .header_tel {
  width: 501px;
}

#pc_menu1 .header_btn1 {
  display: inline-block;
  width: 134px;
}

#pc_menu2 {
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  padding: 35px 0;
  background: #f6f6f6;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

#pc_menu2 .top_menu_link {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-size: 16px;
  color: #814900;
  padding: 0 30px;
  border-right: 1px solid #ccc;
}

#pc_menu2 .top_menu_link span {
  font-size: 22px;
  font-weight: bold;
  color: #444;
}

#pc_menu2 .top_menu_link:last-child {
  border-right: 0px solid #ccc;
}

#pc_menu2 .top_menu_link:hover {
  opacity: 0.3;
}

#drag_menu {
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 101;
  width: 100%;
  text-align: center;
  height: 78px;
  background: #fff;
  border-bottom: 1px solid #e1e1e2;
}

#drag_menu .menu_area {
  width: 100%;
  max-width: 1600px;
  min-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

#drag_menu .header_logo1 {
  display: inline-block;
  width: 270px;
  padding-top: 15px;
  margin: 0 auto 0 0;
}

.drag_nav {
  float: right;
  width: 780px;
  padding: 20px 0 0;
}

.drag_nav ul {
  width: 100%;
  line-height: 1.2em;
  list-style: none;
}

.drag_nav ul > li {
  float: left;
  margin-left: 35px;
  text-align: center;
  position: relative;
}

.drag_nav .top_menu_link {
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: #814900;
  line-height: 1.4;
}

.drag_nav .top_menu_link span {
  font-size: 16px;
  font-weight: bold;
  color: #444;
}

.drag_nav .top_menu_link:hover {
  opacity: 0.3;
}

#drag_side {
  display: block;
  position: fixed;
  z-index: 101;
  right: -200px;
  top: 200px;
  width: 7%;
  max-width: 140px;
}

.top {
  width: 100%;
  position: relative;
  height: 740px;
}

.top .container {
  text-align: center;
}

.top .top_ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.top .top_txt1 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.top .top_txt1 img {
  width: 100%;
}

/*-------------header----------------------*/
/*-----------        -----------------*/
#top_article {
  background: url(./../img/fv_02.png) no-repeat;
  background-size: 100% auto;
  background-position: top left;
  position: relative;
}

#top_article > .bg {
  background: url(./../img/sec1_bg.jpg) repeat-y;
  background-position: top center;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

#sec_fv {
  height: 35vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#sec_fv h2 {
  font-size: 3rem;
  font-weight: bold;
  padding-left: 130px;
}

#sec_fv h2 span {
  display: inline-block;
  background: white;
  line-height: 1.5;
  margin-top: 10px;
  color: #00a0e9;
  font-weight: bold;
  padding: 5px 10px;
}

#sec1 {
  background-position: top center;
  text-align: center;
  position: relative;
  z-index: 0;
  padding-top: 145px;
}

#sec1 .sdgs{
  margin-bottom: 80px;
}

#sec1 a {
  display: inline-block;
}

#sec1 h2 {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  color: #00a0e9;
  padding-bottom: 50px;
}

#sec1 .sec_recruit {
    background: #fff;
    max-width: 770px;
    width: 90%;
    margin: 0 auto 80px;
    padding: 40px 0 60px;
}
.sec_recruit ul {
    display: flex;
    justify-content: center;
    max-width: 780px;
    margin: 0 auto;
}
.sec_recruit li {
    margin: 0 40px;
    max-width: 280px;
}
.sec_recruit li a {
    color: #000;
}
.sec_recruit li img {
    width: 100%;
}
.sec_recruit li p {
    text-align: center;
}

#sec2 {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 59px;
}

#sec2 > .bg {
  position: absolute;
  background: white;
  width: 1200px;
  height: calc(100% + 160px);
  margin-top: -160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

#sec2 .part1 {
  display: flex;
  justify-content: space-between;
  background: url(./../img/sec2_bg.jpg) repeat;
  padding: 50px 40px 10px;
  margin-top: 80px;
  align-items: flex-start;
  flex-direction: row-reverse;
}

#sec2 .part1 .block1 {
  max-width: 542px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sec2 .part1 .block1 .piece {
  margin-bottom: 40px;
  max-width: 256px;
  position: relative;
  z-index: 2;
  border: 1px solid #00a0e9;
}

#sec2 .part1 .block1 .piece::before {
  content: "";
  background: #00a0e9;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  z-index: -1;
}

#sec2 .part1 .block1 .piece h3 {
  background: white;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

#sec2 .part1 .block2 {
  flex: 1;
  padding-left: 50px;
}

#sec2 .part1 .block2 h2 {
  text-align: center;
  color: #00a0e9;
  font-weight: bold;
  font-size: 1.8rem;
  padding-bottom: 35px;
}

#sec2 .part1 .block2 p {
  font-size: 0.8rem;
}

#sec3 {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 59px;
}

#sec3 > .bg {
  position: absolute;
  background: white;
  width: 1200px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

#sec3 h2 {
  padding-top: 75px;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  color: #00a0e9;
}

#sec3 .part1 {
  background: url(./../img/sec3_bg.jpg) no-repeat;
  padding: 50px 40px 10px;
  background-position: top 50px left;
}

#sec3 .part1 table {
width: 500px;
margin-left: auto;
font-size: 16px;
}

#sec3 .part1 table tr th {
  text-align: left;
  font-weight: normal;
  line-height: 2;
}

#sec3 .part1 table tr td.subtext {
  padding-left: 20px;
}

#sec3 .part1 table tr td.last_field {
  padding: 30px 0;
}

#sec3 .part2 h3 {
  text-align: center;
}

#sec3 .part2 h3 span {
  display: inline-block;
  border: 1px solid #00a0e9;
  padding: 0 20px;
  font-size: 1.2rem;
  font-weight: bold;
}

#sec3 .part2 table {
  margin: auto;
  margin-top: 20px;
}

#sec3 .part2 table tr th {
  font-weight: normal;
  vertical-align: top;
  padding: 5px;
  line-height: 2;
}

#sec3 .part2 table tr td {
  line-height: 2;
  vertical-align: top;
  padding: 5px;
}

#sec4 .part1 {
  max-width: 540px;
  margin: auto;
  background: white;
  padding-bottom: 10px;
  margin-bottom: 60px;
}

#sec4 .part1 h2 {
  text-align: center;
  background: #00a0e9;
  color: white;
}

#sec4 .part1 .block {
  padding: 40px 70px 50px;
  text-align: center;
}

#sec4 .part1 .block p {
  text-align: left;
  line-height: 1.5;
}

#sec4 .part1 .block a {
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 40px;
}
#sec4 .sec_recruit li {
    margin: 0 30px;
}

#sec5 {
  background: url(./../img/sec5_bg.jpg) no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  padding-bottom: 80px;
}

#sec5 h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00a0e9;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 35px;
}

#sec5 .part1 {
  background: white;
  padding-top: 40px;
  padding-bottom: 20px;
}

#sec5 .part1 .block1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 70px;
  background: #00a0e9;
  max-width: 700px;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  margin: auto;
}

#sec5 .part1 .block1 span {
  line-height: 1;
}

#sec5 .part2 {
  background: white;
  padding-bottom: 50px;
}

#sec5 .part2 form {
  width: 700px;
  margin: auto;
}

#sec5 .part2 form dl {
  border-bottom: 1px dotted black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec5 .part2 form dl dt {
  padding: 10px 30px;
  width: 30%;
  font-size: 0.8rem;
}

#sec5 .part2 form dl dt .mark {
  color: #a40000;
}

#sec5 .part2 form dl dd {
  font-size: 0.8rem;
  padding: 10px 30px;
  width: 70%;
}

#sec5 .part2 form dl dd input[type=text], #sec5 .part2 form dl dd input[type=email], #sec5 .part2 form dl dd input[type=tel], #sec5 .part2 form dl dd textarea {
  width: 100%;
}

#sec5 .part2 form dl dd input[type=radio] {
  margin-left: 40px;
  margin-right: 25px;
}

#sec5 .part2 form .btn_group {
  width: 300px;
  margin: auto;
  padding: 13px 0;
}

#sec5 .part2 form .btn_group button {
  width: 100%;
  background: #00903b;
  text-align: center;
  height: 40px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  outline: none;
}

#recruit_article {
  background: url(../img/recruit_fv.png) no-repeat;
  background-size: 100% auto;
  background-position: top left;
  position: relative;
}

#recruit_sec_fv {
  xheight: 670px;
  height: 32vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#recruit_sec_fv h2 {
  font-size: 3rem;
  font-weight: bold;
  padding-left: 130px;
}

#recruit_sec_fv h2 span {
  display: inline-block;
  line-height: 1.5;
  margin-top: 10px;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
}

#recruit_sec1 {
  position: relative;
  padding-top: 145px;
  padding-bottom: 135px;
}

#recruit_sec1 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(./../img/recruit_sec1_1.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

#recruit_sec1 h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: black;
}

#recruit_sec1 .part1 {
  padding: 60px 80px 350px;
  background: white url(./../img/recruit_sec2_bg.png) no-repeat;
  background-position: bottom center;
}

#recruit_sec1 .part1 h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

#recruit_sec1 .part1 .part_body p {
  font-size: 1rem;
  padding-bottom: 25px;
}

#recruit_sec1 .part1 .part_body p span {
  font-size: 1.2rem;
  font-weight: bold;
}

#recruit_sec2 .part1 {
  padding-top: 60px;
  padding-bottom: 80px;
}

#recruit_sec2 .part1 .flex_body {
  background: #3e3a39;
  margin-left: -60px;
  margin-top: 35px;
  margin-bottom: -35px;
  position: relative;
  z-index: -1;
  padding-left: 90px;
  padding-top: 45px;
}

#recruit_sec2 .part1 .flex_body h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  line-height: 1.5;
  padding-bottom: 25px;
}

#recruit_sec2 .part1 .flex_body h3 {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}

#recruit_sec2 .part1 .flex_body h3 .bigger {
  font-size: 1.6rem;
  font-weight: bold;
}

#recruit_sec3 .part1 dl {
  padding-bottom: 40px;
  clear: both;
}

#recruit_sec3 .part1 dl dt {
  background: url(./../img/mark1.png) no-repeat;
  background-position: top 15px left;
  padding-left: 30px;
  color: #00a0e9;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

#recruit_sec3 .part1 dl dd {
  background: url(./../img/mark2.png) no-repeat;
  background-position: top 12px left;
  padding-left: 30px;
  font-size: 1rem;
  color: black;
  letter-spacing: 2px;
}

#recruit_sec3 .part1 dl dd img {
  float: right;
  margin-left: 70px;
}

#recruit_sec3 .part1 > div {
  padding-bottom: 70px;
  padding-left: 30px;
}

#recruit_sec3 .part2 {
  padding-top: 80px;
  padding-bottom: 100px;
}

#recruit_sec3 .part2 table {
  max-width: 920px;
  margin: auto;
  width: 100%;
  font-size: 16px;
}

#recruit_sec3 .part2 table tr th {
  color: white;
  background: #00a0e9;
  border: 1px solid white;
  width: 26%;
}

#recruit_sec3 .part2 table tr td {
  background: #dcdddd;
  padding: 13px 40px;
  border: 1px solid white;
}

#recruit_sec3 .part2 table tr:nth-child(even) td {
  background: #efefef;
}

footer {
  background: #efefef;
}
footer img{
    max-width: 50%;
}
footer .part1 {
  display: flex;
  padding: 40px 0;
}

footer .part1 .block1 {
  padding: 0 20px;
}

footer .part1 .block1 p {
  font-size: 0.75rem;
}

footer .part1 .block1 .btn_group {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

footer .part1 .block1 .btn_group a {
  display: inline-block;
  margin: 0 5px;
  font-size: 0.75rem;
  color: black;
}

/* CSS Document */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 3.8vw;
  }
  .pc {
    display: none !important;
  }
  .fixedcontainer {
    width: 100%;
  }
  .body {
    font-size: 3.8vw;
  }
  .flex_part .flex_img_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .flex_part .flex_img_right {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  #header .g_nav {
    position: absolute;
    width: 100%;
    top: 66px;
    z-index: 100;
    display: none;
  }
  #header .header_top {
    position: relative;
    top: 0;
    width: 100%;
    text-align: right;
    background: white;
    height: 66px;
  }
  #header .header_top h1 {
    position: absolute;
    top: 0;
    left: 10px;
    width: 200px;
    height: 66px;
    overflow: hidden;
  }
  #header .menu-trigger {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    margin-top: 3px;
    width: 60px;
    height: 60px;
    z-index: 2;
  }
  #header .menu-trigger:hover {
    opacity: 1;
  }
  #header .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
    float: right;
    position: absolute;
    width: 24px;
    height: 3px;
    left: 0;
    background: #4d9736;
    right: 0;
    margin: auto;
  }
  #header .menu-trigger span:nth-of-type(1) {
    top: 20px;
  }
  #header .menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  #header .menu-trigger span:nth-of-type(3) {
    bottom: 20px;
  }
  #header .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(8.5px) rotate(-45deg);
  }
  #header .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8.5px) rotate(45deg);
  }
  #header .g_nav ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    letter-spacing: 0.1em;
    background: #00a0e9;
    height: 100vh;
    padding-bottom: 5vw;
    border-top: 1px solid #fff;
  }
  #header .g_nav ul li {
    float: none;
    width: 100%;
    font-size: 16px;
    margin: 0;
    border-bottom: 1px solid #fff;
    text-align: center;
  }
  #header .g_nav ul li a {
    display: block;
    padding: 1.2em 0;
    color: #fff;
    text-decoration: none;
  }
  #header .g_nav ul li a:hover {
    opacity: 0.9;
    color: #66aff1;
    background: #fff;
  }
  #header #top_sp {
    margin-top: 66px;
  }
  .sp_drag {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
  }
  .sp_drag_part {
    text-align: center;
    padding: 2vw 5px 1.5vw;
  }
  ul.sp_drag_btns {
    list-style: none;
    width: 100%;
  }
  ul.sp_drag_btns li {
    float: left;
    width: 50%;
  }
  ul.sp_drag_btns li a {
    display: block;
    width: 96%;
    display: block;
    margin: 0 auto;
  }
  ul.sp_drag_btns li a img {
    width: 100%;
    vertical-align: middle;
  }
  .top {
    margin-top: 66px;
    height: 133vw;
  }
  .top .container {
    width: 100%;
  }
  #pc_menu2 {
    width: 100%;
    min-width: 1200px;
    margin: 0 auto;
    padding: 35px 0;
    background: #f6f6f6;
    text-align: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
  }
  #pc_menu2 .top_menu_link {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-size: 16px;
    color: #814900;
    padding: 0 30px;
    border-right: 1px solid #ccc;
  }
  #pc_menu2 .top_menu_link span {
    font-size: 22px;
    font-weight: bold;
    color: #444;
  }
  #pc_menu2 .top_menu_link:hover {
    opacity: 0.3;
  }
  #pc_menu2 .top_menu_link:last-child {
    border-right: 0px solid #ccc;
  }
  #top_article {
    background: url(./../img/fv_sp.jpg) no-repeat;
    background-size: auto 94vw;
    background-position: top center;
    position: relative;
  }
  #top_article > .bg {
    background: url(./../img/sec1_bg.jpg) repeat-y;
    background-position: top center;
    background-size: 100% auto;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
  }
  #sec_fv {
    height: 94vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #sec_fv h2 {
    font-size: 2.5rem;
    font-weight: bold;
    padding-left: 0;
    text-align: center;
  }
  #sec_fv h2 span {
    display: inline-block;
    background: white;
    line-height: 1.5;
    margin-top: 0;
    color: #00a0e9;
    font-weight: bold;
    padding: 0 5px;
  }
  #sec1 {
    background-position: top center;
    text-align: center;
    position: relative;
    z-index: 0;
    padding-top: 10vw;
  }
  #sec1 .sdgs{
    margin-bottom: 35px;
  }
  #sec1 a {
    width: 90vw;
    margin: auto;
    display: inline-block;
  }

  #sec1 .sec_recruit {
      margin-bottom: 40px;
      padding: 20px 0 40px;
  }
  #sec1 h2 {
    padding-bottom: 30px;
  }

  .sec_recruit li {
      margin: 0 20px;
  }
  #sec1 .sec_recruit li a {
      width: 100%;
  }

  #sec2 {
    position: relative;
    padding-bottom: 8vw;
    margin-bottom: 6vw;
  }
  #sec2 > .bg {
    display: none;
    position: initial;
    background: none;
    width: 90vw;
    height: calc(100% + 10vw);
    margin-top: -10vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  #sec2 .part1 {
    display: flex;
    justify-content: center;
    width: 90vw;
    margin: auto;
    background: url(./../img/sec2_bg.jpg) repeat;
    padding: 5vw 4vw 2vw;
    margin-top: 8vw;
    align-items: flex-start;
    flex-direction: column;
  }
  #sec2 .part1 .block1 {
    max-width: 90vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    flex-direction: column;
    margin-top: 5vw;
    width: 100%;
  }
  #sec2 .part1 .block1 .piece {
    margin-bottom: 5vw;
    width: 100%;
    max-width: 90vw;
    position: relative;
    z-index: 2;
    border: 1px solid #00a0e9;
  }
  #sec2 .part1 .block1 .piece::before {
    content: "";
    background: #00a0e9;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 5px;
    top: 5px;
    z-index: -1;
  }
  #sec2 .part1 .block1 .piece h3 {
    background: white;
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  #sec2 .part1 .block1 .piece img {
    width: 100%;
  }
  #sec2 .part1 .block2 {
    flex: 1;
    padding-left: 0;
  }
  #sec2 .part1 .block2 h2 {
    text-align: center;
    color: #00a0e9;
    font-weight: bold;
    font-size: 1.8rem;
    padding-bottom: 5vw;
  }
  #sec2 .part1 .block2 p {
    font-size: 1rem;
  }
  #sec3 {
    position: relative;
    padding-bottom: 10vw;
    margin-bottom: 6vw;
  }
  #sec3 > .bg {
    position: absolute;
    background: white;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  #sec3 h2 {
    padding-top: 8vw;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    color: #00a0e9;
  }
  #sec3 .part1 {
    background: none;
    width: 90vw;
    padding: 5vw 4vw 0;
    background-position: top 6vw left;
  }
  #sec3 .part1 table {
    width: 100%;
    margin-left: auto;
  }
  #sec3 .part1 table tr th {
    text-align: left;
    font-weight: normal;
    line-height: 2;
  }
  #sec3 .part1 table tr td.subtext {
    padding-left: 20px;
  }
  #sec3 .part1 table tr td.last_field {
    padding: 5vw 0;
  }
  #sec3 .part2 {
    width: 90vw;
    margin: auto;
  }
  #sec3 .part2 h3 {
    text-align: center;
  }
  #sec3 .part2 h3 span {
    display: inline-block;
    border: 1px solid #00a0e9;
    padding: 0 3vw;
    font-size: 1.2rem;
    font-weight: bold;
  }
  #sec3 .part2 table {
    margin: auto;
    margin-top: 3vw;
  }
  #sec3 .part2 table tr th {
    font-weight: normal;
    vertical-align: top;
    padding: 1vw;
    line-height: 2;
  }
  #sec3 .part2 table tr td {
    line-height: 2;
    vertical-align: top;
    padding: 1vw;
  }
  #sec4 .part1 {
    max-width: 90vw;
    margin: auto;
    background: white;
    padding-bottom: 2vw;
    margin-bottom: 8vw;
  }
  #sec4 .part1 h2 {
    text-align: center;
    background: #00a0e9;
    color: white;
  }
  #sec4 .part1 .block {
    padding: 4vw 8vw;
    text-align: center;
  }
  #sec4 .part1 .block p {
    text-align: left;
    line-height: 1.5;
  }
  #sec4 .part1 .block a {
    display: inline-block;
    margin-top: 5vw;
    margin-bottom: 6vw;
  }

  #sec4 .sec_recruit {
      padding-top: 10px;
  }
  #sec4 .sec_recruit li {
      margin: 0 15px;
  }
  #sec5 {
    background: url(./../img/sec5_bg.jpg) no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
  #sec5 h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00a0e9;
    text-align: center;
    padding-top: 10vw;
    padding-bottom: 5vw;
  }
  #sec5 .part1 {
    background: white;
    padding-top: 6vw;
    padding-bottom: 6vw;
    width: 90vw;
    margin: auto;
  }
  #sec5 .part1 .block1 {
    max-width: 90vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 12vw;
    background: #00a0e9;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    margin: auto;
  }
  #sec5 .part1 .block1 span {
    line-height: 1;
    padding: 1vw 2vw;
  }
  #sec5 .part1 .block1 span:last-child {
    width: 60%;
  }
  #sec5 .part2 {
    background: white;
    padding-bottom: 50px;
    width: 90vw;
    margin: auto;
  }
  #sec5 .part2 form {
    width: 90%;
    margin: auto;
  }
  #sec5 .part2 form dl {
    border-bottom: 1px dotted black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  #sec5 .part2 form dl dt {
    padding: 2vw 4vw 0;
    width: 100%;
    font-size: 1rem;
  }
  #sec5 .part2 form dl dt .mark {
    color: #a40000;
  }
  #sec5 .part2 form dl dd {
    font-size: 1rem;
    padding: 2vw 4vw;
    width: 100%;
  }
  #sec5 .part2 form dl dd input[type=text], #sec5 .part2 form dl dd input[type=email], #sec5 .part2 form dl dd input[type=tel], #sec5 .part2 form dl dd textarea {
    width: 100%;
  }
  #sec5 .part2 form dl dd input[type=radio] {
    margin-left: 6vw;
    margin-right: 4vw;
  }
  #sec5 .part2 form .btn_group {
    width: 100%;
    margin: auto;
    padding: 2vw 0;
  }
  #sec5 .part2 form .btn_group button {
    width: 100%;
    background: #00903b;
    text-align: center;
    height: 10vw;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    outline: none;
  }
  #recruit_article {
    background: url(./../img/recruit_fv_sp.jpg) no-repeat;
    background-size: 100% auto;
    background-position: top left;
    position: relative;
  }
  #recruit_sec_fv {
    height: 89vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #recruit_sec_fv h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    padding-left: 0;
  }
  #recruit_sec_fv h2 span {
    display: inline-block;
    line-height: 1.5;
    margin-top: 2vw;
    color: white;
    font-weight: bold;
    padding: 1vw 2vw;
  }
  #recruit_sec1 {
    position: relative;
    padding-top: 20vw;
    padding-bottom: 15vw;
  }
  #recruit_sec1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(./../img/recruit_sec1_1.png) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  #recruit_sec1 h2 {
    font-size: 1.6rem;
    font-weight: bold;
    color: black;
  }
  #recruit_sec1 .part1 {
    width: 90vw;
    padding: 6vw 4vw 46vw;
    background: white url(./../img/recruit_sec2_bg.png) no-repeat;
    background-position: bottom center;
    background-size: contain;
  }
  #recruit_sec1 .part1 h2 {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.6em;
    margin: 0 auto 1em;
  }
  #recruit_sec1 .part1 .part_body p {
    font-size: 1rem;
    padding-bottom: 4vw;
  }
  #recruit_sec1 .part1 .part_body p span {
    font-size: 1.2rem;
    font-weight: bold;
  }
  #recruit_sec2 .part1 {
    width: 90vw;
    margin: auto;
    padding-top: 8vw;
    padding-bottom: 6vw;
  }
  #recruit_sec2 .part1 .flex_body {
    background: #3e3a39;
    margin-left: 0;
    margin-top: 0vw;
    margin-bottom: 5vw;
    padding-bottom: 5vw;
    position: relative;
    z-index: -1;
    padding-left: 5vw;
    padding-top: 5vw;
  }
  #recruit_sec2 .part1 .flex_body h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    line-height: 1.5;
    padding-bottom: 4vw;
  }
  #recruit_sec2 .part1 .flex_body h3 {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
  }
  #recruit_sec2 .part1 .flex_body h3 .bigger {
    font-size: 1.6rem;
    font-weight: bold;
  }
  #recruit_sec3 .part1 {
    width: 90vw;
    margin: auto;
  }
  #recruit_sec3 .part1 dl {
    padding-bottom: 40px;
    clear: both;
  }
  #recruit_sec3 .part1 dl dt {
    background: url(./../img/mark1.png) no-repeat;
    background-position: top 2vw left;
    background-size: 5vw;
    padding-left: 7vw;
    color: #00a0e9;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  #recruit_sec3 .part1 dl dd {
    background: url(./../img/mark2.png) no-repeat;
    background-position: top 2vw left;
    background-size: 5vw;
    padding-left: 7vw;
    font-size: 1rem;
    color: black;
    letter-spacing: 2px;
  }
  #recruit_sec3 .part1 dl dd img {
    float: right;
    margin-left: 8vw;
    display: none;
  }
  #recruit_sec3 .part1 > div {
    padding-bottom: 8vw;
    padding-left: 5vw;
  }
  #recruit_sec3 .part2 {
    padding-top: 10vw;
    padding-bottom: 8vw;
    width: 90vw;
  }
  #recruit_sec3 .part2 table {
    max-width: 90vw;
    margin: auto;
    width: 100%;
  }
  #recruit_sec3 .part2 table tr th {
    color: white;
    background: #00a0e9;
    border: 1px solid white;
    width: 40%;
    padding: 2vw 1vw;
  }
  #recruit_sec3 .part2 table tr td {
    background: #dcdddd;
    padding: 2vw 5vw;
    border: 1px solid white;
    width: 60%;
    word-break: break-word;
  }
  #recruit_sec3 .part2 table tr:nth-child(even) td {
    background: #efefef;
  }
  footer {
    background: #efefef;
  }
  footer .part1 {
    display: flex;
    flex-direction: column;
    width: 90vw;
    padding: 6vw 0;
  }
  footer .part1 .block1 {
    padding: 0 3vw;
  }
  footer .part1 .block1 p {
    font-size: 1rem;
  }
  footer .part1 .block1 .btn_group {
    text-align: center;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
  footer .part1 .block1 .btn_group a {
    display: inline-block;
    margin: 0 4vw;
    font-size: 1rem;
    color: black;
  }
  footer .part1 .block2 {
    margin-top: 2vw;
  }
}

@media screen and (max-width: 500px) {
  .visible-500 {
    display: block;
  }
  .hidden-500 {
    display: none;
  }
}

/* ---------------------------------------
recruitment
--------------------------------------- */
.recruit-item {
}

.recruit-item h2{
    color: #fff;
    background: #00a0e9;
    text-align: center;
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 10px;
    text-indent: 10px;
    line-height: 2em;
    margin: 0 auto 30px;
    }
.recruit-item h3{
    text-align: center;
    font-size: 40px;
    line-height: 2em;
    margin: 30px auto 16px;
    }


@media screen and (max-width: 767px) {
.recruit-item h2{
    font-size: 20px;
    line-height: 3em;
    }
.recruit-item h3{
    font-size: 24px;
    }


#sec3 .part1 table tr th,
#sec3 .part1 table tr td,
#sec3 .part2 table tr th,
#sec3 .part2 table tr td {
    display: block;
    width: 100%;
    text-align: left;
    }
#sec3 .part1 table tr th,
#sec3 .part2 table tr th {
    border-bottom: 1px solid #efefef;
    margin: 0 auto;
    }
#sec3 .part1 table tr td,
#sec3 .part2 table tr td {
    margin: 0 auto 1em;
    }

#recruit_sec3 .part2 table tr th,
#recruit_sec3 .part2 table tr td{
    width: 100%;
    display: block;
    }

footer h2 {
    text-align: center;
    }
footer iframe {
    width: 90% !important;
    margin: 10px auto;
    display: block;
    }
}
