@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  min-width: 320px;
  position: relative;
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #566369;
}

h1, h2, h3 {
  margin: 0;
}

body * {
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol {
  margin: 0;
  padding-left: 20px;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 25px;
}

img {
  width: 100%;
  height: auto;
}

/* 最大幅指定用クラス	*/
.w1000 {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.w800 {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: auto;
}

/* flexbox指定用クラス	*/
/*フレックスにするブロック	*/
.flex {
  display: flex;
}

/* 改行させるもの	*/
.flex_wrap {
  -webkit-box-lines: multiple;
  flex-wrap: wrap;
}

.flex-column {
  display: flex;
  justify-content: center;
}
@media (max-width: 769px) {
  .flex-column {
    flex-direction: column;
  }
}

/*iOSのフォーム独自デザインリセット*/
input[type=submit],
input[type=reset],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  -moz-appearance: button;
       appearance: button;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=reset]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

h2 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.2rem;
}
@media (max-width: 769px) {
  h2 {
    font-size: 2.2rem;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 769px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 769px) {
  .sp-only {
    display: block;
  }
}

.red {
  color: red;
}

.left {
  text-align: right;
}

.block {
  padding: 60px 0;
}
.block h2 {
  margin-bottom: 50px;
  text-align: center;
  color: #11337B;
}
@media (max-width: 769px) {
  .block {
    padding: 30px 0;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 769px) {
  .block h2 {
    margin-bottom: 25px;
  }
}

main {
  min-height: calc(100vh - 180px - 247px);
}
@media (max-width: 769px) {
  main {
    min-height: calc(100vh - 147px - 234px);
  }
}

/**ファーストビュー**/
.firstview {
  width: 100%;
  height: auto;
}
.firstview__block1 {
  position: relative;
  background-color: #11337B;
  height: 700px;
  color: white;
  z-index: 0;
}
.firstview__block1 a {
  color: white;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.firstview__block1 a:hover {
  text-shadow: 1px 1px 3px #ffffcf;
}
.firstview__block1--img {
  position: absolute;
  right: 0;
  top: calc(50% - 240px);
  z-index: 1;
}
.firstview__block1--img img {
  max-width: 1280px;
  height: auto;
}
.firstview__block1--title {
  position: absolute;
  top: calc(50% - 80px);
  left: 10%;
  z-index: 2;
}
.firstview__block1--title h2 {
  font-size: 5rem;
  letter-spacing: 2rem;
}
.firstview__block1--txt {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 2;
  letter-spacing: 1rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.firstview__block1--txt p {
  font-size: 2.6rem;
  margin: 30px 0;
  width: -moz-fit-content;
  width: fit-content;
}
.firstview__block2 {
  text-align: center;
}
.firstview__block2 p {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 4.2rem;
}
@media (max-width: 769px) {
  .firstview__block1 {
    height: auto;
  }
  .firstview__block1--img {
    position: relative;
    top: inherit;
    left: inherit;
  }
  .firstview__block1--title {
    position: relative;
    top: inherit;
    left: inherit;
    text-align: center;
  }
  .firstview__block1--title h2 {
    padding: 20px 0;
    font-size: 3rem;
    letter-spacing: 1rem;
  }
  .firstview__block1--txt {
    position: relative;
    top: inherit;
    left: inherit;
    width: 90%;
    margin: 20px auto 0 auto;
    padding-bottom: 20px;
  }
  .firstview__block1--txt p {
    font-size: 1.6rem;
    letter-spacing: 0.5rem;
    margin: 0;
  }
  .firstview__block2 p {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}

.arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 46px;
  height: 1px;
  background-color: white;
  position: relative;
}
.arrow:after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background-color: white;
  position: absolute;
  right: -2px;
  top: -5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/**ダイゼンで働く６つの理由**/
.reasons__inside {
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
}
.reasons li {
  margin-bottom: 50px;
  font-weight: bold;
}
.reasons li .flex {
  align-items: center;
}
.reasons h3 {
  color: #11337B;
  font-size: 1.8rem;
}
@media (max-width: 769px) {
  .reasons .flex {
    align-items: flex-start !important;
  }
}

.diamond {
  position: relative;
  width: 40px;
  height: 40px;
  background: #00A7CD;
  transform: rotate(45deg);
  margin-right: 20px;
}
.diamond__txt {
  width: 40px;
  transform: rotate(-45deg);
  text-align: center;
}
.diamond__txt p {
  position: absolute;
  top: calc(50% + 15px);
  left: calc(50% - 15px);
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  font-weight: bold;
}

/**メッセージ**/
.message figure {
  max-width: 300px;
  float: left;
  margin: 0 15px 0 0;
}
.message p {
  line-height: 3rem;
}
.message--bold {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  background-image: linear-gradient(0, #1F93BE, #e9efff); /* マーカーの角度調整箇所 */
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 40%;
  display: inline;
  line-height: 50px;
}
.message--txt {
  margin-top: 20px;
}
@media (max-width: 769px) {
  .message {
    text-align: center;
  }
  .message figure {
    float: none;
    margin: 15px auto 15px auto;
  }
  .message--bold {
    font-size: 2.2rem;
    text-align: center;
  }
  .message--txt {
    text-align: left;
  }
}

/**ダイゼンで活躍できる人**/
.people__img {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 auto;
}
.people__txt {
  margin: 90px auto;
  color: #11337B;
}
.people__txt--vertical {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  writing-mode: vertical-rl;
  color: #00A7CD;
  border-right: solid 2px #566369;
  padding: 15px 0;
}
.people__txt--vertical p {
  font-size: 3.6rem;
  line-height: normal;
}
.people__txt--normal {
  padding-left: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 769px) {
  .people__txt {
    margin: 30px auto;
  }
  .people__txt--vertical p {
    font-size: 2.6rem;
  }
}

.peope__txt--inside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px 0;
}
@media (max-width: 769px) {
  .peope__txt--inside {
    margin-bottom: 50px;
  }
}

.works {
  background-color: #E2F1F4;
}
.works__inside {
  padding: 50px;
  background-color: white;
  position: relative;
  max-width: 1150px;
  width: 90%;
  margin: 100px auto 0 auto;
}
.works__inside--icon {
  max-width: 380px;
  position: absolute;
  right: 0;
  top: -120px;
}
.works__inside--qs {
  align-items: center;
  margin-bottom: 50px;
}
.works__inside--qs img {
  max-width: 60px;
  margin-right: 10px;
}
.works__inside--qs p {
  color: #11337B;
  font-weight: bold;
  font-size: 2.2rem;
}
.works__inside--as .flex-column {
  align-items: flex-start;
  max-width: 750px;
  margin-right: 0;
  margin-left: auto;
  justify-content: flex-start;
}
.works__inside--as img {
  max-width: 60px;
  margin: 0 10px 10px 0;
}
.works__inside--as p {
  font-weight: bold;
  line-height: 3rem;
  max-width: 660px;
  padding-left: 70px;
}
.works__inside--aicon {
  position: relative;
}
.works__inside--aicon img {
  position: absolute;
  width: 60px;
  top: -35px;
}
.works__inside2 {
  margin-top: 200px;
}
.works__inside2--icon {
  max-width: 610px;
  position: absolute;
  right: 0;
  top: -180px;
}
@media (max-width: 769px) {
  .works__inside {
    margin: 120px auto 0 auto;
    padding: 70px 30px 30px 30px;
  }
  .works__inside--qs {
    margin-bottom: 0;
  }
  .works__inside--qs img {
    max-width: 45px;
    margin: 0 10px 10px 0;
  }
  .works__inside--qs p {
    font-size: 2rem;
  }
  .works__inside--as img {
    max-width: 45px;
    margin: 0;
  }
  .works__inside--as p {
    margin-bottom: 50px;
    padding-left: 0;
  }
  .works__inside2 {
    margin-top: 300px;
  }
  .works__inside2--icon {
    max-width: 320px;
    position: absolute;
    right: 0;
    top: -260px;
  }
  .works__inside--aicon {
    position: relative;
  }
  .works__inside--aicon img {
    position: relative;
    width: 45px;
    top: inherit;
  }
}

.welfare__inside {
  display: grid;
  display: -ms-grid;
  grid-template-columns: repeat(auto-fit, 164px);
  justify-content: center;
  gap: 50px;
}
@media (max-width: 769px) {
  .welfare__inside {
    grid-template-columns: repeat(auto-fit, 130px);
    gap: 20px;
  }
}

.other__inside {
  max-width: 720px;
  margin: 0 auto;
}
.other__inside .flex-column {
  align-items: center;
  margin-bottom: 15px;
  justify-content: flex-start;
}
.other__inside .flex-column img {
  max-width: 57px;
  margin-right: 50px;
}
.other__inside .flex-column p {
  font-weight: bold;
  font-size: 2rem;
}
.other__inside .border {
  max-width: 580px;
  margin: 0 auto;
}
.other__inside--block {
  margin: 20px auto 30px auto;
  max-width: 590px;
}
.other__inside--block h3 {
  font-size: 1.8rem;
  background-color: #01B4D6;
  padding: 10px;
  width: 133px;
  text-align: center;
  color: white;
  border-radius: 12px;
}
.other__inside--block p {
  margin: 10px 0 0 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 30px;
}
@media (max-width: 769px) {
  .other__inside .flex-column {
    margin-bottom: 20px;
  }
  .other__inside .flex-column img {
    max-width: 45px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .other__inside .flex-column p {
    font-size: 1.6rem;
  }
  .other__inside--block h3 {
    margin: 0 auto;
  }
  .other__inside--block p {
    margin: 10px 0 0 0;
  }
}

.w895 {
  max-width: 895px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 769px) {
  .w895 {
    width: 50%;
  }
}

/* 入社までの流れ */
#flow {
  width: 100%;
}
#flow .flow__box {
  position: relative;
  border: 3px solid #01B4D6;
  padding: 16px;
  color: #01B4D6;
  margin-top: 85px;
}
#flow .flow__box p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
#flow .flow__box p.flow-text {
  text-align: left;
  padding: 10px 0 0 90px;
}
#flow .flow__box p span {
  font-size: 2rem;
  font-weight: 500;
}
#flow .flow__box p span.pc-only {
  display: inline;
}
@media (max-width: 769px) {
  #flow .flow__box p span.pc-only {
    display: none;
  }
}
#flow .flow__box.first {
  border: 1px solid #566369;
  color: #566369;
  margin: 0;
}
#flow .flow__box.last {
  background-color: #01B4D6;
  color: #ffffff;
}
#flow .flow__box.last::before {
  display: none;
}
#flow .flow__box::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-right: 1px solid #566369;
  border-bottom: 1px solid #566369;
  transform: translate(-50%) rotate(45deg);
  bottom: -50px;
  left: 50%;
}

