@charset "UTF-8";
a,
abbr,
acronym,
address,
applet,
big,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
ul,
var {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

a,
a:active,
a:hover,
a:link,
a:visited {
  text-decoration: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

td,
th {
  text-align: left;
  font-weight: normal;
}

iframe,
img {
  border: none;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-size: 100%;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  margin: inherit;
}

select::-ms-expand {
  display: none;
}

hr {
  margin: 0;
  padding: 0;
  border: 0;
  color: #000;
  background-color: #000;
  height: 1px;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

ul li a img {
  margin: 0;
  padding: 0;
}

li img {
  vertical-align: bottom;
}

a:focus {
  overflow: hidden;
  outline: none;
}

ol,
ul {
  list-style: none outside none;
}

ol.link,
ul.link {
  list-style: outside none none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
}

i {
  font-style: normal;
}

/*
* 色、フォント、基本スタイルの一括設定
*/
:root {
  /*基本文字カラー*/
  --color-base: #000;
  /*メインカラー*/
  --color-main: #f1cd08;
  /*メインカラーと白を混ぜた明るい色*/
  --color-main-light: color-mix(in srgb, var(--color-main) 45%, #fff);
  /*メインカラーと白を混ぜたさらに明るい色*/
  --color-main-light02: color-mix(in srgb, var(--color-main) 8%, #fff);
  /*グラデーション*/
  --color-main-gradient: linear-gradient(
    -35deg,
    var(--color-main) 0%,
    var(--color-main-light) 100%
  );
  /*背景色*/
  --color-bg: #fff;
  /*
  フォントでWebフォントを使う場合は、template-parts/sns-url.phpで設定する-------
   */
  /*英語フォント*/
  --en-font: "Roboto", sans-serif;
  --font-gothic: "Noto Sans JP", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  word-break: normal;
  font-size: 62.5%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-base);
  font-family: var(--font-gothic);
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.73;
  letter-spacing: normal;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-base);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
}

/*
function,breakpoint,英文などの特殊フォントの関数
*/
/*英語フォント*/
.p-archive-pager .page-numbers, .p-cv__link a, .l-humnav__link a {
  font-family: var(--en-font);
  font-weight: 500;
  font-style: normal;
  font-display: optional;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

/*
mixinの設定
フォントサイズや、レスポンシブデザインの設定を行う
*/
.c-overlay {
  display: block;
  width: 100%;
  height: 100lvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffd800), to(#e0bd00));
  background: linear-gradient(#ffd800 0%, #e0bd00 100%);
  -webkit-transition: visibility 0.1s ease-in 1s, z-index 0.1s ease-in 1s, -webkit-transform 0.2s ease-in;
  transition: visibility 0.1s ease-in 1s, z-index 0.1s ease-in 1s, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, visibility 0.1s ease-in 1s, z-index 0.1s ease-in 1s;
  transition: transform 0.2s ease-in, visibility 0.1s ease-in 1s, z-index 0.1s ease-in 1s, -webkit-transform 0.2s ease-in;
}
@media print, screen and (min-width:768px) {
  .c-overlay {
    background: #f1cd08;
  }
}
.c-overlay.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 998;
  visibility: visible;
  -webkit-transition: visibility 0.1s ease-in, z-index 0.1s ease-in, -webkit-transform 0.2s ease-in;
  transition: visibility 0.1s ease-in, z-index 0.1s ease-in, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, visibility 0.1s ease-in, z-index 0.1s ease-in;
  transition: transform 0.2s ease-in, visibility 0.1s ease-in, z-index 0.1s ease-in, -webkit-transform 0.2s ease-in;
}

/*------------------------------------------------------
  コンテナ要素
-------------------------------------------------------*/
.c-inner {
  width: calc(100% - 16.4383561644vw);
  margin: auto;
}
@media print, screen and (min-width:1280px) {
  .c-inner {
    width: calc(100% - 200px);
    max-width: 1472px;
  }
}

@media only screen and (max-width:767px) {
  .c-inner-sp {
    width: calc(100% - 16.4383561644vw);
    margin: auto;
  }
}
@media only screen and (max-width:767px) and (min-width:1280px) {
  .c-inner-sp {
    width: calc(100% - 200px);
    max-width: 1472px;
  }
}

@media print, screen and (min-width:768px) {
  .c-inner-pc {
    width: calc(100% - 16.4383561644vw);
    margin: auto;
  }
}
@media print, screen and (min-width:768px) and (min-width:1280px) {
  .c-inner-pc {
    width: calc(100% - 200px);
    max-width: 1472px;
  }
}

.c-sec-title {
  text-align: left;
  font-size: 6.0273972603vw;
  font-weight: bold;
}
@media print, screen and (min-width:768px) {
  .c-sec-title {
    font-size: min(24px, 2.3076923077vw);
  }
}

.c-icon {
  font-size: 3.0136986301vw;
  font-weight: bold;
  line-height: 1;
  border-radius: 3em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4em 0.7em;
  color: #9f9f9f;
  border: 1px solid #9f9f9f;
}
@media print, screen and (min-width:768px) {
  .c-icon {
    font-size: 10px;
  }
}

.c-icon-new {
  font-size: 3.0136986301vw;
  font-weight: bold;
  line-height: 1;
  border-radius: 3em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4em 0.7em;
  background: #de0303;
  color: #fff;
}
@media print, screen and (min-width:768px) {
  .c-icon-new {
    font-size: 10px;
  }
}

.c-blog-card {
  overflow: hidden;
  border-radius: 10px;
  width: 72.3287671233vw;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
  /*求人カード==========*/
}
@media print, screen and (min-width:768px) {
  .c-blog-card {
    width: 26vw;
  }
}
@media print, screen and (min-width:1280px) {
  .c-blog-card {
    width: min(342px, 19.8837209302vw);
  }
}
.c-blog-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-blog-card__img {
  background-color: #f6f6f6;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.c-blog-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-blog-card__body {
  position: relative;
  text-align: left;
  color: #fff;
  background-color: var(--color-main);
  padding: 4% 8% 8% 8%;
}
.c-blog-card__body .c-icon-new {
  position: absolute;
  top: 5%;
  right: 8%;
  z-index: 1;
}
.c-blog-card__time {
  margin-bottom: 0.2em;
  display: block;
  font-size: 3.5616438356vw;
  font-weight: 500;
}
@media print, screen and (min-width:768px) {
  .c-blog-card__time {
    font-size: clamp(10px, 1.0576923077vw, 11px);
  }
}
.c-blog-card__shop {
  margin-bottom: 0.2em;
  font-size: 3.5616438356vw;
  font-weight: 500;
  line-height: 1.3076923077;
}
@media print, screen and (min-width:768px) {
  .c-blog-card__shop {
    font-size: clamp(10px, 1.1538461538vw, 12px);
  }
}
.c-blog-card__manager {
  font-size: 3.8356164384vw;
  font-weight: bold;
}
@media print, screen and (min-width:768px) {
  .c-blog-card__manager {
    font-size: clamp(10px, 1.25vw, 13px);
  }
}
.c-blog-card__title {
  font-size: 4.3835616438vw;
  font-weight: bold;
  line-height: 1.625;
  margin: 0.5em 0 0;
}
@media print, screen and (min-width:768px) {
  .c-blog-card__title {
    font-size: clamp(11px, 1.4423076923vw, 15px);
  }
}
.c-blog-card--youtube {
  position: relative;
}
.c-blog-card--youtube .c-blog-card__img {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  overflow: hidden;
  z-index: 0;
}
.c-blog-card--youtube .c-blog-card__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #acacac;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.c-blog-card--youtube .c-blog-card__video-contents {
  z-index: 1;
  position: relative;
}
.c-blog-card--youtube .c-blog-card__video {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: transparent;
}
.c-blog-card--youtube .c-blog-card__video-icon {
  display: block;
  position: relative;
  cursor: pointer;
  margin-top: 20%;
}
.c-blog-card--youtube .c-blog-card__video-icon::before, .c-blog-card--youtube .c-blog-card__video-icon:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-blog-card--youtube .c-blog-card__video-icon::before {
  content: "再生";
  overflow: hidden;
  text-indent: -9999px;
  width: 6.2rem;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  color: transparent;
}
.c-blog-card--youtube .c-blog-card__video-icon::after {
  content: "";
  border-color: transparent;
  border-style: solid;
  border-left-color: #fff;
  border-width: 1.325rem 0 1.325rem 2.1625rem;
  width: 0.05rem;
  height: 0.05rem;
}
.c-blog-card--youtube .c-blog-card__body {
  background-color: transparent;
  color: #fff;
}
.c-blog-card--youtube .c-blog-card__body a {
  color: inherit;
}
.c-blog-card--youtube .c-blog-card__title {
  color: inherit;
}
.c-blog-card--jobs .c-blog-card__img {
  background-color: #fff;
}
.c-blog-card--jobs .c-blog-card__img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 90%;
  height: 90%;
  margin: 5%;
}
.c-blog-card--jobs .c-blog-card__body {
  background-color: #fff;
  color: #000;
}
.c-blog-card--jobs .c-blog-card__title {
  margin-bottom: 0.4em;
  line-height: 1.5333333333;
}

@media only screen and (max-width:767px) {
  .c-button-bg-left-to-right {
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width:768px) {
  .c-button-bg-left-to-right {
    width: min(142px, 13.6538461538vw);
  }
}
.c-button-bg-left-to-right a,
.c-button-bg-left-to-right .a-tag {
  /*ブロック部分*/
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 50rem;
  /*背景のアニメーションが飛び出るのを防ぐ*/
  min-height: 42px;
  padding: 1em 0;
  width: 100%;
  /*フォント部分*/
  font-size: 4.3835616438vw;
  font-weight: bold;
  line-height: 1;
  border: 1px solid #000;
  background-color: transparent;
  /*背景のアニメーション（左から右に流れる）*/
  /*背景のアニメーション（ホバー：左から右に拡大、ホバーを解除したら左から右に移動）*/
}
@media print, screen and (min-width:768px) {
  .c-button-bg-left-to-right a,
  .c-button-bg-left-to-right .a-tag {
    min-height: auto;
    font-size: min(13px, 1.25vw);
    padding-left: 1.4em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}
.c-button-bg-left-to-right a .text,
.c-button-bg-left-to-right .a-tag .text {
  position: relative;
  z-index: 3;
  color: inherit;
  /*アニメーション*/
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}
.c-button-bg-left-to-right a::after,
.c-button-bg-left-to-right .a-tag::after {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.7em;
  width: 0.25em;
  height: 0.25em;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
  z-index: 3;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}
.c-button-bg-left-to-right a:hover,
.c-button-bg-left-to-right .a-tag:hover {
  opacity: 1;
  background-color: #000;
}
.c-button-bg-left-to-right a:hover .text,
.c-button-bg-left-to-right .a-tag:hover .text {
  color: #fff;
}
.c-button-bg-left-to-right a:hover::after,
.c-button-bg-left-to-right .a-tag:hover::after {
  border-color: #fff;
}

/*------------------------------------------------------
  アクセントカラーをつける
-------------------------------------------------------*/
.c-main-color {
  color: var(--color-main);
  font-weight: inherit;
}

/*------------------------------------------------------
  ページトップに戻るボタン
-------------------------------------------------------*/
.c-page-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 990;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-page-top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -9999px;
  border-radius: 100%;
  border: 1px solid var(--color-main);
  background-color: #fff;
}
@media print, screen and (min-width:768px) {
  .c-page-top a {
    width: 26px;
    height: 26px;
  }
}
.c-page-top a::before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  inset: 0;
  width: 8px;
  height: 8px;
  border-left: 1px solid var(--color-main);
  border-top: 1px solid var(--color-main);
  -webkit-transform: translateY(25%) rotate(45deg);
          transform: translateY(25%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media print, screen and (min-width:768px) {
  .c-page-top a::before {
    width: 5px;
    height: 5px;
  }
}
.c-page-top.is-scroll {
  opacity: 1;
}

.c-no-blog-card {
  width: 100%;
  text-align: left;
  font-size: 4.3835616438vw;
  line-height: 2.4375;
  font-weight: 500;
}
@media print, screen and (min-width:768px) {
  .c-no-blog-card {
    font-size: min(16px, 1.5384615385vw);
  }
}

/*背景をレインボーにする*/
@-webkit-keyframes gradation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 51%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 51%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.c-rainbow {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.95), rgba(255, 165, 0, 0.95), rgba(255, 255, 0, 0.95), rgba(0, 128, 0, 0.95), rgba(0, 0, 255, 0.95), rgba(75, 0, 130, 0.95), rgba(238, 130, 238, 0.95));
  background-size: 700% 100%;
  -webkit-animation: gradation 10s ease infinite;
          animation: gradation 10s ease infinite;
}

/*------------------------------------------------------
  画像のトリミング用クラス
-------------------------------------------------------*/
.u-fitcover {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
}
.u-fitcover img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  -o-object-position: top center;
     object-position: top center;
}

.u-no-link {
  cursor: default;
  pointer-events: none;
}

/*PCのみ表示*/
@media only screen and (max-width:767px) {
  .u-only-pc {
    display: none !important;
  }
}

/*スマホのみ表示*/
@media print, screen and (min-width:768px) {
  .u-only-sp {
    display: none !important;
  }
}

/*英語を大文字にする*/
.u-upper {
  text-transform: uppercase;
}

/*------------------------------------------------------
 余白ユーティリティ
-------------------------------------------------------*/
.u-m-xs {
  margin: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-xs {
    margin: min(8px, 0.7692307692vw) !important;
  }
}

.u-mt-xs {
  margin-top: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-xs {
    margin-top: min(8px, 0.7692307692vw) !important;
  }
}

.u-mb-xs {
  margin-bottom: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-xs {
    margin-bottom: min(8px, 0.7692307692vw) !important;
  }
}

.u-mx-xs {
  margin-left: min(8px, 2.1917808219vw) !important;
  margin-right: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-xs {
    margin-left: min(8px, 0.7692307692vw) !important;
    margin-right: min(8px, 0.7692307692vw) !important;
  }
}

.u-ml-xs {
  margin-left: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-xs {
    margin-left: min(8px, 0.7692307692vw) !important;
  }
}

.u-mr-xs {
  margin-right: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-xs {
    margin-right: min(8px, 0.7692307692vw) !important;
  }
}

.u-p-xs {
  padding: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-xs {
    padding: min(8px, 0.7692307692vw) !important;
  }
}

.u-pt-xs {
  padding-top: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-xs {
    padding-top: min(8px, 0.7692307692vw) !important;
  }
}

.u-pb-xs {
  padding-bottom: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-xs {
    padding-bottom: min(8px, 0.7692307692vw) !important;
  }
}

.u-px-xs {
  padding-left: min(8px, 2.1917808219vw) !important;
  padding-right: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-xs {
    padding-left: min(8px, 0.7692307692vw) !important;
    padding-right: min(8px, 0.7692307692vw) !important;
  }
}

.u-pl-xs {
  padding-left: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-xs {
    padding-left: min(8px, 0.7692307692vw) !important;
  }
}

.u-pr-xs {
  padding-right: min(8px, 2.1917808219vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-xs {
    padding-right: min(8px, 0.7692307692vw) !important;
  }
}

.u-m-sm {
  margin: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-sm {
    margin: min(16px, 1.5384615385vw) !important;
  }
}

.u-mt-sm {
  margin-top: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-sm {
    margin-top: min(16px, 1.5384615385vw) !important;
  }
}

.u-mb-sm {
  margin-bottom: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-sm {
    margin-bottom: min(16px, 1.5384615385vw) !important;
  }
}

.u-mx-sm {
  margin-left: min(16px, 4.3835616438vw) !important;
  margin-right: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-sm {
    margin-left: min(16px, 1.5384615385vw) !important;
    margin-right: min(16px, 1.5384615385vw) !important;
  }
}

.u-ml-sm {
  margin-left: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-sm {
    margin-left: min(16px, 1.5384615385vw) !important;
  }
}

.u-mr-sm {
  margin-right: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-sm {
    margin-right: min(16px, 1.5384615385vw) !important;
  }
}

.u-p-sm {
  padding: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-sm {
    padding: min(16px, 1.5384615385vw) !important;
  }
}

.u-pt-sm {
  padding-top: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-sm {
    padding-top: min(16px, 1.5384615385vw) !important;
  }
}

.u-pb-sm {
  padding-bottom: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-sm {
    padding-bottom: min(16px, 1.5384615385vw) !important;
  }
}

.u-px-sm {
  padding-left: min(16px, 4.3835616438vw) !important;
  padding-right: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-sm {
    padding-left: min(16px, 1.5384615385vw) !important;
    padding-right: min(16px, 1.5384615385vw) !important;
  }
}

.u-pl-sm {
  padding-left: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-sm {
    padding-left: min(16px, 1.5384615385vw) !important;
  }
}

.u-pr-sm {
  padding-right: min(16px, 4.3835616438vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-sm {
    padding-right: min(16px, 1.5384615385vw) !important;
  }
}

.u-m-md {
  margin: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-md {
    margin: min(24px, 2.3076923077vw) !important;
  }
}

.u-mt-md {
  margin-top: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-md {
    margin-top: min(24px, 2.3076923077vw) !important;
  }
}

.u-mb-md {
  margin-bottom: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-md {
    margin-bottom: min(24px, 2.3076923077vw) !important;
  }
}

.u-mx-md {
  margin-left: min(24px, 6.5753424658vw) !important;
  margin-right: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-md {
    margin-left: min(24px, 2.3076923077vw) !important;
    margin-right: min(24px, 2.3076923077vw) !important;
  }
}

.u-ml-md {
  margin-left: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-md {
    margin-left: min(24px, 2.3076923077vw) !important;
  }
}

.u-mr-md {
  margin-right: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-md {
    margin-right: min(24px, 2.3076923077vw) !important;
  }
}

.u-p-md {
  padding: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-md {
    padding: min(24px, 2.3076923077vw) !important;
  }
}

.u-pt-md {
  padding-top: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-md {
    padding-top: min(24px, 2.3076923077vw) !important;
  }
}

.u-pb-md {
  padding-bottom: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-md {
    padding-bottom: min(24px, 2.3076923077vw) !important;
  }
}

.u-px-md {
  padding-left: min(24px, 6.5753424658vw) !important;
  padding-right: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-md {
    padding-left: min(24px, 2.3076923077vw) !important;
    padding-right: min(24px, 2.3076923077vw) !important;
  }
}

.u-pl-md {
  padding-left: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-md {
    padding-left: min(24px, 2.3076923077vw) !important;
  }
}

.u-pr-md {
  padding-right: min(24px, 6.5753424658vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-md {
    padding-right: min(24px, 2.3076923077vw) !important;
  }
}

.u-m-lg {
  margin: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-lg {
    margin: min(32px, 3.0769230769vw) !important;
  }
}

.u-mt-lg {
  margin-top: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-lg {
    margin-top: min(32px, 3.0769230769vw) !important;
  }
}

.u-mb-lg {
  margin-bottom: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-lg {
    margin-bottom: min(32px, 3.0769230769vw) !important;
  }
}

.u-mx-lg {
  margin-left: min(32px, 8.7671232877vw) !important;
  margin-right: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-lg {
    margin-left: min(32px, 3.0769230769vw) !important;
    margin-right: min(32px, 3.0769230769vw) !important;
  }
}

.u-ml-lg {
  margin-left: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-lg {
    margin-left: min(32px, 3.0769230769vw) !important;
  }
}

.u-mr-lg {
  margin-right: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-lg {
    margin-right: min(32px, 3.0769230769vw) !important;
  }
}

.u-p-lg {
  padding: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-lg {
    padding: min(32px, 3.0769230769vw) !important;
  }
}

.u-pt-lg {
  padding-top: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-lg {
    padding-top: min(32px, 3.0769230769vw) !important;
  }
}

.u-pb-lg {
  padding-bottom: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-lg {
    padding-bottom: min(32px, 3.0769230769vw) !important;
  }
}

.u-px-lg {
  padding-left: min(32px, 8.7671232877vw) !important;
  padding-right: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-lg {
    padding-left: min(32px, 3.0769230769vw) !important;
    padding-right: min(32px, 3.0769230769vw) !important;
  }
}

.u-pl-lg {
  padding-left: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-lg {
    padding-left: min(32px, 3.0769230769vw) !important;
  }
}

.u-pr-lg {
  padding-right: min(32px, 8.7671232877vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-lg {
    padding-right: min(32px, 3.0769230769vw) !important;
  }
}

.u-m-xl {
  margin: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-xl {
    margin: min(48px, 4.6153846154vw) !important;
  }
}

.u-mt-xl {
  margin-top: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-xl {
    margin-top: min(48px, 4.6153846154vw) !important;
  }
}

.u-mb-xl {
  margin-bottom: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-xl {
    margin-bottom: min(48px, 4.6153846154vw) !important;
  }
}

.u-mx-xl {
  margin-left: min(48px, 13.1506849315vw) !important;
  margin-right: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-xl {
    margin-left: min(48px, 4.6153846154vw) !important;
    margin-right: min(48px, 4.6153846154vw) !important;
  }
}

.u-ml-xl {
  margin-left: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-xl {
    margin-left: min(48px, 4.6153846154vw) !important;
  }
}

.u-mr-xl {
  margin-right: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-xl {
    margin-right: min(48px, 4.6153846154vw) !important;
  }
}

.u-p-xl {
  padding: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-xl {
    padding: min(48px, 4.6153846154vw) !important;
  }
}

.u-pt-xl {
  padding-top: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-xl {
    padding-top: min(48px, 4.6153846154vw) !important;
  }
}

.u-pb-xl {
  padding-bottom: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-xl {
    padding-bottom: min(48px, 4.6153846154vw) !important;
  }
}

.u-px-xl {
  padding-left: min(48px, 13.1506849315vw) !important;
  padding-right: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-xl {
    padding-left: min(48px, 4.6153846154vw) !important;
    padding-right: min(48px, 4.6153846154vw) !important;
  }
}

.u-pl-xl {
  padding-left: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-xl {
    padding-left: min(48px, 4.6153846154vw) !important;
  }
}

.u-pr-xl {
  padding-right: min(48px, 13.1506849315vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-xl {
    padding-right: min(48px, 4.6153846154vw) !important;
  }
}

.u-m-xxl {
  margin: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-xxl {
    margin: min(64px, 6.1538461538vw) !important;
  }
}

.u-mt-xxl {
  margin-top: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-xxl {
    margin-top: min(64px, 6.1538461538vw) !important;
  }
}

.u-mb-xxl {
  margin-bottom: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-xxl {
    margin-bottom: min(64px, 6.1538461538vw) !important;
  }
}

.u-mx-xxl {
  margin-left: min(64px, 17.5342465753vw) !important;
  margin-right: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-xxl {
    margin-left: min(64px, 6.1538461538vw) !important;
    margin-right: min(64px, 6.1538461538vw) !important;
  }
}

.u-ml-xxl {
  margin-left: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-xxl {
    margin-left: min(64px, 6.1538461538vw) !important;
  }
}

.u-mr-xxl {
  margin-right: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-xxl {
    margin-right: min(64px, 6.1538461538vw) !important;
  }
}

.u-p-xxl {
  padding: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-xxl {
    padding: min(64px, 6.1538461538vw) !important;
  }
}

.u-pt-xxl {
  padding-top: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-xxl {
    padding-top: min(64px, 6.1538461538vw) !important;
  }
}

.u-pb-xxl {
  padding-bottom: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-xxl {
    padding-bottom: min(64px, 6.1538461538vw) !important;
  }
}

.u-px-xxl {
  padding-left: min(64px, 17.5342465753vw) !important;
  padding-right: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-xxl {
    padding-left: min(64px, 6.1538461538vw) !important;
    padding-right: min(64px, 6.1538461538vw) !important;
  }
}

.u-pl-xxl {
  padding-left: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-xxl {
    padding-left: min(64px, 6.1538461538vw) !important;
  }
}

.u-pr-xxl {
  padding-right: min(64px, 17.5342465753vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-xxl {
    padding-right: min(64px, 6.1538461538vw) !important;
  }
}

.u-m-3xl {
  margin: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-3xl {
    margin: min(80px, 7.6923076923vw) !important;
  }
}

.u-mt-3xl {
  margin-top: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-3xl {
    margin-top: min(80px, 7.6923076923vw) !important;
  }
}

.u-mb-3xl {
  margin-bottom: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-3xl {
    margin-bottom: min(80px, 7.6923076923vw) !important;
  }
}

.u-mx-3xl {
  margin-left: min(80px, 21.9178082192vw) !important;
  margin-right: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-3xl {
    margin-left: min(80px, 7.6923076923vw) !important;
    margin-right: min(80px, 7.6923076923vw) !important;
  }
}

.u-ml-3xl {
  margin-left: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-3xl {
    margin-left: min(80px, 7.6923076923vw) !important;
  }
}

.u-mr-3xl {
  margin-right: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-3xl {
    margin-right: min(80px, 7.6923076923vw) !important;
  }
}

.u-p-3xl {
  padding: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-3xl {
    padding: min(80px, 7.6923076923vw) !important;
  }
}

.u-pt-3xl {
  padding-top: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-3xl {
    padding-top: min(80px, 7.6923076923vw) !important;
  }
}

.u-pb-3xl {
  padding-bottom: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-3xl {
    padding-bottom: min(80px, 7.6923076923vw) !important;
  }
}

.u-px-3xl {
  padding-left: min(80px, 21.9178082192vw) !important;
  padding-right: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-3xl {
    padding-left: min(80px, 7.6923076923vw) !important;
    padding-right: min(80px, 7.6923076923vw) !important;
  }
}

.u-pl-3xl {
  padding-left: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-3xl {
    padding-left: min(80px, 7.6923076923vw) !important;
  }
}

.u-pr-3xl {
  padding-right: min(80px, 21.9178082192vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-3xl {
    padding-right: min(80px, 7.6923076923vw) !important;
  }
}

.u-m-4xl {
  margin: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-4xl {
    margin: min(96px, 9.2307692308vw) !important;
  }
}

.u-mt-4xl {
  margin-top: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-4xl {
    margin-top: min(96px, 9.2307692308vw) !important;
  }
}

.u-mb-4xl {
  margin-bottom: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-4xl {
    margin-bottom: min(96px, 9.2307692308vw) !important;
  }
}

.u-mx-4xl {
  margin-left: min(96px, 26.301369863vw) !important;
  margin-right: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-4xl {
    margin-left: min(96px, 9.2307692308vw) !important;
    margin-right: min(96px, 9.2307692308vw) !important;
  }
}

.u-ml-4xl {
  margin-left: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-4xl {
    margin-left: min(96px, 9.2307692308vw) !important;
  }
}

.u-mr-4xl {
  margin-right: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-4xl {
    margin-right: min(96px, 9.2307692308vw) !important;
  }
}

.u-p-4xl {
  padding: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-4xl {
    padding: min(96px, 9.2307692308vw) !important;
  }
}

.u-pt-4xl {
  padding-top: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-4xl {
    padding-top: min(96px, 9.2307692308vw) !important;
  }
}

.u-pb-4xl {
  padding-bottom: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-4xl {
    padding-bottom: min(96px, 9.2307692308vw) !important;
  }
}

.u-px-4xl {
  padding-left: min(96px, 26.301369863vw) !important;
  padding-right: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-4xl {
    padding-left: min(96px, 9.2307692308vw) !important;
    padding-right: min(96px, 9.2307692308vw) !important;
  }
}

.u-pl-4xl {
  padding-left: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-4xl {
    padding-left: min(96px, 9.2307692308vw) !important;
  }
}

.u-pr-4xl {
  padding-right: min(96px, 26.301369863vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-4xl {
    padding-right: min(96px, 9.2307692308vw) !important;
  }
}

.u-m-5xl {
  margin: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-5xl {
    margin: min(128px, 12.3076923077vw) !important;
  }
}

.u-mt-5xl {
  margin-top: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-5xl {
    margin-top: min(128px, 12.3076923077vw) !important;
  }
}

.u-mb-5xl {
  margin-bottom: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-5xl {
    margin-bottom: min(128px, 12.3076923077vw) !important;
  }
}

.u-mx-5xl {
  margin-left: min(128px, 35.0684931507vw) !important;
  margin-right: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-5xl {
    margin-left: min(128px, 12.3076923077vw) !important;
    margin-right: min(128px, 12.3076923077vw) !important;
  }
}

.u-ml-5xl {
  margin-left: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-5xl {
    margin-left: min(128px, 12.3076923077vw) !important;
  }
}

.u-mr-5xl {
  margin-right: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-5xl {
    margin-right: min(128px, 12.3076923077vw) !important;
  }
}

.u-p-5xl {
  padding: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-5xl {
    padding: min(128px, 12.3076923077vw) !important;
  }
}

.u-pt-5xl {
  padding-top: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-5xl {
    padding-top: min(128px, 12.3076923077vw) !important;
  }
}

.u-pb-5xl {
  padding-bottom: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-5xl {
    padding-bottom: min(128px, 12.3076923077vw) !important;
  }
}

.u-px-5xl {
  padding-left: min(128px, 35.0684931507vw) !important;
  padding-right: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-5xl {
    padding-left: min(128px, 12.3076923077vw) !important;
    padding-right: min(128px, 12.3076923077vw) !important;
  }
}

.u-pl-5xl {
  padding-left: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-5xl {
    padding-left: min(128px, 12.3076923077vw) !important;
  }
}

.u-pr-5xl {
  padding-right: min(128px, 35.0684931507vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-5xl {
    padding-right: min(128px, 12.3076923077vw) !important;
  }
}

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

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

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

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

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-recaptcha-policy {
  font-size: 10px;
  line-height: 1.2;
}

/*------------------------------------------------------
  フェードイン・ぼかし
  ※JavaScriptの設定が必要
-------------------------------------------------------*/
.js-fadein {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 800ms;
          transition-duration: 800ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.js-fadein.is-show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

/*------------------------------------------------------
  シーケンシャルフェードイン・ぼかし
  隣接要素が自動的にディレイ付きでフェードイン
-------------------------------------------------------*/
.js-fadein-sequence {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 800ms;
          transition-duration: 800ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
.js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
.js-fadein-sequence.is-show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.l-header__inner {
  padding-right: min(45px, 11.6438356164vw);
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 999;
}
@media print, screen and (min-width:768px) {
  .l-header__inner {
    padding-right: 30px;
    width: 93.90625%;
    max-width: unset;
  }
}
.l-header__logo {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 996;
}
.l-header__logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width:768px) {
  .l-header__logo a {
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__logo img {
  margin-top: 1.2em;
  margin-left: 1.2em;
  width: 19.7260273973vw;
  max-width: 72px;
}
@media print, screen and (min-width:768px) {
  .l-header__logo img {
    margin-top: 1.4em;
    width: min(135px, 10.546875vw);
    max-width: unset;
  }
}
.l-header__logo--home {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease 0.3s, opacity 0.3s ease;
  transition: visibility 0.3s ease 0.3s, opacity 0.3s ease;
}
.l-header__logo--home.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
.l-header__nav {
  position: absolute !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-header__nav--home {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease 0.3s, opacity 0.3s ease;
  transition: visibility 0.3s ease 0.3s, opacity 0.3s ease;
}
.l-header__nav--home.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 0.3s ease, opacity 0.3s ease;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.l-hum {
  display: block;
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  width: 69px;
  height: 72px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 0.05s;
  transition: all 0.05s;
  cursor: pointer;
  background-color: transparent;
}
@media print, screen and (min-width:768px) {
  .l-hum {
    /*PCのみ*/
    height: 90px;
    width: 100px;
  }
}
.l-hum__line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 52.7777777778%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.l-hum__line:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) translateX(8px);
          transform: translate(-50%, -50%) translateX(8px);
}
.l-hum__line:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) translateX(-8px);
          transform: translate(-50%, -50%) translateX(-8px);
}
.l-hum__line img {
  height: 100%;
  width: auto;
}
.l-hum.is-active .l-hum__line:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.l-hum.is-active .l-hum__line:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*ハンバーガーメニュー ボタン*/
.l-humnav {
  display: none;
  z-index: 999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 9.8630136986vw;
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in, display 0.2s ease-in 1s;
  transition: opacity 0.2s ease-in, display 0.2s ease-in 1s;
}
@media print, screen and (min-width:768px) {
  .l-humnav {
    /*PCのみ*/
    padding-top: calc(68px + 5vh);
  }
}
.l-humnav__wrapper {
  opacity: 0;
}
@media print, screen and (min-width:768px) {
  .l-humnav__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.l-humnav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 60.2739726027vw;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media print, screen and (min-width:768px) {
  .l-humnav__inner {
    max-width: 205px;
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .l-humnav__inner-right {
    display: contents;
  }
}
@media print, screen and (min-width:768px) {
  .l-humnav__inner-right {
    width: 50%;
  }
}
.l-humnav__inner-left {
  overflow: hidden;
  position: relative;
}
@media print, screen and (min-width:768px) {
  .l-humnav__inner-left {
    width: 50%;
  }
}
.l-humnav__logo {
  margin: 0 auto 17px;
  width: 31.5068493151vw;
  max-width: 200px;
}
@media print, screen and (min-width:768px) {
  .l-humnav__logo {
    margin-bottom: 2em;
    width: min(183px, 17.5961538462vw);
    max-width: unset;
  }
}
.l-humnav__logo a {
  display: block;
}
.l-humnav__logo a svg {
  width: 100%;
  height: auto;
}
.l-humnav__logo a svg g path {
  fill: #000 !important;
}
.l-humnav__copy {
  margin-bottom: 2em;
  font-size: 3.2876712329vw;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width:768px) {
  .l-humnav__copy {
    width: 92%;
    margin-left: 8%;
    text-align: left;
    font-size: min(20px, 1.9230769231vw);
  }
}
.l-humnav__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 0.8em;
  width: 100%;
  border-bottom: 1px solid #434343;
}
.l-humnav__search-input {
  background-color: transparent;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: calc(100% - 42px);
}
.l-humnav__search-input::-webkit-input-placeholder {
  color: #434343;
}
.l-humnav__search-input::-moz-placeholder {
  color: #434343;
}
.l-humnav__search-input:-ms-input-placeholder {
  color: #434343;
}
.l-humnav__search-input::-ms-input-placeholder {
  color: #434343;
}
.l-humnav__search-input::placeholder {
  color: #434343;
}
.l-humnav__search-submit {
  cursor: pointer;
  background-color: transparent;
  width: 42px;
  text-align: right;
}
.l-humnav__search-submit img {
  width: 22px;
}
.l-humnav__list {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-humnav__list-item {
  width: 90%;
}
.l-humnav__list-item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 5.4794520548vw;
  font-weight: 700;
  padding-right: 1.5em;
  padding: 0.2em 1.5em 0.2em 0;
}
@media print, screen and (min-width:768px) {
  .l-humnav__list-item a {
    font-size: min(20px, 1.9230769231vw);
  }
}
.l-humnav__list-item a::after {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 7px;
  margin-left: 0.6em;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
@media print, screen and (min-width:768px) {
  .l-humnav__list-item a::after {
    width: 3.2px;
    height: 3.2px;
    margin-left: 0.2em;
  }
}
.l-humnav-sub__list {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  display: block;
  font-size: 3.2876712329vw;
  font-weight: 300;
  line-height: 1.6666666667;
  margin-top: 0.5em;
  margin-bottom: 1.2em;
}
@media print, screen and (min-width:768px) {
  .l-humnav-sub__list {
    margin-top: 1em;
    font-size: min(13px, 1.25vw);
  }
}
.l-humnav-sub__list-item a {
  display: block;
}
.l-humnav__link {
  width: 100%;
}
.l-humnav__link a {
  font-weight: 500;
  font-size: 5.7534246575vw;
  padding-top: 0.65em;
  padding-bottom: 0.65em;
  padding-left: 1.4em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
@media print, screen and (min-width:768px) {
  .l-humnav__link a {
    font-size: min(20px, 1.9230769231vw);
  }
}
.l-humnav.is-active {
  opacity: 1;
  display: block;
  z-index: 999;
  -webkit-transition: opacity 0.2s ease-in, display 0.2s ease-in;
  transition: opacity 0.2s ease-in, display 0.2s ease-in;
}
.l-humnav.is-active .l-humnav__wrapper {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.p-humnav-popular {
  position: relative;
  padding-top: 50px;
  padding-bottom: 68px;
}
.p-humnav-popular__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width:768px) {
  .p-humnav-popular__inner {
    width: 92%;
    margin-left: 8%;
    margin-right: 0;
  }
}
.p-humnav-popular-slide {
  margin-top: 8.2191780822vw;
  width: 100%;
  /* 最初は非表示 */
  /* Swiperが初期化されたら表示 */
}
@media print, screen and (min-width:768px) {
  .p-humnav-popular-slide {
    margin-top: min(30px, 2.8846153846vw);
  }
}
.p-humnav-popular-slide.swiper-container {
  visibility: hidden;
  overflow: hidden;
}
.p-humnav-popular-slide.swiper-initialized {
  visibility: visible;
  overflow: visible;
}
.p-humnav-popular-slide__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-humnav-popular-slide__inner {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #fff;
  -webkit-filter: drop-shadow(2px 3px 0px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(2px 3px 0px rgba(0, 0, 0, 0.16));
}
@media print, screen and (min-width:768px) {
  .p-humnav-popular-slide__inner {
    width: 100%;
    height: 100%;
  }
}
.p-humnav-popular-slide__inner img {
  width: 100%;
}
.p-humnav-popular-slide .swiper-button-prev,
.p-humnav-popular-slide .swiper-button-next {
  text-indent: -9999px;
  width: 30px;
  height: 62px;
  background: #f7f7f7;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  .p-humnav-popular-slide .swiper-button-prev,
  .p-humnav-popular-slide .swiper-button-next {
    top: 34.2465753425vw;
  }
}
.p-humnav-popular-slide .swiper-button-prev.swiper-button-disabled,
.p-humnav-popular-slide .swiper-button-next.swiper-button-disabled {
  visibility: hidden;
}
.p-humnav-popular-slide .swiper-button-prev {
  border-radius: 10px 0px 0px 10px;
}
.p-humnav-popular-slide .swiper-button-prev::before {
  content: "";
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.p-humnav-popular-slide .swiper-button-next {
  border-radius: 0px 10px 10px 0px;
}
.p-humnav-popular-slide .swiper-button-next::before {
  content: "";
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: translateX(25%) rotate(45deg);
          transform: translateX(25%) rotate(45deg);
}
.p-humnav-popular-slide.swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}
.p-humnav-popular-slide.swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
}
.p-humnav-popular-slide .swiper-slide {
  direction: ltr;
}

/*
 * # 	SNS
 */
.l-sns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l-sns__list {
  padding: 1.5em 1em;
}
.l-sns--humnav {
  margin-right: -8px;
}
@media print, screen and (min-width:768px) {
  .l-sns--footer .twitter {
    /*PCのみ*/
    width: 29px;
  }
}
@media print, screen and (min-width:768px) {
  .l-sns--footer .facebook {
    /*PCのみ*/
    width: 15px;
  }
}
.l-sns--footer .instagram {
  width: 24px;
}

.l-fix-instagram {
  padding: 25px;
  display: block;
  z-index: 900;
  position: fixed;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.05s;
  transition: all 0.05s;
}

.l-main {
  position: relative;
  z-index: 1;
}

.p-map {
  position: relative;
}
.p-map__map img {
  width: 100%;
}
.p-map__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:767px) {
  .p-map .wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator {
    display: none;
  }
}
.p-map .wpgmza_gallery_placeholder .wpgmza-gallery {
  pointer-events: none;
}
.p-map__title {
  position: absolute;
  top: 21px;
  left: 8.2191780822vw;
  /*行ごとに入れたspanタグ*/
}
@media only screen and (max-width:767px) {
  .p-map__title {
    line-height: 2;
    font-size: 4.9315068493vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-map__title {
    top: min(58px, 5.5769230769vw);
  }
}
@media print, screen and (min-width:1280px) {
  .p-map__title {
    left: 6.219178vw;
  }
}
.p-map__title .row {
  padding: 0.1em 1rem;
  white-space: nowrap;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
}
@media print, screen and (min-width:768px) {
  .p-map__title .row {
    padding: 0em 1.2rem;
  }
}
.p-map__link {
  position: absolute;
  right: 8.2191780822vw;
}
@media only screen and (max-width:767px) {
  .p-map__link {
    bottom: 7.1232876712vw;
    left: auto;
  }
}
@media print, screen and (min-width:768px) {
  .p-map__link {
    top: min(58px, 5.5769230769vw);
  }
}
@media print, screen and (min-width:1280px) {
  .p-map__link {
    right: 6.219178vw;
  }
}
.p-map__link a {
  background: #fff;
  -webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.16));
  border: none;
  padding: 1em 2em 1em 1.1em;
}
@media only screen and (max-width:767px) {
  .p-map__link a {
    font-size: 3.8356164384vw;
  }
}

.p-map .gm-style-iw-chr {
  position: absolute;
  right: 0px;
  top: 0;
}
.p-map .gm-style-iw-chr button {
  width: 35px !important;
  height: 35px !important;
}
.p-map .gm-style-iw-chr button span {
  width: 16px !important;
  height: 16px !important;
  margin: 10px !important;
}
.p-map .gm-style-iw-d {
  max-height: 300px !important;
}
.p-map .wpgmza_gallery_placeholder {
  width: 85px;
  height: auto;
  margin: 10px auto 8px;
  overflow: visible;
}
.p-map .wpgmza_gallery_placeholder .wpgmza-gallery {
  overflow: visible;
}
.p-map .wpgmza_gallery_placeholder .wpgmza-gallery-item {
  padding: 5px;
  overflow: visible;
}
.p-map .wpgmza_gallery_placeholder .wpgmza-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-filter: drop-shadow(2px 3px 0px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(2px 3px 0px rgba(0, 0, 0, 0.16));
}
.p-map .wpgmza_infowindow_title {
  font-size: 10px;
  font-weight: 500;
  text-align: left;
}
.p-map .wpgmza_infowindow_description {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.p-map .wpgmza_infowindow_description h1,
.p-map .wpgmza_infowindow_description h2,
.p-map .wpgmza_infowindow_description h3,
.p-map .wpgmza_infowindow_description p,
.p-map .wpgmza_infowindow_description span {
  display: inline-block;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.p-map .wpgmza_infowindow_description::before {
  content: "店長";
  display: inline-block;
  margin-right: 0.8em;
  font-size: 10px;
  font-weight: normal;
}
.p-map .wpgmza_infowindow_link {
  margin-top: 0.5em;
  margin-bottom: 0.3em;
  background-color: #ffd700;
  color: #fff;
  padding: 0.1em 0.3em;
  font-size: 14px;
  font-weight: 600;
}
.p-map .wpgmza_gd {
  display: block;
  font-size: 0;
}
.p-map .wpgmza_gd::before {
  content: "行き方を調べる";
  text-indent: 0;
  font-size: 10.5px;
}

.p-home-jobs {
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
  padding-top: 12.3287671233vw;
  padding-bottom: 36.4383561644vw;
}
@media print, screen and (min-width:768px) {
  .p-home-jobs {
    padding-top: 50px;
    padding-bottom: 68px;
  }
}
@media print, screen and (min-width:768px) {
  .p-home-jobs__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width:767px) {
  .p-home-jobs__link {
    position: absolute;
    bottom: 13.1506849315vw;
    left: 50%;
    right: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 16.4383561644vw);
    margin: auto;
  }
}
@media only screen and (max-width:767px) and (min-width:1280px) {
  .p-home-jobs__link {
    width: calc(100% - 200px);
    max-width: 1472px;
  }
}

.p-home-jobs-slide {
  margin-top: 8.2191780822vw;
  /* 最初は非表示 */
  /* Swiperが初期化されたら表示 */
}
@media print, screen and (min-width:768px) {
  .p-home-jobs-slide {
    margin-top: min(40px, 3.8461538462vw);
  }
}
.p-home-jobs-slide.swiper-container {
  visibility: hidden;
  overflow: hidden;
}
.p-home-jobs-slide.swiper-initialized {
  visibility: visible;
  overflow: visible;
}
.p-home-jobs-slide__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (min-width:768px) {
  .p-home-jobs-slide__wrapper {
    display: contents;
  }
}
.p-home-jobs-slide__inner {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #fff;
  -webkit-filter: drop-shadow(2px 3px 0px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(2px 3px 0px rgba(0, 0, 0, 0.16));
}
@media print, screen and (min-width:768px) {
  .p-home-jobs-slide__inner {
    width: 100%;
    height: 100%;
  }
}
.p-home-jobs-slide__inner img {
  width: 100%;
}
.p-home-jobs-slide .swiper-button-prev,
.p-home-jobs-slide .swiper-button-next {
  text-indent: -9999px;
  width: 30px;
  height: 62px;
  background: #f7f7f7;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  .p-home-jobs-slide .swiper-button-prev,
  .p-home-jobs-slide .swiper-button-next {
    top: 80vw;
  }
}
.p-home-jobs-slide .swiper-button-prev.swiper-button-disabled,
.p-home-jobs-slide .swiper-button-next.swiper-button-disabled {
  visibility: hidden;
}
.p-home-jobs-slide .swiper-button-prev {
  left: 0;
  border-radius: 0px 10px 10px 0px;
}
.p-home-jobs-slide .swiper-button-prev::before {
  content: "";
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: translateX(25%) rotate(45deg);
          transform: translateX(25%) rotate(45deg);
}
.p-home-jobs-slide .swiper-button-next {
  right: 0;
  border-radius: 10px 0px 0px 10px;
}
.p-home-jobs-slide .swiper-button-next::before {
  content: "";
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}

.p-cv {
  position: relative;
  padding-top: 27.397260274vw;
  padding-bottom: 24.6575342466vw;
  background: url(../../dist/img/common/cv_bg01_sp.jpg) no-repeat center center/cover;
  color: #fff;
}
@media print, screen and (min-width:768px) {
  .p-cv {
    padding-top: 45px;
    padding-bottom: 62px;
    background: url(../../dist/img/common/cv_bg01.jpg) no-repeat center center/cover;
  }
}
.p-cv__title {
  margin-bottom: 2.5em;
  font-size: 4.3835616438vw;
  font-weight: bold;
  line-height: 1.5;
}
@media print, screen and (min-width:768px) {
  .p-cv__title {
    margin-bottom: 1.2em;
    font-size: min(16px, 1.5384615385vw);
  }
}
@media print, screen and (min-width:768px) {
  .p-cv__link {
    width: min(222px, 21.3461538462vw);
  }
}
.p-cv__link a {
  border-color: #fff;
  font-size: 6.0273972603vw;
  padding-top: 0.65em;
  padding-bottom: 0.65em;
}
@media print, screen and (min-width:768px) {
  .p-cv__link a {
    font-size: min(22px, 2.1153846154vw);
    padding-left: 1.5em;
  }
}
.p-cv__link a::after {
  border-color: #fff;
}
.p-cv__link a .text {
  color: #fff;
}
.p-cv__link a:hover {
  opacity: 1;
  background-color: #fff;
}
.p-cv__link a:hover .text {
  color: #000;
}
.p-cv__link a:hover::after {
  border-color: #000;
}

.l-footer {
  position: relative;
  padding: 13.698630137vw 0 8.2191780822vw;
}
@media print, screen and (min-width:768px) {
  .l-footer {
    padding: 55px 0 54px;
  }
}
.l-footer__logo {
  margin: 0 auto 10.9589041096vw;
  width: 52.602739726vw;
}
@media print, screen and (min-width:768px) {
  .l-footer__logo {
    margin-bottom: 2em;
    width: min(185px, 17.7884615385vw);
  }
}
.l-footer__logo a {
  display: block;
}
.l-footer__logo a svg {
  width: 100%;
  height: auto;
}
.l-footer__logo a svg g path {
  fill: #000 !important;
}
.l-footer-sub__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.8356164384vw;
  font-weight: 300;
  line-height: 1;
  margin-top: 1.2em;
}
@media print, screen and (min-width:768px) {
  .l-footer-sub__list {
    margin-top: 1em;
    font-size: min(13px, 1.25vw);
  }
}
.l-footer-sub__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer-sub__list-item::after {
  content: "";
  width: 1px;
  height: 1em;
  display: block;
  background-color: #000;
  margin: auto 1em;
}
.l-footer-sub__list-item:last-child::after {
  display: none;
}
.l-footer-sub__list-item a {
  display: block;
}
.l-footer__copyright {
  margin-top: 4em;
  font-size: 1.1rem;
  color: #9f9f9f;
}
.p-main-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 0.3em 4.5em;
}
@media only screen and (max-width:767px) {
  .p-main-nav {
    padding: 0;
  }
}
.p-main-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 1;
      flex-shrink: 1; /* ← 縮んでもOKに */
  min-width: 0; /* はみ出し防止 */
  overflow: hidden; /* オーバーフロー防止（必要に応じて） */
}
.p-main-nav__list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-negative: 1;
      flex-shrink: 1; /* ← 縮んでもOKに */
  min-width: 4.2em; /* はみ出し防止 */
  overflow: hidden; /* オーバーフロー防止（必要に応じて） */
  font-size: min(17px, 1.6346153846vw);
  font-weight: 700;
  padding-right: 1.5em;
}
@media only screen and (max-width:767px) {
  .p-main-nav__list-item a {
    font-size: 4.6575342466vw;
    padding-right: 1.3em;
  }
}
.p-main-nav__list-item a::after {
  content: "";
  display: block;
  margin: auto;
  width: 3.2px;
  height: 3.2px;
  margin-left: 0.2em;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
@media only screen and (max-width:767px) {
  .p-main-nav__list-item a::after {
    width: 3.5px;
    height: 3.5px;
    margin-left: 0.6em;
  }
}
.p-main-nav__list-item:last-child a {
  padding-right: 0.6em;
}
.p-main-nav__search-btn {
  cursor: pointer;
  background-color: transparent;
  width: 42px;
  height: 42px;
}
.p-main-nav__search-btn .icon-close {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-main-nav__search-btn .is-hidden {
  display: none;
}
.p-main-nav__search-form-box {
  right: calc(4.5em + 42px);
  width: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* ← 縮まないように固定 */
  overflow: hidden;
  padding-left: 0;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-main-nav__search-form-box.is-active {
  width: 240px;
  padding-left: 1.5em;
  right: calc(4.5em + 42px);
}

.p-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid #434343;
}
.p-search-form__input {
  background-color: transparent;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: calc(100% - 42px);
  border-bottom: #434343 solid 1px;
}
.p-search-form__input::-webkit-input-placeholder {
  color: #434343;
}
.p-search-form__input::-moz-placeholder {
  color: #434343;
}
.p-search-form__input:-ms-input-placeholder {
  color: #434343;
}
.p-search-form__input::-ms-input-placeholder {
  color: #434343;
}
.p-search-form__input::placeholder {
  color: #434343;
}
.p-search-form__submit {
  cursor: pointer;
  background-color: transparent;
  width: 42px;
  height: 42px;
}

.c-breadcrumb {
  font-size: 3.2876712329vw;
  font-weight: 500;
  line-height: 1.4166666667;
  color: #767676;
}
@media print, screen and (min-width:768px) {
  .c-breadcrumb {
    font-size: clamp(10px, 1.0576923077vw, 11px);
  }
}
.c-breadcrumb ol {
  text-align: left;
  list-style: none;
}
.c-breadcrumb ol li {
  display: inline;
  margin-right: 0.25em;
}
.c-breadcrumb ol li::after {
  display: inline;
  content: ">";
  margin-left: 0.25em;
}
.c-breadcrumb ol li:last-child::after {
  content: "";
}
.c-breadcrumb ol a {
  color: inherit;
}

/* hide reCAPTCHA v3 badge */
.grecaptcha-badge {
  visibility: hidden;
}

/*
 * モーダルウィンドウ
 */
.p-modal {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 10000;
  display: none;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  /*クリックアニメーション*/
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  /*クリックしたらクラスを追加*/
}
.p-modal.is-show {
  opacity: 1;
}
.p-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh + 1px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.p-modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  width: calc(100% - 160px);
  max-width: 1037px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .p-modal__inner {
    width: 100%;
  }
}
.p-modal__inner::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.p-modal__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-modal__player iframe,
.p-modal__player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-modal__player iframe {
  border: none;
}
.p-modal__close {
  width: 29px;
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: -44px;
  right: -52px;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .p-modal__close {
    top: -50px;
    right: 15px;
  }
}
.p-modal__close-icon {
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  display: block;
}
.p-modal__close-icon::before, .p-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #fff;
}
.p-modal__close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-modal__close-icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-page {
  position: relative;
  padding-top: 26.301369863vw;
  padding-bottom: 19.1780821918vw;
}
@media print, screen and (min-width:768px) {
  .p-page {
    padding-top: 125px;
    padding-bottom: 96px;
  }
}
.p-page__title {
  margin-top: 0.2em;
}
@media print, screen and (min-width:768px) {
  .p-page__title {
    margin-top: 0.5em;
  }
}
@media only screen and (max-width:767px) {
  .p-page__link {
    position: absolute;
    bottom: 13.1506849315vw;
    left: 50%;
    right: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 16.4383561644vw);
    margin: auto;
  }
}
@media only screen and (max-width:767px) and (min-width:1280px) {
  .p-page__link {
    width: calc(100% - 200px);
    max-width: 1472px;
  }
}
@media print, screen and (min-width:768px) {
  .p-page__link {
    margin: 4em auto 0.5em;
    width: min(286px, 27.5vw);
  }
}
@media print, screen and (min-width:768px) {
  .p-page__link a {
    font-size: min(16px, 1.5384615385vw);
    padding-left: 1.5em;
  }
}
.p-page__wrapper {
  margin-top: 8.2191780822vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9.0410958904vw;
}
@media print, screen and (min-width:768px) {
  .p-page__wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: min(20px, 1.9230769231vw);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.953125vw 1fr 1.953125vw 1fr;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3.28125vw;
    -webkit-column-gap: 1.953125vw;
       -moz-column-gap: 1.953125vw;
            column-gap: 1.953125vw;
  }
}
@media print, screen and (min-width:1280px) {
  .p-page__wrapper {
    -ms-grid-columns: 1fr 1.5625vw 1fr 1.5625vw 1fr 1.5625vw 1fr;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 3.125vw;
    -webkit-column-gap: 1.5625vw;
       -moz-column-gap: 1.5625vw;
            column-gap: 1.5625vw;
  }
}
@media only screen and (max-width:767px) {
  .p-page--archive {
    padding-top: 6.5753424658vw;
    padding-bottom: 13.1506849315vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-page--archive {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width:767px) {
  .p-page .p-page__wrapper {
    margin-top: 11.5068493151vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-page .p-page__wrapper {
    margin-top: min(70px, 6.7307692308vw);
  }
}
@media print, screen and (min-width:768px) {
  .p-page .p-page__title {
    margin-top: 0.1em;
  }
}
@media print, screen and (min-width:768px) {
  .p-page .p-archive-pager {
    margin-top: min(85px, 8.1730769231vw);
  }
}
.p-page--contact {
  padding-bottom: 0;
}
.p-page--about {
  padding-bottom: 8.2191780822vw;
}
@media print, screen and (min-width:768px) {
  .p-page--about {
    padding-bottom: 85px;
  }
}

.p-archive-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10.9589041096vw;
}
@media print, screen and (min-width:768px) {
  .p-archive-pager {
    margin-top: min(110px, 10.5769230769vw);
  }
}
.p-archive-pager .page-numbers {
  width: 32px;
  height: 32px;
  margin: 0 4px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  color: #767676;
  border-bottom: 1px solid transparent;
}
.p-archive-pager .page-numbers:hover, .p-archive-pager .page-numbers.current {
  opacity: 1;
  color: #65e8c5;
  border-color: #707070;
}
.p-archive-pager .page-numbers.prev, .p-archive-pager .page-numbers.next {
  border: none;
  position: relative;
  width: auto;
}
.p-archive-pager .page-numbers.prev:hover, .p-archive-pager .page-numbers.next:hover {
  opacity: 1;
  background-color: transparent;
}
.p-archive-pager .page-numbers.prev {
  margin-right: 15px;
}
.p-archive-pager .page-numbers.next {
  margin-left: 15px;
}