@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300..800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット02・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 835px) {
  .tb02sp {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* justify-content: space-between; */
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

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

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}

/*視差効果
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #222;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 400;
  }
}
body.open {
  overflow: hidden;
}

/*ベースボタンサイズ*/
:root {
  --btn-size: 300px;
}
@media screen and (max-width: 834px) {
  :root {
    --btn-size: 270px;
  }
}
@media screen and (max-width: 599px) {
  :root {
    --btn-size: 230px;
  }
}

/*サイドパディング*/
:root {
  --side-padding: 40px;
}
@media screen and (max-width: 834px) {
  :root {
    --side-padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  :root {
    --side-padding: 20px;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

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

.tel {
  color: inherit;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 10px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 15px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 35px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 45px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 50px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 50px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 15px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 15px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 25px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}
@media screen and (max-width: 599px) {
  .mt70 {
    margin-top: 45px !important;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 1500px) {
  .header {
    height: 90px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 70px;
  }
}

.header-logo {
  margin: 28px 0 0 30px;
}
@media screen and (max-width: 1500px) {
  .header-logo {
    margin: 25px 0 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    width: calc(100% - 170px);
    margin: 17px 0 0 10px;
  }
}
.header-logo img {
  width: 100%;
  max-width: 394px;
}
@media screen and (max-width: 1500px) {
  .header-logo img {
    max-width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo img {
    max-width: 190px;
  }
}

.header-nav {
  position: absolute;
  top: 0;
  right: 280px;
  width: calc(100% - 720px);
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}
@media screen and (max-width: 1500px) {
  .header-nav {
    right: 250px;
    width: calc(100% - 610px);
  }
}
@media screen and (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}

.header-entry {
  position: fixed;
  top: 10px;
  right: 107px;
}
@media screen and (max-width: 1500px) {
  .header-entry {
    right: 97px;
  }
}
@media screen and (max-width: 599px) {
  .header-entry {
    top: 5px;
    right: 70px;
  }
}
.header-entry > a {
  background: #A164D5;
  background: linear-gradient(180deg, rgb(161, 100, 213) 0%, rgb(170, 127, 212) 100%);
  color: #fff;
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 12px 10px 10px;
  border-radius: 5px;
  font-family: "Roboto", sans-serif !important;
  font-size: 2.7rem;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .header-entry > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1500px) {
  .header-entry > a {
    font-size: 2.4rem;
    font-weight: 400;
    height: 70px;
  }
}
@media screen and (max-width: 599px) {
  .header-entry > a {
    width: 80px;
    height: 60px;
    font-size: 2rem;
  }
}
.header-entry > a span {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .header-entry > a span {
    font-size: 1.2rem;
  }
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 90px;
}
@media screen and (max-width: 1500px) {
  .header-nav-list {
    gap: 20px;
    height: 70px;
  }
}
.header-nav-list > li {
  height: 100%;
}
.header-nav-list > li > a {
  color: #222;
  font-weight: 500;
  line-height: 1.3;
  padding: 12px 0 10px;
  height: 100%;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li > a:hover {
    color: #ffae00;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1500px) {
  .header-nav-list > li > a {
    font-size: 1.5rem;
  }
}
.header-nav-list > li > a.active {
  color: #ff9000;
}

/* ===================================
ハンバーガー
=====================================*/
/*ハンバーガーボタン*/
#nav-toggle {
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  height: 90px;
  width: 90px;
  cursor: pointer;
  background-color: #444;
  border-radius: 5px;
  z-index: 100;
  transition: 0.2s;
}
@media screen and (max-width: 1500px) {
  #nav-toggle {
    width: 80px;
    height: 70px;
  }
}
@media screen and (max-width: 599px) {
  #nav-toggle {
    width: 60px;
    height: 60px;
    top: 5px;
    right: 5px;
  }
}
#nav-toggle > div {
  position: absolute;
  top: 34px;
  left: 30px;
  width: 30px;
}
@media screen and (max-width: 1500px) {
  #nav-toggle > div {
    top: 25px;
    left: 25px;
  }
}
@media screen and (max-width: 599px) {
  #nav-toggle > div {
    width: 28px;
    top: 21px;
    left: 17px;
  }
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.5s ease;
  /* #nav-toggle close */
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
@media screen and (max-width: 599px) {
  #nav-toggle span:nth-child(2) {
    top: 9px;
  }
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
@media screen and (max-width: 599px) {
  #nav-toggle span:nth-child(3) {
    top: 18px;
  }
}

.open #nav-toggle span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  display: none;
}
.open #nav-toggle span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
  width: 100%;
}

/*黒背景*/
#gloval-nav-overlay {
  background-color: rgba(68, 68, 68, 0.4);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 98;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.open #gloval-nav-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  #gloval-nav-overlay {
    background-color: rgba(0, 0, 0, 0.4);
  }
}

/*ハンバーガー内*/
#gloval-nav {
  display: block;
  overflow: auto;
  background-color: #f9f9f9;
  background-image: url(../img/common/h_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom -75px;
  position: fixed;
  padding: 120px 35px 40px;
  top: 0;
  right: 0;
  width: 600px;
  height: 100vh;
  transform: translateX(600px);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  #gloval-nav {
    padding-top: 110px;
    width: 450px;
    transform: translateX(450px);
  }
}
@media screen and (max-width: 599px) {
  #gloval-nav {
    padding-top: 75px;
    width: 100%;
    transform: translateX(100%);
    background-size: 200px auto;
  }
}

.open #gloval-nav {
  transform: translateX(0);
}

.gloval-nav-inner {
  max-width: 360px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .gloval-nav-inner {
    max-width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .gloval-nav-inner {
    max-width: 100%;
  }
}

.gloval-nav-list {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-list {
    margin-bottom: 18px;
  }
}
.gloval-nav-list > li > a {
  position: relative;
  padding: 19px 50px 19px 0px;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .gloval-nav-list > li > a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .gloval-nav-list > li > a {
    padding: 15px 40px 15px 0px;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1025px) {
  .gloval-nav-list > li > a:hover {
    color: #ffae00;
    padding-left: 5px;
  }
  .gloval-nav-list > li > a:hover::before {
    background-color: #ffae00;
  }
}
.gloval-nav-list > li > a::before {
  transition: 0.3s;
  background-color: #444444;
  background-image: url(../img/common/arw_white.svg);
  background-size: 13px auto;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  height: 36px;
  width: 36px;
  border-radius: 50px;
  right: 5px;
  top: 14px;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .gloval-nav-list > li > a::before {
    height: 30px;
    width: 30px;
    background-size: 11px auto;
  }
}
.gloval-nav-list > li.has-accordion {
  position: relative;
  transition: 0.3s;
}
.gloval-nav-list > li.has-accordion > a.has-child::before {
  display: none;
}
.gloval-nav-list > li.has-accordion .accordion-toggle {
  position: absolute;
  right: 0px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9e9e9;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .gloval-nav-list > li.has-accordion .accordion-toggle {
    width: 32px;
    height: 32px;
    right: 3px;
  }
}
.gloval-nav-list > li.has-accordion .accordion-toggle::before, .gloval-nav-list > li.has-accordion .accordion-toggle::after {
  content: "";
  position: absolute;
  background: #444444;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.gloval-nav-list > li.has-accordion .accordion-toggle::before {
  width: 14px;
  height: 2px;
}
.gloval-nav-list > li.has-accordion .accordion-toggle::after {
  width: 2px;
  height: 14px;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .gloval-nav-list > li.has-accordion .accordion-toggle:hover {
    background-color: #ffae00;
  }
}
.gloval-nav-list > li.has-accordion .accordion-list {
  display: none;
  padding: 0 0 18px 10px;
}
.gloval-nav-list > li.has-accordion .accordion-list > li > a {
  position: relative;
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 8px 0px 8px 25px;
  display: block;
  background-image: url(../img/common/arw_orange.svg);
  background-size: 15px auto;
  background-position: left center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .gloval-nav-list > li.has-accordion .accordion-list > li > a {
    font-size: 1.6rem;
  }
}
.gloval-nav-list > li.has-accordion.open .accordion-toggle::after {
  opacity: 0;
}

.gloval-nav-entry {
  position: relative;
  display: block;
  border-radius: 6px;
  padding: 23px 30px;
  line-height: 1.4;
  background: #A164D5;
  background: linear-gradient(180deg, rgb(161, 100, 213) 0%, rgb(170, 127, 212) 100%);
  font-family: "Roboto", sans-serif !important;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .gloval-nav-entry:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .gloval-nav-entry {
    padding: 20px 25px;
    font-size: 2.2rem;
  }
}
.gloval-nav-entry::before {
  background-image: url(../img/common/arw_white.svg);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  height: 18px;
  width: 16px;
  right: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .gloval-nav-entry::before {
    height: 16px;
    width: 14px;
  }
}
.gloval-nav-entry span {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 20px;
  padding-left: 15px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-entry span {
    font-size: 1.5rem;
    padding-left: 10px;
    margin-left: 15px;
  }
}

.gloval-nav-sub {
  margin-top: 25px;
  display: flex;
  flex: auto;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-sub {
    margin-top: 15px;
  }
}
.gloval-nav-sub > li a {
  padding: 10px 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #222;
}
@media screen and (max-width: 599px) {
  .gloval-nav-sub > li a {
    font-size: 1.4rem;
  }
}
.gloval-nav-sub > li a:hover {
  color: #ffae00;
}

.footer-entry {
  background: #995EB5;
  background: linear-gradient(180deg, rgb(153, 94, 181) 0%, rgb(173, 110, 203) 100%);
  padding: 40px;
  position: relative;
  border-radius: 10px;
  margin-top: -10px;
}
@media screen and (max-width: 1500px) {
  .footer-entry {
    padding: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-entry {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-entry {
    border-radius: 0;
    padding: 10px;
  }
}
.footer-entry::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  width: 420px;
  height: 220px;
  background-image: url(../img/common/footer_entry_bg01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 834px) {
  .footer-entry::before {
    right: 0;
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  .footer-entry::before {
    width: 50%;
    height: 100px;
  }
}
.footer-entry::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 400px;
  height: 220px;
  background-image: url(../img/common/footer_entry_bg02.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 834px) {
  .footer-entry::after {
    left: 0;
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  .footer-entry::after {
    width: 50%;
    height: 100px;
  }
}

.footer-entry-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 45px 40px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .footer-entry-inner {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-entry-inner {
    padding: 30px 15px;
  }
}

.footer-entry-title-sub {
  color: #fff;
  text-align: center;
  line-height: 1.3;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .footer-entry-title-sub {
    font-size: 1.7rem;
  }
}

.footer-entry-title {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Roboto", sans-serif !important;
  font-size: 6rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1500px) {
  .footer-entry-title {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-entry-title {
    font-size: 4.6rem;
  }
}

.footer-entry-links {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-entry-links {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-entry-links {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer-entry-links > a {
  max-width: 370px;
  width: 100%;
  height: 85px;
  background-color: #fff;
  border-radius: 200px;
  padding: 10px 40px;
  font-size: 1.9rem;
  font-weight: 600;
  color: #9e62ba;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background-image: url(../img/common/arw_purple.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: right 25px top 50%;
}
@media screen and (min-width: 1025px) {
  .footer-entry-links > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1500px) {
  .footer-entry-links > a {
    height: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-entry-links > a {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .footer-entry-links > a {
    width: 100%;
    height: 65px;
    font-size: 1.7rem;
    background-size: 14px auto;
    background-position: right 20px top 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
}

.footer-bottom {
  text-align: center;
  padding: 80px 30px 75px;
}
@media screen and (max-width: 1500px) {
  .footer-bottom {
    padding: 70px 30px 65px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bottom {
    padding: 50px 15px 45px;
  }
}

.footer-links01 {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-links01 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-links01 {
    display: none;
  }
}
.footer-links01 > li {
  border-right: 1px solid #d6d6d6;
}
.footer-links01 > li:last-child {
  border-right: none;
}
@media screen and (max-width: 1024px) {
  .footer-links01 > li {
    border: none;
  }
}
.footer-links01 > li > a {
  font-size: 1.5rem;
  color: #666666;
  font-weight: 600;
  padding: 0 30px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .footer-links01 > li > a:hover {
    color: #ff9000;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .footer-links01 > li > a {
    padding: 0;
  }
}

.footer-links02 {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .footer-links02 {
    margin-bottom: 40px;
    gap: 30px;
  }
}
.footer-links02 > li > a {
  font-size: 1.2rem;
  color: #2f2f2f;
  display: block;
}
@media screen and (min-width: 1025px) {
  .footer-links02 > li > a:hover {
    color: #ff9000;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .footer-links02 > li > a {
    font-size: 1.3rem;
  }
}

.footer-links-bnr {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .footer-links-bnr {
    gap: 10px;
  }
}
.footer-links-bnr > li {
  width: 100%;
  max-width: 300px;
  height: 80px;
}
.footer-links-bnr > li > a {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .footer-links-bnr > li > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.footer-links-bnr > li > a img {
  width: 100%;
  max-width: 270px;
}

.footer-logo {
  display: inline-block;
  width: 100%;
  max-width: 293px;
}
.footer-logo img {
  width: 100%;
  max-width: 293px;
}

.footer-copyright {
  text-align: center;
  font-size: 1.2rem;
  color: #676767;
  font-family: "Roboto", sans-serif !important;
  margin-top: 10px;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100%;
  max-width: 50px;
  z-index: 20;
}
@media screen and (min-width: 1025px) {
  .pagetop:hover {
    opacity: 0.8;
    transform: translateY(-2px);
  }
}

.page-contents {
  padding: 100px 30px 160px;
}
@media screen and (max-width: 1500px) {
  .page-contents {
    padding: 60px 30px 130px;
  }
}
@media screen and (max-width: 1024px) {
  .page-contents {
    padding: 50px 20px 100px;
  }
}
@media screen and (max-width: 599px) {
  .page-contents {
    padding: 20px 15px 80px;
  }
}

.page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  padding: 20px 15px 10px;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb {
  display: flex;
}
.breadcrumb > li {
  position: relative;
  font-size: 1.4rem;
  color: #838383;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .breadcrumb > li {
    font-size: 1.3rem;
  }
}
.breadcrumb > li:not(:last-child) {
  padding-right: 45px;
}
@media screen and (max-width: 599px) {
  .breadcrumb > li:not(:last-child) {
    padding-right: 25px;
  }
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 22px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #838383;
  border-right: 1px solid #838383;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .breadcrumb > li:not(:last-child)::after {
    right: 10px;
  }
}
.breadcrumb > li > a {
  color: #ffae00;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .breadcrumb > li > a:hover {
    text-decoration: none;
  }
}

/*--------------------------------------------------------
pagetitle
----------------------------------------------------------*/
.pagetitle {
  margin-top: 110px;
  height: 350px;
  position: relative;
  margin-bottom: -10px;
}
@media screen and (max-width: 1500px) {
  .pagetitle {
    margin-top: 90px;
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    height: 270px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    margin-top: 70px;
    height: 140px;
  }
}
.pagetitle__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .pagetitle__photo {
    border-radius: 0;
  }
}
.pagetitle__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.pagetitle__photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.25);
}
.pagetitle__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
  padding: 50px 20px 20px;
  background-image: url(../img/common/pagetitle_bg_circle03.png), url(../img/common/pagetitle_bg_circle02.png), url(../img/common/pagetitle_bg_circle.webp);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right 30% top 80%, left 30% top 70%, left 50% top 0;
}
@media screen and (max-width: 1500px) {
  .pagetitle__title {
    background-size: 80px auto, 80px auto, 400px auto;
    background-position: right 20% top 80%, left 20% top 70%, left 50% top 0;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__title {
    padding: 40px 20px 20px;
    background-size: 80px auto, 80px auto, 360px auto;
    background-position: right 10% top 80%, left 10% top 70%, left 50% top 0;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title {
    padding: 30px 20px 20px;
    background-size: 40px auto, 40px auto, 190px auto;
    background-position: right 5% top 80%, left 5% top 70%, left 50% top 0;
  }
}
.pagetitle__title__en {
  font-size: 10.5rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
}
@media screen and (max-width: 1500px) {
  .pagetitle__title__en {
    font-size: 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__title__en {
    font-size: 7rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__en {
    font-size: 4.5rem;
  }
}
.pagetitle__title__ja {
  margin-top: -30px;
  font-size: 6.5rem;
  font-weight: 400;
}
@media screen and (max-width: 1500px) {
  .pagetitle__title__ja {
    margin-top: -20px;
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__title__ja {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__ja {
    margin-top: -10px;
    font-size: 3rem;
  }
}
.pagetitle__title__img-ttl {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .pagetitle__title__img-ttl {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__title__img-ttl {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__img-ttl {
    margin-top: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__title__img-ttl img {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__img-ttl img {
    width: 64%;
  }
}
.pagetitle__title__sub {
  margin-top: 25px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .pagetitle__title__sub {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title__sub {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------
_wysiwyg
----------------------------------------------------------*/
.wysiwyg a {
  color: #ffae00;
  text-decoration: underline;
}
.wysiwyg a:hover {
  color: #ffae00;
  text-decoration: none;
}
.wysiwyg img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.wysiwyg {
  /*各テンプレートを囲むbox【必須】*/
}
.wysiwyg .box {
  margin-bottom: 35px;
}
.wysiwyg .box:before, .wysiwyg .box:after {
  content: "";
  display: table;
}
.wysiwyg .box:after {
  clear: both;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box {
    margin-bottom: 25px;
  }
}
.wysiwyg .box:has(> .ttl01), .wysiwyg .box:has(> .ttl02), .wysiwyg .box:has(> .ttl04) {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box:has(> .ttl01), .wysiwyg .box:has(> .ttl02), .wysiwyg .box:has(> .ttl04) {
    margin-bottom: 18px;
  }
}
.wysiwyg .box:has(> .ttl03) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box:has(> .ttl03) {
    margin-bottom: 12px;
  }
}
.wysiwyg .box:has(> .copy01), .wysiwyg .box:has(> .copy02) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box:has(> .copy01), .wysiwyg .box:has(> .copy02) {
    margin-bottom: 8px;
  }
}
.wysiwyg {
  /*タイトル処理*/
}
.wysiwyg .ttl01 {
  position: relative;
  padding: 12px 0px 12px 20px;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 2px solid #e2e2e2;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl01 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01 {
    font-size: 2rem;
    padding: 10px 0px 10px 15px;
  }
}
.wysiwyg .ttl01::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 6px;
  height: 32px;
  border-radius: 5px;
  background-color: #ff9000;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl01::before {
    height: 30px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01::before {
    top: 12px;
    width: 5px;
    height: 26px;
  }
}
.wysiwyg .ttl02 {
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
  border-bottom: 1px dotted #c8c8c8;
  padding: 0px 0 15px 32px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl02 {
    font-size: 2rem;
    padding-left: 28px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl02 {
    font-size: 1.8rem;
    -webkit-text-stroke: 0;
    padding: 0px 0 10px 20px;
  }
}
.wysiwyg .ttl02::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 20px;
  height: 5px;
  border-radius: 5px;
  background-color: #ff9000;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl02::after {
    width: 18px;
    top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl02::after {
    width: 14px;
    height: 4px;
    top: 10px;
  }
}
.wysiwyg .ttl03 {
  position: relative;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding-left: 45px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl03 {
    font-size: 1.8rem;
    padding-left: 36px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl03 {
    font-size: 1.7rem;
    padding-left: 30px;
  }
}
.wysiwyg .ttl03::before, .wysiwyg .ttl03::after {
  position: absolute;
  content: "";
  top: 9px;
  height: 18px;
  width: 18px;
  border-radius: 50px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl03::before, .wysiwyg .ttl03::after {
    top: 8px;
    height: 15px;
    width: 15px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl03::before, .wysiwyg .ttl03::after {
    width: 14px;
    height: 14px;
  }
}
.wysiwyg .ttl03::before {
  background-color: #ffae00;
  left: 0px;
}
.wysiwyg .ttl03::after {
  background-color: #94c636;
  left: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl03::after {
    left: 13px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl03::after {
    left: 11px;
  }
}
.wysiwyg .ttl04 {
  position: relative;
  padding: 12px 20px 12px 32px;
  background-color: #fcf2e0;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.6;
  border-radius: 5px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .ttl04 {
    padding: 10px 20px 10px 32px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl04 {
    padding: 8px 20px 8px 23px;
    font-size: 1.6rem;
  }
}
.wysiwyg .ttl04::before {
  content: "";
  width: 5px;
  background-color: #ffae00;
  border-radius: 50px;
  left: 13px;
  position: absolute;
  top: 14px;
  bottom: 14px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl04::before {
    left: 10px;
    top: 9px;
    bottom: 9px;
  }
}
.wysiwyg {
  /*キャッチコピーの処理*/
}
.wysiwyg .copy01 {
  font-size: 2.4rem;
  line-height: 1.7;
  color: #ff9000;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 834px) {
  .wysiwyg .copy01 {
    line-height: 1.5;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy01 {
    font-size: 1.8rem;
  }
}
.wysiwyg .copy02 {
  font-size: 2.7rem;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #ff9000;
  font-family: serif;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 834px) {
  .wysiwyg .copy02 {
    line-height: 1.5;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy02 {
    font-size: 2rem;
  }
}
.wysiwyg {
  /*本文テキスト・写真回り込み処理*/
}
.wysiwyg .text {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .wysiwyg .text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.wysiwyg .text--mincho {
  font-family: serif !important;
  font-weight: 500;
}
.wysiwyg .img-right {
  margin: 4px 0 20px 4%;
  width: auto;
  max-width: 36.5%;
  float: right;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right {
    margin: 0 auto 18px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.wysiwyg .img-right img {
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .img-right img {
    display: block;
    margin: 0 auto;
    border-radius: 5px;
  }
}
.wysiwyg .img-left {
  margin: 7px 4% 20px 0;
  width: auto;
  max-width: 36.5%;
  float: left;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left {
    margin: 0 auto 18px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.wysiwyg .img-left img {
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .img-left img {
    display: block;
    margin: 0 auto;
    border-radius: 5px;
  }
}
.wysiwyg {
  /*ボタン*/
}
.wysiwyg .btn-wrapper {
  text-align: center;
}
.wysiwyg .btn-wrapper a {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  padding: 10px 50px;
  background-color: #ff9000;
  border-radius: 50px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg .btn-wrapper a {
    padding: 8px 35px;
    background-position: center right 10px;
    background-size: 19px auto;
    font-size: 1.4rem;
  }
}
.wysiwyg .btn-wrapper a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .wysiwyg .btn-wrapper a:hover {
    opacity: 0.85;
  }
}
.wysiwyg {
  /*写真の処理*/
}
.wysiwyg .photo-3 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-3 {
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .wysiwyg .photo-3 {
    gap: 8px;
  }
}
.wysiwyg .photo-3::after {
  content: none;
}
.wysiwyg .photo-3 li {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-3 li {
    width: 100%;
    flex: auto;
  }
}
.wysiwyg .photo-3 li img {
  max-width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .photo-3 li img {
    border-radius: 5px;
  }
}
.wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-2 {
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .wysiwyg .photo-2 {
    gap: 8px;
  }
}
.wysiwyg .photo-2::after {
  content: none;
}
.wysiwyg .photo-2 li {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-2 li {
    width: 100%;
    flex: auto;
  }
}
.wysiwyg .photo-2 li img {
  max-width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .photo-2 li img {
    border-radius: 5px;
  }
}
.wysiwyg .photo-1 {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .photo-1 img {
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .wysiwyg .photo-1 img {
    border-radius: 5px;
  }
}
.wysiwyg .caption {
  display: block;
  margin-top: 10px;
  color: #222;
  font-size: 1.5rem;
  line-height: 1.3em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .caption {
    margin-top: 5px;
    font-size: 1.3rem;
  }
}
.wysiwyg {
  /*リスト*/
}
.wysiwyg .list-wrapper {
  padding: 30px 30px;
  background-color: #f8f8f8;
  list-style: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper {
    padding: 16px;
  }
}
.wysiwyg .list-wrapper li {
  position: relative;
  margin-top: 12px;
  padding-left: 24px;
  color: #222;
  line-height: 1.5em;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper li {
    margin-top: 7px;
    padding-left: 18px;
  }
}
.wysiwyg .list-wrapper li:first-child {
  margin-top: 0;
}
.wysiwyg .list-wrapper li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0px;
  width: 10px;
  height: 10px;
  background-color: #ffae00;
  border-radius: 50px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper li::before {
    width: 9px;
    height: 9px;
  }
}
.wysiwyg {
  /*テーブル*/
}
.wysiwyg .table {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-collapse: collapse;
}
.wysiwyg .table thead th {
  padding: 10px;
  font-size: 1.5rem;
  line-height: 1.3em;
  color: #fff;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background-color: #ff9000;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table thead th {
    padding: 8px 5px 6px;
    font-size: 1.3rem;
  }
}
.wysiwyg .table th {
  padding: 15px;
  color: #222;
  font-size: 1.5rem;
  line-height: 1.3em;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table th {
    padding: 8px 5px 6px;
    font-size: 1.3rem;
  }
}
.wysiwyg .table td {
  padding: 15px;
  font-size: 1.5rem;
  line-height: 1.3em;
  vertical-align: middle;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table td {
    padding: 8px 5px 6px;
    font-size: 1.3rem;
  }
}
.wysiwyg {
  /*youtube*/
}
.wysiwyg .youtube-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.wysiwyg .youtube-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.wysiwyg {
  /*以下テンプレート外*/
}
.wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg ul {
  padding-left: 25px;
  list-style-type: disc;
}
.wysiwyg ol {
  margin: 1em 0;
  padding-left: 25px;
  list-style-type: decimal;
}
.wysiwyg blockquote {
  padding-left: 1em;
}
.wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
.wysiwyg hr {
  display: block;
}
.wysiwyg em {
  font-style: italic !important;
}
.wysiwyg strong {
  font-weight: bold !important;
}
.wysiwyg em strong, .wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

/*--------------------------------------------------------
button
----------------------------------------------------------*/
.btn-base {
  font-size: 1.7rem;
  display: block;
  background-color: #444444;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 24px 40px 24px;
  line-height: 1.3;
  border-radius: 100px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 20px top 50%;
}
@media screen and (min-width: 1025px) {
  .btn-base:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 834px) {
  .btn-base {
    font-size: 1.6rem;
    padding: 21px 40px 21px;
  }
}
@media screen and (max-width: 599px) {
  .btn-base {
    font-size: 1.5rem;
    padding: 18px 35px 17px;
    background-position: right 17px top 50%;
  }
}
.btn-base--back {
  background-image: url(../img/common/arw_white_back.svg);
  background-position: left 20px top 50%;
}
.btn-base--top {
  max-width: 300px;
}

/*--------------------------------------------------------
pagination
----------------------------------------------------------*/
.pagination {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .pagination {
    margin-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .pagination__list {
    gap: 5px;
  }
}
.pagination__list > li.active .pagination__link {
  color: #fff;
  background-color: #fb8e00;
}
.pagination__list > li.dot {
  padding: 0 5px;
  color: #fb8e00;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .pagination__list > li.dot {
    padding: 0 3px;
  }
}
@media screen and (max-width: 320px) {
  .pagination__list > li.dot {
    padding: 0;
  }
}
.pagination__link {
  display: block;
  width: 50px;
  height: 50px;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.8rem;
  color: #fb8e00;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  background-color: #f3f3f3;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .pagination__link {
    width: 46px;
    height: 46px;
    font-size: 1.6rem;
    line-height: 46px;
  }
}
@media screen and (max-width: 599px) {
  .pagination__link {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    line-height: 36px;
  }
}
@media screen and (min-width: 1025px) {
  .pagination__link:hover {
    opacity: 0.6;
  }
}
.pagination__prev, .pagination__next {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.7rem;
  color: #333;
  font-weight: normal;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .pagination__prev, .pagination__next {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .pagination__prev, .pagination__next {
    font-size: 1.4rem;
  }
}
.pagination__prev::before, .pagination__prev::after, .pagination__next::before, .pagination__next::after {
  position: absolute;
  transition: 0.3s;
}
.pagination__prev {
  padding-left: 14px;
  margin-right: 16px;
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    padding-left: 12px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 320px) {
  .pagination__prev {
    padding-left: 10px;
    margin-right: 6px;
  }
}
.pagination__prev::before {
  content: "<";
  left: 0;
}
@media screen and (min-width: 1025px) {
  .pagination__prev:hover::before {
    left: -4px;
  }
}
.pagination__next {
  padding-right: 14px;
  margin-left: 16px;
}
@media screen and (max-width: 599px) {
  .pagination__next {
    padding-right: 12px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 320px) {
  .pagination__next {
    padding-right: 10px;
    margin-left: 6px;
  }
}
.pagination__next::before {
  content: ">";
  right: 0;
}
@media screen and (min-width: 1025px) {
  .pagination__next:hover::before {
    right: -4px;
  }
}

/* =====================================================

_form

===================================================== */
/*　全体共通　*/
input,
button,
textarea,
input[type=text],
input[type=search],
input[type=tel],
input[type=email],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}
input:focus,
button:focus,
textarea:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=email]:focus,
select:focus {
  outline: none !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
input::-webkit-input-placeholder,
button::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #a1a1a1;
}
input::-moz-placeholder,
button::-moz-placeholder,
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
select::-moz-placeholder {
  color: #a1a1a1;
  opacity: 1;
}
input:-ms-input-placeholder,
button:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #a1a1a1 !important;
}

textarea {
  resize: vertical;
}

input[type=radio],
input[type=checkbox] {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

input[type=submit],
input[type=button],
label,
button {
  cursor: pointer;
}

/*--リセット ここまで--*/
/* ************************************************************
共通フォームスタイル▼▼▼▼▼▼
・お問い合わせ
・来店予約
・資料請求
**************************************************************/
/*共通処理*/
#entry input,
#entry textarea,
#entry select {
  width: 100%;
  background-color: #f1f1f1;
  padding: 16px 24px 17px;
  resize: vertical;
  box-sizing: border-box;
  font-weight: normal;
  border-radius: 3px;
}
@media screen and (max-width: 834px) {
  #entry input,
  #entry textarea,
  #entry select {
    padding: 14px 20px 15px;
  }
}
@media screen and (max-width: 599px) {
  #entry input,
  #entry textarea,
  #entry select {
    padding: 12px 16px 13px;
  }
}
#entry input::-moz-placeholder, #entry textarea::-moz-placeholder, #entry select::-moz-placeholder {
  color: #a1a1a1;
  font-weight: 400;
}
#entry input::placeholder,
#entry textarea::placeholder,
#entry select::placeholder {
  color: #a1a1a1;
  font-weight: 400;
}
#entry input,
#entry textarea,
#entry select {
  /* Edge */
}
#entry input::-ms-input-placeholder,
#entry textarea::-ms-input-placeholder,
#entry select::-ms-input-placeholder {
  color: #a1a1a1;
}
#entry input:focus,
#entry textarea:focus,
#entry select:focus {
  outline: none !important;
  box-shadow: none;
}
#entry .select-wrapper {
  position: relative;
}
#entry .select-wrapper::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 7px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #444;
}
@media screen and (max-width: 599px) {
  #entry .select-wrapper::after {
    right: 16px;
  }
}
#entry #details {
  padding-right: 48px;
  background-color: #faf3e3;
}
@media screen and (max-width: 599px) {
  #entry #details {
    padding-right: 40px;
  }
}
#entry #details::-ms-expand {
  display: none;
}
#entry #birth01 {
  width: 150px;
}
#entry #birth02,
#entry #birth03 {
  width: 100px;
}
#entry textarea {
  padding: 20px;
  vertical-align: top;
}

.form-tbl-wd300 {
  display: flex;
  align-items: center;
  flex: 1;
}
.form-tbl-wd300 input {
  max-width: 300px;
}
@media screen and (max-width: 599px) {
  .form-tbl-wd300 input {
    width: 100%;
  }
}
.form-tbl-wd300 span {
  margin-left: 10px;
  display: inline-block;
}
.form-tbl-wd300.start {
  margin: 16px 0 7px 45px;
}
@media screen and (max-width: 1024px) {
  .form-tbl-wd300.start {
    margin: 6px 0 0 40px;
  }
}

.form-tbl {
  width: 100%;
}
.form-tbl tr {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.form-tbl tr:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .form-tbl tr:not(:last-child) {
    margin-bottom: 40px;
  }
}
.form-tbl th {
  position: relative;
  width: 280px;
  font-size: 1.7rem;
  text-align: left;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .form-tbl th {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl th {
    font-size: 1.6rem;
  }
}
.form-tbl td {
  font-weight: 500;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .form-tbl td {
    display: block;
    border-bottom: none;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl td {
    font-size: 1.6rem;
  }
}
.form-tbl--conf td {
  word-break: break-all;
}

/*共通必須項目*/
.form-must {
  display: inline-block;
  padding: 4px 0 5px;
  width: 50px;
  margin-left: 12px;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  background-color: #e11d1d;
  border-radius: 3px;
}

/*共通ラジオボタン リスト*/
.form-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
@media screen and (max-width: 1024px) {
  .form-radio-list {
    gap: 8px;
  }
}
.form-radio-list > li {
  width: 100%;
  line-height: 1.4;
}
.form-radio-list > li:last-child {
  margin-bottom: 0;
}
.form-radio-list > li input[type=radio] {
  display: none;
}
.form-radio-list > li label {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 4px 0 4px 45px;
}
@media screen and (max-width: 1024px) {
  .form-radio-list > li label {
    padding-left: 40px;
  }
}
.form-radio-list > li label:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: #e5e5e5;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .form-radio-list > li label:before {
    width: 28px;
    height: 28px;
  }
}
.form-radio-list > li input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 7px;
  left: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fb8e00;
}
@media screen and (max-width: 1024px) {
  .form-radio-list > li input[type=radio]:checked + label:after {
    top: 6px;
    left: 6px;
    width: 16px;
    height: 16px;
  }
}

/*共通チェックボックス リスト*/
.form-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
@media screen and (max-width: 599px) {
  .form-check-list {
    gap: 15px;
  }
}
.form-check-list > li {
  width: 100%;
}
.form-check-list > li input[type=checkbox] {
  display: none;
}
.form-check-list > li label {
  line-height: 1.4;
  padding: 5px 0 0 45px;
  position: relative;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 599px) {
  .form-check-list > li label {
    padding: 4px 0 0 40px;
  }
}
.form-check-list > li label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: #e4e4e4;
  border-radius: 2px;
}
@media screen and (max-width: 599px) {
  .form-check-list > li label::before {
    width: 28px;
    height: 28px;
  }
}
.form-check-list > li input[type=checkbox]:checked + label::before {
  background-color: #ffae00;
}
.form-check-list > li input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 11px;
  width: 10px;
  height: 16px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-135deg);
}
@media screen and (max-width: 599px) {
  .form-check-list > li input[type=checkbox]:checked + label::after {
    top: 3px;
    left: 9px;
  }
}

.form-birth {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .form-birth {
    flex-direction: column;
    gap: 10px;
  }
}
.form-birth li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*住所*/
.form-address-list > li {
  margin-bottom: 14px;
}
.form-address-list > li:last-child {
  margin-bottom: 0;
}
.form-address-list__select {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__select {
    flex-wrap: wrap;
  }
}
.form-address-list__select span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__select span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__select select {
  width: calc(100% - 170px) !important;
  max-width: 300px;
}
@media screen and (max-width: 599px) {
  .form-address-list__select select {
    width: 100% !important;
    max-width: 100%;
  }
}
.form-address-list__text {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__text {
    flex-wrap: wrap;
  }
}
.form-address-list__text span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__text span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__text input {
  width: calc(100% - 170px) !important;
}
@media screen and (max-width: 599px) {
  .form-address-list__text input {
    width: 100% !important;
    max-width: 100%;
  }
}

.form-buy-year {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-buy-year {
    flex-wrap: wrap;
  }
}
.form-buy-year__text {
  margin-right: 25px;
}
@media screen and (max-width: 599px) {
  .form-buy-year__text {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.form-buy-year > select {
  max-width: 220px !important;
}

/*お名前/フリガナ*/
.form-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.form-name-list > li {
  width: 360px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-name-list > li {
    width: 100%;
  }
}
.form-name-list > li span {
  display: block;
  margin-right: 10px;
  width: 50px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .form-name-list > li span {
    font-size: 1.5rem;
    width: 40px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.form-address-post {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-address-post input {
  max-width: 260px !important;
}
@media screen and (max-width: 599px) {
  .form-address-post input {
    max-width: 180px !important;
  }
}
.form-address-post button {
  width: 160px;
  background-color: #555555;
  border-radius: 3px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  padding: 15px 10px 13px;
}
@media screen and (min-width: 1025px) {
  .form-address-post button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .form-address-post button {
    width: 110px;
    padding: 15px 5px;
    font-size: 1.5rem;
  }
}

.form-notice-text {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .form-notice-text {
    font-size: 1.4rem;
  }
}

.form-agreement {
  display: grid;
  place-items: center;
  place-content: center;
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 36px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.13);
}
@media screen and (max-width: 1024px) {
  .form-agreement {
    margin-bottom: 30px;
    padding: 28px;
  }
}
@media screen and (max-width: 599px) {
  .form-agreement {
    margin-bottom: 20px;
    padding: 20px;
  }
}
.form-agreement .form-error-text {
  font-weight: 500;
}
.form-agreement input[type=checkbox] {
  display: none;
}
.form-agreement label {
  line-height: 1.4;
  padding: 5px 0 0 45px;
  position: relative;
  letter-spacing: 0;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .form-agreement label {
    padding: 3px 0 0 36px;
  }
}
.form-agreement label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: #e4e4e4;
  border-radius: 3px;
}
@media screen and (max-width: 1024px) {
  .form-agreement label::before {
    width: 28px;
    height: 28px;
  }
}
.form-agreement input[type=checkbox]:checked + label::before {
  background: #fb8e00;
}
.form-agreement input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 11px;
  width: 10px;
  height: 16px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-135deg);
}
@media screen and (max-width: 1024px) {
  .form-agreement input[type=checkbox]:checked + label::after {
    top: 4px;
    left: 9px;
  }
}

.form-agreement-text {
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .form-agreement-text {
    margin-bottom: 14px;
  }
}

.form-btn {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 370px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .form-btn {
    max-width: 300px;
  }
}
.form-btn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 1025px) {
  .form-btn:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.form-btn input[type=submit] {
  display: block;
  width: 100%;
  height: 70px;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  background: linear-gradient(90deg, #fe9b0e 0%, #ffbe33 100%);
  border-radius: 100vmax;
}
@media screen and (max-width: 1024px) {
  .form-btn input[type=submit] {
    height: 64px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .form-btn input[type=submit] {
    height: 60px;
  }
}

.form-corrected-btn {
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 220px;
  height: 64px;
  margin: 15px auto 0;
  font-size: 1.7rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  background-color: #acacac;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 20px top 50%;
  transition: 0.3s;
  border-radius: 100vmax;
}
@media screen and (max-width: 599px) {
  .form-corrected-btn {
    height: 57px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .form-corrected-btn:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

.form-error {
  margin-bottom: 30px;
  padding: 30px;
  color: #e82a2a;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  background-color: #fcd5d5;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .form-error {
    margin-bottom: 20px;
    padding: 20px;
  }
}

.form-error-text {
  margin-top: 10px;
  color: #e82a2a;
  line-height: 1.2;
}

.form-send {
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .form-send {
    font-size: 1.5rem;
  }
}
.form-send dt {
  margin-bottom: 20px;
  font-size: 2.7rem;
  color: #fb8e00;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .form-send dt {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
}

.form-send-btn {
  max-width: 220px;
  margin: 0 auto;
}

/*--------------------------------------------------------
title
----------------------------------------------------------*/
.base-title01 {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .base-title01 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title01 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 2.5rem;
  }
}
.base-title01::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #fb8e00;
  border-radius: 100vmax;
}
@media screen and (max-width: 1024px) {
  .base-title01::before {
    width: 44px;
  }
}
@media screen and (max-width: 599px) {
  .base-title01::before {
    width: 36px;
    height: 3px;
  }
}

.base-title02 {
  position: relative;
  margin-bottom: 22px;
  padding-left: 20px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .base-title02 {
    padding-left: 18px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title02 {
    margin-bottom: 17px;
    padding-left: 16px;
    font-size: 2.1rem;
  }
}
.base-title02::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #fb8e00;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .base-title02::before {
    top: 1px;
    width: 4px;
  }
}

.base-title03 {
  position: relative;
  margin-bottom: 30px;
  padding: 12px 34px 14px;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  background: linear-gradient(to right, #fe9b0e, #ffbe33);
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .base-title03 {
    margin-bottom: 20px;
    padding: 10px 30px 12px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title03 {
    margin-bottom: 15px;
    padding: 9px 24px 11px;
    font-size: 1.9rem;
    border-radius: 4px;
  }
}
.base-title03::before {
  content: "";
  position: absolute;
  width: 4px;
  height: calc(100% - 24px);
  top: 0;
  bottom: 0;
  left: 13px;
  margin: auto;
  background-color: #fff;
  border-radius: 100vmax;
}
@media screen and (max-width: 599px) {
  .base-title03::before {
    width: 3px;
    height: calc(100% - 22px);
    left: 10px;
  }
}

.base-title04 {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 30px;
  font-size: 3.1rem;
  color: #333;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .base-title04 {
    margin-bottom: 30px;
    padding-bottom: 25px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title04 {
    margin-bottom: 25px;
    padding-bottom: 20px;
    font-size: 2.3rem;
  }
}
.base-title04::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #fe9b0e, #ffbe33);
  border-radius: 100vmax;
}
@media screen and (max-width: 1024px) {
  .base-title04::before {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .base-title04::before {
    width: 60px;
    height: 4px;
  }
}

.disc-list li {
  position: relative;
  padding-left: 24px;
}
.disc-list li:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .disc-list li:not(:last-child) {
    margin-bottom: 4px;
  }
}
.disc-list li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 9px;
  left: 0;
  background-color: #fb8e00;
  border-radius: 50%;
}
.disc-list.green li::before {
  background-color: #93c434;
}
.disc-list.bg {
  padding: 34px 35px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 1024px) {
  .disc-list.bg {
    padding: 26px 30px;
  }
}
@media screen and (max-width: 599px) {
  .disc-list.bg {
    padding: 16px 22px;
  }
}
.disc-list.border {
  padding: 22px 28px;
  border: 1px solid #d1d1d1;
}
@media screen and (max-width: 1024px) {
  .disc-list.border {
    padding: 16px 24px;
  }
}
@media screen and (max-width: 599px) {
  .disc-list.border {
    padding: 12px 20px;
  }
}

.square-list li {
  position: relative;
  padding-left: 24px;
}
.square-list li:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .square-list li:not(:last-child) {
    margin-bottom: 4px;
  }
}
.square-list li::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  top: 8px;
  left: 0;
  background-color: #fb8e00;
}
@media screen and (max-width: 599px) {
  .square-list li::before {
    width: 11px;
    height: 11px;
    top: 9px;
  }
}
.square-list.bg {
  padding: 24px 28px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 1024px) {
  .square-list.bg {
    padding: 18px 24px;
  }
}
@media screen and (max-width: 599px) {
  .square-list.bg {
    padding: 14px 20px;
  }
}

.alphabet-list {
  padding-left: 1.3em;
}
.alphabet-list li {
  list-style-type: lower-latin;
}
.alphabet-list li:not(:last-child) {
  margin-bottom: 3px;
}

/*--------------------------------------------------------
text
----------------------------------------------------------*/
.text-base {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.9;
}

.text-caution {
  text-indent: -1em;
  padding-left: 1em;
}

.text-link {
  color: #ffae00;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .text-link:hover {
    text-decoration: none;
  }
}

.text-color-red {
  color: #e82a2a;
}

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

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

.text-right {
  text-align: right;
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  position: relative;
  background-color: #f8f8f8;
  background-image: url(../img/top/main_bg.webp);
  background-repeat: no-repeat;
  background-position: center 140px;
  display: block;
  padding: 0px 35px 85px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .top-main {
    padding-bottom: 50px;
    background-size: 120% auto;
  }
}
@media screen and (max-width: 834px) {
  .top-main {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    padding: 70px 0px 20px;
    background-size: 148% auto;
  }
}
.top-main__image {
  position: relative;
  text-align: center;
  margin-bottom: 7px;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 1400px) {
  .top-main__image {
    width: 94%;
    margin: 0 auto 7px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__image {
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main__image {
    margin-bottom: 25px;
  }
}
.top-main__bg {
  position: absolute;
}
.top-main__bg.left {
  top: 400px;
  left: calc(50% - 860px);
}
@media screen and (max-width: 1300px) {
  .top-main__bg.left {
    width: 25%;
    top: 40%;
    left: auto;
    right: 82%;
  }
}
@media screen and (max-width: 599px) {
  .top-main__bg.left {
    width: 31%;
    top: 47%;
    right: 76%;
  }
}
.top-main__bg.right {
  right: calc(50% - 820px);
  top: 430px;
}
@media screen and (max-width: 1300px) {
  .top-main__bg.right {
    width: 22%;
    top: 45%;
    right: auto;
    left: 80%;
  }
}
@media screen and (max-width: 599px) {
  .top-main__bg.right {
    width: 30%;
    top: 52%;
    left: 76%;
  }
}
.top-main__catch {
  position: relative;
  max-width: 902px;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 1400px) {
  .top-main__catch {
    max-width: 65%;
  }
}
@media screen and (max-width: 834px) {
  .top-main__catch {
    max-width: 70%;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch {
    max-width: 86%;
  }
}
.top-main__catch__en {
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .top-main__catch__en {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch__en {
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__catch__jp {
    max-width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch__jp {
    max-width: 76%;
  }
}

.top-workstyle {
  background: #96C736;
  background: linear-gradient(180deg, rgb(150, 199, 54) 0%, rgb(227, 225, 51) 66%, rgb(182, 199, 32) 100%);
  border-radius: 10px;
  overflow: hidden;
}

.top-workstyle-inner {
  padding: 140px var(--side-padding) 150px;
  background-image: url(../img/top/workstyle_bg2.webp), url(../img/top/workstyle_bg.webp), url(../img/top/workstyle_bg.webp), url(../img/top/workstyle_bg03.webp), url(../img/top/workstyle_bg02.webp), url(../img/top/workstyle_bg.webp), url(../img/top/workstyle_bg.webp);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 324px auto, 436px auto, 436px auto, auto, auto, 324px auto, 436px auto;
  background-position: right 15% bottom 3%, right 20% bottom 27%, left 7% bottom 5%, right 15% top 110px, left 14% top 170px, right 10% top 300px, left 17% top -150px;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-inner {
    padding: 100px var(--side-padding) 100px;
    background-size: 224px auto, 336px auto, 336px auto, 200px auto, 200px auto, 224px auto, 336px auto;
    background-position: right 10% bottom 3%, right 20% bottom 27%, left 4% bottom 5%, right 5% top 80px, left 5% top 80px, right 10% top 300px, left 17% top -150px;
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-inner {
    padding: 100px var(--side-padding) 100px;
    background-size: 224px auto, 336px auto, 336px auto, 150px auto, 150px auto, 200px auto, 240px auto;
    background-position: right 10% bottom 3%, right 20% bottom 27%, left 4% bottom 5%, right 5% top 80px, left 5% top 80px, right 10% top 300px, left 17% top -130px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-inner {
    padding: 70px var(--side-padding) 70px;
    background-size: 200px auto, 136px auto, 136px auto, 100px auto, 80px auto, 200px auto, 170px auto;
    background-position: right 5% bottom 5px, right 5% bottom 25%, left 4% bottom 180px, right 5% top 10px, left 10px top 20px, right 10% top 300px, left 17% top -100px;
  }
}

.top-workstyle-head__copy {
  margin-bottom: 45px;
  text-align: center;
}
.top-workstyle-head__copy img {
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-head__copy {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-head__copy {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-head__copy {
    margin-bottom: 12px;
  }
  .top-workstyle-head__copy img {
    max-width: 170px;
  }
}
.top-workstyle-head__title {
  text-align: center;
  color: #fff;
  font-family: "Roboto", sans-serif !important;
  font-size: 11.3rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  padding-left: 140px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-head__title {
    font-size: 9.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-head__title {
    font-size: 9rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 834px) {
  .top-workstyle-head__title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-head__title {
    font-size: 5.4rem;
    margin-bottom: 25px;
  }
}
.top-workstyle-head__title span {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 500;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-head__title span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-head__title span {
    margin-top: 15px;
    border-left: 0;
    display: block;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-head__title span {
    margin-top: 13px;
    letter-spacing: 0.03em;
  }
}
.top-workstyle-head__text {
  margin-bottom: 70px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
  color: #333333;
}
@media screen and (max-width: 1024px) {
  .top-workstyle-head__text {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-head__text {
    font-size: 1.5rem;
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 40px;
  }
}

.top-workstyle-links {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 45px;
  max-width: 1660px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-links {
    gap: 50px 20px;
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-links {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-links {
    gap: 40px 10px;
    margin: 0 auto 40px;
  }
}

.top-workstyle-item {
  width: calc((100% - 135px) / 4);
}
@media screen and (max-width: 1500px) {
  .top-workstyle-item {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-item {
    width: calc((100% - 10px) / 2);
  }
}
.top-workstyle-item > a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.top-workstyle-item > a::before {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #444444;
  border-radius: 100px;
  z-index: 1;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-item > a::before {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-item > a::before {
    width: 30px;
    height: 30px;
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-item > a::before {
    bottom: 0;
    right: 0;
    background-image: none;
    background-color: transparent;
    width: 7px;
    height: 7px;
    border-radius: 0;
    border-style: solid;
    border-width: 7px 7px;
    border-color: transparent;
    border-bottom-color: #ffae00;
    border-right-color: #ffae00;
    border-bottom-right-radius: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .top-workstyle-item > a:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.top-workstyle-item__photo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-item__photo {
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-item__photo {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.top-workstyle-item__photo::before {
  content: "";
  display: block;
  padding-top: 115%;
}
.top-workstyle-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-workstyle-item__job {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #ffae00;
  border-radius: 3px;
  border-top-right-radius: 0;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-feature-settings: normal;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 25px 10px;
  letter-spacing: 0.05em;
  max-height: 70%;
  line-height: 1.1;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-item__job {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-item__job {
    font-size: 1.6rem;
    padding: 15px 10px;
    left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-item__job {
    font-size: 1.5rem;
    padding: 15px 6px;
  }
}
.top-workstyle-item__job::before {
  content: "";
  width: 10px;
  height: 20px;
  position: absolute;
  top: 0;
  right: -10px;
  background-image: url(../img/top/workstyle_label.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-workstyle-item__style {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 14px 20px;
  text-align: center;
  width: calc(100% - 75px);
  max-width: 250px;
  background-color: #fff;
  border: 2px solid #fb8e00;
  border-left: none;
  border-radius: 200px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 1.8rem;
  color: #ed8000;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-item__style {
    bottom: 20px;
    font-size: 1.7rem;
    padding: 14px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .top-workstyle-item__style {
    width: calc(100% - 45px);
    font-size: 1.6rem;
    bottom: 10px;
    padding: 14px 10px 11px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-item__style {
    position: relative;
    bottom: auto;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.top-workstyle-item__style span {
  position: absolute;
  top: -13px;
  left: 15px;
  background-color: #fb8e00;
  border-radius: 200px;
  font-size: 1.2rem;
  color: #fff;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  padding: 4px 15px 2px;
}
@media screen and (max-width: 1024px) {
  .top-workstyle-item__style span {
    left: 10px;
  }
}

.top-workstyle-more {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-workstyle-more {
    width: 86%;
  }
}
@media screen and (max-width: 834px) {
  .top-workstyle-more {
    width: 95%;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-more {
    width: 100%;
  }
}
.top-workstyle-more__title {
  margin-bottom: 25px;
  font-size: 4.5rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  color: #333;
  line-height: 1;
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .top-workstyle-more__title {
    font-size: 4.1rem;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-more__title {
    font-size: 3.5rem;
    padding-left: 22px;
  }
}
.top-workstyle-more__title::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 11px;
  height: 11px;
  background-color: #444;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .top-workstyle-more__title::before {
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-more__title::before {
    width: 8px;
    height: 8px;
    top: 13px;
  }
}
.top-workstyle-more__title--white {
  color: #fff;
}
.top-workstyle-more__title__sub {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  padding-left: 20px;
  margin-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 599px) {
  .top-workstyle-more__title__sub {
    margin-top: 8px;
    display: block;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    font-size: 1.5rem;
  }
}

.top-workstyle-more-list {
  margin-bottom: 50px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
@media screen and (max-width: 1500px) {
  .top-workstyle-more-list {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-more-list {
    margin-bottom: 30px;
    border-radius: 5px;
    padding: 10px;
    gap: 5px;
  }
}
.top-workstyle-more-list > li {
  width: calc((100% - 12px) / 3);
}
@media screen and (max-width: 1024px) {
  .top-workstyle-more-list > li {
    width: calc((100% - 6px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-more-list > li {
    width: calc((100% - 5px) / 2);
  }
}
.top-workstyle-more-list > li > a {
  width: 100%;
  height: 100%;
  display: block;
  text-align: left;
  background-color: #fff;
  border-radius: 3px;
  padding: 18px 20px 18px 60px;
  font-size: 1.8rem;
  color: #333333;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-workstyle-more-list > li > a {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-workstyle-more-list > li > a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    padding: 9px 6px 9px 33px;
    line-height: 1.3;
    min-height: 54px;
  }
}
.top-workstyle-more-list > li > a::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 19px;
  width: 30px;
  height: 30px;
  background-color: #96c636;
  border-radius: 30px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center;
}
@media screen and (max-width: 599px) {
  .top-workstyle-more-list > li > a::before {
    top: 0;
    bottom: 0;
    margin: auto;
    left: 7px;
    width: 19px;
    height: 19px;
    background-size: 8px auto;
  }
}
@media screen and (min-width: 1025px) {
  .top-workstyle-more-list > li > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

.top-workstyle-btn {
  max-width: var(--btn-size);
  margin: 0 auto;
}

.top-now {
  position: relative;
  z-index: 1;
  padding: 208px var(--side-padding) 90px;
  background-image: url(../img/top/now_bg01.webp), url(../img/top/now_bg02.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: left 8% top 100px, right 5% top -30px;
}
@media screen and (max-width: 1500px) {
  .top-now {
    padding-top: 150px;
    padding-bottom: 70px;
    background-size: 400px auto, 500px auto;
    background-position: left 8% top 70px, right 5% top -30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-now {
    padding-top: 130px;
    padding-bottom: 50px;
    background-size: 350px auto, 400px auto;
    background-position: left 8% top 70px, right 5% top 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-now {
    padding-top: 110px;
    padding-bottom: 30px;
    background-size: 70% auto, 60% auto;
    background-position: left 10px top 30px, right -70% top 40px;
  }
}

.top-now-inner {
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-now-inner {
    flex-wrap: wrap;
  }
}

.top-now-head {
  width: 450px;
}
@media screen and (max-width: 1500px) {
  .top-now-head {
    width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .top-now-head {
    width: 100%;
  }
}
.top-now-head__copy {
  margin-bottom: 40px;
}
@media screen and (max-width: 1500px) {
  .top-now-head__copy {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-now-head__copy {
    margin-bottom: 20px;
  }
}
.top-now-head__copy img {
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 599px) {
  .top-now-head__copy img {
    max-width: 170px;
  }
}
.top-now-head__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1500px) {
  .top-now-head__title {
    margin-bottom: 30px;
  }
}
.top-now-head__title img {
  width: 100%;
  max-width: 325px;
}
@media screen and (max-width: 1500px) {
  .top-now-head__title img {
    max-width: 280px;
  }
}
@media screen and (max-width: 599px) {
  .top-now-head__title img {
    max-width: 200px;
  }
}
.top-now-head__text {
  margin-bottom: 40px;
  font-size: 1.7rem;
}
@media screen and (max-width: 1500px) {
  .top-now-head__text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-now-head__text {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-now-head__text {
    margin-bottom: 30px;
  }
}
.top-now-head__btn {
  max-width: var(--btn-size);
}
@media screen and (max-width: 1024px) {
  .top-now-head__btn {
    display: none;
  }
}
.top-now-head__btn2 {
  max-width: var(--btn-size);
  margin: 40px auto 0;
  display: none;
}
@media screen and (max-width: 1024px) {
  .top-now-head__btn2 {
    display: block;
  }
}

.top-now-data {
  width: calc(100% - 450px);
}
@media screen and (max-width: 1500px) {
  .top-now-data {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 1024px) {
  .top-now-data {
    width: 100%;
  }
}

.top-now-list {
  display: flex;
  gap: 55px;
}
@media screen and (max-width: 1500px) {
  .top-now-list {
    gap: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .top-now-list {
    gap: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-now-list {
    gap: 40px;
    flex-wrap: wrap;
  }
}

.top-now-item {
  width: calc((100% - 110px) / 3);
}
@media screen and (max-width: 1500px) {
  .top-now-item {
    width: calc((100% - 70px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .top-now-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-now-item {
    width: 100%;
  }
}
.top-now-item > a {
  display: block;
}
@media screen and (min-width: 1025px) {
  .top-now-item > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
  .top-now-item > a:hover .top-now-item__photo::after {
    background-color: rgba(0, 0, 0, 0.05);
  }
}
.top-now-item__photo {
  margin-bottom: 25px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .top-now-item__photo {
    border-radius: 5px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-now-item__photo {
    margin-bottom: 15px;
  }
}
.top-now-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
@media screen and (max-width: 599px) {
  .top-now-item__photo::before {
    padding-top: 60%;
  }
}
.top-now-item__photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.top-now-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-now-item__date {
  margin-bottom: 7px;
  font-size: 1.8rem;
  color: #fb8e00;
  font-family: "Roboto", sans-serif !important;
  line-height: 1.3;
}
@media screen and (max-width: 1500px) {
  .top-now-item__date {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-now-item__date {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }
}
.top-now-item__text {
  margin-bottom: 30px;
  font-size: 2.1rem;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1500px) {
  .top-now-item__text {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-now-item__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-now-item__text {
    font-size: 1.6rem;
  }
}
.top-now-item__btn {
  max-width: 250px;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #fb8e00;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  border: 2px solid #fb8e00;
  border-radius: 200px;
  padding: 15px;
  background-image: url(../img/common/arw_orange.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: right 20px top 50%;
}
@media screen and (max-width: 1500px) {
  .top-now-item__btn {
    max-width: 180px;
    padding: 12px;
    background-size: 12px auto;
    background-position: right 12px top 50%;
  }
}
@media screen and (max-width: 599px) {
  .top-now-item__btn {
    padding: 10px;
  }
}

.top-careerpath {
  position: relative;
  margin-top: -50px;
  padding: 170px var(--side-padding) 380px;
  background-color: #fbf4e5;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(251, 245, 231) 17%, rgb(251, 245, 231) 88%, rgb(255, 255, 255) 100%);
  z-index: 0;
}
@media screen and (max-width: 1400px) {
  .top-careerpath {
    padding-top: 150px;
    padding-bottom: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .top-careerpath {
    padding-bottom: 280px;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath {
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath {
    padding-top: 100px;
  }
}
.top-careerpath::before, .top-careerpath::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 500px;
  left: 0;
  right: 0;
  pointer-events: none;
  background-repeat: no-repeat, no-repeat;
}
@media screen and (max-width: 1024px) {
  .top-careerpath::before, .top-careerpath::after {
    height: 350px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath::before, .top-careerpath::after {
    height: 300px;
  }
}
.top-careerpath::before {
  background-image: url(../img/top/carrer_bg01.webp), url(../img/top/carrer_bg02.webp);
  background-position: top 55px left 8%, top 50px right 5.5%;
  top: 0px;
}
@media screen and (max-width: 1024px) {
  .top-careerpath::before {
    background-position: top 35px left 3%, top 0px right 2.5%;
    background-size: 140px auto, 210px auto;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath::before {
    background-position: top 5px left 3%, top 50px right 15%;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath::before {
    background-position: top 2px left 1%, bottom 25px right -5%;
    background-size: 85px auto, 180px auto;
  }
}
.top-careerpath::after {
  background-image: url(../img/top/carrer_bg03.webp), url(../img/top/carrer_bg04.webp);
  background-position: bottom 210px left 6%, bottom 35px right 8%;
  bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .top-careerpath::after {
    background-position: bottom 50px left, bottom 100px right 3%;
    background-size: 180px auto, 65px auto;
    bottom: 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath::after {
    bottom: 450px;
    background-position: top 0px left 3%, bottom 0px right 3%;
    background-size: 150px auto, 65px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath::after {
    background-position: bottom 35px left -3%, top 160px right 4.5%;
    background-size: 100px auto, 50px auto;
    bottom: 0;
  }
}

.top-careerpath-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 50px;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .top-careerpath-inner {
    padding: 0px;
  }
}

.top-careerpath-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .top-careerpath-intro {
    flex-direction: column-reverse;
    margin-bottom: 30px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-intro {
    gap: 35px;
  }
}

.top-careerpath-visual {
  max-width: 668px;
  margin-right: 5%;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top-careerpath-visual {
    margin-left: -3%;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath-visual {
    width: 72%;
    margin-left: auto;
    margin-right: 0;
    margin-top: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-visual {
    width: 100%;
    margin: 0;
  }
}
.top-careerpath-visual img {
  width: 100%;
  height: auto;
}

.top-careerpath-content {
  margin-left: auto;
  padding-top: 45px;
  padding-right: 25px;
}
@media screen and (max-width: 1300px) {
  .top-careerpath-content {
    padding-right: 0px;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath-content {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-content {
    padding-left: 0;
  }
}
.top-careerpath-content__copy {
  margin-bottom: 45px;
}
@media screen and (max-width: 834px) {
  .top-careerpath-content__copy {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-content__copy {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-content__copy img {
    max-width: 170px;
  }
}
.top-careerpath-content__title {
  font-size: 5.8rem;
  line-height: 1.35;
  margin-bottom: 38px;
  font-weight: 400;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1300px) {
  .top-careerpath-content__title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-careerpath-content__title {
    font-size: 4.3rem;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath-content__title {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-content__title {
    line-height: 1.5;
    font-size: 3rem;
    margin-bottom: 15px;
  }
}
.top-careerpath-content__title--accent {
  color: #ff9000;
  margin-left: -6px;
}
.top-careerpath-content__text {
  font-size: 1.7rem;
  line-height: 1.95;
  color: #333;
  margin-bottom: 50px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-careerpath-content__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath-content__text {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-content__text {
    margin-bottom: 24px;
  }
}
.top-careerpath-content__btn {
  width: var(--btn-size);
}

.top-careerpath-bnr {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1500px) {
  .top-careerpath-bnr {
    gap: 2vw;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-bnr {
    gap: 10px;
    flex-direction: column;
  }
}
.top-careerpath-bnr__item {
  position: relative;
  display: block;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1400px) {
  .top-careerpath-bnr__item {
    height: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .top-careerpath-bnr__item {
    height: 210px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-bnr__item {
    height: auto;
    border-radius: 8px;
  }
}
.top-careerpath-bnr__item::before {
  background-color: #ff9000;
  background-image: url(../img/common/arw_white.svg);
  background-size: 13px auto;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  height: 50px;
  width: 50px;
  border-radius: 50px;
  right: 20px;
  bottom: 20px;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .top-careerpath-bnr__item::before {
    height: 44px;
    width: 44px;
    right: 12px;
    bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-bnr__item::before {
    height: 38px;
    width: 38px;
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .top-careerpath-bnr__item:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
  .top-careerpath-bnr__item:hover .top-careerpath-bnr__img img {
    transform: scale(1.05);
  }
}
.top-careerpath-bnr__img {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .top-careerpath-bnr__img {
    height: 140px;
  }
}
.top-careerpath-bnr__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 1024px) {
  .top-careerpath-bnr__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top-careerpath-bnr__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.top-careerpath-bnr__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.4;
}
.top-careerpath-bnr__en {
  font-family: "Roboto", sans-serif !important;
  font-size: 4.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-careerpath-bnr__en {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath-bnr__en {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-bnr__en {
    font-size: 2.8rem;
  }
}
.top-careerpath-bnr__jp {
  font-size: 2.3rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .top-careerpath-bnr__jp {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 834px) {
  .top-careerpath-bnr__jp {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-careerpath-bnr__jp {
    font-size: 1.6rem;
  }
}

.top-data {
  margin-top: -200px;
  position: relative;
  padding: 35px var(--side-padding);
}
@media screen and (max-width: 599px) {
  .top-data {
    margin-top: -80px;
  }
}
.top-data::before {
  background: #f9f9f9;
  content: "";
  height: 350px;
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .top-data::before {
    height: 40%;
  }
}

.top-data-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 90px 70px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(112, 88, 40, 0.12);
}
@media screen and (max-width: 1400px) {
  .top-data-inner {
    padding: 85px 3.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-data-inner {
    padding: 70px 3.5vw 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-data-inner {
    box-shadow: 0 0 20px rgba(112, 88, 40, 0.12);
    padding: 50px 3.5vw 40px;
  }
}
.top-data-inner::before {
  background-color: #fbf4e5;
  background: linear-gradient(180deg, rgb(254, 155, 14) 0%, rgb(255, 190, 51) 100%);
  content: "";
  height: 380px;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0px;
}
.top-data-inner::after {
  background-image: url(../img/top/data_bg02.webp), url(../img/top/data_bg01.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: top -160px right 10%, bottom left 28%;
  content: "";
  height: 380px;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0px;
}

.top-data-copy {
  position: relative;
  padding: 0px 22px;
  margin-bottom: 15px;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .top-data-copy {
    margin-bottom: 10px;
    padding: 0px 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-data-copy img {
    max-width: 170px;
  }
}

.top-data-head {
  position: relative;
  display: flex;
  padding: 0px 15px;
  align-items: last baseline;
  margin-bottom: 25px;
  gap: 5vw;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-data-head {
    gap: 4vw;
  }
}
@media screen and (max-width: 834px) {
  .top-data-head {
    gap: 1.7vw;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-data-head {
    padding: 0px 10px;
    gap: 15px;
    margin-bottom: 10px;
  }
}
.top-data-head__title {
  font-size: 10.5rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  display: flex;
  align-items: last baseline;
}
@media screen and (max-width: 1300px) {
  .top-data-head__title {
    font-size: 9.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-data-head__title {
    font-size: 9rem;
  }
}
@media screen and (max-width: 834px) {
  .top-data-head__title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-data-head__title {
    font-size: 5.8rem;
  }
}
.top-data-head__jp {
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 600;
  color: #333;
  padding-left: 25px;
  margin-left: 25px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-data-head__jp {
    padding-left: 18px;
    margin-left: 18px;
  }
}
@media screen and (max-width: 599px) {
  .top-data-head__jp {
    padding-left: 14px;
    padding-left: 14px;
    font-size: 1.6rem;
  }
}
.top-data-head__jp::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  height: 25px;
  width: 1px;
  left: 0;
  position: absolute;
  top: -2px;
}
@media screen and (max-width: 599px) {
  .top-data-head__jp::before {
    top: 0;
    height: 22px;
  }
}
.top-data-head__text {
  font-size: 1.7rem;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top-data-head__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-data-head__text {
    font-size: 1.5rem;
  }
}

.top-data-list {
  position: relative;
  display: flex;
  gap: 2.3vw;
  padding: 20px;
  margin-bottom: 30px;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .top-data-list {
    gap: 1.7vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-data-list {
    gap: 2.5vw;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-data-list {
    gap: 15px;
    padding: 15px 18px;
  }
}

.top-data-item {
  background-color: #fff;
  border-radius: 10px;
  flex: 1;
  padding: 40px 15px;
  box-shadow: 0 0 30px rgba(112, 88, 40, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .top-data-item {
    padding: 35px 15px 30px;
    box-shadow: 0 0 25px rgba(112, 88, 40, 0.12);
    flex: auto;
    width: calc((100% - 26px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-data-item {
    padding: 30px 10px 28px;
    width: 100%;
    box-shadow: 0 0 18px rgba(112, 88, 40, 0.12);
    border-radius: 8px;
  }
}
.top-data-item__ttl {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .top-data-item__ttl {
    font-size: 2.1rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 599px) {
  .top-data-item__ttl {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
}
.top-data-item__visual {
  max-width: 214px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .top-data-item__visual {
    max-width: 180px;
  }
}
.top-data-item__note {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-top: 20px;
  color: #858585;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .top-data-item__note {
    font-size: 1.2rem;
  }
}

.top-data-btn {
  width: var(--btn-size);
  margin: 0 auto;
}

.top-welfare {
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
  background-image: url(../img/top/welfare_bg01.webp), url(../img/top/welfare_bg02.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: top right 7.5%, bottom 15% right 36%;
  padding: 100px var(--side-padding) 120px;
}
@media screen and (max-width: 1024px) {
  .top-welfare {
    background-position: top 5% left 65%, top 42% right 10%;
    background-size: 520px auto, 70px auto;
  }
}
@media screen and (max-width: 834px) {
  .top-welfare {
    padding-top: 80px;
    padding-bottom: 85px;
    background-position: top 2% left 78%, top 44% right 5%;
    background-size: 450px auto, 70px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare {
    padding-bottom: 60px;
    background-position: top 1% left 78%, top 58% right 2.5%;
    background-size: 350px auto, 60px auto;
  }
}

.top-welfare-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  gap: 5vw;
}
@media screen and (max-width: 1024px) {
  .top-welfare-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 6vw;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare-inner {
    gap: 35px;
  }
}

.top-welfare-img {
  flex: 0 0 auto;
  width: 58vw;
  margin-left: calc(58% - 58vw);
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-welfare-img {
    width: 55vw;
    margin-left: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-welfare-img {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .top-welfare-img {
    width: calc(100% + 15px);
    margin-left: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare-img {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}
.top-welfare-img__ph {
  overflow: hidden;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .top-welfare-img__ph {
    height: 550px;
  }
}
@media screen and (max-width: 1024px) {
  .top-welfare-img__ph {
    height: 480px;
  }
}
@media screen and (max-width: 834px) {
  .top-welfare-img__ph {
    height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare-img__ph {
    height: 230px;
  }
}
.top-welfare-img__ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.top-welfare-img__ph img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-welfare-img__note {
  font-size: 1.4rem;
  margin-top: 18px;
  padding-left: 40px;
  color: #838383;
}
@media screen and (max-width: 1024px) {
  .top-welfare-img__note {
    padding-left: 20px;
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-welfare-img__note {
    text-align: right;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare-img__note {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.top-welfare-content {
  margin-left: auto;
  padding-right: 10px;
}
@media screen and (max-width: 1600px) {
  .top-welfare-content {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .top-welfare-content {
    margin-left: 0;
    padding-right: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .top-welfare-content {
    width: 100%;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare-content {
    padding-left: 0;
  }
}

.top-welfare__title {
  display: flex;
  align-items: last baseline;
  font-family: "Roboto", sans-serif !important;
  font-size: 9.8rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: #f18700;
  margin-bottom: 10px;
}
@media screen and (max-width: 1300px) {
  .top-welfare__title {
    font-size: 9.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-welfare__title {
    font-size: 9rem;
  }
}
@media screen and (max-width: 834px) {
  .top-welfare__title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare__title {
    font-size: 5.8rem;
    margin-bottom: 6px;
  }
}
.top-welfare__title .jp {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  margin-left: 25px;
  padding-left: 25px;
  border-left: 1px solid #d3d3d3;
}
@media screen and (max-width: 1300px) {
  .top-welfare__title .jp {
    margin-left: 15px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare__title .jp {
    font-size: 1.6rem;
    margin-left: 14px;
    padding-left: 14px;
  }
}
.top-welfare__copy {
  margin-bottom: 18px;
}
@media screen and (max-width: 599px) {
  .top-welfare__copy {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare__copy img {
    max-width: 170px;
  }
}
.top-welfare__lead {
  font-size: 3.4rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}
@media screen and (max-width: 1300px) {
  .top-welfare__lead {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 834px) {
  .top-welfare__lead {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare__lead {
    font-size: 2.3rem;
    margin-bottom: 16px;
  }
}
.top-welfare__text {
  margin-bottom: 35px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 1024px) {
  .top-welfare__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-welfare__text {
    margin-bottom: 25px;
  }
}

.top-welfare-btn {
  max-width: var(--btn-size);
}

/*--------------------------------------------------------
workstyle
----------------------------------------------------------*/
.workstyle-wrapper {
  background-color: #faf3e3;
  background-image: url(../img/common/contents_bg04.webp), url(../img/common/contents_bg03.webp), url(../img/common/contents_bg02.webp), url(../img/common/contents_bg01.webp);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: right 2% bottom 4%, left 4% bottom 4%, right 0 top 200px, left top;
}
@media screen and (max-width: 1500px) {
  .workstyle-wrapper {
    background-image: none;
  }
}
.workstyle-wrapper .page-contents {
  padding-bottom: 170px;
}
@media screen and (max-width: 1500px) {
  .workstyle-wrapper .page-contents {
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-wrapper .page-contents {
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-wrapper .page-contents {
    padding-bottom: 80px;
  }
}

.workstyle-anchor {
  margin-bottom: 90px;
  gap: 9px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1500px) {
  .workstyle-anchor {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-anchor {
    margin-bottom: 50px;
    gap: 5px;
  }
}
.workstyle-anchor > li {
  width: calc((100% - 18px) / 3);
}
@media screen and (max-width: 1024px) {
  .workstyle-anchor > li {
    width: calc((100% - 9px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .workstyle-anchor > li {
    width: calc((100% - 5px) / 2);
  }
}
.workstyle-anchor > li > a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: block;
  border-radius: 3px;
  padding: 20px 20px 20px 60px;
  line-height: 1.3;
  font-size: 1.8rem;
  color: #333333;
  font-weight: 500;
  position: relative;
}
.workstyle-anchor > li > a::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 20px;
  width: 30px;
  height: 30px;
  background-color: #ffbf27;
  background-image: url(../img/common/arw_white_bottom.svg);
  border-radius: 200px;
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .workstyle-anchor > li > a:hover {
    transform: translateY(2px);
    color: #ffae00;
  }
}
@media screen and (max-width: 1500px) {
  .workstyle-anchor > li > a {
    font-size: 1.7rem;
    padding: 18px 18px 18px 60px;
  }
  .workstyle-anchor > li > a::before {
    top: 14px;
    left: 17px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-anchor > li > a {
    font-size: 1.5rem;
    padding: 12px 10px 12px 37px;
    line-height: 1.3;
  }
  .workstyle-anchor > li > a::before {
    top: 12px;
    left: 10px;
    width: 20px;
    height: 20px;
    background-size: 10px auto;
  }
}

.workstyle-sec {
  margin-bottom: 90px;
}
@media screen and (max-width: 599px) {
  .workstyle-sec {
    margin-bottom: 60px;
  }
}
.workstyle-sec:last-of-type {
  margin-bottom: 0;
}

.workstyle-sec-title {
  margin-bottom: 40px;
  padding: 22px 22px 22px 0;
  display: flex;
  align-items: flex-start;
  background: #FE9B0E;
  background: linear-gradient(270deg, rgb(254, 155, 14) 0%, rgb(255, 190, 51) 100%);
  border-radius: 5px;
}
@media screen and (max-width: 1500px) {
  .workstyle-sec-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-sec-title {
    flex-wrap: wrap;
    padding: 10px 10px 14px 0;
    margin-bottom: 25px;
  }
}
.workstyle-sec-title__fix {
  margin-top: 3px;
  width: 160px;
  background-color: #ff9000;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #fff;
  text-align: center;
  font-size: 1.9rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  line-height: 1.2;
  padding: 7px 0 4px;
}
@media screen and (max-width: 1500px) {
  .workstyle-sec-title__fix {
    width: 140px;
    font-size: 1.7rem;
    padding: 5px 0 3px;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-sec-title__fix {
    margin-top: 2px;
    font-size: 1.6rem;
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-sec-title__fix {
    width: 113px;
    font-size: 1.4rem;
    padding: 4px 0 1px;
    margin-bottom: 5px;
  }
}
.workstyle-sec-title__text {
  width: calc(100% - 160px);
  display: block;
  padding-left: 20px;
  font-size: 2.9rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1500px) {
  .workstyle-sec-title__text {
    width: calc(100% - 140px);
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-sec-title__text {
    width: calc(100% - 120px);
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-sec-title__text {
    width: 100%;
    font-size: 2.2rem;
  }
}

.workstyle-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1500px) {
  .workstyle-links {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-links {
    gap: 40px 20px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-links {
    gap: 30px 20px;
  }
}

.workstyle-link-item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 1500px) {
  .workstyle-link-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-link-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .workstyle-link-item {
    width: 100%;
  }
}
.workstyle-link-item > a {
  display: block;
}
@media screen and (min-width: 1025px) {
  .workstyle-link-item > a:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}
.workstyle-link-item__photo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.workstyle-link-item__photo::before {
  content: "";
  display: block;
  padding-top: 80%;
}
@media screen and (max-width: 1024px) {
  .workstyle-link-item__photo::before {
    padding-top: 70%;
  }
}
.workstyle-link-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.workstyle-link-item__box {
  margin: -40px 15px 0;
  background-color: #fff;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.13);
}
@media screen and (max-width: 599px) {
  .workstyle-link-item__box {
    margin: -60px 15px 0;
  }
}
.workstyle-link-item__job {
  max-width: 95%;
  position: relative;
  top: -20px;
  font-size: 1.8rem;
  color: #fff;
  background-color: #ffae00;
  border-radius: 5px 25px 25px 0;
  display: inline-block;
  line-height: 1.3;
  padding: 7px 30px 7px 20px;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .workstyle-link-item__job {
    font-size: 1.7rem;
    padding: 7px 20px 7px 15px;
  }
}
.workstyle-link-item__box-inner {
  margin-top: -8px;
  padding: 0 55px 20px 20px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .workstyle-link-item__box-inner {
    margin-top: -12px;
    padding: 0 45px 15px 15px;
  }
}
.workstyle-link-item__box-inner::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  margin-top: -30px;
  top: 50%;
  right: 15px;
  background-color: #444444;
  border-radius: 200px;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: center;
}
@media screen and (max-width: 599px) {
  .workstyle-link-item__box-inner::before {
    margin-top: -24px;
    width: 24px;
    height: 24px;
    right: 10px;
  }
}
.workstyle-link-item__name {
  margin-bottom: 6px;
  color: #222;
  line-height: 1.3;
  font-weight: 500;
}
.workstyle-link-item__name span {
  font-size: 2.5rem;
  font-weight: 400;
  padding-right: 5px;
}
@media screen and (max-width: 599px) {
  .workstyle-link-item__name span {
    font-size: 2.3rem;
  }
}
.workstyle-link-item__tags span {
  margin-bottom: 3px;
  margin-right: 4px;
  background-color: #fcf0d5;
  border-radius: 200px;
  font-size: 1.4rem;
  color: #ec7f00;
  display: inline-block;
  font-weight: 500;
  line-height: 1.3;
  padding: 2px 15px 3px;
}
@media screen and (max-width: 599px) {
  .workstyle-link-item__tags span {
    font-size: 1.3rem;
    padding: 2px 10px 3px;
  }
}

/*--------------------------------------------------------
workstyle detail
----------------------------------------------------------*/
.workstyle-detail-wrapper {
  background-color: #faf3e3;
  background-image: url(../img/common/contents_bg04.webp), url(../img/common/contents_bg03.webp), url(../img/workstyle/detail_bg03.webp), url(../img/workstyle/detail_bg02.webp), url(../img/workstyle/detail_bg01.webp);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: right 2% bottom 4%, left 4% bottom 4%, left 100px top 750px, right 50px top 650px, right 0 top 70px;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-wrapper {
    background-position: right 2% bottom 0, left 4% bottom 2%, left 100px top 450px, right 50px top 650px, right 0 top 70px;
    background-size: auto, auto, 100px auto, 100px auto, 350px auto, auto;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-wrapper {
    background-position: right 2% bottom 0, left 4% bottom 2%, left 100px top 450px, right 50px top 650px, right 0 top 50px;
    background-size: 180px auto, 100px auto, 100px auto, 100px auto, 280px auto, auto;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-wrapper {
    background-image: none;
  }
}

.workstyle-detail-main {
  margin: 110px 0 0 0;
  display: flex;
  align-items: center;
  padding-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-main {
    margin: 70px 0 0 0;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main {
    padding-bottom: 40px;
    margin: 40px 0 0 0;
  }
}
.workstyle-detail-main::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background-color: #fbf7ef;
  border-radius: 50%;
  left: 50%;
  top: 300px;
  margin-left: -130px;
}
.workstyle-detail-main__photo {
  width: 50%;
  height: 500px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main__photo {
    width: 52%;
    height: 460px;
  }
}
@media screen and (max-width: 834px) {
  .workstyle-detail-main__photo {
    width: 100%;
    height: 400px;
    margin: 0 30px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main__photo {
    margin: 0 15px;
    height: 240px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.workstyle-detail-main__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.workstyle-detail-main__text-area {
  width: 50%;
  padding: 0 50px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main__text-area {
    width: 48%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 834px) {
  .workstyle-detail-main__text-area {
    width: 100%;
    margin-top: -10px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main__text-area {
    margin-top: 0;
    padding: 0 15px;
  }
}

.workstyle-detail-main-block {
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main-block {
    max-width: 100%;
  }
}

.workstyle-detail-main-box {
  border-radius: 10px;
  background: #FE9B0E;
  background: linear-gradient(180deg, rgb(254, 155, 14) 0%, rgb(255, 190, 51) 100%);
  padding: 35px 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main-box {
    border-top-right-radius: 0;
    padding: 35px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main-box {
    padding: 25px 20px 20px;
  }
}
.workstyle-detail-main-box__fix {
  position: absolute;
  top: -18px;
  left: 0;
  width: 160px;
  background-color: #ff9000;
  font-size: 1.9rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  padding: 3px 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main-box__fix {
    border-top-left-radius: 0;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main-box__fix {
    font-size: 1.4rem;
    width: 120px;
  }
}
.workstyle-detail-main-box__style {
  margin-bottom: 22px;
  font-size: 2.9rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main-box__style {
    font-size: 2.5rem;
    padding-bottom: 10px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main-box__style {
    font-size: 2rem;
    margin-bottom: 13px;
  }
}
.workstyle-detail-main-box__job {
  margin-bottom: 3px;
  font-size: 4.6rem;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main-box__job {
    font-size: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main-box__job {
    font-size: 3.3rem;
    margin-bottom: 10px;
  }
}
.workstyle-detail-main-box__department {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main-box__department {
    font-size: 1.5rem;
  }
}
.workstyle-detail-main-box__name {
  padding-left: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main-box__name {
    display: block;
    padding-left: 0;
  }
}
.workstyle-detail-main-box__name span {
  font-size: 2.5rem;
  font-weight: 400;
  padding-right: 2px;
}
@media screen and (max-width: 599px) {
  .workstyle-detail-main-box__name span {
    font-size: 2.3rem;
  }
}
.workstyle-detail-main-box__tag span {
  margin: 0 5px 3px 0;
  font-size: 1.4rem;
  color: #ec7f00;
  background-color: #fff;
  display: inline-block;
  padding: 2px 20px;
  line-height: 1.3;
  font-weight: 500;
  border-radius: 200px;
}

.workstyle-detail-main-copy {
  margin-top: 28px;
  color: #fb8e00;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-main-copy {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-main-copy {
    font-size: 2.6rem;
  }
}

.workstyle-detail-temp01 {
  padding-bottom: 105px;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-temp01 {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp01 {
    padding-bottom: 60px;
  }
}
.workstyle-detail-temp01__title {
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 35px;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-temp01__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-temp01__title {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp01__title {
    margin-bottom: 25px;
    font-size: 2.2rem;
  }
}
.workstyle-detail-temp01__text-photo {
  display: flex;
  gap: 40px;
  /* 写真が無い場合 */
}
.workstyle-detail-temp01__text-photo:not(:has(.workstyle-detail-temp01__photo img)) .workstyle-detail-temp01__text {
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-temp01__text-photo {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp01__text-photo {
    gap: 30px;
  }
}
.workstyle-detail-temp01__text {
  flex: 1;
  min-width: 0;
  font-size: 1.7rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-temp01__text {
    width: 100%;
    flex: auto;
  }
}
@media screen and (max-width: 834px) {
  .workstyle-detail-temp01__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp01__text {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.workstyle-detail-temp01__photo {
  flex: 0 0 auto;
  max-width: 48%;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-temp01__photo {
    max-width: 45%;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-temp01__photo {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp01__photo {
    max-width: 100%;
  }
}
.workstyle-detail-temp01__photo img {
  border-radius: 10px;
  display: block;
  max-width: 100%;
  height: auto;
}

.workstyle-detail-temp02 {
  margin-bottom: 50px;
  background: #FE9B0E;
  background: linear-gradient(180deg, rgb(254, 155, 14) 0%, rgb(255, 190, 51) 100%);
  padding: 40px 50px;
  border-radius: 10px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-temp02 {
    padding: 40px 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-temp02 {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp02 {
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.workstyle-detail-temp02__text-area {
  flex: 1;
  min-width: 0;
  padding-top: 10px;
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp02__text-area {
    flex: auto;
  }
}
.workstyle-detail-temp02__photo {
  flex: 0 0 auto;
  max-width: 44%;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-temp02__photo {
    max-width: 38%;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp02__photo {
    flex: auto;
    max-width: 100%;
  }
}
.workstyle-detail-temp02__photo img {
  border-radius: 10px;
  display: block;
  max-width: 100%;
  height: auto;
}
.workstyle-detail-temp02__title {
  margin-bottom: 25px;
  font-size: 3rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  padding: 4px 0 4px 25px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .workstyle-detail-temp02__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .workstyle-detail-temp02__title {
    margin-bottom: 20px;
    font-size: 2.4rem;
    padding: 4px 0 4px 22px;
  }
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp02__title {
    margin-bottom: 15px;
    font-size: 2.2rem;
    padding: 4px 0 4px 18px;
  }
}
.workstyle-detail-temp02__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .workstyle-detail-temp02__title::before {
    width: 3px;
  }
}

.workstyle-detail-btn {
  max-width: 300px;
  margin: 0 auto;
}

/*--------------------------------------------------------
now
----------------------------------------------------------*/
.new-icon {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  color: #fd3f0c;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .new-icon {
    font-size: 1.5rem;
    margin-left: 7px;
  }
}
@media screen and (max-width: 599px) {
  .new-icon {
    font-size: 1.4rem;
  }
}
.new-icon::before {
  content: "!";
  right: -7px;
  position: absolute;
  top: 0px;
  font-weight: 500;
  color: #fd3f0c;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .new-icon::before {
    font-size: 1.4rem;
  }
}

.now-wrapper {
  background-image: url(../img/now/contents_bg02.webp), url(../img/now/contents_bg01.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: right 0 top 215px, left top -105px;
}
@media screen and (max-width: 1500px) {
  .now-wrapper {
    background-image: none;
  }
}
.now-wrapper .page-inner {
  max-width: 1100px;
}

.now-news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 85px 55px;
}
@media screen and (max-width: 1500px) {
  .now-news-list {
    gap: 55px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .now-news-list {
    gap: 35px 20px;
  }
}
@media screen and (max-width: 599px) {
  .now-news-list {
    gap: 20px;
  }
}
.now-news-list__item {
  width: calc((100% - 110px) / 3);
}
@media screen and (max-width: 1500px) {
  .now-news-list__item {
    width: calc((100% - 80px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .now-news-list__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .now-news-list__item {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .now-news-list__link:hover .now-news-list__img::before {
    background-color: rgba(0, 0, 0, 0);
  }
}
.now-news-list__img {
  position: relative;
  margin-bottom: 34px;
  aspect-ratio: 1.5/1;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .now-news-list__img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .now-news-list__img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .now-news-list__img {
    margin-bottom: 14px;
    border-radius: 6px;
  }
}
.now-news-list__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.now-news-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.now-news-list__date {
  margin-bottom: 12px;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.8rem;
  color: #fb8e00;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 1024px) {
  .now-news-list__date {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .now-news-list__date {
    margin-bottom: 4px;
    font-size: 1.5rem;
  }
}
.now-news-list__ttl {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .now-news-list__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .now-news-list__ttl {
    font-size: 1.6rem;
  }
}

/***詳細ページ***/
.now-detail-ttl {
  position: relative;
  margin-bottom: 45px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 1024px) {
  .now-detail-ttl {
    margin-bottom: 40px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .now-detail-ttl {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.now-detail-ttl::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  left: 0;
  bottom: -1px;
  background-color: #fb8e00;
}
@media screen and (max-width: 599px) {
  .now-detail-ttl::before {
    width: 60px;
  }
}
.now-detail-ttl__date {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.8rem;
  color: #fb8e00;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 1024px) {
  .now-detail-ttl__date {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .now-detail-ttl__date {
    margin-bottom: 8px;
    font-size: 1.5rem;
  }
}
.now-detail-ttl__title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 3.1rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .now-detail-ttl__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 834px) {
  .now-detail-ttl__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .now-detail-ttl__title {
    font-size: 2.1rem;
  }
}

.now-detail-btn {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 300px;
  height: 70px;
  margin: 60px auto 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: normal;
  background-color: #444;
  border-radius: 100vmax;
  background-image: url(../img/common/arw_white_back.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: left 24px top 50%;
}
@media screen and (max-width: 1024px) {
  .now-detail-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  .now-detail-btn {
    margin-top: 40px;
    height: 60px;
    font-size: 1.7rem;
    background-size: 14px auto;
  }
}
@media screen and (min-width: 1025px) {
  .now-detail-btn:hover {
    opacity: 0.8;
  }
}

/*--------------------------------------------------------
entry
----------------------------------------------------------*/
.entry-wrapper {
  background-color: #faf3e3;
}

.entry-head-text {
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #333;
}
@media screen and (max-width: 599px) {
  .entry-head-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

.entry-form {
  margin-bottom: 50px;
  padding: 70px 45px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 1500px) {
  .entry-form {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .entry-form {
    padding: 40px 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .entry-form {
    margin-bottom: 20px;
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------
privacy
----------------------------------------------------------*/
.privacy-wrapper {
  background-color: #faf3e3;
}

.privacy-box {
  margin-bottom: 80px;
  padding: 65px 50px 60px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 1500px) {
  .privacy-box {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .privacy-box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .privacy-box {
    margin-bottom: 30px;
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------
requirements
----------------------------------------------------------*/
.requirements-wrapper {
  background-color: #faf3e3;
}
.requirements-wrapper .page-contents.detail {
  padding-top: 50px;
}
@media screen and (max-width: 1024px) {
  .requirements-wrapper .page-contents.detail {
    padding-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .requirements-wrapper .page-contents.detail {
    padding-top: 20px;
  }
}

.requirements-link-list:not(:last-child) {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .requirements-link-list:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .requirements-link-list:not(:last-child) {
    margin-bottom: 30px;
  }
}
.requirements-link-list li:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .requirements-link-list li:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .requirements-link-list li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.requirements-link-list__link {
  position: relative;
  display: block;
  padding: 26px 26px 22px 86px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 1024px) {
  .requirements-link-list__link {
    padding: 22px 22px 20px 76px;
  }
}
@media screen and (max-width: 599px) {
  .requirements-link-list__link {
    border-radius: 8px;
    padding: 18px 18px 17px 52px;
  }
}
.requirements-link-list__link::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  top: 22px;
  left: 26px;
  border: 2px solid #fb8e00;
  border-radius: 50%;
  background-image: url(../img/common/arw_orange.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .requirements-link-list__link::before {
    width: 38px;
    height: 38px;
    top: 18px;
    left: 22px;
  }
}
@media screen and (max-width: 599px) {
  .requirements-link-list__link::before {
    width: 30px;
    height: 30px;
    top: 14px;
    left: 12px;
    background-size: 10px auto;
  }
}
@media screen and (min-width: 1025px) {
  .requirements-link-list__link:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.requirements-link-list__title {
  margin-bottom: 10px;
  font-size: 2.4rem;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .requirements-link-list__title {
    margin-bottom: 8px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-link-list__title {
    margin-bottom: 7px;
    font-size: 1.8rem;
  }
}
.requirements-link-list__place {
  font-size: 1.7rem;
  color: #858585;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .requirements-link-list__place {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-link-list__place {
    font-size: 1.5rem;
  }
}

.requirements-detail-box {
  position: relative;
  margin-bottom: 40px;
  padding: 60px 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box {
    margin-bottom: 30px;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 599px) {
  .requirements-detail-box {
    margin-bottom: 20px;
    padding: 35px 20px 30px;
  }
}
.requirements-detail-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #fe9b0e, #ffbe33);
  border-radius: 100vmax;
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box:before {
    width: 84px;
  }
}
@media screen and (max-width: 599px) {
  .requirements-detail-box:before {
    width: 70px;
  }
}
.requirements-detail-box__title {
  margin-bottom: 50px;
  font-size: 3.4rem;
  color: #333;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box__title {
    margin-bottom: 30px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-detail-box__title {
    margin-bottom: 28px;
    font-size: 2.2rem;
  }
}
.requirements-detail-box__title__place {
  display: block;
  margin-top: 10px;
  font-size: 1.7rem;
  color: #858585;
  letter-spacing: normal;
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box__title__place {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-detail-box__title__place {
    margin-top: 6px;
    font-size: 1.5rem;
  }
}
.requirements-detail-box__table {
  width: 100%;
}
.requirements-detail-box__table tr {
  display: block;
  padding: 20px 30px 21px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .requirements-detail-box__table tr {
    position: relative;
    padding: 13px 15px;
  }
  .requirements-detail-box__table tr::before {
    background: #ffae00;
    content: "";
    height: 20px;
    width: 3px;
    left: 0;
    position: absolute;
    top: 15px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
  }
}
.requirements-detail-box__table tr:nth-child(odd) {
  background-color: #fff9ea;
}
.requirements-detail-box__table th {
  width: 220px;
  font-size: 1.7rem;
  color: #ed8000;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box__table th {
    width: 180px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-detail-box__table th {
    display: block;
    width: 100%;
    margin-bottom: 2px;
  }
}
.requirements-detail-box__table td {
  color: #333;
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box__table td {
    font-size: 1.5rem;
  }
}
.requirements-detail-box__note {
  margin-top: 40px;
  display: flex;
  border: 2px solid #faeee0;
  padding: 18px 30px;
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box__note {
    padding: 18px 15px 18px 30px;
  }
}
@media screen and (max-width: 599px) {
  .requirements-detail-box__note {
    flex-direction: column;
    padding: 15px;
    border-width: 1px;
    border-color: #f7e6d7;
  }
}
.requirements-detail-box__note__title {
  width: 200px;
  padding-top: 10px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #ffae00;
  font-size: 1.7rem;
  color: #ed8000;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box__note__title {
    width: 150px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-detail-box__note__title {
    width: 100%;
    font-size: 1.5rem;
    padding-top: 0px;
    padding-bottom: 7px;
    margin-bottom: 10px;
    border-right: none;
    border-bottom: 1px solid #ffae00;
  }
}
.requirements-detail-box__note .wysiwyg {
  flex: 1;
  padding: 10px;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .requirements-detail-box__note .wysiwyg {
    padding: 2px;
    font-size: 1.5rem;
  }
}

.requirements-contact-box {
  position: relative;
  margin-bottom: 60px;
  padding: 34px 34px 34px 240px;
  letter-spacing: 0.05em;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 1024px) {
  .requirements-contact-box {
    margin-bottom: 50px;
    padding: 30px 30px 30px 220px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-contact-box {
    margin-bottom: 30px;
    padding: 70px 20px 16px;
  }
}
.requirements-contact-box__title {
  position: absolute;
  display: grid;
  place-content: center;
  width: 200px;
  height: 44px;
  top: 30px;
  left: 0;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(to right, #fe9b0e, #ffbe33);
  border-radius: 0 5px 5px 0;
}
@media screen and (max-width: 1024px) {
  .requirements-contact-box__title {
    width: 180px;
    top: 26px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-contact-box__title {
    height: 40px;
    top: 20px;
  }
}

.requirements-btn {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 38px 50px;
  width: 100%;
  max-width: 500px;
  font-size: 2.3rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 100vmax;
  background: linear-gradient(to right, #fe9b0e, #ffbe33);
}
@media screen and (max-width: 1024px) {
  .requirements-btn {
    max-width: 400px;
    padding: 30px 50px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .requirements-btn {
    padding: 22px 40px;
    font-size: 1.8rem;
    width: 95%;
  }
}
.requirements-btn::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .requirements-btn::before {
    width: 14px;
    height: 14px;
    right: 22px;
  }
}
@media screen and (min-width: 1025px) {
  .requirements-btn:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

/*--------------------------------------------------------
welfare
----------------------------------------------------------*/
.welfare-wrapper {
  background-color: #faf3e3;
  background-image: url(../img/common/contents_bg03.webp), url(../img/common/contents_bg05.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: right calc(50% - 535px) top 50px, left calc(50% - 570px) top;
}
@media screen and (max-width: 834px) {
  .welfare-wrapper {
    background-image: none;
  }
}
.welfare-wrapper .page-contents {
  padding-top: 65px;
}
@media screen and (max-width: 834px) {
  .welfare-wrapper .page-contents {
    padding-top: 55px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-wrapper .page-contents {
    padding-top: 30px;
  }
}

.welfare-intro {
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .welfare-intro {
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-intro {
    margin-bottom: 28px;
  }
}
.welfare-intro__catch {
  text-align: center;
  font-size: 3.4rem;
  color: #ff9000;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 834px) {
  .welfare-intro__catch {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .welfare-intro__catch {
    font-size: 2.1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

.welfare-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}
@media screen and (max-width: 1024px) {
  .welfare-list {
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .welfare-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 599px) {
  .welfare-list {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
}
.welfare-list__box {
  background-color: #fff;
  border-radius: 8px;
  padding: 43px 33px;
}
@media screen and (max-width: 834px) {
  .welfare-list__box {
    padding: 34px 30px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-list__box {
    padding: 28px 25px;
  }
}
.col02 .welfare-list__box {
  padding: 36px 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .col02 .welfare-list__box {
    padding: 32px 20px;
    gap: 10px;
  }
}
@media screen and (max-width: 834px) {
  .col02 .welfare-list__box {
    gap: 0px;
    padding: 25px 10px;
  }
}
@media screen and (max-width: 599px) {
  .col02 .welfare-list__box {
    gap: 10px;
    padding: 19px 20px;
  }
}
.col01 .welfare-list__box {
  padding: 36px 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .col01 .welfare-list__box {
    padding: 32px 20px;
  }
}
@media screen and (max-width: 834px) {
  .col01 .welfare-list__box {
    padding: 25px 10px;
  }
}
@media screen and (max-width: 599px) {
  .col01 .welfare-list__box {
    flex-direction: column;
    padding: 19px 20px;
  }
}
.welfare-list__box figure {
  width: 100px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 599px) {
  .welfare-list__box figure {
    width: 80px;
  }
}
.col02 .welfare-list__box figure {
  margin: 0;
}
@media screen and (max-width: 599px) {
  .col02 .welfare-list__box figure {
    width: 80px;
  }
}
.col01 .welfare-list__box figure {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 1024px) {
  .col01 .welfare-list__box figure {
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 834px) {
  .col01 .welfare-list__box figure {
    width: 80px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .col01 .welfare-list__box figure {
    margin: 0 auto 10px;
  }
}
.welfare-list__box__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 85px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
  color: #333333;
}
@media screen and (max-width: 1024px) {
  .welfare-list__box__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .welfare-list__box__ttl {
    font-size: 2.2rem;
    line-height: 1.4;
    min-height: 75px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-list__box__ttl {
    font-size: 2.1rem;
    min-height: inherit;
    padding-bottom: 14px;
  }
}
.welfare-list__box__ttl span {
  font-size: 2.1rem;
}
@media screen and (max-width: 1024px) {
  .welfare-list__box__ttl span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .welfare-list__box__ttl span {
    font-size: 1.6rem;
  }
}
.col02 .welfare-list__box__ttl {
  min-height: inherit;
  flex-direction: row;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 834px) {
  .col02 .welfare-list__box__ttl {
    flex-direction: column;
  }
}
.col02 .welfare-list__box__ttl span {
  color: #ff9000;
  margin-left: 15px;
}
.col01 .welfare-list__box__ttl {
  height: 100%;
  padding-bottom: 0;
  margin-bottom: 0;
  padding-right: 18px;
  margin-right: 20px;
  text-align: left;
  border-bottom: none;
  border-right: 1px solid #d4d4d4;
}
@media screen and (max-width: 599px) {
  .col01 .welfare-list__box__ttl {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 14px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #d4d4d4;
    border-right: none;
  }
}
.welfare-list__box__text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .welfare-list__box__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .welfare-list__box__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.col01 .welfare-list__box__text {
  flex: 1;
}
.welfare-list.col02 {
  margin-top: 26px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .welfare-list.col02 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-list.col02 {
    margin-top: 15px;
  }
}
.welfare-list.col01 {
  margin-top: 26px;
  grid-template-columns: auto;
}
@media screen and (max-width: 1024px) {
  .welfare-list.col01 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-list.col01 {
    margin-top: 15px;
  }
}

.welfare-facilities {
  padding: 85px 60px 68px;
  margin-top: 26px;
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .welfare-facilities {
    margin-top: 20px;
  }
}
@media screen and (max-width: 834px) {
  .welfare-facilities {
    padding: 70px 30px 45px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-facilities {
    margin-top: 15px;
    padding: 35px 25px 30px;
  }
}
.welfare-facilities__head {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0 auto 30px;
  padding: 0px 50px 16px 20px;
  border-bottom: 1px solid #d4d4d4;
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .welfare-facilities__head {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-facilities__head {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0px 0px 16px 0px;
    gap: 15px;
  }
}
.welfare-facilities__head figure {
  width: 74px;
}
@media screen and (max-width: 599px) {
  .welfare-facilities__head figure {
    width: 62px;
  }
}
.welfare-facilities__head__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .welfare-facilities__head__ttl {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 599px) {
  .welfare-facilities__head__ttl {
    font-size: 2rem;
    letter-spacing: 0.03em;
  }
}
.welfare-facilities__head__ttl span {
  font-size: 2.1rem;
}
@media screen and (max-width: 1024px) {
  .welfare-facilities__head__ttl span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .welfare-facilities__head__ttl span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .welfare-facilities__head__ttl span {
    font-size: 1.6rem;
  }
}
.welfare-facilities__head__ttl .familymart {
  display: inline-block;
  width: 200px;
  margin-top: 11px;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .welfare-facilities__head__ttl .familymart {
    width: 185px;
    margin-top: 8px;
    padding: 0 7px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-facilities__head__ttl .familymart {
    width: 150px;
    margin-top: 6px;
    padding: 0 4px;
  }
}
.welfare-facilities__text {
  font-size: 1.7rem;
  text-align: center;
  line-height: 1.9;
  margin-bottom: 45px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 834px) {
  .welfare-facilities__text {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-facilities__text {
    font-size: 1.5rem;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
    text-align: left;
  }
}
.welfare-facilities__ph {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 834px) {
  .welfare-facilities__ph {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .welfare-facilities__ph {
    flex-direction: column;
    gap: 12px;
  }
}

/*--------------------------------------------------------
career
----------------------------------------------------------*/
.career-wrapper {
  background-color: #faf3e3;
  background-image: url(../img/common/contents_bg03.webp), url(../img/common/contents_bg01.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: right calc(50% - 535px) top 50px, left top;
}
@media screen and (max-width: 1024px) {
  .career-wrapper {
    background-image: none;
  }
}

.career-intro {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .career-intro {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 834px) {
  .career-intro {
    margin-bottom: 40px;
    flex-direction: column;
  }
}
.career-intro__inr {
  flex: 1;
}
.career-intro__copy {
  margin-bottom: 15px;
  font-size: 2.9rem;
  color: #fb8e00;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .career-intro__copy {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .career-intro__copy {
    margin-bottom: 2px;
    font-size: 1.9rem;
  }
}
.career-intro__catch {
  margin-bottom: 30px;
  font-size: 4.8rem;
  color: #fb8e00;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1300px) {
  .career-intro__catch {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .career-intro__catch {
    margin-bottom: 15px;
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .career-intro__catch {
    margin-bottom: 10px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 320px) {
  .career-intro__catch {
    font-size: 2.6rem;
  }
}
.career-intro__lead {
  font-size: 1.8rem;
  color: #333;
  text-align: justify;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .career-intro__lead {
    font-size: 1.7rem;
  }
}
.career-intro__ph {
  margin-left: 80px;
  max-width: 550px;
}
@media screen and (max-width: 1300px) {
  .career-intro__ph {
    margin-left: 60px;
    max-width: 520px;
  }
}
@media screen and (max-width: 1024px) {
  .career-intro__ph {
    margin-left: 40px;
    max-width: 460px;
  }
}
@media screen and (max-width: 834px) {
  .career-intro__ph {
    margin: 30px auto 0;
    max-width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .career-intro__ph {
    margin-top: 20px;
    max-width: 100%;
  }
}

.career-education {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .career-education {
    gap: 40px;
  }
}
@media screen and (max-width: 834px) {
  .career-education {
    gap: 25px;
  }
}
@media screen and (max-width: 599px) {
  .career-education {
    grid-template-columns: 1fr;
    margin-bottom: 45px;
    gap: 35px;
  }
}

.career-education-box__inr {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 1024px) {
  .career-education-box__inr {
    gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .career-education-box__inr {
    flex-direction: column;
  }
}
.career-education-box__inr figure {
  width: 230px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .career-education-box__inr figure {
    width: 200px;
  }
}
@media screen and (max-width: 834px) {
  .career-education-box__inr figure {
    width: 100%;
    height: 160px;
  }
}
@media screen and (max-width: 599px) {
  .career-education-box__inr figure {
    height: 145px;
  }
}
.career-education-box__inr figure img {
  margin-top: -20px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.career-education-box__left {
  flex: 1;
}
.career-education-box__ph01 {
  width: 230px;
}
.career-education-box__ph02 {
  margin-top: 25px;
}
.career-education-box__ttl {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fbeccb;
  font-size: 2.8rem;
  font-weight: 500;
  color: #333;
  padding: 12px 12px 12px 110px;
  border-radius: 10px;
  margin-bottom: 25px;
  min-height: 100px;
}
@media screen and (max-width: 1024px) {
  .career-education-box__ttl {
    font-size: 2.6rem;
    min-height: 90px;
  }
}
@media screen and (max-width: 834px) {
  .career-education-box__ttl {
    font-size: 2.2rem;
    padding: 6px 6px 6px 85px;
    min-height: 72px;
  }
}
@media screen and (max-width: 599px) {
  .career-education-box__ttl {
    font-size: 2.1rem;
    border-radius: 8px;
    min-height: 66px;
    margin-bottom: 20px;
    padding-left: 80px;
  }
}
.career-education-box__ttl::before {
  background: #ffae00;
  content: "";
  height: 76px;
  width: 76px;
  left: 12px;
  position: absolute;
  top: 12px;
  border-radius: 5px;
  background-size: 60px auto;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .career-education-box__ttl::before {
    background-size: 50px auto;
    height: 66px;
    width: 66px;
  }
}
@media screen and (max-width: 834px) {
  .career-education-box__ttl::before {
    top: 8px;
    left: 8px;
    height: 56px;
    background-size: 40px auto;
    width: 56px;
  }
}
@media screen and (max-width: 599px) {
  .career-education-box__ttl::before {
    height: 52px;
    width: 55px;
  }
}
.career-education-box__ttl.icon01::before {
  background-image: url(../img/career/icon_educaion_icon01.svg);
}
.career-education-box__ttl.icon02::before {
  background-image: url(../img/career/icon_educaion_icon02.svg);
}
.career-education-box__ttl.icon03::before {
  background-image: url(../img/career/icon_educaion_icon03.svg);
}
.career-education-box__ttl.icon04::before {
  background-image: url(../img/career/icon_educaion_icon04.svg);
}
.career-education-box__ttl span {
  font-size: 2.5rem;
  margin-left: 5px;
}
@media screen and (max-width: 1024px) {
  .career-education-box__ttl span {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .career-education-box__ttl span {
    font-size: 1.8rem;
  }
}
.career-education-box__catch {
  padding: 0px 10px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ff9000;
}
@media screen and (max-width: 1024px) {
  .career-education-box__catch {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .career-education-box__catch {
    font-size: 2.1rem;
    padding: 0px 5px;
  }
}
@media screen and (max-width: 599px) {
  .career-education-box__catch {
    font-size: 1.9rem;
    line-height: 1.5;
  }
}
.career-education-box__text {
  padding: 0px 10px;
  font-size: 1.7rem;
  font-weight: 500;
  color: #333;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .career-education-box__text {
    padding: 0px 5px;
    font-size: 1.6rem;
  }
}
.career-education-box__theme {
  margin-top: 25px;
  border: 1px solid #ff9000;
  padding: 30px 40px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .career-education-box__theme {
    padding: 25px;
  }
}
@media screen and (max-width: 834px) {
  .career-education-box__theme {
    padding: 25px 15px 20px;
  }
}
.career-education-box__theme__ttl {
  font-size: 1.9rem;
  color: #ff9000;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .career-education-box__theme__ttl {
    font-size: 1.8rem;
  }
}
.career-education-box__theme__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .career-education-box__theme__list {
    gap: 5px 8px;
  }
}
.career-education-box__theme__list li {
  line-height: 1.4;
  width: calc((100% - 15px) / 2);
  font-size: 1.7rem;
  font-weight: 500;
  color: #333;
  padding-left: 25px;
  position: relative;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .career-education-box__theme__list li {
    padding-left: 20px;
  }
}
.career-education-box__theme__list li::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0px;
  left: 0;
  width: 10px;
  height: 18px;
  border-right: 3px solid #ff9000;
  border-bottom: 3px solid #ff9000;
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .career-education-box__theme__list li::after {
    width: 7px;
    height: 15px;
  }
}

.career-nurse {
  border-top: 1px solid #d7cdb8;
  border-bottom: 1px solid #d7cdb8;
  padding: 65px 0px 65px;
  margin-bottom: 65px;
}
@media screen and (max-width: 599px) {
  .career-nurse {
    padding: 50px 0px 50px;
    margin-bottom: 50px;
  }
}

.career-nurse-head {
  text-align: center;
  position: relative;
  text-align: center;
  padding-bottom: 34px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .career-nurse-head {
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
}
.career-nurse-head::before {
  border-radius: 10px;
  background: #FE9B0E;
  background: linear-gradient(90deg, rgb(238, 115, 153) 0%, rgb(254, 159, 189) 100%);
  content: "";
  height: 5px;
  width: 100px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .career-nurse-head::before {
    width: 60px;
    height: 4px;
  }
}
.career-nurse-head__copy {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #ee7399;
}
@media screen and (max-width: 834px) {
  .career-nurse-head__copy {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .career-nurse-head__copy {
    font-size: 1.9rem;
  }
}
.career-nurse-head__ttl {
  line-height: 1;
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .career-nurse-head__ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .career-nurse-head__ttl {
    font-size: 2.5rem;
  }
}

.career-nurse-text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 48px;
}
@media screen and (max-width: 834px) {
  .career-nurse-text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .career-nurse-text {
    font-size: 1.6rem;
    margin-bottom: 35px;
    line-height: 1.8;
  }
}

.career-nurse-list {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .career-nurse-list {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .career-nurse-list {
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .career-nurse-list {
    width: 100%;
  }
}
.career-nurse-list__box {
  flex: 1;
  padding: 17px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .career-nurse-list__box {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box {
    padding-bottom: 25px;
  }
}
.career-nurse-list__box__ttl {
  position: relative;
  border-radius: 10px;
  background-color: #fff4f8;
  padding: 30px 20px 30px 10px;
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .career-nurse-list__box__ttl {
    padding: 70px 20px 32px;
  }
}
@media screen and (max-width: 834px) {
  .career-nurse-list__box__ttl {
    padding: 30px 20px 30px 10px;
  }
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__ttl {
    padding: 27px 30px 27px 10px;
    margin-bottom: 20px;
  }
}
.career-nurse-list__box__ttl::before {
  border-radius: 10px;
  background: #ee7399;
  content: "";
  height: 4px;
  width: 48px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__ttl::before {
    width: 38px;
    height: 3px;
  }
}
.career-nurse-list__box__ttl span {
  position: relative;
  padding-left: 58px;
  font-size: 2.3rem;
  font-weight: 500;
  color: #333;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .career-nurse-list__box__ttl span {
    outline: 0;
    padding-top: 44px;
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 834px) {
  .career-nurse-list__box__ttl span {
    font-size: 2.2rem;
    padding-top: 0;
    padding-left: 55px !important;
  }
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__ttl span {
    font-size: 2.1rem;
    padding-left: 45px !important;
  }
}
.career-nurse-list__box__ttl span::before {
  background-repeat: no-repeat;
  background-position: left center;
  content: "";
  height: 52px;
  width: 52px;
  left: 0;
  position: absolute;
  top: -8px;
}
@media screen and (max-width: 1024px) {
  .career-nurse-list__box__ttl span::before {
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 834px) {
  .career-nurse-list__box__ttl span::before {
    right: auto;
  }
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__ttl span::before {
    height: 46px;
    width: 46px;
  }
}
.career-nurse-list__box__ttl.icon01 span::before {
  background-size: 40px auto;
  background-image: url(../img/career/icon_educaion_icon05.svg);
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__ttl.icon01 span::before {
    background-size: 36px auto;
  }
}
.career-nurse-list__box__ttl.icon02 span {
  padding-left: 55px;
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__ttl.icon02 span {
    padding-left: 50px !important;
  }
}
.career-nurse-list__box__ttl.icon02 span::before {
  background-size: 52px auto;
  background-image: url(../img/career/icon_educaion_icon06.svg);
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__ttl.icon02 span::before {
    background-size: 48px auto;
  }
}
.career-nurse-list__box__ttl.icon03 span::before {
  background-size: 40px auto;
  background-image: url(../img/career/icon_educaion_icon07.svg);
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__ttl.icon03 span::before {
    background-size: 36px auto;
  }
}
.career-nurse-list__box__text {
  padding: 0px 8px;
  font-size: 1.7rem;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__text {
    font-size: 1.6rem;
    padding: 0px;
  }
}
.career-nurse-list__box__atn {
  padding: 0px 8px;
  margin-top: 10px;
  color: #ee7399;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .career-nurse-list__box__atn {
    padding: 0px;
  }
}
.career-nurse-list__box__data {
  width: 235px;
  margin: 15px auto 0px;
  text-align: center;
  border: 1px solid #ee7399;
  border-radius: 5px;
  padding: 12px 5px 10px 5px;
  color: #ee7399;
  font-weight: 600;
  line-height: 1.2;
}
.career-nurse-list__box__data .ttl {
  font-size: 1.8rem;
}
.career-nurse-list__box__data .data {
  font-size: 2.2rem;
}
.career-nurse-list__box__data .data span {
  font-size: 3.4rem;
  font-weight: 600;
}
.career-nurse-list__box__note {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.career-education-btn {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .career-education-btn {
    max-width: 260px;
  }
}

.career-field {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .career-field {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .career-field {
    margin-bottom: 40px;
  }
}
.career-field__ttl {
  position: relative;
  margin-top: 82px;
  margin-bottom: 52px;
  font-size: 2.7rem;
  color: #333;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1024px) {
  .career-field__ttl {
    margin-top: 65px;
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .career-field__ttl {
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 1.9rem;
  }
}
.career-field__ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #959595;
}
@media screen and (max-width: 599px) {
  .career-field__ttl::before {
    display: none;
  }
}
.career-field__ttl span {
  position: relative;
  padding: 0 26px;
  background-color: #faf3e3;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .career-field__ttl span {
    padding: 0;
  }
}
.career-field__box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list {
    gap: 12px;
  }
}
.career-field__box-list__item {
  position: relative;
  margin-top: 40px;
  padding: 80px 22px 34px;
  width: calc((100% - 54px) / 4);
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__item {
    width: calc((100% - 36px) / 4);
    padding: 60px 18px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .career-field__box-list__item {
    width: calc(50% - 6px);
  }
}
@media screen and (max-width: 599px) {
  .career-field__box-list__item {
    width: 100%;
    margin-top: 36px;
    padding: 40px 18px 20px;
  }
}
.career-field__box-list__item::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__item::before {
    width: 88px;
    height: 88px;
  }
}
@media screen and (max-width: 599px) {
  .career-field__box-list__item::before {
    width: 72px;
    height: 72px;
    top: -36px;
  }
}
.career-field__box-list__item.item01:before {
  background-color: #5b7bc4;
  background-image: url(../img/career/careerpath/careerpath_icon01.svg);
  background-size: 50px auto;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__item.item01:before {
    background-size: 45px auto;
  }
}
@media screen and (max-width: 599px) {
  .career-field__box-list__item.item01:before {
    background-size: 40px auto;
  }
}
.career-field__box-list__item.item02:before {
  background-color: #4da259;
  background-image: url(../img/career/careerpath/careerpath_icon02.svg);
  background-size: 46px auto;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__item.item02:before {
    background-size: 41.4px auto;
  }
}
@media screen and (max-width: 599px) {
  .career-field__box-list__item.item02:before {
    background-size: 36.8px auto;
  }
}
.career-field__box-list__item.item03:before {
  background-color: #f5a742;
  background-image: url(../img/career/careerpath/careerpath_icon03.svg);
  background-size: 39px auto;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__item.item03:before {
    background-size: 35.1px auto;
  }
}
@media screen and (max-width: 599px) {
  .career-field__box-list__item.item03:before {
    background-size: 31.2px auto;
  }
}
.career-field__box-list__item.item04:before {
  background-color: #ef80a7;
  background-image: url(../img/career/careerpath/careerpath_icon04.svg);
  background-size: 41px auto;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__item.item04:before {
    background-size: 36.9px auto;
  }
}
@media screen and (max-width: 599px) {
  .career-field__box-list__item.item04:before {
    background-size: 32.8px auto;
  }
}
.career-field__box-list__ttl {
  margin-bottom: 20px;
  font-size: 2.6rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__ttl {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .career-field__box-list__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .career-field__box-list__ttl {
    margin-bottom: 4px;
    font-size: 2.2rem;
  }
}
.item01 .career-field__box-list__ttl {
  color: #4563a7;
}
.item02 .career-field__box-list__ttl {
  color: #3a9346;
}
.item03 .career-field__box-list__ttl {
  color: #ea962a;
}
.item04 .career-field__box-list__ttl {
  font-size: 2.4rem;
  color: #d65482;
}
.career-field__box-list__txt {
  margin-bottom: 20px;
  font-size: 1.7rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__txt {
    margin-bottom: 12px;
  }
}
.career-field__box-list__list {
  padding: 28px 16px;
  border-radius: 10px;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__list {
    padding: 18px 16px;
  }
}
.item01 .career-field__box-list__list {
  background-color: #eff4ff;
}
.item02 .career-field__box-list__list {
  background-color: #eff9f1;
}
.item03 .career-field__box-list__list {
  background-color: #fef7e7;
}
.item04 .career-field__box-list__list {
  background-color: #fcedf2;
}
.career-field__box-list__list > li {
  position: relative;
  padding-left: 20px;
  color: #333;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.025em;
}
.career-field__box-list__list > li:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (max-width: 1300px) {
  .career-field__box-list__list > li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.career-field__box-list__list > li::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 5px;
  left: 0;
  border-radius: 50%;
}
.item01 .career-field__box-list__list > li::before {
  background-color: #3c62af;
}
.item02 .career-field__box-list__list > li::before {
  background-color: #4da259;
}
.item03 .career-field__box-list__list > li::before {
  background-color: #f5a742;
}
.item04 .career-field__box-list__list > li::before {
  background-color: #eb6997;
}

.career-example {
  position: relative;
  z-index: 1;
}
.career-example__box {
  margin-bottom: 35px;
  padding: 45px 50px 60px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1300px) {
  .career-example__box {
    padding: 30px 40px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .career-example__box {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box {
    margin-bottom: 15px;
    padding: 18px 18px 22px;
  }
}
.career-example__box:last-child {
  margin-bottom: 110px;
}
@media screen and (max-width: 1024px) {
  .career-example__box:last-child {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box:last-child {
    margin-bottom: 50px;
  }
}
.career-example__box__ttl-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
@media screen and (max-width: 1024px) {
  .career-example__box__ttl-wrap {
    flex-direction: column;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__ttl-wrap {
    margin-bottom: 28px;
  }
}
.career-example__box__ttl {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px 30px;
  width: 350px;
  height: 130px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.025em;
  border-radius: 6px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .career-example__box__ttl {
    margin: 0 auto 25px;
    padding: 15px 25px;
    width: 400px;
    height: auto;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__ttl {
    margin-bottom: 16px;
    width: 100%;
  }
}
.career-example__box__ttl > .department {
  width: 100%;
  padding-bottom: 10px;
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .career-example__box__ttl > .department {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__ttl > .department {
    font-size: 1.9rem;
  }
}
.career-example__box__ttl > .ttl {
  font-size: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .career-example__box__ttl > .ttl {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__ttl > .ttl {
    font-size: 2.1rem;
  }
}
.career-example__box__ttl.blue {
  background-color: #3c62af;
}
.career-example__box__ttl.blue > .department {
  border-bottom: 1px solid #7791c7;
}
.career-example__box__ttl.green {
  background-color: #2d9c51;
}
.career-example__box__ttl.green > .department {
  border-bottom: 1px solid #6cba86;
}
.career-example__box__lead {
  margin-left: 70px;
  font-size: 2rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex: 1;
}
@media screen and (max-width: 1300px) {
  .career-example__box__lead {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .career-example__box__lead {
    margin-left: 0;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__lead {
    font-size: 1.8rem;
  }
}
.career-example__box__figure {
  margin-top: -70px;
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .career-example__box__figure {
    margin-top: 0;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__figure {
    margin-bottom: 20px;
  }
}
.career-example__box__list-box {
  display: flex;
  gap: 6px;
  padding: 10px;
  border: 1px solid #4c7cd6;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .career-example__box__list-box {
    flex-direction: column;
  }
}
.career-example__box__list-box__ttl {
  display: grid;
  place-items: center;
  width: 220px;
  min-height: 140px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background-color: #547ecd;
  border-radius: 10px;
}
@media screen and (max-width: 1300px) {
  .career-example__box__list-box__ttl {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .career-example__box__list-box__ttl {
    width: 100%;
    min-height: auto;
    padding: 10px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__list-box__ttl {
    padding: 8px;
    font-size: 1.8rem;
  }
}
.career-example__box__list-box__list {
  display: flex;
  padding: 10px 0;
  flex: 1;
}
@media screen and (max-width: 599px) {
  .career-example__box__list-box__list {
    flex-direction: column;
    padding: 4px 10px;
  }
}
.career-example__box__list-box__list__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px 0 26px;
  width: 33.3333333333%;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1300px) {
  .career-example__box__list-box__list__item {
    padding: 0 10px 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .career-example__box__list-box__list__item {
    padding: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__list-box__list__item {
    padding: 10px 0;
    width: 100%;
  }
}
.career-example__box__list-box__list__item.item01 {
  padding-right: 20px;
  border-right: 1px solid #4c7cd6;
}
@media screen and (max-width: 1024px) {
  .career-example__box__list-box__list__item.item01 {
    padding-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__list-box__list__item.item01 {
    padding: 0 0 10px;
    border-right: none;
    border-bottom: 1px solid #4c7cd6;
  }
}
.career-example__box__list-box__list__item.item02 {
  padding-right: 20px;
  border-right: 1px solid #4c7cd6;
}
@media screen and (max-width: 599px) {
  .career-example__box__list-box__list__item.item02 {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #4c7cd6;
  }
}
@media screen and (max-width: 1024px) {
  .career-example__box__list-box__list__item.item03 {
    padding-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__list-box__list__item.item03 {
    padding-bottom: 0;
  }
}
.career-example__box__list-box__list__ttl {
  margin-bottom: 5px;
  padding: 10px 0 10px 46px;
  font-size: 2rem;
  color: #264d9d;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background-repeat: no-repeat;
  background-position: 0 center;
}
@media screen and (max-width: 1024px) {
  .career-example__box__list-box__list__ttl {
    padding: 4px 0 4px 38px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__list-box__list__ttl {
    margin-bottom: 0;
    padding: 2px 0 2px 32px;
    font-size: 1.8rem;
  }
}
.item01 .career-example__box__list-box__list__ttl {
  background-image: url(../img/career/careerpath/careerpath_icon05.svg);
  background-size: 36px auto;
}
@media screen and (max-width: 1024px) {
  .item01 .career-example__box__list-box__list__ttl {
    background-size: 28.8px auto;
  }
}
@media screen and (max-width: 599px) {
  .item01 .career-example__box__list-box__list__ttl {
    background-size: 21.6px auto;
  }
}
.item02 .career-example__box__list-box__list__ttl {
  padding-left: 54px;
  background-image: url(../img/career/careerpath/careerpath_icon06.svg);
  background-size: 40px auto;
}
@media screen and (max-width: 1024px) {
  .item02 .career-example__box__list-box__list__ttl {
    padding-left: 44px;
    background-size: 32px auto;
  }
}
@media screen and (max-width: 599px) {
  .item02 .career-example__box__list-box__list__ttl {
    padding-left: 32px;
    background-size: 24px auto;
  }
}
.item03 .career-example__box__list-box__list__ttl {
  padding-left: 56px;
  background-image: url(../img/career/careerpath/careerpath_icon07.svg);
  background-size: 42px auto;
}
@media screen and (max-width: 1024px) {
  .item03 .career-example__box__list-box__list__ttl {
    padding-left: 48px;
    background-size: 33.6px auto;
  }
}
@media screen and (max-width: 599px) {
  .item03 .career-example__box__list-box__list__ttl {
    padding-left: 32px;
    background-size: 25.2px auto;
  }
}
.career-example__box__block {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .career-example__box__block {
    flex-direction: column;
  }
}
.career-example__box__block__figure {
  margin-right: 70px;
  width: 350px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .career-example__box__block__figure {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__figure {
    margin-right: 30px;
    width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__block__figure {
    margin-right: 0;
    margin-bottom: 30px;
    width: 80%;
  }
}
.career-example__box__block__contents {
  flex: 1;
}
.career-example__box__block__list-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 24px 0 20px;
  border: 1px solid #2d9c51;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__list-box {
    margin-bottom: 20px;
    padding: 20px 0 18px;
  }
}
@media screen and (max-width: 834px) {
  .career-example__box__block__list-box {
    flex-wrap: wrap;
    padding: 16px 8px 8px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__block__list-box {
    margin-bottom: 15px;
  }
}
.career-example__box__block__list-box::before {
  content: "キャリアアップの例";
  position: absolute;
  padding: 0 8px;
  top: -20px;
  left: 14px;
  font-size: 2rem;
  color: #248a45;
  font-weight: 500;
  letter-spacing: 0.04em;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__list-box::before {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__block__list-box::before {
    font-size: 1.8rem;
  }
}
.career-example__box__block__list-box__item {
  padding: 80px 18px 2px;
  font-size: 1.8rem;
  color: #208240;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__list-box__item {
    padding: 70px 12px 2px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .career-example__box__block__list-box__item {
    padding: 68px 8px 12px;
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__block__list-box__item {
    font-size: 1.6rem;
  }
}
.career-example__box__block__list-box__item:not(:last-child) {
  border-right: 1px solid #2d9c51;
}
@media screen and (max-width: 834px) {
  .career-example__box__block__list-box__item:not(:last-child) {
    border-right: none;
  }
}
.career-example__box__block__list-box__item.item01 {
  background-image: url(../img/career/careerpath/careerpath_icon08.svg);
  background-size: 74px auto;
  background-position: 46px 16px;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__list-box__item.item01 {
    background-size: 66.6px auto;
    background-position: 42px 14px;
  }
}
@media screen and (max-width: 834px) {
  .career-example__box__block__list-box__item.item01 {
    border-right: 1px solid #2d9c51;
    border-bottom: 1px solid #2d9c51;
  }
}
.career-example__box__block__list-box__item.item02 {
  background-image: url(../img/career/careerpath/careerpath_icon09.svg);
  background-size: 54px auto;
  background-position: center 20px;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__list-box__item.item02 {
    background-size: 48.6px auto;
  }
}
@media screen and (max-width: 834px) {
  .career-example__box__block__list-box__item.item02 {
    border-bottom: 1px solid #2d9c51;
  }
}
.career-example__box__block__list-box__item.item03 {
  background-image: url(../img/career/careerpath/careerpath_icon10.svg);
  background-size: 69px auto;
  background-position: center 18px;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__list-box__item.item03 {
    background-size: 62.1px auto;
  }
}
@media screen and (max-width: 834px) {
  .career-example__box__block__list-box__item.item03 {
    border-right: 1px solid #2d9c51;
  }
}
.career-example__box__block__list-box__item.item04 {
  background-image: url(../img/career/careerpath/careerpath_icon11.svg);
  background-size: 48px auto;
  background-position: center 14px;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__list-box__item.item04 {
    background-size: 43.2px auto;
  }
}
.career-example__box__block__txt-box {
  padding: 16px 30px 28px;
  font-size: 1.7rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #e3f8ea;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__txt-box {
    padding: 16px 26px 20px;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__block__txt-box {
    font-size: 1.6rem;
  }
}
.career-example__box__block__txt-box__ttl {
  margin-bottom: 6px;
  padding: 4px 0 0 40px;
  font-size: 2rem;
  color: #248a45;
  letter-spacing: 0.04em;
  background-image: url(../img/career/careerpath/careerpath_icon12.svg);
  background-repeat: no-repeat;
  background-size: 34px auto;
}
@media screen and (max-width: 1024px) {
  .career-example__box__block__txt-box__ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .career-example__box__block__txt-box__ttl {
    padding: 2px 0 0 34px;
    font-size: 1.8rem;
    background-size: 30px auto;
  }
}

.career-outro {
  position: relative;
  text-align: center;
  margin-bottom: 65px;
}
@media screen and (max-width: 599px) {
  .career-outro {
    margin-bottom: 50px;
  }
}
.career-outro::before {
  background-image: url(../img/common/contents_bg04.webp), url(../img/common/contents_bg03.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left 25px top 110px;
  content: "";
  height: calc(100% + 300px);
  width: calc(100% + 100px);
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: -170px;
}
@media screen and (max-width: 1024px) {
  .career-outro::before {
    display: none;
  }
}
.career-outro__catch {
  margin-bottom: 35px;
  font-size: 3.2rem;
  color: #fb8e00;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1024px) {
  .career-outro__catch {
    margin-bottom: 25px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .career-outro__catch {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
}
.career-outro__lead {
  font-size: 1.8rem;
  color: #333;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 599px) {
  .career-outro__lead {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}

.career-careerpath-btn {
  position: relative;
  max-width: 270px;
  font-size: 1.7rem;
  display: block;
  color: #ff9000;
  font-weight: 500;
  text-align: center;
  padding: 24px 40px 24px;
  line-height: 1.3;
  border-radius: 100px;
  border: 1px solid #ff9000;
  background-color: #faf3e3;
}
.career-careerpath-btn::before {
  background-image: url(../img/common/arw_orange.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 16px;
  width: 16px;
  left: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(180deg);
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  .career-careerpath-btn::before {
    left: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .career-careerpath-btn:hover {
    color: rgba(255, 144, 0, 0.8);
    border-color: rgba(255, 144, 0, 0.8);
    transform: translateY(2px);
  }
  .career-careerpath-btn:hover::before {
    opacity: 0.8;
  }
}
@media screen and (max-width: 834px) {
  .career-careerpath-btn {
    padding: 21px 40px 21px;
  }
}
@media screen and (max-width: 599px) {
  .career-careerpath-btn {
    max-width: 210px;
    font-size: 1.5rem;
    padding: 18px 20px 17px 35px;
  }
}

/*--------------------------------------------------------
qualification
----------------------------------------------------------*/
.qualification-wrapper {
  background-color: #faf3e3;
  background-image: url(../img/common/contents_bg03.webp), url(../img/common/contents_bg05.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: right calc(50% - 535px) top 50px, left calc(50% - 570px) top;
}
@media screen and (max-width: 1500px) {
  .qualification-wrapper {
    background-image: none;
  }
}

.qualification-staff {
  display: flex;
  position: relative;
  padding: 60px 0px;
  margin-bottom: 40px;
  align-items: start;
}
@media screen and (max-width: 834px) {
  .qualification-staff {
    flex-direction: column;
    padding: 0px 0px 40px;
    gap: 35px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .qualification-staff {
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 35px;
  }
}
.qualification-staff::before {
  background: #fff;
  content: "";
  height: 100%;
  width: calc(100% - 80px);
  right: 0;
  position: absolute;
  top: 0px;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .qualification-staff::before {
    top: 40px;
    width: calc(100% - 25px);
    height: calc(100% - 40px);
  }
}
@media screen and (max-width: 599px) {
  .qualification-staff::before {
    top: 25px;
    width: 100%;
    height: calc(100% - 25px);
  }
}

.qualification-staff-prof {
  position: relative;
  width: 270px;
  color: #fff;
  background: #FE9B0E;
  background: linear-gradient(180deg, rgb(254, 155, 14) 0%, rgb(255, 190, 51) 100%);
  border-radius: 10px;
  padding: 38px 22px 32px;
}
@media screen and (max-width: 834px) {
  .qualification-staff-prof {
    padding: 10px 22px;
    width: 340px;
    display: flex;
    align-items: center;
    min-height: 84px;
  }
}
@media screen and (max-width: 599px) {
  .qualification-staff-prof {
    border-radius: 6px;
    width: 260px;
    padding: 12px 15px;
    min-height: auto;
  }
}
.qualification-staff-prof__work {
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 834px) {
  .qualification-staff-prof__work {
    width: 73%;
    font-size: 1.8rem;
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding-right: 20px;
    margin-right: 20px;
    border-bottom: none;
  }
}
@media screen and (max-width: 599px) {
  .qualification-staff-prof__work {
    font-size: 1.5rem;
    letter-spacing: 0;
    padding-right: 5px;
    margin-right: 12px;
  }
}
.qualification-staff-prof__work span {
  letter-spacing: -0.05em;
}
.qualification-staff-prof__initial {
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 834px) {
  .qualification-staff-prof__initial {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .qualification-staff-prof__initial {
    font-size: 1.5rem;
  }
}
.qualification-staff-prof__initial span {
  font-size: 3.8rem;
  margin-right: 5px;
}
@media screen and (max-width: 834px) {
  .qualification-staff-prof__initial span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .qualification-staff-prof__initial span {
    font-size: 2.5rem;
    margin-right: 0;
  }
}

.qualification-staff-comment {
  flex: 1;
  position: relative;
  padding: 2px 55px 0px;
}
@media screen and (max-width: 1024px) {
  .qualification-staff-comment {
    padding: 0px 45px;
  }
}
@media screen and (max-width: 834px) {
  .qualification-staff-comment {
    padding: 0px 40px 0px 70px;
  }
}
@media screen and (max-width: 599px) {
  .qualification-staff-comment {
    padding: 0px 24px;
  }
}
.qualification-staff-comment__catch {
  font-size: 3.3rem;
  color: #ff9000;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .qualification-staff-comment__catch {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .qualification-staff-comment__catch {
    font-size: 2.3rem;
    margin-bottom: 15px;
  }
}
.qualification-staff-comment__text {
  font-size: 1.7rem;
  font-weight: 400;
  color: #333;
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .qualification-staff-comment__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.qualification-support {
  margin-top: 110px;
  margin-bottom: 100px;
}
@media screen and (max-width: 834px) {
  .qualification-support {
    margin-top: 90px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .qualification-support {
    margin-top: 60px;
    margin-bottom: 50px;
  }
}

.qualification-support-inner {
  display: flex;
  gap: 5.5%;
}
@media screen and (max-width: 1024px) {
  .qualification-support-inner {
    gap: 4%;
  }
}
@media screen and (max-width: 599px) {
  .qualification-support-inner {
    flex-direction: column;
  }
}

.qualification-support-title {
  position: relative;
  text-align: center;
  padding-bottom: 34px;
  margin-bottom: 45px;
  line-height: 1;
  font-size: 3.1rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .qualification-support-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .qualification-support-title {
    font-size: 2.2rem;
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
}
.qualification-support-title::before {
  border-radius: 10px;
  background: #FE9B0E;
  background: linear-gradient(90deg, rgb(254, 155, 14) 0%, rgb(255, 190, 51) 100%);
  content: "";
  height: 5px;
  width: 100px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .qualification-support-title::before {
    width: 60px;
    height: 4px;
  }
}

.qualification-support-text {
  padding-top: 8px;
  flex: 1;
  line-height: 2.1;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 834px) {
  .qualification-support-text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  .qualification-support-text {
    margin-bottom: 25px;
  }
}

.qualification-support-image {
  width: 460px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .qualification-support-image {
    width: 42%;
  }
}
@media screen and (max-width: 599px) {
  .qualification-support-image {
    width: 100%;
  }
}
.qualification-support-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.qualification-held-inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 35px;
}
@media screen and (max-width: 599px) {
  .qualification-held-inner {
    padding: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .qualification-table {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .qualification-table tbody {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .qualification-table tr {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .qualification-table tr {
    margin-bottom: 10px;
  }
}
.qualification-table th,
.qualification-table td {
  padding: 35px 20px;
  border-top: 1px solid #d9d9d9;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .qualification-table th,
  .qualification-table td {
    display: block;
    width: 100%;
    border-top: none;
  }
}
.qualification-table tr:first-child th,
.qualification-table tr:first-child td {
  border-top: none;
}
.qualification-table th {
  width: 240px;
  background: #fff9ea;
  color: #ff9000;
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
  vertical-align: top;
}
@media screen and (max-width: 1024px) {
  .qualification-table th {
    width: 100%;
    padding: 16px 18px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 599px) {
  .qualification-table th {
    padding: 12px 15px;
    font-size: 1.8rem;
    border-radius: 5px;
  }
}
.qualification-table td {
  color: #333;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 35px 0px 35px 30px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .qualification-table td {
    padding: 20px 0px;
  }
}
@media screen and (max-width: 599px) {
  .qualification-table td {
    font-size: 1.6rem;
    line-height: 1.7;
    padding: 13px 0px;
  }
}
.qualification-table__box dt {
  position: relative;
  font-size: 1.8rem;
  color: #ff9000;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px dotted #c4c4c4;
  padding-left: 26px;
}
@media screen and (max-width: 599px) {
  .qualification-table__box dt {
    font-size: 1.7rem;
    padding-left: 20px;
  }
}
.qualification-table__box dt::before {
  background: #ffae00;
  content: "";
  height: 16px;
  width: 16px;
  left: 0;
  position: absolute;
  border-radius: 50px;
  top: 4px;
}
@media screen and (max-width: 599px) {
  .qualification-table__box dt::before {
    top: 6px;
    height: 14px;
    width: 14px;
  }
}
.qualification-table__box dd {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .qualification-table__box dd {
    margin-bottom: 18px;
  }
}
.qualification-table__box dd:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------
about
----------------------------------------------------------*/
.about-wrapper {
  background-color: #faf3e3;
  background-image: url(../img/common/contents_bg03.webp), url(../img/common/contents_bg05.webp);
  background-repeat: no-repeat, no-repeat;
  background-position: right calc(50% - 600px) top 55px, left calc(50% - 570px) top;
}
@media screen and (max-width: 1024px) {
  .about-wrapper {
    background-image: none !important;
  }
}
.about-wrapper.department {
  background-image: url(../img/common/contents_bg03.webp), url(../img/common/contents_bg01.webp);
  background-position: right calc(50% - 535px) top 50px, left top;
}
.about-wrapper .page-contents {
  padding-top: 70px;
}
@media screen and (max-width: 834px) {
  .about-wrapper .page-contents {
    padding-top: 55px;
  }
}
@media screen and (max-width: 599px) {
  .about-wrapper .page-contents {
    padding-top: 35px;
  }
}

.about-intro {
  position: relative;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .about-intro {
    padding-bottom: 180px;
  }
}
.about-intro::before {
  background-image: url(../img/about/intro_image02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  right: -20px;
  position: absolute;
  top: -5px;
  width: 228px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
  .about-intro::before {
    width: 21%;
    right: -30px;
  }
}
@media screen and (max-width: 834px) {
  .about-intro::before {
    top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .about-intro::before {
    top: auto;
    bottom: 100px;
    width: 105px;
    right: -10px;
  }
}
.about-intro::after {
  background-image: url(../img/about/intro_image01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  right: 12px;
  position: absolute;
  top: 165px;
  width: 340px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
  .about-intro::after {
    top: 150px;
    right: 0px;
    width: 33%;
  }
}
@media screen and (max-width: 834px) {
  .about-intro::after {
    width: 35%;
    top: 215px;
    right: -10px;
  }
}
@media screen and (max-width: 599px) {
  .about-intro::after {
    top: auto;
    bottom: 0;
    width: 170px;
    right: 60px;
  }
}
.about-intro__catch {
  text-align: center;
  font-size: 3.4rem;
  color: #ff9000;
  letter-spacing: 0.06em;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  .about-intro__catch {
    padding-right: 100px;
  }
}
@media screen and (max-width: 834px) {
  .about-intro__catch {
    font-size: 3rem;
    padding-right: 0;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 599px) {
  .about-intro__catch {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.about-intro__text {
  padding-right: 400px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .about-intro__text {
    padding-right: 38%;
  }
}
@media screen and (max-width: 834px) {
  .about-intro__text {
    font-size: 1.6rem;
    line-height: 1.9;
    padding-right: 37%;
  }
}
@media screen and (max-width: 599px) {
  .about-intro__text {
    padding-right: 0;
  }
}
.about-intro__text p {
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .about-intro__text p {
    margin-bottom: 15px;
  }
}
.about-intro-demo {
  margin-right: -20px;
}

.about-data {
  margin-bottom: 85px;
}
@media screen and (max-width: 599px) {
  .about-data {
    margin-bottom: 45px;
  }
}

.about-data-title {
  position: relative;
  text-align: center;
  padding-bottom: 35px;
  margin-bottom: 45px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .about-data-title {
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
}
.about-data-title::before {
  border-radius: 10px;
  background: #FE9B0E;
  background: linear-gradient(90deg, rgb(254, 155, 14) 0%, rgb(255, 190, 51) 100%);
  content: "";
  height: 5px;
  width: 100px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .about-data-title::before {
    width: 60px;
    height: 4px;
  }
}
.about-data-title__eng {
  font-size: 10.5rem;
  font-weight: 300;
  letter-spacing: 0;
  color: rgba(255, 184, 47, 0.3);
}
@media screen and (max-width: 834px) {
  .about-data-title__eng {
    font-size: 9.5rem;
  }
}
@media screen and (max-width: 599px) {
  .about-data-title__eng {
    font-weight: 400;
    font-size: 7.2rem;
  }
}
.about-data-title__jp {
  margin-top: -17px;
  font-size: 3.1rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .about-data-title__jp {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .about-data-title__jp {
    font-size: 2.2rem;
  }
}

.about-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .about-data-grid {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .about-data-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-data-grid {
    gap: 8px;
  }
}

.about-data-card {
  background: #fff;
  border-radius: 8px;
  padding: 45px 30px 52px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about-data-card {
    padding: 45px 25px 45px;
  }
}
@media screen and (max-width: 599px) {
  .about-data-card {
    padding: 30px 15px 30px;
  }
}
.about-data-card--wide {
  grid-column: span 2;
}
@media screen and (max-width: 599px) {
  .about-data-card--wide02 {
    grid-column: span 2;
  }
}
.about-data-card__title {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin-bottom: 18px;
}
@media screen and (max-width: 834px) {
  .about-data-card__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .about-data-card__title {
    font-size: 1.9rem;
    letter-spacing: 0;
  }
}
.about-data-card__image {
  max-width: 240px;
  display: block;
  margin: 0 auto;
}
.about-data-card__image img {
  max-width: 100%;
}
.about-data-card__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .about-data-card__list {
    gap: 0px 15px;
  }
}
@media screen and (max-width: 599px) {
  .about-data-card__list {
    flex-wrap: wrap;
    max-width: 95% !important;
    justify-content: center;
  }
}
.about-data-card__list.therapist {
  max-width: 600px;
}
@media screen and (max-width: 834px) {
  .about-data-card__list.therapist {
    max-width: 540px;
  }
}
.about-data-card--wide02 .about-data-card__list {
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .about-data-card--wide02 .about-data-card__list {
    max-width: 280px;
    gap: 0px 25px;
  }
}
.about-data-card__list__item {
  flex: 1;
  max-width: 130px;
}
@media screen and (max-width: 599px) {
  .about-data-card__list__item {
    width: calc((100% - 30px) / 3);
    flex: none;
  }
}
@media screen and (max-width: 599px) {
  .about-data-card--wide02 .about-data-card__list__item {
    width: calc((100% - 25px) / 2);
    max-width: 95px;
  }
}
.about-data-card__list__item img {
  max-width: 100%;
}

.about-data-btn {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .about-data-btn {
    max-width: 260px;
  }
}

.about-department {
  margin-bottom: 110px;
}
@media screen and (max-width: 599px) {
  .about-department {
    margin-bottom: 70px;
  }
}
.about-department.other {
  margin-bottom: 0px;
}

.about-department-nav {
  display: flex;
  margin-bottom: 90px;
  border-right: 1px solid #b4b4b4;
}
@media screen and (max-width: 599px) {
  .about-department-nav {
    margin-bottom: 55px;
  }
}
.about-department-nav li {
  border-left: 1px solid #b4b4b4;
  flex: 1;
}
@media screen and (max-width: 834px) {
  .about-department-nav li {
    flex: auto;
  }
}
.about-department-nav li a {
  position: relative;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 500;
  height: 100%;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .about-department-nav li a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .about-department-nav li a {
    padding: 10px 10px 10px 30px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) {
  .about-department-nav li a {
    font-size: 1.7rem;
    line-height: 1.2;
    padding: 5px 5px 5px 28px;
  }
}
.about-department-nav li a::before {
  background-color: #ffbf27;
  background-image: url(../img/common/arw_white.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center center;
  border-radius: 50px;
  transform: rotate(90deg);
  content: "";
  height: 30px;
  width: 30px;
  left: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .about-department-nav li a::before {
    height: 26px;
    width: 26px;
    background-size: 10px auto;
  }
}
@media screen and (max-width: 599px) {
  .about-department-nav li a::before {
    left: 5px;
    height: 22px;
    width: 22px;
    background-size: 8px auto;
  }
}
.about-department-nav li a:hover {
  color: #ff9000;
}
.about-department-nav li a:hover::before {
  background-color: #ffae00;
  top: 5px;
}

.about-department-inner {
  padding-bottom: 35px;
  margin-bottom: 65px;
  border-bottom: 1px solid #ded3b9;
}
@media screen and (max-width: 834px) {
  .about-department-inner {
    padding-bottom: 25px;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-inner {
    padding-bottom: 20px;
    margin-bottom: 45px;
  }
}

.about-department-title {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 38px;
}
@media screen and (max-width: 1024px) {
  .about-department-title {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-title {
    gap: 8px;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.about-department-title__en {
  font-family: "Roboto", sans-serif !important;
  font-size: 9.6rem;
  font-weight: 300;
  line-height: 1;
  color: #f7931e;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .about-department-title__en {
    font-size: 8.6rem;
  }
}
@media screen and (max-width: 834px) {
  .about-department-title__en {
    font-size: 7.6rem;
  }
}
@media screen and (max-width: 599px) {
  .about-department-title__en {
    font-size: 5.3rem;
    letter-spacing: -0.02em;
  }
}
.other .about-department-title__en {
  font-size: 6.5rem;
}
@media screen and (max-width: 834px) {
  .other .about-department-title__en {
    font-size: 5.8rem;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 599px) {
  .other .about-department-title__en {
    font-size: 5rem;
  }
}
.about-department-title__sub {
  position: relative;
  padding-left: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .about-department-title__sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .about-department-title__sub {
    font-size: 2.1rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-title__sub {
    padding-left: 2px;
    font-size: 1.9rem;
  }
}
.about-department-title__sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 40px;
  background: #cfcfcf;
  transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .about-department-title__sub::before {
    height: 28px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-title__sub::before {
    display: none;
  }
}

.about-department-stit {
  position: relative;
  margin-bottom: 25px;
  font-size: 2.8rem;
  font-weight: 500;
  padding-left: 80px;
  color: #333;
}
@media screen and (max-width: 834px) {
  .about-department-stit {
    font-size: 2.5rem;
    padding-left: 70px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-stit {
    font-size: 2.2rem;
    padding-left: 55px;
    margin-bottom: 25px;
    line-height: 1.4;
  }
}
.about-department-stit::before, .about-department-stit::after {
  content: "";
  height: 48px;
  width: 48px;
  left: 0;
  position: absolute;
  top: -3px;
  border-radius: 50px;
}
@media screen and (max-width: 834px) {
  .about-department-stit::before, .about-department-stit::after {
    height: 42px;
    width: 42px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-stit::before, .about-department-stit::after {
    height: 40px;
    width: 40px;
  }
}
.about-department-stit::before {
  background: #f7a117;
  background: linear-gradient(90deg, rgb(254, 155, 14) 0%, rgb(255, 190, 51) 100%);
}
.about-department-stit::after {
  background: #97c93d;
  background: linear-gradient(90deg, #8cbd2d 0%, #a9dc47 100%);
  left: 36px;
  height: 28px;
  width: 28px;
  top: 18px;
}
@media screen and (max-width: 1024px) {
  .about-department-stit::after {
    height: 24px;
    width: 24px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-stit::after {
    width: 20px;
    height: 20px;
    left: 26px;
  }
}

.about-department-stit02 {
  position: relative;
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-weight: 500;
  color: #333;
  padding-left: 24px;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .about-department-stit02 {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 599px) {
  .about-department-stit02 {
    font-size: 2.4rem;
    padding-left: 18px;
    margin-bottom: 20px;
  }
}
.about-department-stit02::before {
  border-radius: 5px;
  background: #ff9000;
  content: "";
  height: 48px;
  width: 6px;
  left: 0;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 834px) {
  .about-department-stit02::before {
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-stit02::before {
    height: 35px;
    width: 5px;
  }
}
.about-department-stit02 span {
  font-size: 3rem;
  margin-left: 15px;
}
@media screen and (max-width: 834px) {
  .about-department-stit02 span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .about-department-stit02 span {
    font-size: 2rem;
    margin-left: 10px;
  }
}

.about-department-policy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .about-department-policy {
    gap: 12px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-policy {
    margin-bottom: 40px !important;
  }
}
.other .about-department-policy {
  margin-bottom: 50px;
}
.about-department-policy__item {
  display: flex;
  background: #fff;
  border-radius: 8px;
  padding: 18px;
}
@media screen and (max-width: 834px) {
  .about-department-policy__item {
    padding: 12px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-policy__item {
    flex-direction: column;
  }
}
.about-department-policy__label {
  flex-shrink: 0;
  width: 195px;
  padding: 17px;
  line-height: 1.6;
  border-radius: 8px;
  background: #f7a117;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .about-department-policy__label {
    width: 160px;
    padding: 10px;
    font-size: 1.8rem;
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-policy__label {
    width: 100%;
    line-height: 1.4;
    margin-bottom: 5px;
    font-size: 1.7rem;
  }
}
.about-department-policy__content {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 12px 0px 12px 35px;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .about-department-policy__content {
    padding-left: 25px;
  }
}
@media screen and (max-width: 834px) {
  .about-department-policy__content {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .about-department-policy__content {
    padding: 10px 5px !important;
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.reha .about-department-policy__content {
  padding-top: 20px;
  padding-bottom: 20px;
}
.about-department-policy__content span {
  color: #8ab326;
  font-size: 2.4rem;
  margin-right: 20px;
}
@media screen and (max-width: 834px) {
  .about-department-policy__content span {
    font-size: 2rem;
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .about-department-policy__content span {
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 5px;
  }
}
.about-department-policy__content .lead {
  display: inline-block;
  margin-bottom: 10px;
}
.about-department-policy__list li {
  position: relative;
  padding-left: 24px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.about-department-policy__list li::before {
  background: #ff9000;
  content: "";
  height: 12px;
  width: 12px;
  left: 0;
  position: absolute;
  top: 8px;
  border-radius: 50px;
}

.about-department-figure {
  margin-top: -55px;
  margin-bottom: 20px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .about-department-figure {
    margin-top: -40px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-figure {
    margin-top: -15px;
  }
}
@media screen and (max-width: 834px) {
  .about-department-figure img {
    scale: 1.08;
  }
}
@media screen and (max-width: 599px) {
  .about-department-figure img {
    scale: 1.15;
  }
}

.about-department-feature {
  margin-bottom: 25px;
}
.nursing .about-department-feature {
  gap: 70px;
  margin-bottom: 50px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .nursing .about-department-feature {
    gap: 40px;
  }
}
@media screen and (max-width: 834px) {
  .nursing .about-department-feature {
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .nursing .about-department-feature {
    gap: 18px;
  }
}
.about-department-feature__title {
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  color: #ff9000;
}
@media screen and (max-width: 1024px) {
  .about-department-feature__title {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-feature__title {
    font-size: 2.4rem;
  }
}
.other .about-department-feature__title {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .other .about-department-feature__title {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .other .about-department-feature__title {
    font-size: 2rem;
    margin-bottom: 7px;
  }
}
.about-department-feature__text {
  flex: 1;
}
.nursing .about-department-feature__text {
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .nursing .about-department-feature__text {
    padding-top: 0;
  }
}
.about-department-feature__text p {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.9;
  color: #333;
}
@media screen and (max-width: 599px) {
  .about-department-feature__text p {
    font-size: 1.6rem;
  }
}
.about-department-feature__image {
  max-width: 577px;
}
@media screen and (max-width: 1024px) {
  .about-department-feature__image {
    max-width: 48%;
  }
}
@media screen and (max-width: 834px) {
  .about-department-feature__image {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .about-department-feature__image {
    max-width: 100%;
  }
}

.about-department-strength {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .about-department-strength {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-strength {
    margin-top: 40px;
  }
}
.about-department-strength__item {
  position: relative;
  padding: 40px 30px 32px;
  border: 1px solid #ff9000;
  border-radius: 14px;
  background: transparent;
}
@media screen and (max-width: 834px) {
  .about-department-strength__item {
    min-height: auto;
    padding: 40px 28px 28px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-strength__item {
    padding: 28px 20px 20px;
  }
}
.about-department-strength__number {
  position: absolute;
  top: -38px;
  left: 24px;
  font-family: "Roboto", sans-serif !important;
  font-size: 6.5rem;
  font-weight: 400;
  line-height: 1;
  color: #ff9000;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 834px) {
  .about-department-strength__number {
    font-size: 6rem;
  }
}
@media screen and (max-width: 599px) {
  .about-department-strength__number {
    top: -30px;
    font-size: 5.1rem;
  }
}
.about-department-strength__title {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ff9000;
}
@media screen and (max-width: 834px) {
  .about-department-strength__title {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-strength__title {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}
.about-department-strength__text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}
@media screen and (max-width: 599px) {
  .about-department-strength__text {
    font-size: 1.6rem;
  }
}

.about-department-btn {
  position: relative;
  max-width: 270px;
  font-size: 1.7rem;
  display: block;
  color: #ff9000;
  font-weight: 500;
  text-align: center;
  padding: 24px 40px 24px;
  line-height: 1.3;
  border-radius: 100px;
  border: 1px solid #ff9000;
}
.about-department-btn::before {
  background-image: url(../img/common/arw_orange.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 16px;
  width: 16px;
  left: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(180deg);
}
@media screen and (max-width: 599px) {
  .about-department-btn::before {
    left: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .about-department-btn:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 834px) {
  .about-department-btn {
    padding: 21px 40px 21px;
  }
}
@media screen and (max-width: 599px) {
  .about-department-btn {
    max-width: 210px;
    font-size: 1.5rem;
    padding: 18px 20px 17px 35px;
  }
}

/*--------------------------------------------------------
sitemap
----------------------------------------------------------*/
.sitemap-wrapper {
  background-color: #faf3e3;
}

.sitemap-list {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
}
.sitemap-list__item {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__item {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__item {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list__item {
    transform: translateY(2px);
  }
}
.sitemap-list__link {
  position: relative;
  display: block;
  padding: 25px 28px;
  font-size: 2rem;
  font-weight: 500;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .sitemap-list__link {
    padding: 23px 28px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__link {
    font-size: 1.7rem;
    padding: 17px 20px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list__link:hover {
    color: #ff9000;
  }
  .sitemap-list__link:hover::before {
    right: 15px;
  }
}
.sitemap-list__link::before {
  transition: 0.3s;
  background-color: #ff9000;
  background-image: url(../img/common/arw_white.svg);
  background-size: 13px auto;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  height: 40px;
  width: 40px;
  border-radius: 50px;
  right: 20px;
  bottom: 20px;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .sitemap-list__link::before {
    background-size: 10px auto;
    height: 32px;
    width: 32px;
    bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list__link::before {
    right: 10px;
    bottom: 15px;
  }
}
.sitemap-list-sub {
  margin: -3px 20px 0px;
  border-top: 1px solid #ebebeb;
}
.sitemap-list-sub__item {
  padding: 20px 0px 30px;
}
@media screen and (max-width: 599px) {
  .sitemap-list-sub__item {
    padding: 15px 0px 20px;
  }
}
.sitemap-list-sub__link {
  color: #222;
  font-weight: 500;
  padding: 15px 15px 15px 32px;
  font-size: 1.8rem;
  background-image: url(../img/common/arw_purple.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: left 5px top 53%;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .sitemap-list-sub__link {
    padding: 10px 10px 10px 27px;
    background-size: 12px auto;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap-list-sub__link:hover {
    background-position: left 8px top 53%;
    color: #a464d6;
  }
}/*# sourceMappingURL=style.css.map */