/*========== googleフォント ==========*/
@import url(https://fonts.googleapis.com/css?family=Lato);

/* 1280px〜：大型PC
------------------------------
ここに基本CSSを書きます。
PCファーストでは、PCサイズからモバイルの大きさに向けて、以降のCSSを書いていきます。*/

/*========== 全体 ==========*/
#wrap {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

/*========== 共通項目 ==========*/
p {
  margin: auto;
  padding: auto;
  font-size: 15px;
  color: #5C5C5C;
  letter-spacing: 0.1em;
  line-height: 1.7em;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1 {
  margin: 0;
  font-size: 32px;
  color: #5C5C5C;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
}

h1:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -25px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 60px;
  /*下線の幅*/
  height: 3px;
  /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  /*位置調整*/
  background-color: #ff5082;
  /*下線の色*/
  border-radius: 2px;
}

h2 {
  font-size: 26px;
}

h3 {
  color: #5C5C5C;
  margin: 0;
  font-size: 62px;
}

h4 {
  margin: 0;
  font-size: 26px;
  display: inline-block;
  position: relative;
  padding-bottom: 40px;
}

h5 {
  margin: 0;
  font-size: 26px;
  display: inline-block;
  position: relative;
  padding-bottom: 40px;
}

h4:before {
  content: '';
  position: absolute;
  bottom: 18px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 100px;
  /*下線の幅*/
  height: 2px;
  /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(0%);
  /*位置調整*/
  background-color: #00a199;
  /*下線の色*/
  border-radius: 2px;
}

h5:before {
  content: '';
  position: absolute;
  bottom: 18px;
  /*下線の上下位置調整*/
  display: inline-block;
  width: 100px;
  /*下線の幅*/
  height: 2px;
  /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(0%);
  /*位置調整*/
  background-color: #ff9f0f;
  /*下線の色*/
  border-radius: 2px;
}

.ruby {
  line-height: 1em;
}

.pink {
  color: #ff5082;
}

.orange {
  color: #ff9f0f;
}

.green {
  color: #00a199;
}

.title {
  margin: auto;
  padding-top: 60px;
  padding-bottom: 80px;
}

.subtitle {
  font-size: 27px;
}

#contactinfo {
  padding-bottom: 60px;
  color: #5C5C5C;
}

#tel {
  width: 600px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: auto;
  padding: 0;
  margin-bottom: 30px;
}

#tel img {
  height: 70px;
}

#tel p {
  font-size: 30px;
  color: #ff5082;
}

#fax {
  width: 600px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: auto;
  padding: 0;
  margin-bottom: 30px;
}

#fax img {
  height: 70px;
}

#fax p {
  font-size: 30px;
  color: #ff9f0f;
}

#mail {
  width: 600px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: auto;
  padding: 0;
  margin-bottom: 100px;
}

#mail img {
  height: 70px;
}

#mail p {
  font-size: 30px;
  color: #00a199;
}

.fixed_banner {
  position: fixed;
  /* 追従させる為にfixedの値を記述します */
  z-index: 99999;
  /* 他の要素の下に隠れないように全面配置させます */
  top: 60px;
  /* 上から150pxのところにバナーを配置します */
  right: 0px;
  /* 右から40pxのところにバナーを配置します */
  border: none;
  border-radius: 10px 0px 0px 10px;
  background-color: rgb(255, 255, 255);
  padding: 13px 0px 13px 13px;
}

.fixed_banner_pc {
  width: 260px;
  /* バナーの横幅を指定してあげます */
  padding: 0px 13px 13px 13px;
}

.floating-banner:hover {
  opacity: .8;
  /* マウスが重なった時に少し透過させます */
}

.switch_content {
  border: 1px solid #ababab;
  /* 全体を囲む枠線 */
}

#switch {
  display: none;
  /* チェックボックスを除去 */
}

.button {
  display: block;
  position: relative;
  padding: 10px 20px;
}

.icon {
  /* アイコン全体のスタイル */
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-52%);
  width: 18px;
  height: 18px;
  border: 1px solid #333;
  border-radius: 50%;
}

.icon::before,
.icon::after {
  /* 「×」印のスタイル */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #333;
  /* 棒の色 */
  transform: translate(-50%, -50%) rotate(90deg);
  /* デフォルトは「-」印に */
  transition: 0.5s all;
  /* クリック時のアニメーション設定 */
}

.open2,
.close {
  margin-left: 27px;
}

.open2 {
  /* 表示ボタンのスタイル */
  display: none;
  font-size: 18px;
  color: #3b5980;
  /* デフォルトは表示 */
}

.close {
  /* 閉じるボタンのスタイル */
  display: inline-block;
  /* デフォルトは非表示 */
}

.contents2 {
  /* コンテンツのスタイル */
  display: block;
  /* デフォルトは非表示 */
}

/* 以降、チェック時（クリック後）のスタイル */

#switch:checked+.button>.icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#switch:checked+.button>.icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#switch:checked+.button>.close {
  display: none;
  /* 表示ボタンを非表示 */
}

#switch:checked+.button>.open2 {
  display: inline-block;
  /* 閉じるボタンを表示 */
}

#switch:checked~.contents2 {
  display: none;
  /* コンテンツを表示 */
}


/*========== メニューバー詳細 ==========*/
nav {
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1px;
}

.blurry-menu {
  margin-top: 20px;
  margin-bottom: 15px;
}

.blurry-menu ul {
  display: inline-block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
  -moz-box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
  box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
}

.blurry-menu ul:after {
  content: '';
  height: 46px;
  left: -50px;
  position: absolute;
  top: -32px;
  width: 120%;
  z-index: 1;
  background: -webkit-linear-gradient(left top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, .7));
  background: -moz-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
  background: -ms-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
  background: -o-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
  background: linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
  -webkit-transform: rotate(-2.4deg);
  -moz-transform: rotate(-2.4deg);
  -ms-transform: rotate(-2.4deg);
  -o-transform: rotate(-2.4deg);
  transform: rotate(-2.4deg);
}

.blurry-menu li {
  width: 100px;
  float: left;
}

.blurry-menu a {
  border-right: 1px solid #ff5082;
  color: #4d4d4d;
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: 24px;
  line-height: 24px;
  padding: 0 15px;
  position: relative;
  text-decoration: none;
  z-index: 2;
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
}

.blurry-menu a:focus {
  outline: 0;
}

.blurry-menu li:first-child a {
  border-left: none;
}

.blurry-menu li:last-child a {
  border-right: none;
}

.blurry-menu ul:hover a {
  color: #ff5082;
}

.blurry-menu ul:hover a:hover {
  background: #ff5082;
  color: rgb(255, 255, 255);
  line-height: 20px;
}

.blurry-menu ul:hover a:active {
  border-left-color: #f0f0f0;
  color: rgb(255, 255, 255);
  line-height: 24px;
  /*-webkit-box-shadow: inset 0 0 22px #e9e9e9;
  -moz-box-shadow: inset 0 0 22px #e9e9e9;
  box-shadow: inset 0 0 22px #e9e9e9;*/
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/*========== ヘッダー（トップ）詳細 ==========*/
header img {
  vertical-align: bottom;
  /*画像の余分な余白を消す*/
}

.topimg01 p {
  font-size: 60px;
  font-weight: 800;
  color: #ff5082;
  padding-top: 235px;
  padding-bottom: 235px;
}

.topimg02 img {
  display: none;
}

/*========== お知らせ詳細 ==========*/
.info {
  max-width: 100%;
  background-color: #ff5082;
  font-size: 15px;
  line-height: 1.3;
  color: #ffffff;
}

.info ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: left;
  justify-content: left;
  -webkit-align-items: left;
  align-items: left;
  margin: 0;
  padding-left: 20%;
}

