@charset "UTF-8";

html {
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  background-color: #ffffff;
}
.centering {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 100%;
  max-width: 1350px;
}

/* フォントファミリー */
.font_n {
  font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
.font_w {
  font-family: 'Work Sans','Arial',sans-serif;
}
.font_t {
  font-family: 'FOT-筑紫ゴシック Pro B','TsukuGoPro-B','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ',sans-serif;
}
.font_o {
  font-family: 'Oswald','Arial',sans-serif;
}

/* メニュー */
.box1 {
  width: 100%;
  position: relative;
}
.box1 #menuButton {
  display: block;
  width: 80px;
  height:80px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 21;
  border: none;
  background-color: #000000;
  cursor: pointer;
}
.box1 #menuButton span {
  display: block;
  background: #ffffff;
  width: 30px;
  height: 3px;
  position: absolute;
  left: 25px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}
.box1 #menuButton span:first-child {
  top: 31px;
}
.box1 #menuButton span:nth-child(2) {
  margin-top: -1px;
  top: 50%;
}
.box1 #menuButton span:last-child {
  bottom: 30px;
}
.box1 #menuButton.active span:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.box1 #menuButton.active span:nth-child(2) {
  opacity: 0;
}
.box1 #menuButton.active span:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}
.box1 #menuButton:focus {
  outline: none;
}
.box1 #Menu {
  display: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 60px 15px 15px;
  background: #E6F200;
  line-height: 42px;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 20;
}
.box1 .menu ul {
  padding: 80px 0px;
}
.box1 .menu ul .menu_title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 20px 0px;
}
.box1 .menu ul .menu_title .init-bottom {
  text-decoration: none;
  color: #000000;
}
.box1 .menu ul .menu_title .init-bottom:hover {
  color: #ffffff;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
}
.box1 .menu ul .menu_title .menu_second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 20;
  position: absolute;
  top: 0px;
  padding: 30px 0px;
  width: 100%;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.box1 .menu ul .menu_title:hover .menu_second-level {
  top: 12px;
  visibility: visible;
  opacity: 1;
}
.box1 .menu ul .menu_title .menu_second-level li {
  border: 1px solid #000000;
  background-color: #000000;
}
.box1 .menu ul .menu_title .menu_second-level li a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 0px 10px 10px;
}
.box1 .menu ul .menu_title .menu_second-level li a:hover {
  background-color: #000000;
  opacity: 0.7;
}
.box1 .menu > li:hover {
  -webkit-transition: all .5s;
  transition: all .5s;
}
.box1 .menu ul .menu_title {
  position: relative;
}
.box1 .menu_vertical {
  position: fixed;
  z-index: 21;
  top: 80px;
  left: 0px;
  width: 80px;
  height: 100vh;
  text-align: center;
  background-color: #ffffff;
}
.box1 .menu_vertical .logo img {
  width: 50%;
  border: none;
  margin: 4vh 0px;
}
.box1 .menu_vertical ul li {
  writing-mode: vertical-rl;
  list-style: none;
  margin: 0 auto;
  margin-bottom: 3vh;
  font-size: 13px;
  font-weight: 500;
}
.box1 .menu_vertical ul li a {
  text-decoration: none;
  color: #000000;
}
.box1 .menu_vertical ul li a:hover {
  opacity: 0.5;
}
.box1 .menu_vertical ul .menu_sns {
  margin-top: 6vh;
}
.box1 .menu_vertical ul li a img {
  border: none;
  width: 20px;
}