/* 募集要項 */
#entry p {
  color: #11337B;
  text-align: center;
  margin-bottom: 10px;
}
#entry a {
  display: block;
  margin: 10px auto;
  font-size: 2.4rem;
  text-align: center;
  padding: 10px;
  width: 100%;
  color: #ffffff;
  background-color: #11337B;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  border: 3px solid #11337B;
  position: relative;
  overflow: hidden;
}
#entry a:hover {
  background-color: #ffffff;
  color: #11337B;
}
#entry a.kirakira {
  background: linear-gradient(-20deg, #11337B 50%, #4075e5 60%, #11337B 70%);
  background-size: 600% 100%;
  animation: shine 20s infinite linear;
}
#entry a.kirakira:hover {
  background: none;
  background-size: 100%;
  background-color: #ffffff;
  color: #11337B;
  animation: none;
}

@keyframes shine {
  0% {
    background-position-x: 600%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -600%;
  }
}
footer {
  color: #11337B;
}
footer a {
  color: #11337B;
}
footer .copyright {
  margin-top: 30px;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.4rem;
}
@media (max-width: 769px) {
  footer {
    padding-bottom: 45px !important;
  }
}

/*スクロールリンクの形状*/
.scroll-top {
  /*表示位置*/
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s; /*それぞれに0.5秒の変化のアニメーション*/
  /*縦書き*/
  writing-mode: vertical-rl;
  /*改行禁止*/
  white-space: nowrap;
  /*矢印の動き*/
  animation: arrowmove 1s ease-in-out infinite;
}
.scroll-top a {
  text-decoration: none;
  color: #666;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}
.scroll-top a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #666;
}
.scroll-top a:before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(31deg);
}
@media (max-width: 769px) {
  .scroll-top {
    bottom: 50px;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 55px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 55px;
  }
}
/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}

