@charset "UTF-8";
a {
  text-decoration:none;
}
img {
  height: auto;
  max-width: 100%;
  width: 100%;
  vertical-align:top;
}
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  min-height: 100vh;
}
.button:hover {
  transition: all .3s;
  opacity: 0.74;
}
.button__akb48groupe:hover {
  transition: all .3s;
  opacity: 0.74;
}
.button__lawson:hover {
  transition: all .3s;
  opacity: 0.74;
}
.button__hulu:hover {
  transition: all .3s;
  opacity: 0.74;
}
@media screen and (min-width: 768px) {
.sp_only {
  display: none;
}
}
@media screen and (max-width: 768px) {
.pc_only {
  display: none;
}
}
/* アニメーション
-------------------------------------*/
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 1000ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
/* 画面外にいる状態 */
.fadein_top {
  display: none;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
 @keyframes fadeUpAnime {
 from {
 opacity: 0;
 transform: translateY(100px);
}
 to {
 opacity: 1;
 transform: translateY(0);
}
}

/*ファーストビュー
-------------------------------------*/
.firstview {
  position: relative;
}
.main__visual {
  filter: brightness(74%);
}
.firstview__title {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.firstview__title h2 {
  font-size: 100px;
  text-align: center;
}
.firstview__title h3 {
  font-size: 40px;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (max-width: 768px){
.firstview__title {
  top: 50%;
}
.firstview__title h2 {
  font-size: 12vw;
}
.firstview__title h3 {
  font-size: 4vw;
}
}
/*アバウト
-------------------------------------*/
.about {
  background-color: #fff;
  padding: 60px 15px;
}
.about__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.about__lead {
  font-size: 28px;
  font-weight: 500;
  padding: 20px 0 40px;
  text-align: center;
}
.about__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin: 0 18%;
  padding: 0 0 20px 0;
  text-align: center;
}
@media screen and (max-width: 768px){
.about {
  padding: 40px 15px;
}
.about__lead {
  font-size: 16px;
  padding: 20px 0 30px;
}
.about__text {
  font-size: 14px;
  margin: 0;
  text-align: left;
}
}
/*待遇
-------------------------------------*/
.benefits {
  background: #f9f9f9;
  padding: 60px 0;
}
.benefits__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.benefits__wrapper h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 3%;
}
.benefits__wrapper h2 span{
  color: #d5355f;
  display: block;
  font-size: 14px;
  text-align: left;
}
.benefits__text {
  font-size: 14px;
  margin: 20px 0 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th {
  border-bottom: 1px solid #dedede;
  color: #d5355f;
  padding: 20px 20px 20px 0px;
  text-align: left;
}
tr:first-child th {
  border-top: 1px solid #dedede;
}
td {
  border-bottom: 1px solid #dedede;
  padding: 20px 0;
}
tr:first-child td {
  border-top: 1px solid #dedede;
}
@media screen and (max-width: 768px){
.benefits {
  padding: 40px 15px 60px;
}
.benefits h2 {
  font-size: 21px;
  padding: 0 0 6%;
  margin: 0;
}
tr {
  display: block;
  width: 100%;
}
th {
  border-bottom: none;
  display: block;
  width: 100%;
  padding: 15px 0 0;
}
tr:first-child td {
  border-top: none;
}
td {
  display: block;
  width: 100%;
  padding: 5px 0 15px;
}
}
/*一覧
-------------------------------------*/
.list {
  background: #fff;
  padding: 60px 0;
}
.list__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.list__wrapper h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 1%;
}
.list__wrapper h2 span{
  color: #d5355f;
  display: block;
  font-size: 14px;
  text-align: left;
}
.list__container {
  display: flex;
  flex-wrap: wrap;
}
.list__contents {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, .2);
  margin: 2% 2% 0 0;
  width: 23.5%;
}
.list__contents:hover {
  opacity: 0.7;
  transition: all .3s;
}
@media screen and (min-width: 768px){
.list__contents:nth-child(4n) {
  margin: 2% 0 0;
}
}
@media screen and (max-width: 768px){
.list {
  padding: 40px 15px 60px;
}
.list__container {
  justify-content: space-between;
}
.list__contents {
  box-shadow: none;
  margin: 4% 0 0;
  width: 48.5%;
}
.list__wrapper h2 {
  font-size: 21px;
  padding: 0px 0 2%;
  margin: 0;
}
.list__text {
  font-size: 12px;
}
.list__text::after {
  right: 10px;
}
}
/*詳細
-------------------------------------*/
.detail {
  background: #fff;
  padding: 20px 0 0;
}
.detail__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.detail__container {
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0;
}
.detail__image {
  margin: 0.6% 2% 0 0;
  width: 28%;
}
.detail__contents {
  width: 70%;
}
.detail__contents h3 {
  color: #d5355f;
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 1%;
}
.detail__text {
  font-size: 14px;
  margin: 20px 0;
}
.detail__text span {
  line-height: 34px;
}
.button a {
  background: #d5355f;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 0 auto;
  padding: 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  max-width: 400px;
  width: 100%;
  border-radius: 6px;
  border-spacing: 0;
  overflow: hidden;
}
.button a::after {
  content: '';
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px){
.detail {
  padding: 0 15px;
}
.detail__image {
  margin: 0;
  width: 100%;
}
.detail__contents {
  box-shadow: none;
  margin: 20px 0 0;
  width: 100%;
}
.detail__wrapper h2 {
  font-size: 21px;
  padding: 20px 0 10px;
  margin: 0;
}
.detail__contents h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.button a {
  margin: 0 auto;
}
}
/*フッター
-------------------------------------*/
footer {
  background-color: #f7f6f6;
  padding: 30px 0 60px;
}
.copyright {
  text-align: center;
  
}
/*TOPへ戻る
-------------------------------------*/
.header-box {
  display: none;
}
.pagetop {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 1vw;
  z-index: 3;
}
.pagetop a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  background: #C0C0C0;
  border-radius: 50%;
}
.pagetop:hover {
  transition: all .3s;
  opacity: 0.8;
}
.pagetop a span {
  width: 2.34vw;
  height: 2.27vw;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -7.5px;
}
.pagetop a i {
  width: 15px;
  weight: 8px;
  height: 2.27vw;
  display: block;
  background: url(../img/top.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px){
.pagetop{
  width: 9.38vw;
  height: 9.38vw;
  bottom: 12vw;
  right: 10px;
}
.pagetop a span {
  margin: -0.66vw 0 0 -1.17vw;
}
.pagetop a i {
  width: 2.34vw;
}
}