@charset "utf-8";
/* CSS Document */

/*
スマートフォン用_max-width: 375px;
*/

@charset "utf-8";

/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #fff;
}
img {
  width: 50vw;
  vertical-align: bottom;
}

h1,
h2 {
  font-family: "平成明朝 Std", "游明朝", "Yu Mincho", serif;
  font-size: 1.25rem;
}

p {
  font-family: "游明朝 Std", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
}

/* -------------------- */
/* header
/* -------------------- */

.header {
  background-color: #fff;
  color: #fff;
  height: 20vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-list {
  /* navの横並び */
  display: flex;
}
.nav-item {
  /* メニューの右側に余白 */
  margin-right: 55px;
}

.burger-btn,
.pc-nav-wrapper {
  display: none;
}

/* ----------------------- */
/* base_sp
/* ----------------------- */
/* デフォルトのbuttonスタイルをリセット */

#video {
  margin-bottom: 4rem;
}

.container,
.bisect {
  margin-bottom: 4rem;
}

#thumbs {
  margin-top: 8rem;
}

/* 以下、ハンバーガーボタン */
.burger-btn {
  display: block;
  width: 39px;
  height: 39px;
  position: relative;
  z-index: 3;
  border: none;
  background-color: #16447c;
}
.bar {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}
.bar_top {
  top: 10px;
}
.bar_mid {
  top: 50%;
  transform: translate(-50%, -50%);
}
.bar_bottom {
  bottom: 10px;
}

.burger-btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
  transition: transform 0.3s;
}
.burger-btn.close .bar_mid {
  opacity: 0;
  transition: opacity 0.3s;
}
.burger-btn.close .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
  transition: transform 0.3s;
}

.nav-wrapper {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.3s;
  width: 100vw;
  z-index: 2;
}
.header-nav {
  width: 100%;
  height: 100%;
  background-color: #16447c;
  z-index: 2;
}
.nav-list {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.nav-item {
  margin-right: 0;
  margin-bottom: 40px;
}

/* メニューオープン時 */
.nav-wrapper.slide-in {
  transform: translateX(0);
}

.noscroll {
  overflow: hidden;
}

/* main */

.head-line {
  color: #000; /*文字色*/
  font-size: 20px; /*文字サイズ*/
  padding: 10px 20px; /*文字回りの余白（上下 左右）*/
  display: block;
  border-left: 6px solid #6cc9ff; /*二重線左側（太さ 実線 色）*/
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.head-line::before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 0;
  width: 2px; /*二重線右側の太さ（幅）*/
  height: 100%;
  background: #6cc9ff; /*二重線右側の色*/
}

.container {
  margin: 0 1em;
  max-width: 100%;
}

.bisect div p {
  text-align: left;
  padding: 0;
}

.bisect div {
  text-align: center;
}

.chapter-image img {
  width: 80%;
  text-align: center;
}

/* employ-swiper */

.swiper-container {
  position: relative;
  width: 100%;
  height: 55vh;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -10rem;
}

.swiper-slide {
  text-align: center;
  color: #000;
  min-width: 0;
}

.swiper-slide img {
  width: 90vw;
  height: 40vh;
  max-width: 100%;
}

.swiper-pagination {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #333;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 6px;
  transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #000;
}

/* ボタン */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ボタン本体 */
a.button_solid {
  display: block;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  margin: 15rem auto;
  padding: 0.75rem 2.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background: #27acd9;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease,
    transform 0.1s ease-in-out;
  z-index: 999;
}

a.button_solid:hover {
  background-color: #16447c;
  color: #fff;
}

a.button_solid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #27acd9;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: none;
}

a.button_solid:hover::after {
  opacity: 1;
  transform: scale(1);
}

a.button_solid:active {
  transform: scale(0.96);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.adjust-area {
  margin-bottom: 4rem;
}

/*採用特設サイト子ページ用*/

#page-body {
  margin: 0 auto;
  width: 100%;
}

.ttl-section {
  margin-bottom: 4rem;
}

.head-title {
  width: 50vw;
  margin: 0 auto;
}

.ttl {
  text-align: center;
  font-weight: bold;
  border: 3px solid #4c9ac0;
  padding: 0.5em 1em;
  position: relative;
}
.ttl::after {
  content: "";
  background-color: #e1eef5;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  position: absolute;
  top: -7px;
  left: 4px;
  z-index: -1;
}

.content-block {
  text-align: center;
  max-width: 730px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.content-block img {
  width: 20vw;
  height: auto;
}

.content-block-image,
.article-image {
  margin-bottom: 2em;
  width: 100%;
}

.content-block h2 {
  font-weight: 800;
  font-size: 2rem;
}

.content-block p {
  white-space: normal;
  font-size: 1rem;
  max-width: 730px;
  white-space: break-spaces;
}

.employ-list-section {
  max-width: 80vw;
  margin: 0 auto;
}

.employ-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 80%;
}

.employ-list-card {
  width: 30%;
  height: auto;
  text-align: center;
}

.employ-list-card img {
  width: 350px;
  height: 250px;
  position: relative;
  top: 0;
}

.employ-list-card img:hover {
  top: -10px;
  transition: 0.3s;
}

/*----------

採用情報

------------*/

#job-ad {
  width: 50vw;
  height: auto;
  margin: 0 auto;
}

.bg-area {
  text-align: center;
  color: #fff;
  padding: 8em 0;
  margin-bottom: 10em;
}

.bg-area h2 {
  font-size: 4rem;
  line-height: 2;
  margin-bottom: 0.4em;
}

.bg-area h2 span {
  display: block;
  font-size: 1.5rem;
}

.bg-area p {
  font-size: 2rem;
  line-height: 2;
}

.recruit-bg001 {
  background: url("..//images/page/recruit/bg-001.jpg") no-repeat;
  background-size: cover;
}

.recruit-link {
  margin: 4em 0 10em;
}

ul.recruit-btn {
  width: 48%;
}
ul.recruit-btn li + li {
  margin-top: 2em;
  margin-bottom: 2rem;
}

.new-graduate {
  background-color: #daf3ed;
  padding: 5px 0 20px;
}

.new-graduate p:first-child {
  font-size: 22px;
}

.new-graduate div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mynavi_link {
  margin-top: 20px;
}

.recruit-table tbody td a {
  text-decoration: underline;
}

/*----------

プライバシーポリシー

------------*/

#post-basic {
  margin: 0 auto;
}

#post-basic h1 {
  text-align: center;
}

#post-basic article {
  max-width: 800px;
  margin: 0 auto 5rem auto;
  padding: 2rem 4rem;
}

.content p {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

/*----------

求人情報エリア

------------*/

#job-search-section {
  max-width: 1280px;
  margin: 0 auto;
}

.job-search-header h1,
p {
  text-align: center;
}

.filter-actions {
  text-align: center;
}

a.job-apply-btn {
  display: block;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  margin: 4rem auto;
  padding: 0.75rem 2.5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background: #27acd9;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease,
    transform 0.1s ease-in-out;
}

a.job-apply-btn:hover {
  background-color: #16447c;
  color: #fff;
}

a.job-apply-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #27acd9;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: none;
}

a.job-apply-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

a.job-apply-btn:active {
  transform: scale(0.96);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/*----------

SNSアイコン

------------*/

.sns-icon ul {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0;
}

.sns-icon ul li {
  margin: 0 2rem;
  width: 2rem;
  font-size: 2rem;
}

.sns-icon ul li :hover {
  opacity: 0.5;
}

.bg-overflow {
  background-size: cover;
  background-position: center;
  background-color: #f1f1f1;
  padding: 1rem 0;
}

.sns-icon ul li a img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.pc-nav-item a:hover {
  opacity: 0.5;
}

#menu-footer {
  display: flex;
  justify-content: center;
  flex-direction: row;
  padding: 0;
}

.address {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

#address-area {
  text-align: center;
}

.address h3,
a {
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  text-align: center;
  color: #333;
}

.nav-item a {
  font-size: 1rem;
  color: #fff;
}

@media screen and (max-width: 737px) {
  #job-ad {
    width: 80vw;
    height: auto;
    margin: 0 auto;
  }

  .new-graduate p:first-child {
    font-size: 16px;
  }

  .new-graduate div img {
    width: 150px !important;
    height: 30px !important;
  }

  .sns-btn img {
    object-fit: contain;
  }
}

@media screen and (max-width: 640px) {
  #menu-footer {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: auto auto;
  }
}

.sheet-area {
  width: 48%;
  background: #fafafa;
}

.sheet-area h3 {
  padding: 0.1em 0;
  color: #fff;
  background: #29abe2;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 3rem;
}

.sheet-inner {
  padding: 4em;
  box-sizing: border-box;
}

.sheet-inner dl + dl {
  margin-top: 1.5em;
}

.sheet-inner dl dt {
  width: 30%;
}

.sheet-inner dl dd {
  width: 60%;
}

.sheet-inner dl dd ul li {
  width: 48%;
  text-align: center;
}

.sheet-inner dl dd ul li a {
  display: block;
  padding: 0.8em 0;
  font-size: 1.4rem;
}

.sheet-inner dl dd ul.blue li a {
  color: #2f5595;
  border: solid 2px #2f5595;
}

.sheet-inner dl dd ul.blue li a:hover {
  background-color: #2f5595;
  color: #fff;
  border: solid 2px #2f5595;
}

.sheet-inner dl dd ul.green li a {
  color: #519d96;
  border: solid 2px #519d96;
}

.sheet-inner dl dd ul.green li a:hover {
  background-color: #519d96;
  color: #fff;
  border: solid 2px #519d96;
}

h2.ttl01 {
  font-size: 1.4rem;
  color: #16447c;
  text-align: center;
  margin-bottom: 1em;
}

table.recruit-table {
  width: 100%;
  margin-bottom: 10em;
}

table.recruit-table,
table.recruit-table td,
table.recruit-table th {
  border: 1px solid #16447c;
  border-collapse: collapse;
}

.recruit-table tbody tr th,
td {
  font-size: 1rem;
}

table.recruit-table td,
table.recruit-table th {
  padding: 0.8em 1em;
  box-sizing: border-box;
  font-size: 1.5rem;
}

table.recruit-table th {
  width: 20%;
  background-color: #16447c;
  color: #fff;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #fff;
}

table.recruit-table th:last-child {
  border-bottom: 10px solid #000;
}

table.recruit-table td {
  line-height: 2;
  font-size: 1rem;
}
table.recruit-table td div {
  margin-top: 4em;
}
table.recruit-table td a {
  color: #16447c;
  font-size: 1rem;
}

ul li.center {
  text-align: center;
}

ul li.center p {
  font-size: 1.6rem;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  font-weight: bold;
}

ul li.center .recruit-img {
  display: block;
  width: 100%;
  border: solid 4px #ccc;
  padding: 1em;
  box-sizing: border-box;
}

ul li.center .recruit-img a {
  display: block;
}