/* アニメーション定義 */
@keyframes RightToLeft {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes LeftToRight {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes DownToUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated_LtoR1 {
  visibility: visible;
  -webkit-animation-name: LeftToRight;
  animation-name: LeftToRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated_LtoR2 {
  visibility: visible;
  -webkit-animation-name: LeftToRight;
  animation-name: LeftToRight;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated_LtoR3 {
  visibility: visible;
  -webkit-animation-name: LeftToRight;
  animation-name: LeftToRight;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated_DtoU1 {
  visibility: visible;
  -webkit-animation-name: DownToUp;
  animation-name: DownToUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated_DtoU2 {
  visibility: visible;
  -webkit-animation-name: DownToUp;
  animation-name: DownToUp;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated_DtoU3 {
  visibility: visible;
  -webkit-animation-name: DownToUp;
  animation-name: DownToUp;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* メインビジュアル */
.box2 {
  padding: 0px 0px 115px 0px;
  background-image: url("../../images/mainimg_pc_recruit.png");
  background-size: 100%;
  background-repeat: no-repeat;
}
.recruit_intro {
  visibility: hidden;
}
.recruit_intro p {
  text-align: right;
}
.recruit_title h1 {
  text-align: right;
  padding: 0px 0px 10px 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 114px;
  font-weight: 900;
  letter-spacing: 7px;
  color: #000000;
}
.recruit_title .decoration_txt_0 img {
  width: 90%;
}
.recruit_title .decoration_txt_1 {
  position: absolute;
  writing-mode: vertical-rl;
  top: 180px;
  left: 25%;
  font-size: 30px;
  font-weight: 900;
  color: #000000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.recruit_title .decoration_txt_2 {
  position: absolute;
  writing-mode: vertical-rl;
  top: 170px;
  right: -70px;
  font-size: 30px;
  font-weight: 900;
  color: #000000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.recruit_title .decoration_txt_3 {
  position: relative;
  top: 10px;
  left: -250px;
  font-size: 30px;
  font-weight: 900;
  color: #000000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.recruit_title .decoration_txt_4 {
  position: relative;
  top: 20px;
  left: -80px;
  font-size: 30px;
  font-weight: 900;
  color: #000000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* コンテンツ */
.box3 {
  padding: 100px 80px 60px 60px;
  background-image: url("../../images/backimg0_pc_recruit.png");
  background-size: 100%;
  background-repeat: no-repeat;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.content {
  visibility: hidden;
}
.content h2 {
  margin-bottom: 50px;
  font-size: 64px;
  font-weight: 900;
  text-align: left;
}
.content .co_01_24 {
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

/* 募集要項 */
.box4 {
  margin: 20px 0px 0px 0px;
  background-image: url("../../images/backimg2_pc_recruit.png");
  background-size: 100%;
  background-repeat: repeat-y;
}
.content_2 {
  padding: 20px 60px 20px 60px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #000000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.content_2 h2 {
  font-size: 30px;
  font-weight: 900;
  padding-bottom: 15px;
}
.content_2 .co2_txt {
  background-image: url("../../images/listimg1.png");
  background-repeat: repeat-y;
  padding: 0px 30px 0px 30px;
  margin-bottom: 60px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.co2_txt ul {
  padding-left: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 詳しい情報はこちら */
.box5 {
  margin-top: 30px;
}
.box5 p {
  text-align: center;
  font-size: 50px;
  font-weight: 900;
}
.box5 p a {
  text-decoration: none;
  color: #000000;
}

/* メンバー紹介 */
.box6 {
  margin: 180px 0px 0px 0px;
  background-image: url("../../images/backimg3_pc_recruit.png");
  background-repeat: repeat-y;
  background-size: 100%;
}
.members {
  padding: 60px 80px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.members h2 {
  font-size: 50px;
  font-weight: 900;
  padding: 60px 0px 30px 0px;
}
.members .member_txt p {
  font-size: 24px;
  font-weight: 700;
  margin: 5px 0px;
}
.member_left, .member_right {
  float: left;
  width: 50%;
  text-align: center;
}
.member_left .member_txt, .member_right .member_txt {
  display: inline-block;
  text-align: left;
  padding-bottom: 20px;
}
.member_box2:after {
  display: block;
  content: "";
  clear: both;
}
.member_box2 .member_left {
  float: left;
  width: 33.33%;
  text-align: center;
}
.member_box2 .member_center {
  float: left;
  width: 33.33%;
  text-align: center;
}
.member_box2 .member_right {
  float: left;
  width: 33.33%;
  text-align: center;
}
.member_box3:after {
  display: block;
  content: "";
  clear: both;
}
.member_box3 .member_left {
  float: left;
  width: 50%;
  text-align: right;
}
.member_box3 .member_right {
  float: left;
  width: 50%;
  text-align: left;
}

/* 応募はこちらから */
.box7 {
  padding: 60px 0px 120px 0px;
}
.box7 p {
  text-align: center;
  font-size: 98px;
  font-weight: 900;
  letter-spacing: 4px;
}
.box7 p a {
  text-decoration: none;
  color: #000000;
}

/*トップリターンボタン*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#pageTop i {
  padding-top: 6px
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px;
  border-radius: 30px;
  width: 35px;
  height: 35px;
  background-color: #000000;
  opacity: 0.8;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*########1100px以下#######*/
@media (max-width: 1100px) {

  /* メニュー */
  .box1 #menuButton {
    width: 60px;
    height:60px;
  }
  .box1 #menuButton span {
    display: block;
    background: #ffffff;
    width: 20px;
    height: 3px;
    left: 19px;
  }
  .box1 #menuButton span:first-child {
    top: 22px;
  }
  .box1 #menuButton span:last-child {
    bottom: 22px;
  }
  .box1 #menuButton.active span:first-child {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    -moz-transform: translateY(6.5px) rotate(45deg);
    -ms-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
  }
  .box1 #menuButton.active span:last-child {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
    -moz-transform: translateY(-6.5px) rotate(-45deg);
    -ms-transform: translateY(-6.5px) rotate(-45deg);
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .box1 #Menu {
    padding: 30px 5px 5px;
    line-height: 42px;
    position: fixed;
    top: 0;
  }
  .box1 .menu ul {
    padding: 40px 0px;
  }
  .box1 .menu ul .menu_title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 20px 0px;
  }
  .box1 .menu ul .menu_title .menu_second-level {
    top: 0px;
    padding: 15px 0px;
  }
  .box1 .menu ul .menu_title:hover .menu_second-level {
    top: 12px;
  }
  .box1 .menu ul .menu_title .menu_second-level li a {
    font-size: 11px;
    line-height: 20px;
    padding: 10px 0px 10px 10px;
  }
  .box1 .menu_vertical {
    visibility: hidden;
    position: fixed;
    z-index: 21;
    top: 60px;
    left: 0px;
    width: 80px;
    text-align: center;
    background-color: #E6F200;
  }
  .box1 .menu_vertical_sp {
    visibility: visible;
  }
  .box1 .menu_vertical ul .menu_sns {
    margin-top: 20px;
  }
}

/*########889px以下#######*/
@media (max-width: 899px) {

  /* メインビジュアル */
  .box2 {
    padding: 0px 0px 5px 0px;
    background-image: url("../../images/mainimg_sp_recruit.jpg");
    background-size: auto;
    background-repeat: no-repeat;
  }
  .recruit_intro {
    padding: 30px 0px 0px 30px;
    visibility: hidden;
  }
  .recruit_intro p {
    text-align: left;
  }
  .recruit_title {
    padding: 180px 0px 90px 0px;
  }
  .recruit_title h1 {
    text-align: left;
    padding: 0px 0px 10px 0px;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 7px;
    color: #000000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .recruit_title .decoration_txt_0 {
    position: absolute;
    top: 250px;
  }
  .recruit_title .decoration_txt_0 img {
    width: 100%;
    margin-left: -20px;
  }
  .recruit_title .decoration_txt_5 {
    position: absolute;
    top: 100px;
  }
  .recruit_title .decoration_txt_5 img {
    width: 65%;
  }
  .recruit_title .decoration_txt_1 {
    position: absolute;
    writing-mode: lr-tb;
    top: 50px;
    left: 0%;
    font-size: 20px;
    font-weight: 900;
    color: #000000;
  }
  .recruit_title .decoration_txt_2 {
    position: absolute;
    writing-mode: lr-tb;
    top: 0px;
    right: 0px;
    left: 0px;
    font-size: 20px;
    font-weight: 900;
    color: #000000;
  }
  .recruit_title .decoration_txt_3 {
    position: absolute;
    top: 25px;
    left: 0px;
    font-size: 20px;
    font-weight: 900;
    color: #000000;
  }
  .recruit_title .decoration_txt_4 {
    position: absolute;
    top: 75px;
    left: 0px;
    font-size: 20px;
    font-weight: 900;
    color: #000000;
  }

  /* メインビジュアル_コンテンツ */
  .content_only_sp {
    visibility: hidden;
    padding: 0px 30px 0px 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .content_only_sp h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 900;
    text-align: left;
  }
  .content_only_sp .co_01_24 {
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: 500;
    line-height: 22px;
  }
  .content_only_pc {
    display: none;
  }

  /* 募集要項 */
  .box4 {
    margin: 0px 0px 0px 0px;
  }
  .content_2 {
    padding: 30px;
    font-size: 13px;
    line-height: 22px;
  }
  .content_2 h2 {
    font-size: 22px;
    padding-bottom: 15px;
  }
  .content_2 .co2_txt {
    padding: 0px 20px;
    margin-bottom: 50px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .co2_txt ul {
    padding-left: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* 応募はこちらから */
  .box7 {
    margin: 60px 0px 100px 0px;
  }
  .box7 p {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
  }

}

/*########767px以下#######*/
@media (max-width: 767px) {
  /* 詳しい情報はこちら */
  .box_only_sp:after {
    display: block;
    content: "";
    clear: both;
  }
  .co2_right {
    float: left;
    width: 90%;
  }
  .content2_only_sp {
    float: left;
    width: 10%;
  }
  .content2_only_sp p a {
    text-decoration: none;
    color: #000000;
  }
  .content2_only_sp p {
    writing-mode: tb-rl;
    font-size: 58px;
    font-weight: 900;
    margin-top: -100px;
  }
  .box5 {
    display: none;
  }

  /* メンバー紹介 */
  .box6 {
    margin: 0px;
  }
  .members {
    padding: 30px 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .members h2 {
    font-size: 20px;
  }
  .member_box h2 {
    float: left;
    width: 50%;
    line-height: 34px;
    padding: 30px 15px 0px 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .member_box h2 span {
    display: inline-block;
    background-color: rgba(255,255,255,0.5);
    padding: 5px;
  }
  .member_box .member_left img, .member_box .member_right img {
    width: 150px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .member_box .member_left .member_txt p, .member_box .member_right .member_txt p {
    font-size: 14px;
  }
  .member_box2 img {
    width: 99%;
  }
  .member_box3 .member_left .member_txt {
    padding-right: 1%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: right;
  }
  .member_box3 .member_right .member_txt {
    padding-right: 1%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
  }
  .member_box3 img {
    width: 65%;
  }

}

/*########768px以上889px以下#######*/
@media (min-width: 768px) and (max-width: 899px) {

  /* メインビジュアル */
  .box2 {
    padding: 0px 0px 115px 0px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .recruit_intro {
    padding: 80px 0px 0px 80px;
    visibility: hidden;
  }
  .recruit_intro p {
    text-align: left;
  }
  .recruit_title {
    padding: 350px 0px 200px 0px;
  }
  .recruit_title h1 {
    text-align: left;
    padding: 0px 0px 10px 0px;
    font-size: 114px;
    font-weight: 900;
    letter-spacing: 7px;
    color: #000000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .recruit_title .decoration_txt_0 {
    position: absolute;
    top: 480px;
  }
  .recruit_title .decoration_txt_0 img {
    width: 90%;
  }
  .recruit_title .decoration_txt_5 {
    position: absolute;
    top: 190px;
  }
  .recruit_title .decoration_txt_5 img {
    width: 90%;
  }
  .recruit_title .decoration_txt_1 {
    position: absolute;
    writing-mode: lr-tb;
    top: 90px;
    left: 0%;
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .recruit_title .decoration_txt_2 {
    position: absolute;
    writing-mode: lr-tb;
    top: 0px;
    right: 0px;
    left: 0px;
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .recruit_title .decoration_txt_3 {
    position: absolute;
    top: 45px;
    left: 0px;
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .recruit_title .decoration_txt_4 {
    position: absolute;
    top: 135px;
    left: 0px;
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .content_only_sp h2 {
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 900;
    text-align: left;
  }
  .content_only_sp {
    padding: 0px 60px 0px 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .content_only_sp .co_01_24 {
    margin-bottom: 50px;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
  }

  /* 募集要項 */
  .box4 {
    margin: 20px 0px 0px 0px;
  }
  .content_2 {
    padding: 20px 60px 20px 60px;
    font-size: 18px;
    line-height: 26px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .content_2 h2 {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 15px;
  }
  .content_2 .co2_txt {
    padding: 0px 30px 0px 30px;
    margin-bottom: 60px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .co2_txt ul {
    padding-left: 30px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* 詳しい情報はこちら */
  .box_only_sp:after {
    display: block;
    content: "";
    clear: both;
  }
  .co2_right {
    float: left;
    width: 90%;
  }
  .content2_only_sp {
    float: left;
    width: 10%;
  }
  .content2_only_sp p a {
    text-decoration: none;
    color: #000000;
  }
  .content2_only_sp p {
    writing-mode: tb-rl;
    font-size: 88px;
    font-weight: 900;
    margin-top: -280px;
  }
  .box5 {
    display: none;
  }

  /* メンバー紹介 */
  .box6 {
    margin: 0px;
  }
  .member_box {
    margin-bottom: 1100px;
  }
  .member_box2 {
    margin-bottom: 30px;
  }
  .member_box2 img {
    width: 99%;
  }
  .member_box3 .member_left .member_txt {
    padding-right: 1%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .member_box3 .member_right .member_txt {
    padding-left: 1%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .member_box3 img {
    width: 85%;
  }

  /* 応募はこちらから */
  .box7 p {
    font-size: 68px;
  }

}

/*########900px以上#######*/
@media (min-width: 900px) {

  /* メインビジュアル */
  .recruit_intro {
    padding: 0px 130px 0px 0px;
  }
  .recruit_intro .content_only_sp {
    display: none;
  }

  /* 募集要項 */
  .content_2:after {
    display: block;
    content: "";
    clear: both;
  }
  .content_2 .co2_left {
    float: left;
    width: 50%;
  }
  .content_2 .co2_right {
    float: left;
    width: 50%;
    padding-left: 30px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .content_2 .box_only_sp .content2_only_sp {
    display: none;
  }

  /* メンバー紹介 */
  .member_box {
    margin-bottom: 1100px;
  }
  .member_box2 {
    margin-bottom: 30px;
  }
  .member_box3 .member_left .member_txt {
    padding-right: 11%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .member_box3 .member_right .member_txt {
    padding-left: 11%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

}