.info li {
  padding: 10px;
}

.tag {
  color: #fcec16;
}

#news {
  overflow: auto;
  margin: 0 auto;
  height: 82px;
}

/*========== contents_アビリティ ==========*/
#aic {
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  padding-bottom: 80px;
}

#gaiyou {
  text-align: center;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}

#gaiyou .img01 {
  width: 100%;
}

#gaiyou .img02 {
  display: none;
}

.mtext {
  margin: 0 auto;
  text-align: center;
  font-size: 1.68vw;
  padding: 20px 0;
  color: #ff5082;
}

.stext {
  font-size: 0.95vw;
  text-align: center;
}

.aiclogo {
  padding: 30px 0;
}

.sp_br{
  display: none;
}

#bunsyo {
  width: 900px;
  position: absolute;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: red;
  padding: 0;
  margin: 0;
}

/*========== contents_3つの特徴 ==========*/
#tokutyou {
  max-width: 100%;
  padding-bottom: 100px;
  text-align: center;
  color: #5C5C5C;
}

#tokutyou ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: auto;
  padding: 0;
}

.Three li img {
  max-width: 400px;
  padding-left: 20px;
  padding-right: 20px;
}

.haikei1 {
  margin: 0;
  background: url(img/Three_features_bg.png);
  padding: 80px 0;
}

.th4 {
  display: none;
}

/*========== contents_感染症対策・防災対策 ==========*/
#various {
  max-width: 100%;
  padding-bottom: 80px;
}

#kansen {
  margin: auto;
}

#kansen img {
  max-width: 100%;
  padding: 0 5px 20px;
}

#kansen p {
  width: 960px;
  text-align: left;
}

.v5 {
  display: none;
}

/*========== contents_お仕事内容 ==========*/
#job {
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 80px;
}

#job p {
  font-size: 15px;
}

#job ul {
  margin: auto;
  padding: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

#job li {
  /*20220207_裕太変更*/
  padding: 1%;
}

#job li p {
  width: 250px;
}

#job2 {
  /*20220207_裕太変更*/
  margin: auto;
  text-align: left;
  padding-bottom: 20px;
}

#job2 img {
  /*20220208_裕太変更*/
  width: 320px;
}

#shisetugai {
  margin: auto;
  max-width: 800px;
  border: solid 1px #ff5082;
  padding-bottom: 16px;
  margin-bottom: 80px;
}

#shisetugai h2 {
  color: #ff5082;
}

#shisetugai p {
  font-size: 20px;
  padding-bottom: 6px;
}

.chibashi {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.chibashi_sp {
  display: none;
}

.pc_job {
  /*20220208_裕太追加*/
  display: inline;
}

.sp_job {
  /*20220208_裕太追加*/
  display: none;
}

/*=====以下仕事内容のテキスト表示非表示関係_20220204_裕太追加=====*/
.hidden_box {
  margin: 5px 0;
  /*前後の余白*/
  padding: 0;
}

/*チェックは見えなくする_裕太*/
.hidden_box input {
  display: none;
}

/*中身を非表示にしておく_裕太*/
.hidden_box .hidden_show {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}

/*クリックで中身表示_裕太*/
.hidden_box input:checked~.hidden_show {
  padding: 10px 0;
  height: auto;
  opacity: 1;
}

/*=====以下仕事内容の画像切替え（ホバー）関係_20220204_裕太追加=====*/
#job2 .hidden_box {
  position: relative;
}

#job2 .hidden_box .active {
  position: absolute;
  left: 0%;
  top: 0;
  opacity: 0;
  transition: 0.1s;
}

#job2 .hidden_box:hover .active {
  opacity: 1;
}

/*========== contents_1日の流れ ==========*/
#flow {
  max-width: 100%;
  margin: auto;
  padding: auto;
  color: #5C5C5C;
  letter-spacing: 0.1em;
  padding-bottom: 80px;
}

#flow .ruby {
  text-align: center;
}

#flow img {
  padding-bottom: 10px;
  width: 78%;
}

#flow ul {
  margin: auto;
  padding: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

#flow li {
  width: 300px;
  padding: 0 20px;
  padding-bottom: 50px;
}

.flowmin {
  text-align: left;
}

.ff {
  max-width: 1280px;
}

.sp_oneday {
  /*20220203_裕太追加*/
  display: none;
}

/*========== contents_ご利用までの流れ ==========*/
#goriyou {
  max-width: 100%;
  padding-bottom: 80px;
}

.midashi {
  margin: auto;
  max-width: 1280px;
  border: solid 1px #1d1d1d;
}

.midashi p {
  width: 70%;
  padding: 0 0 30px 0;
}

.flowuse {
  padding-top: 40px;
  padding-bottom: 60px;
  border-bottom: solid 1px #ff5082;
}

.flowuse2 {
  padding-top: 40px;
  padding-bottom: 60px;
}

.flowuse h3 {
  color: #b9b9b9;
  margin: 0;
}

.flowuse2 h3 {
  color: #b9b9b9;
  margin: 0;
}

.flowuse p {
  padding-bottom: 20px;
}

.flowuse2 p {
  padding-bottom: 20px;
}

#goriyou .frame {
  margin: auto;
  border: solid 1px #1d1d1d;
}

.f1to5 {
  margin: auto;
  max-width: 800px;
}

#goriyou .preparation {
  margin-top: 30px;
  padding-bottom: 20px;
}

#goriyou .preparation .subtitle {
  padding: 20px;
}

#goriyou .preparation p {
  color: #ff5082;
}

#goriyou .preparation p .space {
  margin-right: 25px;
}

.f1to5_sp {
  display: none;
}

/*========== contents_雇用形態 ==========*/
#koyoukeitai {
  max-width: 100%;
  padding-bottom: 80px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#koyoukeitai h6 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 24px;
  color: #5C5C5C;
}

h7 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 24px;
  color: #5C5C5C;
}

.koyou {
  max-width: 800px;
  margin: auto;
  text-align: left;
  padding-bottom: 100px;
}

.koyou dl {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.koyou dt {
  width: 200px;
  float: left;
  color: #ff5082;
  text-align: left;
  padding-left: 40px;
}

.koyou dd {
  color: #5C5C5C;
  overflow: hidden;
}

.koyou_sp {
  display: none;
}

/*========== contents_SNS・WEBサイト運営 ==========*/
#sns {
  max-width: 100%;
  margin: auto;
}

#sns .center {
  width: 100px;
  height: auto;
}

.snsw {
  margin: auto;
  max-width: 1280px;
}

.snscontents {
  display: inline-block;
  height: 600px;
  width: 395px;
}

#facebook {
  color: #3B5980;
}

#ameba {
  color: #2D803C;
}

#gurumama {
  color: #FF7B80;
}

.snsbtn {
  position: relative;
  z-index: 1;
}

.btn1 {
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 2;
}

.btn2 {
  position: absolute;
  top: 29px;
  left: 48px;
  opacity: 0;
  z-index: 3;
}

.snsbtn:hover .btn2 {
  opacity: 1;
}

.sp_sns_btn {
  display: none;
}

/*========== contents_よくある質問 ==========*/
#Question {
  max-width: 100%;
}

#Question h3 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.QAcontents {
  border-bottom: solid 1px #ff5082;
}

.QAcontents p {
  padding-bottom: 80px;
}

.QAcontents2 p {
  padding-bottom: 80px;
}

.question {
  font-size: 26px;
  color: #ff5082;
  padding-bottom: 20px;
}

.q1to5 {
  margin: auto;
  max-width: 800px;
}

.q1to5_sp {
  display: none;
}

/*========== contents_アクセス ==========*/
#access {
  max-width: 100%;
  padding-bottom: 80px;
}

#address h2 {
  color: #5C5C5C;
}

#address p {
  padding-bottom: 30px;
}

#bus h2 {
  color: #ff5082;
}

#access ul {
  margin: auto;
  padding: auto;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.route {
  padding: 0;
}

.route-pc {
  display: flex;
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.route-sp {
  display: none;
}

.route li {
  padding: 0;
  width: 22%;
}

.route li p {
  text-align: left;
}

.route .ro_left {
  margin-right: 4%;
}

.route .ro_center {
  margin-right: 4%;
}

.gmap {
  max-width: 1280px;
  height: 0;
  overflow: hidden;
  margin: auto;
  margin-bottom: 60px;
  padding-bottom: 56.25%;
  position: relative;
}

.gmap iframe {
  padding: 15px 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/*========== 利用者募集中 ==========*/
#bosyu {
  height: 200px;
}

#bosyu h2 {
  color: #ff5082;
}

.sp_otoi {
  display: none;
}

/*========== フッター詳細 ==========*/
footer {
  max-width: 100%;
  letter-spacing: 0.1em;
  line-height: 1.7em;
}

footer p {
  color: rgb(255, 255, 255);
}

#footertop {
  padding-top: 45px;
  height: 152px;
}

#footertop p {
  width: 400px;
  padding-left: 40px;
  text-align: left;
  display: inline-block;
}

.hidari {
  border-right: 1px solid rgb(255, 255, 255);
}

#footerdown {
  font-weight: 100;
  font-size: 13px;
  padding: 11px;
  height: 45px;
}

/*========== お問い合わせ詳細 ==========*/
.otoiawase0 {
  margin: auto;
  width: 310px;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}

.otoiawase1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.otoiawase2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 3;
}

.otoiawase0:hover .otoiawase2 {
  opacity: 1;
}

/*========== 階層分け ==========*/
.illust {
  position: relative;
  z-index: 1;
}

.illust1 {
  position: absolute;
  top: 2%;
  left: 450px;
  z-index: 2;
}

.illust2 {
  max-width: 100%;
  position: absolute;
  top: -60px;
  left: 3%;
  z-index: 2;
}

.illust3 {
  position: absolute;
  top: -53px;
  left: 80%;
  z-index: 2;
}

.illust4 {
  position: absolute;
  top: -53px;
  left: 80%;
  opacity: 0;
  z-index: 3;
}

.illust:hover .illust4 {
  opacity: 1;
}

/*========== 背景設定一覧 ==========*/
/*グレー背景設定*/
.gray {
  background-color: #f7f7f7;
}

/*ピンク背景設定*/
.bgpink {
  background-color: #ff5082;
  color: #fff;
}

/*濃いグレー背景設定*/
.darkgray {
  background-color: #4d4d4d;
  color: #fff;
  padding-top: 180px;
}

/*========== スコアページ詳細 ==========*/
.scoremin {
  margin: auto;
  width: 890px;
  border-bottom: solid 1px #ff5082;
  padding-top: 40px;
}

.scoremin h2 {
  margin: auto;
  font-size: 60px;
  color: #ff5082;
  padding-top: 30px;
  padding-bottom: 40px;
}

.scoremin h3 {
  margin: auto;
  margin-bottom: 50px;
  width: 200px;
  font-size: 50px;
  color: #ffffff;
  background-color: #ff5082;
  border-radius: 30px;
  padding-bottom: 8px;
}

.scoremin2 h3 {
  margin: auto;
  color: #ff5082;
  font-size: 50px;
  padding-top: 80px;
  padding-bottom: 0px;
}

.scoremin p {
  font-size: 16px;
  padding-bottom: 80px;
}

#pdf {
  margin: auto;
  padding-bottom: 100px;
  font-size: 1vw;
  width: 80%;
}

/*========== ギャラリーページ詳細 ==========*/
.select a {
  display: inline-block;
}

.select img {
  padding: 0 25px;
  display: inline-flex;
}

.photo {
  margin: auto;
  width: 1380px;
}

.photo img {
  padding: 10px 10px;
  display: inline-flex;
  border-radius: 20px;
}

.minititle p {
  width: 560px;
  background-color: #ff5082;
  border-radius: 30px;
  margin-top: 80px;
  margin-bottom: 40px;
  font-size: 32px;
  color: #ffffff;
}

.last {
  padding-bottom: 60px;
}

.plus {
  padding-top: 40px;
  padding-bottom: 40px;
}


/*========== 採用情報ページ ==========*/
.recruit h1 {
  color: #ff5082;
  font-size: 60px;
  padding-bottom: 0;
}

.recruit h1:before {
  display: none;
}

.recruit h2 {
  color: #ff5082;
  font-size: 28px;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 10px;
}

.recruit-r h1 {
  color: #ff9a55;
  font-size: 60px;
}

.recruit-r h1:before {
  display: none;
}

.recruit-r h2 {
  color: #ff9a55;
  font-size: 32px;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.recruit p {
  width: 52%;
}

.recruit-c img {
  padding-top: 15px;
  width: 226px;
  margin: 15px;
}

.recruit-c {
  padding-bottom: 40px;
}

.r_contents {
  display: inline-block;
  height: 200px;
  width: 395px;
}

.r_btn {
  width: 330px;
  position: relative;
  z-index: 1;
}

.last-btn {
  padding-bottom: 30px;
}

.r_btn1 {
  position: absolute;
  top: 30px;
  left: 35px;
  z-index: 2;
}

.r_btn2 {
  position: absolute;
  top: 30px;
  left: 35px;
  opacity: 0;
  z-index: 3;
}

.r_btn:hover .r_btn2 {
  opacity: 1;
}

/*========== お仕事依頼 ==========*/
h10 {
  font-size: 28px;
  color: #ff5082;
}

h11 {
  color: #ffa710;
}

.jr_title {
  font-size: 28px;
  color: #ff5082;
  padding-bottom: 24px;
}

.jr_midashi {
  padding-bottom: 60px;
}

.jr_contents {
  text-align: left;
}

.jr_contents p {
  padding-top: 6px;
  padding-bottom: 40px;
}

.jr_main {
  padding-bottom: 100px;
  max-width: 1080px;
  margin: auto;
}

#lancers {
  margin: auto;
  margin-bottom: 120px;
  border-radius: 50px;
  max-width: 900px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b5d4f8;
}

#lancers p {
  color: #0c6cd4;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 30px;
}


/*========== メンテナンス ==========*/
.maintenance {
  margin: 200px 0 400px 0;
}

h8 {
  font-size: 50px;
}

.maintenance p {
  font-size: 20px;
}

.maintenance img {
  width: 35%;
  padding: 80px 0;
}

.toppage {
  text-align: center;
  padding: 50px;
  font-size: 18px;
}

.break_main{
  display: none;
}

  .break{
    display:none;
  }


/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:600px) and (max-width:1279px) {

  /*========== メニューバー詳細 ==========*/
  nav {
    background-color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1px;
  }

  .blurry-menu {
    margin-top: 5px;
    margin-bottom: 2px;
  }

  .blurry-menu ul {
    display: inline-block;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
    -moz-box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
    box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
  }

  .blurry-menu ul:after {
    content: '';
    height: 46px;
    left: -50px;
    position: absolute;
    top: -32px;
    width: 120%;
    z-index: 1;
    background: -webkit-linear-gradient(left top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, .7));
    background: -moz-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    background: -ms-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    background: -o-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    background: linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    -webkit-transform: rotate(-2.4deg);
    -moz-transform: rotate(-2.4deg);
    -ms-transform: rotate(-2.4deg);
    -o-transform: rotate(-2.4deg);
    transform: rotate(-2.4deg);
  }

  .blurry-menu li {
    width: 33%;
    float: left;
  }

  .blurry-menu a {
    border-right: none;
    color: #4d4d4d;
    display: block;
    font-size: 13px;
    font-weight: 500;
    height: 24px;
    line-height: 24px;
    padding: 0 15px;
    position: relative;
    text-decoration: none;
    z-index: 2;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
  }

  .blurry-menu a:focus {
    outline: 0;
  }

  .blurry-menu li:first-child a {
    border-left: none;
  }

  .blurry-menu li:last-child a {
    border-right: none;
  }

  .blurry-menu ul:hover a {
    color: #ff5082;
  }

  .blurry-menu ul:hover a:hover {
    background: #ff5082;
    color: rgb(255, 255, 255);
    line-height: 20px;
  }

  .blurry-menu ul:hover a:active {
    border-left-color: #f0f0f0;
    color: rgb(255, 255, 255);
    line-height: 24px;
    /*-webkit-box-shadow: inset 0 0 22px #e9e9e9;
  -moz-box-shadow: inset 0 0 22px #e9e9e9;
  box-shadow: inset 0 0 22px #e9e9e9;*/
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }

  /*========== お知らせ詳細 ==========*/
  .info {
    max-width: 100%;
    background-color: #ff5082;
    font-size: 15px;
    line-height: 1.3;
    color: #ffffff;
  }

  .info ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: left;
    justify-content: left;
    -webkit-align-items: left;
    align-items: left;
    margin: 0;
    padding-left: 5%;
  }

  .info li {
    padding: 10px;
  }

  .tag {
    color: #fcec16;
  }

  #news {
    overflow: auto;
    margin: 0 auto 20px;
    height: 80px;
  }

  /*ボックスのタイトル
.sample_title {
  margin:20px auto 0;
  padding:2px;
  width:300px;
  text-align:center;
  color:#fff;
  font-weight:bold;
  background:#ff8c00;
}:*/

  /*========== contents_アビリティ ==========*/
  #aic {
    max-width: 1680px;
    padding-bottom: 80px;
  }

  #gaiyou {
    margin: auto;
    max-width: 1280px;
  }

  #gaiyou .img02 {
    display: none;
  }

  .mtext {
    padding: 30px 0;
    color: #ff5082;
  }

  .aiclogo {
    padding: 30px 0;
  }

  /*========== contents_3つの特徴 ==========*/
  #tokutyou {
    max-width: 1680px;
    text-align: center;
    color: #5C5C5C;
  }

  #tokutyou ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: auto;
    padding: 0;
  }

  .Three li img {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .haikei1 {
    margin: 0;
    background: url(img/Three_features_bg.png);
    padding: 20px 0;
  }  

  /*========== contents_感染症対策・防災対策 ==========*/
  #various {
    max-width: 1680px;
    padding-bottom: 80px;
  }

  #kansen {
    margin: auto;
  }

  #kansen img {
    max-width: 100%;
    padding: 0 5px 20px;
  }

  #kansen p {
    width: 80%;
    text-align: left;
  }

  /*========== contents_お仕事内容 ==========*/
  #job {
    max-width: 100%;
    padding-bottom: 80px;
  }

  #job p {
    font-size: 15px;
  }

  #job ul {
    margin: auto;
    padding: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  #job li {
    /*20220207_裕太変更*/
    padding: 0%;
  }

  #job li p {
    width: 300px;
  }

  #job2 {
    /*20220207_裕太変更*/
    margin: auto;
    text-align: left;
    padding-bottom: 20px;
  }

  #job2 img {
    /*20220208_裕太変更*/
    width: 300px;
  }

  #shisetugai {
    margin: auto;
    max-width: 800px;
    border: solid 1px #ff5082;
    padding-bottom: 16px;
  }

  #shisetugai h2 {
    color: #ff5082;
  }

  #shisetugai p {
    font-size: 20px;
    padding-bottom: 6px;
  }

  .chibashi {
    display: none;
  }

  .chibashi_sp {
    display: block;
    max-width: 800px;
    padding-top: 100px;
    margin: 0 auto;
  }

  .pc_job {
    /*20220208_裕太追加*/
    display: inline;
  }

  .sp_job {
    /*20220208_裕太追加*/
    display: none;
  }

  /*=====以下仕事内容のテキスト表示非表示関係_20220204_裕太追加=====*/
  .hidden_box {
    margin: 5px 0;
    /*前後の余白*/
    padding: 0;
  }

  /*チェックは見えなくする_裕太*/
  .hidden_box input {
    display: none;
  }

  /*中身を非表示にしておく_裕太*/
  .hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
  }

  /*クリックで中身表示_裕太*/
  .hidden_box input:checked~.hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
  }

  /*=====以下仕事内容の画像切替え（ホバー）関係_20220204_裕太追加=====*/
  #job2 .hidden_box {
    position: relative;
  }

  #job2 .hidden_box .active {
    position: absolute;
    left: 0%;
    top: 0;
    opacity: 0;
    transition: 0.1s;
  }

  #job2 .hidden_box:hover .active {
    opacity: 1;
  }

  #sns .center {
    display: none;
  }

  /*========== contents_お仕事内容 ==========*/
  .midashi {
    width: 80%;
  }

  /*========== SNS・WEBサイト運営 ==========*/
  .snscontents p {
    width: 250px;
  }

  /*========== contents_アクセス ==========*/
  #access {
    max-width: 1680px;
    padding-bottom: 80px;
  }

  #address h2 {
    color: #5C5C5C;
  }

  #bus h2 {
    color: #ff5082;
  }

  #access ul {
    margin: auto;
    padding: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .gmap {
    padding-bottom: 400px;
  }

  .gmap iframe {
    padding: 15px 0;
    position: absolute;
    left: 0;
    top: 0;
  }

  /*========== フッター詳細 ==========*/
  footer {
    max-width: 1680px;
    letter-spacing: 0.1em;
    line-height: 1.7em;
  }

  footer p {
    color: rgb(255, 255, 255);
  }

  #footertop {
    padding-top: 45px;
    height: 152px;
  }

  #footertop p {
    width: 45%;
    font-size: 12px;
    padding-left: 6%;
    text-align: left;
    display: inline-block;
  }

  .hidari {
    border-right: 1px solid rgb(255, 255, 255);
  }

  #footerdown {
    font-weight: 100;
    font-size: 13px;
    padding: 11px;
    height: 45px;
  }

  /*========== 階層分け ==========*/
  .illust {
    position: relative;
    z-index: 1;
  }

  .illust1 {
    position: absolute;
    top: 2%;
    left: 450px;
    z-index: 2;
  }

  .illust2 {
    display: none;
    max-width: 100%;
    position: absolute;
    top: -60px;
    left: 3%;
    z-index: 2;
  }

  .illust3 {
    display: none;
    position: absolute;
    top: -48px;
    left: 80%;
    z-index: 2;
  }

  .illust4 {
    display: none;
    position: absolute;
    top: -48px;
    left: 80%;
    opacity: 0;
    z-index: 3;
  }

  .illust:hover .illust4 {
    opacity: 1;
  }

  #contactinfo {
    padding-bottom: 60px;
    color: #5C5C5C;
  }

  #tel {
    width: 40%;
    margin-bottom: 30px;
  }

  #tel img {
    width: 120px;
    height: auto;
  }

  #fax{
    width: 40%;
    height: 100%;
  }

  #fax img{
    width: 120px;
    height: auto;
  }

  #mail {
    width: 40%;
    height: 100%;
  }

  #mail img{
    width: 120px;
    height: auto;
  }

  /*========== スコアページ詳細 ==========*/
  .scoremin {
    margin: auto;
    width: 90%;
    border-bottom: solid 1px #ff5082;
    padding-top: 40px;
  }

  /*========== ギャラリーページ詳細 ==========*/
  .select a {
    display: inline-block;
  }

  .select img {
    padding: 0 25px;
    display: inline-flex;
  }

  .photo {
    margin: auto;
    width: 100%;
  }

  .photo img {
    padding: 10px 10px;
    display: inline-flex;
    border-radius: 20px;
  }

  .minititle p {
    width: 560px;
    background-color: #ff5082;
    border-radius: 30px;
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 32px;
    color: #ffffff;
  }

  .last {
    padding-bottom: 60px;
  }

  .plus {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /*========== メンテナンス ==========*/
.maintenance{
      margin: 100px 0 100px 0;
}

  .maintenance img {
    width: 80%;
  }

  .toppage {
    text-align: center;
    padding: 50px;
    font-size: 18px;
  }

  .break_main{
    display: block;
  }

    .break{
    display: none;
  }

  .maintenance h8{
    line-height:150%;
  }

  .maintenance p{
    padding-top: 50px;
  }

  /*========== お仕事依頼 ==========*/
  h10 {
    font-size: 24px;
    color: #ff5082;
  }

  h11 {
    color: #ffa710;
  }

  .jr_title {
    font-size: 24px;
    color: #ff5082;
    padding-bottom: 24px;
    width: 90%;
    margin: auto;
  }

  .jr_midashi {
    padding-bottom: 60px;
    width: 90%;
    margin: auto;
    text-align: left;
  }

  .jr_contents {
    text-align: left;
  }

  .jr_contents p {
    padding-top: 6px;
    padding-bottom: 40px;
  }

  .jr_main {
    padding-bottom: 100px;
    width: 90%;
    margin: auto;
  }

  #lancers {
    margin: auto;
    border-radius: 50px;
    width: 90%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
  }

  #lancers p {
    color: #0c6cd4;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 30px;
  }
}


/* 〜599px：スマホ縦・横
------------------------------ */
@media screen and (max-width:599px) {

  /*========== 全体 ==========*/
  #wrap {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  body {
    margin: 0;
    padding: 0;
    font-weight: 400;
  }

  /*========== 共通項目 ==========*/
  p {
    margin: auto;
    padding: auto;
    font-size: 15px;
    color: #5C5C5C;
    letter-spacing: 0.1em;
    line-height: 1.7em;
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
  }

  h1 {
    margin: 0;
    font-size: 20px;
    /*20220203_裕太変更*/
    color: #5C5C5C;
    letter-spacing: 0.1em;
    display: inline-block;
    position: relative;
  }

  h1:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    /*下線の上下位置調整*/
    /*20220203_裕太変更*/
    display: inline-block;
    width: 60px;
    /*下線の幅*/
    height: 3px;
    /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    /*位置調整*/
    background-color: #ff5082;
    /*下線の色*/
    border-radius: 2px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    color: #5C5C5C;
    margin: 0;
    font-size: 40px;
    /*20220209_裕太変更*/
  }

  h4 {
    margin: 0;
    font-size: 26px;
    display: inline-block;
    position: relative;
    padding-bottom: 40px;
  }

  h5 {
    margin: 0;
    font-size: 26px;
    display: inline-block;
    position: relative;
    padding-bottom: 40px;
  }

  h4:before {
    content: '';
    position: absolute;
    bottom: 18px;
    /*下線の上下位置調整*/
    display: inline-block;
    width: 100px;
    /*下線の幅*/
    height: 2px;
    /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(0%);
    /*位置調整*/
    background-color: #00a199;
    /*下線の色*/
    border-radius: 2px;
  }

  h5:before {
    content: '';
    position: absolute;
    bottom: 18px;
    /*下線の上下位置調整*/
    display: inline-block;
    width: 100px;
    /*下線の幅*/
    height: 2px;
    /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(0%);
    /*位置調整*/
    background-color: #ff9f0f;
    /*下線の色*/
    border-radius: 2px;
  }

  .ruby {
    line-height: 1em;
  }

  .pink {
    color: #ff5082;
  }

  .orange {
    color: #ff9f0f;
  }

  .title {
    margin: auto;
    padding-top: 40px;
    padding-bottom: 45px;
    /* 20220203_裕太変更 */
  }

  .subtitle {
    font-size: 22px;
  }

  #contactinfo {
    margin: auto;
    padding-bottom: 60px;
    color: #5C5C5C;
    width: 85%;
  }

  #tel {
    margin: auto;
    width: 80%;
    margin-bottom: 5%;
  }

  #tel img {
    width: 80px;
    height: auto;
  }

  #tel p{
    font-size: 18px;
  }

  #fax{
    width: 80%;
    margin-bottom: 5%;
  }

  #fax img{
    width: 80px;
    height: auto;
  }

  #fax p{
    font-size: 18px;
  }

  #mail {
    width: 80%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: auto;
    padding: 0;
    margin-bottom: 100px;
  }

  #mail img {
    height: auto;
    width: 80px;
  }

  #mail p {
    font-size: 18px;
  }

  .br::before {
    /*20220203_裕太追加*/
    content: "\A";
    white-space: pre;
  }

  /*========== メニューバー詳細 ==========*/
  nav {
    background-color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1px;
  }

  .blurry-menu {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .blurry-menu ul {
    display: inline-block;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
    -moz-box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
    box-shadow: inset 0 1px 0 #fff, 0 0px 0 1px #fff;
  }

  .blurry-menu ul:after {
    content: '';
    height: 46px;
    left: -50px;
    position: absolute;
    top: -32px;
    width: 120%;
    z-index: 1;
    background: -webkit-linear-gradient(left top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, .7));
    background: -moz-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    background: -ms-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    background: -o-linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    background: linear-gradient(left top, rgba(255, 255, 255, .1), rgba(255, 255, 255, .7));
    -webkit-transform: rotate(-2.4deg);
    -moz-transform: rotate(-2.4deg);
    -ms-transform: rotate(-2.4deg);
    -o-transform: rotate(-2.4deg);
    transform: rotate(-2.4deg);
  }

  .blurry-menu li {
    width: 100%;
    float: none;
  }

  .blurry-menu a {
    border-right: none;
    color: #4d4d4d;
    display: block;
    font-size: 16px;
    font-weight: 500;
    height: 24px;
    line-height: 24px;
    padding: 0 15px;
    position: relative;
    text-decoration: none;
    z-index: 2;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
  }

  .blurry-menu a:focus {
    outline: 0;
  }

  .blurry-menu li:first-child a {
    border-left: none;
  }

  .blurry-menu li:last-child a {
    border-right: none;
  }

  .blurry-menu ul:hover a {
    color: #ff5082;
  }

  .blurry-menu ul:hover a:hover {
    background: rgba(49, 125, 212, 0.11);
    color: rgb(255, 255, 255);
    line-height: 20px;
  }

  .blurry-menu ul:hover a:active {
    border-left-color: #f0f0f0;
    color: rgb(255, 255, 255);
    line-height: 24px;
    /*-webkit-box-shadow: inset 0 0 22px #e9e9e9;
  -moz-box-shadow: inset 0 0 22px #e9e9e9;
  box-shadow: inset 0 0 22px #e9e9e9;*/
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }

  /*========== ヘッダー（トップ）詳細 ==========*/
  header img {
    vertical-align: bottom;
    /*画像の余分な余白を消す*/
    width: 100%;
  }

  .topimg01 img {
    display: none;
  }

  .topimg02 img {
    display: inline;
  }


  /*========== お知らせ詳細 ==========*/
  #news {
    display: none;
  }

  .info {
    display: none;
    margin-top: 4px;
    max-width: 599px;
    background-color: #ff5082;
    font-size: 14px;
    line-height: 1.3;
    color: #ffffff;
  }

  .info ul {
    display: -webkit-flex;
    display: inline;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .info li {
    padding: 2px;
  }

  .tag {
    color: #fcec16;
    display: none;
  }

  .date {
    color: #fcec16;
    font-size: 16px;
  }

  /*========== contents_アビリティ ==========*/
  #aic {
    max-width: 100%;
    padding-bottom: 400px;
    /* 20220203_裕太変更 */
  }

  #gaiyou {
    margin: auto;
    max-width: 100%;
  }

  #gaiyou .img01 {
    display: none;
  }

  #gaiyou .img02 {
    display: inline;
  }

  #gaiyou .aiclogo {
    display: none;
  }

  .mtext {
    margin: 0 auto;
    text-align: left;
    font-size: 5vw;
    letter-spacing: 0.8vw;
    line-height:8vw;
    color: #ff5082;
    padding: 10px 0;
  }

  .stext {
    width: 100%;
    font-size: 4vw;
    text-align: left;
  }

  .stext br{
    display: none;
  }

  .aictext{
    display: none;
  }

  .aiclogo {
    margin: auto;
    width: 80%;
    padding: 10px 0;
  }

  .sp_br{
    display: inline-block;
  }
  

  #bunsyo {
    margin: 0;
    width: 92%;
    position: absolute;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: red;
    padding: 0;
  }
  

  /*========== contents_3つの特徴 ==========*/
  #tokutyou {
    max-width: 1680px;
    text-align: center;
    color: #5C5C5C;
  }

  #tokutyou ul {
    margin: auto;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .Three li img {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }

  .haikei1 {
    margin: 0;
    background: url(img/Three_features_bg.png);
    padding-top: 0;
    padding-bottom: 0;
  }

  .th1{
    display: none;
  }

  .th2{
    display: none;
  }

  .th3{
    display: none;
  }

  .th4 {
    display: inline-block;
  }


  /*========== contents_感染症対策・防災対策 ==========*/
  #various {
    max-width: 1680px;
    padding-bottom: 40px;
    /* 20220203_裕太変更 */
  }

  #kansen {
    margin: auto;
  }

  #kansen img {
    margin: auto;
    max-width: 90%;
    padding-bottom: 20px;
  }

  #kansen p {
    width: 90%;
    text-align: left;
  }

  .v1 {
    display: none;
  }

  .v2 {
    display: none;
  }

  .v3 {
    display: none;
  }

  .v4 {
    display: none;
  }

  .v5 {
    display: block;
  }

  /*========== contents_お仕事内容 ==========*/
  #job {
    max-width: 1680px;
    padding-bottom: 80px;
  }

  #job p {
    font-size: 15px;
  }

  #job ul {
    margin: auto;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  #job li {
    padding: 0;
  }

  #job li p {
    width: 90%;
    padding-bottom: 40px;
    /*20220203_裕太変更*/
    text-align: left;
  }

  #job li img {
    width: 90%;
    padding-bottom: 10px;
  }

  #job2 {
    margin: auto;
    text-align: center;
    padding-bottom: 50px;
  }

  #job2 .hidden_box .active {
    position: absolute;
    left: 5%;
    top: 0;
    opacity: 0;
    transition: 0.1s;
  }

  .pc_job {
    /*20220208_裕太追加*/
    display: none;
  }

  .sp_job {
    /*20220208_裕太追加*/
    display: inline;
  }

  #shisetugai {
    margin: auto;
    width: 90%;
    border: solid 1px #ff5082;
    padding-bottom: 16px;
    margin-bottom: 30px;
  }

  #shisetugai h2 {
    color: #ff5082;
  }

  #shisetugai p {
    font-size: 15px;
    /*20220203_裕太変更*/
    padding-bottom: 10px;
  }

  .chibashi {
    display: none;
  }

  .chibashi_sp {
    display: block;
    max-width: 90%;
    margin: 0 auto;
  }

  .hidden_box input:checked~.hidden_show {
    /*20220208_裕太追加*/
    margin: 0 auto;
    width: 80%;
    padding: 0;
    height: auto;
    opacity: 1;
  }

  /*========== contents_1日の流れ ==========*/
  #flow {
    max-width: 1680px;
    margin: auto;
    padding: auto;
    color: #5C5C5C;
    letter-spacing: 0.1em;
    padding-bottom: 10px;
    /*20220203_裕太変更*/
  }

  #flow .ruby {
    text-align: center;
  }

  #flow img {
    padding-bottom: 10px;
  }

  #flow ul {
    margin: auto;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  #flow li {
    width: 90%;
    padding: 0 20px;
    padding-bottom: 100px;
  }

  /*20220203_裕太削除
#flow p{
  padding-bottom: 10px;
}
*/

  .flowmin {
    text-align: left;
  }

  .ff {
    max-width: 1280px;
  }

  .sp_oneday {
    /*20220203_裕太追加*/
    display: block;
    margin: 0px;
    padding: 20px 0;
  }

  /*========== contents_ご利用までの流れ ==========*/
  #goriyou {
    margin: auto;
    width: 90%;
    padding-bottom: 20px;
    /*20220209_裕太変更*/
  }

  .midashi {
    margin: auto;
    max-width: 1280px;
    border: solid 1px #1d1d1d;
    margin-bottom: 30px;
  }

  .midashi p {
    width: 90%;
    padding-bottom: 30px;
  }

  .flowuse {
    padding-top: 30px;
    /*20220209_裕太変更*/
    padding-bottom: 30px;
    /*20220209_裕太変更*/
    border-bottom: solid 1px #ff5082;
  }

  .flowuse2 {
    padding-top: 30px;
    /*20220209_裕太変更*/
    padding-bottom: 40px;
    /*20220209_裕太変更*/
  }

  .flowuse h3 {
    font-size: 20px;
    margin: 0;
    color: #ff5082;
    text-align: left;
    padding-left: 10px;
  }

  .flowuse p {
    padding-bottom: 10px;
  }

  #goriyou .frame {
    margin: auto;
    border: solid 1px #1d1d1d;
  }

  .f1to5 {
    display: none;
  }

  #goriyou .preparation {
    margin-top: 30px;
    padding-bottom: 20px;
  }

  #goriyou .preparation .subtitle {
    padding: 20px;
  }

  #goriyou .preparation p {
    color: #ff5082;
  }

  .f1to5_sp {
    display: block;
    margin: auto;
    max-width: 800px;
  }

  .sp_f_title {
    font-size: 24px;
    color: #ff5082;
    font-weight: 600;
    padding-right: 10px;
  }

  .sp_f_title2 {
    padding-bottom: 3px;
  }

  /*アコーディオン説明*/
  .acd-check {
    display: none;
  }

  .acd-label {
    background: #f7f7f7;
    color: #ff5082;
    display: block;
    margin-bottom: 10px;
    padding: 10px 5px 15px 15px;
    position: relative;
    text-align: left;
    border-radius: 10px;
  }

  .acd-label:after {
    background: #f7f7f7;
    box-sizing: border-box;
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 52px;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
  }

  .acd-content {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
  }

  .acd-check:checked+.acd-label+.acd-content {
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
  }

  .acd-content p {
    text-align: left;
  }

  .acd-content .frame {
    text-align: center;
  }


  /*========== contents_雇用形態 ==========*/
  #koyoukeitai {
    max-width: 1680px;
    padding-bottom: 30px;
  }

  *,
  *:before,
  *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .koyou {
    width: 90%;
    margin: auto;
    text-align: left;
  }

  .koyou dl {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }

  .koyou dt {
    width: 100%;
    float: left;
    color: #ff5082;
    text-align: left;
    padding-left: 15px;
    padding-bottom: 10px;
  }

  .koyou dd {
    color: #5C5C5C;
  }

  .koyou {
    display: none;
  }

  .koyou_sp {
    display: block;
    width: 90%;
    margin: auto;
  }

  /*アコーディオン説明*/
  .acd-check {
    display: none;
  }

  .koyou_sp .acd-label {
    background: #ffffff;
    color: #ff5082;
    display: block;
    margin-bottom: 10px;
    padding: 15px 5px 15px 5px;
    position: relative;
    border-radius: 10px;
    text-align: center;
  }

  .koyou_sp .acd-label:after {
    background: #ffffff;
    box-sizing: border-box;
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 52px;
    padding: 10px 40px;
    position: absolute;
    right: 0;
    top: 0px;
  }

  .acd-content {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
  }

  .acd-check:checked+.acd-label+.acd-content {
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
  }

  .koyou_sp dl {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }

  .koyou_sp dt {
    width: 100%;
    color: #ff5082;
    text-align: left;
    padding-left: 15px;
    padding-bottom: 10px;
  }

  .koyou_sp dd {
    color: #5C5C5C;
    text-align: left;
  }

  /*========== contents_SNS・WEBサイト運営 ==========*/
  #sns {
    max-width: 1680px;
    margin: auto;
    padding-bottom: 50px;
    height: auto;
  }

  #sns .center {
    display: none;
  }

  .snsw {
    margin: auto;
    width: 100%;
  }

  .snscontents {
    display: inline-block;
    width: 100%;
    height: 300px;
  }

  .snscontents p {
    width: 90%;
    padding-bottom: 30px;
  }

  #facebook {
    color: #3B5980;
  }

  #ameba {
    color: #2D803C;
  }

  #gurumama {
    color: #FF7B80;
  }

  .snsbtn {
    position: relative;
    z-index: 1;
  }

  .btn1 {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
  }

  .btn2 {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 3;
    display: none;
  }

  .snsbtn:hover .btn2 {
    opacity: none;
  }

  .sp_sns_btn {
    display: none;
    margin: 0;
    padding: 10px 0;
  }

  .sns_main_img {
    display: none;
  }


  /*========== contents_よくある質問 ==========*/
  #Question {
    max-width: 1680px;
  }

  #Question h3 {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .QAcontents {
    border-bottom: solid 1px #ff5082;
  }

  .QAcontents p {
    padding-bottom: 80px;
  }

  .QAcontents2 p {
    padding-bottom: 80px;
  }

  .question {
    font-size: 26px;
    color: #ff5082;
    padding-bottom: 20px;
  }

  .q1to5 {
    margin: auto;
    width: 90%;
    display: none;
  }

  .q1to5_sp {
    display: block;
    margin: auto;
    max-width: 90%;
    padding-bottom: 40px;
  }

  .q1to5_sp p {
    width: 90%;
  }

  .sp_f_title {
    font-size: 24px;
    color: #ff5082;
    font-weight: 600;
    padding-right: 10px;
  }

  .sp_f_title2 {
    padding-bottom: 3px;
  }

  /*アコーディオン説明*/
  .q1to5_sp .acd-check {
    display: none;
  }

  .q1to5_sp .acd-label {
    background: #ffffff;
    color: #ff5082;
    display: block;
    margin-bottom: 10px;
    padding: 10px 5px 15px 15px;
    position: relative;
    text-align: left;
    border-radius: 10px;
  }

  .q1to5_sp .acd-label:after {
    background: #ffffff;
    box-sizing: border-box;
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 52px;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
  }

  .q1to5_sp .acd-content {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
  }

  .q1to5_sp .acd-check:checked+.acd-label+.acd-content {
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
  }

  .q1to5_sp .acd-content p {
    text-align: left;
  }

  .q1to5_sp .acd-content .frame {
    text-align: center;
  }

  /*========== contents_アクセス ==========*/
  #access {
    width: 90%;
    padding-bottom: 30px;
    margin: auto;
  }

  #address h2 {
    color: #5C5C5C;
  }

  #bus h2 {
    color: #ff5082;
    font-size: 20px;
  }

  #bus p {
    font-size: 16px;
  }

  #access ul {
    margin: auto;
    padding: auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  #access ul img {
    padding-bottom: 15px;
  }

  .route-pc {
    display: none;
  }

  .route-sp {
    display: block;
  }

  .route li {
    width: 100%;
  }

  .route li p {
    text-align: left;
  }

  .center {
    margin: 0;
  }


  /*========== 利用者募集中 ==========*/
  #bosyu {
    height: auto;
    margin: auto;
  }

  #bosyu h2 {
    color: #ff5082;
  }

  .sp_otoi {
    width: 65%;
    margin: 0 auto;
    display: block;
    margin-top: 0px;
    margin-bottom: 100px;
  }

  /*========== フッター詳細 ==========*/
  footer {
    margin: auto;
    max-width: 1680px;
    letter-spacing: 0.1em;
    line-height: 1.7em;
  }

  footer p {
    color: rgb(255, 255, 255);
  }

  #footertop {
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
  }

  #footertop p {
    width: 100%;
    font-weight: 600;
    padding-left: 0;
    text-align: center;
    display: inline-block;
  }

  .hidari {
    border-right: none;
    padding-bottom: 10px;
  }

  #footerdown {
    font-weight: 100;
    padding: 11px;
    height: 45px;
  }

  #footerdown p {
    font-size: 12px;
  }

  /*========== お問い合わせ詳細 ==========*/
  .otoiawase0 {
    margin: auto;
    width: 310px;
    padding-top: 50px;
    position: relative;
    z-index: 1;
    display: none;
  }

  .otoiawase1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
  }

  .otoiawase2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 3;
    display: none;
  }

  .otoiawase0:hover .otoiawase2 {
    opacity: 1;
    display: none;
  }

  /*========== 階層分け ==========*/
  .illust {
    position: relative;
    z-index: 1;
  }

  .illust1 {
    position: absolute;
    top: 2%;
    left: 450px;
    z-index: 2;
  }

  .illust2 {
    max-width: 100%;
    position: absolute;
    top: -60px;
    left: 3%;
    z-index: 2;
    display: none;
  }

  .illust3 {
    position: absolute;
    top: -48px;
    left: 80%;
    z-index: 2;
    display: none;
  }

  .illust4 {
    position: absolute;
    top: -48px;
    left: 80%;
    opacity: 0;
    z-index: 3;
    display: none;
  }

  .illust:hover .illust4 {
    opacity: 1;
  }

  /*========== 背景設定一覧 ==========*/
  /*グレー背景設定*/
  .gray {
    background-color: #f7f7f7;
  }

  /*ピンク背景設定*/
  .bgpink {
    background-color: #ff5082;
    color: #fff;
  }

  /*濃いグレー背景設定*/
  .darkgray {
    background-color: #4d4d4d;
    color: #fff;
    padding-top: 0;
  }

  /*========== スコアページ詳細 ==========*/
  .scoremin {
    margin: auto;
    width: 90%;
    border-bottom: solid 1px #ff5082;
    padding-top: 40px;
  }

  .scoremin h2 {
    margin: auto;
    font-size: 45px;
    color: #ff5082;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .scoremin h3 {
    margin: auto;
    margin-bottom: 50px;
    width: 150px;
    font-size: 35px;
    color: #ffffff;
    background-color: #ff5082;
    border-radius: 30px;
    padding-bottom: 8px;
  }

  .scoremin2 h3 {
    margin: auto;
    color: #ff5082;
    font-size: 35px;
    padding-top: 80px;
    padding-bottom: 0px;
  }

  .scoremin p {
    font-size: 16px;
    padding-bottom: 80px;
  }

  #pdf {
    width: 80%;
    padding-bottom: 100px;
    font-size: 4vw;
  }

  /*========== メンテナンス ==========*/
  .maintenance{
    width: 100%;
    margin: 100px 0 100px 0;
  }

  .maintenance h8{
    width: 90%;
    font-size: 36px;
    line-height: 150%;
  }

  .maintenance p{
        font-size: 20px;
    width: 80%;
    padding-top: 30px;
  }

  .maintenance img {
    width: 80%;
  }

  .toppage {
    text-align: center;
    padding: 50px;
    font-size: 18px;
  }

  .break_main{
    display: block;
  }

  .break{
    display: block;
  }


  /*========== ハンバーガーメニュー ==========*/
  #hamburger .btn-gNav {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    text-align: left;
  }

  #hamburger .btn-gNav span {
    position: absolute;
    width: 80%;
    height: 4px;
    background: #ff5082;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }

  #hamburger .btn-gNav span:nth-child(1) {
    top: 0;
  }

  #hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
  }

  #hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
  }

  #hamburger .btn-gNav.open span:nth-child(1) {
    background: #ff5082;
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #hamburger .btn-gNav.open span:nth-child(2),
  #hamburger .btn-gNav.open span:nth-child(3) {
    top: 10px;
    background: #ff5082;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2;
    padding-top: 50px;
    transition: .3s;
  }

  #gNav.open {
    right: 0px;
  }

  #gNav .gNav-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    /*justify-content: center;*/
  }

  #gNav .gNav-menu li {
    display: block;
    padding: 20px 30px;
  }

  #gNav .gNav-menu li a {
    color: #ff5082;
    text-decoration: none;
  }


  @media screen and (min-width: 600px) {
    .btn-gNav {
      display: none;
    }

    #gNav {
      position: fixed;
      top: 0;
      right: 0;
      height: 50px;
    }

    #gNav .gNav-menu {
      display: flex;
      flex-direction: row;
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      right: 0;
      padding-left: 50px;
    }

    #gNav .gNav-menu li {
      padding-top: 5px;
    }
  }

  /*========== ギャラリーページ詳細 ==========*/
  .select a {
    display: inline-block;
  }

  .select img {
    padding: 0 25px;
    display: inline-flex;
  }

  .photo {
    margin: auto;
    width: 100%;
  }

  .photo img {
    padding: 10px 10px;
    display: inline-flex;
    border-radius: 20px;
  }

  .minititle p {
    width: 90%;
    background-color: #ff5082;
    border-radius: 30px;
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 32px;
    color: #ffffff;
  }

  .last {
    padding-bottom: 60px;
  }

  .plus {
    padding-top: 40px;
    padding-bottom: 40px;
  }


  /*========== 採用情報ページ ==========*/
  .recruit h1 {
    color: #ff5082;
    font-size: 38px;
    padding-bottom: 0;
  }

  .recruit h1:before {
    display: none;
  }

  .recruit h2 {
    color: #ff5082;
    font-size: 24px;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .recruit-btn {
    padding-bottom: 70px;
  }

  .recruit-r h1 {
    color: #ff9a55;
    font-size: 38px;
  }

  .recruit-r h1:before {
    display: none;
  }

  .recruit-r h2 {
    color: #ff9a55;
    font-size: 24px;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .recruit p {
    width: 90%;
  }

  .recruit-c img {
    padding-top: 15px;
    width: 90%;
    margin: 15px;
  }

  .recruit-c {
    padding-bottom: 40px;
  }

  .r_contents {
    display: inline-block;
    height: 80px;
    width: 80%;
  }

  .r_btn {
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .last-btn {
    padding-bottom: 100px;
  }

  .r_btn1 {
    position: absolute;
    top: 30px;
    left: 0px;
    z-index: 2;
  }

  .r_btn2 {
    position: absolute;
    top: 30px;
    left: 0px;
    opacity: 0;
    z-index: 3;
  }

  .r_btn:hover .r_btn2 {
    opacity: 1;
  }

  #goriyou .space::after {
    content: "\A";
    white-space: pre;
  }

  #goriyou br {
    display: none;
  }

  /*========== お仕事依頼 ==========*/
  h10 {
    font-size: 24px;
    color: #ff5082;
  }

  h11 {
    color: #ffa710;
  }

  .jr_title {
    font-size: 24px;
    color: #ff5082;
    padding-bottom: 24px;
    width: 90%;
    margin: auto;
  }

  .jr_midashi {
    padding-bottom: 60px;
    width: 90%;
    margin: auto;
    text-align: left;
  }

  .jr_contents {
    text-align: left;
  }

  .jr_contents p {
    padding-top: 6px;
    padding-bottom: 40px;
  }

  .jr_main {
    padding-bottom: 100px;
    width: 90%;
    margin: auto;
  }

  #lancers {
    margin: auto;
    border-radius: 50px;
    width: 90%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
  }

  #lancers p {
    color: #0c6cd4;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 30px;
  }

  .fixed_banner{
   display: none; 
  }

    .fixed_banner_pc {
    display: none;
  }

}