@charset "UTF-8";
/*見出し用*/
/*.common.css********************

**********************************/
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

当CSSには、リセット要素 及び webサイト全体を通して 既存クラスに追記して使用する要素（floatクリア・margin width などの数値要素・displayの有無・文字詰め設定など）を記述しています。
初期設定後は基本的に追記不可です。

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* reset */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif&family=Noto+Serif+JP:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&display=swap");
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: #000;
  line-height: 1.5;
  vertical-align: baseline;
  letter-spacing: 0.1em;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background-color: transparent;
  font-size: 1.4rem;
  height: 100%;
  font-feature-settings: "palt";
}

div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
textarea {
  display: block;
}

ul {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  list-style: decimal;
  list-style-position: inside;
}

ol li {
  margin-bottom: 5px;
}

li img {
  vertical-align: bottom;
}

div img {
  vertical-align: bottom;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

a img,
:link img,
:visited img {
  border: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

strong {
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

input,
select {
  vertical-align: middle;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

ins {
  background-color: #dfdfdf;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #dfdfdf;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #dfdfdf;
  margin: 1em 0;
  padding: 0;
}

/*input[type="button"],input[type="submit"] {
-webkit-appearance: none;
border-radius: 0;
	border:none;
	background: #000;
	color:#fff;
	font-size: 14px;
	padding: 10px ;
}*/
/* placeholder */
input::-webkit-input-placeholder {
  color: #666;
  font-size: 14px;
  font-size: 1.4rem;
}

input:-moz-placeholder {
  color: #666;
  font-size: 14px;
  font-size: 1.4rem;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

a:link {
  text-decoration: none;
  color: #363636;
}

a:visited {
  text-decoration: underline;
  color: #363636;
}

a:active,
a:focus {
  opacity: 0.7;
  outline: none;
}

a:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.7;
}

/*________________ ■全体設定 ________________*/
body {
  width: 100%;
  height: 100%;
  background: #fff;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

■共通設定

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* clear________________*/
.clear {
  clear: both;
}

/*clearfix_2016*/
/* div:after,
ul:after,
dl:after {
	content: "";
	display: block;
	clear: both;
} */
/*非表示*/
.hide-content {
  display: none;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

レスポンシブ 表示切り替え用 汎用設定

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* responsive*/
.mb-object {
  display: none !important;
}

.mb-object_fl {
  display: none !important;
}

.pc-object {
  display: block !important;
}

.pc-object_fl {
  display: flex !important;
}

@media screen and (max-width: 1024px) {
  .mb-object {
    display: block !important;
  }

  .mb-object_fl {
    display: flex !important;
  }

  .pc-object {
    display: none !important;
  }

  .pc-object_fl {
    display: none !important;
  }
}
/* responsive*/
/* title */
h3.section-title {
  display: flex;
  justify-content: center;
  color: #004592;
  font-size: 2.9rem;
  font-weight: 500;
  margin-bottom: 70px;
}

.page-copy {
  color: #004592;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 50px;
}

.underbar-title {
  color: #004592;
  font-size: 1.9rem;
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 1px solid #004592;
  margin-bottom: 70px;
}

/* -------------------------------------------------------------------

layout

------------------------------------------------------------------- */
.two-column {
  display: flex;
  flex-wrap: wrap;
}

.two-column > * {
  width: 48%;
  margin-right: 4%;
}

.two-column > *:nth-of-type(2n) {
  margin-right: 0;
}

.three-column {
  display: flex;
  flex-wrap: wrap;
}

.three-column > * {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 3.5%;
}

.three-column > *:nth-of-type(3n) {
  margin-right: 0;
}

table.table_std {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

table.table_std th,
table.table_std td {
  vertical-align: middle;
  color: #004592;
  line-height: 1.4;
  padding: 30px 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

table.table_std th.right,
table.table_std td.right {
  text-align: right;
}

table.table_std th {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 500;
  background: #e0f2f9;
}

table.table_std th.left {
  text-align: left;
}

table.table_std td {
  font-size: 1.3rem;
  line-height: 1.7;
  background: #eff9fc;
}

table.table_std td.center {
  text-align: center;
}

table.table_std td em {
  font-style: normal;
  font-weight: bold;
}

.table_res {
  display: block;
  width: 100%;
}

.paragraph {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 40px;
}

.paragraph.center {
  text-align: center;
}

.paragraph.mb10 {
  margin-bottom: 10px;
}

/*関連リンク*/
a.link_btn {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 10px 100px 10px 40px;
  margin: 10px 0 20px;
  color: #004592;
  text-decoration: underline;
  font-size: 1.6rem;
  border: 2px solid #004592;
  position: relative;
}

a.link_btn::after {
  content: "";
  display: block;
  width: 65px;
  height: 100%;
  background: url(../images/common/link_btn_icon.png) no-repeat center center
    #004592;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 0;
}

a.link_btn::before {
  content: "";
  min-height: 40px;
  font-size: 0;
}

a[target="_blank"].link_btn::after {
  background: url(../images/common/link_btn_icon_window.png) no-repeat center
    center #004592;
}

a[href$=".pdf"].link_btn::after {
  background: url(../images/common/link_btn_icon_pdf.png) no-repeat center
    center #004592;
}

.anchor-link-position {
  font-size: 0;
  line-height: 0;
  padding-top: 10.5vw;
  margin-top: -10.5vw;
}

.slide-up {
  transform: translateY(20%);
  -webkit-transform: translateY(20%);
  opacity: 0;
}

.slide-up.show {
  transition: 0.5s all ease-in-out 0s;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

@media screen and (max-width: 1024px) {
  /* title */
  h3.section-title {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }

  .page-copy {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .underbar-title {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  /* -------------------------------------------------------------------

  layout

  ------------------------------------------------------------------- */
  .two-column > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .three-column > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  table.table_std th,
  table.table_std td {
    padding: 20px 10px;
  }

  table.table_std th {
    font-size: 1.4rem;
  }

  table.table_std td {
    font-size: 1.2rem;
  }

  .table_res {
    width: 100%;
    overflow-x: scroll;
    position: relative;
    padding-top: 1.5em;
  }

  .table_res::before {
    content: "右にスクロールできます ≫";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
    font-weight: bold;
  }

  .table_res table.table_std {
    width: 700px;
  }

  .table_res table.table_std th,
  .table_res table.table_std td {
    font-size: 1.1rem;
  }

  .numbers-section .table_res table.table_numbers {
    width: 700px;
  }

  .paragraph {
    font-size: 1.4rem;
    line-height: 1.9;
  }

  /*関連リンク*/
  .anchor-link-position {
    padding-top: 75px;
    margin-top: -75px;
  }
}



 /* -------------------------------------------------------------------
  2025.05.21 宮作業
  ------------------------------------------------------------------- */
.whats-new {
  max-width: 1200px;       /* 横幅を制限 */
  margin: auto;  /* 上5%、左右中央揃え、下0 */
  padding: 0 20px 150px 0px;         /* 左右に余白（必要に応じて） */
}

.whats-new h2 {
  font-size: 8rem;
  color: #004690;
  padding-bottom: 30px;
}

.news-list {
  max-height: 240px; /* 約5件分の高さに調整（1件60px前後） */
  overflow-y: auto;
}

.news-item {
  display: flex;
  align-items: center;  /* ← 修正: 中央揃え → 上揃えに変更 */
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.meta {
  width: 150px; /* ← 140pxから拡張 */
  flex-shrink: 0; /* ← 幅が縮まないように */
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-size: 12px;
  color: #888;
}

.text {
  flex-grow: 1;
  font-size: 1.8rem;
  color: #000;
  align-self: flex-start; /* ← これを追加！ */
}

.date {
  margin-right: 20px; /* ← 日付とラベルの間隔 */
  font-size: 1.2rem;
  color: #888;
}

.label {
  display: inline-block;
  width: 60px;
  min-width: 60px;
  text-align: center;
  padding: 3px 0;
  font-size: 1.2rem;
  color: white;
  box-sizing: border-box;
  margin-right: 20px; /* ←★ これを追加！ */
}

.label.ec {
  background-color: #b00000;
}

.label.club {
  background-color: #4caf50;
}

.label.column {
  background-color: #e3a7cf;
}

.label.recruit {
  background-color: #33a4d8;
}

@media (max-width: 768px) {
  .news-item {
    flex-direction: column; /* ← 縦並びに変更 */
    align-items: flex-start; /* 左揃え */
    padding: 8px 0;

  }

  .meta {
    margin-bottom: 5px; /* 下にスペース */
  }

 .whats-new {
    margin: 30px auto;      /* ← 上下に30px */
    padding: 0 10px 30px 10px; /* ← 左右10px、下に余白 */
  }

.whats-new h2 {
  font-size: 3rem;
 padding-bottom: 5px;
}

.news-list {
  max-height: 300px; /* 約5件分の高さに調整（1件60px前後） */
  overflow-y: auto;
}

.text {
  font-size: 1.5rem;
}




}



.l-header {
  width: 100%;
  height: 10.5vw;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 100;
}

.l-header::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0.5vw;
  background: #004592;
  background: linear-gradient(90deg, #004592 0, #1ce0f5 100%);
  z-index: -1;
}

.l-title {
  width: 30vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-right: 1px solid #004592;
}

.l-title h1.header-logo {
  width: 26vw;
}

.l-title h1.header-logo a {
  display: block;
  width: 100%;
}

.l-title h1.header-logo a img {
  width: 100%;
  height: auto;
}

.menu-container {
  width: 70vw;
}

.info-menu {
  width: 100%;
  height: 5.5vw;
  padding-right: 2vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #004592;
}

.info-menu li {
  height: 3.5vw;
  width: 13vw;
  margin-left: 0.35vw;
  margin-right: 0.35vw;
}

.info-menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9vw;
  border-radius: 0.7vw;
  background: #8f918e;
  
}

.info-menu li.entry.career a {
  /*font-size: 1.35rem;*/
}

.info-menu li.entry {
  margin-left: 0.7vw;
}

.info-menu li.entry a {
  background: #c8337a;
  background: linear-gradient(90deg, #e3a3b1 0%, #c8337a 100%);
}

.info-menu li.entry.career a {
  background: #004592;
  background: linear-gradient(245deg, #004592 45%, #1ce0f5 100%);
}

.l-menu .inner {
  display: flex;
}

.l-menu .inner .category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
  overflow: hidden;
  position: relative;
  border-right: 1px solid #004592;
}

.l-menu .inner .category:last-of-type {
  border-right: 0;
}

.l-menu .inner .category .category-name {
  width: 100%;
  height: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: clamp(1.5rem, 1.1vw, 2rem);
  font-weight: 500;
  padding-bottom: 0.5em;
  position: relative;
}

.l-menu .inner .category .category-name::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + 0.75em);
  transform: translateX(-50%);
  width: 55%;
  height: 1px;
  background: #000;
}

.l-menu .inner .category .category-list {
  height: 0;
  opacity: 0;
  transition: 0.3s ease;
  position: absolute;
  top: 5vw;
  width: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
}

.l-menu .inner .category .category-list > li > a {
  width: 100%;
  height: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 1.1vw, 2rem);
}

.l-menu .inner .category .category-list > li + li {
  border-top: 1px solid #004592;
}

.l-menu .inner .category:hover {
  overflow: visible;
}

.l-menu .inner .category:hover > .category-name {
  opacity: 0.6;
}

.l-menu .inner .category:hover > .category-list {
  height: auto;
  opacity: 1;
}

footer {
  background: #e9e9e8;
  width: 100vw;
  padding: 4vw 0;
}

footer .footer-content {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

footer .footer-content .footer-address {
  width: 30vw;
  display: flex;
  flex-direction: column;
}

footer .footer-content .footer-address .company-name {
  width: clamp(300px, 21vw, 350px);
  margin-bottom: 2.4vw;
}

footer .footer-content .footer-address .company-name img {
  width: 100%;
}

footer .footer-content .footer-address .address-box {
  font-size: clamp(1.5rem, 0.75vw, 1.2rem);
  line-height: 1.8;
}

footer .footer-content .footer-address .address-box + .address-box {
  margin-top: 2vw;
}

footer .footer-content .footer-link-container {
  width: 40vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .footer-content .footer-link-container .footer-link-list {
  display: flex;
  flex-wrap: wrap;
}

footer .footer-content .footer-link-container .footer-link-list li {
  width: 33.333%;
}

footer .footer-content .footer-link-container .footer-link-list li a {
  display: block;
  position: relative;
  font-size: clamp(1.5rem, 0.8vw, 1.4rem);
  line-height: 2;
  padding-left: 2em;
}

footer .footer-content .footer-link-container .footer-link-list li a::before {
  content: ">";
  position: absolute;
  top: 0;
  left: 0;
}secrets

footer .footer-content .footer-link-container .copyright {
  text-align: right;
  font-size: clamp(1rem, 0.7vw, 1.2rem);
}

.content-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 10.5vw;
}

.content-body {
  width: 100%;
  padding: 7vw 0 8.3vw;
}

.content-inner {
  width: 80vw;
  max-width: 1000px;
  margin: 0 auto;
}

.content-inner.full-width {
  width: 100%;
  max-width: unset;
}

.page-head {
  width: 100%;
}

.page-head .mainvisual {
  background: #d0ecf6;
  display: flex;
  align-items: center;
  height: 35vw;
  position: relative;
}

.page-head .mainvisual::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65vw;
  height: 100%;
  background: #666;
  border-radius: 17.5vw 0 0 17.5vw;
}

.about.secrets .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_about02.jpg") no-repeat
    center center;
  background-size: cover;
}

.about.numbers .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_about03.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice01 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice01.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice02 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice02.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice03 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice03.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice04 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice04.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice05 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice05.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice06 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice06.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice07 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice07.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice08 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice08.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.voice09 .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_voice09.jpg") no-repeat
    center center;
  background-size: cover;
}

.know.message .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_know_message02.webp")
    no-repeat center center;
  background-size: cover;
}

.recruit.guidelines .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_recruit01.jpg") no-repeat
    center center;
  background-size: cover;
}

.recruit.welfare .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_recruit02.jpg") no-repeat
    center center;
  background-size: cover;
}

.information.faq .page-head .mainvisual::before {
  background: url("../images/mainvisual/mainvisual_information01.jpg") no-repeat
    center center;
  background-size: cover;
}

.page-head .mainvisual .page-title-category {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-head .mainvisual .page-title-category span {
  display: inline-block;
  color: #004592;
  font-size: clamp(4.6rem, 3.2vw, 4.8rem);
  line-height: 1;
  background: #fff;
  padding: 1vw;
}

.page-head .mainvisual .page-title-category span.category {
  font-size: clamp(3rem, 2.1vw, 3.2rem);
  background: unset;
  padding: unset;
}

.page-head .mainvisual .page-title-category span + span {
  margin-top: 1.7vw;
}

/* パンくずリスト */
.breadcrumbs {
  border-bottom: 1px solid #004592;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  width: 80%;
  height: 3.6vw;
  margin: 0 auto;
}

.breadcrumbs ul > li {
  color: #808080;
  font-size: clamp(1.2rem, 1.1vw, 1.8rem);
  line-height: 1;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}

.breadcrumbs ul > li::before {
  content: "";
  width: clamp(5px, 0.5vw, 10px);
  height: clamp(5px, 0.5vw, 10px);
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0.2em;
}

.breadcrumbs ul > li a {
  color: #808080;
  text-decoration: underline;
}

.breadcrumbs ul > li:last-of-type {
  color: #000;
  font-weight: bold;
  margin-right: 0;
  padding-right: 0;
}

.breadcrumbs ul > li:last-of-type::before {
  content: none;
}

.apply-box {
  width: 100%;
  height: 32vw;
  background: url("../images/common/apply-box-bg.svg") no-repeat center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.apply-box .apply-title {
  width: 100%;
  height: 5vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: clamp(3rem, 2vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.apply-box .box-content {
  width: 60vw;
  height: 27vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apply-box .box-content .qr-code {
  width: 12.5vw;
}

.apply-box .box-content .qr-code img {
  width: 100%;
}

.apply-box .box-content .btn-container {
  width: 46vw;
  height: 20vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.apply-box .box-content .btn-container > p {
  font-size: clamp(2.2rem, 1.8vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}

.apply-box .box-content .btn-container > a {
  width: 100%;
  height: 7.6vw;
  padding-left: 1vw;
  background: #e7d900;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 5px;
}

.apply-box .box-content .btn-container > a span {
  color: #000;
  font-size: clamp(1.75rem, 1.636rem + 0.57vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.apply-box .box-content .btn-container > a span:last-of-type {
  margin-left: 3vw;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 1vw 1.5vw;
  background: #fff;
  border-radius: 100px;
}

@media screen and (max-width: 1024px) {
  .l-header {
    height: 75px;
  }

  .l-header::before {
    height: 5px;
  }

  .l-title {
    width: calc(100% - 70px);
    height: 70px;
    padding-left: 5vw;
    justify-content: flex-start;
    border-right: unset;
  }

  .l-title h1.header-logo {
    width: 100%;
    height: 50px;
  }

  .l-title h1.header-logo a {
    height: 100%;
  }

  .l-title h1.header-logo a img {
    width: auto;
    height: 100%;
  }

  .menu-container {
    width: 70px;
  }

  .info-menu {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50px;
    padding-right: unset;
    display: flex;
    align-items: unset;
    justify-content: unset;
    border-bottom: unset;
  }

  .info-menu li {
    height: 50px;
    width: 50%;
    margin-left: unset;
    margin-right: unset;
  }

  .info-menu li a {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    border-radius: unset;
    flex-direction: column;
  }

  .info-menu li.entry.career a {
    font-size: 1.1rem;
  }

  .info-menu li.entry {
    margin-left: unset;
    margin-right: unset;
  }

  .l-menu {
    background: #fff;
  }

  .l-menu .inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 0;
    transition: 0.3s all ease 0.3s;
  }

  .l-menu .inner .category {
    width: 100%;
    border-right: unset;
  }

  .l-menu .inner .category .category-name {
    height: 50px;
    justify-content: flex-start;
    font-size: 1.5rem;
    padding: 0 5vw;
    border-bottom: 1px solid #004592;
  }

  .l-menu .inner .category .category-name::after {
    left: unset;
    top: unset;
    transform: unset;
    width: unset;
  }

  .l-menu .inner .category .category-name::before,
  .l-menu .inner .category .category-name::after {
    content: "";
    position: absolute;
    right: 5vw;
    top: 50%;
    width: 17px;
    height: 1px;
    background: #004592;
    transition: all 0.3s;
  }

  .l-menu .inner .category .category-name::after {
    transform: rotate(90deg);
  }

  .l-menu .inner .category .category-name.open::before {
    content: none;
  }

  .l-menu .inner .category .category-name.open::after {
    transform: rotate(180deg);
  }

  .l-menu .inner .category .category-list {
    height: auto;
    opacity: 1;
    transition: unset;
    position: relative;
    top: 0;
    background: rgba(208, 236, 246, 0.5);
    display: none;
  }

  .l-menu .inner .category .category-list > li {
    border-bottom: 1px solid #004592;
  }

  .l-menu .inner .category .category-list > li > a {
    height: 50px;
    justify-content: flex-start;
    padding: 0 5vw;
    color: #004592;
    font-size: 1.3rem;
    font-weight: 500;
    position: relative;
  }

  .l-menu .inner .category .category-list > li > a::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 6.5vw;
    width: 8px;
    height: 8px;
    border-top: 1px solid #004592;
    border-right: 1px solid #004592;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .l-menu .inner .category .category-list > li + li {
    border-top: unset;
  }

  .l-menu .inner .category:hover > .category-list {
    position: relative;
  }

  .l-menu {
    height: calc(100vh - 75px);
    overflow: scroll;
    display: none;
    position: fixed;
    z-index: 1100;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
  }

  .l-menu .inner {
    opacity: 1;
  }

  .l-menu .inner:before {
    opacity: 1;
  }

  .l-menu .inner .category {
    opacity: 1;
  }

  .l-menu-trigger__box {
    width: 70px;
    height: 70px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
  }

  .l-menu-trigger {
    position: relative;
    width: 36px;
    height: 26px;
    margin-top: 24px;
    margin-left: 17px;
    cursor: pointer;
  }

  .l-menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  .l-menu-trigger span:nth-of-type(1) {
    top: 0;
    -webkit-animation: btn07-bar01 0.75s forwards;
    animation: btn07-bar01 0.75s forwards;
  }

  .l-menu-trigger span:nth-of-type(2) {
    top: 12px;
    transition: all 0.25s 0.25s;
    opacity: 1;
  }

  .l-menu-trigger span:nth-of-type(3) {
    bottom: 0;
    -webkit-animation: btn07-bar03 0.75s forwards;
    animation: btn07-bar03 0.75s forwards;
  }

  .l-menu-trigger__box.is-show .l-menu-trigger span:nth-of-type(1) {
    -webkit-animation: active-btn07-bar01 0.75s forwards;
    animation: active-btn07-bar01 0.75s forwards;
  }

  .l-menu-trigger__box.is-show .l-menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .l-menu-trigger__box.is-show .l-menu-trigger span:nth-of-type(3) {
    -webkit-animation: active-btn07-bar03 0.75s forwards;
    animation: active-btn07-bar03 0.75s forwards;
  }

  .l-menu-trigger,
  .l-menu-trigger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }

  @keyframes btn07-bar01 {
    0% {
      transform: translateY(12px) rotate(45deg);
    }
    50% {
      transform: translateY(12px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn07-bar03 {
    0% {
      transform: translateY(-12px) rotate(-45deg);
    }
    50% {
      transform: translateY(-12px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes active-btn07-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(12px) rotate(0);
    }
    100% {
      transform: translateY(12px) rotate(45deg);
    }
  }
  @keyframes active-btn07-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-12px) rotate(0);
    }
    100% {
      transform: translateY(-12px) rotate(-45deg);
    }
  }
  footer {
    width: 100%;
    padding: 30px 0 70px;
  }

  footer .footer-content {
    width: 85%;
    flex-direction: column;
    justify-content: unset;
  }

  footer .footer-content .footer-address {
    width: 100%;
  }

  footer .footer-content .footer-address .company-name {
    width: 300px;
    margin: 0 auto 30px;
  }

  footer .footer-content .footer-address .address-box {
    font-size: 1.1rem;
  }

  footer .footer-content .footer-address .address-box + .address-box {
    margin-top: 15px;
  }

  footer .footer-content .footer-link-container {
    width: 100%;
  }

  footer .footer-content .footer-link-container .footer-link-list {
    display: none;
  }

  footer .footer-content .footer-link-container .copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 1rem;
  }

  .content-wrap {
    margin-top: 75px;
  }

  .content-body {
    padding: 60px 0;
  }

  .content-inner {
    width: 90%;
  }

  .page-head .mainvisual {
    height: 40vh;
  }

  .page-head .mainvisual::before {
    width: 70vw;
    border-radius: 20vh 0 0 20vh;
  }

  .page-head .mainvisual .page-title-category {
    width: 85%;
  }

  .page-head .mainvisual .page-title-category span {
    font-size: 2.6rem;
    line-height: 1.3;
    padding: 5px 10px;
  }

  .page-head .mainvisual .page-title-category span.category {
    font-size: 2rem;
  }

  .page-head .mainvisual .page-title-category span + span {
    margin-top: 10px;
  }

  /* パンくずリスト */
  .breadcrumbs ul {
    flex-wrap: wrap;
    align-items: unset;
    width: 85%;
    padding: 10px 0;
    height: auto;
  }

  .breadcrumbs ul > li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-right: 1.5em;
    padding-right: calc(1.5em + 4px);
  }

  .breadcrumbs ul > li::before {
    content: "";
    width: 8px;
    height: 8px;
    top: 0.5em;
  }

  .apply-box {
    height: auto;
    background: unset;
    background-size: unset;
    background: #54bbde;
    background: linear-gradient(-58deg, #54bbde 2%, #9ec7e7 43%, #4694d1 97%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding: 30px 5vw 50px;
  }

  .apply-box .apply-title {
    height: auto;
    align-items: unset;
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .apply-box .box-content {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: unset;
  }

  .apply-box .box-content .qr-code {
    width: 160px;
    margin-bottom: 20px;
  }

  .apply-box .box-content .btn-container {
    width: 100%;
    height: auto;
    justify-content: unset;
  }

  .apply-box .box-content .btn-container > p {
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .apply-box .box-content .btn-container > a {
    width: 380px;
    margin: 0 auto 20px;
    height: 70px;
    padding-left: unset;
  }

  .apply-box .box-content .btn-container > a span {
    font-size: 1.75rem;
  }

  .apply-box .box-content .btn-container > a span:last-of-type {
    margin-left: 1em;
    font-size: 1.4rem;
    padding: 10px 15px;
  }
}

.br-sp {
  display: block;
}
@media (min-width: 960px) {
  .br-sp {
    display: none;
  }
}