.scroll-top2 {
  /*表示位置*/
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 2;
  /*縦書き*/
  writing-mode: vertical-rl;
  /*改行禁止*/
  white-space: nowrap;
  /*矢印の動き*/
  animation: arrowmove 1s ease-in-out infinite;
}
.scroll-top2 a {
  text-decoration: none;
  color: #666;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}
.scroll-top2 a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #666;
}
.scroll-top2 a:before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(31deg);
}

/*スクロールリンクの形状*/
.js-scroll a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #666;
}
.js-scroll a:before {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(-31deg);
}

/**プライバシーポリシー**/
.policy {
  margin: 50px auto;
}
.policy h3 {
  font-size: 1.8rem;
  color: #11337B;
}
.policy p {
  font-weight: bold;
  margin: 10px auto;
}
.policy ul {
  margin-top: 20px;
}
.policy ul li {
  font-size: 1.6rem;
  line-height: 25px;
  font-weight: bold;
  margin-left: 1rem;
  text-indent: -1.6rem;
}
.policy a {
  color: #11337B;
}

.back a {
  font-size: 1.6rem;
  color: #11337B;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.back .arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 46px;
  height: 1px;
  background-color: #11337B;
  position: relative;
}
.back .arrow:after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background-color: #11337B;
  position: absolute;
  left: -2px;
  top: -5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */