@charset "utf-8";

/* やる事リスト */
/* ファビコンの設定 */
/* スマホトップの設定 */
/* 支援派遣で時間を登録した際の見え方確認 */
/* トップ画像の写真を集める */

body {
  margin: 0;
  background-color: gray;
}
h1 {
  font-family: "Train One", system-ui;
  font-size: 50px;
  margin: 0;
  color: antiquewhite;
}
/* h2はヘッダーのサブタイトル部分のデザイン */
h2 {
  color: #fff;
  text-align: right;
}
h3 {
  margin: 0;
  font-family: "BIZ UDPMincho", serif;
  font-size: 24px;
  color: #fff;
}

p.footerString.footerFont {
  /* font-family: "Fredoka One", cursive; */
  color: #fff;
  margin-bottom: 0;
}

p {
  color: brown;
  font-family: "BIZ UDPMincho";
}

header {
  width: 100%;
  height: 100px;
  background-color: brown;
  position: fixed;
  z-index: 100;
}

div#headerPosition {
  height: 100px;
}
div#titleDiv {
  display: flex;
}
input.indexBtn {
  border: none;
  background: none;
  margin-right: 20px;
  color: antiquewhite;
  font-family: serif;
}

img#logo {
  width: 350px;
  position: fixed;
  top: 190px;
  right: 10%;
}

div#subtitle {
  width: 300px;
  margin-top: 25px;
  margin-left: auto;
}
div#topImageMessageDiv {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-family: "BIZ UDPMincho";
  font-size: 28px;
  /* color: #fff; */
  margin: 0 5%;
}
p.topImageMessage {
  color: #fff;
  display: none;
}

div#menu {
  display: flex;
  /* text-align: end; */
  justify-content: flex-end;
}

/* 時差表示の共通スタイル */
/* #firstView.loaded, */
div#firstViewLogoDiv.loaded {
  opacity: 1;
}

div#firstView {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: brown;
  z-index: 9999;
  /* text-align: center; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* opacity: 0; */
  transition: opacity 2s ease-in-out;
}
#firstViewLogoDiv {
  width: 400px;
  /* background: aliceblue; */
  height: 400px;
  margin: auto;
  width: 300px;
  /* background: aliceblue; */
  height: 300px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
#firstViewLogoImg {
  width: 100%;
}

/* スマホ用MENUボタン↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/*ボタン内側*/

.openbtn .openbtn-area {
  transition: all 0.4s;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
  background-color: brown;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
  background-color: brown;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
  background-color: brown;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.openbtn.active .openbtn-area {
  transform: rotateY(-360deg);
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}
/* スマホ用MENUボタン↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* スマホ用メニュー画面↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
div#sumahoMenuBack {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 90px;
  z-index: 997;
  opacity: 0.9;
  /* display: none; */
}
div#sumahoMenuMain {
  margin: 5%;
  text-align: center;
}
input.sumahoInputBtn {
  border: none;
  background: none;
  font-family: "BIZ UDPMincho";
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
}
.sumahoMenuLine {
  height: 1px;
  background-color: #333;
}
/* スマホ用メニュー画面↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/*
div#menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto 20px;
}

.mainMenu {
  display: flex;
} */

/* .indexBtn input:hover {
  opacity: 0.9;
  background-image: url(images/dot.jpg);
} */

/* input.indexBtn {
  font-size: 20px;
  font-family: "Hiragino Maru Gothic ProN";
  background-color: coral;
  border: 2px solid chocolate;
  border-radius: 25px;
  color: #fff;
  width: 100%;
  padding: 15px 60px;
  margin-top: 20px;
  text-align: center;
} */

/* .indexBtn1 input:hover {
  opacity: 0.9;
  background-image: url(images/dot.jpg);
} */

/* input.indexBtn1 {
  font-size: 20px;
  font-family: "Hiragino Maru Gothic ProN";
  background-color: coral;
  border: 2px solid chocolate;
  border-radius: 25px;
  color: #fff;
  width: 100%;
  padding: 15px 60px;
  margin-top: 20px;
  text-align: center;
}
.indexBtn2 input:hover {
  opacity: 0.9;
  background-image: url(images/dot.jpg);
} */

/* input.indexBtn2 {
  font-size: 20px;
  font-family: "Hiragino Maru Gothic ProN";
  background-color: coral;
  border: 2px solid chocolate;
  border-radius: 25px;
  color: #fff;
  width: 100%;
  padding: 15px 60px;
  margin-top: 20px;
  text-align: center;
} */
div#top_backTextDiv {
  position: fixed;
  top: 40%;
  left: 40px;
  width: 60%;
  font-size: 25px;
}
p#output {
  font-family: "BIZ UDPMincho";
  color: #fff;
}

.footerDiv {
  float: left;
}

/* 画像を0.5秒かけて表示させる用ーーーーーーーーーーーーー */
img#indexTopImage1,
img#indexTopImage2,
img#indexTopImage3 {
  width: 65%;
  /* margin-right: 250px; */
  display: none;
}
img#indexTopImage {
  width: 65%;
}
/* img#indexTopImage2,
img#indexTopImage3 {
  display: none;
} */
#topImage {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 画像を0.5秒かけて表示させる用ここまでーーーーーーーーーーーーー */

div#topImage,
div#topImageFirst {
  margin-top: 50px;
  display: flex;
  z-index: 1;
  position: relative;
}
div#topImageFirst {
  margin-bottom: 1100px;
}

h2 {
  width: 220px;
  height: 90px;
  font-family: "BIZ UDPMincho";
  margin-left: 50px;
  text-align: center;
  /* background-color: coral; */
  color: #fff;
  border-radius: 15px;
  display: table-cell;
  vertical-align: middle;
}

div#kategoriSyousaiHaikei {
  background-color: antiquewhite;
  /* border-radius: 25px; */
  /* margin: 0 50px 40px; */
  padding: 20px;
  z-index: 10;
  position: relative;
  opacity: 0.95;
}
div#kategoriMeiHaikei {
  margin: 50px 0 -30px 30px;
  z-index: 20;
  position: relative;
}

footer {
  background-color: brown;
  height: 50px;
  margin-top: 200px;
}

p.footerString {
  margin-top: 0;
  text-align: end;
}

/* トップへボタンのCSSーーーーーーーーーーーーーーーーーーーーーー */
.btnripple2 {
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*波紋の形状*/
  display: inline-block;
  background: coral;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  outline: none;
  font-family: "Hiragino Maru Gothic ProN";
  /* line-height: 70px; */
  /*アニメーションの設定*/
  transition: all 0.3s;
}

/*波形を2つ設定*/
.btnripple2::after,
.btnripple2::before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: -25%;
  top: -25%;
  /*波形の形状*/
  border: 1px solid coral;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  animation: 1s circleanime linear infinite;
}

/*波形の2つ目は0.5秒遅らせてアニメーション*/
.btnripple2::before {
  animation-delay: 0.5s;
}

/*波形のアニメーション*/
@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* headerのレスポンシブ ーーーーーーーーーーーーーーーーーーーーーーーーー*/
/* 横スクリーンサイズが650px以下の場合に適用 */
@media screen and (max-width: 1400px) {
  img#logo {
    width: 250px;
  }
}
@media screen and (max-width: 1100px) {
  img#logo {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  h2 {
    width: 180px;
  }
  img#logo {
    width: 150px;
  }
  div#topImageFirst {
    margin-top: 0;
    display: block;
  }
  img#indexTopImage1,
  img#indexTopImage2,
  img#indexTopImage3 {
    width: 100%;
  }
  img#indexTopImage {
    width: 100%;
  }
  div#top_backTextDiv {
    left: 3%;
    width: 90%;
    font-size: 20px;
    top: 50%;
  }
}
@media screen and (max-width: 700px) {
  div#titleDiv {
    display: block;
  }
  h1 {
    font-size: 40px;
  }
  div#subtitle {
    margin-top: 0;
  }
  h3 {
    font-size: 20px;
  }
}
/* 横スクリーンサイズが650px以下の場合に適用 */
@media screen and (max-width: 550px) {
  div#subtitle {
    width: 250px;
  }
  .mainMenu {
    display: none;
  }
  header {
    height: 90px;
  }
  /* スマホメニュー */
  .sumahoMenuDiv {
    position: fixed;
    top: 90px;
    right: 0;
    z-index: 998;
  }
}
@media screen and (max-width: 450px) {
  div#topImageFirst {
    margin-top: 50px;
  }
}

/* 共通menuのレスポンシブーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* 横スクリーンサイズが1150px以下の場合に適用 */
@media screen and (max-width: 1150px) {
  /* menu */
  /* .indexBtn,
  .indexBtn1,
  .indexBtn2 {
    width: 45%;
    margin: auto;
  }
  input.indexBtn,
  input.indexBtn1,
  input.indexBtn2 {
    padding: 15px 0;
  } */
  /* topImage */
  /* img#indexTopImage {
    width: 80%;
  } */
  /* .indexBtn2 {
    width: 75%;
  } */
  /* .mainMenu {
    display: block;
  } */
}
/* 横スクリーンサイズが1150px以上の場合に適用 */
@media screen and (min-width: 1551px) {
  /* .indexBtn2 {
    margin-right: 5%;
  }
  .indexBtn1 {
    margin-right: 2.5%;
  } */
}
/* 横スクリーンサイズが1550px以下の場合に適用 */
@media screen and (max-width: 1550px) {
  /* .indexBtn2 {
    margin-right: 4%;
  }
  .indexBtn1 {
    margin-right: 2.5%;
  } */
}
/* 横スクリーンサイズが1520px以下の場合に適用 */
@media screen and (max-width: 1520px) {
  /* .indexBtn2 {
    margin-right: 3%;
  } */
}
/* 横スクリーンサイズが1350px以下の場合に適用 */
@media screen and (max-width: 1350px) {
  /* .indexBtn2 {
    margin-right: 2%;
  } */
}
/* 横スクリーンサイズが1230px以下の場合に適用 */
@media screen and (max-width: 1230px) {
  /* .indexBtn2 {
    margin-right: 1%;
  } */
}
/* 横スクリーンサイズが1150px以下の場合に適用 */
@media screen and (max-width: 1150px) {
  /* .indexBtn1 {
    margin: auto;
  }
  .indexBtn2 {
    margin: -20px auto 20px;
  } */
}

