@charset "UTF-8";
/******************************************************************
カスタムLP用レイアウト
*****************************************************************/
/*==========================
 mixin設定
==========================*/
/******************************************************************
  0■body
*****************************************************************/
*, *:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

html {
  font-size: 62.5%;
  font-weight: normal;
}

body {
  width: 100%;
  min-width: 300px;
  background-color: var(--color-background);
  color: var(--color-text);
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 1px;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
}
@media (min-width: 768px) {
  body {
    --border-radius: var(--border-radius-pc);
    --section-padding: var(--section-padding-pc);
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  body.open {
    overflow: hidden;
    height: 100%;
  }
}

/******************************************************************
  2■Common
*****************************************************************/
@media (max-width: 767px) {
  #container {
    margin-top: 52px;
  }
}

a {
  color: var(--color-link);
  transition: 0.4s;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: var(--color-text);
  }
  a:hover {
    opacity: 0.6;
  }
}

img {
  width: 100%;
}

.font-bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .spHdn {
    display: none;
  }
}

@media (min-width: 768px) {
  .pcHdn {
    display: none;
  }
}

.btn-map {
  background: #DD2B40;
  color: #eee;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.2em 1.4em;
  display: inline-block;
  line-height: 1;
  border-radius: 5px;
  margin: 0.5em 0 0 0;
}
.btn-map span {
  position: relative;
  display: inline-block;
  padding: 0 1em 0 0;
}
.btn-map span::before, .btn-map span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-out;
}
.btn-map span::after {
  content: "";
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid #eee;
  border-bottom: 2px solid #eee;
  transform: rotate(-45deg);
}

/*
a:hover {
    opacity: 0.7;
}
*/
ol, ul {
  list-style: none;
}

.font-min {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

img {
  width: 100%;
}

.mgb20 {
  margin-bottom: 20px;
}

.inner {
  position: relative;
  margin: 0 auto;
  padding: 85px 8px;
  max-width: 1200px;
}
@media (max-width: 767px) {
  .inner {
    margin: auto;
    width: auto;
    padding: 35px 10px;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.subtilte {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

#breadCramb {
  display: block;
  background: #eee;
  font-size: 1.2rem;
  border-bottom: 1px solid #ccc;
}
#breadCramb ul {
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #breadCramb ul {
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
  }
  #breadCramb ul::-webkit-scrollbar {
    height: 0;
  }
  #breadCramb ul::-webkit-scrollbar-track {
    background-color: #FFF;
  }
  #breadCramb ul::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0);
  }
}
#breadCramb ul li {
  white-space: nowrap;
}
#breadCramb ul li:not(:last-child)::after {
  display: inline-block;
  content: " > ";
  margin: 0 10px;
}

.spHdn {
  display: block;
}
@media (max-width: 767px) {
  .spHdn {
    display: none;
  }
}

.pcHdn {
  display: none;
}
@media (max-width: 767px) {
  .pcHdn {
    display: block;
  }
}

.contents-ttl {
  margin-bottom: 56px;
  text-align: center;
  letter-spacing: 0.2em;
}
.contents-ttl span {
  display: block;
  height: 65px;
}
.contents-ttl span img {
  width: initial;
}
@media (max-width: 767px) {
  .contents-ttl span img {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .contents-ttl span {
    height: 40px;
  }
}
.contents-ttl .contents-ttl-main {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  height: auto;
}
@media (max-width: 767px) {
  .contents-ttl .contents-ttl-main {
    font-size: 1.8rem;
    margin-top: 4px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 767px) {
  .contents-ttl {
    margin-bottom: 40px;
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

.contents-subttl {
  margin-bottom: 16px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  text-align: center;
  color: #252525;
  font-weight: bold;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #DD2B40;
}
@media (min-width: 768px) {
  .contents-subttl {
    margin-bottom: 28px;
    font-size: 2.4rem;
  }
}

.kome {
  font-size: 1.2rem;
}

.list {
  display: flex;
  flex-wrap: wrap;
}
.list.col3 > li {
  background-color: #fff;
  margin-right: 1.714%;
  margin-bottom: 16px;
  width: 32.19%;
}
.list.col3 > li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .list.col3 > li {
    width: 100%;
    margin-right: 0;
  }
  .list.col3 > li.sp-col2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .list.col3.sp-col2 li {
    width: 48.5%;
  }
  .list.col3.sp-col2 li:nth-child(odd) {
    margin-right: 3%;
  }
}
.list.col2 li, .list.col2 .list-item {
  width: 49%;
}
.list.col2 li:not(:last-child), .list.col2 .list-item:not(:last-child) {
  margin-right: 2%;
}
@media (max-width: 767px) {
  .list.col2 li, .list.col2 .list-item {
    width: 100%;
    margin: 6px 12px;
  }
  .list.col2 li:not(:last-child), .list.col2 .list-item:not(:last-child) {
    margin-right: 12px;
  }
}

/******************************************************************
  3■#container
*****************************************************************/
/*----------
  #keyv
----------*/
#keyv {
  position: relative;
  width: 100%;
  padding-top: 80px;
}
@media (max-width: 767px) {
  #keyv {
    padding-top: 54px;
  }
}
#keyv .keyv-top a:hover img {
  opacity: 0.8;
}
#keyv .keyv-top figure img {
  position: absolute;
  bottom: 24%;
  left: 90%;
  transform: translateX(-50%);
  width: 13%;
  height: auto;
}
@media (max-width: 767px) {
  #keyv .keyv-top figure img {
    bottom: 4%;
    left: 50%;
    width: 30%;
  }
}

@media (max-width: 767px) {
  section {
    margin-top: -20px;
    padding-top: 20px;
  }
}

/*----------
  #concept
----------*/
#concept .inner {
  display: flex;
}
@media (max-width: 767px) {
  #concept .inner {
    padding: 64px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 768px) {
  #concept .inner {
    padding: 263px 8px;
    width: 74%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  #concept .inner {
    padding: 20% 8px;
    width: 74%;
  }
}
#concept .inner::before {
  content: "";
  display: block;
  width: 26%;
  height: 30%;
  background: top/contain no-repeat url(../img/top/concept-ph-002.png);
  position: absolute;
  top: 16%;
  left: -22%;
  z-index: 1;
}
@media (min-width: 768px) {
  #concept .inner::before {
    top: 8%;
    left: -12%;
  }
}
@media (max-width: 767px) {
  #concept .inner::before {
    display: none;
  }
}
#concept .inner::after {
  content: "";
  display: block;
  width: 18%;
  height: 13%;
  background: top/contain no-repeat url(../img/top/ninjin.png);
  position: absolute;
  top: 39%;
  left: 84%;
  z-index: 1;
}
@media (min-width: 768px) {
  #concept .inner::after {
    width: 24%;
    top: 37%;
    left: 90%;
  }
}
@media (max-width: 767px) {
  #concept .inner::after {
    display: none;
  }
}
#concept .concept-unit-1 {
  position: relative;
  /* &::before {
      content: "";
      display: block;
      width: 17%;
      height: 30%;
      background: top / contain no-repeat url(../img/top/concept-ph-002.png);
      position: absolute;
      top: 16%;
      left: 8%;
      z-index: 1;
      @include mq(sp){
          display: none;
      }
  }
  &::after {
      content: "";
      display: block;
      width: 12%;
      height: 13%;
      background: top / contain no-repeat url(../img/top/ninjin.png);
      position: absolute;
      top: 39%;
      left: 69%;
      z-index: 1;
      @include mq(tb){
          top: 44%;
          left: 74%;
      }
      @include mq(sp){
          display: none;
      }
  } */
}
@media (max-width: 767px) {
  #concept .concept-unit-1 {
    background: top/contain repeat-x url(../img/top/section-pic-sp-001.png), bottom/contain repeat-x url(../img/top/section-pic-sp-002.png), top/contain repeat-y url(../img/top/concept-bg-sp.png);
  }
}
@media screen and (min-width: 750px) and (max-width: 768px) {
  #concept .concept-unit-1 {
    background: top/contain repeat-x url(../img/top/section-pic-sp-001.png), bottom/contain repeat-x url(../img/top/section-pic-sp-002.png), top/cover repeat-y url(../img/top/concept-bg-sp.png);
  }
}
@media (min-width: 768px) {
  #concept .concept-unit-1 {
    background: top/contain repeat-x url(../img/top/section-pic-pc-001.png), bottom/contain repeat-x url(../img/top/section-pic-pc-002.png), top/contain repeat-y url(../img/top/concept-bg-pc.png);
  }
}
#concept .concept-unit-1 h2 {
  position: relative;
  margin-bottom: 48px;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.75;
  color: #DD2B40;
}
#concept .concept-unit-1 h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  width: 80%;
  height: 2px;
  background: #DD2B40;
  transform: translate(-50%, 0);
}
@media (min-width: 768px) {
  #concept .concept-unit-1 h2::after {
    min-width: 450px;
  }
}
@media (max-width: 767px) {
  #concept .concept-unit-1 h2 {
    margin-bottom: 24px;
    font-size: 8.2vw;
  }
}
#concept .concept-unit-1 .lead {
  margin-left: 49px;
  font-weight: bold;
}
@media (min-width: 768px) {
  #concept .concept-unit-1 .lead {
    margin-left: 48px;
  }
}
@media (max-width: 767px) {
  #concept .concept-unit-1 .lead {
    margin: 40px 30px 24px;
    max-width: 480px;
  }
}
#concept .concept-unit-1 h3 {
  font-size: 4rem;
  line-height: 1.5;
  color: #DD2B40;
  font-weight: bold;
  margin-bottom: 63px;
}
@media (max-width: 767px) {
  #concept .concept-unit-1 h3 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  #concept .concept-unit-1 h3 .spHdn {
    display: none;
  }
}
#concept .concept-unit-1 p {
  font-size: 2rem;
}
@media (max-width: 767px) {
  #concept .concept-unit-1 p {
    font-size: 1.6rem;
  }
}
#concept .concept-unit-1 .lead-img {
  width: 43%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  #concept .concept-unit-1 .lead-img {
    width: 150%;
  }
}
@media (max-width: 767px) {
  #concept .concept-unit-1 .lead-img {
    width: 100%;
    padding: 0 30px 40px 10px;
    max-width: 480px;
  }
}

/*----------
  #list
----------*/
#list {
  background: #EE8B97;
}
@media (max-width: 767px) {
  #list {
    border-top: solid 20px #fff;
  }
}
#list .inner {
  padding: 30px 8px 45px;
}
@media (max-width: 767px) {
  #list .inner {
    padding: 44px 10px 64px;
  }
}
#list .inner .list-box > li {
  background: #fff;
  border: 2px solid #DD2B40;
  padding: 8px;
}
@media (min-width: 768px) {
  #list .inner .list-box > li {
    padding: 16px;
  }
}
#list .inner .list-box .icon-koyo {
  justify-content: flex-start;
}
#list .inner .list-box .icon-koyo span {
  border: 1px solid #DD2B40;
  padding: 0 8px;
  color: #DD2B40;
  font-size: 1.2rem;
  margin: 0 8px 8px 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #list .inner .list-box .icon-koyo span {
    padding: 6px 16px;
  }
}
#list .inner .list-box .list-ttl {
  margin: 8px 0 16px;
}
#list .inner .list-box dl {
  border-collapse: collapse;
  margin-bottom: 24px;
  width: 100%;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  #list .inner .list-box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-top: 1px solid #DD2B40;
  }
}
#list .inner .list-box dl dt, #list .inner .list-box dl dd {
  padding: 4px 8px;
}
@media (min-width: 768px) {
  #list .inner .list-box dl dt, #list .inner .list-box dl dd {
    padding: 16px;
  }
}
#list .inner .list-box dl dt {
  width: 100%;
  color: #fff;
}
@media (min-width: 768px) {
  #list .inner .list-box dl dt {
    width: 114px;
    color: #DD2B40;
    border-bottom: 1px solid #DD2B40;
  }
}
@media (max-width: 767px) {
  #list .inner .list-box dl dt {
    background: #DD2B40;
  }
}
#list .inner .list-box dl dd {
  width: 100%;
}
@media (min-width: 768px) {
  #list .inner .list-box dl dd {
    width: calc(100% - 114px);
    border-bottom: 1px solid #DD2B40;
  }
}
#list .inner .list-box .list-btn {
  justify-content: center;
}
#list .inner .list-box .list-btn li {
  border: 2px solid #DD2B40;
  text-align: center;
  width: 100%;
  margin: 0 12px 8px;
}
@media (min-width: 768px) {
  #list .inner .list-box .list-btn li {
    width: calc(50% - 24px);
  }
}
#list .inner .list-box .list-btn li a {
  display: block;
  padding: 8px;
  color: #DD2B40;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #list .inner .list-box .list-btn li a {
    padding: 16px;
  }
}

.data-for-aidemlog { /* 独自ログ計測用 */ }

/* ラベル表示用 */
.detail-ic-koyo {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  color: #fff;
  padding: 8px 10px 5px;
  background: #ccc;
  white-space: nowrap;
  line-height: 1;
}

.ic-koyokeitai {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
  margin-bottom: 16px;
}
.ic-koyokeitai::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  margin: auto;
  border-bottom: dotted 5px #D95363;
}
@media (max-width: 767px) {
  .ic-koyokeitai {
    margin-bottom: 13px;
  }
}

.detail-ic-koyokeitai {
  font-size: 12px;
  color: #fff;
  background: #ccc;
  border-radius: 3px;
  padding: 8px 10px 4px;
  white-space: nowrap;
  line-height: 1;
  margin-right: 10px;
}

.kk_ic {
  color: #000;
  border: 1px solid #222;
  background: #fff;
}

.kk_ic-s {
  font-size: 1.2rem !important;
}
@media (max-width: 767px) {
  .kk_ic-s {
    font-size: 1.1rem !important;
  }
}

.kk_ic-101 {
  background: #f55151;
  color: #fff;
  border: none;
  font-size: 1.6rem;
}

.kk_ic-102 {
  background: #45bee1;
  color: #fff;
  border: none;
}

.kk_ic-103 {
  background: #ff9518;
  color: #fff;
  border: none;
}

.kk_ic-104 {
  background: #00680f;
  color: #fff;
  border: none;
}

.kk_ic-105 {
  background: #4b75b9;
  color: #fff;
  border: none;
}

.kk_ic-106 {
  background: #b492cc;
  color: #fff;
  border: none;
}

.item-btn {
  position: absolute;
  text-align: center;
  font-size: 1.6rem;
  bottom: 24px;
  width: 100%;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .item-btn {
    bottom: 10px;
    padding: 0 10px;
  }
}
.item-btn a {
  display: block;
  border: solid 1px #DD2B40;
  background: #DD2B40;
  padding: 16px 5px;
  line-height: 1;
  color: #fff;
  position: relative;
  border-radius: 6px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .item-btn a {
    padding: 10px 5px;
  }
}
.item-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 15px;
  z-index: 99;
}
.item-btn a:hover {
  background: #fff;
  color: #DD2B40;
}
.item-btn a:hover::before {
  border-color: #DD2B40;
}

/*----------
  #ico-BOX
----------*/
/* アイコン表示 反復処理for文 用 */
#ico-BOX {
  background: #f2f2f2;
}
#ico-BOX li {
  padding: 48px 20px;
  text-align: center;
  /* 表示したいリストの数だけforループ */
}
#ico-BOX li::before {
  content: "";
  display: inline-block;
  background-size: 800px 100px;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  background-image: url(../img/top/icn-ico-BOX.png);
}
#ico-BOX li.item-icn1::before {
  background-position: 0px 0;
}
#ico-BOX li.item-icn2::before {
  background-position: -100px 0;
}
#ico-BOX li.item-icn3::before {
  background-position: -200px 0;
}
#ico-BOX li.item-icn4::before {
  background-position: -300px 0;
}
#ico-BOX li.item-icn5::before {
  background-position: -400px 0;
}
#ico-BOX li.item-icn6::before {
  background-position: -500px 0;
}
#ico-BOX li.item-icn7::before {
  background-position: -600px 0;
}
#ico-BOX li.item-icn8::before {
  background-position: -700px 0;
}
#ico-BOX li p {
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767px) {
  #ico-BOX li {
    padding: 24px 8px;
  }
}

/*----------
  #recruit
----------*/
#recruit .txt {
  font-size: 1.8rem;
  padding-bottom: 10px;
  margin: 32px 0;
}
@media (max-width: 767px) {
  #recruit .txt {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
#recruit .flow-box {
  background: #FAF1D0;
  padding: 40px 32px;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  #recruit .flow-box {
    font-size: 1.4rem;
    padding: 32px 10px;
  }
}
#recruit .flow-box .flow-title {
  font-size: 2rem;
  font-weight: bold;
  border-left: #DD2B40 6px solid;
  padding-left: 10px;
  line-height: 1.5em;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  #recruit .flow-box .flow-title {
    font-size: 1.6rem;
  }
}
#recruit .flow-box .chart {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #recruit .flow-box .chart {
    display: block;
  }
}
#recruit .flow-box .chart div {
  background: #fff;
  width: 204px;
  text-align: center;
  line-height: 1.4em;
  padding: 12px 0;
  position: relative;
  height: 80px;
}
@media (max-width: 767px) {
  #recruit .flow-box .chart div {
    width: 100%;
    height: 40px;
    padding: 10px 0;
    margin-bottom: 30px;
  }
  #recruit .flow-box .chart div:last-child {
    margin-bottom: unset;
  }
}
#recruit .flow-box .chart div::after {
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #999999;
  position: absolute;
  top: 31px;
  right: -42px;
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  #recruit .flow-box .chart div::after {
    top: unset;
    bottom: -30px;
    left: 46.5%;
    transform: none;
  }
}
#recruit .flow-box .chart div:last-child::after {
  display: none;
}
#recruit .flow-box .chart div p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
}
@media (max-width: 767px) {
  #recruit .flow-box .chart div p {
    width: 100%;
  }
}
#recruit h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  #recruit h3 {
    font-size: 1.6rem;
  }
}
#recruit .recruit-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 64px;
  width: 100％;
}
@media (max-width: 767px) {
  #recruit .recruit-wrap {
    margin-top: 52px;
  }
}
#recruit .recruit-box {
  background: #fff;
  padding: 32px;
  margin-bottom: 30px;
  width: calc(50% - 20px);
  border-radius: 16px;
}
@media (max-width: 767px) {
  #recruit .recruit-box {
    padding: 24px;
    width: 100%;
  }
}
#recruit .recruit-access {
  display: flex;
}
@media (max-width: 767px) {
  #recruit .recruit-access {
    display: block;
  }
}
#recruit .recruit-access-map {
  position: relative;
  display: block;
  width: 144px;
  margin-top: 20px;
  padding: 12px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #DD2B40;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
#recruit .recruit-access-map::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 15px;
  z-index: 99;
}
#recruit .recruit-access-data {
  overflow: hidden;
}
@media (max-width: 767px) {
  #recruit .recruit-access-data {
    width: auto;
  }
}
#recruit .recruit-access-data dl {
  text-align: left;
  padding-bottom: 25px;
}
#recruit .recruit-access-data dt {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #recruit .recruit-access-data dt {
    font-size: 1.6rem;
  }
}
#recruit .recruit-access-data dt::after {
  position: absolute;
  content: "";
  height: 5px;
  border-bottom: dotted 5px #D95363;
  width: 100%;
  top: 50%;
  margin-left: 16px;
}
#recruit .recruit-access-data dd span {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  #recruit .recruit-access-data dd {
    font-size: 1.4rem;
  }
}
#recruit .recruit-access-data p.comments {
  position: relative;
  color: #999;
  font-size: 1.5rem;
  padding-left: 20px;
  text-align: left;
}
@media (max-width: 767px) {
  #recruit .recruit-access-data p.comments {
    font-size: 1.2rem;
  }
}
#recruit .recruit-access-data p.comments::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "※";
}
#recruit .recruit-exp {
  text-align: center;
  margin-top: 18px;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  #recruit .recruit-exp {
    font-size: 1.4rem;
  }
}
#recruit .recruit-exp-carfare {
  position: relative;
  display: inline-block;
  background: #119563;
  padding: 16px 36px;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  border-radius: 31px;
}
@media (max-width: 767px) {
  #recruit .recruit-exp-carfare {
    display: block;
    padding: 14px 10px;
    font-size: 1.8rem;
    border-radius: 37px;
  }
}
#recruit .recruit-exp-txt {
  margin-top: 60px;
}
@media (max-width: 767px) {
  #recruit .recruit-exp-txt {
    margin-top: 44px;
  }
}
#recruit .recruit-exp-contact {
  font-weight: bold;
  margin-top: 34px;
}
@media (max-width: 767px) {
  #recruit .recruit-exp-contact {
    margin-top: 20px;
  }
}
#recruit .recruit-list {
  margin-bottom: 64px;
}
#recruit .recruit-list li {
  padding-left: 15px;
}
#recruit .recruit-list li::before {
  display: inline-block;
  content: "※";
  margin-left: -15px;
}
@media (max-width: 767px) {
  #recruit .recruit-list {
    margin-bottom: 54px;
  }
}

/*----------
  #faq
----------*/
#faq {
  background: #f2f2f2;
}
#faq .faq-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}
#faq .faq-q {
  display: block;
  position: relative;
  margin: 0;
  padding: 20px 60px 20px 25px;
  background: #ffffff;
  cursor: pointer;
}
@media (max-width: 767px) {
  #faq .faq-q {
    padding: 15px 35px 15px 15px;
  }
}
#faq .faq-q:not(:first-child) {
  margin-top: 20px;
}
#faq .faq-q:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  #faq .faq-q:after {
    right: 10px;
  }
}
#faq .faq-q.open:after {
  transform: rotate(-45deg);
  top: 45%;
  border-color: #ffffff;
}
#faq .faq-a {
  display: none;
  padding: 20px 15px 20px 25px;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  #faq .faq-a {
    padding: 15px 30px 15px 15px;
  }
}
#faq .flex {
  display: flex;
}
#faq .flex p {
  margin-top: 5px;
  margin-left: 8px;
  width: 100%;
}
@media (max-width: 767px) {
  #faq .flex p {
    margin-top: 1px;
    margin-left: 6px;
  }
}
#faq .flex.step .before {
  width: 8rem;
}
@media (max-width: 767px) {
  #faq .flex.step {
    display: block;
  }
  #faq .flex.step p {
    margin: 0;
  }
}
#faq .before {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  #faq .before {
    font-size: 1.6rem;
  }
}
#faq .faq-container .faq-q:active,
#faq .faq-container .faq-q.open {
  background-color: #DD2B40;
  color: white;
}
#faq .faq-container .faq-q:hover i:before,
#faq .faq-container .faq-q:hover i:active,
#faq .faq-container .faq-q.open i {
  color: #000;
}

/*----------
  .contact
----------*/
.contact {
  background: #F9FF8A;
  text-align: center;
}
@media (max-width: 767px) {
  .contact {
    background: none;
    display: none;
  }
  .contact:last-child {
    display: block;
  }
}
.contact .list {
  justify-content: space-between;
}
.contact .inner {
  padding: 40px 10px;
}
@media (max-width: 767px) {
  .contact .inner {
    background: #F9FF8A;
    padding: 24px 10px;
  }
}
@media (max-width: 767px) {
  .contact .list.col2 .list-item {
    position: relative;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 5px);
  }
  .contact .list.col2 .list-item:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    right: 12px;
    z-index: 99;
  }
  .contact .list.col2 .list-item:not(:last-child) {
    margin-right: 10px;
  }
}
.contact .list-item {
  padding: 2px;
  background: #fff;
  border: 2px solid #DD2B40;
  border-radius: 6px;
}
.contact .list-item.item-tel h4 {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 2.6;
}
@media (max-width: 767px) {
  .contact .list-item.item-tel h4 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}
.contact .list-item.item-tel a[href^="tel:"] {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
}
.contact .list-item.item-tel .tel {
  position: relative;
  padding-left: 40px;
}
.contact .list-item.item-tel .tel::before {
  display: inline-block;
  content: "";
  width: 33px;
  height: 23px;
  margin-bottom: -5px;
  margin-left: -50px;
  background: url("../img/common/icon-tel.png") 0 center/contain no-repeat;
}
.contact .list-item.item-tel p.caution {
  font-size: 1.4rem;
  line-height: 1.5;
  padding-left: 15px;
}
.contact .list-item.item-tel p.caution::before {
  display: inline-block;
  content: "※";
  margin-left: -15px;
}
.contact .list-item .text {
  font-size: 1.1rem;
  line-height: 2.2;
}
.contact .list-item span.br {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .contact .list-item span.br::before {
    content: "\a";
    white-space: pre;
  }
}
@media (max-width: 767px) {
  .contact .item-txt {
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-top: 5px;
    color: #000;
  }
  .follow-button .contact .item-txt {
    color: #000;
  }
}
.contact .item-oubo {
  width: 49%;
}
@media (max-width: 767px) {
  .contact .item-oubo {
    width: calc(50% - 5px);
  }
}
.contact a.item-apply {
  position: relative;
  display: block;
  background: #DD2B40;
  font-size: 3rem;
  font-weight: bold;
  width: 100%;
  min-height: 60px;
  height: 100%;
  color: #fff;
  border: 1px solid #DD2B40;
  border-radius: 6px;
}
.contact a.item-apply:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  border-top: 2px solid #DD2B40;
  border-right: 2px solid #DD2B40;
  transform: rotate(45deg);
  right: 32px;
  z-index: 99;
}
.contact a.item-apply div {
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .contact a.item-apply {
    font-size: 1.1rem;
    line-height: 1.3;
    width: 100%;
    min-height: 48px;
  }
  .contact a.item-apply:before {
    border-width: 1px;
    right: 12px;
    margin-top: -5px;
    width: 8px;
    height: 8px;
  }
}

.contact-text {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: left;
  width: 800px;
  margin: 0 auto 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .contact-text {
    width: auto;
  }
}
.contact-text a {
  text-decoration: underline;
  color: #fff;
}

.follow-button {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 99;
  transition: all 1s ease;
}
.follow-button .contact {
  background-color: #F9FF8A;
}
@media (max-width: 767px) {
  .follow-button .contact {
    background: none;
  }
}
.follow-button .contact .inner {
  padding: 10px 10px 10px 60px;
}
@media (max-width: 767px) {
  .follow-button .contact .inner {
    background: white;
  }
}
.follow-button.is-hdn {
  opacity: 0;
  bottom: -1000px;
}

/******************************************************************
  4■detail
*****************************************************************/
#detail {
  background-color: #f8f8f8;
}
@media (max-width: 767px) {
  #detail .inner {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  #detail footer .inner {
    padding-top: 56px;
  }
}
#detail .detail-ic-koyo {
  top: 65px;
  left: 10px;
  line-height: 1;
}
@media (max-width: 767px) {
  #detail .detail-ic-koyo {
    top: 30px;
  }
}
#detail .detail-ttl {
  border-bottom: solid 1px #333333;
  margin-bottom: 24px;
  padding: 12px 0;
}
#detail .detail-ttl h1 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}
#detail .detail-unit .detail-ph .detail-flex-img {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #detail .detail-unit .detail-ph .detail-flex-img {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
#detail .detail-unit .detail-ph .ph {
  border: solid 8px #ffffff;
  margin: 40px 20px;
  width: 380px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  #detail .detail-unit .detail-ph .ph {
    width: auto;
    margin: 20px 20px 0;
  }
}
#detail .detail-unit .detail-ph .ph img {
  max-width: 100%;
}
#detail .detail-unit .detail-ph .images-text {
  margin: -40px 0 30px;
  text-align: center;
  font-size: 1.2rem;
}
#detail .detail-unit .detail-ph .copy-wrap {
  margin-bottom: 30px;
}
#detail .detail-unit .detail-ph .copy-wrap .tit {
  font-weight: bold;
  margin-bottom: 10px;
}
#detail .detail-unit .detail-ph .tag {
  overflow: hidden;
  margin-bottom: 20px;
}
#detail .detail-unit .detail-ph .tag li {
  background: #ffffff;
  border: 1px solid #333333;
  border-radius: 3px;
  float: left;
  font-size: 12px;
  line-height: 1;
  margin: 0 10px 10px 0;
  padding: 6px 12px;
  white-space: nowrap;
}
#detail .detail-unit .detail-data-item {
  background-color: #fff;
  margin-bottom: 100px;
  padding: 50px 30px;
}
@media (max-width: 767px) {
  #detail .detail-unit .detail-data-item {
    margin-bottom: 88px;
    padding: 32px 8px;
  }
}
#detail .detail-unit .detail-data-item-ttl {
  margin-bottom: 40px;
  overflow: hidden;
  text-align: center;
  letter-spacing: 0.2em;
}
#detail .detail-unit .detail-data-item-ttl span {
  position: relative;
  display: inline-block;
  margin: 0 2rem;
  padding: 0 2rem;
  font-size: 2.8rem;
}
#detail .detail-unit .detail-data-item-ttl span::before, #detail .detail-unit .detail-data-item-ttl span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 2px;
  background-color: #000;
}
#detail .detail-unit .detail-data-item-ttl span::before {
  left: 100%;
}
#detail .detail-unit .detail-data-item-ttl span::after {
  right: 100%;
}
#detail .detail-unit .detail-data-item dl {
  display: table;
  border-bottom: solid 1px #ccc;
  width: 100%;
}
@media (max-width: 767px) {
  #detail .detail-unit .detail-data-item dl {
    display: block;
    margin-bottom: 8px;
  }
}
#detail .detail-unit .detail-data-item dl dt {
  display: table-cell;
  padding: 30px;
  width: 190px;
  font-weight: bold;
  vertical-align: middle;
}
@media (max-width: 767px) {
  #detail .detail-unit .detail-data-item dl dt {
    display: inline-block;
    background-color: #f3f3f3;
    padding: 0 8px;
    width: auto;
  }
}
#detail .detail-unit .detail-data-item dl dd {
  display: table-cell;
  padding: 30px;
  word-break: break-all;
}
@media (max-width: 767px) {
  #detail .detail-unit .detail-data-item dl dd {
    display: block;
    padding: 8px;
  }
  #detail .detail-unit .detail-data-item dl dd a[href^="tel:"] {
    text-decoration: underline;
  }
}
#detail .detail-btn {
  margin: 0 auto;
  width: 80%;
  text-align: center;
}
#detail .detail-btn a {
  display: block;
  background-color: #DD2B40;
  border-radius: 3px;
  padding: 24px 0;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}

/******************************************************************
  ■header
*****************************************************************/
#header {
  position: fixed;
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10000;
}
#header .header-logo {
  height: 80px;
  padding: 9px;
}
#header .header-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
#header .header-logo a img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  #header .header-logo {
    height: 54px;
    padding: 10px 8px;
  }
  #header .header-logo a img {
    max-width: calc(100% - 112px);
    width: auto;
  }
}
#header nav {
  display: flex;
}
@media (min-width: 768px) {
  #header nav {
    flex-direction: row-reverse;
    font-weight: bold;
    font-size: 1.1rem;
  }
}
@media (min-width: 992px) {
  #header nav {
    font-size: 1.4rem;
  }
}
#header nav a {
  display: table-cell;
  vertical-align: middle;
  height: 54px;
  line-height: 1.5;
  color: var(--color-text);
}
@media (min-width: 768px) {
  #header nav a {
    padding: 20px 0;
    height: 80px;
  }
}
@media (min-width: 992px) {
  #header nav a {
    padding: 15px 0;
  }
}
#header .header-btn {
  margin-right: 60px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #header .header-btn {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #header .header-btn {
    position: fixed;
    top: 0;
    right: 56px;
    margin: 0;
  }
  #header .header-btn a {
    width: 56px;
    font-size: 1.2rem;
  }
}
#header .header-btn a {
  background: #DD2B40;
  color: #fff;
  padding: 9px 8px;
}
@media (min-width: 768px) {
  #header .header-btn a {
    padding: 20px 12px;
  }
}
@media (min-width: 992px) {
  #header .header-btn a {
    padding: 15px 20px;
  }
}
#header .header-nav ul {
  display: flex;
}
#header .header-nav ul li {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  #header .header-nav ul li {
    margin-right: 24px;
    white-space: nowrap;
    display: block;
    width: auto;
  }
}
@media (min-width: 992px) {
  #header .header-nav ul li {
    margin-right: 32px;
  }
}
#header .menu-btn {
  position: fixed;
  display: block;
  background-color: var(--color-black-2);
  width: 56px;
  height: 54px;
  top: 0;
  right: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  z-index: 9;
}
#header .menu-btn::before, #header .menu-btn::after {
  position: absolute;
  display: block;
  width: 28px;
  transition: all 0.3s ease;
}
#header .menu-btn::before {
  content: "";
  background-color: #DD2B40;
  border: none;
  height: 2px;
  top: 17px;
  left: 14px;
}
#header .menu-btn::after {
  content: "";
  border-top: solid 2px #DD2B40;
  border-bottom: solid 2px #DD2B40;
  height: 10px;
  top: 26px;
  left: 14px;
}
@media (min-width: 768px) {
  #header .menu-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .open #header .menu-btn {
    transition: all 0.3s ease;
  }
  .open #header .menu-btn::before, .open #header .menu-btn::after {
    background-color: #DD2B40;
    border: none;
    height: 2px;
    top: 25px;
    transform: translateX(-75%);
  }
  .open #header .menu-btn::before {
    content: "";
    transform: rotate(-45deg);
  }
  .open #header .menu-btn::after {
    content: "";
    transform: rotate(45deg);
  }
  .open #header .menu-box {
    position: fixed;
    top: 54px;
    left: 0;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 20px;
    overflow: scroll;
  }
  .open #header .menu-box li {
    display: block;
    width: 100%;
    border-bottom: 1px dotted #ccc;
  }
  .open #header .menu-box li a {
    position: relative;
    height: auto;
    padding: 24px 20px 24px 20px;
    color: #DD2B40;
    display: block;
    text-align: center;
  }
}

/******************************************************************
  ■footer
*****************************************************************/
#footer {
  background-color: #DD2B40;
  padding: 10px 60px;
  text-align: center;
}
@media (max-width: 767px) {
  #footer {
    padding: 10px;
  }
}
#footer .copyright {
  line-height: 1;
  color: #eee;
}
#footer small {
  color: #eee;
  font-size: 1rem;
}
#footer .ga-pdf a {
  color: #eee;
  text-decoration: none;
}
#footer .ga-pdf a:hover {
  text-decoration: underline;
}

#page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
}
@media (max-width: 767px) {
  #page-top {
    right: 10px;
    bottom: 10px;
  }
}
#page-top a {
  position: relative;
  display: block;
  background-color: #DD2B40;
  border-radius: 50vh;
  border: 4px solid #eee;
  width: 52px;
  height: 52px;
  overflow: hidden;
}
#page-top a::before {
  content: "";
  position: absolute;
  border: 0;
  border-top: solid 2px #eee;
  border-right: solid 2px #eee;
  width: 18px;
  height: 18px;
  transform: rotate(315deg);
  top: calc(50% - 5px);
  left: calc(50% - 8px);
}/*# sourceMappingURL=common.css.map */