@charset "UTF-8";

/**************************************************************
　ページ内共通スタイル
***************************************************************/
/* アイコンフォント */
@font-face {
  font-family: recop-iconfonts;
  src:
    url("/princi/css/option/font/recop-iconfont.eot") format("eot"),
    url("/princi/css/option/font/recop-iconfont.woff") format("woff"),
    url("/princi/css/option/font/recop-iconfont.ttf") format("truetype");
  font-display: swap;
}

:root {
  --color-primary: #98694C;
  --color-secondary: #626161;
  --color-bg: #EDEBE9;
  --color-bg02: #F5F0EA;
  --color-text: #231815;
  --color-brown: #763a0b;
  --font-english: "Futura", "Hind", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
#header {
  font-size: 16px;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: .02em;
}

a {
  color: inherit;
  transition: all 0.3s;
}

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

p {
  text-align: justify;
}

*:focus:not(:focus-visible):not(a[href]):not(area[href]):not(button):not(input):not(select):not(textarea):not(summary):not(iframe):not(audio[controls]):not(video[controls]) {
  outline: none;
}

[tabindex="-1"]:focus,
div[tabindex]:focus,
:is(section, article, div)[id][tabindex]:focus,
:is(h1, h2, h3, h4, h5, h6)[tabindex]:focus {
  outline: none;
}

button {
  border: none;
  background-color: transparent;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
}

/* ホバーアクション */
@media (any-hover: hover) {

  a:hover,
  button:hover {
    opacity: .7;
    text-decoration: none;
  }
}

/* iPhoneフリーワード検索角丸対策 */
input {
  -webkit-appearance: none;
  border-radius: 0;
}

/* 初期設定リセット */
div#container,
#header .content,
#main .content {
  width: 100%;
  max-width: none;
}

#headContent {
  margin-bottom: 0;
}

#main .content {
  /* 横スクロール禁止 */
  overflow: hidden;
}

a:hover {
  text-decoration: none;
}

/* ユニバーサルデザイン */
.accordionBtn::after {
  content: "クリック・タップで開きます";
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

.accordionBtn.active::after {
  content: "クリック・タップで閉じます";
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* 共通クラス */
.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }
}

/* 共通コンテンツ幅 */
.cnt {
  padding: 0 10px;
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .cnt {
    padding: 0 20px;
  }
}

/* 共通見出し（h2） */
.common-title {
  color: var(--color-primary);
  text-align: center;
}

.common-title .en {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-english);
}

.common-title h2 {
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .common-title .en {
    font-size: 34px;
  }

  .common-title h2 {
    font-size: 16px;
  }
}

/* 共通見出し（h3） */
.common-subtitle {
  text-align: center;
}

.common-subtitle h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.common-subtitle .en {
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-english);
  color: var(--color-primary);
}

@media screen and (max-width: 767px) {
  .common-subtitle h3 {
    font-size: 26px;
    margin-bottom: 0;
  }
}

/* 共通ボタン */
.common-btn {
  background-color: var(--color-primary);
  border-radius: 6px;
  height: 70px;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  max-width: 400px;
  position: relative;
  padding: 0 40px;
  border: 1px solid var(--color-primary);
}

.common-btn::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/princi/img/arrow_white.svg) no-repeat center / contain;
  width: 11px;
  aspect-ratio: 11/14;
  right: 30px;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .common-btn {
    padding: 0 32px;
    font-size: 16px;
    height: 60px;
  }

  .common-btn::after {
    right: 20px;
  }
}

/* 製造フォロー・サポート ボタン */
.common-btn.other-btn {
  background-color: #EBE4DC;
  color: #602E06 !important;
  margin: 24px auto 0;
  max-width: 300px;
  border-color: transparent;
}

.common-btn.other-btn::after {
  background: url(/princi/img/arrow_brown.svg) no-repeat center / contain;
}

/* ボタンホバーアクション */
@media (any-hover: hover) {
  .common-btn:not(.accordion-btn):hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color-primary) !important;
  }

  .common-btn:not(.accordion-btn):hover::after {
    background: url(/princi/img/arrow_primary.svg) no-repeat center / contain;
  }

  .common-btn.other-btn:hover {
    border-color: #602E06 !important;
  }
}

/* 各セクションの応募ボタン */
.common-btn.section-btn {
  margin: 50px auto 0;
}

@media screen and (max-width: 767px) {
  .common-btn.section-btn {
    margin: 30px auto 0;
  }
}

/* 各セクションの説明文 */
.section-desc {
  text-align: center;
  margin: 30px auto 48px;
}

@media screen and (max-width: 767px) {
  .section-desc {
    text-align: left;
    margin: 20px auto 30px;
  }
}

/* セクション間セパレート画像 */
.separator-img img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .separator-img img {
    height: 160px;
  }
}

/**************************************************************
	header
***************************************************************/
#original-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
}

#original-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 901;
  width: 100%;
  height: 6px;
  box-shadow: 0 3px 6px rgba(178, 176, 174, 0.2);
  pointer-events: none;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-wrap img.logo {
  width: 120px !important;
}

@media screen and (max-width: 1100px) {
  #original-header {
    padding: 0 12px;
    height: 64px;
  }

  .header-wrap img.logo {
    width: 90px !important;
  }
}

/**************************************************************
	navigation
***************************************************************/
/* ハンバーガーボタン */
.open-button {
  position: fixed;
  top: 18px;
  right: 40px;
  display: block;
  width: 48px;
  height: 40px;
  z-index: 1000;
}

.open-button::before {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-primary);
  font-family: var(--font-english);
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  transition: color .3s
}

.open-button span {
  width: 41px;
  height: 2px;
  background-color: var(--color-primary);
  display: block;
  position: absolute;
  left: 3px;
  transition: background-color .3s, transform .25s ease-in-out;
}

.open-button span:nth-child(1) {
  top: 3px;
}

.open-button span:nth-child(2) {
  top: 12px;
}

/* 開いているとき */
.open-button.active {
  transform: scale(1.2);
}

.open-button.active::before {
  content: "CLOSE";
}

.open-button.active span:nth-child(1) {
  transform: rotate(-15deg);
  width: 48px;
  top: 10px;
  left: 0;
}

.open-button.active span:nth-child(2) {
  transform: rotate(15deg);
  width: 48px;
  top: 10px;
  left: 0;
}

/* ホバーアクション */
@media (any-hover: hover) {
  .open-button:hover {
    opacity: 1;
  }

  .open-button:hover::before {
    color: var(--color-text);
  }

  .open-button:hover span {
    background-color: var(--color-text);
  }
}

/* ハンバーガーメニュー内 */
.navigation {
  background-color: var(--color-bg);
  display: block;
  width: 100%;
  height: calc(100% - 70px);
  z-index: 800;
  position: fixed;
  top: 70px;
  right: 0;
  padding: 0 40px 60px 40px;
  /* 閉じるときはopacityアニメーション後にvisibilityを切り替える */
  transition: opacity .5s ease-out, visibility 0s .5s;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 0;
  visibility: hidden;
}

.navigation.is-open {
  opacity: 1;
  visibility: visible;
  /* 開くときはvisibilityを即時反映 */
  transition: opacity 0.5s;
}

.nav-wrap {
  display: flex;
  gap: clamp(30px, 5.8vw, 80px);
  align-items: flex-start;
}

.nav-wrap>img {
  width: calc(100% - 700px) !important;
  max-width: 484px;
  transform: translateY(20px);
  transition: .5s ease-in-out;
  opacity: 0
}

#navigation.is-open .nav-wrap>img {
  transform: translateY(0px);
  opacity: 1;
}

.nav-list {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.nav-list li {
  width: 100%;
  margin: 0 auto;
  transform: translateY(20px);
  transition: .5s ease-in-out;
  opacity: 0
}

#navigation.is-open .nav-list li {
  transform: translateY(0px);
  opacity: 1;
}

.nav-list li a {
  position: relative;
  color: var(--color-text) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 18px;
  padding-right: 40px;
  width: fit-content;
  line-height: 1.3;
  transition: transform .25s ease-in-out;
}

.nav-list li a::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/princi/img/arrow_primary_bold.svg) no-repeat center / contain;
  width: 11px;
  aspect-ratio: 11 / 14;
  right: 0;
  top: calc(50% + 2px);
  transform: translateY(-50%);
}

/* ホバーアクション */
@media (any-hover: hover) {
  .nav-list li a:hover {
    transform: translateX(10px);
    opacity: 1;
  }
}

/* アウトライン修正 */
.nav-list li a:focus-visible {
  outline: 2px solid #000;
}

.nav-list li a span.en {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-english);
}

/* 1100～1360pxのみ改行 */
.sp-1360 {
  display: none;
}

@media screen and (max-width: 1360px) {
  .sp-1360 {
    display: block;
  }
}

@media screen and (max-width: 1100px) {

  /* ハンバーガーボタン */
  .open-button {
    top: 14px;
    right: 12px;
  }

  .open-button.active {
    transform: scale(1);
  }

  /* ハンバーガーメニュー内 */
  .navigation {
    height: calc(100% - 64px);
    top: 64px;
    padding: 0;
  }

  .nav-wrap {
    gap: 0;
  }

  .nav-wrap>img {
    display: none;
  }

  .nav-list {
    padding-top: 0;
    gap: 0;
    width: 100%;
  }

  .nav-list li {
    border-bottom: 1px solid #D3D3D3;
  }

  .nav-list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 15px;
    padding: 14px 40px 14px 20px;
    width: 100%;
  }

  .nav-list li a::after {
    right: 20px;
  }

  .nav-list li a span.en {
    font-size: 24px;
  }

  .nav-list li a span {
    display: inline-block;
  }

  .sp-1360 {
    display: none;
  }
}

/**************************************************************
	KV
***************************************************************/
.kv {
  margin-top: 70px;
  position: relative;
  padding: 40px 30px 0 30px;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}

.kv h1 {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary);
}

.kv .cnt {
  max-width: 1300px;
}

@media screen and (max-width: 1100px) {
  .kv {
    margin-top: 64px;
  }
}

@media screen and (max-width: 767px) {

  .kv,
  .kv .cnt {
    padding: 0;
  }

  .kv h1 {
    text-align: left;
    padding: 0 20px;
  }
}

/* ------------ スライダー ------------ */
.kv-button {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  right: clamp(20px, 5.85vw, 80px);
  bottom: clamp(20px, 2.85vw, 40px);
}

/* 一時停止ボタン */
.splide-toggle {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  border-radius: 50%;
}

.splide-toggle::before,
.splide-toggle::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #fff;
  top: 9px;
  border-radius: 2px;
}

.splide-toggle::before {
  left: 11px;
}

.splide-toggle::after {
  right: 11px;
}

/* 停止中 */
.splide-toggle.paused::before {
  width: 12px;
  height: 12px;
  top: 9px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.splide-toggle.paused::after {
  content: none;
}

/* ドット */
.splide__pagination {
  position: relative;
  z-index: 2;
  gap: 10px;
}

.splide__pagination__page {
  width: 60px;
  height: 3px;
  background-color: #fff;
  display: block;
}

.splide__pagination__page.is-active {
  background-color: var(--color-primary);
}

.kv img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ノートPC用調整 */
@media screen and (min-width: 768px) {
  .kv img {
    max-height: calc(100dvh - 104px);
    object-position: 0 20%;
  }
}

/* キャッチコピー */
.kv-catch {
  position: absolute;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kv-catch p {
  background-color: rgba(255, 255, 255, 0.85);
  padding:
    clamp(8px, 1.14vw, 16px) clamp(12px, 2.14vw, 30px) clamp(8px, 1.14vw, 16px) clamp(12px, 1.42vw, 20px);
  font-size: clamp(26px, 2.85vw, 40px);
  color: var(--color-primary);
  width: fit-content;
  font-weight: 600;
}

.kv-catch p:first-child {
  padding-right: clamp(10px, 1.42vw, 20px);
}

/* KV下テキスト */
.kv-bottom-text {
  background-color: var(--color-bg);
}

.kv-bottom-text p {
  text-align: center;
  padding-top: 24px;
  line-height: 2.3;
}

@media screen and (max-width: 767px) {
  .kv-button {
    flex-direction: column-reverse;
    gap: 10px;
    right: 20px;
    bottom: 47px;
  }

  /* ドット */
  .splide__pagination {
    gap: 10px;
    flex-direction: column;
  }

  .splide__pagination__page {
    width: 3px;
    height: 60px;
  }

  .kv img {
    max-height: calc(100dvh - 100px);
    object-position: center;
  }

  /* キャッチコピー */
  .kv-catch {
    bottom: 51px;
    gap: 6px;
  }

  /* KV下テキスト */
  .kv-bottom-text p {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 30px;
    line-height: 1.8;
  }
}

/**************************************************************
  SEARCH
***************************************************************/
.search {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: var(--color-bg);
}

.search-wrap {
  background-color: #fff;
  padding: 60px 30px 80px;
}

.search-by-jobs {
  margin-top: 30px;
}

.search-by-jobs h3 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.jobs-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.jobs-list li {
  flex: 1;
  max-width: 360px;
}

@media screen and (max-width: 767px) {
  .search {
    padding-bottom: 40px;
    padding-top: 0;
  }

  .search-wrap {
    padding: 40px 20px;
  }

  .search-by-jobs h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .jobs-list {
    gap: 16px;
    flex-direction: column;
  }

  .jobs-list li {
    max-width: 400px;
    width: 100%;
  }

  /* 製造フォロー・サポート */
  .search-by-jobs a.other-btn {
    margin: 16px auto 0;
    max-width: 400px;
  }
}

/**************************************************************
  ABOUT
***************************************************************/
.about {
  padding: 80px 0 100px;
}

.about-wrap {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 60px);
  margin-top: 48px;
  justify-content: space-between;
}

.about-image {
  width: 50%;
}

.about-content {
  width: calc(50% - 60px);
  min-width: 370px;
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
}

.about-content p {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 40px 0;
  }

  .about-wrap {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .about-image {
    width: 100%;
  }

  .about-content {
    width: 100%;
    min-width: auto;
  }

  .about-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .about-content p {
    line-height: 1.8;
  }
}

/**************************************************************
　無限スライダー
***************************************************************/
.infinite-wrap {
  position: relative;
}

.infinite-slider .splide__list {
  gap: 24px;
}

/* 一時停止ボタン */
.infinite-toggle {
  bottom: -16px;
  right: calc(50% - 500px);
  transform: translateY(100%);
  position: absolute;
}

.infinite-slider .splide__slide {
  max-width: 264px;
}

@media screen and (max-width: 1020px) {
  .infinite-toggle {
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .infinite-slider .splide__list {
    gap: 16px;
  }

  /* 一時停止ボタン */
  .infinite-toggle {
    right: 20px;
  }

  .infinite-slider .splide__slide {
    max-width: 189px;
  }
}

/**************************************************************
  WORKS
***************************************************************/
.works {
  padding: 30px 0 80px 0;
  margin-top: 50px;
}

.works-wrap {
  background-color: var(--color-bg);
  padding: 20px 20px 70px;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: space-between;
  gap: clamp(20px, 3.5vw, 60px);
  max-width: 860px;
  margin: 80px auto 0;
}

.works-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  justify-items: center;
}

.works-card-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.works-card-image,
.works-card-text {
  margin-bottom: 30px;
}

.works-card .common-btn {
  align-self: end;
}

@media (max-width: 767px) {
  .works {
    padding: 16px 0 0 0;
  }

  .works .cnt {
    padding: 0;
  }

  .works .section-desc {
    text-align: center;
    padding: 0 20px;
  }

  .works-wrap {
    padding: 30px 0 40px 0;
  }

  .works-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px auto 0;
    padding: 0 20px;
  }

  .works-card {
    grid-template-rows: auto;
    grid-row: auto;
  }

  .works-card-title {
    font-size: 20px;
  }

  .works-card-image,
  .works-card-text {
    margin-bottom: 20px;
  }
}

/* 製造フォロー・サポート */
.works-card-other {
  background-color: #fff;
  display: flex;
  gap: clamp(20px, 4.4vw, 60px);
  align-items: center;
  padding: 48px;
  max-width: 860px;
  margin: 60px auto 0;
}

.works-card-other-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.works-card-other a.other-btn {
  min-width: 300px;
}

@media screen and (max-width: 767px) {
  .works-card-other {
    gap: 20px;
    flex-direction: column;
    padding: 40px 20px;
    margin: 30px 20px 0 20px;
  }

  .works-card-other-title {
    margin-bottom: 18px;
  }

  .works-card-other a.other-btn {
    margin: 0 auto;
    max-width: 400px;
  }

  .works-card-other a.other-btn {
    min-width: auto;
  }
}

/**************************************************************
　SHIFT
***************************************************************/
.shift {
  background-color: var(--color-bg);
  padding: 80px 0;
}

.shift-wrap {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 3.5vw, 48px);
}

/* コンテンツの中身 */
.shift-card {
  background-color: #fff;
  padding: 20px 20px 30px 20px;
  flex: 1;
}

.shift-card-title {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.shift-card-title span {
  display: block;
  color: #8D8D8D;
  font-family: var(--font-english);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.shift-card-image {
  width: 100%;
}

.shift-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--color-bg02);
  margin-top: 24px;
  padding: 20px;
}

.shift-time-label {
  background-color: #98694C;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  width: 64px;
  text-align: center;
}

.shift-time-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.shift-merit-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shift-merit-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-bg);
}

.shift-merit-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-primary);
  font-family: var(--font-english);
  font-weight: 700;
}

.shift-merit-label {
  font-size: 12px;
  line-height: 0.8;
}

.shift-merit-num {
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.shift-merit-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.shift-merit-title span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .shift {
    padding: 40px 0;
  }

  .shift-wrap {
    flex-direction: column;
    gap: 20px;
  }

  /* コンテンツの中身 */
  .shift-card {
    padding-bottom: 112px;
  }

  .shift-time {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 20px;
  }

  .shift-time-label {
    font-size: 15px;
    line-height: 25px;
    width: 57px;
  }

  .shift-time-text {
    font-size: 16px;
  }

  .shift-merit-title {
    font-size: 18px;
  }
}

/* ------------ アコーディオン ------------ */
/*
機能面CSS
*/
/* c-sr_only：スクリーンリーダーには届くが画面上には非表示 */
.c-sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* アコーディオン制御用のスタイル */
[data-accordion-dual-button] {
  --accordion-dual-button-gradation-display: block;
  position: relative;
}

[data-accordion-dual-button-detail] {
  height: var(--accordion-dual-button-default-height);
  overflow: hidden;
  position: relative;
  transition: height 0.3s;
  padding-bottom: 2px;
}

[data-accordion-dual-button-detail]::before {
  background: linear-gradient(180deg,
      rgb(255 255 255 / 0) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 50%,
      #fff 100%);
  content: "";
  width: 100%;
  height: 170px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: var(--accordion-dual-button-gradation-display);
}

/* OPEN */
.is-open [data-accordion-dual-button-detail]::before {
  content: none;
}

[data-accordion-dual-button-detail].animating {
  transition: height 0.6s ease;
}

[data-accordion-dual-button-trigger][aria-expanded="false"] {
  display: grid !important;
  visibility: visible !important;
}

.is-open [data-accordion-dual-button-trigger][aria-expanded="false"] {
  visibility: hidden !important;
}

[data-accordion-dual-button-trigger][aria-expanded="true"] {
  visibility: hidden !important;
}

.is-open [data-accordion-dual-button-trigger][aria-expanded="true"] {
  display: grid !important;
  visibility: visible !important;
}

/* SPのみアコーディオンの場合 */
@media only screen and (min-width: 768px) {

  .sponly-accordion [data-accordion-dual-button-trigger][aria-expanded="false"],
  .sponly-accordion [data-accordion-dual-button-trigger][aria-expanded="true"] {
    display: none !important;
  }

  .sponly-accordion [data-accordion-dual-button-detail] {
    height: auto !important;
    overflow: visible !important;
  }

  .sponly-accordion {
    --accordion-dual-button-default-height: auto !important;
  }

  .sponly-accordion [data-accordion-dual-button-detail]::before {
    content: none;
  }
}

/*
デザイン用CSS
*/
/* アコーディオンボタン */
.accordion-btn {
  background-color: #fff;
  color: var(--color-text) !important;
  border: 1px solid var(--color-text);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 100%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 2;
  max-width: 300px;
  height: 60px;
}

.accordion-btn::after {
  background: url(/princi/img/arrow_black.svg) no-repeat center / contain;
  width: 13px;
  right: 30px;
}

/* 閉じている時 */
.accordion-btn[aria-expanded="false"]::after {
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .accordion-btn {
    max-width: 200px;
    height: 50px;
  }
}

/**************************************************************
　SPIRIT
***************************************************************/
.spirit {
  padding-top: 80px;
  padding-bottom: 100px;
}

.spirit-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.spirit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(30px, 2.9vw, 40px);
}

.spirit-image {
  width: 50%;
  flex-shrink: 1;
}

.spirit-image img {
  width: 100%;
}

.spirit-content {
  width: calc(50% - 40px);
}

.spirit-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}

.spirit-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #A36F45;
  position: absolute;
  left: 20px;
  bottom: 0;
}

.spirit-title span {
  display: inline-block;
}

.spirit-text {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .spirit {
    padding-block: 40px;
  }

  .spirit-list {
    gap: 30px;
  }

  .spirit-item {
    flex-direction: column;
    gap: 20px;
  }

  .spirit-image,
  .spirit-content {
    width: 100%;
  }

  .spirit-title {
    font-size: 22px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .spirit-title::after {
    left: 0;
  }

  .spirit-text {
    padding-left: 0;
  }
}

/**************************************************************
　CAREER
***************************************************************/
.career {
  background-color: var(--color-bg);
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .career {
    padding: 40px 0;
  }
}

/* ------------ スキルアップ ------------ */
@media screen and (min-width: 768px) {
  .skill-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3.5vw, 50px);
    margin-top: 50px !important;
  }
}

.skill-list li {
  background-color: #fff;
  padding: 15px 20px 33px 20px;
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}

.skill-list-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.skill-list-title span {
  display: block;
  font-size: 18px;
}

.skill-list-image {
  margin-top: 12px;
}

.skill-list-image img {
  width: 100%;
}

.skill-list-text {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .splide.common-slider {
    visibility: visible;
  }

  .splide.common-slider .splide__track {
    overflow: visible;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {

  /* ------ ▼▼Splide（スキルマップ・メリット共通）ここから▼▼ ------ */
  .common-slider {
    padding: 0 10px;
    margin-top: 25px;
  }

  .common-slider .splide__track {
    overflow: visible;
  }

  /* 矢印（左右ボタン） */
  .common-slider .splide__arrow {
    background-color: rgb(163 111 69 / 0.7);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
  }

  .common-slider .splide__arrow::before {
    content: "";
    display: block;
    background: url(/princi/img/arrow_white.svg) no-repeat center / contain;
    width: 13px;
    aspect-ratio: 11 / 14;
  }

  /* 前へ */
  .common-slider .splide__arrow--prev {
    left: -10px;
  }

  .common-slider .splide__arrow--prev::before {
    transform: scale(-1, 1);
  }

  /* 次へ */
  .common-slider .splide__arrow--next {
    right: -10px;
  }

  .common-slider .splide__arrow svg {
    display: none;
  }

  .common-slider .splide__arrow:disabled {
    /* 最初と最後のスライド時、矢印ボタン非表示 */
    opacity: 0;
    pointer-events: none;
  }

  /* ------ ▲▲ Splide共通ここまで ▲▲ ------ */

  .skill-list li {
    padding: 24px 20px;
    display: block;
  }

  .skill-list-title {
    font-size: 20px;
  }

  .skill-list-title span {
    font-size: 16px;
  }

  .skill-list-image {
    margin-top: 20px;
  }

  .skill-list-text {
    margin-top: 20px;
  }
}

/* ------------ キャリアアップ ------------ */
.career-up {
  margin-top: 60px;
}

.career-list {
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.career-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(15% + 56px);
  width: 2px;
  background-color: #B2B0AE;
}

.career-list li {
  position: relative;
  display: flex;
  gap: 38px;
  padding: 40px 30px 40px 15%;
  background-color: #fff;
}

.career-list-label {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 112px;
  padding-top: 3px;
  height: 38px;
  color: #fff;
  font-size: 20px;
  font-family: var(--font-english);
  font-weight: 700;
  text-align: center;
}

.career-list-content h4 {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

/* 個別カラー */
.career-list li:nth-child(1) .career-list-label {
  background-color: #AC7950;
}

.career-list li:nth-child(2) .career-list-label {
  background-color: #A36F45;
}

.career-list li:nth-child(3) .career-list-label {
  background-color: #9F6435;
}

.career-list li:nth-child(4) .career-list-label {
  background-color: var(--color-brown);
}

.career-list li:nth-child(5) .career-list-label {
  background-color: #602E06;
}

@media screen and (max-width: 767px) {
  .career-list {
    gap: 20px;
  }

  .career-list::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .career-list li {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .career-list-label {
    width: 88px;
    height: 30px;
    font-size: 16px;
    margin: 0 auto;
  }

  .career-list-content h4 {
    margin-bottom: 16px;
    font-size: 20px;
    text-align: center;
  }

  .career-list-content h4 span {
    display: block;
    font-size: 18px;
  }
}

/**************************************************************
　comment
***************************************************************/
.comment {
  padding-top: 64px;
  padding-bottom: 80px;
}

.comment-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(30px, 4.4vw, 60px);
}

.comment-image {
  width: 50%;
  flex-shrink: 1;
}

.comment-image img {
  width: 100%;
}

.comment-content {
  width: calc(50% - clamp(30px, 2.9vw, 40px));
}

.comment-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.comment-title span {
  background-color: var(--color-brown);
  color: #fff;
  line-height: 50px;
  padding: 0 10px;
  width: fit-content;
  display: inline;
}

@media screen and (max-width: 1020px) {
  .comment-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .comment-title {
    font-size: 20px;
  }

  .comment-title span {
    line-height: 40px;
  }

  .comment-image,
  .comment-content {
    max-width: 500px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .comment {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .comment-image,
  .comment-content {
    max-width: none;
  }
}

/**************************************************************
　MERIT
***************************************************************/
.merit {
  background-color: var(--color-bg);
  padding: 80px 0;
}

@media screen and (min-width: 768px) {
  .merit-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3.5vw, 50px);
    margin-top: 50px !important;
  }
}

.merit-list li {
  background-color: #fff;
  padding: 40px 20px;
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 30px;
}

.merit-list-image img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.merit-list-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


@media screen and (max-width: 767px) {
  .merit {
    padding: 40px 0;
  }

  .merit .common-slider {
    padding: 0 20px;
  }

  /* 前へ */
  .merit .common-slider .splide__arrow--prev {
    left: 0;
  }

  /* 次へ */
  .merit .common-slider .splide__arrow--next {
    right: 0;
  }

  .merit-list li {
    padding: 30px 20px;
    gap: 20px;
  }

  .merit-list-image img {
    max-width: 140px;
  }

  .merit-list-title {
    font-size: 20px;
  }
}

/**************************************************************
　INTERVIEW
***************************************************************/
.interview {
  padding: 80px 0;
}

.interview-wrap {
  padding: 0 10px 90px 10px;
  max-width: 1020px;
  margin: 0 auto;
}

.interview-wrap:not(:first-of-type) {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .interview {
    padding: 40px 0;
  }

  .interview-wrap {
    padding: 0 0 80px 0;
  }

  .interview-wrap:not(:first-of-type) {
    margin-top: 30px;
  }
}

/* インタビューKV */
.interview-kv {
  position: relative;
}

.interview-catch {
  background-color: var(--color-brown);
  padding: 20px 24px;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: min(55%, 460px);
  font-weight: 600;
  line-height: 1.6;
}

.interview-title {
  font-size: 26px;
  padding-bottom: 20px;
  margin-bottom: 16px;
  position: relative;
}

.interview-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #A36F45;
  position: absolute;
  left: 0;
  bottom: 0;
}

.interview-title span {
  display: inline-block;
}

.interview-name {
  display: block;
  font-size: 20px;
}

.interview-text {
  margin: 30px 0 0;
}

@media screen and (max-width: 767px) {
  .interview-catch {
    position: static;
    max-width: 100%;
    padding: 24px 20px;
  }

  .interview-title {
    font-size: 22px;
  }

  .interview-name {
    font-size: 18px;
    line-height: 1;
  }

  .interview-text {
    margin: 24px 0 0;
    padding: 0 20px;
  }
}

/* インタビューコンテンツ中身 */
.interview-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}

.interview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3.5vw, 60px);
}

.interview-item:nth-child(even) {
  flex-direction: row-reverse;
}

.interview-item-image {
  width: 50%;
  flex-shrink: 1;
}

.interview-item-image img {
  width: 100%;
}

.interview-item-content {
  width: calc(50% - clamp(20px, 3.5vw, 60px));
}

.interview-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.5;
}

.interview-item-title span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .interview-wrap [data-accordion-dual-button-detail] {
    padding: 0 20px;
  }

  .interview-list {
    gap: 30px;
    margin-top: 30px;
  }

  .interview-item {
    flex-direction: column;
    gap: 24px;
  }

  .interview-item:nth-child(even) {
    flex-direction: column;
  }

  .interview-item-image,
  .interview-item-content {
    width: 100%;
  }

  .interview-item-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

/* ------------ ONE DAY ------------ */
.one-day {
  background-color: var(--color-bg);
  border-top: 2px solid #98694C;
  padding: 30px 20px 20px;
  margin-top: 60px;
}

.one-day-title-wrap {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.one-day-title-en {
  font-size: 26px;
  letter-spacing: .04em;
  font-family: var(--font-english);
  font-weight: 700;
}

.one-day-title {
  font-size: 18px;
  font-weight: 600;
}

.one-day-list-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(30px, 5.8vw, 80px);
  padding: 50px clamp(20px, 4.3vw, 60px);
  background-color: #fff;
}

.one-day-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.one-day-list::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 20px;
  left: 105px;
  /* 72px + 30px + 3px */
  width: 1px;
  background-color: #B2B0AE;
  z-index: -1;
}

.one-day-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 70px;
  position: relative;
  line-height: 1.6;
}

.one-day-time {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-english);
  text-align: center;
  position: relative;
}

.one-day-time::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  top: 13px;
  right: -30px;
  transform: translate(100%, 0);
}

.one-day-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--color-text);
  text-align: left;
}

@media screen and (max-width: 880px) {
  .one-day {
    padding: 20px;
    margin: 30px 0 0 0;
  }

  .one-day-title-wrap {
    margin-bottom: 20px;
  }

  .one-day-title-en {
    font-size: 24px;
  }

  .one-day-title {
    font-size: 16px;
  }

  .one-day-list-wrap {
    flex-direction: column;
    gap: 0;
    padding: 20px 15px 20px 30px;
  }

  .one-day-list {
    gap: 16px;
  }

  .one-day-list::after {
    top: 0;
    bottom: 0;
    left: 73px;
  }

  /* 前半 */
  .one-day-list:first-of-type:after {
    top: 10px;
  }

  /* 後半 */
  .one-day-list:last-of-type {
    padding-top: 16px;
  }

  .one-day-list:last-of-type:after {
    bottom: 15px;
  }

  .one-day-item {
    grid-template-columns: 55px 1fr;
    gap: 34px;
  }

  .one-day-time {
    font-size: 20px;
  }

  .one-day-time::after {
    top: 10px;
    right: -14px;
  }

  .one-day-text {
    font-size: 16px;
  }
}

/**************************************************************
　MESSAGE
***************************************************************/
.message {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.message-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
}

.message-title h2 {
  font-size: 32px;
  font-weight: 600;
}

.message-title span.en {
  font-size: 16px;
  line-height: 1;
  color: var(--color-primary);
  font-family: var(--font-english);
}

.interview-item--last .interview-item-content {
  width: 100%;
}

.interview-item--last .interview-item-title {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .message {
    padding: 40px 0;
  }

  .message-title h2 {
    font-size: 22px;
    line-height: 1.3;
  }
}

/**************************************************************
　FAQ
***************************************************************/
.faq {
  padding-top: 80px;
  padding-bottom: 60px;
}

.faq-list {
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--color-bg);
}

.faq-list dt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding: 30px 30px 20px 0;
  transition: all .3s;
  cursor: pointer;
}

.faq-list dt::before {
  content: 'Q.';
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-english);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

/* アコーディオンボタン */
.accordionBtn {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.accordionBtn span {
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--color-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* 閉じているとき */
.accordionBtn span::before {
  content: "";
  display: block;
  position: absolute;
  background: var(--color-primary);
  width: 2px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

/* 開いているとき */
.accordionBtn.active span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@media (any-hover: hover) {
  .faq-list dt:hover {
    opacity: .7;
  }
}

.faq-list dd {
  display: none;
}

.faq-list dd p {
  position: relative;
  padding: 20px;
  background-color: var(--color-bg02);
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.faq-list dd p::before {
  content: 'A.';
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #626161;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-english);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 40px 0 20px;
  }

  .faq .common-title {
    padding: 0 20px;
  }

  .faq-list {
    margin-top: 10px;
  }

  .faq-list dt {
    padding: 20px 56px 20px 20px;
    align-items: flex-start;
  }

  .faq-list dt::before {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
  }

  /* アコーディオンボタン */
  .accordionBtn {
    right: 20px;
    top: 24px;
    transform: translateY(0);
  }

  .faq-list dd p {
    gap: 10px;
    margin: 0 20px 20px;
    align-items: flex-start;
  }

  .faq-list dd p::before {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
  }
}

/**************************************************************
  フロートボタン
***************************************************************/
.float-position {
  height: 70px;
  margin: 0 auto 60px;
}

.float-btn {
  position: relative;
  pointer-events: none;
  height: 70px;
}

.float-btn a {
  pointer-events: auto;
}

/* 求人を探すボタン（PC） */
@media screen and (min-width: 768px) {
  .float-search {
    display: block !important;
  }

  .float-search,
  .float-search.is-fixed {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    margin: 0;
    transform: translateY(-50%);
    z-index: 500;
    background-color: #fff;
  }

  .float-search .all-btn {
    width: 70px;
    writing-mode: vertical-rl;
    border-radius: 0;
    padding: 30px 0;
    height: auto;
    letter-spacing: 0.4em;
    border: 1px solid var(--color-primary);
    box-shadow: 3px 3px 6px rgb(35 24 21 / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .float-search .all-btn::after {
    position: static;
    background: url(/princi/img/icon_search_white.svg) no-repeat center / contain;
    width: 22px;
    aspect-ratio: 1/1;
    transform: translateX(3px);
  }
}

@media (any-hover: hover) {
  .float-search .all-btn:hover::after {
    background: url(/princi/img/icon_search_primary.svg) no-repeat center / contain;
  }
}

/* トップに戻るボタン */
.pagetop-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 60px;
  background-color: #fff;
  display: none;
}

.pagetop-btn.is-fixed {
  position: fixed;
  right: calc(50% - 500px);
  bottom: 10px;
  z-index: 500;
}

.top-btn {
  border: 1px solid var(--color-primary);
  width: 60px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-btn::before {
  content: "";
  display: block;
  background: url(/princi/img/arrow_top.svg) no-repeat center / contain;
  width: 25px;
  aspect-ratio: 13 / 7;
}

@media screen and (max-width: 1020px) {
  .pagetop-btn.is-fixed {
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .float-position {
    height: 54px;
    margin: 0 auto 30px;
  }

  .float-btn {
    height: 54px;
  }

  /* 求人を探すボタン */
  .float-search {
    display: none;
    width: calc(100% - 75px);
    background-color: #fff;
    border-radius: 4px;
  }

  .float-search.is-fixed {
    position: fixed;
    bottom: 10px;
    left: 20px;
    width: calc(100% - 115px);
    z-index: 500;
  }

  .float-search .all-btn {
    margin: 0;
    max-width: none;
    height: 44px;
    line-height: 42px;
    border: 1px solid var(--color-text);
    border-radius: 4px;
    padding: 0 42px 0 32px;
  }

  .float-search .all-btn::after {
    background: url(/princi/img/icon_search_white.svg) no-repeat center / contain;
    width: 15px;
    aspect-ratio: 1/1;
    transform: translateX(3px);
    right: calc(50% - 60px);
  }

  /* トップに戻るボタン */
  .pagetop-btn {
    right: 20px;
    width: 44px;
    border-radius: 4px;
  }

  .pagetop-btn.is-fixed {
    right: 20px;
  }

  .top-btn {
    width: 44px;
    border-radius: 4px;
  }

  .top-btn::before {
    width: 20px;
  }
}

/**************************************************************
  footer
***************************************************************/
#footer {
  position: static;
}

footer#original-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  background-color: var(--color-text);
  gap: 5px;
}

footer p {
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
}

footer p small {
  font-size: 100%;
}

/*for Android copyrightマークの色*/
footer span.copy {
  font-family: Verdana, "Droid Sans" !important;
}

footer a:link,
footer a:active,
footer a:visited,
footer a:hover {
  color: #fff !important;
}