/* 会社TOP画面ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
h4.indexH4 {
  text-align: left;
  color: brown;
}

div#kategoriDiv2 {
  width: 100%;
}
/* 下記はマスタログインリンク文字 */
a.footerA {
  color: #fff;
}

/* 横スクリーンサイズが800px以上の場合に適用 */
@media screen and (min-width: 800px) {
  .indexDiv2 {
    display: flex;
  }
}
/* 人物紹介画面ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

img.zinbutuImage {
  width: 600px;
}
img.zinbutuLeftImage {
  width: 600px;
}

div#zinbutuSyoukai {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 95%;
  margin: 0 auto;
  z-index: 30;
  position: relative;
}
.zinbutu {
  background-color: #fff;
  /* border-radius: 25px; */
  padding: 0 20px 10px 20px;
  margin: 30px 15px 0px;
}

img.zinbutuImage {
  width: 450px;
  margin-left: 40%;
  margin-top: -80%;
}
/* 人物紹介画面のレスポンシブーーーーーーーーーーーーーーーーーーーーーーーーー */

/* 横スクリーンサイズが840px以下の場合に適用 */
@media screen and (max-width: 840px) {
  img.zinbutuImage {
    width: 300px;
  }

  .zinbutu {
    width: 80%;
  }
}
/* 横スクリーンサイズが500px以下の場合に適用 */
@media screen and (max-width: 500px) {
  img.zinbutuImage {
    margin-left: -10%;
    margin-top: -10%;
  }
}
/* アクセス画面ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
div#kategoriSyousaiHaikeiAccess {
  background-color: antiquewhite;
  margin: 0 50px 40px;
  padding: 20px;
  width: 100%;
  z-index: 10;
  position: relative;
}
div#accessArea {
  margin-top: 140px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  z-index: 99;
  position: relative;
}

iframe {
  width: 600px;
  height: 450px;
}

/* アクセス画面のレスポンシブーーーーーーーーーーーーーーーーーーーーーーーーー */
/* 横スクリーンサイズが1250px以下の場合に適用 */
@media screen and (max-width: 1250px) {
  div#kategoriSyousaiHaikeiAccess {
    margin: 0 0 40px;
    padding: 10px;
  }

  div#accessArea {
    margin: 30px auto;
    display: block;
    width: 80%;
  }
  iframe {
    width: 100%;
    height: 450px;
  }
}

/* 募集画面ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

h1.infoH1Part {
  font-size: 25px;
}

/* 支援派遣画面ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
table.sienhakenHyouTable {
  background-color: #fff;
}
h1.sienhakenH1 {
  width: 250px;
}

h3.sienhakenH3 {
  margin: 0;
  color: brown;
  background: antiquewhite;
}
th.sienhakenTh {
  width: 100px;
}
.sienhakenHyouDiv {
  margin-bottom: 100px;
}

h3.sienhakenH3 {
  font-size: 25px;
}
table.sienhakenHyouTable {
  font-size: 20px;
  margin-bottom: 30px;
}
th.sienhakenTh {
  width: 193px;
}
.sienhakenDiv {
  position: relative;
  z-index: 99;
}
table.sienhakenHyouTable {
  font-family: "BIZ UDPMincho";
  color: sienna;
}

/* 横スクリーンサイズが1474px以上ijouの場合に適用 */
/* @media screen and (min-width: 1474px) {
  .sienhakenHyouDiv {
    display: flex;
  }
  .sienhakenDiv {
    margin: 0 auto;
  }
} */
/* 横スクリーンサイズが700px以下の場合に適用 */
@media screen and (max-width: 700px) {
  th.sienhakenTh {
    width: 200px;
  }
  /* table.sienhakenHyouTable {
    margin: auto;
  } */
  tr.sienhakenTr {
    text-align: center;
    font-size: 16px;
  }
  h3.sienhakenH3 {
    font-size: 20px;
  }
  table.sienhakenHyouTable {
    font-size: 16px;
  }
}
/* 横スクリーンサイズが410px以下の場合に適用 */
@media screen and (max-width: 410px) {
  table.sienhakenHyouTable {
    width: 100%;
  }
  th.sienhakenTh {
    width: auto;
  }
}

/* 職場環境等要件について画面ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
p.syokubaKankyouNone {
  color: lightgray;
}
h2.syokubaKankyouH2 {
  width: auto;
}
/* 横スクリーンサイズが410px以下の場合に適用 */
@media screen and (max-width: 460px) {
  h2.syokubaKankyouH2 {
    font-size: 15px;
  }
}
