@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&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=Oswald:wght@200;300;400;500;600;700&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;
  }
}
/* 1600以上 */
@media screen and (max-width: 1600px) {
  .only1600 {
    display: none !important;
  }
}
/* 1500以上 */
@media screen and (max-width: 1500px) {
  .only1500 {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* 1300以上 */
@media screen and (max-width: 1300px) {
  .only1300 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 599px) and (max-width: 1024px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1600px;
    -webkit-print-color-adjust: exact;
    transform: scale(0.6);
    -moz-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform-origin: 0 0;
  }
  /*　------- ↓その他参考例　---------
  .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%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.4rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.3rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
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;
}

/*テーブル指定*/
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;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #1264b8;
}

/*すべての要素の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: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* 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;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: 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;
}

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

/*フォント*/
.fw-bold {
  font-weight: 700;
}

/*マージン*/
.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: 5px !important;
  }
}

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

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

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

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

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

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

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

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

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

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !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: 10px !important;
  }
}

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

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

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

.footer-application {
  padding: 70px 40px;
  background-color: #00a0e2;
}
@media screen and (max-width: 1024px) {
  .footer-application {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-application {
    padding: 40px 25px;
  }
}
.footer-application__btn {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  background-image: url(../img/common/icon_hand_click.svg);
  background-repeat: no-repeat;
  background-position: center right 13%;
  background-size: 46px auto;
  border-radius: 80px;
  color: #000;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer-application__btn {
    background-size: 40px auto;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-application__btn {
    padding: 20px 45px 20px 30px;
    background-position: center right 22px;
    background-size: 26px auto;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1025px) {
  .footer-application__btn:hover {
    background-color: #e0073a;
    background-image: url(../img/common/icon_hand_click_white.svg);
    color: #fff;
  }
}

.footer {
  position: relative;
  padding: 45px 40px 40px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    margin-bottom: 50px;
    padding: 215px 25px 20px;
  }
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  max-width: 930px;
  width: 49%;
  height: 100%;
  background-image: url(../img/common/transparency.png), url(../img/common/footer_bg.webp);
  background-repeat: repeat-y, no-repeat;
  background-position: left, center;
  background-size: contain, cover;
}
@media screen and (max-width: 599px) {
  .footer::after {
    width: 100%;
    height: 190px;
    background-image: url(../img/common/footer_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer__logo {
  max-width: 566px;
  width: 41%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    max-width: 400px;
  }
}
@media screen and (max-width: 599px) {
  .footer__logo {
    width: 95%;
    margin: 0 auto 20px;
  }
}
.footer__address {
  margin-bottom: 35px;
  color: #444;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .footer__address {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .footer__address {
    font-size: 1.4rem;
    text-align: center;
  }
}
.footer__address a {
  color: #444;
}
.footer__btn {
  display: block;
  position: relative;
  max-width: 270px;
  margin-bottom: 30px;
  padding: 16px;
  background-color: #1264b8;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer__btn {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .footer__btn {
    margin: 0 auto 40px;
    font-size: 1.6rem;
  }
}
.footer__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto 0;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .footer__btn::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1025px) {
  .footer__btn:hover {
    background-color: #25346d;
  }
}
.footer__copyright {
  color: #444;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .footer__copyright {
    font-size: 1rem;
    text-align: center;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}

.header-logo {
  margin-left: 25px;
}
@media screen and (max-width: 1300px) {
  .header-logo {
    margin-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    margin-left: 6px;
  }
}
.header-logo__link {
  display: flex;
  align-items: center;
}
.header-logo__img {
  max-width: 327px;
}
@media screen and (max-width: 1300px) {
  .header-logo__img {
    max-width: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo__img {
    max-width: 270px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__img {
    max-width: 200px;
  }
}
.header-logo__caption {
  position: relative;
  margin-left: 35px;
  padding-left: 35px;
  color: #1264b8;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1300px) {
  .header-logo__caption {
    margin-left: 20px;
    padding-left: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo__caption {
    margin-left: 25px;
    padding-left: 25px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .header-logo__caption {
    margin-left: 10px;
    padding-left: 12px;
    font-size: 1.4rem;
  }
}
.header-logo__caption::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 60px;
  margin: auto 0;
  background-color: #1264b8;
}
@media screen and (max-width: 599px) {
  .header-logo__caption::after {
    height: 35px;
  }
}
.header-logo__caption > span {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 0.02em;
  line-height: 0.75;
}
@media screen and (max-width: 599px) {
  .header-logo__caption > span {
    margin-top: 2px;
    font-size: 1rem;
  }
}

.header-nav {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .header-nav {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav {
    margin-right: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header-nav {
    margin-right: 50px;
  }
}
.header-nav__menu {
  display: flex;
  align-items: center;
  margin-right: 50px;
}
@media screen and (max-width: 1500px) {
  .header-nav__menu {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .header-nav__menu {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .header-nav__menu {
    display: none;
  }
}
.header-nav__menu__item:not(:last-child) {
  margin-right: 49px;
}
@media screen and (max-width: 1500px) {
  .header-nav__menu__item:not(:last-child) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1300px) {
  .header-nav__menu__item:not(:last-child) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .header-nav__menu__item:not(:last-child) {
    margin-right: 20px;
  }
}
.header-nav__menu__link {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1300px) {
  .header-nav__menu__link {
    font-size: 1.5rem;
  }
}
.header-nav__menu__link.active {
  color: #00a0e2;
}
@media screen and (min-width: 1025px) {
  .header-nav__menu__link:hover {
    color: #00a0e2;
  }
}

.header-application {
  display: block;
  width: 100px;
  height: 100%;
  background-color: #e0073a;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .header-application {
    width: 80px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .header-application {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
.header-application > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 50px;
  background-image: url(../img/common/icon_phone_check.svg);
  background-repeat: no-repeat;
  background-position: center top 22px;
  background-size: 29px auto;
}
@media screen and (max-width: 1024px) {
  .header-application > span {
    padding-top: 50px;
    background-position: center top 18px;
    background-size: 24px auto;
  }
}
@media screen and (max-width: 599px) {
  .header-application > span {
    padding-top: 0;
    padding-left: 32px;
    background-position: center left;
    background-size: 22px auto;
  }
}
@media screen and (min-width: 1025px) {
  .header-application:hover {
    background-color: #111;
  }
}

.header-sp {
  padding: 100px 15% 60px;
}
@media screen and (max-width: 834px) {
  .header-sp {
    padding: 100px 10% 60px;
  }
}
@media screen and (max-width: 599px) {
  .header-sp {
    padding: 70px 8% 60px;
  }
}

.header-sp-menu {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .header-sp-menu {
    margin-bottom: 15px;
  }
}
.header-sp-menu__link {
  display: block;
  padding: 18px;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .header-sp-menu__link {
    padding: 15px;
    font-size: 1.5rem;
  }
}

.header-sp-btn {
  display: block;
  padding: 20px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .header-sp-btn {
    padding: 15px;
    font-size: 1.5rem;
  }
}
.header-sp-btn.recruit {
  background-color: #fff;
  color: #25346d;
}

#nav-open {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 100;
  background-color: #25346d;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  #nav-open {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  #nav-open {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    width: 60px;
    height: 60px;
  }
}
#nav-open > span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 26px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  #nav-open > span {
    width: 19px;
  }
}
#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 599px) {
  #nav-open > span > span {
    height: 2px;
  }
}
#nav-open > span > span::before, #nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.3s;
}
#nav-open > span > span::before {
  top: -10px;
}
@media screen and (max-width: 599px) {
  #nav-open > span > span::before {
    top: -7px;
  }
}
#nav-open > span > span::after {
  bottom: -10px;
}
@media screen and (max-width: 599px) {
  #nav-open > span > span::after {
    bottom: -7px;
  }
}
#nav-open.active > span > span {
  background-color: transparent;
}
#nav-open.active > span > span::before, #nav-open.active > span > span::after {
  top: 0;
  background-color: #fff;
}
#nav-open.active > span > span::before {
  transform: rotate(225deg);
}
#nav-open.active > span > span::after {
  transform: rotate(-225deg);
}
@media screen and (min-width: 1025px) {
  #nav-open:hover {
    background-color: #111;
  }
}

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 45%;
  height: 100%;
  padding-bottom: 60px;
  background-color: rgba(18, 100, 184, 0.97);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  #nav-content {
    width: 100%;
  }
}

#nav-input {
  display: none;
}
#nav-input:checked ~ #nav-content {
  pointer-events: auto;
  opacity: 1;
}

.content-main {
  padding: 40px 40px 90px;
}
@media screen and (max-width: 1024px) {
  .content-main {
    padding: 50px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .content-main {
    padding: 40px 20px 50px;
  }
}

.content-inner, .content-inner--w1300 {
  max-width: 1180px;
  margin: 0 auto;
}
.content-inner--w1300 {
  max-width: 1300px;
}

.full {
  overflow: hidden;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.pagetitle, .pagetitle--interview, .pagetitle--charm, .pagetitle--job, .pagetitle--career, .pagetitle--faq {
  position: relative;
  margin-top: 100px;
  padding: 0 40px 40px;
}
@media screen and (max-width: 1024px) {
  .pagetitle, .pagetitle--interview, .pagetitle--charm, .pagetitle--job, .pagetitle--career, .pagetitle--faq {
    margin-top: 80px;
    padding: 0 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle, .pagetitle--interview, .pagetitle--charm, .pagetitle--job, .pagetitle--career, .pagetitle--faq {
    margin-top: 50px;
    padding: 0 20px;
  }
}
.pagetitle::before, .pagetitle--interview::before, .pagetitle--charm::before, .pagetitle--job::before, .pagetitle--career::before, .pagetitle--faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 190px;
  background-color: #25346d;
  z-index: -1;
}
@media screen and (max-width: 1300px) {
  .pagetitle::before, .pagetitle--interview::before, .pagetitle--charm::before, .pagetitle--job::before, .pagetitle--career::before, .pagetitle--faq::before {
    height: 14.6vw;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle::before, .pagetitle--interview::before, .pagetitle--charm::before, .pagetitle--job::before, .pagetitle--career::before, .pagetitle--faq::before {
    height: 140px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle::before, .pagetitle--interview::before, .pagetitle--charm::before, .pagetitle--job::before, .pagetitle--career::before, .pagetitle--faq::before {
    height: 120px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle::before, .pagetitle--interview::before, .pagetitle--charm::before, .pagetitle--job::before, .pagetitle--career::before, .pagetitle--faq::before {
    height: 200px;
  }
}
.pagetitle::after, .pagetitle--interview::after, .pagetitle--charm::after, .pagetitle--job::after, .pagetitle--career::after, .pagetitle--faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  width: 60%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .pagetitle::after, .pagetitle--interview::after, .pagetitle--charm::after, .pagetitle--job::after, .pagetitle--career::after, .pagetitle--faq::after {
    left: 20%;
    width: 80%;
    height: 200px;
  }
}
.pagetitle--faq::after {
  background-image: url(../img/faq/pagetitle.webp);
}
.pagetitle--career::after {
  background-image: url(../img/career/pagetitle.webp);
}
.pagetitle--job::after {
  background-image: url(../img/job/pagetitle.webp);
}
.pagetitle--charm::after {
  background-image: url(../img/charm/pagetitle.webp);
}
.pagetitle--interview::after {
  background-image: url(../img/interview/pagetitle.webp);
}

.pagetitle-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 190px 0 0;
}
@media screen and (max-width: 1300px) {
  .pagetitle-inner {
    padding: 14.6vw 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle-inner {
    padding: 140px 0 0;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle-inner {
    padding: 120px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-inner {
    padding: 200px 0 0;
  }
}

.pagetitle-title {
  position: absolute;
  top: 28px;
  left: 0;
  color: #fff;
  font-size: 11rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .pagetitle-title {
    top: 2.2vw;
    font-size: 8.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle-title {
    top: 18px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-title {
    font-size: 5rem;
  }
}

.pagetitle-content {
  width: 31%;
  padding: 50px 0 0;
}
@media screen and (max-width: 1300px) {
  .pagetitle-content {
    width: 34%;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle-content {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-content {
    width: 100%;
    padding: 30px 0 0;
  }
}
.pagetitle-content__title {
  position: relative;
  margin-bottom: 32px;
  padding-top: 25px;
  border-top: 1px solid #25346d;
  color: #25346d;
  font-size: 3.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1300px) {
  .pagetitle-content__title {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle-content__title {
    margin-bottom: 25px;
    padding-top: 22px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-content__title {
    margin-bottom: 20px;
    padding-top: 20px;
    font-size: 2.2rem;
  }
}
.pagetitle-content__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 97px;
  height: 3px;
  background-color: #25346d;
}
@media screen and (max-width: 599px) {
  .pagetitle-content__title::before {
    width: 80px;
    height: 2px;
  }
}
.pagetitle-content__catch {
  margin-bottom: 30px;
  color: #000;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1300px) {
  .pagetitle-content__catch {
    font-size: 1.9vw;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle-content__catch {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-content__catch {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
.pagetitle-content__text {
  color: #000;
  font-size: 1.6rem;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .pagetitle-content__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-content__text {
    font-size: 1.4rem;
  }
}

.breadcrumbs {
  padding: 20px 40px 0;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs-list {
  display: flex;
  justify-content: flex-end;
}
.breadcrumbs-list__item {
  position: relative;
  color: #444;
  font-size: 1.6rem;
}
.breadcrumbs-list__item:not(:last-child) {
  padding-right: 38px;
}
.breadcrumbs-list__item:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: -1px;
  right: 12px;
  transition: 0.3s;
}
.breadcrumbs-list__item > a {
  color: #1264b8;
}
@media screen and (min-width: 1025px) {
  .breadcrumbs-list__item > a:hover {
    color: #e0073a;
  }
}

.pagenav {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .pagenav {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .pagenav {
    margin-bottom: 40px;
  }
}
.pagenav__list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .pagenav__list {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .pagenav__list {
    gap: 12px;
  }
}
@media screen and (max-width: 599px) {
  .pagenav__list {
    flex-direction: column;
  }
}
.pagenav__list__item {
  flex: 1;
}
.pagenav__list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 25px 55px;
  border: 2px solid #1264b8;
  border-radius: 50px;
  color: #1264b8;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .pagenav__list__link {
    padding: 18px 45px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .pagenav__list__link {
    padding: 12px 40px;
    font-size: 1.5rem;
  }
}
.pagenav__list__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #1264b8;
  border-right: 2px solid #1264b8;
  transform: rotate(135deg);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .pagenav__list__link::after {
    right: 30px;
  }
}
@media screen and (max-width: 834px) {
  .pagenav__list__link::after {
    right: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .pagenav__list__link:hover {
    background-color: #1264b8;
    color: #fff;
  }
  .pagenav__list__link:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

.sec-title01 {
  margin-bottom: 15px;
  color: #1264b8;
  font-size: 3.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sec-title01 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-title01 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title01 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}
.sec-title01 .en {
  display: block;
  margin-bottom: 13px;
  color: #d3eefa;
  font-size: 9rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .sec-title01 .en {
    font-size: 8rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-title01 .en {
    font-size: 7rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title01 .en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title01 .stxt {
    font-size: 1.7rem;
  }
}

.text-lead, .text-lead--fs18 {
  color: #000;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .text-lead, .text-lead--fs18 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .text-lead, .text-lead--fs18 {
    font-size: 1.4rem;
  }
}
.text-lead--fs18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .text-lead--fs18 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .text-lead--fs18 {
    font-size: 1.5rem;
  }
}
.text-lead .note, .text-lead--fs18 .note {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .text-lead .note, .text-lead--fs18 .note {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .text-lead .note, .text-lead--fs18 .note {
    font-size: 1.2rem;
  }
}

#pagetop a {
  background: url(../img/common/pagetop.webp) no-repeat scroll 0 0 transparent;
  background-size: 100%;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  height: 80px;
  width: 80px;
  position: fixed;
  z-index: 1000;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #pagetop a {
    bottom: 5px;
    right: 5px;
    height: 60px;
    width: 60px;
  }
}
@media screen and (max-width: 599px) {
  #pagetop a {
    height: 46px;
    width: 46px;
  }
}
#pagetop a:hover {
  opacity: 0.85;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  position: relative;
  height: 740px;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .top-main {
    height: 540px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    height: 615px;
    margin-top: 50px;
  }
}
.top-main__slider {
  height: 100%;
}
.top-main__slider__item {
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}
@media screen and (max-width: 599px) {
  .top-main__slider__item {
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.top-main__slider__item.item01 {
  background-image: url(../img/top/main_back01.webp);
}
@media screen and (max-width: 599px) {
  .top-main__slider__item.item01 {
    background-image: url(../img/top/main_back01_sp.webp);
  }
}
.top-main__slider__item.item02 {
  background-image: url(../img/top/main_back02.webp);
}
@media screen and (max-width: 599px) {
  .top-main__slider__item.item02 {
    background-image: url(../img/top/main_back02_sp.webp);
  }
}
.top-main__slider__item.item03 {
  background-image: url(../img/top/main_back03.webp);
}
@media screen and (max-width: 599px) {
  .top-main__slider__item.item03 {
    background-image: url(../img/top/main_back03_sp.webp);
  }
}
.top-main__slider__item.item04 {
  background-image: url(../img/top/main_back04.webp);
}
@media screen and (max-width: 599px) {
  .top-main__slider__item.item04 {
    background-image: url(../img/top/main_back04_sp.webp);
  }
}
.top-main__slider .slick-list {
  height: 100%;
}
.top-main__slider .slick-list .slick-track {
  height: 100%;
}
.top-main__catch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.top-main__catch {
  color: #25346d;
  font-size: 3.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .top-main__catch {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch {
    font-size: 2.4rem;
  }
}
.top-main__catch > span {
  display: inline-block;
  margin: 0 3px;
  padding: 15px 3px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .top-main__catch > span {
    margin: 0 2px;
    padding: 11px 0;
  }
}

.floating-btn {
  display: block;
  position: absolute;
  right: 100px;
  bottom: 50px;
  width: 165px;
  height: 167px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .floating-btn {
    right: 40px;
    bottom: 40px;
    width: 130px;
    height: 132px;
  }
}
@media screen and (max-width: 599px) {
  .floating-btn {
    right: 20px;
    bottom: 60px;
    width: 100px;
    height: 102px;
  }
}
.floating-btn::before, .floating-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.floating-btn::before {
  background-image: url(../img/common/moview_view.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  animation: 15s linear infinite rotation;
}
.floating-btn::after {
  background-image: url(../img/common/play.png);
  background-repeat: no-repeat;
  background-position: center left 52%;
  background-size: 17px auto;
}
@media screen and (max-width: 599px) {
  .floating-btn::after {
    background-size: 15px auto;
  }
}
@media screen and (min-width: 1025px) {
  .floating-btn:hover {
    opacity: 0.8;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.top-lead {
  padding: 0 40px 80px;
}
@media screen and (max-width: 1024px) {
  .top-lead {
    padding: 0 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead {
    padding: 0 20px 40px;
  }
}
.top-lead__title {
  margin-bottom: 50px;
  color: #d4e9f8;
  font-size: 9rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 600;
  text-align: center;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .top-lead__title {
    margin-bottom: 40px;
    font-size: 8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__title {
    margin-bottom: 20px;
    font-size: 4.5rem;
  }
}
.top-lead__catch {
  margin-bottom: 40px;
  color: #000;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .top-lead__catch {
    margin-bottom: 30px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__catch {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
.top-lead__text {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .top-lead__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__text {
    font-size: 1.4rem;
    text-align: justify;
    padding: 0px 5px;
  }
}

.top-movie {
  position: relative;
  padding: 0 40px 90px;
}
@media screen and (max-width: 1024px) {
  .top-movie {
    padding: 0 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-movie {
    padding: 0 25px 50px;
  }
}
.top-movie::before {
  content: "";
  position: absolute;
  top: 170px;
  left: 0;
  width: 100%;
  height: calc(100% - 170px);
  background-color: #1264b8;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-movie::before {
    top: 148px;
    height: calc(100% - 148px);
  }
}
@media screen and (max-width: 599px) {
  .top-movie::before {
    top: 104px;
    height: calc(100% - 104px);
  }
}
.top-movie__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-movie__inner {
    flex-direction: column;
  }
}
.top-movie__content {
  max-width: 410px;
}
@media screen and (max-width: 834px) {
  .top-movie__content {
    max-width: none;
    margin-bottom: 30px;
  }
}
.top-movie__title {
  position: relative;
  margin-bottom: 20px;
  padding-top: 30px;
  border-top: 1px solid #1264b8;
  color: #1264b8;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .top-movie__title {
    margin-bottom: 15px;
    padding-top: 25px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-movie__title {
    margin-bottom: 10px;
    padding-top: 15px;
    font-size: 1.8rem;
  }
}
.top-movie__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 97px;
  height: 4px;
  background-color: #1264b8;
}
@media screen and (max-width: 599px) {
  .top-movie__title::before {
    width: 80px;
    height: 3px;
  }
}
.top-movie__en-title {
  margin-bottom: 40px;
  color: #1264b8;
  font-size: 9rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .top-movie__en-title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-movie__en-title {
    margin-bottom: 30px;
    font-size: 6rem;
  }
}
.top-movie__text {
  margin-bottom: 45px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-movie__text {
    margin-bottom: 35px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-movie__text {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
}
.top-movie__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .top-movie__list {
    gap: 13px;
  }
}
@media screen and (max-width: 834px) {
  .top-movie__list {
    gap: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-movie__list {
    gap: 10px;
  }
}
.top-movie__list__item {
  flex: auto;
  padding: 8px 20px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-movie__list__item {
    padding: 6px 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-movie__list__item {
    padding: 6px 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-movie__list__item {
    padding: 4px 12px;
    font-size: 1.4rem;
  }
}
.top-movie__youtube {
  flex: 1;
  padding-left: 60px;
}
@media screen and (max-width: 834px) {
  .top-movie__youtube {
    padding-left: 0;
  }
}
.top-movie__youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.top-charm {
  padding: 90px 40px;
}
@media screen and (max-width: 1024px) {
  .top-charm {
    padding: 70px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-charm {
    padding: 0;
  }
}
.top-charm__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.top-charm__body {
  overflow: hidden;
  padding: 0 50px 60px;
  background-image: url(../img/top/charm_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-charm__body {
    padding: 0 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__body {
    padding: 0 15px 45px;
  }
}
.top-charm__title {
  margin-top: -3px;
  margin-bottom: 30px;
  color: #fff;
  font-size: 9rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
  text-align: center;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .top-charm__title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 834px) {
  .top-charm__title {
    margin-top: -1px;
    font-size: 11vw;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__title {
    margin-bottom: 22px;
  }
}
.top-charm__text {
  margin-bottom: 30px;
  color: #fff;
  font-size: 2.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-charm__text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__text {
    margin-bottom: 18px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.top-charm__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1200px) {
  .top-charm__list {
    gap: 2%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 1024px) {
  .top-charm__list {
    gap: 10px 20px;
    padding: 0 6%;
  }
}
@media screen and (max-width: 834px) {
  .top-charm__list {
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__list {
    gap: 3px 6px;
    margin: 0 -5px 25px;
  }
}
.top-charm__list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((99.9% - 100px) / 5);
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .top-charm__list__item {
    width: 31.9666666667%;
  }
}
@media screen and (max-width: 1024px) {
  .top-charm__list__item {
    width: calc((99.9% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-charm__list__item {
    width: calc((99.9% - 12px) / 3);
  }
}
.top-charm__list__item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.top-charm__list__body {
  background-repeat: no-repeat;
  background-position: top center;
}
.item01 .top-charm__list__body {
  padding-top: 67px;
  background-image: url(../img/top/icon_clock.svg);
  background-size: 40px auto;
}
@media screen and (max-width: 599px) {
  .item01 .top-charm__list__body {
    padding-top: 33px;
    background-size: 26px auto;
  }
}
.item02 .top-charm__list__body {
  padding-top: 70px;
  background-image: url(../img/top/icon_carry_bag.svg);
  background-size: 31px auto;
}
@media screen and (max-width: 599px) {
  .item02 .top-charm__list__body {
    padding-top: 38px;
    background-size: 20.15px auto;
  }
}
.item03 .top-charm__list__body {
  padding-top: 60px;
  background-image: url(../img/top/icon_hand_heart.svg);
  background-size: 41px auto;
}
@media screen and (max-width: 599px) {
  .item03 .top-charm__list__body {
    padding-top: 34px;
    background-size: 26.65px auto;
  }
}
.item04 .top-charm__list__body {
  padding-top: 56px;
  background-image: url(../img/top/icon_calendar.svg);
  background-size: 38px auto;
}
@media screen and (max-width: 599px) {
  .item04 .top-charm__list__body {
    padding-top: 28px;
    background-size: 24.7px auto;
  }
}
.item05 .top-charm__list__body {
  padding-top: 61px;
  background-image: url(../img/top/icon_person.svg);
  background-size: 31px auto;
}
@media screen and (max-width: 599px) {
  .item05 .top-charm__list__body {
    padding-top: 33px;
    background-size: 20.15px auto;
  }
}
.top-charm__list__text {
  color: #000;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 1300px) {
  .top-charm__list__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__list__text {
    font-size: 1.4rem;
  }
}
.top-charm__list__text span {
  font-weight: 700;
}
.top-charm__list__text span.blue {
  color: #1264b8;
}
.top-charm__list__text span.fs30 {
  font-size: 3rem;
}
@media screen and (max-width: 1300px) {
  .top-charm__list__text span.fs30 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__list__text span.fs30 {
    font-size: 1.5rem;
  }
}
.top-charm__list__text span.fs34 {
  font-size: 3.4rem;
}
@media screen and (max-width: 1300px) {
  .top-charm__list__text span.fs34 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__list__text span.fs34 {
    font-size: 1.6rem;
  }
}
.top-charm__list__text span.fs38 {
  font-size: 3.8rem;
}
@media screen and (max-width: 1300px) {
  .top-charm__list__text span.fs38 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__list__text span.fs38 {
    font-size: 1.8rem;
  }
}
.top-charm__list__text span.fs44 {
  font-size: 4.4rem;
}
@media screen and (max-width: 1300px) {
  .top-charm__list__text span.fs44 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__list__text span.fs44 {
    font-size: 2rem;
  }
}
.top-charm__list__text span.note {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .top-charm__list__text span.note {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__list__text span.note {
    font-size: 0.9rem;
  }
}
.top-charm__btn {
  display: block;
  position: relative;
  max-width: 270px;
  margin: 0 auto;
  padding: 12px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-charm__btn {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-charm__btn {
    font-size: 1.6rem;
  }
}
.top-charm__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  margin: auto 0;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .top-charm__btn::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1025px) {
  .top-charm__btn:hover {
    background-color: #25346d;
    border-color: #25346d;
  }
}

.top-link__list {
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-link__list {
    flex-direction: column;
  }
}
.top-link__list__item {
  flex: auto;
}
.top-link__list__body {
  padding: 60px 30px;
}
@media screen and (max-width: 1024px) {
  .top-link__list__body {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-link__list__body {
    padding: 40px 20px 45px;
  }
}
.item01 .top-link__list__body {
  background-color: #25346d;
}
.item02 .top-link__list__body {
  background-color: #00a0e2;
}
.top-link__list__en-title {
  position: relative;
  margin-top: -115px;
  margin-bottom: 40px;
  color: #fff;
  font-size: 9rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 0.75;
}
@media screen and (max-width: 1200px) {
  .top-link__list__en-title {
    margin-top: -99px;
    margin-bottom: 35px;
    font-size: 7.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-link__list__en-title {
    margin-top: -100px;
    margin-bottom: 30px;
    font-size: 6.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-link__list__en-title {
    margin-top: -91px;
    font-size: 5.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-link__list__en-title {
    margin-top: -68px;
    margin-bottom: 20px;
    font-size: 5.3rem;
  }
}
.top-link__list__title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top-link__list__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-link__list__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-link__list__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-link__list__title {
    font-size: 2.2rem;
  }
}
.top-link__list__text {
  margin-bottom: 30px;
  color: #fff;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top-link__list__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-link__list__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-link__list__text {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
}
.top-link__list__btn {
  display: block;
  position: relative;
  max-width: 270px;
  margin: 0 auto;
  padding: 14px;
  background-color: #fff;
  border-radius: 50px;
  color: #000;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-link__list__btn {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-link__list__btn {
    font-size: 1.6rem;
  }
}
.top-link__list__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  margin: auto 0;
  width: 11px;
  height: 11px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-link__list__btn::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1025px) {
  .top-link__list__btn:hover {
    color: #fff;
    background-color: #1264b8;
  }
  .top-link__list__btn:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

.top-interview {
  display: flex;
  position: relative;
  margin-top: 90px;
  padding: 0 5% 70px 0;
}
@media screen and (max-width: 1300px) {
  .top-interview {
    padding: 0 4% 70px 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-interview {
    flex-direction: column-reverse;
    margin-top: 70px;
    padding: 0 0 70px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-interview {
    margin-top: 50px;
    padding: 0;
  }
}
.top-interview::before {
  content: "";
  position: absolute;
  top: 170px;
  left: 0;
  width: 100%;
  height: calc(100% - 170px);
  background-color: #25346d;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-interview::before {
    top: 148px;
    height: calc(100% - 148px);
  }
}
@media screen and (max-width: 599px) {
  .top-interview::before {
    top: 104px;
    height: calc(100% - 104px);
  }
}
.top-interview__staff {
  padding-right: 60px;
}
@media screen and (max-width: 1300px) {
  .top-interview__staff {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-interview__staff {
    padding-right: 0;
  }
}
.top-interview__list {
  flex: 1;
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-interview__list {
    flex-wrap: wrap;
  }
}
.top-interview__list__item {
  flex: 1;
}
@media screen and (max-width: 599px) {
  .top-interview__list__item {
    flex: auto;
    width: 49.95%;
  }
}
.top-interview__list__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .top-interview__list__link:hover .top-interview__list__text01::before {
    background-color: #fff;
  }
  .top-interview__list__link:hover .top-interview__list__text01::after {
    border-top-color: #25346d;
    border-right-color: #25346d;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__list__image {
    height: 260px;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__list__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
.top-interview__list__body {
  padding: 20px 20px 0;
}
@media screen and (max-width: 1300px) {
  .top-interview__list__body {
    padding: 20px 15px 0;
  }
}
@media screen and (max-width: 1100px) {
  .top-interview__list__body {
    padding: 20px 10px 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-interview__list__body {
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__list__body {
    padding: 25px 14px 40px 10px;
  }
}
.top-interview__list__text-wrapper {
  position: relative;
  height: 100%;
  padding: 0 0 0 24px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 1300px) {
  .top-interview__list__text-wrapper {
    padding: 0 0 0 16px;
  }
}
@media screen and (max-width: 1100px) {
  .top-interview__list__text-wrapper {
    padding: 0 0 0 12px;
  }
}
@media screen and (max-width: 1024px) {
  .top-interview__list__text-wrapper {
    padding: 0 0 0 22px;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__list__text-wrapper {
    padding: 0 0 0 16px;
  }
}
.top-interview__list__text-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 54px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .top-interview__list__text-wrapper::before {
    height: 48px;
  }
}
.top-interview__list__text01 {
  position: relative;
  margin-bottom: 20px;
  padding-right: 30px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media screen and (max-width: 1300px) {
  .top-interview__list__text01 {
    padding-right: 25px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__list__text01 {
    margin-bottom: 12px;
    padding-right: 26px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.top-interview__list__text01.ls-5 {
  letter-spacing: -0.5px;
}
.top-interview__list__text01::before, .top-interview__list__text01::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: 0.3s;
}
.top-interview__list__text01::before {
  right: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1300px) {
  .top-interview__list__text01::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__list__text01::before {
    width: 25px;
    height: 25px;
  }
}
.top-interview__list__text01::after {
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1300px) {
  .top-interview__list__text01::after {
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .top-interview__list__text01::after {
    right: 11px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
.top-interview__list__text01 > span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .top-interview__list__text01 > span {
    font-size: 1.2rem;
  }
}
.top-interview__list__text02 {
  color: #fff;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 1700px) {
  .top-interview__list__text02 {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-interview__list__text02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__list__text02 {
    font-size: 1.4rem;
    text-align: justify;
    line-height: 1.5;
  }
}
.top-interview__content {
  max-width: 410px;
}
@media screen and (max-width: 1024px) {
  .top-interview__content {
    max-width: none;
    padding: 0 19% 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-interview__content {
    padding: 0 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__content {
    padding: 0 25px 40px;
  }
}
.top-interview__title {
  position: relative;
  margin-bottom: 20px;
  padding-top: 30px;
  border-top: 1px solid #25346d;
  color: #25346d;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .top-interview__title {
    margin-bottom: 15px;
    padding-top: 25px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__title {
    margin-bottom: 10px;
    padding-top: 15px;
    font-size: 1.8rem;
  }
}
.top-interview__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 97px;
  height: 4px;
  background-color: #25346d;
}
.top-interview__en-title {
  margin-bottom: 40px;
  color: #25346d;
  font-size: 9rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .top-interview__en-title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__en-title {
    margin-bottom: 30px;
    font-size: 6rem;
  }
}
.top-interview__text {
  margin-bottom: 45px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-interview__text {
    margin-bottom: 35px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__text {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
}
.top-interview__btn {
  display: block;
  position: relative;
  max-width: 270px;
  padding: 14px;
  background-color: #fff;
  border-radius: 50px;
  color: #000;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-interview__btn {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-interview__btn {
    margin: 0 auto;
    font-size: 1.6rem;
  }
}
.top-interview__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  margin: auto 0;
  width: 11px;
  height: 11px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-interview__btn::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1025px) {
  .top-interview__btn:hover {
    color: #fff;
    background-color: #1264b8;
  }
  .top-interview__btn:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

/*--------------------------------------------------------
faq
----------------------------------------------------------*/
.faq-wrapper__list__item:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .faq-wrapper__list__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .faq-wrapper__list__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.faq-wrapper__list__item > dt,
.faq-wrapper__list__item > dd {
  position: relative;
}
.faq-wrapper__list__item > dt::before,
.faq-wrapper__list__item > dd::before {
  position: absolute;
  left: 15px;
  font-size: 5rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .faq-wrapper__list__item > dt::before,
  .faq-wrapper__list__item > dd::before {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 599px) {
  .faq-wrapper__list__item > dt::before,
  .faq-wrapper__list__item > dd::before {
    left: 10px;
    font-size: 3.5rem;
  }
}
.faq-wrapper__list__item > dt {
  margin-bottom: 30px;
  padding: 20px 20px 20px 70px;
  background-color: #dcf1fb;
  border-bottom: 2px solid #00a0e2;
  color: #25346d;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .faq-wrapper__list__item > dt {
    margin-bottom: 25px;
    padding: 15px 15px 15px 60px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .faq-wrapper__list__item > dt {
    margin-bottom: 20px;
    padding: 12px 12px 12px 45px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.faq-wrapper__list__item > dt::before {
  content: "Q";
  top: 17px;
  color: #2b72bd;
}
@media screen and (max-width: 1024px) {
  .faq-wrapper__list__item > dt::before {
    top: 11px;
  }
}
.faq-wrapper__list__item > dd {
  min-height: 50px;
  padding: 0 0 0 70px;
  color: #444;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .faq-wrapper__list__item > dd {
    min-height: 35px;
    padding: 0 0 0 60px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .faq-wrapper__list__item > dd {
    min-height: 27px;
    padding: 0 0 0 45px;
  }
}
.faq-wrapper__list__item > dd::before {
  content: "A";
  top: 1px;
  color: #d31530;
}

/*--------------------------------------------------------
career
----------------------------------------------------------*/
.career-wrapper__box {
  margin-top: 100px;
  margin-bottom: 60px;
  padding: 60px;
  background-color: #d3eefa;
}
@media screen and (max-width: 1024px) {
  .career-wrapper__box {
    margin-bottom: 40px;
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .career-wrapper__box {
    margin-top: 85px;
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .career-wrapper__box {
    margin-top: 70px;
    margin-bottom: 30px;
    padding: 20px;
  }
}
.career-wrapper__box .sec-title01 {
  margin-top: -165px;
}
@media screen and (max-width: 1024px) {
  .career-wrapper__box .sec-title01 {
    margin-top: -155px;
  }
}
@media screen and (max-width: 834px) {
  .career-wrapper__box .sec-title01 {
    margin-top: -135px;
  }
}
@media screen and (max-width: 599px) {
  .career-wrapper__box .sec-title01 {
    margin-top: -90px;
  }
}
.career-wrapper__box__image {
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .career-wrapper__box__image {
    margin-bottom: 20px;
  }
}
.career-wrapper__box__list {
  display: flex;
  align-items: center;
  padding: 30px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .career-wrapper__box__list {
    align-items: flex-start;
    padding: 15px;
  }
}
.career-wrapper__box__list > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #1264b8;
  border-radius: 50%;
  color: #fff;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .career-wrapper__box__list > dt {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .career-wrapper__box__list > dt {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}
.career-wrapper__box__list > dt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  margin: auto;
  border: 3px solid #d3eefa;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .career-wrapper__box__list > dt::before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-width: 1px;
  }
}
.career-wrapper__box__list > dd {
  flex: 1;
  padding-left: 40px;
  color: #444;
  font-size: 1.8rem;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .career-wrapper__box__list > dd {
    padding-left: 30px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .career-wrapper__box__list > dd {
    padding-left: 20px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .career-wrapper__box__list > dd {
    padding-left: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.career-wrapper__box02 {
  padding: 60px;
  background-color: #4bbfef;
}
@media screen and (max-width: 1024px) {
  .career-wrapper__box02 {
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .career-wrapper__box02 {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .career-wrapper__box02 {
    padding: 20px;
  }
}
.career-wrapper__box02__body {
  display: flex;
  align-items: center;
  padding: 20px 50px 30px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .career-wrapper__box02__body {
    padding: 20px 40px 30px;
  }
}
@media screen and (max-width: 834px) {
  .career-wrapper__box02__body {
    padding: 20px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .career-wrapper__box02__body {
    flex-direction: column;
    padding: 20px;
  }
}
.career-wrapper__box02__image {
  width: 28%;
}
@media screen and (max-width: 599px) {
  .career-wrapper__box02__image {
    width: 70%;
    margin: 0 auto 20px;
  }
}
.career-wrapper__box02__content {
  flex: 1;
  padding-left: 4.5%;
}
@media screen and (max-width: 599px) {
  .career-wrapper__box02__content {
    padding-left: 0;
  }
}
.career-wrapper__box02__title {
  margin-bottom: 25px;
  padding-bottom: 2px;
  border-bottom: 2px solid #00a0e2;
  color: #00a0e2;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .career-wrapper__box02__title {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .career-wrapper__box02__title {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .career-wrapper__box02__title {
    margin-bottom: 12px;
    padding-bottom: 5px;
    font-size: 1.8rem;
  }
}
.career-wrapper__box02__text {
  color: #444;
  font-size: 1.8rem;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .career-wrapper__box02__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .career-wrapper__box02__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .career-wrapper__box02__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/*--------------------------------------------------------
job
----------------------------------------------------------*/
.job-wrapper__catch {
  margin-bottom: 35px;
  color: #25346d;
  font-size: 3.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__catch {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__catch {
    margin-bottom: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__catch {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__catch {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.job-wrapper__lead {
  margin-bottom: 70px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__lead {
    margin-bottom: 50px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__lead {
    margin-bottom: 40px;
    font-size: 1.5rem;
    text-align: justify;
  }
}
.job-wrapper__about-sec__container {
  display: flex;
  position: relative;
  width: 90.5%;
  padding: 80px 0;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__about-sec__container {
    width: 95%;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__about-sec__container {
    padding: 70px 0;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__about-sec__container {
    padding: 60px 0;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__about-sec__container {
    flex-direction: column-reverse;
    width: 100%;
    padding: 45px 0 0;
  }
}
.job-wrapper__about-sec__container.reverse {
  flex-direction: row-reverse;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .job-wrapper__about-sec__container.reverse {
    flex-direction: column-reverse;
  }
}
.job-wrapper__about-sec__container.reverse::before {
  display: none;
}
.job-wrapper__about-sec__container.first {
  margin-top: -70px;
  padding-top: 135px;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__about-sec__container.first {
    padding-top: 120px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__about-sec__container.first {
    margin-top: -50px;
    padding-top: 70px;
  }
}
.job-wrapper__about-sec__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
  z-index: -1;
}
.job-wrapper__about-sec__container__image {
  flex: 1;
}
.job-wrapper__about-sec__container__content {
  position: relative;
  max-width: 690px;
  width: 47.5%;
  padding: 0 5.2% 0 4.5%;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__about-sec__container__content {
    padding: 0 5% 0 4.5%;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__about-sec__container__content {
    width: 100%;
    margin-bottom: 30px;
  }
}
.reverse .job-wrapper__about-sec__container__content {
  padding: 0 4.5% 0 5.2%;
}
@media screen and (max-width: 1300px) {
  .reverse .job-wrapper__about-sec__container__content {
    padding: 0 5% 0 5.5%;
  }
}
.job-wrapper__about-sec__container__sub-text {
  color: #25346d;
  font-size: 8rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
  text-align: right;
  line-height: 0.75;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__about-sec__container__sub-text {
    font-size: 6.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__about-sec__container__sub-text {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__about-sec__container__sub-text {
    font-size: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__about-sec__container__sub-text {
    font-size: 4.2rem;
  }
}
.reverse .job-wrapper__about-sec__container__sub-text {
  text-align: left;
}
.job-wrapper__about-sec__container__title {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #25346d;
  color: #fff;
  font-size: 3.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 1400px) {
  .job-wrapper__about-sec__container__title {
    margin-bottom: 30px;
    padding: 25px;
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__about-sec__container__title {
    margin-bottom: 22px;
    padding: 16px 22px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__about-sec__container__title {
    padding: 14px 20px;
    margin-bottom: 18px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__about-sec__container__title {
    margin-bottom: 15px;
    padding: 13px 18px;
    font-size: 1.9rem;
  }
}
.job-wrapper__about-sec__container__catch {
  margin-bottom: 25px;
  color: #25346d;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__about-sec__container__catch {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__about-sec__container__catch {
    margin-bottom: 15px;
    font-size: 2.1rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__about-sec__container__catch {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__about-sec__container__catch {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }
}
.job-wrapper__about-sec__container__text {
  color: #444;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__about-sec__container__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__about-sec__container__text {
    font-size: 1.4rem;
  }
}
.job-wrapper__flow-sec {
  margin-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec {
    margin-bottom: 70px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec {
    margin-bottom: 50px;
    padding-top: 40px;
  }
}
.job-wrapper__flow-sec__box {
  margin-top: 110px;
  padding: 60px;
  background-color: #d3eefa;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box {
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box {
    padding: 50px;
    margin-top: 90px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box {
    margin-top: 70px;
    padding: 20px;
  }
}
.job-wrapper__flow-sec__box .sec-title01 {
  margin-top: -170px;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box .sec-title01 {
    margin-top: -150px;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box .sec-title01 {
    margin-top: -130px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box .sec-title01 {
    margin-top: -90px;
  }
}
.job-wrapper__flow-sec__box__list {
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list {
    margin-top: 15px;
  }
}
.job-wrapper__flow-sec__box__list__item {
  display: flex;
  min-height: 200px;
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box__list__item {
    position: relative;
    flex-direction: column;
    min-height: auto;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box__list__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.job-wrapper__flow-sec__box__list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 52px;
  width: 24px;
  height: calc(100% - 180px);
  background-color: #00a0e2;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__flow-sec__box__list__item:not(:last-child)::after {
    left: 40px;
    width: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__item:not(:last-child)::after {
    left: 36px;
    width: 20px;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box__list__item:not(:last-child)::after {
    height: calc(100% + 20px);
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list__item:not(:last-child)::after {
    left: 22px;
    width: 10px;
  }
}
.job-wrapper__flow-sec__box__list__item.item01 > dt::before {
  background-image: url(../img/job/08_30.svg);
}
.job-wrapper__flow-sec__box__list__item.item02 > dt::before {
  background-image: url(../img/job/09_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item03 > dt::before {
  background-image: url(../img/job/11_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item04 > dt::before {
  background-image: url(../img/job/13_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item05 > dt::before {
  background-image: url(../img/job/15_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item06 > dt::before {
  background-image: url(../img/job/17_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item07 > dt::before {
  background-image: url(../img/job/18_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item08 > dt::before {
  background-image: url(../img/job/20_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item09 > dt::before {
  background-image: url(../img/job/21_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item10 > dt::before {
  background-image: url(../img/job/24_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item11 > dt::before {
  background-image: url(../img/job/04_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item12 > dt::before {
  background-image: url(../img/job/06_00.svg);
}
.job-wrapper__flow-sec__box__list__item.item13 > dt::before {
  background-image: url(../img/job/06_30.svg);
}
.job-wrapper__flow-sec__box__list__item.item14 > dt::before {
  background-image: url(../img/job/08_30.svg);
}
.job-wrapper__flow-sec__box__list__item > dt {
  position: relative;
  width: 24%;
  padding-top: 45px;
  color: #00a0e2;
  font-size: 5rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
  text-align: right;
  line-height: 0.75;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__flow-sec__box__list__item > dt {
    padding-top: 30px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__item > dt {
    padding-top: 25px;
    font-size: 4rem;
    width: 22%;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box__list__item > dt {
    width: 100%;
    padding-left: 130px;
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list__item > dt {
    padding-top: 15px;
    padding-left: 70px;
    font-size: 3rem;
  }
}
.job-wrapper__flow-sec__box__list__item > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  background-color: #00a0e2;
  background-repeat: no-repeat;
  background-size: 85px auto;
  background-position: center;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__flow-sec__box__list__item > dt::before {
    width: 96px;
    height: 96px;
    background-size: 65px auto;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__item > dt::before {
    width: 90px;
    height: 90px;
    background-size: 60px auto;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list__item > dt::before {
    width: 52px;
    height: 52px;
    background-size: 36px auto;
  }
}
.job-wrapper__flow-sec__box__list__item > dd {
  display: flex;
  width: 76%;
  padding-top: 35px;
  padding-left: 5%;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__flow-sec__box__list__item > dd {
    padding-top: 22px;
    padding-left: 4%;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__item > dd {
    padding-top: 18px;
    padding-left: 3%;
    width: 78%;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box__list__item > dd {
    flex-direction: column;
    width: 100%;
    padding-left: 130px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list__item > dd {
    padding-left: 70px;
  }
}
.job-wrapper__flow-sec__box__list__content {
  width: calc(100% - 420px);
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__content {
    width: calc(100% - 325px);
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box__list__content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.job-wrapper__flow-sec__box__list__title {
  margin-bottom: 13px;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__title {
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list__title {
    font-size: 2rem;
  }
}
.job-wrapper__flow-sec__box__list__text {
  color: #444;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list__text {
    font-size: 1.5rem;
  }
}
.job-wrapper__flow-sec__box__list__image {
  position: absolute;
  right: 0;
  width: 350px;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__image {
    width: 300px;
    height: 200px;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box__list__image {
    position: inherit;
    width: 90%;
    height: auto;
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list__image {
    width: 100%;
  }
}
.job-wrapper__flow-sec__box__list__image.p01 {
  top: 0px;
}
.job-wrapper__flow-sec__box__list__image.p02 {
  top: 250px;
}
.job-wrapper__flow-sec__box__list__image.p03 {
  top: 500px;
}
.job-wrapper__flow-sec__box__list__image.p04 {
  top: 750px;
}
.job-wrapper__flow-sec__box__list__image.p05 {
  top: 1000px;
}
.job-wrapper__flow-sec__box__list__image.p07 {
  top: 1250px;
}
.job-wrapper__flow-sec__box__list__image.p09 {
  top: 1500px;
}
.job-wrapper__flow-sec__box__list__image.p10 {
  top: 1750px;
}
.job-wrapper__flow-sec__box__list__image.p11 {
  top: 2000px;
}
.job-wrapper__flow-sec__box__list__image.p13 {
  top: 2250px;
}
.job-wrapper__flow-sec__box__list__image.p14 {
  top: 2500px;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.job-wrapper__flow-sec__box__list__image figcaption {
  margin-top: 4px;
  color: #444;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__flow-sec__box__list__image figcaption {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__flow-sec__box__list__image figcaption {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__flow-sec__box__list__image figcaption {
    font-size: 1.3rem;
  }
}
.job-wrapper__shift-sec {
  max-width: 1180px;
  margin: 0 auto;
}
.job-wrapper__shift-sec__list {
  display: flex;
  gap: 10px;
  margin-top: 70px;
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .job-wrapper__shift-sec__list {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__shift-sec__list {
    gap: 25px 0;
    padding: 0 35px;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.job-wrapper__shift-sec__list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc((99.9% - 20px - 45px) / 3);
  margin-left: 45px;
  padding: 30px 20px;
  background-color: #ebf7fc;
  border: 25px solid #1264b8;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__shift-sec__list__item {
    width: calc((99.9% - 20px - 40px) / 3);
    margin-left: 40px;
    border-width: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__shift-sec__list__item {
    width: calc((99.9% - 20px - 30px) / 3);
    margin-left: 30px;
    border-width: 15px;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__shift-sec__list__item {
    width: calc((99.9% - 20px - 20px) / 3);
    margin-left: 20px;
    border-width: 10px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__shift-sec__list__item {
    width: 100%;
    margin-left: 0;
    padding: 22px 7% !important;
  }
}
.job-wrapper__shift-sec__list__item.item02 {
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .job-wrapper__shift-sec__list__item.item02 {
    padding: 30px;
  }
}
.job-wrapper__shift-sec__list__item::before {
  content: "Point";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -70px;
  left: -70px;
  width: 110px;
  height: 110px;
  background-color: #e60e55;
  border-radius: 50%;
  color: #fff;
  font-size: 3rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 900;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__shift-sec__list__item::before {
    top: -60px;
    left: -60px;
    width: 100px;
    height: 100px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__shift-sec__list__item::before {
    top: -50px;
    left: -50px;
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__shift-sec__list__item::before {
    top: -30px;
    left: -25px;
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }
}
.job-wrapper__shift-sec__list__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -75px;
  left: 0;
  width: 58px;
  height: 50px;
  margin: 0 auto;
  border: 29px solid transparent;
  border-top: 50px solid #1264b8;
  border-bottom: none;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__shift-sec__list__item::after {
    bottom: -70px;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__shift-sec__list__item::after {
    bottom: -60px;
    width: 50px;
    height: 46px;
    border-width: 25px;
    border-top-width: 46px;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__shift-sec__list__item::after {
    bottom: -48px;
    width: 40px;
    height: 38px;
    border-width: 20px;
    border-top-width: 38px;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__shift-sec__list__item::after {
    display: none;
  }
}
.job-wrapper__shift-sec__list__body {
  color: #1264b8;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1300px) {
  .job-wrapper__shift-sec__list__body {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .job-wrapper__shift-sec__list__body {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 834px) {
  .job-wrapper__shift-sec__list__body {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .job-wrapper__shift-sec__list__body {
    font-size: 1.6rem;
    text-align: justify;
  }
}
.item03 .job-wrapper__shift-sec__list__body {
  line-height: 1.3;
}
.job-wrapper__shift-sec__list__body > span {
  color: #e60e55;
}

/*--------------------------------------------------------
charm
----------------------------------------------------------*/
.charm-wrapper__data-sec {
  margin-top: 100px;
  margin-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__data-sec {
    margin-bottom: 170px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__data-sec {
    margin-top: 85px;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__data-sec {
    margin-top: 70px;
    margin-bottom: 110px;
  }
}
.charm-wrapper__data-sec__box {
  padding: 60px 60px 80px;
  background-color: #d3eefa;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__data-sec__box {
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__data-sec__box {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__data-sec__box {
    padding: 15px;
  }
}
.charm-wrapper__data-sec__box .sec-title01 {
  margin-top: -170px;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__data-sec__box .sec-title01 {
    margin-top: -155px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__data-sec__box .sec-title01 {
    margin-top: -135px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__data-sec__box .sec-title01 {
    margin-top: -90px;
    line-height: 1.5;
  }
}
.charm-wrapper__data-sec__box__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__data-sec__box__list {
    gap: 15px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__data-sec__box__list {
    gap: 10px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__data-sec__box__list {
    gap: 6px;
  }
}
.charm-wrapper__data-sec__box__list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((99.9% - 40px) / 3);
  min-height: 220px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__data-sec__box__list__item {
    width: calc((99.9% - 30px) / 3);
    min-height: 180px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__data-sec__box__list__item {
    width: calc((99.9% - 20px) / 3);
    min-height: 160px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__data-sec__box__list__item {
    width: calc((99.9% - 6px) / 2);
    min-height: 105px;
  }
}
.charm-wrapper__data-sec__box__list__item:nth-child(n+7) {
  width: calc((99.9% - 60px) / 4);
  min-height: 300px;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__data-sec__box__list__item:nth-child(n+7) {
    width: calc((99.9% - 45px) / 4);
    min-height: 260px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__data-sec__box__list__item:nth-child(n+7) {
    width: calc((99.9% - 30px) / 4);
    min-height: 200px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__data-sec__box__list__item:nth-child(n+7) {
    width: calc((99.9% - 6px) / 2);
    min-height: 160px;
  }
}
.charm-wrapper__welfare-sec {
  margin-top: 100px;
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec {
    margin-top: 85px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec {
    margin-top: 70px;
  }
}
.charm-wrapper__welfare-sec__box {
  margin-bottom: 80px;
  padding: 60px 60px 80px;
  background-color: #eee;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__box {
    margin-bottom: 60px;
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__box {
    margin-bottom: 50px;
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__box {
    padding: 20px 20px 30px;
  }
}
.charm-wrapper__welfare-sec__box .sec-title01 {
  margin-top: -165px;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__box .sec-title01 {
    margin-top: -155px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__box .sec-title01 {
    margin-top: -135px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__box .sec-title01 {
    margin-top: -90px;
  }
}
.charm-wrapper__welfare-sec__box__container {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__box__container {
    margin-top: 50px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__box__container {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__box__container {
    flex-direction: column;
    margin-top: 20px;
  }
}
.charm-wrapper__welfare-sec__box__container__image {
  width: 49%;
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__box__container__image {
    width: 100%;
    margin-bottom: 20px;
  }
}
.charm-wrapper__welfare-sec__box__container__content {
  width: 51%;
  padding-left: 6.5%;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__box__container__content {
    padding-left: 5.5%;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__box__container__content {
    padding-left: 4%;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__box__container__content {
    width: 100%;
    padding-left: 0;
  }
}
.charm-wrapper__welfare-sec__box__container__catch {
  margin-bottom: 20px;
  color: #25346d;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__box__container__catch {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__box__container__catch {
    margin-bottom: 15px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__box__container__catch {
    margin-bottom: 6px;
    font-size: 1.8rem;
  }
}
.charm-wrapper__welfare-sec__box__container__text {
  color: #444;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__box__container__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__box__container__text {
    font-size: 1.5rem;
  }
}
.charm-wrapper__welfare-sec__list__item {
  display: flex;
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item {
    flex-direction: column;
  }
}
.charm-wrapper__welfare-sec__list__item.item01 > dt {
  background-image: url(../img/charm/icon_welfare01.svg);
  background-position: center left 21px;
  background-size: 69px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item01 > dt {
    background-size: 58.65px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item01 > dt {
    background-position: center left 11px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item01 > dt {
    background-position: center left 5px;
    background-size: 37.95px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item02 > dt {
  background-image: url(../img/charm/icon_welfare02.svg);
  background-position: center left 33px;
  background-size: 46px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item02 > dt {
    background-size: 39.1px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item02 > dt {
    background-position: center left 23px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item02 > dt {
    background-position: center left 12px;
    background-size: 25.3px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item03 > dt {
  background-image: url(../img/charm/icon_welfare03.svg);
  background-position: center left 24px;
  background-size: 66px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item03 > dt {
    background-size: 56.1px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item03 > dt {
    background-position: center left 14px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item03 > dt {
    background-position: center left 6px;
    background-size: 36.3px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item04 > dt {
  background-image: url(../img/charm/icon_welfare04.svg);
  background-position: center left 24px;
  background-size: 50px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item04 > dt {
    background-size: 42.5px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item04 > dt {
    background-position: center left 14px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item04 > dt {
    background-position: center left 10px;
    background-size: 27.5px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item05 > dt {
  background-image: url(../img/charm/icon_welfare05.svg);
  background-position: center left 32px;
  background-size: 43px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item05 > dt {
    background-size: 36.55px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item05 > dt {
    background-position: center left 22px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item05 > dt {
    background-position: center left 13px;
    background-size: 23.65px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item06 > dt {
  background-image: url(../img/charm/icon_welfare06.svg);
  background-position: center left 34px;
  background-size: 47px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item06 > dt {
    background-size: 39.95px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item06 > dt {
    background-position: center left 24px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item06 > dt {
    background-position: center left 15px;
    background-size: 25.85px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item07 > dt {
  background-image: url(../img/charm/icon_welfare07.svg);
  background-position: center left 32px;
  background-size: 43px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item07 > dt {
    background-size: 36.55px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item07 > dt {
    background-position: center left 22px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item07 > dt {
    background-position: center left 13px;
    background-size: 23.65px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item08 > dt {
  background-image: url(../img/charm/icon_welfare08.svg);
  background-position: center left 34px;
  background-size: 45px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item08 > dt {
    background-size: 38.25px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item08 > dt {
    background-position: center left 24px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item08 > dt {
    background-position: center left 14px;
    background-size: 24.75px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item09 > dt {
  background-image: url(../img/charm/icon_welfare09.svg);
  background-position: center left 33px;
  background-size: 53px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item09 > dt {
    background-size: 45.05px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item09 > dt {
    background-position: center left 23px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item09 > dt {
    background-position: center left 11px;
    background-size: 29.15px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item10 > dt {
  background-image: url(../img/charm/icon_welfare10.svg);
  background-position: center left 30px;
  background-size: 50px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item10 > dt {
    background-size: 42.5px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item10 > dt {
    background-position: center left 20px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item10 > dt {
    background-position: center left 13px;
    background-size: 27.5px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item11 > dt {
  background-image: url(../img/charm/icon_welfare11.svg);
  background-position: center left 31px;
  background-size: 53px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item11 > dt {
    background-size: 45.05px auto;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item11 > dt {
    background-position: center left 12px;
    background-size: 29.15px auto;
  }
}
.charm-wrapper__welfare-sec__list__item.item12 > dt {
  background-image: url(../img/charm/icon_welfare12.svg);
  background-position: center left 29px;
  background-size: 59px auto;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item.item12 > dt {
    background-size: 50.15px auto;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item.item12 > dt {
    background-position: center left 19px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item.item12 > dt {
    background-position: center left 9px;
    background-size: 32.45px auto;
  }
}
.charm-wrapper__welfare-sec__list__item:last-child > dt {
  border-bottom: 1px solid #1264b8;
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item:last-child > dt {
    border-bottom: none;
  }
}
.charm-wrapper__welfare-sec__list__item:last-child > dd {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item:last-child > dd {
    border-bottom: none;
  }
}
.charm-wrapper__welfare-sec__list__item > dt,
.charm-wrapper__welfare-sec__list__item > dd {
  display: flex;
  align-items: center;
}
.charm-wrapper__welfare-sec__list__item > dt {
  max-width: 420px;
  width: 100%;
  padding: 35px 20px 35px 130px;
  background-repeat: no-repeat;
  border-top: 1px solid #1264b8;
  color: #0290cb;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item > dt {
    max-width: 300px;
    padding: 30px 20px 30px 100px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item > dt {
    max-width: 250px;
    padding: 30px 10px 30px 80px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item > dt {
    max-width: none;
    padding: 15px 0 13px 52px;
    font-size: 1.6rem;
  }
}
.charm-wrapper__welfare-sec__list__item > dd {
  flex: 1;
  padding: 35px;
  border-top: 1px solid #ccc;
  color: #444;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__list__item > dd {
    padding: 30px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__list__item > dd {
    padding: 25px 10px 25px 20px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__list__item > dd {
    width: 100%;
    padding: 15px 0 20px;
    font-size: 1.4rem;
  }
}
.charm-wrapper__welfare-sec__note {
  margin-top: 20px;
  margin-left: 452px;
  color: #444;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .charm-wrapper__welfare-sec__note {
    margin-left: 332px;
  }
}
@media screen and (max-width: 834px) {
  .charm-wrapper__welfare-sec__note {
    margin-left: 270px;
  }
}
@media screen and (max-width: 599px) {
  .charm-wrapper__welfare-sec__note {
    margin-top: 0;
    margin-left: 0;
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------
interview
----------------------------------------------------------*/
.interview-wrapper__message-sec {
  margin-top: 100px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__message-sec {
    margin-top: 90px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__message-sec {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.interview-wrapper__message-sec__box {
  padding: 60px 60px 80px;
  background-color: #eee;
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__message-sec__box {
    padding: 50px;
  }
}
@media screen and (max-width: 834px) {
  .interview-wrapper__message-sec__box {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__message-sec__box {
    padding: 20px 20px 30px;
  }
}
.interview-wrapper__message-sec__box .sec-title01 {
  margin-top: -165px;
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__message-sec__box .sec-title01 {
    margin-top: -155px;
  }
}
@media screen and (max-width: 834px) {
  .interview-wrapper__message-sec__box .sec-title01 {
    margin-top: -135px;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__message-sec__box .sec-title01 {
    margin-top: -90px;
  }
}
.interview-wrapper__message-sec__box .text-lead--fs18 {
  margin-bottom: 55px;
}
@media screen and (max-width: 599px) {
  .interview-wrapper__message-sec__box .text-lead--fs18 {
    margin-bottom: 20px;
  }
}
.interview-wrapper__message-sec__box__youtube {
  max-width: 940px;
  margin: 0 auto;
}
.interview-wrapper__message-sec__box__youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.interview-wrapper__interview-sec .text-lead--fs18 {
  padding: 0 25px;
}
.interview-wrapper__interview-sec__list {
  position: relative;
  margin-top: -70px;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list {
    margin-top: -75px;
  }
}
.interview-wrapper__interview-sec__list__item {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-right: 10%;
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__item {
    padding-top: 60px;
  }
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__item {
    flex-direction: column;
    padding-top: 40px;
    padding-right: 12%;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__item {
    padding-top: 0;
    padding-right: 0;
  }
}
.interview-wrapper__interview-sec__list__item.reverse {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 10%;
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__item.reverse {
    flex-direction: column;
    padding-left: 12%;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__item.reverse {
    padding-left: 0;
  }
}
.interview-wrapper__interview-sec__list__item:nth-child(odd) {
  background-color: #d3eefa;
}
.interview-wrapper__interview-sec__list__item:first-child {
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__item:first-child {
    padding-top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__item:first-child {
    padding-top: 90px;
  }
}
.interview-wrapper__interview-sec__list__num {
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto 0;
  color: #fff;
  font-size: 12rem;
  font-family: "Oswald", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1300px) {
  .interview-wrapper__interview-sec__list__num {
    font-size: 10rem;
  }
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__num {
    font-size: 8rem;
  }
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__num {
    right: -2px;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__num {
    top: auto;
    bottom: 20px;
    height: 100%;
    margin: 0;
    font-size: 7rem;
    text-align: right;
    opacity: 0.6;
  }
}
.reverse .interview-wrapper__interview-sec__list__num {
  right: auto;
  left: 40px;
  color: #d3eefa;
}
@media screen and (max-width: 1300px) {
  .reverse .interview-wrapper__interview-sec__list__num {
    left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .reverse .interview-wrapper__interview-sec__list__num {
    left: 10px;
  }
}
.interview-wrapper__interview-sec__list__num > span {
  display: inline-block;
  margin-top: 20px;
  font-size: 10rem;
  font-weight: 500;
  vertical-align: bottom;
  writing-mode: horizontal-tb;
}
@media screen and (max-width: 1300px) {
  .interview-wrapper__interview-sec__list__num > span {
    margin-top: 10px;
    font-size: 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__num > span {
    font-size: 6rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__num > span {
    font-size: 5rem;
  }
}
.reverse .interview-wrapper__interview-sec__list__num > span {
  color: #d3eefa;
}
.interview-wrapper__interview-sec__list__image {
  width: 53%;
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__image {
    width: 100%;
  }
}
.interview-wrapper__interview-sec__list__image figure {
  position: relative;
  height: 100%;
}
.interview-wrapper__interview-sec__list__image figure > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview-wrapper__interview-sec__list__image figure figcaption {
  position: absolute;
  right: 0;
  bottom: 90px;
  max-width: 520px;
  width: 90%;
  padding: 20px 30px;
  background-color: #0a76bc;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .interview-wrapper__interview-sec__list__image figure figcaption {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__image figure figcaption {
    width: 80%;
    bottom: 50px;
    padding: 15px 25px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__image figure figcaption {
    max-width: none;
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__image figure figcaption {
    display: inline-block;
    bottom: 35px;
    width: auto;
    padding: 12px 25px;
    font-size: 1.5rem;
  }
}
.reverse .interview-wrapper__interview-sec__list__image figure figcaption {
  right: auto;
  left: 0;
}
.interview-wrapper__interview-sec__list__image figure figcaption > span {
  display: inline-block;
  margin-right: 20px;
  font-size: 3.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .interview-wrapper__interview-sec__list__image figure figcaption > span {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__image figure figcaption > span {
    margin-right: 10px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__image figure figcaption > span {
    font-size: 2rem;
  }
}
.interview-wrapper__interview-sec__list__content {
  display: flex;
  align-items: center;
  position: relative;
  width: 47%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 5.5%;
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__content {
    width: 100%;
    padding: 40px 0 50px 12%;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__content {
    padding: 25px 25px 40px !important;
  }
}
.reverse .interview-wrapper__interview-sec__list__content {
  padding-right: 5.5%;
  padding-left: 0;
}
@media screen and (max-width: 834px) {
  .reverse .interview-wrapper__interview-sec__list__content {
    padding: 40px 12% 50px 0;
  }
}
.interview-wrapper__interview-sec__list__body {
  max-width: 510px;
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__body {
    max-width: none;
  }
}
.reverse .interview-wrapper__interview-sec__list__body {
  margin-left: auto;
}
.interview-wrapper__interview-sec__list__catch {
  margin-bottom: 25px;
  color: #1264b8;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 1300px) {
  .interview-wrapper__interview-sec__list__catch {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__catch {
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__catch {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .interview-wrapper__interview-sec__list__catch {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
}
.interview-wrapper__interview-sec__list__text {
  color: #444;
  font-size: 1.8rem;
  text-align: justify;
}
@media screen and (max-width: 1300px) {
  .interview-wrapper__interview-sec__list__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .interview-wrapper__interview-sec__list__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .interview-wrapper__interview-sec__list__text {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */