<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/******************************************************************
カスタムテンプレート－詳細ページ専用
*****************************************************************/
/*****************************************************************
セッティングファイル
*****************************************************************/
/******************************************************************
  ■common-base
*****************************************************************/
*,
*:before,
*:after {
  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: #fff;
  color: #494436;
  line-height: 1.5;
  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 (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  body.fixed {
    overflow-y: hidden;
    position: fixed;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

#wrap {
  overflow: hidden;
}

.data-for-aidemlog { /* 独自ログ計測用 */ }

/* フォント */
.font-min {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font-bold {
  font-weight: bold;
}

dl, ol, ul {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  select, input[type=text] {
    font-size: 1.6rem;
    transform: scale(0.875);
  }
}

@media (max-width: 767px) {
  .text-sp-center {
    text-align: center;
  }
}

/* 画像 */
img {
  width: 100%;
  height: auto;
}

.cent-img {
  height: 200px;
  text-align: center;
  margin: 0 0 20px;
}
.cent-img img {
  position: relative;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translateY(-50%);
}

.img-hover {
  overflow: hidden;
}
.img-hover img {
  transition: 1s linear;
}
.img-hover:hover img {
  transform: scale(1.05) rotate(0.1deg);
}

.main {
  padding-top: 60px;
  min-height: 700px;
}

.float-left {
  float: left;
}

.f-end {
  justify-content: flex-end;
}

/* paddingの追加
----------------------------------------------- */
.pb-6 {
  padding-bottom: 3.5rem;
}

.pb-7 {
  padding-bottom: 4rem;
}

.pb-8 {
  padding-bottom: 4.5rem;
}

.pb-9 {
  padding-bottom: 5rem;
}

/* = Selected Text
----------------------------------------------- */
::-moz-selection {
  background: rgba(175, 1, 122, 0.1); /* Safari */
}
::selection {
  background: rgba(175, 1, 122, 0.1); /* Safari */
}

::-moz-selection {
  background: rgba(175, 1, 122, 0.1); /* Firefox */
}

/******************************************************************
  ■bootstrapリセット
*****************************************************************/
@media (min-width: 576px) {
  .container, .contents-inn {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .container, .contents-inn {
    max-width: 750px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .container, .contents-inn {
    max-width: 970px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .container, .contents-inn {
    max-width: 1100px;
    margin: 0 auto;
  }
}
/******************************************************************
  ■common
*****************************************************************/
a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:link, a:visited, a:active, a:hover:hover {
  display: block;
  color: #333;
  text-decoration: none;
}
a:link.inline, a:visited.inline, a:active.inline, a:hover:hover.inline {
  display: inline;
  text-decoration: underline;
}
a.hov_scale:hover &gt; img {
  transform: scale(1.05);
}
a &gt; img {
  width: 100%;
  transition: transform 0.7s ease-out;
}
@media (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* パンくずリスト
------------------------------*/
@media (max-width: 767px) {
  #breadcrumbs {
    background: #eee;
    margin: 0 calc(50% - 50vw);
    padding: 0 20px;
  }
}
#breadcrumbs ol {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #breadcrumbs ol {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    white-space: nowrap;
  }
  #breadcrumbs ol::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 768px) {
  #breadcrumbs ol {
    padding: 7px 0;
  }
}
#breadcrumbs ol li {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0;
}
@media (min-width: 768px) {
  #breadcrumbs ol li {
    height: auto;
  }
}
#breadcrumbs ol li:not(:last-child)::after {
  display: inline-block;
  content: "&gt;";
  margin-left: 5px;
}
@media (max-width: 767px) {
  #breadcrumbs ol li:not(:last-child)::after {
    padding: 10px 0;
  }
}
#breadcrumbs ol li a {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid #888888;
  overflow: visible;
}
@media (max-width: 767px) {
  #breadcrumbs ol li a {
    border-bottom: none;
  }
}

/* ネガティブマージン
------------------------------*/
.full-width {
  margin: 0 calc(50% - 50vw);
}
.full-width .contents-inn {
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .full-width .contents-inn {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .full-sp-width {
    margin: 0 calc(50% - 50vw);
  }
}
/******************************************************************
  ■パーツ設定
*****************************************************************/
/* SVG
------------------------------*/
svg.svg-icon {
  margin: 2px 5px 0 0;
  height: 20px;
  width: 20px;
  fill: #AF1D7B;
}
@media (min-width: 768px) {
  svg.svg-icon {
    width: 27px;
    height: 27px;
    margin-right: 10px;
    margin-top: -2px;
  }
}

#index svg.svg-icon {
  margin: -2px 5px 0 0;
}

/* ボタン
------------------------------*/
.submitBtn {
  font-size: 1.6rem;
  /* font-weight: bold;*/
  padding: 0 10px 10px;
  letter-spacing: 0;
  line-height: 1;
}
.submitBtn li {
  padding: 0 5px 10px !important;
}
.submitBtn li a {
  position: relative;
  background: #AF1D7B;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 1px 0 1px #ccc;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .submitBtn li a {
    padding: 22px 0;
  }
}
.submitBtn li a:hover {
  color: #fff;
}
.submitBtn li.oubo a {
  background: #494436;
}
.submitBtn li.oubo a::before {
  border: 0;
}
.submitBtn li.oubo a span {
  position: relative;
  padding-left: 35px;
}
.submitBtn li.oubo a span::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  background: url("../img/common/icon-oubo-web.png") center/contain no-repeat;
  width: 25px;
  height: 25px;
  border: 0;
}
@media (min-width: 768px) {
  .submitBtn li.oubo a span::after {
    width: 29px;
    height: 29px;
    top: 0;
  }
}
@media (min-width: 768px) {
  .submitBtn li.oubo a span {
    padding-left: 39px;
  }
}
.submitBtn li.oubo.tel a span::after {
  background: url("../img/common/icon-oubo-tel.png") center/contain no-repeat;
}
.submitBtn li.oubo.map {
  padding: 10px 5px !important;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .submitBtn li.oubo.map {
    font-size: 1.6rem;
    padding: 15px 30px 0 0 !important;
  }
}
.submitBtn li.oubo.map a {
  background: #AF1D7B;
  padding: 15px 20px;
}
.submitBtn li.oubo.map a span::after {
  background: url("../img/common/icon-link-map.png") center/contain no-repeat;
  top: -4px;
  width: 25px;
  height: 25px;
}
@media (min-width: 768px) {
  .submitBtn li.oubo.map a span::after {
    top: -2px;
  }
}
@media (min-width: 768px) {
  .submitBtn li {
    padding: 0 10px !important;
  }
}
@media (min-width: 768px) {
  .submitBtn {
    font-size: 2.4rem;
    padding: 0 30px 30px 30px;
    letter-spacing: 2px;
  }
}
.submitBtn.button {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .submitBtn.button {
    padding: 40px 0;
  }
}
.submitBtn.map-link {
  padding: 0;
}
.submitBtn .blank {
  position: relative;
}
.submitBtn .blank::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: rotate(0deg);
  border: none;
  background: url(../img/common/icon-blank-w_pc.png) center/10px no-repeat;
}

.contents {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .contents {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .contents-sp-15 {
    padding: 15px 0;
  }
}
.contents-inn {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .contents-inn {
    padding: 60px 0;
  }
}

/******************************************************************
  ■ タイトルタイプ
*****************************************************************/
/* タイトル2段
------------------------------*/
.tit_type_2nd {
  text-align: center;
  line-height: 1;
  margin: 0 0 30px;
  font-weight: normal;
}
.tit_type_2nd .ttl-en {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  margin: 0 0 10px;
  letter-spacing: 2px;
  color: #AF1D7B;
}
@media (min-width: 768px) {
  .tit_type_2nd .ttl-en {
    font-size: 1.4rem;
  }
}
.tit_type_2nd .ttl-jp {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .tit_type_2nd .ttl-jp {
    font-size: 2.6rem;
  }
}

/* タイトル横並び
------------------------------*/
.tit_type_side {
  line-height: 1.2;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .tit_type_side {
    flex-wrap: wrap;
  }
}
.tit_type_side .ttl-en {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #AF1D7B;
  margin-right: 10px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .tit_type_side .ttl-en {
    width: 100%;
    margin-bottom: 13px;
  }
}
@media (min-width: 768px) {
  .tit_type_side .ttl-en {
    font-size: 1.6rem;
  }
}
.tit_type_side .ttl-jp {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .tit_type_side .ttl-jp {
    font-size: 3.6rem;
  }
}

/* タイトル(タイプA)
------------------------------*/
.tit_type_a {
  position: relative;
  text-align: center;
  margin-bottom: 43px;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .tit_type_a {
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
}
.tit_type_a::before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  transform: translate3d(-50%, 0, 0);
  background: #AF1D7B;
}
@media (min-width: 768px) {
  .tit_type_a::before {
    width: 50px;
    height: 4px;
  }
}

/* タイトル(タイプB)
------------------------------*/
.tit_type_b {
  position: relative;
  font-size: 1.6rem;
  padding: 0 10px 0.5em;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .tit_type_b {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
}
.tit_type_b::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  content: "";
  width: 30%;
  height: 1px;
  background-color: #AF1D7B;
}

/* タイトル(タイプC)
------------------------------*/
.tit_type_c {
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 1.8rem;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .tit_type_c {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .tit_type_c {
    background: none;
  }
}
.tit_type_c::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background-color: #AF1D7B;
}
@media (min-width: 768px) {
  .tit_type_c::before {
    width: 6px;
  }
}
@media (min-width: 768px) {
  .tit_type_c .tit_type_c_txt {
    padding: 5px 10px;
    position: relative;
  }
  .tit_type_c .tit_type_c_txt::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
    content: "";
    min-width: 1000px;
    height: 1px;
    background: #ccc;
  }
}

/* タイトル(タイプD)
------------------------------*/
.tit_type_d {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .tit_type_d {
    font-size: 2.4rem;
  }
}
.tit_type_d span {
  background: linear-gradient(#FFFFEE 60%, rgba(175, 29, 123, 0.5) 40%);
}

/* タイトル(タイプE)
------------------------------*/
.tit_type_e {
  font-size: 1.4rem;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-bottom-color: #AF1D7B;
}
@media (min-width: 768px) {
  .tit_type_e {
    font-size: 1.6rem;
  }
}

/* タイトル(タイプF)
------------------------------*/
.tit_type_f {
  position: relative;
  margin-bottom: 10px;
  padding-left: 13px;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .tit_type_f {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
.tit_type_f::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  margin: auto;
  border-radius: 3px;
  content: "";
  background-color: #AF1D7B;
}

/* タイトル(タイプG)
------------------------------*/
.tit_type_g {
  color: #AF1D7B;
  border-bottom: 1px solid #AF1D7B;
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 20px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .tit_type_g {
    margin-bottom: 18px;
    font-size: 1.8rem;
  }
}

/* タイトル(タイプH)
------------------------------*/
.tit_type_h {
  color: #fff;
  background: #AF1D7B;
  font-size: 1.5rem;
  padding: 10px;
}
@media (min-width: 768px) {
  .tit_type_h {
    font-size: 1.8rem;
    padding: 10px 20px;
  }
}

.card-img {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 768px) {
  .card-img {
    height: 300px;
  }
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.link-list li {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .link-list li {
    border-left: 1px solid #ccc;
  }
  .link-list li:nth-child(4n), .link-list li:last-child {
    border-right: 1px solid #ccc;
  }
}
@media (max-width: 767px) {
  .link-list li {
    border-bottom: 1px solid #ccc;
  }
  .link-list li:nth-child(odd) {
    border-right: 1px solid #ccc;
  }
}
.link-list li a {
  position: relative;
  padding: 17px 30px 17px 17px;
}
.link-list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(135deg);
  right: 20px;
}
@media (min-width: 768px) {
  .link-list li a::before {
    border-color: #333;
  }
}

.block {
  border: 1px solid #AF1D7B;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .block {
    border: 2px solid #AF1D7B;
  }
}

.detail-title {
  font-size: 12px;
  margin-bottom: 5px;
}

.note-block .note-block-l {
  width: 50%;
  padding-right: 3px;
}
@media (min-width: 768px) {
  .note-block .note-block-l {
    margin-right: 15px;
  }
}
.note-block .note-block-r {
  width: 50%;
  padding-left: 3px;
}
@media (min-width: 768px) {
  .note-block .note-block-r {
    margin-left: 15px;
  }
}

.cts-copy {
  color: #AF1D7B;
  font-weight: bold;
  font-size: 16px;
  margin: 15px 0;
}
@media (min-width: 768px) {
  .cts-copy {
    font-size: 20px;
  }
}

.ic {
  font-size: 0;
  display: inline-block;
}
@media (min-width: 768px) {
  .ic {
    margin-bottom: 9px;
  }
}
.ic li {
  display: inline-block;
  color: #494436;
  line-height: 1;
  font-size: 11px;
  padding: 5px 10px;
  margin: 0 10px 10px 0;
  text-align: center;
  white-space: nowrap;
  background: #ccc;
}
.ic li.ic-arbeit {
  background: #d75555;
  color: #fff;
}
.ic li.ic-parttimer {
  background: #aa67b4;
  color: #fff;
}
.ic li.ic-career {
  background: #4481b9;
  color: #fff;
}
.ic li.ic-contract {
  background: #4c8341;
  color: #fff;
}
.ic li.ic-scd {
  background: #fff;
  border: 1px solid #AF1D7B;
  color: #AF1D7B;
}
.ic li.ic-style {
  background: #fff;
  border: 1px solid #888;
  color: #494436;
}
@media (min-width: 768px) {
  .ic li {
    padding: 5px 10px;
    margin: 0 5px 5px 0;
  }
}

.carous-box {
  font-size: 1.3rem;
  margin-top: -5px;
}
@media (min-width: 768px) {
  .carous-box {
    margin-top: 30px;
    display: flex;
  }
}
@media (max-width: 767px) {
  .carous-box .carous-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 5px;
  }
  .carous-box .carous-item a {
    display: table;
  }
  .carous-box .carous-item a .listItem-img {
    display: table-cell;
    width: 100px;
    height: 75px;
    vertical-align: middle;
    text-align: center;
    position: relative;
  }
  .carous-box .carous-item a .listItem-tit {
    display: table-cell;
    width: auto;
    padding-left: 10px;
    vertical-align: middle;
  }
}
@media (min-width: 768px) {
  .carous-box .carous-item {
    width: calc(20% - 8px);
  }
  .carous-box .carous-item:not(:last-child) {
    margin-right: 15px;
  }
  .carous-box .carous-item .listItem-img {
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 10px;
  }
  .carous-box .carous-item .checked-listItem .listItem-img {
    position: relative;
    overflow: hidden;
  }
  .carous-box .carous-item .checked-listItem .listItem-img::before {
    position: relative;
    display: block;
    content: "";
    padding-top: 75%;
  }
  .carous-box .carous-item .checked-listItem img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    /*                    max-width: 100%;
                        max-height: 100%;
                        width: auto;
                        height: auto;*/
  }
}

#load-recommend .contents {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  #load-recommend .contents {
    padding-bottom: 30px;
  }
}

/******************************************************************
  ■ コンテンツ関連
*****************************************************************/
/* ページ内リンク(タイプA)
------------------------------*/
.guide-link-type-a {
  flex-wrap: wrap;
  border: 1px solid #AF1D7B;
  border-bottom: none;
  margin-top: 15px;
  background: #FFFFEE;
}
.guide-link-type-a li a {
  padding: 15px 0;
  color: #AF1D7B;
}
@media (min-width: 768px) {
  .guide-link-type-a li a {
    padding: 15px 45px 15px 25px;
  }
}
.guide-link-type-a li span {
  position: relative;
}
.guide-link-type-a li span::after {
  position: relative;
  top: -2px;
  left: 5px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #AF1D7B;
}
@media (min-width: 768px) {
  .guide-link-type-a li span::after {
    left: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #AF1D7B;
  }
}
@media (max-width: 767px) {
  .guide-link-type-a li {
    text-align: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #AF1D7B;
  }
  .guide-link-type-a li.w-sp-50 {
    width: 50%;
  }
  .guide-link-type-a li.w-sp-100 {
    width: 100%;
  }
  .guide-link-type-a li:nth-child(odd) {
    border-right: 1px solid #AF1D7B;
  }
  .guide-link-type-a li:last-child {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .guide-link-type-a {
    border: 2px solid #AF1D7B;
    border-right: none;
    border-left: none;
  }
}

/* ページ内リンク(タイプB)
------------------------------*/
.guide-link-type-b {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .guide-link-type-b {
    padding: 60px;
  }
}
.guide-link-type-b .link-list {
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .guide-link-type-b .link-list {
    justify-content: center;
  }
}
.guide-link-type-b .link-list li {
  position: relative;
  display: flex;
  align-items: center;
}
.guide-link-type-b .link-list li a {
  width: 100%;
}

/* 4カラム:リンク(求人詳細：関連求人で使用)
------------------------------*/
.flex-link-type_b {
  font-size: 1.2rem;
  width: 100%;
  margin-bottom: 20px;
  background: #FFFFEE;
}
@media (min-width: 768px) {
  .flex-link-type_b {
    font-size: 1.4rem;
  }
}
.flex-link-type_b .flex-center-img {
  position: relative;
  border: 1px solid #ccc;
  margin-bottom: 0;
  overflow: hidden;
}
.flex-link-type_b .flex-center-img::before {
  content: "";
  display: block;
  padding-top: 66.666%;
}
@media (min-width: 768px) {
  .flex-link-type_b .flex-center-img {
    padding-top: 75%;
  }
  .flex-link-type_b .flex-center-img::before {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 35px 35px;
    border-color: transparent transparent #AF1D7B transparent;
    z-index: 99;
  }
  .flex-link-type_b .flex-center-img::after {
    position: absolute;
    content: "";
    top: auto;
    bottom: 8px;
    right: 10px;
    bottom: 7px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    z-index: 700;
  }
}
.flex-link-type_b .flex-center-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.flex-link-type_b .flex-link-type_b-txt {
  padding: 20px 0;
  white-space: normal;
}
@media (max-width: 767px) {
  .flex-link-type_b .flex-link-type_b-txt {
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px 10px;
  }
}
.flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-ttl {
  font-size: 1.5rem;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  .flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-ttl {
    font-size: 1.8rem;
  }
}
.flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-job {
  color: #888;
}

@media (min-width: 768px) {
  .float-md-right {
    margin: 0 0 20px 30px;
    max-width: 50%;
  }
  .float-md-left {
    margin: 0 30px 20px 0;
    max-width: 50%;
  }
  .pcHdn {
    display: none !important;
  }
  .flex-2-item li {
    width: calc(50% - 10px);
  }
  .flex-2-item li:not(:nth-child(2n)) {
    margin-right: 20px;
  }
  .flex-2-item li:last-child {
    margin-right: 0;
  }
  .flex-3-item li {
    width: calc(33.3% - 14px);
  }
  .flex-3-item li:not(:nth-child(3n)) {
    margin-right: 20px;
  }
  .flex-3-item li:last-child {
    margin-right: 0;
  }
  .flex-4-item li {
    width: calc(25% - 16px);
  }
  .flex-4-item li:not(:nth-child(4n)) {
    margin-right: 20px;
  }
  .flex-4-item li:last-child {
    margin-right: 0;
  }
  .flex-5-item li {
    width: calc(20% - 16px);
  }
  .flex-5-item li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
  .flex-5-item li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .spHdn {
    display: none !important;
  }
  .float-sp-left {
    float: left;
  }
  .overflow-x-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .overflow-x-scroll li {
    width: 250px;
    margin-right: 20px;
  }
  .flex-2-sp-item li {
    width: calc(50% - 8px);
  }
  .flex-2-sp-item li:not(:nth-child(2n)) {
    margin-right: 16px;
  }
  .flex-2-sp-item li:last-child {
    margin-right: 0;
  }
}
/******************************************************************
  ■ 背景色を変更
*****************************************************************/
/* トップページ交互に背景色を変更
------------------------------*/
/*#index .container&gt;.contents:nth-child(odd) {
    background: #E9F1F3;
}*/
/* トップページSEOリンク
------------------------------*/
.index-seolink {
  padding: 40px 0 50px;
}
.index-seolink.full-width .contents-inn {
  padding: 0;
}

/* 共通フッターコンテンツ背景色
------------------------------*/
/******************************************************************
  ■ 求人一覧
*****************************************************************/
/* 新着求人
------------------------------*/
.list-block-ttl, .detail-block-ttl {
  position: relative;
  background: #AF1D7B;
  color: #fff;
  padding: 15px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .list-block-ttl, .detail-block-ttl {
    font-size: 24px;
    padding: 20px;
  }
}
.list-block-ttl .new, .detail-block-ttl .new {
  background: #efe24e;
  padding: 0 10px;
  color: #494436;
  margin-right: 10px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .list-block-ttl .new, .detail-block-ttl .new {
    position: relative;
    top: -3px;
    padding: 2px 20px;
  }
}

.list-block-txt {
  overflow: hidden;
}
@media (max-width: 767px) {
  .list-block-txt {
    width: 100%;
  }
}
.list-block-txt .list-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .list-block-txt .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.list-block-cts {
  position: relative;
  padding: 10px 10px 20px;
  background: #FFFFEE;
}
@media (min-width: 768px) {
  .list-block-cts {
    padding: 30px;
  }
  .list-block-cts .list-block-ic {
    padding-left: 190px;
  }
  .list-block-cts .list-block-txt {
    padding-left: 190px;
  }
}

.list-block-img {
  min-width: 120px;
  max-width: 160px;
  width: 33%;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .list-block-img {
    min-width: 180px;
    max-width: 180px;
    width: 180px;
  }
  .list-block-img.float-left {
    float: none !important;
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .list-block-img figure {
    margin-bottom: 0;
  }
}

.list-block-ic {
  overflow: auto;
}

.index-list .block {
  border: 1px solid #AF1D7B;
}
.index-list .index-list-ttl {
  font-size: 1.6rem;
  color: #AF1D7B;
}
@media (min-width: 768px) {
  .index-list .index-list-ttl {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .index-list .note-block {
    flex-wrap: wrap;
  }
  .index-list .note-block .note-block-l, .index-list .note-block .note-block-r {
    width: 100%;
    padding-left: 0;
  }
  .index-list .note-block .note-block-r {
    padding-top: 5px;
  }
}
@media (min-width: 768px) {
  .index-list .list-block-cts {
    padding: 20px;
  }
  .index-list .float-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}

body:not(#index) {
  /**
  * モーダル
  **/
}
body:not(#index) .html-bottom {
  position: relative;
  background-image: linear-gradient(180deg, rgb(252, 252, 192), rgb(248, 248, 125) 65%);
  margin-top: 80px;
  padding: 48px 0;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom {
    margin-top: 145px;
    padding: 80px 0 168px;
  }
}
body:not(#index) .html-bottom::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 0 0);
          clip-path: polygon(0 100%, 100% 100%, 0 0);
  border-bottom-width: 80px;
  border-bottom-style: solid;
  -o-border-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(252, 252, 192));
     border-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(252, 252, 192));
  border-right: 100vw solid transparent;
  z-index: 5;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom::before {
    top: -145px;
    width: 100%;
    height: 145px;
    border-bottom-width: 145px;
  }
}
body:not(#index) .html-bottom .tit_type_2nd {
  margin-bottom: 24px;
  text-align: left;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .tit_type_2nd {
    margin-bottom: 8px;
  }
}
@media (min-width: 992px) {
  body:not(#index) .html-bottom .tit_type_2nd {
    margin-bottom: -16px;
  }
}
body:not(#index) .html-bottom .tit_type_2nd .ttl-en {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .tit_type_2nd .ttl-en {
    margin-bottom: 24px;
  }
}
body:not(#index) .html-bottom .tit_type_2nd .ttl-en img {
  width: auto;
  height: 43px;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .tit_type_2nd .ttl-en img {
    height: 87px;
  }
}
body:not(#index) .html-bottom .tit_type_2nd .ttl-jp {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .tit_type_2nd .ttl-jp {
    font-size: 2.4rem;
    line-height: 1.75;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
}
body:not(#index) .html-bottom .lists {
  display: block;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .lists {
    display: flex;
    justify-content: space-between;
  }
}
body:not(#index) .html-bottom .lists-item {
  width: 100%;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .lists-item {
    width: calc(50% - 20px);
  }
}
body:not(#index) .html-bottom .lists-item:nth-child(1) {
  order: 1;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .lists-item:nth-child(1) {
    order: 2;
    margin-bottom: 0;
  }
}
body:not(#index) .html-bottom .lists-item:nth-child(2) {
  order: 2;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .lists-item:nth-child(2) {
    order: 1;
    display: flex;
    align-items: center;
  }
}
body:not(#index) .html-bottom .btn-lists-item:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .btn-lists-item:not(:last-child) {
    margin-bottom: 32px;
  }
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(1) .btn-lists-link {
  border: 2px solid #494436;
  background-color: #fff;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(1) .btn-lists-link .circle {
  border: 3px solid #494436;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(1) .btn-lists-link .arrow {
  color: #494436;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(1) .btn-lists-link:hover {
  display: flex !important;
  opacity: 1;
  background-color: #494436;
  color: #fff;
  transition: all 0.2s ease-out;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(1) .btn-lists-link:hover .circle {
  border: 3px solid #fff;
  transition: all 0.2s ease-out;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(1) .btn-lists-link:hover .arrow {
  color: #fff;
  transition: all 0.2s ease-out;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(2) .btn-lists-link {
  border: 2px solid #494436;
  background-color: #494436;
  color: #fff;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(2) .btn-lists-link .circle {
  border: 3px solid #fff;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(2) .btn-lists-link .arrow {
  color: #fff;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(2) .btn-lists-link:hover {
  display: flex !important;
  opacity: 1;
  background-color: #fff;
  color: #494436;
  transition: all 0.2s ease-out;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(2) .btn-lists-link:hover .circle {
  border: 3px solid #494436;
  transition: all 0.2s ease-out;
}
body:not(#index) .html-bottom .btn-lists-item:nth-child(2) .btn-lists-link:hover .arrow {
  color: #494436;
  transition: all 0.2s ease-out;
}
body:not(#index) .html-bottom .btn-lists-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .btn-lists-link {
    padding: 24px;
    font-size: 2.4rem;
    line-height: 1.75;
  }
}
body:not(#index) .html-bottom .btn-lists-link .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .btn-lists-link .circle {
    width: 48px;
    height: 48px;
    border-width: 4px;
  }
}
body:not(#index) .html-bottom .btn-lists-link .arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 9px;
  transform: translateX(-15%) rotate(45deg);
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .btn-lists-link .arrow {
    width: 15px;
    height: 15px;
    transform: translateX(-15%) rotate(45deg);
  }
}
body:not(#index) .html-bottom .btn-lists-link .arrow::before, body:not(#index) .html-bottom .btn-lists-link .arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 3px;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .btn-lists-link .arrow::before, body:not(#index) .html-bottom .btn-lists-link .arrow::after {
    border-radius: 4px;
  }
}
body:not(#index) .html-bottom .btn-lists-link .arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .btn-lists-link .arrow::before {
    height: 4px;
  }
}
body:not(#index) .html-bottom .btn-lists-link .arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .btn-lists-link .arrow::after {
    width: 4px;
  }
}
body:not(#index) .html-bottom .btn-title {
  width: calc(100% - 28px);
  padding-left: 28px;
  text-align: center;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .btn-title {
    width: calc(100% - 48px);
    padding-left: 48px;
  }
}
body:not(#index) .html-bottom .lists-text {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  body:not(#index) .html-bottom .lists-text {
    font-size: 2rem;
  }
}
body:not(#index) .modal-overlay {
  width: 100vw;
  height: 100vh;
  background-color: #494436;
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
body:not(#index) .modal-entry {
  display: none;
  position: fixed;
  top: 72px;
  left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), 735px);
  height: auto;
  margin: 0 auto;
  transform: translateX(-50%);
  border-radius: 4px;
  background-color: #fff;
}
@media (min-width: 768px) {
  body:not(#index) .modal-entry {
    top: 112px;
    width: min(calc(100% - 60px), 1080px);
  }
}
@media (min-width: 992px) {
  body:not(#index) .modal-entry {
    top: 185px;
  }
}
body:not(#index) .modal-wrapper {
  position: relative;
  padding: 80px 24px;
}
@media (min-width: 768px) {
  body:not(#index) .modal-wrapper {
    padding: 80px 48px;
  }
}
@media (min-width: 992px) {
  body:not(#index) .modal-wrapper {
    padding: 100px;
  }
}
body:not(#index) .modal-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background: url(../img/top/deco-pc-004.svg) center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  body:not(#index) .modal-wrapper:before {
    height: 118px;
  }
}
body:not(#index) .modal-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 38px;
  background: url(../img/top/deco-pc-005.svg) center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  body:not(#index) .modal-wrapper:after {
    height: 118px;
  }
}
body:not(#index) .modal-entry-unit {
  position: relative;
  z-index: 10;
}
body:not(#index) .modal-entry-title {
  margin-bottom: 32px;
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: bold;
  letter-spacing: 0.018em;
  text-align: center;
}
@media (min-width: 768px) {
  body:not(#index) .modal-entry-title {
    margin-bottom: 40px;
    font-size: 3.2rem;
  }
}
body:not(#index) .modal-entry-title .marker {
  background: linear-gradient(transparent 50%, #F8F87D 50%);
}
body:not(#index) .modal-entry-lists {
  display: block;
}
@media (min-width: 768px) {
  body:not(#index) .modal-entry-lists {
    display: flex;
    justify-content: space-between;
  }
}
body:not(#index) .modal-entry-listsitem {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  body:not(#index) .modal-entry-listsitem {
    width: calc(50% - 20px);
  }
}
body:not(#index) .modal-entry-listsitem:first-child {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  body:not(#index) .modal-entry-listsitem:first-child {
    margin-bottom: 0;
  }
}
body:not(#index) .modal-entry-listslink {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  border: 4px solid #AF1D7B;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background-color: #AF1D7B;
  color: #fff !important;
  font-size: 1.8rem;
  line-height: 1.75;
  font-weight: bold;
}
@media (min-width: 768px) {
  body:not(#index) .modal-entry-listslink {
    height: 80px;
    font-size: 2rem;
  }
}
body:not(#index) .modal-entry-listslink:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 13px;
  background: url(../img/common/ic-blunk-w.png) center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  body:not(#index) .modal-entry-listslink:after {
    right: 24px;
    width: 24px;
    height: 20px;
  }
}
body:not(#index) .modal-entry-listslink:hover {
  opacity: 1;
  background-color: #fff;
  color: #AF1D7B !important;
  transition: all 0.2s ease-out;
}
body:not(#index) .modal-entry-listslink:hover:after {
  background: url(../img/common/ic-blunk-p.png) center no-repeat;
  background-size: cover;
  transition: all 0.2s ease-out;
}
body:not(#index) .modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 54px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  background-color: #494436;
}
@media (min-width: 768px) {
  body:not(#index) .modal-close-btn {
    top: 32px;
    right: 32px;
    width: 64px;
  }
}
body:not(#index) .modal-close-btn:before, body:not(#index) .modal-close-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 27px);
  width: 54px;
  height: 2px;
  background-color: #ffffff;
}
body:not(#index) .modal-close-btn:before {
  transform: rotate(45deg);
}
body:not(#index) .modal-close-btn:after {
  transform: rotate(-45deg);
}

/* 背景色変更
------------------------------*/
body#detail {
  background-color: #FFFFEE;
}
body#detail #page_top {
  background-color: #FFFFFF;
}
body#detail .footer .container {
  margin-top: 0;
}

/******************************************************************
  ■header
*****************************************************************/
header {
  z-index: 1000;
  width: 100%;
  height: 50px;
  background-color: rgb(255, 255, 255);
}
@media (min-width: 768px) {
  header {
    position: fixed;
    height: 80px;
    box-shadow: none; /*横方向　下方向　ぼかし　広がり　色 */
  }
}

#index header {
  background-color: rgba(255, 255, 255, 0);
}

#index header.scrolled {
  background-color: rgb(255, 255, 255); /* スクロール後は白背景 */
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.3); /*横方向　下方向　ぼかし　広がり　色 */
}

.header {
  display: flex;
  padding-left: 5px;
}
@media (min-width: 768px) {
  .header {
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .header {
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.header-logo {
  margin: 0;
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 0;
}
@media (min-width: 768px) {
  .header-logo {
    height: 80px;
  }
}
.header-logo .logo {
  width: 170px;
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .header-logo .logo {
    width: 180px;
  }
}
@media (min-width: 992px) {
  .header-logo .logo {
    width: 280px;
  }
}
@media (min-width: 1200px) {
  .header-logo .logo {
    width: 290px;
  }
}
@media (min-width: 992px) and (max-width: 1059px) {
  .header-logo .logo {
    width: 260px;
  }
}
.header-logo .logo-text {
  margin-left: 10px;
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .header-logo .logo-text {
    margin-left: 12px;
    font-size: 1.1rem;
    line-height: 1.75;
  }
}
@media (min-width: 992px) {
  .header-logo .logo-text {
    margin-left: 24px;
    font-size: 1.4rem;
    line-height: 1.75;
  }
}

/* PC用 menu
----------------------------------------------- */
.main-menu-wrap {
  display: none;
}
@media (min-width: 768px) {
  .main-menu-wrap {
    display: block;
  }
  .main-menu-wrap .main-menu {
    display: flex;
    height: 80px;
  }
  .main-menu-wrap .main-menu-cts {
    padding-left: 8px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 10px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn {
    flex: 1 0 auto;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a {
    position: relative;
    width: 150px;
    padding: 10px 0;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a span {
    display: grid;
    place-items: center;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    text-align: center;
    line-height: 1.2;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a span::after {
    display: none;
  }
  .main-menu-wrap .main-menu-cts a {
    height: 100%;
  }
  .main-menu-wrap .main-menu-cts a span {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.1rem;
    line-height: 1.75;
    font-weight: bold;
    text-shadow: 2px 2px 2px #ffffff;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.4rem;
    line-height: 1.75;
    font-weight: bold;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: bold;
  }
}
@media (min-width: 768px) and (min-width: 992px) and (max-width: 1059px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .main-menu-wrap .main-menu-cts a span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    transition: all 0.3s ease;
    transform: scaleX(0);
    background-color: #AF1D7B;
  }
  .main-menu-wrap .main-menu-cts.current-hover a span::after, .main-menu-wrap .main-menu-cts.current a span::after {
    transform: scaleX(1);
  }
}

/* SP用 menu
----------------------------------------------- */
.menu-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
  z-index: 1000;
  background: #AF1D7B;
  opacity: 0.8;
}
.menu-btn span {
  position: absolute;
  right: 10px;
  margin: 0 auto;
  width: 30px;
  height: 2px;
  display: block;
  background-color: #fff;
}
.menu-btn span:nth-of-type(1) {
  top: 15px;
}
.menu-btn span:nth-of-type(2) {
  top: 24px;
}
.menu-btn span:nth-of-type(3) {
  top: 33px;
  bottom: -16px;
}

.open .menu-btn, .open-tab-a .menu-btn, .open-tab-b .menu-btn {
  background: transparent;
}
.open .menu-btn span, .open-tab-a .menu-btn span, .open-tab-b .menu-btn span {
  background-color: #AF1D7B;
  transition: all 0.4s;
}
.open .menu-btn span:nth-of-type(1), .open-tab-a .menu-btn span:nth-of-type(1), .open-tab-b .menu-btn span:nth-of-type(1) {
  top: 17px;
  transform: translateY(5px) rotate(-45deg);
}
.open .menu-btn span:nth-of-type(2), .open-tab-a .menu-btn span:nth-of-type(2), .open-tab-b .menu-btn span:nth-of-type(2) {
  opacity: 0;
}
.open .menu-btn span:nth-of-type(3), .open-tab-a .menu-btn span:nth-of-type(3), .open-tab-b .menu-btn span:nth-of-type(3) {
  bottom: -21px;
  transform: translateY(-11px) rotate(45deg);
}

.menu-box {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 40px 15px;
  background: #ffffff;
  top: 0;
  visibility: hidden;
  transition: all 1s;
  opacity: 0;
}
.menu-box .menu-link li {
  margin: 10px 0;
}
.menu-box .menu-link li a {
  border: 1px solid #cccccc;
  line-height: 1;
  padding: 15px;
  display: block;
  margin-bottom: -1px;
  position: relative;
}
.menu-box .menu-link li a::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  content: "";
  transition: all 0.3s ease-out 0s;
  transform: rotate(-45deg);
  border-right: 1px solid #AF1D7B;
  border-bottom: 1px solid #AF1D7B;
}
.menu-box .menu-ttl-2 {
  background: #AF1D7B;
  color: #fff;
  padding: 8px;
}
.menu-box .menu-contact {
  margin-top: 20px;
}
.menu-box .menu-contact .menu-contact-inner {
  padding: 20px 10px;
  border: 1px solid #eee;
}
.menu-box .menu-contact .menu-contact-tel {
  font-size: 1.5rem;
}
.menu-box .menu-contact .menu-contact-tel a {
  display: inline-block;
}
.menu-box .menu-contact .menu-contact-tel span {
  text-decoration: underline;
}
.menu-box .menu-contact .menu-contact-btn {
  margin: 20px auto 0;
}

.close-txt {
  border: 1px solid #333333;
  padding: 10px;
  display: block;
  width: 100px;
  margin: 20px auto;
  text-align: center;
}

.open .menu-box {
  transition: all 1s;
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

/* 印刷時にヘッダーが複数回出るのを避ける
----------------------------------------------- */
@media print {
  header {
    position: absolute;
  }
}
/******************************************************************
  ■footer
*****************************************************************/
/* PAGETOP
------------------------------*/
#page_top {
  text-align: center;
}
#page_top a {
  font-style: normal;
  position: relative;
  padding: 24px 0 8px;
  font-weight: bold;
  color: #AF1D7B;
  white-space: nowrap;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  #page_top a {
    display: inline-block;
    width: 7em;
    padding-bottom: 4px;
  }
}
#page_top a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: -10px auto 0;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  border-top: 2px solid #AF1D7B;
  border-right: 2px solid #AF1D7B;
  display: block;
}

/* footer
------------------------------*/
footer {
  background: #F6F6F6;
}
@media (max-width: 767px) {
  footer .container {
    max-width: none;
    padding: 0;
  }
}
@media (min-width: 768px) {
  footer .container {
    padding: 50px 10px;
    font-size: 1.3rem;
  }
}
footer .contents-inn {
  padding: 0;
}
@media (max-width: 767px) {
  footer .contents-inn {
    max-width: none;
  }
}
footer a {
  position: relative;
  display: block;
  padding: 10px;
}
@media (max-width: 767px) {
  footer a {
    font-size: 1.2rem;
    border-top: 1px solid #d2d2d2;
  }
}
@media (min-width: 768px) {
  footer a {
    padding-left: 20px;
    font-size: 1.3rem;
  }
}
footer a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-top: 1px solid #AF1D7B;
  border-right: 1px solid #AF1D7B;
}
@media (min-width: 768px) {
  footer a::before {
    width: 5px;
    height: 5px;
    left: 0;
  }
}
@media (min-width: 768px) {
  footer .home {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  footer .home a {
    display: inline;
    padding: 0 20px 0 0;
  }
  footer .home a:hover {
    display: inline;
  }
  footer .home a:before {
    margin-top: -5px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    width: 7px;
    height: 7px;
    left: auto;
    right: 0;
  }
}
@media (min-width: 768px) {
  footer nav {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  footer .footer-contents {
    margin-bottom: 20px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 768px) {
  footer .footer-contents a[target=_blank] {
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  footer .footer-contents a[target=_blank]::before {
    content: "";
    border: none;
    background: url(../img/common/icon-blank_sp.png) center/cover no-repeat;
    width: 13px;
    height: 11px;
    transform: rotate(0);
  }
}
@media (min-width: 768px) {
  footer .footer-contents a[target=_blank]::after {
    content: "";
    display: inline-block;
    background: url(../img/common/icon-blank_pc.png) center/10px no-repeat;
    width: 20px;
    height: 10px;
    transform: rotate(0);
  }
}
footer .footer-inner {
  background: #AF1D7B;
  font-family: Verdana;
  /* Android端末で©が黒く表示されることへの対応 */
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  padding: 15px 15px 64px;
}
@media (min-width: 768px) {
  footer .footer-inner {
    padding: 15px;
  }
}
footer .footer-inner .ga-pdf {
  margin-top: 5px;
}
footer .footer-inner .ga-pdf a {
  color: #ffffff;
  font-size: 1.2rem;
  padding: 0;
  border: 0;
}
footer .footer-inner .ga-pdf a::before {
  border: 0;
}

/******************************************************************
  ■bootstrap
*****************************************************************/
#detail .d-flex {
  display: flex;
}
#detail .d-inline-block {
  display: inline-block;
}
#detail .align-top {
  vertical-align: top;
}
#detail .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  #detail .container {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  #detail .header.container {
    padding-left: 5px;
  }
}
@media (max-width: 767px) {
  #detail .footer .container {
    padding: 0;
  }
}
#detail .d-con-txt {
  padding: 15px 10px 20px;
}
#detail .ic li {
  width: auto;
}
#detail .clearfix::after {
  display: block;
  content: "";
  clear: both;
}
#detail .cts-box {
  padding: 15px 0 0;
}
@media (min-width: 768px) {
  #detail .cts-box {
    padding-top: 30px;
  }
}
#detail .cts-box.p-top-5 {
  padding-top: 5px;
}
#detail .cts-box.c-copy .catch-copy {
  color: #AF1D7B;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  #detail .cts-box.c-copy .catch-copy {
    font-size: 2.4rem;
  }
}
#detail .cts-box.c-copy .sub-copy {
  padding: 12px 0;
}
@media (min-width: 768px) {
  #detail .cts-box.c-copy .sub-copy {
    padding: 27px 0 3px;
  }
}
#detail .cts-box .detail-cts-ttl {
  padding: 15px;
  background: #AF1D7B;
  color: #fff;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  #detail .cts-box .detail-cts-ttl {
    padding: 9px 15px;
    font-size: 2.4rem;
  }
}
#detail .cts-box dl {
  width: 100%;
}
@media (min-width: 768px) {
  #detail .cts-box dl {
    display: table;
  }
}
#detail .cts-box dl dt {
  width: 100%;
  display: block;
  padding: 15px 0 10px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  #detail .cts-box dl dt {
    width: 200px;
    display: table-cell;
    vertical-align: middle;
    background: none;
    padding: 30px 15px;
    color: #494436;
  }
}
#detail .cts-box dl dd {
  padding: 15px 0 5px;
}
@media (min-width: 768px) {
  #detail .cts-box dl dd {
    width: calc(100% - 200px);
    display: table-cell;
    padding: 30px;
    border-bottom: 1px solid #ccc;
  }
}
#detail .appeal-box {
  padding: 15px 0 30px;
}
#detail .appeal-box .appeal-img {
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  #detail .appeal-box .appeal-img {
    min-width: 360px;
    width: 360px;
  }
  #detail .appeal-box .appeal-img.appeal-img-left {
    padding-right: 30px;
  }
  #detail .appeal-box .appeal-img.appeal-img-right {
    padding-left: 30px;
    order: 1;
    margin-left: auto;
  }
}
#detail .appeal-box .appeal-txt {
  padding-top: 15px;
}
#detail .addition-txt {
  margin-left: 10px;
}
@media (max-width: 767px) {
  #detail .addition-txt {
    margin-bottom: 20px;
  }
}
#detail .submitBtn {
  display: flex;
}
#detail .submitBtn.justify-content-center {
  justify-content: center;
}
#detail .submitBtn .col-6 {
  width: 50%;
}
@media (min-width: 768px) {
  #detail .submitBtn .col-6.col-md-4 {
    width: 33.3333333333%;
  }
}
#detail .submitBtn .col-12 {
  width: 100%;
}
@media (min-width: 768px) {
  #detail .submitBtn .col-md-8 {
    width: 66%;
  }
}
#detail .sticky-bottom-wrap.btn-fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  transition: all 1s ease;
  z-index: 99;
}
#detail .sticky-bottom-wrap.btn-fixed.is-hdn {
  bottom: -1000px;
}
#detail .sticky-bottom-wrap .button {
  padding: 15px 0;
}
@media (min-width: 768px) {
  #detail .sticky-bottom-wrap .button {
    padding: 30px 0;
  }
}
#detail .sticky-bottom-wrap #sticky-bottom {
  margin-top: 0;
}
#detail #load-recommend .block {
  border-color: #AF1D7B;
}
#detail #load-recommend .block .list-block-cts {
  padding: 15px 10px 10px;
}
@media (min-width: 768px) {
  #detail #load-recommend .block .list-block-cts {
    padding: 18px;
    display: table;
  }
}
@media (min-width: 768px) {
  #detail #load-recommend .block .note-block {
    display: flex;
  }
}
#detail #load-recommend .block .note-block .note-block-l, #detail #load-recommend .block .note-block .note-block-r {
  width: 100%;
  padding: 5px 0 0;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #detail #load-recommend .block .note-block .note-block-l, #detail #load-recommend .block .note-block .note-block-r {
    width: auto;
    padding: 0;
  }
}
@media (min-width: 768px) {
  #detail #load-recommend .block .ic-block-ttl {
    font-size: 2.4rem;
  }
}
#detail #load-recommend .block .list-block-ic {
  color: #AF1D7B;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #detail #load-recommend .block .list-block-ic .ic {
    padding-top: 5px;
  }
}
@media (max-width: 767px) {
  #detail #load-recommend .block .list-block-txt {
    padding-top: 15px;
  }
}
@media (min-width: 768px) {
  #detail .slick-list img {
    padding: 0 15px;
  }
  #detail .d-md-flex {
    display: flex;
  }
  #detail .flex-md-wrap {
    flex-wrap: wrap;
  }
}
#detail .align-self-center {
  align-self: center !important;
}/*# sourceMappingURL=detail.css.map */</pre></body></html>