@charset "UTF-8";
/* ==========================================================================
リセット
========================================================================== */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* HTML5 display definitions
----------------------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/* Links
----------------------------------------------------------------- */
a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
----------------------------------------------------------------- */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
----------------------------------------------------------------- */
img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
----------------------------------------------------------------- */
figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
----------------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  outline: none;
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  border: none;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* Tables
----------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
グローバル変数
=========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
ブレイクポイント
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
html {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  text-justify: inter-ideograph;
  vertical-align: baseline;
}
@media screen and (max-width: 992px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

::-moz-selection {
  color: #525252;
  background-color: #ffd0c4;
}

::selection {
  color: #525252;
  background-color: #ffd0c4;
}

::-moz-selection {
  color: #525252;
  background-color: #ffd0c4;
}

.f-common-wrap {
  overflow: clip;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

hr {
  overflow: visible;
  border: 0;
  border-top: 1px solid #e9e9e9;
  text-align: inherit;
  margin: 0 0 0 0;
}

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
ul li {
  list-style-type: none;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  width: 100%;
  text-align: justify;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

label {
  cursor: pointer;
}

/* ==========================================================================
アニメーション
========================================================================== */
/* fadeIm fadeOut
----------------------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-==========================================================================
特定の画面幅で表示・非表示するクラス（CSSの順番の上書きの関係で、utilityフォルダには置かず、こちらに記載)
==========================================================================*/
@media screen and (min-width: 1401px) {
  .f-visible-1400 {
    display: block;
  }
}
@media screen and (max-width: 1400px) {
  .f-visible-1400 {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .f-visible-1400pc {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .f-visible-1400pc {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-1400pclp {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .f-visible-1400pclp {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-lp {
    display: none !important;
  }
}
@media screen and (min-width: 821px) and (max-width: 992px) {
  .f-visible-lp {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-lp {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-lptbsp {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .f-visible-lptbsp {
    display: block;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-tb {
    display: none !important;
  }
}
@media screen and (min-width: 577px) and (max-width: 820px) {
  .f-visible-tb {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-tb {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-1400pclptb {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-1400pclptb {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-tbsp {
    display: none !important;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-tbsp {
    display: block;
  }
}

@media screen and (min-width: 577px) {
  .f-visible-1400pclptbsp {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-1400pclptbsp {
    display: none !important;
  }
}

@media screen and (min-width: 577px) {
  .f-visible-sp {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-sp {
    display: block;
  }
}

/* ==========================================================================
ヘッダー
========================================================================== */
header {
  position: relative;
}

.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  height: 84px;
  z-index: 1010;
  position: relative;
  position: fixed;
  width: 100%;
  top: 0;
  border-bottom: 4px solid #fff;
}
@media screen and (max-width: 992px) {
  .l-header {
    -webkit-box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.2);
            box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.2);
    border-bottom: none;
  }
}
@media screen and (max-width: 576px) {
  .l-header {
    height: 60px;
  }
}

.l-header-logo {
  position: relative;
  max-width: 312px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .l-header-logo {
    max-width: 212px;
  }
}
.l-header-logo h1 {
  position: relative;
  height: 100%;
  width: 100%;
}
.l-header-logo h1 a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-header-logo h1 a:hover {
  opacity: 0.75;
}
.l-header-logo h1 a img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

/* PC版メニュー
----------------------------------------------------------------- */
.l-header-nav {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  min-width: 70%;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 992px) {
  .l-header-nav {
    font-size: 1.25vw;
    min-width: initial;
  }
}
.l-header-nav .l-header-nav-global {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern1-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  padding-right: 50px;
}
@media screen and (max-width: 992px) {
  .l-header-nav .l-header-nav-global ul.l-header-nav-pattern1-main {
    line-height: 1em;
  }
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu {
  position: relative;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  min-width: 140px;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu a .en {
  font-size: 0.777rem;
  display: block;
  color: #B33E52;
  font-family: "Akshar", sans-serif;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu a:hover {
  color: #AF9C3F;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main,
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 1;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-sub__menu a,
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-main__menu a,
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-sub .l-header-nav-pattern2-sub__menu a,
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-sub .l-header-nav-pattern2-main__menu a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-sub__menu a:hover,
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-main__menu a:hover,
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-sub .l-header-nav-pattern2-sub__menu a:hover,
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-sub .l-header-nav-pattern2-main__menu a:hover {
  color: #AF9C3F;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-main__menu {
  position: relative;
  height: 100%;
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-main__menu a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 1200px) {
  .l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-main__menu a {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-main__menu:last-child a {
  padding-right: 1.6666666667rem;
}
@media screen and (max-width: 1200px) {
  .l-header-nav .l-header-nav-global ul.l-header-nav-pattern2-main .l-header-nav-pattern2-main__menu:last-child a {
    padding-right: 1.1111111111rem;
  }
}
.l-header-nav .l-header-nav-global .l-header-nav-pattern2-sub {
  font-size: 10px;
  margin-top: 1.1111111111rem;
}
@media screen and (max-width: 1200px) {
  .l-header-nav .l-header-nav-global .l-header-nav-pattern2-sub {
    margin-top: 15px;
  }
}
.l-header-nav .l-header-nav-global .l-header-nav-pattern2-sub .l-header-nav-pattern2-sub__menu:after {
  content: "｜";
  margin: 0 15px;
}
@media screen and (max-width: 1200px) {
  .l-header-nav .l-header-nav-global .l-header-nav-pattern2-sub .l-header-nav-pattern2-sub__menu:after {
    margin: 0 10px;
  }
}
.l-header-nav .l-header-nav-global .l-header-nav-pattern2-sub .l-header-nav-pattern2-sub__menu:last-child {
  margin-right: 1.6666666667rem;
}
@media screen and (max-width: 1200px) {
  .l-header-nav .l-header-nav-global .l-header-nav-pattern2-sub .l-header-nav-pattern2-sub__menu:last-child {
    margin-right: 1.1111111111rem;
  }
}
.l-header-nav .l-header-nav-global .l-header-nav-pattern2-sub .l-header-nav-pattern2-sub__menu:last-child:after {
  content: "";
  display: none;
}
.l-header-nav .l-header-nav-global .l-header-nav-pattern2-sub .l-header-nav-pattern2-sub__menu a {
  color: #676767;
}
.l-header-nav .l-header-nav-global .l-dropdown {
  position: relative;
}
@media (orientation: landscape) and (max-device-width: 1024px) {
  .l-header-nav .l-header-nav-global .l-dropdown > a {
    pointer-events: none;
  }
}
.l-header-nav .l-header-nav-global .l-dropdown .l-dropdown-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  transform: translate(-50%, 100%) scale(1, 0);
  -webkit-transform: translate(-50%, 100%) scale(1, 0);
  -ms-transform: translate(-50%, 100%) scale(1, 0);
  overflow: hidden;
  -webkit-transition: 0.5s 0.1s;
  transition: 0.5s 0.1s;
}
.l-header-nav .l-header-nav-global .l-dropdown .l-dropdown-nav .l-dropdown-nav__menu {
  width: 100%;
  background-color: #fff;
  line-height: 1.6;
  font-size: 13px;
}
.l-header-nav .l-header-nav-global .l-dropdown .l-dropdown-nav .l-dropdown-nav__menu a {
  padding: 10px 1.1111111111rem;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-header-nav .l-header-nav-global .l-dropdown .l-dropdown-nav.l-dropdown-open {
  overflow: visible;
  transform: translate(-50%, 100%) scale(1, 1);
  -webkit-transform: translate(-50%, 100%) scale(1, 1);
  -ms-transform: translate(-50%, 100%) scale(1, 1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header-nav .l-header-nav-global .l-dropdown .l-dropdown-nav.l-dropdown-open a {
  opacity: 1;
  -webkit-transition: 0.3s 0.2s;
  transition: 0.3s 0.2s;
}
.l-header-nav .l-header-nav-global .l-dropdown .l-dropdown-arrow::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #B33E52;
  border-right: 1px solid #B33E52;
  transform: rotate(135deg) translateY(50%);
  -webkit-transform: rotate(135deg) translateY(50%);
  margin-left: 0.6125em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-header-nav .l-header-nav-global .l-dropdown:hover .l-dropdown-arrow::after {
  border-top: 1px solid #AF9C3F;
  border-right: 1px solid #AF9C3F;
}
.l-header-nav .l-header-nav-contact .l-header-nav-contact-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.l-header-nav .l-header-nav-contact .l-header-nav-contact-wrap .l-header-nav-contact-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #AF9C3F;
}
.l-header-nav .l-header-nav-contact .l-header-nav-contact-wrap .l-header-nav-contact-menu a {
  position: relative;
  display: block;
  color: #fff;
  padding: 5px 1.6666666667rem;
  text-align: center;
  overflow: hidden;
  height: 100%;
  min-width: 260px;
  font-size: clamp(0.875rem, 0.612rem + 0.73vw, 1.125rem);
}
.l-header-nav .l-header-nav-contact .l-header-nav-contact-wrap .l-header-nav-contact-menu a .ico-entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  margin-inline: auto;
}
.l-header-nav .l-header-nav-contact .l-header-nav-contact-wrap .l-header-nav-contact-menu a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 240, 100, 0.3);
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  z-index: 0;
}
.l-header-nav .l-header-nav-contact .l-header-nav-contact-wrap .l-header-nav-contact-menu a:hover::before {
  -webkit-transform: translate(-50%, -55%) scale(50);
          transform: translate(-50%, -55%) scale(50);
}
.l-header-nav .l-header-nav-contact .l-header-nav-contact-wrap .l-header-nav-contact-menu a:hover {
  color: #fff;
}
.l-header-nav .l-header-nav-contact .l-header-nav-contact-wrap .l-header-nav-contact-menu a > * {
  position: relative;
  z-index: 1;
}

/* アクティブメニュー*/
.l-header-nav-list a {
  position: relative;
}
.l-header-nav-list a.active::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1rem;
  background-color: #B33E52;
  width: 25px;
  height: 2px;
}

.l-header-nav-contact-wrap a {
  position: relative;
}
.l-header-nav-contact-wrap a.active::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1rem;
  background-color: #AF9C3F;
  width: 25px;
  height: 2px;
}

/* ドロワーメニュー
----------------------------------------------------------------- */
/* メニューが開いた時のスクロール禁止 */
body.open {
  overflow: hidden;
}

/* ハンバーガーボタン */
.l-toggle {
  display: block;
  width: 80px;
  height: 80px;
  background: #B33E52;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.l-toggle:hover {
  background: rgb(160.0601659751, 55.4398340249, 73.3236514523);
}
.l-toggle::before, .l-toggle::after,
.l-toggle .hamburger-line {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-toggle::before {
  top: 30px;
}
.l-toggle::after {
  top: 46px;
}
.l-toggle .hamburger-line {
  top: 38px;
}

/* ハンバーガーアイコンの変化（メニューが開いた時） */
body.open .l-toggle::before {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 38px;
}
body.open .l-toggle::after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: 38px;
}
body.open .l-toggle .hamburger-line {
  opacity: 0;
  -webkit-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
}

/* ドロワーメニューオーバーレイ */
.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.open .l-drawer {
  visibility: visible;
  opacity: 1;
}

/* ドロワーメニュー本体 */
.l-drawer-body {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: white;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

body.open .l-drawer-body {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* メニューリスト */
.l-drawer-nav-main {
  list-style: none;
  padding: 100px 0 20px;
  height: 100%;
  overflow-y: auto;
}

.l-drawer-nav-main__menu {
  border-bottom: 1px solid #d4d4d4;
}
.l-drawer-nav-main__menu:last-child {
  border-bottom: none;
}
.l-drawer-nav-main__menu a {
  display: block;
  padding: 20px 30px;
  color: #B33E52;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.l-drawer-nav-main__menu .l-drawer-nav-main__menu a:hover {
  background: #f8f8f8;
  border-left-color: #B33E52;
  padding-left: 35px;
}

/* 右矢印アイコン */
.l-drawer-nav-main__menu a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23B33E52" viewBox="0 0 24 24"><path d="m7 7 5 5-5 5 1.41 1.41L14.83 12 8.41 5.59 7 7z"/></svg>') no-repeat center;
  background-size: contain;
  border: none;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-drawer-nav-main__menu a:hover::after {
  right: 25px;
}

/* 募集要項・エントリーのスタイル */
.l-drawer-nav-main__menu.highlight a {
  background: -webkit-linear-gradient(315deg, #AF9C3F, #9a8835);
  background: linear-gradient(135deg, #AF9C3F, #9a8835);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-left: 4px solid #c4b045;
  position: relative;
  overflow: hidden;
}
.l-drawer-nav-main__menu.highlight a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M19.5909 0H2.40909C1.35909 0 0.5 1.05117 0.5 2.33593V6.99611H2.40909V2.31257H19.5909V18.6991H2.40909V14.0039H0.5V18.6874C0.5 19.9722 1.35909 21 2.40909 21H19.5909C20.6409 21 21.5 19.9722 21.5 18.6874V2.33593C21.5 1.03949 20.6409 0 19.5909 0ZM10.0455 15.1719L13.8636 10.5L10.0455 5.82814V9.33204H0.5V11.668H10.0455V15.1719Z"/></svg>') no-repeat center;
  background-size: contain;
  border: none;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-drawer-nav-main__menu.highlight a:hover {
  background: -webkit-linear-gradient(315deg, #9a8835, #AF9C3F);
  background: linear-gradient(135deg, #9a8835, #AF9C3F);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 4px 15px rgba(175, 156, 63, 0.3);
          box-shadow: 0 4px 15px rgba(175, 156, 63, 0.3);
}

/* レスポンシブ対応 */
@media screen and (max-width: 992px) {
  .l-drawer-body {
    width: 280px;
  }
  .l-drawer-nav-main {
    padding-top: 100px;
  }
  .l-drawer-nav-main__menu a {
    padding: 16px 20px;
    font-size: 15px;
  }
  .l-drawer-nav-main__menu.highlight a {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .l-toggle {
    width: 60px;
    height: 60px;
  }
  .l-toggle::before {
    top: 22px;
  }
  .l-toggle .hamburger-line {
    top: 28px;
  }
  .l-toggle::after {
    top: 34px;
  }
  body.open .l-toggle::before,
  body.open .l-toggle::after {
    top: 28px;
  }
  .l-drawer-body {
    width: 100%;
    max-width: 280px;
  }
  .l-drawer-nav-main {
    padding-top: 80px;
  }
}
/* ドロワーメニュー
.l-toggle {
	display: block;
	width: 80px;
	height: 80px;
	background-image: url(/recruit/resource/images/menu_open.svg);
	transition: background-image .1s linear;
	background-size: contain;
	background-repeat: no-repeat;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;

	@include less_than_sp {
		width: 60px;
		height: 60px;
	}
}

body.open {
	overflow: hidden; //メニューを開いた際にスクロール禁止

	.l-toggle {
		background-image: url(/recruit/resource/images/menu_close.svg);
	}
}

.l-drawer {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;



	.l-drawer-body {
		position: absolute;
		width: 100%;
		height: calc(100% - 60px);

		@include less_than_lp {
			margin-top: 80px;
		}

		@include less_than_sp {
			margin-top: 60px;
		}

		.l-drawer-nav-main {
			position: relative;
			height: 100%;
			background-color: rgba(colors(main), .95);
			overflow: auto; //メニューが長い場合にスクロール可能に
			-webkit-overflow-scrolling: touch;

			.l-drawer-nav-main__menu {
				color: colors(white);
				font-size: 1rem;
				line-height: 1.6;

				&:not(:last-child) {
					border-bottom: 1px solid rgba(colors(white), .1);
				}

				a {
					color: colors(white);
					padding: $space_30 10%;
					display: block;
					position: relative;

					@include less_than_sp {
						padding: 22px 10%;
					}

					&:after {
						content: "";
						width: 6px;
						height: 6px;
						border: 0px;
						border-top: solid 1px colors(white);
						border-right: solid 1px colors(white);
						transform: rotate(45deg);
						-webkit-transform: rotate(45deg);
						position: absolute;
						top: 45%;
						right: 5%;
					}
				}

				// アコーディオンメニュー
				.l-drawer-accordion {
					width: 100%;

					// アコーディオンを開くメニュー
					.l-drawer-accordion-btn {
						position: relative;
						display: block;
						cursor: pointer;
						padding: $space_30 10%;
						transition: .3s;

						@include less_than_sp {
							padding: 22px 10%;
						}

						&::before,
						&::after {
							position: absolute;
							content: '';
							width: 10px;
							height: 1px;
							background-color: colors(white);
							transition: .3s;
						}

						&::before {
							top: 48%;
							right: 4.5%;
							transform: rotate(0deg);
						}

						&::after {
							top: 48%;
							right: 4.5%;
							transform: rotate(90deg);
						}

						&.close {
							background: rgba(darken(colors(main), 5%), .8);

							&::before {
								transform: rotate(0deg) translateX(5px);
								opacity: 0;
							}

							&::after {
								transform: rotate(180deg);
							}
						}
					}

					// アコーディオンで現れるエリア
					.l-drawer-accordion-content {
						display: none;
						background: rgba(darken(colors(main), 5%), .8);
						padding-bottom: 1em;

						.l-drawer-accordion-content__menu {
							margin: 0;
							border-bottom: none;

							a {
								font-size: 0.8125rem;
								line-height: 1.4;
								padding-top: 1em;
								padding-right: 10%;
								padding-bottom: 1em;
								padding-left: calc(10% + 1.25em); //1.25em分インデント

								&:after {
									content: "";
									width: 4px;
									height: 4px;
									border: 0px;
									border-top: solid 1px colors(white);
									border-right: solid 1px colors(white);
									transform: rotate(45deg);
									-webkit-transform: rotate(45deg);
									position: absolute;
									top: 45%;
									right: 5%;
								}
							}
						}
					}
				}
			}
		}
	}
}

----------------------------------------------------------------- */
/* ==========================================================================
フッター
========================================================================== */
.l-footer {
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .l-footer {
    padding-bottom: 59px;
  }
}

.l-footer-logo img {
  max-width: 312px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .l-footer-logo img {
    height: 40px;
  }
}

/* メニュー
----------------------------------------------------------------- */
.l-footer-nav {
  padding: 4.4444444444rem 0 3.1111111111rem;
}
@media screen and (max-width: 576px) {
  .l-footer-nav {
    padding: 3.5555555556rem 0;
  }
}
.l-footer-nav .l-footer-nav-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 0 20px;
  padding: 2.2222222222rem 0 0;
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.3333333333rem;
  padding: 2.2222222222rem 0;
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1.3333333333rem 0;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .corp a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .corp a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent:last-child {
  margin-right: 0;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent:last-child .l-footer-nav-parent__inner:last-child {
  margin-top: 1.7777777778rem;
  margin-bottom: 0;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner {
  margin-bottom: 0.8888888889rem;
  border-left: 3px solid #B33E52;
  line-height: 1em;
  padding-left: 0.5em;
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner {
    margin-bottom: 0.8888888889rem;
    text-align: center;
    border-left: none;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a {
  color: #333;
  font-weight: 700;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a:hover {
  color: #AF9C3F;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child {
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child {
    display: none;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner {
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner a {
  color: #676767;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child .l-footer-nav-child__inner a:hover {
  color: #AF9C3F;
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .c-btn-main--sub {
    margin-top: 40px;
  }
}

/* コピーライト
----------------------------------------------------------------- */
.l-copyright {
  background-color: rgb(141.1203319502, 48.8796680498, 64.6473029046);
  font-family: "Akshar", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  padding: 13.5px 0;
}

/* ページトップに戻るボタン
----------------------------------------------------------------- */
a#pagetop {
  line-height: 0;
  position: fixed;
  right: 1.1111111111rem;
  bottom: 1.1111111111rem;
  z-index: 100;
}
a#pagetop img {
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  width: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a#pagetop:hover img {
  opacity: 0.7;
}

/* エントリー
----------------------------------------------------------------- */
.l-footer-entry {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #AF9C3F;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .l-footer-entry {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-footer-entry a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  color: #fff;
  padding: 15px 1.6666666667rem;
  text-align: center;
  overflow: hidden;
  font-size: clamp(0.875rem, 0.612rem + 0.73vw, 1.125rem);
  width: 100%;
}
.l-footer-entry a .ico-entry {
  width: 1.3125rem;
  height: 1.3125rem;
  margin-left: 0.5em;
  margin-top: 0.25em;
}
.l-footer-entry a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 240, 100, 0.3);
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  z-index: 0;
}
.l-footer-entry a:hover::before {
  -webkit-transform: translate(-50%, -55%) scale(50);
          transform: translate(-50%, -55%) scale(50);
}
.l-footer-entry a:hover {
  color: #fff;
}
.l-footer-entry a > * {
  position: relative;
  z-index: 1;
}

/* エントリー
----------------------------------------------------------------- */
.p-idx-entry-wrap {
  background: url(/recruit/resource/images/p-idx-entry-bg.png) #5D97DC;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 11.5555555556rem 0 500px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .p-idx-entry-wrap {
    padding: 5.7777777778rem 0 11.5555555556rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-entry-wrap {
    padding: 4.4444444444rem 0 8.3333333333rem;
  }
}
.p-idx-entry-wrap .p-idx-tit-large {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.p-idx-entry-wrap .p-idx-entry-box1,
.p-idx-entry-wrap .p-idx-entry-box2 {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3.5555555556rem 5%;
}
.p-idx-entry-wrap .p-idx-entry-box1 h3,
.p-idx-entry-wrap .p-idx-entry-box2 h3 {
  font-size: clamp(1.25rem, -0.135rem + 3.85vw, 2.25rem);
  font-weight: 700;
}
.p-idx-entry-wrap .p-idx-entry-box1 .idx-entry-tit,
.p-idx-entry-wrap .p-idx-entry-box2 .idx-entry-tit {
  font-size: clamp(1.25rem, 0.458rem + 1.72vw, 1.75rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8888888889rem;
}
.p-idx-entry-wrap .p-idx-entry-box1 .copy,
.p-idx-entry-wrap .p-idx-entry-box2 .copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-idx-entry-wrap .p-idx-entry-box1 .copy p,
.p-idx-entry-wrap .p-idx-entry-box2 .copy p {
  font-size: 1.125rem;
  line-height: 170%;
  font-weight: 700;
  text-align: center;
}
.p-idx-entry-wrap .p-idx-entry-box1 {
  padding: 3.5555555556rem 5% 0;
}
.p-idx-entry-wrap .p-idx-entry-tel {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #B33E52;
  padding: 2.2222222222rem 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-idx-entry-wrap .p-idx-entry-tel .c-txt-tel {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-idx-entry-wrap .p-idx-entry-tel p {
  font-weight: 700;
}

/* お問い合わせエリア
----------------------------------------------------------------- */
.p-idx-contact-wrap {
  background-image: url(/recruit/resource/images/deco_contact_bg.svg);
  background-position: top 60px center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.4444444444rem 0;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap {
    padding: 3.3333333333rem 0;
  }
}
.p-idx-contact-wrap .p-idx-ttl-main {
  color: #fff;
  text-align: center;
  margin-bottom: 2.2222222222rem;
}
.p-idx-contact-wrap .p-idx-ttl-main .en {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  font-family: "Akshar", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-ttl-main .en {
    font-size: 56px;
  }
}
.p-idx-contact-wrap .p-idx-ttl-main .jp {
  font-size: 1.5rem;
  line-height: 140%;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-ttl-main .jp {
    font-size: 24px;
  }
}
.p-idx-contact-wrap .p-idx-contact-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.2222222222rem;
}
.p-idx-contact-wrap .p-idx-contact-box h3 {
  font-size: 1.25rem;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 1.6666666667rem;
}
.p-idx-contact-wrap .p-idx-contact-box > * {
  width: 100%;
  background-color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.2222222222rem 5%;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-contact-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.3333333333rem 1.3333333333rem;
  }
  .p-idx-contact-wrap .p-idx-contact-box h3 {
    font-size: 1rem;
  }
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-title {
  background-image: url(/recruit/resource/images/main_business.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 564px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
.l-page-title::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 132px;
  background: url(/recruit/resource/images/deco_page_title_bottom01.svg), url(/recruit/resource/images/deco_page_title_bottom02.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 70px, 100% 100%;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .l-page-title {
    height: 464px;
  }
  .l-page-title::before {
    height: 82px;
    background-size: 100% 40px, 100% 100%;
  }
}
@media screen and (max-width: 576px) {
  .l-page-title {
    margin-top: 60px;
    height: 470px;
  }
  .l-page-title::before {
    height: 82px;
    background-size: 100% 50px, 100% 100%;
  }
}
.l-page-title .l-page-title-inner {
  padding-bottom: 8.3333333333rem;
}
.l-page-title .l-page-title-inner .l-page-title-jp {
  color: #fff;
  font-size: 32px;
  font-size: 1.7777777778rem;
  text-align: center;
}
.l-page-title .l-page-title-inner .l-page-title-en {
  color: #B33E52;
  font-family: "Akshar", sans-serif;
  font-size: 85px;
  font-size: 4.7222222222rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .l-page-title .l-page-title-inner {
    padding-bottom: 5.5555555556rem;
  }
}
@media screen and (max-width: 576px) {
  .l-page-title .l-page-title-inner {
    padding-bottom: 20px;
    z-index: 3;
  }
  .l-page-title .l-page-title-inner .l-page-title-jp {
    color: #333;
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
  .l-page-title .l-page-title-inner .l-page-title-en {
    font-size: 55px;
    font-size: 3.0555555556rem;
  }
}

.main_business {
  background-image: url(/recruit/resource/images/main_business.jpg);
}

.main_occupation {
  background-image: url(/recruit/resource/images/main_occupation.jpg);
}

.main_workstyle {
  background-image: url(/recruit/resource/images/main_workstyle.jpg);
}

/* ==========================================================================
セクション
=========================================================================*/
.l-sec-small {
  padding: 1rem 0;
}

.l-sec-medium {
  padding: 2.2222222222rem 0;
}

.l-sec-large {
  padding: 3.5555555556rem 0;
}
@media screen and (max-width: 576px) {
  .l-sec-large {
    padding: 3.3333333333rem 0;
  }
}

.l-sec-xlarge {
  padding: 4.4444444444rem 0;
}
@media screen and (max-width: 576px) {
  .l-sec-xlarge {
    padding: 3.3333333333rem 0;
  }
}

.l-sec-xxlarge {
  padding: 5.7777777778rem 0;
}
@media screen and (max-width: 992px) {
  .l-sec-xxlarge {
    padding: 4.4444444444rem 0;
  }
}

.l-sec-xxlarge-remove-top {
  padding: 0 0 5.7777777778rem;
}
@media screen and (max-width: 576px) {
  .l-sec-xxlarge-remove-top {
    padding: 0 0 5.7777777778rem;
  }
}

.l-sec-xxxlarge-remove-top {
  padding: 0 0 7.7777777778rem;
}
@media screen and (max-width: 992px) {
  .l-sec-xxxlarge-remove-top {
    padding: 0 0 6.6666666667rem;
  }
}
@media screen and (max-width: 576px) {
  .l-sec-xxxlarge-remove-top {
    padding: 0 0 5.5555555556rem;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container-small,
.l-container-large {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 992px) {
  .l-container,
  .l-container-small,
  .l-container-large {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 576px) {
  .l-container,
  .l-container-small,
  .l-container-large {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.l-container {
  max-width: 980px;
}

.l-container-small {
  max-width: 720px;
}

.l-container-large {
  max-width: 1120px;
}

.l-container-inner-medium {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.l-container-remove-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 980px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 992px) {
  .l-container-remove-left {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 576px) {
  .l-container-remove-left {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.l-container-remove-left .column {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}
@media screen and (max-width: 576px) {
  .l-container-remove-left .column {
    margin-left: inherit;
  }
}

.l-container-large--remove-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1120px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 992px) {
  .l-container-large--remove-right {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 576px) {
  .l-container-large--remove-right {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.l-container-large--remove-right .column {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 0;
}
@media screen and (max-width: 576px) {
  .l-container-large--remove-right .column {
    margin-right: inherit;
  }
}

.l-container-large--remove-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1120px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 992px) {
  .l-container-large--remove-left {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 576px) {
  .l-container-large--remove-left {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.l-container-large--remove-left .column {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}
@media screen and (max-width: 576px) {
  .l-container-large--remove-left .column {
    margin-left: inherit;
  }
}

/*-==========================================================================
FlexBox
==========================================================================*/
/* FlexBox （カスタマイズ可）
----------------------------------------------------------------- */
.c-flex,
.c-flex--align-items-center,
.c-flex--flex-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-flex .c-flex-2-clm,
.c-flex--align-items-center .c-flex-2-clm,
.c-flex--flex-start .c-flex-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-2-clm,
  .c-flex--align-items-center .c-flex-2-clm,
  .c-flex--flex-start .c-flex-2-clm {
    width: 100%;
  }
}
.c-flex .c-flex-3-clm,
.c-flex--align-items-center .c-flex-3-clm,
.c-flex--flex-start .c-flex-3-clm {
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-3-clm,
  .c-flex--align-items-center .c-flex-3-clm,
  .c-flex--flex-start .c-flex-3-clm {
    width: 100%;
  }
}
.c-flex .c-flex-4-clm,
.c-flex--align-items-center .c-flex-4-clm,
.c-flex--flex-start .c-flex-4-clm {
  width: 20%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-4-clm,
  .c-flex--align-items-center .c-flex-4-clm,
  .c-flex--flex-start .c-flex-4-clm {
    width: 100%;
  }
}
.c-flex .c-flex-5-clm,
.c-flex--align-items-center .c-flex-5-clm,
.c-flex--flex-start .c-flex-5-clm {
  width: 15%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-5-clm,
  .c-flex--align-items-center .c-flex-5-clm,
  .c-flex--flex-start .c-flex-5-clm {
    width: 100%;
  }
}
.c-flex .c-flex-flex-1,
.c-flex--align-items-center .c-flex-flex-1,
.c-flex--flex-start .c-flex-flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 576px) {
  .c-flex,
  .c-flex--align-items-center,
  .c-flex--flex-start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-flex--align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex--flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.2222222222rem 5%;
}

.c-flex--align-items-flex-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 576px) {
  .c-flex--first-sp {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media screen and (max-width: 576px) {
  .c-flex--last-sp {
    -webkit-box-ordinal-group: 100;
    -webkit-order: 99;
        -ms-flex-order: 99;
            order: 99;
  }
}

/* FlexBox(既存のtemplateの仕組みを踏襲)
----------------------------------------------------------------- */
.c-flex-small,
.c-flex-medium,
.c-flex-large,
.c-flex-collapse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.c-flex-small {
  gap: 1.1111111111rem 1.1111111111rem;
}
.c-flex-small .c-flex-5-clm,
.c-flex-small .c-flex-5-clm-sp {
  width: calc((100% - 80px) / 5);
}
.c-flex-small .c-flex-4-clm {
  width: calc((100% - 60px) / 4);
}
.c-flex-small .c-flex-3-clm {
  width: calc((100% - 40px) / 3);
}
.c-flex-small .c-flex-2-clm {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 820px) {
  .c-flex-small .c-flex-5-clm-sp {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 576px) {
  .c-flex-small .c-flex-5-clm,
  .c-flex-small .c-flex-4-clm,
  .c-flex-small .c-flex-3-clm,
  .c-flex-small .c-flex-2-clm {
    width: 100%;
  }
  .c-flex-small .c-flex-5-clm-sp {
    width: calc((100% - 20px) / 2);
  }
}

.c-flex-medium {
  gap: 2.2222222222rem 2.2222222222rem;
}
.c-flex-medium .c-flex-3-clm {
  width: calc((100% - 80px) / 3);
}
.c-flex-medium .c-flex-2-clm {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 576px) {
  .c-flex-medium .c-flex-3-clm,
  .c-flex-medium .c-flex-2-clm {
    width: 100%;
  }
}

.c-flex-large {
  gap: 2.2222222222rem 3.3333333333rem;
}
.c-flex-large .c-flex-3-clm {
  width: calc((100% - 120px) / 3);
}
.c-flex-large .c-flex-2-clm {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 576px) {
  .c-flex-large .c-flex-3-clm,
  .c-flex-large .c-flex-2-clm {
    width: 100%;
  }
}

.c-flex-collapse .c-flex-5-clm {
  width: 20%;
}
.c-flex-collapse .c-flex-4-clm {
  width: 25%;
}
.c-flex-collapse .c-flex-3-clm {
  width: 33.3333333333%;
}
.c-flex-collapse .c-flex-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-flex-collapse .c-flex-5-clm,
  .c-flex-collapse .c-flex-4-clm,
  .c-flex-collapse .c-flex-3-clm,
  .c-flex-collapse .c-flex-2-clm {
    width: 100%;
  }
}

/*-==========================================================================
グリッド
==========================================================================*/
/* グリッド　
----------------------------------------------------------------- */
.c-grid-small,
.c-grid-medium,
.c-grid-large,
.c-grid-collapse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.c-grid-small {
  gap: 1rem;
}
.c-grid-small .c-grid-5-clm {
  width: calc((100% - 4rem) / 5);
}
.c-grid-small .c-grid-4-clm {
  width: calc((100% - 3rem) / 4);
}
.c-grid-small .c-grid-3-clm {
  width: calc((100% - 2rem) / 3);
}
.c-grid-small .c-grid-2-clm {
  width: calc((100% - 1rem) / 2);
}
.c-grid-small .c-grid-ex-clm {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 576px) {
  .c-grid-small {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-grid-small .c-grid-5-clm,
  .c-grid-small .c-grid-4-clm,
  .c-grid-small .c-grid-3-clm,
  .c-grid-small .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-medium {
  gap: 1.6666666667rem 4%;
}
.c-grid-medium .c-grid-4-clm {
  width: 22%;
}
.c-grid-medium .c-grid-3-clm {
  width: 30.6666666667%;
}
.c-grid-medium .c-grid-2-clm {
  width: 48%;
}
.c-grid-medium .c-grid-ex-clm {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 576px) {
  .c-grid-medium {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-grid-medium .c-grid-4-clm,
  .c-grid-medium .c-grid-3-clm,
  .c-grid-medium .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-large {
  gap: 2.2222222222rem 6%;
}
.c-grid-large .c-grid-3-clm {
  width: 96%;
}
.c-grid-large .c-grid-2-clm {
  width: 47%;
}
@media screen and (max-width: 576px) {
  .c-grid-large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-grid-large .c-grid-3-clm,
  .c-grid-large .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-collapse {
  gap: 0 0;
}
.c-grid-collapse .c-grid-5-clm {
  width: 20%;
}
.c-grid-collapse .c-grid-4-clm {
  width: 25%;
}
.c-grid-collapse .c-grid-3-clm {
  width: 33.3333333333%;
}
.c-grid-collapse .c-grid-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-grid-collapse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-grid-collapse .c-grid-5-clm,
  .c-grid-collapse .c-grid-4-clm,
  .c-grid-collapse .c-grid-3-clm,
  .c-grid-collapse .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-pdf:nth-child(n+6) {
  margin-top: 1.6666666667rem;
}
.c-grid-pdf:nth-of-type(6n) {
  margin-left: 0 !important;
}

/* ==========================================================================
リスト
=========================================================================*/
.c-list-num {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num li {
  position: relative;
  padding-left: 1.3333333333rem;
}
.c-list-num li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  color: #AF9C3F;
  font-weight: 800;
  margin-left: -1.3333333333rem;
}

.c-list-num-divider {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num-divider li {
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  padding-left: 2.2222222222rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.c-list-num-divider li:before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  display: inline-block;
  color: #B33E52;
  font-family: "Akshar", sans-serif;
  font-size: 30px;
  font-size: 1.6666666667rem;
  font-weight: 700;
  margin-left: -1.7777777778rem;
}

.c-list-dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list-dot li:before {
  content: "・";
  color: #AF9C3F;
  font-weight: 700;
}

/* ==========================================================================
テーブル
=========================================================================*/
.c-tb-pattern1 tr {
  border-bottom: 1px solid #e9e9e9;
}
.c-tb-pattern1 tr:first-child {
  border-top: 1px solid #e9e9e9;
}
.c-tb-pattern1 tr th, .c-tb-pattern1 tr td {
  padding: 1rem;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern1 tr th, .c-tb-pattern1 tr td {
    line-height: 1.7;
  }
}
.c-tb-pattern1 tr th {
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern1 tr th {
    text-align: left;
  }
}

.c-tb-pattern2 {
  border: 1px solid #e9e9e9;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr {
    border-top: 1px solid #e9e9e9;
  }
  .c-tb-pattern2 tr:first-child {
    border: none;
  }
}
.c-tb-pattern2 tr th, .c-tb-pattern2 tr td {
  border: 1px solid #e9e9e9;
  padding: 1rem 1.3333333333rem;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr th, .c-tb-pattern2 tr td {
    display: block;
    border: none;
    line-height: 1.7;
  }
}
.c-tb-pattern2 tr th {
  color: #B33E52;
  background-color: #F2EDEE;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr th {
    width: 100%;
    padding: 1rem 0;
  }
}
.c-tb-pattern2 tr td dl {
  margin: 0;
}
.c-tb-pattern2 tr td dl dt {
  color: #AF9C3F;
  font-weight: 700;
  float: left;
  width: 50px;
  min-width: 50px;
}
.c-tb-pattern2 tr td dl dd {
  margin-left: 50px;
}

.c-tb-pattern3 {
  overflow: auto;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern3 {
    max-height: 445px;
  }
}
.c-tb-pattern3::-webkit-scrollbar {
  width: 8px;
  background: #e9e9e9;
}
.c-tb-pattern3::-webkit-scrollbar:horizontal {
  height: 8px;
  background: #e9e9e9;
}
.c-tb-pattern3::-webkit-scrollbar-thumb {
  background: #B33E52;
  border-radius: 4px;
}
.c-tb-pattern3::-webkit-scrollbar-thumb:horizontal {
  background: #B33E52;
  border-radius: 4px;
}
.c-tb-pattern3 table {
  width: 100%;
  min-width: 720px;
}
.c-tb-pattern3 table th, .c-tb-pattern3 table td {
  border: solid 1px #d4d4d4;
  padding: 1rem 1.3333333333rem;
  text-align: center;
  font-weight: 700;
}
.c-tb-pattern3 table th {
  color: #B33E52;
  background-color: #e9e9e9;
}
.c-tb-pattern3 table td {
  font-weight: 400;
  padding: 0.5rem 1.3333333333rem;
}
.c-tb-pattern3 table .first {
  background-color: #F2EDEE;
  font-weight: 700;
}

/* ==========================================================================
モーダルウィンドウ
=========================================================================*/
.c-modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal-bg {
  background: rgba(51, 51, 51, 0.7);
  height: 100vh;
  width: 100%;
}

.c-modal-content {
  color: #fff;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 720px;
}
@media screen and (max-width: 1200px) {
  .c-modal-content {
    width: 90%;
  }
}

.c-modal-content-inner {
  position: relative;
}
.c-modal-content-inner .c-modal-close {
  color: #fff;
  font-size: 1.7777777778rem;
  font-weight: 700;
  line-height: 0;
  position: absolute;
  top: -1.3333333333rem;
  right: 0;
}

.c-modal-open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal-open:hover {
  opacity: 0.7;
}
.c-modal-open:before {
  content: "+";
  display: block;
  color: #B33E52;
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 0.8;
  padding: 4px;
  position: absolute;
  top: 2px;
  left: 2px;
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav {
  padding: 2.2222222222rem 0 4.4444444444rem;
}
.c-page-nav .c-page-nav-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8888888889rem 0.8888888889rem;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 {
  width: calc((100% - 2rem) / 3);
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu,
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 {
    width: 100%;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  background-color: #B33E52;
  color: #fff;
  width: 100%;
  overflow: hidden;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .txt,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .icon,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a .txt,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a .icon {
  z-index: 1;
  -webkit-transition: color 0.4s ease, border-color 0.4s ease;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .txt,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a .txt {
  display: inline-block;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .txt,
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a .txt {
    font-size: 14px;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .icon,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a .icon {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  background-repeat: no-repeat;
  background-position: center center;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a .arrow,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a .arrow {
  background-image: url(/recruit/resource/images/ico_arrow_white.svg);
  background-size: 50% 50%;
  outline: 2px solid #fff;
  border-radius: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a:hover,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a:hover {
  color: #fff;
  background-color: #AF9C3F;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a:hover .icon.arrow,
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 a:hover .icon.arrow {
  -webkit-transform: rotate(90deg) translateX(4px);
          transform: rotate(90deg) translateX(4px);
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 {
  width: calc((100% - 3rem) / 4);
}
@media screen and (max-width: 992px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 {
    width: calc((100% - 1rem) / 2);
  }
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu2 {
    width: 100%;
  }
}

.c-page-nav-tag {
  margin: auto;
}
.c-page-nav-tag .c-page-nav-tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  text-align: center;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu {
  display: inline-block;
  background-color: #B33E52;
  margin: 2px;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu a {
  display: block;
  color: #fff;
  line-height: 3;
  padding: 0 2.6666666667rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu a:hover {
  opacity: 0.7;
}

.c-related-nav {
  background-color: #F2EDEE;
  padding: 3.3333333333rem 0;
}
@media screen and (max-width: 576px) {
  .c-related-nav {
    padding: 2.2222222222rem 0;
  }
}
.c-related-nav .c-related-nav__ttl {
  color: #B33E52;
  border-left: 4px solid #B33E52;
  line-height: 1.5;
  padding-left: 12px;
}

.c-related-tmb {
  position: relative;
}
.c-related-tmb .c-related-tmb__ttl {
  text-align: center;
  color: #B33E52;
  background-color: #fff;
  background-image: url(/recruit/resource/images/ico_arrow_right_main.svg);
  background-size: 10px auto;
  background-position: center right 22px;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 700;
  line-height: 3.375;
}
.c-related-tmb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-related-tmb a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb,
.c-breadcrumb-ft {
  font-size: 12px;
  line-height: 32px;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb,
  .c-breadcrumb-ft {
    font-size: 10px;
  }
}
.c-breadcrumb .c-breadcrumb-wrap,
.c-breadcrumb-ft .c-breadcrumb-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb .c-breadcrumb-wrap,
  .c-breadcrumb-ft .c-breadcrumb-wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list {
  color: #676767;
  white-space: nowrap;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list a,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list a {
  color: #676767;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img {
  width: 10px;
  vertical-align: baseline;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img,
  .c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img {
    width: 9px;
  }
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2),
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2) {
  padding-left: 16px;
  position: relative;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2):before,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2):before {
  content: "";
  width: 3px;
  height: 3px;
  border: 0px;
  border-top: solid 1px #676767;
  border-right: solid 1px #676767;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
}

.c-breadcrumb-ft .c-breadcrumb-wrap {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のnav
----------------------------------------------------------------- */
ul.p-contact-nav {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.6666666667rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
ul.p-contact-nav::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background-color: #B33E52;
  background-color: #676767;
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
ul.p-contact-nav li {
  display: block;
  border: 1px solid #676767;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  max-width: 100px;
  height: 100px;
  width: 100%;
}
ul.p-contact-nav li.p-contact-nav__active {
  border: 2px solid #B33E52;
}
ul.p-contact-nav li.p-contact-nav__active span {
  color: #B33E52;
}
ul.p-contact-nav li span {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #676767;
  font-size: 18px;
  font-size: 1rem;
  line-height: 2;
  font-weight: 700;
}

/* フォーム
----------------------------------------------------------------- */
.c-form-wrap table {
  font-size: 16px;
  font-size: 0.8888888889rem;
}
.c-form-wrap table tr {
  border-bottom: 1px solid #e9e9e9;
}
.c-form-wrap table tr:first-child {
  border-top: 1px solid #e9e9e9;
}
.c-form-wrap table tr th,
.c-form-wrap table tr td {
  padding: 1.1111111111rem 0;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td {
    display: block;
  }
}
.c-form-wrap table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  position: relative;
  width: 44%;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr th {
    padding: 1.1111111111rem 0 0;
    width: 100%;
  }
}
.c-form-wrap table tr th.c-form-required:after {
  content: "必須";
  display: inline-block;
  background-color: #B33E52;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  width: 44px;
  text-align: center;
  margin-left: 14px;
  vertical-align: middle;
  padding-bottom: 1px;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr td {
    padding: 8px 0 1.1111111111rem 0;
  }
}
.c-form-wrap div.c-form-required {
  position: relative;
}
@media screen and (max-width: 576px) {
  .c-form-wrap div.c-form-required {
    text-align: center;
  }
}
.c-form-wrap div.c-form-required::after {
  content: "必須";
  display: inline-block;
  background-color: #B33E52;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 21px;
  width: 44px;
  text-align: center;
  margin-left: 14px;
}
@media screen and (max-width: 992px) {
  .c-form-wrap div.c-form-required::after {
    top: 0.35rem;
    margin-left: 0.2rem;
  }
}
@media screen and (max-width: 576px) {
  .c-form-wrap div.c-form-required::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: -30px;
  }
}

.c-form-radio,
.c-form-checkbox {
  display: inline-block;
  border: 3px solid #d4d4d4;
  margin: -4px 8px 0 0;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-radio:not(:disabled),
.c-form-checkbox:not(:disabled) {
  cursor: pointer;
}

.c-form-radio {
  border-radius: 50%;
}
.c-form-radio:checked {
  border: 7px solid #AF9C3F;
}

.c-form-checkbox {
  background-color: #fff;
  position: relative;
}
.c-form-checkbox:checked:before {
  content: "";
  background-image: url(/recruit/resource/images/ico_form_cheaked.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 19px;
  display: block;
  position: absolute;
  left: 1px;
  top: -3px;
}
@media screen and (max-width: 820px) {
  .c-form-checkbox:checked:before {
    top: -5px;
  }
}

.c-form-radio-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 1.1111111111rem;
}

.c-form-input,
.c-form-select,
.c-form-textarea {
  display: inline-block;
  background-color: #F2EDEE;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    max-width: 100%;
  }
}

.c-form-select,
.c-form-input {
  height: 40px;
}

.c-form-select-wrap {
  position: relative;
}
.c-form-select-wrap select.c-form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.c-form-select-wrap:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-right: solid 1px #B33E52;
  border-bottom: solid 1px #B33E52;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.c-form-privacy {
  background-color: #F2EDEE;
  margin-top: 2.2222222222rem;
  padding: 2.2222222222rem 3.3333333333rem;
}
@media screen and (max-width: 576px) {
  .c-form-privacy {
    padding: 1.6666666667rem 5% 2.7777777778rem;
  }
}
.c-form-privacy .c-form-privacy-panel {
  background-color: #fff;
  border: 1px solid #d4d4d4;
  font-size: 14px;
  height: 180px;
  margin-top: 1rem;
  padding: 1.7777777778rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  margin-left: auto;
  margin-right: auto;
}

.c-form-privacy-checkbox {
  cursor: pointer;
}

.p-contact-not-sale-txt {
  text-align: center;
}
.p-contact-not-sale-txt p {
  color: #B33E52;
  border-bottom: 4px solid #AF9C3F;
  display: inline-block;
  margin: 0 auto;
  font-weight: 700;
}

.p-contact-not-sale-cheackbox {
  border: 1px solid #B33E52;
  padding: 2rem 0;
  font-size: 16px;
  font-size: 0.8888888889rem;
}
@media screen and (max-width: 576px) {
  .p-contact-not-sale-cheackbox {
    padding: 2.2222222222rem 0 2.7777777778rem;
  }
}

/*-==========================================================================
背景
==========================================================================*/
.c-bg-white {
  background-color: #fff !important;
}

.c-bg-lightgray {
  background-color: #e9e9e9 !important;
}

.c-bg-silver {
  background-color: #d4d4d4 !important;
}

.c-bg-gray {
  background-color: #676767 !important;
}

.c-bg-black {
  background-color: #333 !important;
}

.c-bg-main {
  background-color: #B33E52 !important;
}

.c-bg-sub {
  background-color: #AF9C3F !important;
}

.c-bg-hover {
  background-color: #AF9C3F !important;
}

.c-bg-whitesmoke {
  background-color: #F2EDEE !important;
}

.c-bg-selection_txt {
  background-color: #525252 !important;
}

.c-bg-selection_bg {
  background-color: #ffd0c4 !important;
}

.c-bg-dark-red {
  background-color: #8B3141 !important;
}

/* ==========================================================================
ボタン
=========================================================================*/
.c-btn-main,
.c-btn-main--sub,
.c-btn-main--large {
  text-align: center;
  max-width: 290px;
}
.c-btn-main a,
.c-btn-main button,
.c-btn-main--sub a,
.c-btn-main--sub button,
.c-btn-main--large a,
.c-btn-main--large button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  outline: 2px solid #B33E52;
  border-radius: 50px;
  background-color: #fff;
  color: #B33E52;
  font-weight: 700;
  width: 100%;
  overflow: hidden;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media screen and (max-width: 820px) {
  .c-btn-main a,
  .c-btn-main button,
  .c-btn-main--sub a,
  .c-btn-main--sub button,
  .c-btn-main--large a,
  .c-btn-main--large button {
    padding: 12px 12px;
    font-size: 14px;
  }
}
.c-btn-main a .txt,
.c-btn-main a .icon,
.c-btn-main button .txt,
.c-btn-main button .icon,
.c-btn-main--sub a .txt,
.c-btn-main--sub a .icon,
.c-btn-main--sub button .txt,
.c-btn-main--sub button .icon,
.c-btn-main--large a .txt,
.c-btn-main--large a .icon,
.c-btn-main--large button .txt,
.c-btn-main--large button .icon {
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.c-btn-main a .txt,
.c-btn-main button .txt,
.c-btn-main--sub a .txt,
.c-btn-main--sub button .txt,
.c-btn-main--large a .txt,
.c-btn-main--large button .txt {
  display: inline-block;
  width: 100%;
}
.c-btn-main a .txt .mail,
.c-btn-main button .txt .mail,
.c-btn-main--sub a .txt .mail,
.c-btn-main--sub button .txt .mail,
.c-btn-main--large a .txt .mail,
.c-btn-main--large button .txt .mail {
  display: inline-block;
  background-image: url(/recruit/resource/images/ico_mail.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}
.c-btn-main a .icon,
.c-btn-main button .icon,
.c-btn-main--sub a .icon,
.c-btn-main--sub button .icon,
.c-btn-main--large a .icon,
.c-btn-main--large button .icon {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  background-repeat: no-repeat;
  background-position: center center;
}
.c-btn-main a .arrow,
.c-btn-main button .arrow,
.c-btn-main--sub a .arrow,
.c-btn-main--sub button .arrow,
.c-btn-main--large a .arrow,
.c-btn-main--large button .arrow {
  background-image: url(/recruit/resource/images/ico_arrow_main.svg);
  background-size: 50% 50%;
  outline: 2px solid #B33E52;
  border-radius: 50%;
}
.c-btn-main a .entry,
.c-btn-main button .entry,
.c-btn-main--sub a .entry,
.c-btn-main--sub button .entry,
.c-btn-main--large a .entry,
.c-btn-main--large button .entry {
  background-image: url(/recruit/resource/images/ico_entry.svg);
  background-size: 100% 100%;
}
.c-btn-main a .external,
.c-btn-main button .external,
.c-btn-main--sub a .external,
.c-btn-main--sub button .external,
.c-btn-main--large a .external,
.c-btn-main--large button .external {
  background-image: url(/recruit/resource/images/ico_external_link_main.svg);
  background-size: 70% 70%;
}
.c-btn-main a::before,
.c-btn-main button::before,
.c-btn-main--sub a::before,
.c-btn-main--sub button::before,
.c-btn-main--large a::before,
.c-btn-main--large button::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #B33E52;
  top: 50%;
  left: calc(100% - 24px - 12px);
  /* アイコンの中央を基準に調整 */
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 0;
}
.c-btn-main a:hover .txt,
.c-btn-main button:hover .txt,
.c-btn-main--sub a:hover .txt,
.c-btn-main--sub button:hover .txt,
.c-btn-main--large a:hover .txt,
.c-btn-main--large button:hover .txt {
  color: #fff;
}
.c-btn-main a:hover .txt .mail,
.c-btn-main button:hover .txt .mail,
.c-btn-main--sub a:hover .txt .mail,
.c-btn-main--sub button:hover .txt .mail,
.c-btn-main--large a:hover .txt .mail,
.c-btn-main--large button:hover .txt .mail {
  background-image: url(/recruit/resource/images/ico_mail_white.svg);
}
.c-btn-main a:hover .arrow,
.c-btn-main button:hover .arrow,
.c-btn-main--sub a:hover .arrow,
.c-btn-main--sub button:hover .arrow,
.c-btn-main--large a:hover .arrow,
.c-btn-main--large button:hover .arrow {
  background-image: url(/recruit/resource/images/ico_arrow_white.svg);
  outline: 2px solid #fff;
}
.c-btn-main a:hover .external,
.c-btn-main button:hover .external,
.c-btn-main--sub a:hover .external,
.c-btn-main--sub button:hover .external,
.c-btn-main--large a:hover .external,
.c-btn-main--large button:hover .external {
  background-image: url(/recruit/resource/images/ico_external_link_white.svg);
}
.c-btn-main a:hover::before,
.c-btn-main button:hover::before,
.c-btn-main--sub a:hover::before,
.c-btn-main--sub button:hover::before,
.c-btn-main--large a:hover::before,
.c-btn-main--large button:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(30);
          transform: translate(-50%, -50%) scale(30);
}

.c-btn-main--sub a,
.c-btn-main--sub button {
  color: #fff;
  background-color: #AF9C3F;
  outline: 2px solid #AF9C3F;
}
.c-btn-main--sub a::before,
.c-btn-main--sub button::before {
  background-color: #fff;
}
.c-btn-main--sub a:hover .txt,
.c-btn-main--sub button:hover .txt {
  color: #AF9C3F;
}
.c-btn-main--sub a:hover .entry,
.c-btn-main--sub button:hover .entry {
  background-image: url(/recruit/resource/images/ico_entry_sub.svg);
  outline: 2px solid #fff;
}

.c-btn-main--large {
  max-width: 500px;
}
.c-btn-main--large a,
.c-btn-main--large button {
  font-size: clamp(1rem, 0.308rem + 1.92vw, 1.5rem);
  padding: 24px;
}
@media screen and (max-width: 992px) {
  .c-btn-main--large a,
  .c-btn-main--large button {
    padding: 20px;
  }
}
@media screen and (max-width: 576px) {
  .c-btn-main--large a,
  .c-btn-main--large button {
    padding: 16px;
  }
}

.c-btn-sub a,
.c-btn-sub button {
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  gap: 16px;
}
.c-btn-sub a .icon,
.c-btn-sub button .icon {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  line-height: 1;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn-sub a .icon::before,
.c-btn-sub button .icon::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.4s ease-out;
  transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.4s ease-out;
  z-index: -1;
}
.c-btn-sub a .arrow,
.c-btn-sub button .arrow {
  background-image: url(/recruit/resource/images/ico_arrow_main.svg);
  background-size: 50% 50%;
  outline: 2px solid #B33E52;
  border-radius: 50%;
}
.c-btn-sub a:hover .icon::before,
.c-btn-sub button:hover .icon::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.c-btn-card,
.c-btn-card--tmb {
  border: 2px solid #e9e9e9;
  padding: 1.7777777778rem 2.2222222222rem;
  position: relative;
}
@media screen and (max-width: 992px) {
  .c-btn-card,
  .c-btn-card--tmb {
    padding: 2.2222222222rem;
  }
}
@media screen and (max-width: 576px) {
  .c-btn-card,
  .c-btn-card--tmb {
    padding: 1.6666666667rem;
  }
}
.c-btn-card .c-btn-card__ttl,
.c-btn-card--tmb .c-btn-card__ttl {
  margin-bottom: 8px;
}
.c-btn-card .c-btn-card__txt,
.c-btn-card--tmb .c-btn-card__txt {
  color: #676767;
}
.c-btn-card .c-btn-card__txt span,
.c-btn-card--tmb .c-btn-card__txt span {
  color: #AF9C3F;
}
.c-btn-card a,
.c-btn-card--tmb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-card a:hover,
.c-btn-card--tmb a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.c-btn-card-tmb1,
.c-btn-card-tmb2 {
  padding: 0;
}
.c-btn-card-tmb1 .c-btn-card-tmb-mask,
.c-btn-card-tmb2 .c-btn-card-tmb-mask {
  overflow: hidden;
  height: 194px;
}
.c-btn-card-tmb1 .c-btn-card-tmb-mask img,
.c-btn-card-tmb2 .c-btn-card-tmb-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-btn-card-tmb1 .c-btn-card-tmb__txt,
.c-btn-card-tmb2 .c-btn-card-tmb__txt {
  font-size: 14px;
}
.c-btn-card-tmb1 .c-btn-card-tmb__txt span,
.c-btn-card-tmb2 .c-btn-card-tmb__txt span {
  color: #AF9C3F;
}

.c-btn-card-tmb2 {
  border: 1px solid #e9e9e9;
}
.c-btn-card-tmb2 .c-btn-card-tmb2-mask {
  height: 164px;
}

.c-btn-pdf {
  text-align: left;
  line-height: 1;
  text-indent: -35.2px;
  padding-left: 35.2px;
}
.c-btn-pdf a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 35px;
  vertical-align: middle;
  background: url(/recruit/resource/images/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 8px;
}
.c-btn-pdf a span {
  color: #333;
  font-size: 16px;
  font-size: 0.8888888889rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.2;
  position: relative;
  top: -8px;
}
.c-btn-pdf:hover {
  opacity: 0.6;
}

/* ==========================================================================
カード
=========================================================================*/
.c-card-small,
.c-card-medium {
  border: 1px solid #e9e9e9;
}

.c-card-small {
  padding: 1rem;
}

.c-card-medium {
  padding: 2.2222222222rem;
}

.c-card-pattern1 {
  border: 1px solid rgba(179, 62, 82, 0.2);
}
.c-card-pattern1 .c-card-pattern1-head {
  background-color: rgba(179, 62, 82, 0.2);
  text-align: center;
  padding: 1.7777777778rem 1rem;
}
.c-card-pattern1 .c-card-pattern1-head .c-card-pattern1-head__ttl {
  color: #B33E52;
}
.c-card-pattern1 .c-card-pattern1__txt {
  padding: 2.2222222222rem;
}
.c-card-pattern1 .c-card-pattern1__txt-sm {
  padding: 1.3333333333rem;
}

.c-card-pattern2 {
  border: 4px solid #AF9C3F;
  padding: 1.3333333333rem;
  text-align: center;
}
.c-card-pattern2 .c-card-pattern2__ttl {
  color: #AF9C3F;
  font-size: 30px;
  font-size: 1.6666666667rem;
}
.c-card-pattern2 .c-card-pattern2__ttl span {
  display: block;
  font-size: 16px;
  font-size: 0.8888888889rem;
  margin-bottom: 8px;
}
.c-card-pattern2 .c-card-pattern2__sub-ttl {
  font-size: 20px;
  font-size: 1.1111111111rem;
  margin-top: 1.3333333333rem;
}
.c-card-pattern2 .c-card-pattern2__txt {
  text-align: left;
  margin-top: 1rem;
}

/* ==========================================================================
テキスト・タイトル
=========================================================================*/
/* テキスト
----------------------------------------------------------------- */
.c-txt-en {
  font-family: "Akshar", sans-serif;
}

.c-txt-bold {
  font-weight: 700;
}

.c-txt-base {
  font-size: 1rem;
}

.c-txt-small {
  font-size: 14px;
}

.c-txt-large {
  font-size: 20px;
  font-size: 1.1111111111rem;
}

.c-txt-link {
  color: #B33E52;
  text-decoration: underline;
}
.c-txt-link:hover {
  color: #AF9C3F;
  text-decoration: none;
}

.c-txt-center {
  text-align: center !important;
}

.c-txt-left {
  text-align: left !important;
}

.c-txt-right {
  text-align: right !important;
}

.c-txt-white {
  color: #fff !important;
}

.c-txt-lightgray {
  color: #e9e9e9 !important;
}

.c-txt-silver {
  color: #d4d4d4 !important;
}

.c-txt-gray {
  color: #676767 !important;
}

.c-txt-black {
  color: #333 !important;
}

.c-txt-main {
  color: #B33E52 !important;
}

.c-txt-sub {
  color: #AF9C3F !important;
}

.c-txt-hover {
  color: #AF9C3F !important;
}

.c-txt-whitesmoke {
  color: #F2EDEE !important;
}

.c-txt-selection_txt {
  color: #525252 !important;
}

.c-txt-selection_bg {
  color: #ffd0c4 !important;
}

.c-txt-dark-red {
  color: #8B3141 !important;
}

.c-txt-asterisk {
  display: inline-block;
  padding-left: 1em;
}
.c-txt-asterisk::before {
  content: "※";
  margin-left: -1em;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

h2 {
  font-size: 30px;
  font-size: 1.6666666667rem;
}
@media screen and (max-width: 576px) {
  h2 {
    font-size: 26px;
    font-size: 1.4444444444rem;
  }
}

h3 {
  font-size: 26px;
  font-size: 1.4444444444rem;
}
@media screen and (max-width: 576px) {
  h3 {
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}

h4 {
  font-size: 20px;
  font-size: 1.1111111111rem;
}

h5 {
  font-size: 18px;
  font-size: 1rem;
}

h6 {
  font-size: 16px;
  font-size: 0.8888888889rem;
}

.c-txt-lead {
  font-size: 16px;
  font-size: 0.8888888889rem;
  text-align: left;
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-main-bg {
  background-color: #B33E52;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.3333333333rem 5%;
}
@media screen and (max-width: 576px) {
  .c-ttl-main-bg {
    padding: 2.2222222222rem 5%;
  }
}

.c-ttl-main {
  text-align: center;
  margin-bottom: 4.4444444444rem;
}
.c-ttl-main span {
  display: block;
}
.c-ttl-main .jp {
  font-size: 36px;
  font-size: 2rem;
  color: #333;
}
.c-ttl-main .en {
  font-size: 20px;
  font-size: 1.1111111111rem;
  font-family: "Akshar", sans-serif;
  color: #B33E52;
}
@media screen and (max-width: 992px) {
  .c-ttl-main {
    margin-bottom: 3.5555555556rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-main .jp {
    font-size: 26px;
    font-size: 1.4444444444rem;
  }
  .c-ttl-main .en {
    font-size: 18px;
    font-size: 1rem;
  }
}

.c-ttl-sub {
  color: #333;
  margin-bottom: 1.3333333333rem;
}

/* 電話番号
----------------------------------------------------------------- */
.c-txt-tel {
  font-family: "Akshar", sans-serif;
  font-size: 50px;
  font-size: 2.7777777778rem;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 992px) {
  .c-txt-tel {
    font-size: 36px;
    font-size: 2rem;
  }
}
.c-txt-tel img {
  width: auto;
  height: 0.8em;
}
@media screen and (max-width: 992px) {
  .c-txt-tel img {
    width: 14px;
  }
}
.c-txt-tel a[href^="tel:"] {
  color: #B33E52;
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .c-txt-tel a[href^="tel:"] {
    pointer-events: auto;
  }
  .c-txt-tel a[href^="tel:"]:hover {
    color: #AF9C3F;
  }
}

/* ==========================================================================
トップページ
========================================================================== */
/* スライドショー
----------------------------------------------------------------- */
.p-idx-slide-wrap {
  background-color: #B33E52;
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 576px) {
  .p-idx-slide-wrap {
    height: 557px;
    margin-top: 60px;
  }
}
.p-idx-slide-wrap::after {
  content: "";
  display: inline-block;
  background-image: url(/recruit/resource/images/topimage_deco.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 100%;
  height: 458px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  .p-idx-slide-wrap::after {
    height: 208px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-slide-wrap::after {
    height: 108px;
  }
}
.p-idx-slide-wrap .p-idx-slide-catch {
  z-index: 1;
  position: absolute;
  right: 15%;
  bottom: 100px;
  max-width: 774px;
}
@media screen and (max-width: 992px) {
  .p-idx-slide-wrap .p-idx-slide-catch {
    right: 5%;
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-slide-wrap .p-idx-slide-catch {
    width: 80%;
  }
}
.p-idx-slide-wrap .p-idx-slide-catch img {
  max-width: 100%;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-slide {
  height: calc(100vh - 80px);
  background-position: top center;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .p-idx-slide-wrap .p-idx-slide-items .slick-slide {
    background-position: top left -180px;
  }
  .p-idx-slide-wrap .p-idx-slide-items .slick-slide:nth-of-type(1) {
    background-position: top right -150px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-slide-wrap .p-idx-slide-items .slick-slide {
    height: 557px;
  }
}
.p-idx-slide-wrap .p-idx-slide-items .slick-list {
  pointer-events: none;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 15px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li {
  width: 32px;
  height: 3px;
  margin: 0 4px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li button {
  padding: 0;
  width: 32px;
  height: 3px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li button:before {
  content: "";
  width: 32px;
  height: 3px;
  opacity: 0.7;
  font-size: 0;
  background-color: #fff;
  border-radius: 1.5px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li button:hover:before {
  opacity: 1;
  background-color: #AF9C3F;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #B33E52;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-next,
.p-idx-slide-wrap .p-idx-slide-items .slick-prev {
  z-index: 2;
  width: 25px;
  height: 25px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-next:before,
.p-idx-slide-wrap .p-idx-slide-items .slick-prev:before {
  display: none;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-next {
  right: 20px;
  width: 20px;
  height: 20px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-idx-slide-wrap .p-idx-slide-items .slick-prev {
  left: 20px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.slick-dotted.slick-slider {
  margin: 0 auto !important;
}

/* 見出しなど
----------------------------------------------------------------- */
.gsap-text {
  overflow: hidden;
  display: inline-block;
  /* 黒いリボン */
}
.gsap-text .text-inner {
  display: inline-block;
  position: relative;
  z-index: 0;
  opacity: 0;
}
.gsap-text .ribbon {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 1;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.p-idx-tit-large {
  color: #AF9C3F;
  font-weight: 700;
  font-family: "Akshar", sans-serif;
  font-size: clamp(4rem, -5.827rem + 24.52vw, 8rem);
  line-height: 1.05;
  position: absolute;
  top: -0.55em;
}
.p-idx-tit-large .ribbon {
  background: #AF9C3F;
}

.p-idx-tit-lead {
  font-size: clamp(1.375rem, 0.683rem + 1.92vw, 1.875rem);
  margin-bottom: 2.2222222222rem;
  position: relative;
}
@media screen and (max-width: 576px) {
  .p-idx-tit-lead {
    font-size: 22px;
  }
}

.p-idx-ttl-main {
  text-align: center;
  font-weight: 700;
}
.p-idx-ttl-main .en {
  color: #fff;
  font-size: 50px;
  line-height: 1em;
}
.p-idx-ttl-main .jp {
  color: #fff;
  font-size: 36px;
  line-height: 2em;
}
@media screen and (max-width: 992px) {
  .p-idx-ttl-main .en {
    font-size: clamp(1.125rem, 0.337rem + 2.19vw, 1.875rem);
  }
  .p-idx-ttl-main .jp {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-ttl-main .en {
    font-size: 40px;
  }
  .p-idx-ttl-main .jp {
    font-size: 20px;
  }
}

/* 第一セクション
----------------------------------------------------------------- */
.p-idx-pattern1-wrap .p-idx-pattern1-clm-left {
  width: 48%;
  max-width: 540px;
}
.p-idx-pattern1-wrap .p-idx-pattern1-clm-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 576px) {
  .p-idx-pattern1-wrap .p-idx-pattern1-clm-left,
  .p-idx-pattern1-wrap .p-idx-pattern1-clm-right {
    width: 100%;
  }
}
.p-idx-pattern1-wrap .p-idx-pattern1-txt p {
  line-height: 1.7;
}
.p-idx-pattern1-wrap .p-idx-pattern1-img {
  width: 100%;
  max-width: 960px;
}

/* 第二セクション
----------------------------------------------------------------- */
.p-idx-secondary-wrap .p-idx-pattern2-clm-right {
  width: 48%;
  max-width: 540px;
}
.p-idx-secondary-wrap .p-idx-pattern2-clm-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 576px) {
  .p-idx-secondary-wrap .p-idx-pattern2-clm-left,
  .p-idx-secondary-wrap .p-idx-pattern2-clm-right {
    width: 100%;
  }
}
.p-idx-secondary-wrap .p-idx-pattern2-txt p {
  line-height: 1.7;
}
.p-idx-secondary-wrap .p-idx-pattern2-img {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
}
.p-idx-secondary-wrap .p-idx-secondary-ttl {
  padding: 3.75rem 0 7.5rem;
}
.p-idx-secondary-wrap .p-idx-secondary-box {
  margin-top: -4.5rem;
}
.p-idx-secondary-wrap .p-idx-secondary-box .p-idx-secondary-card {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.2);
  position: relative;
}
.p-idx-secondary-wrap .p-idx-secondary-box .p-idx-secondary-card .p-idx-secondary-txt {
  padding: 1.5rem 1.875rem;
}
.p-idx-secondary-wrap .p-idx-secondary-box .p-idx-secondary-card .p-idx-secondary-txt .p-idx-secondary-txt__ttl {
  text-align: center;
  margin-bottom: 1rem;
}
.p-idx-secondary-wrap .p-idx-secondary-box .p-idx-secondary-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-secondary-wrap .p-idx-secondary-box .p-idx-secondary-card a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.p-idx-secondary-wrap .c-btn-main {
  margin-top: 2.5rem;
}

/* 第三セクション
----------------------------------------------------------------- */
.p-idx-third-wrap {
  padding: 11.5555555556rem 0;
  position: relative;
}
@media screen and (max-width: 992px) {
  .p-idx-third-wrap {
    padding: 5.7777777778rem 0;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-third-wrap {
    padding: 5.7777777778rem 0 4.4444444444rem;
  }
}
.p-idx-third-wrap .p-idx-third-box {
  background-image: url(/recruit/resource/images/p-idx-sec3-box_bg.jpg);
  background-size: cover;
  background-position: 50% 35%;
  background-repeat: no-repeat;
  padding: 4.4444444444rem 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.p-idx-third-wrap .p-idx-third-box .p-idx-third-box-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.2222222222rem;
  max-width: 430px;
}
.p-idx-third-wrap .p-idx-third-box .p-idx-third-box-inner .p-idx-third-ttl-sub {
  color: #fff;
  font-size: 2.25rem;
  line-height: 1em;
  font-weight: 700;
}
.p-idx-third-wrap .p-idx-third-box .p-idx-third-box-inner p {
  color: #fff;
  text-align: left;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}
@media screen and (max-width: 576px) {
  .p-idx-third-wrap .p-idx-third-box .p-idx-third-box-inner {
    gap: 1.3333333333rem;
  }
  .p-idx-third-wrap .p-idx-third-box .p-idx-third-box-inner .p-idx-third-ttl-sub {
    font-size: 1.55rem;
  }
}
.p-idx-third-wrap::before {
  content: "";
  display: inline-block;
  background-image: url(/recruit/resource/images/deco_idx_main.svg);
  width: 100%;
  height: 86px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  .p-idx-third-wrap::before {
    height: 56px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-third-wrap::before {
    height: 36px;
  }
}

/* 会社情報／採用情報
----------------------------------------------------------------- */
.p-idx-contents-wrap {
  padding: 0 0 11.5555555556rem;
}
@media screen and (max-width: 576px) {
  .p-idx-contents-wrap {
    padding: 0 0 5.7777777778rem;
  }
  .p-idx-contents-wrap .c-grid-collapse {
    gap: 16px;
  }
}
.p-idx-contents-wrap .p-idx-info-contents {
  aspect-ratio: 3/4;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  position: relative;
  background-size: cover;
  background-position: center;
}
.p-idx-contents-wrap .p-idx-info-contents::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/recruit/resource/images/idx_info_bg1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  z-index: 0;
}
.p-idx-contents-wrap .p-idx-info-contents:nth-of-type(2)::before {
  background-image: url(/recruit/resource/images/idx_info_bg2.jpg);
}
.p-idx-contents-wrap .p-idx-info-contents:nth-of-type(3)::before {
  background-image: url(/recruit/resource/images/idx_info_bg3.jpg);
}
.p-idx-contents-wrap .p-idx-info-contents .content-wrap {
  position: relative;
  z-index: 1;
  padding: 2.2222222222rem 5%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-idx-contents-wrap .p-idx-info-contents .content-wrap .p-idx-ttl-main .en {
  color: rgba(255, 255, 255, 0.7);
}
.p-idx-contents-wrap .p-idx-info-contents .txt {
  color: #fff;
  text-align: center;
}
.p-idx-contents-wrap .p-idx-info-contents .c-btn-sub {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-align-content: flex-end;
      -ms-flex-line-pack: end;
          align-content: flex-end;
}
.p-idx-contents-wrap .p-idx-info-contents:hover::before {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-idx-contents-wrap .p-idx-info-contents:hover .c-btn-sub .icon::before {
  width: 200%;
  height: 200%;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  .p-idx-contents-wrap .p-idx-info-contents .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-contents-wrap .p-idx-info-contents {
    aspect-ratio: auto;
  }
  .p-idx-contents-wrap .p-idx-info-contents .c-btn-sub {
    padding-top: 50px;
  }
}

/* 社員の感じる Ryuの社風
----------------------------------------------------------------- */
.p-idx-comment-wrap {
  position: relative;
}
.p-idx-comment-wrap .p-idx-comment-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.p-idx-comment-wrap .p-idx-commen-main {
  color: #fff;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: url(/recruit/resource/images/idx_comment_tit_bg.png);
  background-position: right bottom 22px;
  background-size: 70% auto;
  background-repeat: no-repeat;
  padding: 0 50px 50px;
}
.p-idx-comment-wrap .p-idx-comment-slider li {
  padding: 0 10px;
}
.p-idx-comment-wrap .p-idx-comment-slider li img {
  width: 100%;
  height: auto;
  display: block;
}
.p-idx-comment-wrap::before {
  content: "";
  display: inline-block;
  background-image: url(/recruit/resource/images/deco_idx_main.svg);
  width: 100%;
  height: 86px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  .p-idx-comment-wrap::before {
    height: 56px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-comment-wrap::before {
    height: 36px;
  }
}

/* ヒストリー
----------------------------------------------------------------- */
.p-idx-history-wrap {
  position: relative;
  padding: 208px 0 11.5555555556rem;
}
@media screen and (max-width: 992px) {
  .p-idx-history-wrap {
    padding: 104px 0;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-history-wrap {
    padding: 4.4444444444rem 0 5.7777777778rem;
  }
}
.p-idx-history-wrap::before {
  content: "";
  display: inline-block;
  background-image: url(/recruit/resource/images/deco_idx_main.svg);
  width: 100%;
  height: 86px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  .p-idx-history-wrap::before {
    height: 56px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-history-wrap::before {
    height: 36px;
  }
}
.p-idx-history-wrap .c-ttl-sub {
  margin-bottom: 4.4444444444rem;
}
.p-idx-history-wrap .p-idx-history-inner {
  position: relative;
  padding: 8.3333333333rem 0 11.5555555556rem;
  background-image: url(/recruit/resource/images/idx_histry_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media screen and (max-width: 576px) {
  .p-idx-history-wrap .p-idx-history-inner {
    padding: 3.5555555556rem 5% 11.5555555556rem;
  }
}
.p-idx-history-wrap .p-idx-history-line {
  position: absolute;
  top: 250px;
  bottom: 200px;
  left: 50%;
  width: 4px;
  background: #B33E52;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 576px) {
  .p-idx-history-wrap .p-idx-history-line {
    top: 150px;
  }
}
.p-idx-history-wrap .p-idx-history-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
}
.p-idx-history-wrap .marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #B33E52;
  left: calc(50% - 6px);
  margin-top: 20px;
}
.p-idx-history-wrap .year {
  display: block;
  font-size: 48px;
  font-size: 2.6666666667rem;
  font-family: "MonteCarlo", cursive;
  font-weight: 400;
  font-style: normal;
  color: #B33E52;
  margin: 0;
  line-height: 1;
}
.p-idx-history-wrap .text {
  font-size: 14px;
}
.p-idx-history-wrap .p-idx-history-item:nth-child(odd) {
  padding-right: 50px;
  margin-left: auto;
}
.p-idx-history-wrap .p-idx-history-item:nth-child(odd)::before {
  content: "";
  display: inline-block;
  width: 38px;
  border-top: 4px dotted #B33E52;
  position: absolute;
  margin-top: 24px;
  right: calc(50% - 6px);
}
.p-idx-history-wrap .p-idx-history-item:nth-child(odd) .history-year,
.p-idx-history-wrap .p-idx-history-item:nth-child(odd) .history-text {
  text-align: right;
}
.p-idx-history-wrap .p-idx-history-item:nth-child(even) {
  padding-left: 50px;
  margin-top: 50px;
}
.p-idx-history-wrap .p-idx-history-item:nth-child(even)::before {
  content: "";
  display: inline-block;
  width: 38px;
  border-top: 4px dotted #B33E52;
  position: absolute;
  margin-top: 24px;
  left: calc(50% - 6px);
}
.p-idx-history-wrap .p-idx-history-item:nth-child(even) .history-year,
.p-idx-history-wrap .p-idx-history-item:nth-child(even) .history-text {
  text-align: left;
}
.p-idx-history-wrap .image-item1,
.p-idx-history-wrap .image-item2 {
  position: absolute;
}
.p-idx-history-wrap .image-item1 img,
.p-idx-history-wrap .image-item2 img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border: 4px solid #fff;
}
.p-idx-history-wrap .image-item1 {
  left: 0;
  top: 50%;
}
.p-idx-history-wrap .image-item2 {
  right: 0;
  bottom: 0%;
}
@media screen and (max-width: 992px) {
  .p-idx-history-wrap .image-item1,
  .p-idx-history-wrap .image-item2 {
    position: relative;
  }
  .p-idx-history-wrap .image-item1 {
    margin-top: -30px;
    padding-left: 50px;
  }
  .p-idx-history-wrap .image-item2 {
    text-align: right;
    margin-top: -30px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-history-wrap .p-idx-history-line {
    left: 50px;
  }
  .p-idx-history-wrap .p-idx-history-items {
    display: block;
  }
  .p-idx-history-wrap .p-idx-history-item {
    margin-left: 40px;
    margin-bottom: 1.5rem;
  }
  .p-idx-history-wrap .p-idx-history-item .marker {
    left: 25px;
  }
  .p-idx-history-wrap .p-idx-history-item .year,
  .p-idx-history-wrap .p-idx-history-item .text {
    text-align: left !important;
    padding: 0 1rem;
  }
  .p-idx-history-wrap .p-idx-history-item:nth-child(odd) {
    padding-right: 0;
    margin-left: auto;
    padding-left: 60px;
  }
  .p-idx-history-wrap .p-idx-history-item:nth-child(odd)::before {
    width: 25px;
    margin-top: 24px;
    left: 40px;
  }
  .p-idx-history-wrap .p-idx-history-item:nth-child(odd) .history-year,
  .p-idx-history-wrap .p-idx-history-item:nth-child(odd) .history-text {
    text-align: right;
  }
  .p-idx-history-wrap .p-idx-history-item:nth-child(even) {
    padding-right: 0;
    margin-left: auto;
    padding-left: 60px;
    margin-top: 0;
  }
  .p-idx-history-wrap .p-idx-history-item:nth-child(even)::before {
    width: 25px;
    margin-top: 24px;
    left: 40px;
  }
  .p-idx-history-wrap .p-idx-history-item:nth-child(even) .history-year,
  .p-idx-history-wrap .p-idx-history-item:nth-child(even) .history-text {
    text-align: left;
  }
  .p-idx-history-wrap .image-item1 {
    margin-top: 0;
    padding-left: 80px;
  }
  .p-idx-history-wrap .image-item2 {
    text-align: left;
    margin-top: 30px;
    padding-right: 0;
    padding-left: 80px;
  }
  .p-idx-history-wrap .image-item img {
    max-width: inherit;
  }
}

/* バナーエリア
----------------------------------------------------------------- */
.p-idx-bnr-wrap {
  padding: 0 0 11.5555555556rem;
}
@media screen and (max-width: 576px) {
  .p-idx-bnr-wrap {
    padding: 0 0 4.4444444444rem;
  }
}
.p-idx-bnr-wrap .p-idx-bnr-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1%;
}
@media screen and (max-width: 576px) {
  .p-idx-bnr-wrap .p-idx-bnr-flex {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 0;
    margin-top: -2%;
  }
}
.p-idx-bnr-wrap .p-idx-bnr-flex .p-idx-bnr-clm {
  margin-left: 1%;
  width: 24%;
}
@media screen and (max-width: 576px) {
  .p-idx-bnr-wrap .p-idx-bnr-flex .p-idx-bnr-clm {
    width: 49%;
    margin-left: 0;
    margin-top: 2%;
  }
}
.p-idx-bnr-wrap .p-idx-bnr-flex a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-bnr-wrap .p-idx-bnr-flex a:hover {
  opacity: 0.6;
}

/* お知らせ1（ニュースティッカータイプ）
----------------------------------------------------------------- */
.p-idx-news-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-size: 0.7777777778rem;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 576px) {
  .p-idx-news-wrap {
    font-size: 12px;
    line-height: 1.5;
  }
}
.p-idx-news-wrap .p-idx-news-items {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
  padding: 0.75rem 1rem 0.75rem 0;
}
.p-idx-news-wrap .p-idx-news-items ul {
  overflow: hidden;
  height: 14px;
}
@media screen and (max-width: 576px) {
  .p-idx-news-wrap .p-idx-news-items ul {
    height: 2.5rem;
  }
}
.p-idx-news-wrap .p-idx-news-items ul li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-news-wrap .p-idx-news-items ul li a:hover {
  color: #AF9C3F;
}
.p-idx-news-wrap .p-idx-news-items ul li a .p-idx-news-data:after {
  content: "｜";
  margin: 0 1rem;
}
@media screen and (max-width: 992px) {
  .p-idx-news-wrap .p-idx-news-items ul li a .p-idx-news-data:after {
    margin: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news-wrap .p-idx-news-items ul li a .p-idx-news-data:after {
    content: none;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news-wrap .p-idx-news-items ul li a .p-idx-news-ttl {
    display: block;
  }
}
.p-idx-news-wrap .p-idx-news-btn {
  background-color: #B33E52;
  font-family: "Akshar", sans-serif;
  font-weight: 700;
  text-align: center;
  width: 15%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 576px) {
  .p-idx-news-wrap .p-idx-news-btn {
    width: 20%;
  }
}
.p-idx-news-wrap .p-idx-news-btn:hover {
  background-color: #AF9C3F;
}
.p-idx-news-wrap .p-idx-news-btn a {
  display: block;
  color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
}
.p-idx-news-wrap .p-idx-news-btn a span {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
}

/* ==========================================================================
ローデイング
========================================================================== */
/* ローディング全体 */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #B33E52;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  padding: 0 5%;
}
#page-loader .loading-text {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  opacity: 0;
  margin-bottom: 20px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 992px) {
  #page-loader .loading-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  #page-loader .loading-text {
    font-size: 18px;
  }
}
#page-loader .p-idx-loading-catch {
  opacity: 0;
}
#page-loader .p-idx-loading-catch #vivus-svg {
  width: 750px;
  height: 198px;
}
@media screen and (max-width: 820px) {
  #page-loader .p-idx-loading-catch #vivus-svg {
    max-width: 750px;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  #page-loader .p-idx-loading-catch #vivus-svg {
    max-width: 520px;
    width: 100%;
    height: auto;
  }
}

#homepage {
  opacity: 0;
}

/* お知らせ2（リストタイプ）
----------------------------------------------------------------- */
.p-idx-news-list-wrap {
  padding-top: 4.4444444444rem;
}
@media screen and (max-width: 820px) {
  .p-idx-news-list-wrap {
    padding-top: 4.4444444444rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news-list-wrap {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news-list-wrap .l-container {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news-list-wrap .c-grid-medium {
    display: block;
  }
}
.p-idx-news-list-wrap .p-idx-news-list-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #B33E52;
  padding: 2rem 7%;
}
.p-idx-news-list-wrap .p-idx-news-list-ttl .c-ttl-main {
  font-size: 22px;
  font-size: 1.2222222222rem;
}
.p-idx-news-list-wrap .p-idx-news-list-ttl .c-ttl-main span {
  font-size: 14px;
  font-size: 0.7777777778rem;
}
@media screen and (max-width: 576px) {
  .p-idx-news-list-wrap .p-idx-news-list-ttl {
    padding: 2rem 0;
  }
}
.p-idx-news-list-wrap .p-idx-news-list-items {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
  padding: 0.8125rem 1rem 0;
  margin-left: 0;
}
@media screen and (max-width: 576px) {
  .p-idx-news-list-wrap .p-idx-news-list-items {
    padding: 0 0.75rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news-list-wrap .p-idx-news-list-items ul {
    padding-top: 0;
  }
}
.p-idx-news-list-wrap .p-idx-news-list-items ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 0.75rem 1rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-idx-news-list-wrap .p-idx-news-list-items ul li a *,
.p-idx-news-list-wrap .p-idx-news-list-items ul li a ::before,
.p-idx-news-list-wrap .p-idx-news-list-items ul li a ::after {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .p-idx-news-list-wrap .p-idx-news-list-items ul li a {
    padding: 0.8125rem 0.5rem;
  }
}
.p-idx-news-list-wrap .p-idx-news-list-items ul li a .p-idx-news-list-article-data {
  font-size: 13px;
  font-size: 0.7222222222rem;
}
.p-idx-news-list-wrap .p-idx-news-list-items ul li a .p-idx-news-list-article-ttl {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-left: 1.25rem;
  font-size: 16px;
  font-size: 0.8888888889rem;
  vertical-align: middle;
}
.p-idx-news-list-wrap .p-idx-news-list-items ul li a .p-idx-news-list-article-ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 5px;
  height: 5px;
  opacity: 0.7;
  font-size: 0;
  border-top: 1px solid #B33E52;
  border-right: 1px solid #B33E52;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
}
.p-idx-news-list-wrap .p-idx-news-list-items ul li a:hover {
  color: #AF9C3F;
}
.p-idx-news-list-wrap .p-idx-news-list-items ul li a:hover .p-idx-news-list-article-ttl::after {
  right: 0;
}
.p-idx-news-list-wrap .p-idx-news-list-items .p-idx-news-list-btn {
  margin-top: 0.25rem;
  margin-right: 0.25rem;
  display: block;
  text-align: right;
  line-height: 1;
}
@media screen and (max-width: 576px) {
  .p-idx-news-list-wrap .p-idx-news-list-items .p-idx-news-list-btn {
    text-align: left;
    margin-top: 1.5rem;
  }
}
.p-idx-news-list-wrap .p-idx-news-list-items .p-idx-news-list-btn a {
  font-size: 0.75rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-news-list-wrap .p-idx-news-list-items .p-idx-news-list-btn a:hover {
  color: #AF9C3F;
}

/* ==========================================================================
ビジネス
========================================================================== */
/* トップからのメッセージ
----------------------------------------------------------------- */
.p-business-message .p-business-message-hd .img {
  width: calc(100% - 235px);
  height: 300px;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .p-business-message .p-business-message-hd .img {
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .p-business-message .p-business-message-hd .img {
    width: 100%;
  }
}
.p-business-message .p-business-message-hd .p_business_message_hd_img {
  width: calc(100% - 235px);
  max-width: 1120px;
  height: 400px;
  position: relative;
  z-index: -1;
  background-image: url(/recruit/resource/images/business_img1_1.jpg);
  background-size: cover;
  margin-left: auto;
  margin-right: 235px;
}
@media screen and (max-width: 992px) {
  .p-business-message .p-business-message-hd .p_business_message_hd_img {
    width: 90%;
    background-position: right -100px center;
  }
}
@media screen and (max-width: 576px) {
  .p-business-message .p-business-message-hd .p_business_message_hd_img {
    width: 100%;
    background-position: right -200px center;
  }
}
.p-business-message .p-business-message-hd .p-business-message-profile {
  padding: 5% 2.2222222222rem;
  background-color: #F2EDEE;
  max-width: 470px;
  margin-left: auto;
  margin-top: -144.5px;
}
@media screen and (max-width: 992px) {
  .p-business-message .p-business-message-hd .p-business-message-profile {
    margin-top: -50px;
  }
}
@media screen and (max-width: 576px) {
  .p-business-message .p-business-message-hd .p-business-message-profile {
    margin-top: 10px;
  }
}
.p-business-message .p-business-message-hd .p-business-message-profile h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1.3333333333rem;
}
.p-business-message .p-business-message-hd .p-business-message-profile h3 .name {
  font-size: 24px;
  font-weight: 700;
}

/* オートセールス龍の営業拠点
----------------------------------------------------------------- */
.p-business-sec2-point3 {
  padding: 5.7777777778rem 0 416px;
  background-color: #87AEDA;
  background-image: url(/recruit/resource/images/business_img2_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}
@media screen and (max-width: 992px) {
  .p-business-sec2-point3 {
    padding: 4.4444444444rem 0 308px;
  }
}
@media screen and (max-width: 576px) {
  .p-business-sec2-point3 {
    background-size: 200% auto;
    padding: 4.4444444444rem 0 208px;
  }
}
.p-business-sec2-point3 .p-business-sec2-box {
  background-color: #fff;
  padding: 3.5555555556rem 5%;
}
.p-business-sec2-point3 .p-business-sec2-box .p-business-sec2-tit3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8888888889rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 26px;
  font-size: 1.4444444444rem;
  margin-bottom: 2.2222222222rem;
}
@media screen and (max-width: 576px) {
  .p-business-sec2-point3 .p-business-sec2-box .p-business-sec2-tit3 {
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-business-sec2-point3 .p-business-sec2-box .grid h3 {
  font-size: 20px;
  font-size: 1.1111111111rem;
  color: #B33E52;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .p-business-sec2-point3 .p-business-sec2-box .grid h3 {
    font-size: 18px;
    font-size: 1rem;
  }
}

/* 未来に向けて
----------------------------------------------------------------- */
.p-business-sec3 {
  padding: 5.7777777778rem 0 11.5555555556rem;
}
@media screen and (max-width: 992px) {
  .p-business-sec3 {
    padding: 4.4444444444rem 0 5.7777777778rem;
  }
}

/* ==========================================================================
職種紹介
========================================================================== */
/* 職域と職種
----------------------------------------------------------------- */
.p-occupation-sec1 .p-occupation-work .card {
  background-color: #F2EDEE;
  padding: 1.3333333333rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3333333333rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-occupation-sec1 .p-occupation-work .card .ico {
  width: 65px;
  height: auto;
}
.p-occupation-sec1 .p-occupation-work .card h3 {
  font-size: 20px;
  font-size: 1.1111111111rem;
  margin-bottom: 0.8888888889rem;
}
.p-occupation-sec1 .p-occupation-work .card ul li {
  font-size: 18px;
  font-size: 1rem;
}

/* 営業職にフォーカス
----------------------------------------------------------------- */
.p-occupation-focus1,
.p-occupation-focus2,
.p-occupation-focus3,
.p-occupation-focus4 {
  background-color: #E8E9DF;
  padding: 5.7777777778rem 0;
}
@media screen and (max-width: 992px) {
  .p-occupation-focus1,
  .p-occupation-focus2,
  .p-occupation-focus3,
  .p-occupation-focus4 {
    padding: 4.4444444444rem 0;
  }
}
@media screen and (max-width: 576px) {
  .p-occupation-focus1,
  .p-occupation-focus2,
  .p-occupation-focus3,
  .p-occupation-focus4 {
    padding: 3.5555555556rem 0;
  }
}
.p-occupation-focus1 .p-occupation-focus-ttl-main,
.p-occupation-focus2 .p-occupation-focus-ttl-main,
.p-occupation-focus3 .p-occupation-focus-ttl-main,
.p-occupation-focus4 .p-occupation-focus-ttl-main {
  line-height: 1em;
  display: inline-block;
  padding: 5px 10px;
  background-color: #E0E6B8;
  margin-bottom: 1.3333333333rem;
}
.p-occupation-focus1 .p-occupation-focus-ttl-sub,
.p-occupation-focus2 .p-occupation-focus-ttl-sub,
.p-occupation-focus3 .p-occupation-focus-ttl-sub,
.p-occupation-focus4 .p-occupation-focus-ttl-sub {
  border-left: 5px solid #B33E52;
  padding-left: 0.8888888889rem;
  font-size: 26px;
  font-size: 1.4444444444rem;
}
@media screen and (max-width: 576px) {
  .p-occupation-focus1 .person_img,
  .p-occupation-focus2 .person_img,
  .p-occupation-focus3 .person_img,
  .p-occupation-focus4 .person_img {
    max-width: 200px;
  }
  .p-occupation-focus1 .p-occupation-focus-ttl-sub,
  .p-occupation-focus2 .p-occupation-focus-ttl-sub,
  .p-occupation-focus3 .p-occupation-focus-ttl-sub,
  .p-occupation-focus4 .p-occupation-focus-ttl-sub {
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}
.p-occupation-focus1 .p-occupation-focus-area,
.p-occupation-focus2 .p-occupation-focus-area,
.p-occupation-focus3 .p-occupation-focus-area,
.p-occupation-focus4 .p-occupation-focus-area {
  background-color: #fff;
}
.p-occupation-focus1 .p-occupation-focus-area .notice,
.p-occupation-focus2 .p-occupation-focus-area .notice,
.p-occupation-focus3 .p-occupation-focus-area .notice,
.p-occupation-focus4 .p-occupation-focus-area .notice {
  margin-top: 1.3333333333rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-occupation-focus1 .p-occupation-focus-area .notice li,
.p-occupation-focus2 .p-occupation-focus-area .notice li,
.p-occupation-focus3 .p-occupation-focus-area .notice li,
.p-occupation-focus4 .p-occupation-focus-area .notice li {
  font-size: 15px;
  font-size: 0.8333333333rem;
  padding: 0 10px;
  color: #fff;
  background-color: #B33E52;
}
.p-occupation-focus1 .p-occupation-focus-area .p-occupation-focus1-grid--txt,
.p-occupation-focus2 .p-occupation-focus-area .p-occupation-focus1-grid--txt,
.p-occupation-focus3 .p-occupation-focus-area .p-occupation-focus1-grid--txt,
.p-occupation-focus4 .p-occupation-focus-area .p-occupation-focus1-grid--txt {
  max-width: 470px;
}
.p-occupation-focus1 .p-occupation-focus-area .img,
.p-occupation-focus2 .p-occupation-focus-area .img,
.p-occupation-focus3 .p-occupation-focus-area .img,
.p-occupation-focus4 .p-occupation-focus-area .img {
  display: block;
  width: 100%;
  max-width: 980px;
}

.p-occupation-focus1 .p-occupation-focus-area,
.p-occupation-focus3 .p-occupation-focus-area {
  border-radius: 36px 0 0 36px;
  outline: 5px solid #B33E52;
  outline-width: 5px 0 5px 5px;
  padding: 4.4444444444rem 0 4.4444444444rem 70px;
}
@media screen and (max-width: 992px) {
  .p-occupation-focus1 .p-occupation-focus-area,
  .p-occupation-focus3 .p-occupation-focus-area {
    padding: 3.3333333333rem 5%;
    outline-width: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-occupation-focus1 .p-occupation-focus-area,
  .p-occupation-focus3 .p-occupation-focus-area {
    padding: 0 5% 2.2222222222rem;
    border-radius: 24px;
  }
}
.p-occupation-focus1 .l-container-inner-medium,
.p-occupation-focus3 .l-container-inner-medium {
  margin-right: auto;
  margin-left: inherit;
}

.p-occupation-focus2 .p-occupation-focus-area,
.p-occupation-focus4 .p-occupation-focus-area {
  border-radius: 0 36px 36px 0;
  outline: 5px solid #B33E52;
  outline-width: 5px 0 5px 5px;
  padding: 4.4444444444rem 70px 4.4444444444rem 0;
}
@media screen and (max-width: 992px) {
  .p-occupation-focus2 .p-occupation-focus-area,
  .p-occupation-focus4 .p-occupation-focus-area {
    padding: 3.3333333333rem 5%;
    outline-width: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-occupation-focus2 .p-occupation-focus-area,
  .p-occupation-focus4 .p-occupation-focus-area {
    padding: 0 5% 2.2222222222rem;
    border-radius: 24px;
  }
}
.p-occupation-focus2 .p-occupation-focus-area .img,
.p-occupation-focus4 .p-occupation-focus-area .img {
  margin-left: auto;
}
.p-occupation-focus2 .l-container-inner-medium,
.p-occupation-focus4 .l-container-inner-medium {
  margin-left: auto;
  margin-right: inherit;
}

.p-occupation-focus2 {
  background-color: #EDF2ED;
}
.p-occupation-focus2 .p-occupation-focus-ttl-main {
  background-color: #B8E6BB;
}

.p-occupation-focus3 {
  background-color: #E0E5EB;
}
.p-occupation-focus3 .p-occupation-focus-ttl-main {
  background-color: #B8CFE6;
}

.p-occupation-focus4 {
  background-color: #E2DCE5;
}
.p-occupation-focus4 .p-occupation-focus-ttl-main {
  background-color: #D6B8E6;
}

/* その他の職種
----------------------------------------------------------------- */
.p-occupation-other .card {
  outline: 3px solid #B33E52;
  padding: 2.2222222222rem 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8888888889rem;
}
.p-occupation-other .card h4 {
  font-size: 20px;
  font-size: 1.1111111111rem;
}
.p-occupation-other .card p {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-size: 0.7777777778rem;
}

/* 総括部長より
----------------------------------------------------------------- */
.p-occupation-sec4 {
  padding: 5.7777777778rem 0 11.5555555556rem;
}
@media screen and (max-width: 992px) {
  .p-occupation-sec4 {
    padding: 4.4444444444rem 0 6.6666666667rem;
  }
}

/* ==========================================================================
ワークスタイル
========================================================================== */
/* 働く環境
----------------------------------------------------------------- */
.p-workstyle-sec1-box1 {
  background-color: #F2EDEE;
  border-radius: 1.3333333333rem;
  padding: 2.2222222222rem 5%;
}
.p-workstyle-sec1-box1 .balloon {
  background-color: #fff;
  border-radius: 1rem;
  padding: 10px 16px;
  font-size: 16px;
  font-size: 0.8888888889rem;
  text-align: center;
  position: relative;
  margin-bottom: 16px;
}
.p-workstyle-sec1-box1 .balloon::after {
  content: "";
  display: inline-block;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 16px;
  height: 10px;
  position: absolute;
  bottom: -9px;
  left: calc(50% - 8px);
}

/* 福利厚生について
----------------------------------------------------------------- */
.p-workstyle-sec2-box .card {
  outline: 3px solid #B33E52;
  padding: 2.2222222222rem 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3333333333rem;
}
.p-workstyle-sec2-box .card h4 {
  font-size: 20px;
  font-size: 1.1111111111rem;
}
.p-workstyle-sec2-box .card .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-size: 0.7777777778rem;
}

/* 会社の気になるデータ
----------------------------------------------------------------- */
.p-workstyle-sec3-box {
  background-color: #F2EDEE;
  border-radius: 1.3333333333rem;
  padding: 2.2222222222rem 5%;
}
.p-workstyle-sec3-box .p-workstyle-sec3-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: #fff;
  padding: 2.2222222222rem 3%;
}
.p-workstyle-sec3-box .p-workstyle-sec3-date .img {
  width: auto;
  height: 110px;
}
.p-workstyle-sec3-box .p-workstyle-sec3-date .number {
  color: #B33E52;
  font-family: "Akshar", sans-serif;
  font-weight: 700;
  font-size: 100px;
  font-size: 5.5555555556rem;
  line-height: 1em;
}
.p-workstyle-sec3-box .p-workstyle-sec3-date .number .unit {
  font-size: 35px;
  font-size: 1.9444444444rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 992px) {
  .p-workstyle-sec3-box .p-workstyle-sec3-date .number {
    font-size: clamp(3.125rem, -1.202rem + 12.02vw, 6.25rem);
  }
}
@media screen and (max-width: 576px) {
  .p-workstyle-sec3-box .p-workstyle-sec3-date .number {
    font-size: 100px;
    font-size: 5.5555555556rem;
  }
}
.p-workstyle-sec3-box .p-workstyle-sec3-date .txt {
  font-size: 14px;
  font-size: 0.7777777778rem;
}

/* ==========================================================================
お知らせ
========================================================================== */
/* 記事
----------------------------------------------------------------- */
.p-news-article .p-news-article-data {
  color: #B33E52;
  font-family: "Akshar", sans-serif;
  font-weight: 700;
}
.p-news-article .p-news-article-content {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 4.4444444444rem;
  padding: 2.2222222222rem 0;
}
@media screen and (max-width: 820px) {
  .p-news-article .p-news-article-content {
    margin-bottom: 3.3333333333rem;
  }
}
.p-news-article .p-news-article-content p:nth-child(n+2) {
  margin-top: 1.3333333333rem;
}
.p-news-article .p-news-article-content a {
  color: #AF9C3F;
  text-decoration: underline;
}
.p-news-article .p-news-article-content a:hover {
  color: #AF9C3F;
  text-decoration: none;
}

/* ページネーション
----------------------------------------------------------------- */
.wp-pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.3333333333rem;
  position: relative;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .current {
  color: #fff;
  background-color: #B33E52;
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #B33E52;
  background-color: #e9e9e9;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wp-pagenavi a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wp-pagenavi a:hover {
  color: #fff;
  background-color: #B33E52;
}
.wp-pagenavi a.first, .wp-pagenavi a.last {
  width: auto;
  font-size: 14px;
  padding: 0.5rem;
}

/* ==========================================================================
よくある質問パターン
========================================================================== */
/* パターン１
----------------------------------------------------------------- */
.p-faq-pattern1 .p-faq-question {
  vertical-align: middle;
  position: relative;
  margin-top: 3.75rem;
  padding: 0.5rem 0.5rem 0.5rem 4.375rem;
  border-bottom: 1px solid #B33E52;
  font-size: 20px;
  font-size: 1.1111111111rem;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .p-faq-pattern1 .p-faq-question {
    padding: 0.5357142rem 0.5rem 0.5357142rem 4.375rem;
  }
}
@media screen and (max-width: 576px) {
  .p-faq-pattern1 .p-faq-question {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-faq-pattern1 .p-faq-question::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #B33E52;
  width: 50px;
  height: 50px;
}
.p-faq-pattern1 .p-faq-question::after {
  content: "Q";
  display: block;
  position: absolute;
  left: 0;
  bottom: 9px;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  text-align: center;
  font-family: "Akshar", sans-serif;
}
@media screen and (max-width: 992px) {
  .p-faq-pattern1 .p-faq-question::after {
    bottom: 4px;
  }
}
.p-faq-pattern1 .p-faq-answer {
  position: relative;
  margin: 1.25rem 0 0 4.375rem;
  padding-left: 4.375rem;
}
.p-faq-pattern1 .p-faq-answer::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(179, 62, 82, 0.2);
  width: 50px;
  height: 50px;
}
.p-faq-pattern1 .p-faq-answer::after {
  content: "A";
  display: block;
  position: absolute;
  left: 0;
  top: -10px;
  color: #B33E52;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  text-align: center;
  font-family: "Akshar", sans-serif;
}
@media screen and (max-width: 992px) {
  .p-faq-pattern1 .p-faq-answer::after {
    top: -3px;
  }
}
@media screen and (max-width: 576px) {
  .p-faq-pattern1 .p-faq-answer::after {
    top: -10px;
  }
}
@media screen and (max-width: 992px) {
  .p-faq-pattern1 .p-faq-answer {
    top: -4px;
  }
}
@media screen and (max-width: 576px) {
  .p-faq-pattern1 .p-faq-answer {
    margin: 1.25rem 0 0;
    padding-left: 4.375rem;
  }
  .p-faq-pattern1 .p-faq-answer::before {
    left: 0;
    top: 0;
  }
  .p-faq-pattern1 .p-faq-answer::after {
    left: 0;
    top: -4px;
  }
}

/* パターン２
----------------------------------------------------------------- */
/*アコーディオン全体*/
.p-faq-pattern2 .p-faq-pattern2-content {
  margin: 1rem 0;
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 {
  /*アコーディオンタイトル*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-question2 {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.125rem;
  padding: 3% 3rem 3% 4rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #F2EDEE;
  /*アイコンの＋と×*/
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-question2 span {
  font-size: 1.25rem;
  display: block;
  position: absolute;
  top: 20px;
  left: 1.75rem;
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-question2::before, .p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-question2::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-question2::before {
  top: 48%;
  right: 1.125rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-question2::after {
  top: 48%;
  right: 1.125rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-question2.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-question2.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-faq-pattern2 .p-faq-pattern2-content .p-faq-area2 .p-faq-answer2 {
  display: none;
  /*はじめは非表示*/
  margin: 0 3% 3% 3%;
  padding: 3%;
}

/* パターン３
----------------------------------------------------------------- */
/*アコーディオン全体*/
.p-faq-pattern3 .p-faq-pattern3-content {
  margin: 1rem 0;
}
.p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 {
  border: 1px solid #d4d4d4;
  /*アコーディオンタイトル*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 .p-faq-question3 {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.125rem;
  padding: 3% 3% 3% 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /*アイコンの＋と×*/
}
.p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 .p-faq-question3::before, .p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 .p-faq-question3::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 .p-faq-question3::before {
  top: 48%;
  left: 18px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 .p-faq-question3::after {
  top: 48%;
  left: 18px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 .p-faq-question3.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 .p-faq-question3.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-faq-pattern3 .p-faq-pattern3-content .p-faq-area3 .p-faq-answer3 {
  display: none;
  /*はじめは非表示*/
  background: #F2EDEE;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

/* ==========================================================================
 スクロール
=========================================================================*/
.u-scroll-anchor {
  display: block;
}
@media screen and (max-width: 992px) {
  .u-scroll-anchor {
    padding-top: 3.3333333333rem;
    margin-top: -3.3333333333rem;
  }
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.u-margin-auto {
  margin: auto;
}

.u-margin-left-auto {
  margin-left: auto;
}

.u-margin-remove {
  margin: 0 !important;
}

.u-margin-remove-top {
  margin-top: 0 !important;
}

.u-margin-xxsmall-top {
  margin-top: 10px;
}

.u-margin-xsmall-top {
  margin-top: 0.8888888889rem;
}
@media screen and (max-width: 992px) {
  .u-margin-xsmall-top {
    margin-top: 14px;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xsmall-top {
    margin-top: 10px;
  }
}

.u-margin-small-top {
  margin-top: 1.3333333333rem;
}
@media screen and (max-width: 992px) {
  .u-margin-small-top {
    margin-top: 1.1111111111rem;
  }
}

.u-margin-medium-small-top {
  margin-top: 1.6666666667rem;
}
@media screen and (max-width: 992px) {
  .u-margin-medium-small-top {
    margin-top: 1.6666666667rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-medium-small-top {
    margin-top: 1.6666666667rem;
  }
}

.u-margin-medium-top {
  margin-top: 2.2222222222rem;
}
@media screen and (max-width: 992px) {
  .u-margin-medium-top {
    margin-top: 2.2222222222rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-medium-top {
    margin-top: 2.2222222222rem;
  }
}

.u-margin-large-top {
  margin-top: 3.5555555556rem;
}
@media screen and (max-width: 576px) {
  .u-margin-large-top {
    margin-top: 3.3333333333rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-large-top {
    margin-top: 2.2222222222rem;
  }
}

.u-margin-xlarge-top {
  margin-top: 4.4444444444rem;
}
@media screen and (max-width: 992px) {
  .u-margin-xlarge-top {
    margin-top: 3.3333333333rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xlarge-top {
    margin-top: 3.3333333333rem;
  }
}

.u-margin-xxlarge-top {
  margin-top: 5.7777777778rem;
}
@media screen and (max-width: 992px) {
  .u-margin-xxlarge-top {
    margin-top: 4.4444444444rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xxlarge-top {
    margin-top: 4.4444444444rem;
  }
}

.u-margin-xxxlarge-top {
  margin-top: 11.5555555556rem;
}
@media screen and (max-width: 992px) {
  .u-margin-xxxlarge-top {
    margin-top: 5.7777777778rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xxxlarge-top {
    margin-top: 5.7777777778rem;
  }
}

.u-margin-small-bottom {
  margin-bottom: 1.1111111111rem;
}

/* パディング
----------------------------------------------------------------- */
.u-padding-remove {
  padding: 0 !important;
}

.u-padding-small {
  padding: 1.1111111111rem;
}

.u-padding-medium {
  padding: 2.2222222222rem;
}

.u-padding-large {
  padding: 3.3333333333rem;
}
@media screen and (max-width: 576px) {
  .u-padding-large {
    padding: 2.2222222222rem;
  }
}

.u-padding-large-bottom {
  padding: 0 0 3.3333333333rem;
}
@media screen and (max-width: 576px) {
  .u-padding-large-bottom {
    padding: 0 0 2.2222222222rem;
  }
}

.u-padding-top-xlarge {
  padding-top: 4.4444444444rem;
}
@media screen and (max-width: 992px) {
  .u-padding-top-xlarge {
    padding-top: 4.4444444444rem;
  }
}
@media screen and (max-width: 576px) {
  .u-padding-top-xlarge {
    padding-top: 3.3333333333rem;
  }
}

.u-padding-xxlarge-top {
  padding-top: 5.5555555556rem;
}
@media screen and (max-width: 992px) {
  .u-padding-xxlarge-top {
    padding-top: 4.4444444444rem;
  }
}
@media screen and (max-width: 576px) {
  .u-padding-xxlarge-top {
    padding-top: 4.4444444444rem;
  }
}

.u-padding-small-bottom {
  padding-bottom: 1.1111111111rem;
}/*# sourceMappingURL=main.css.map */