@charset "UTF-8";
/* mixin-------------------------------------------------------------------------- */
/* Base 全体共通-------------------------------------------------------------------------- */
body {
  font-size: 16px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #777879;
  font-weight: normal;
  overflow-x: hidden;
}
@media screen and (max-width: 400px) {
  body {
    font-size: 14px;
  }
}

section {
  padding-top: 20px;
}

.wrapper1000 {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .wrapper1000 {
    padding: 0 5%;
  }
}

.wrapper660 {
  max-width: 660px;
  margin: 0 auto;
}

.sec-title {
  text-align: center;
  margin-bottom: 20px;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #777879;
  transition: all 0.3s;
}
a:hover {
  filter: brightness(0.9);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Layout 全体配置-------------------------------------------------------------------------- */
.layout-header {
  height: 80px;
  align-items: center;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 1072px) {
  .layout-header {
    height: 70px;
  }
}
.layout-main {
  padding-top: 80px;
}
@media screen and (max-width: 1072px) {
  .layout-main {
    padding-top: 70px;
  }
}
.layout-top {
  display: block;
}
.layout-sec-top {
  padding: 20px 0 40px;
}
.layout-sec-areas {
  padding-top: 45px;
}
@media screen and (max-width: 650px) {
  .layout-sec-areas {
    padding-top: 20px;
  }
}
.layout-footer {
  width: 100%;
}
.layout-page-top {
  height: 40vh;
}
.layout-service-list__item {
  background-color: #ececec;
  padding: 60px;
  margin-bottom: 100px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 820px) {
  .layout-service-list__item {
    padding: 30px;
  }
}
@media screen and (max-width: 400px) {
  .layout-service-list__item {
    padding: 10px;
  }
}
.layout-service-list__item:last-child {
  margin-bottom: 0;
}
.layout-form {
  margin-top: 110px;
  background-color: #ececec;
  padding: 100px;
}
@media screen and (max-width: 1024px) {
  .layout-form {
    padding: 80px 50px;
  }
}
@media screen and (max-width: 820px) {
  .layout-form {
    margin-top: 50px;
  }
}
@media screen and (max-width: 650px) {
  .layout-form {
    padding: 50px 20px;
  }
}

/* BEM ページ共通-------------------------------------------------------------------------- */
.b-header {
  padding: 0 20px;
}
.b-header__title a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1072px) {
  .b-header__title a img {
    height: 50px;
  }
}
@media screen and (max-width: 1072px) {
  .b-header nav {
    display: none;
  }
}
.b-header__nav {
  font-weight: bold;
  align-items: center;
  gap: 4em;
}
.b-header__nav-item {
  display: inline-block;
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
}
.b-header__nav-item:nth-of-type(5)::after {
  content: "";
}
.b-header__nav-item:last-of-type::after {
  content: "";
}
.b-header__nav-item::after {
  width: 4em;
  display: block;
  content: "／";
  text-align: center;
  position: absolute;
  top: -50%;
  transform: translateX(-50%);
  left: 100%;
  transform: translateY(50%);
}

/*========= ナビゲーションのためのCSS ===============*/
#openbtn1,
#g-nav {
  display: none;
}
@media screen and (max-width: 1072px) {
  #openbtn1,
  #g-nav {
    display: block;
  }
}

@media screen and (max-width: 1072px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #fff;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #777879;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 20px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn1 {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #777879;
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
.b-contact-banner {
  position: fixed;
  top: 160px;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 1072px) {
  .b-contact-banner {
    top: 70px;
  }
}
@media screen and (max-width: 400px) {
  .b-contact-banner {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .b-areas-map-box {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }
}

.b-areas-box {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .b-areas-box {
    width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 650px) {
  .b-areas-box {
    width: 350px;
  }
}
@media screen and (max-width: 400px) {
  .b-areas-box {
    width: 280px;
  }
}
.b-areas-box__title {
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .b-areas-list {
    width: 100%;
    margin: 0 auto;
  }
}
.b-areas-list__item {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 650px) {
  .b-areas-list__item {
    width: 350px;
  }
}
@media screen and (max-width: 400px) {
  .b-areas-list__item {
    width: 280px;
  }
}
.b-areas-list__item a {
  display: inline-block;
}
.b-areas-list__item a img {
  min-width: 400px;
}
@media screen and (max-width: 650px) {
  .b-areas-list__item a img {
    min-width: 350px;
    width: 350px;
  }
}
@media screen and (max-width: 400px) {
  .b-areas-list__item a img {
    min-width: 280px;
    width: 280px;
  }
}

.b-footer {
  margin-top: -200px;
}
@media screen and (max-width: 650px) {
  .b-footer {
    margin-top: 0;
  }
}
.b-footer__image {
  background-image: url(../img/common/footer.png);
  background-size: cover;
  height: 120vh;
  background-position: bottom right;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .b-footer__image {
    height: 80vh;
  }
}
@media screen and (max-width: 650px) {
  .b-footer__image {
    height: 50vh;
  }
}
@media screen and (max-width: 400px) {
  .b-footer__image {
    height: 30vh;
  }
}
.b-footer__logo {
  background-color: #00673d;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-footer__logo img {
  max-width: 90%;
}
.b-footer__small {
  color: #fff;
  background-color: #040000;
  display: block;
  line-height: 30px;
}
@media screen and (max-width: 400px) {
  .b-footer__small {
    line-height: 1.5;
    padding: 1em 0;
  }
}
.b-footer__small br {
  display: none;
}
@media screen and (max-width: 400px) {
  .b-footer__small br {
    display: inline;
  }
}

.b-page-top {
  background-size: cover;
}
.b-page-top--service {
  background-image: url(../img/service/page-title.jpg);
  background-position: center center;
}
.b-page-top--company {
  background-image: url(../img/company/page-title.jpg);
  background-position: center top;
}
.b-page-top--areas {
  background-image: url(../img/areas/page-title.jpg);
  background-position: center center;
}
.b-page-top--recruit {
  background-image: url(../img/recruit/page-title.jpg);
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
}
.b-page-top--contact {
  background-image: url(../img/contact/page-title.jpg);
  background-position: center top;
}

.b-page-title {
  position: absolute;
  color: #fff;
  top: 120px;
  left: 30px;
  font-size: 44px;
  font-family: a-otf-ryumin-pr6n, serif;
}
@media screen and (max-width: 820px) {
  .b-page-title {
    font-size: 32px;
    top: 100px;
    left: 1em;
  }
}
@media screen and (max-width: 650px) {
  .b-page-title {
    left: 0.5em;
    font-size: 24px;
  }
}

.b-breadcrumb-nav {
  display: inline;
  margin-bottom: 10px;
  font-size: 14px;
}
@media screen and (max-width: 650px) {
  .b-breadcrumb-nav + .sec-title {
    margin-top: 1em;
  }
}
.b-breadcrumb-nav__home {
  display: inline;
  color: #4dbbae;
}
.b-breadcrumb-nav__home::after {
  display: inline-block;
  width: 2em;
  margin-left: 1em;
  content: "〉";
  text-align: center;
  color: #777879;
}
.b-breadcrumb-nav__page {
  display: inline;
}

.b-japan-map {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .b-japan-map {
    width: 50%;
  }
}
@media screen and (max-width: 650px) {
  .b-japan-map {
    width: 80%;
  }
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(75px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.b-sp-tel {
  display: none;
}
@media screen and (max-width: 1072px) {
  .b-sp-tel {
    z-index: 5;
    position: absolute;
    top: 10px;
    display: block;
    right: 70px;
  }
  .b-sp-tel img {
    height: 50px;
  }
}

/* BEM topページ-------------------------------------------------------------------------- */
.b-top-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .b-top-img {
    display: none;
  }
}

.b-top-sp-img {
  display: none;
}
@media screen and (max-width: 650px) {
  .b-top-sp-img {
    display: block;
    width: 100%;
  }
}

.b-sec-top-text {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .b-sec-top-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .b-sec-top-text {
    text-align: left;
  }
}
.b-sec-top-text br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .b-sec-top-text br {
    display: inline;
  }
}
@media screen and (max-width: 400px) {
  .b-sec-top-text br {
    display: none;
  }
}

.b-link-box {
  margin-top: 30px;
  border-left: #777879 1px solid;
  border-right: #777879 1px solid;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .b-link-box {
    border: none;
  }
}
.b-link-box__top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media screen and (max-width: 650px) {
  .b-link-box__top {
    display: none;
  }
}
.b-link-box__top-item {
  width: 33%;
  border-right: #777879 1px solid;
}
.b-link-box__top-item:last-of-type {
  border-right: none;
}
.b-link-box__top-item a {
  display: block;
}
.b-link-box__top-item-sp {
  display: none;
}
@media screen and (max-width: 650px) {
  .b-link-box__top-item-sp {
    display: block;
    border-top: 1px solid #777879;
    padding-top: 20px;
  }
  .b-link-box__top-item-sp:last-child {
    border-bottom: 1px solid #777879;
  }
  .b-link-box__top-item-sp img {
    width: 100%;
  }
}
.b-link-box__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .b-link-box__bottom {
    display: none;
  }
}
.b-link-box__bottom--item {
  width: 50%;
}

.b-about-text {
  background-color: #e4f5f3;
  padding-top: 45px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .b-about-text p {
    text-align: left;
    width: 90%;
    margin: 0 5%;
  }
}

.b-concept-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.b-other-page {
  margin-top: 100px;
  width: 100%;
  gap: 2%;
}
@media screen and (max-width: 650px) {
  .b-other-page {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.b-other-page a {
  display: block;
  width: 49%;
}
@media screen and (max-width: 650px) {
  .b-other-page a {
    text-align: center;
    width: 90%;
    margin: 0 5%;
  }
}

/* BEM serviceページ-------------------------------------------------------------------------- */
.b-service-top-text {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .b-service-top-text {
    text-align: left;
  }
  .b-service-top-text br.none {
    display: none;
  }
}

.b-service-title {
  gap: 20px;
  margin-bottom: 40px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .b-service-title {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 820px) {
  .b-service-title {
    flex-direction: column;
    align-items: center;
  }
}
.b-service-title img {
  width: 15%;
}
@media screen and (max-width: 820px) {
  .b-service-title img {
    width: 30%;
  }
}
.b-service-title img:last-child {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .b-service-title img:last-child {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 820px) {
  .b-service-title img:last-child {
    width: 100%;
  }
}
.b-service-title__text {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .b-service-title__text {
    width: calc(85% - 20px);
    display: inline-block;
  }
}
@media screen and (max-width: 820px) {
  .b-service-title__text {
    width: 100%;
  }
}
.b-service-title__text-title {
  color: #4dbbae;
  display: block;
  border-bottom: 1px solid #4dbbae;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 2rem;
}
@media screen and (max-width: 650px) {
  .b-service-title__text-title {
    font-size: 1.5rem;
    text-align: center;
  }
}
.b-service-title__text-title br {
  display: none;
}
@media screen and (max-width: 650px) {
  .b-service-title__text-title br {
    display: inline;
  }
}
.b-service-title__text-paragraph {
  margin-top: 0.5em;
}
.b-service-example__title {
  text-align: center;
  background-color: #4dbbae;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
}
.b-service-example__list {
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.b-service-example__list-item {
  width: 30%;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .b-service-example__list-item {
    width: 48%;
  }
}
@media screen and (max-width: 400px) {
  .b-service-example__list-item {
    width: 100%;
  }
  .b-service-example__list-item img {
    width: 100%;
  }
}
.b-service-example__list-item figcaption {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
}
.b-service-flow {
  width: 100%;
}
@media screen and (max-width: 650px) {
  .b-service-flow {
    display: none;
  }
}
.b-service-flow--sp {
  display: none;
}
@media screen and (max-width: 650px) {
  .b-service-flow--sp {
    display: block;
    width: 100%;
  }
}

.b-contact-link {
  display: block;
  min-width: 385px;
  width: 385px;
  margin: 30px auto 0;
}
@media screen and (max-width: 650px) {
  .b-contact-link {
    min-width: 300px;
    width: 300px;
  }
}
@media screen and (max-width: 400px) {
  .b-contact-link {
    min-width: 250px;
    width: 250px;
  }
}
.b-contact-link img {
  width: 100%;
}

/* BEM companyページ-------------------------------------------------------------------------- */
.b-table {
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border-collapse: collapse;
}
.b-table__head {
  width: 175px;
  background-color: #e6f5f4;
  border: #777879 1px solid;
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding: 0.8em 2em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  .b-table__head {
    padding: 0.8em 1em;
    width: 8em;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .b-table__head {
    padding: 0.8em 0.5em;
  }
}
.b-table__data {
  border: #777879 1px solid;
  padding: 0.8em 30px 0.8em 30px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 15px;
  background-color: #fff;
}
.b-table__data span {
  font-size: 0.8em;
}
@media screen and (max-width: 820px) {
  .b-table__data {
    padding: 0.8em 1em;
  }
}
@media screen and (max-width: 400px) {
  .b-table__data {
    padding: 0.8em 0.5em;
  }
}
.b-table__data-title {
  color: #4dbbae;
  font-size: 16px;
}
.b-table__data-list {
  height: 28em;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .b-table__data-list {
    height: 54em;
  }
}
.b-table__data-list li {
  display: block;
  width: 50%;
}
@media screen and (max-width: 820px) {
  .b-table__data-list li {
    width: 100%;
  }
}
.b-table__data--dotted {
  border-top: 1px dotted #777879;
  border-bottom: 1px dotted #777879;
}
.b-table__data--dotted-last {
  border-bottom: 1px solid #777879;
}

.b-rent-list {
  height: 6em;
  flex-wrap: wrap;
  gap: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 820px) {
  .b-rent-list {
    height: 8em;
  }
}
.b-rent-list--sp {
  display: none;
}
@media screen and (max-width: 820px) {
  .b-rent-list--sp {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.b-rent-list__item {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0.25em;
}
@media screen and (max-width: 820px) {
  .b-rent-list__item {
    width: 100%;
  }
}
.b-rent-list__item img {
  max-width: 44px;
}

/* BEM areasページ-------------------------------------------------------------------------- */
.areas section:nth-child(odd) {
  background-color: #e4f5f3;
}

.areas section {
  text-align: center;
  padding-bottom: 100px;
  z-index: 2;
  position: relative;
}
.areas section.layout-sec-areas {
  text-align: left;
}

.b-area-name {
  margin: 50px 0;
}
@media screen and (max-width: 650px) {
  .b-area-name {
    margin-bottom: 20px;
  }
}
.b-area-img-box {
  gap: 2%;
  margin-bottom: 20px;
}
@media screen and (max-width: 650px) {
  .b-area-img-box {
    flex-direction: column;
  }
}
.b-area-img-box img {
  width: 49%;
}
@media screen and (max-width: 650px) {
  .b-area-img-box img {
    width: 80%;
    margin: 10px auto;
  }
}
@media screen and (max-width: 400px) {
  .b-area-img-box img {
    width: 100%;
  }
}
.b-area-img-box img.w100 {
  width: 100%;
}
.b-area-addr {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}

.b-contact-box {
  margin-top: 50px;
  padding: 50px;
}
@media screen and (max-width: 650px) {
  .b-contact-box {
    margin-top: 30px;
    padding: 30px;
  }
}
@media screen and (max-width: 400px) {
  .b-contact-box {
    padding: 30px 10px;
  }
}
.b-contact-box--white {
  background-color: #fff;
}
.b-contact-box--gray {
  background-color: #ececec;
}
.b-contact-box__img-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}
@media screen and (max-width: 1024px) {
  .b-contact-box__img-box {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 400px) {
  .b-contact-box__img-box {
    margin: 20px 0 30px;
  }
}
.b-contact-box__img-box a {
  display: inline;
}

/* BEM recruitページ-------------------------------------------------------------------------- */
.b-recruit-img-box {
  width: 100%;
  display: flex;
  margin: 80px 0;
}
@media screen and (max-width: 820px) {
  .b-recruit-img-box {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
}
.b-recruit-img-box img {
  width: 33%;
}
@media screen and (max-width: 820px) {
  .b-recruit-img-box img {
    width: 75%;
  }
}

.b-table-caption {
  color: #4dbbae;
  font-size: 24px;
  text-align: left;
  font-weight: bold;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}

.b-motto {
  border: 1px solid #777879;
  border-top: none;
  padding: 1rem;
  margin-bottom: 100px;
}
@media screen and (max-width: 650px) {
  .b-motto {
    margin-bottom: 50px;
  }
}
.b-motto__title {
  color: #4dbbae;
  text-align: center;
  font-size: 24px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}
@media screen and (max-width: 650px) {
  .b-motto__title {
    line-height: 1.2;
    margin-bottom: 0.5em;
  }
}
.b-motto__title br {
  display: none;
}
@media screen and (max-width: 650px) {
  .b-motto__title br {
    display: inline;
  }
}
.b-motto__list {
  display: flex;
  flex-wrap: wrap;
}
.b-motto__list li {
  white-space: nowrap;
  margin-right: 1em;
}

@media screen and (max-width: 650px) {
  .b-work-flow {
    display: none;
  }
}

.b-work-flow-sp {
  display: none;
}
@media screen and (max-width: 650px) {
  .b-work-flow-sp {
    display: block;
    width: 100%;
  }
}

.b-recruit-contact-box {
  background-color: #ececec;
  width: 100%;
  padding: 8px 8px 20px 8px;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .b-recruit-contact-box {
    padding: 8px 50px 20px;
  }
}
@media screen and (max-width: 820px) {
  .b-recruit-contact-box {
    padding: 8px 20px 50px;
  }
}
@media screen and (max-width: 650px) {
  .b-recruit-contact-box {
    padding: 8px 20px 210px;
  }
}
@media screen and (max-width: 400px) {
  .b-recruit-contact-box {
    padding: 8px 10px 210px;
  }
}
.b-recruit-contact-box__title {
  background-color: #4dbbae;
  width: 100%;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 26px;
  padding-left: 2em;
}
@media screen and (max-width: 1024px) {
  .b-recruit-contact-box__title {
    text-align: center;
    padding: 0 0.5em;
  }
}
@media screen and (max-width: 650px) {
  .b-recruit-contact-box__title {
    font-size: 22px;
  }
}
.b-recruit-contact-box__title br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .b-recruit-contact-box__title br.pc {
    display: inline;
  }
}
@media screen and (max-width: 650px) {
  .b-recruit-contact-box__title br.pc {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .b-recruit-contact-box__title br.tab {
    display: inline;
  }
}
.b-recruit-contact-box__links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 24px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .b-recruit-contact-box__links {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 650px) {
  .b-recruit-contact-box__links {
    gap: 10px;
  }
}
.b-recruit-contact-box__links a {
  display: block;
}
.b-recruit-contact-box__links a img {
  min-width: 384px;
}
@media screen and (max-width: 820px) {
  .b-recruit-contact-box__links a img {
    min-width: 300px;
    width: 300px;
  }
}
@media screen and (max-width: 650px) {
  .b-recruit-contact-box__links a img {
    width: 320px;
  }
}
@media screen and (max-width: 400px) {
  .b-recruit-contact-box__links a img {
    min-width: 280px;
    width: 280px;
  }
}
.b-recruit-contact-box__links-woman {
  position: absolute;
  right: 0;
  top: -65px;
}
@media screen and (max-width: 1024px) {
  .b-recruit-contact-box__links-woman {
    top: 50px;
  }
}
@media screen and (max-width: 820px) {
  .b-recruit-contact-box__links-woman {
    right: -20px;
    top: 35px;
  }
}
@media screen and (max-width: 650px) {
  .b-recruit-contact-box__links-woman {
    top: 185px;
  }
}
@media screen and (max-width: 400px) {
  .b-recruit-contact-box__links-woman {
    top: 165px;
  }
}

/* BEM contactページ-------------------------------------------------------------------------- */
.b-contact-top-text {
  text-align: center;
}
.b-contact-top-text--thanks {
  margin-bottom: 2em;
}
@media screen and (max-width: 1024px) {
  .b-contact-top-text {
    text-align: left;
  }
}

.b-dl {
  flex-wrap: wrap;
  align-items: start;
}
@media screen and (max-width: 820px) {
  .b-dl {
    flex-direction: column;
  }
}
.b-dl__dt {
  width: 13em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
  align-items: center;
  margin-bottom: 24px;
  margin-right: 1em;
  color: #7d7d7d;
  padding: 0.8em 0;
}
@media screen and (max-width: 820px) {
  .b-dl__dt {
    margin-bottom: 0;
    width: auto;
  }
}
.b-dl__dt-span {
  padding: 0.25em 1em;
  margin-left: 1em;
  border-radius: 5px;
}
.b-dl__dt-span--required {
  background-color: #df5126;
  color: #fff;
}
.b-dl__dt-span--any {
  border: 1px solid #777879;
}
.b-dl__dd {
  width: calc(100% - 14em);
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 820px) {
  .b-dl__dd {
    width: 100%;
  }
}
.b-dl__dd-name-label {
  width: 8em;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
}
.b-dl__dd-input {
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2);
  padding: 1em;
}
.b-dl__dd-input::-moz-placeholder {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
  color: #aaa;
}
.b-dl__dd-input::placeholder {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
  color: #aaa;
}
.b-dl__dd-input--confirm {
  margin-top: 0.5em;
}
.b-dl__dd-input--textarea {
  height: 200px;
  max-height: 400px;
}

.b-confirm-button {
  background-image: url(../img/contact/confirm-button.png);
  background-size: contain;
  background-position: center center;
  width: 470px;
  height: 75px;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
  font-size: 24px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
@media screen and (max-width: 650px) {
  .b-confirm-button {
    width: 350px;
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .b-confirm-button {
    width: 280px;
    font-size: 18px;
  }
}

.b-privacy-policy {
  background-color: #fff;
  border: 1px solid #4dbbae;
  padding: 50px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
@media screen and (max-width: 650px) {
  .b-privacy-policy {
    padding: 30px;
  }
}
@media screen and (max-width: 400px) {
  .b-privacy-policy {
    padding: 30px 20px;
  }
}
.b-privacy-policy__title {
  color: #4dbbae;
  display: block;
  border-bottom: 1px solid #4dbbae;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.b-privacy-policy__text {
  font-size: 0.8rem;
}

/* Utility 多用CSS-------------------------------------------------------------------------- */
.mint {
  color: #4dbbae;
}

.yugo {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.align-center {
  text-align: center;
}/*# sourceMappingURL=style.css.map */