@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300..800;1,14..32,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300..800;1,300..800&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット02・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 835px) {
  .tb02sp {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* justify-content: space-between; */
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -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;
  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,
::selection {
  background-color: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}

/*視差効果
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 400;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

.al-right {
  text-align: right;
}

.al-left {
  text-align: left;
}

.al-center {
  text-align: center;
}

.tel {
  color: inherit;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 10px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 15px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 35px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 45px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 50px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 50px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 15px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 15px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 25px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}
@media screen and (max-width: 599px) {
  .mt70 {
    margin-top: 45px !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  transition: transform 0.3s 0.3s;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 110px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}
.header.hidden {
  transform: translateY(-120px);
}
@media screen and (max-width: 1024px) {
  .header.hidden {
    transform: translateY(-110px);
  }
}
@media screen and (max-width: 599px) {
  .header.hidden {
    transform: translateY(-60px);
  }
}

.header-logo {
  max-width: 252px;
  margin: 38px 0 0 40px;
}
@media screen and (max-width: 1400px) {
  .header-logo {
    max-width: 232px;
    margin: 38px 20px 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    width: calc(100% - 150px);
    max-width: 180px;
    margin: 18px 20px 0 15px;
  }
}

.header-gnav {
  margin-top: 37px;
  margin-right: 230px;
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 1400px) {
  .header-gnav {
    margin-top: 40px;
    margin-right: 200px;
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header-gnav {
    display: none;
  }
}
.header-gnav > li > a {
  color: #000;
  display: inline-block;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .header-gnav > li > a:hover {
    color: #0087e2;
    transform: translateY(2px);
  }
}

.header-tel {
  position: absolute;
  top: 0;
  right: 80px;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 599px) {
  .header-tel {
    width: 60px;
    height: 60px;
    right: 60px;
  }
}
.header-tel > a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #0056b0;
  background-image: url(../img/common/icon_tel_white.svg);
  background-repeat: no-repeat;
  background-size: 23px auto;
  background-position: center;
  position: relative;
  color: #0056b0;
}
@media screen and (max-width: 599px) {
  .header-tel > a {
    background-size: 18px auto;
    background-position: left 50% top 11px;
  }
}
.header-tel > a::before {
  content: "CONTACT";
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .header-tel > a::before {
    bottom: 6px;
    color: #fff;
  }
}

/* ===================================
ハンバーガー
=====================================*/
/*ハンバーガーボタン*/
#nav-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 80px;
  width: 80px;
  cursor: pointer;
  background-color: #000;
  z-index: 100;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  #nav-toggle:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  #nav-toggle {
    width: 60px;
    height: 60px;
  }
}
#nav-toggle::before {
  content: "MENU";
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  #nav-toggle::before {
    bottom: 6px;
    color: #fff;
  }
}
#nav-toggle > div {
  position: absolute;
  top: 28px;
  left: 27px;
  width: 26px;
}
@media screen and (max-width: 599px) {
  #nav-toggle > div {
    top: 14px;
    left: 19px;
    width: 22px;
  }
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
@media screen and (max-width: 599px) {
  #nav-toggle span:nth-child(2) {
    top: 8px;
  }
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
@media screen and (max-width: 599px) {
  #nav-toggle span:nth-child(3) {
    top: 16px;
  }
}

.open #nav-toggle span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  display: none;
}
.open #nav-toggle span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
  width: 100%;
}

/*黒背景*/
#gloval-nav-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 98;
  cursor: pointer;
  display: none;
}
.open #gloval-nav-overlay {
  display: block;
}
.hidden #gloval-nav-overlay {
  top: 120px;
}
@media screen and (max-width: 1024px) {
  .hidden #gloval-nav-overlay {
    top: 110px;
  }
}
@media screen and (max-width: 599px) {
  .hidden #gloval-nav-overlay {
    top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  #gloval-nav-overlay {
    background-color: rgba(0, 0, 0, 0.4);
  }
}

/*ハンバーガー内*/
#gloval-nav {
  display: block;
  overflow: auto;
  background-color: #ebf5fd;
  position: fixed;
  top: 0;
  right: 0;
  width: 700px;
  height: 100vh;
  transform: translateX(700px);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 99;
}
.hidden #gloval-nav {
  top: 120px;
}
@media screen and (max-width: 1024px) {
  .hidden #gloval-nav {
    top: 110px;
  }
}
@media screen and (max-width: 599px) {
  .hidden #gloval-nav {
    top: 60px;
  }
}
@media screen and (min-width: 1025px) {
  #gloval-nav::-webkit-scrollbar {
    width: 7px;
  }
  #gloval-nav::-webkit-scrollbar-track {
    background: #e6e6e6;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  #gloval-nav::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 3px;
    box-shadow: none;
  }
}
@media screen and (max-width: 1024px) {
  #gloval-nav {
    width: 90%;
    transform: translateX(100%);
  }
}

.open #gloval-nav {
  transform: translateX(0);
}

.gloval-nav-contents {
  z-index: 999;
  padding: 170px 0;
  max-width: 530px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .gloval-nav-contents {
    padding: 100px 20px 100px;
  }
}

/*ハンバーガーコンテンツ内*/
.gloval-nav-block01 {
  display: flex;
  gap: 55px;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-block01 {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.gloval-nav-block01 > ul {
  width: calc((100% - 55px) / 2);
  list-style: none;
}
@media screen and (max-width: 599px) {
  .gloval-nav-block01 > ul {
    width: 100%;
  }
}
.gloval-nav-block01 > ul > li > ul {
  margin-top: -4px;
  list-style: none;
}
@media screen and (max-width: 599px) {
  .gloval-nav-block01 > ul > li > ul {
    margin-top: 20px;
    padding-left: 20px;
  }
}

.gloval-nav-block02 {
  display: flex;
  gap: 55px;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .gloval-nav-block02 {
    flex-wrap: wrap;
    gap: 0;
  }
}
.gloval-nav-block02 > ul {
  width: calc((100% - 55px) / 2);
  list-style: none;
}
@media screen and (max-width: 599px) {
  .gloval-nav-block02 > ul {
    width: 100%;
  }
}

.gloval-nav-link01 {
  margin-bottom: 20px;
  display: block;
  font-size: 2rem;
  color: #000;
  position: relative;
  line-height: 1.3;
}
@media screen and (min-width: 1025px) {
  .gloval-nav-link01:hover {
    color: #0087e2;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 599px) {
  .gloval-nav-link01 {
    margin-bottom: 0;
    border-bottom: 1px solid #d4e2ec;
    padding: 16px 20px 16px 0;
    font-size: 1.7rem;
  }
}
.gloval-nav-link01::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 0;
  width: 25px;
  height: 25px;
  background-image: url(../img/common/arrow08.png);
  background-size: contain;
  display: block;
}
@media screen and (max-width: 599px) {
  .gloval-nav-link01::before {
    top: 50%;
    margin-top: -13px;
  }
}

.gloval-nav-no-link {
  margin-bottom: 20px;
  display: block;
  font-size: 2rem;
  color: #000;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .gloval-nav-no-link {
    margin-bottom: 0;
    padding: 16px 20px 0 0;
    font-size: 1.7rem;
  }
}

.gloval-nav-link02 {
  color: #000;
  position: relative;
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1025px) {
  .gloval-nav-link02:hover {
    color: #0087e2;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 599px) {
  .gloval-nav-link02 {
    margin-bottom: 7px;
  }
}
.gloval-nav-link02::before {
  content: "";
  margin-top: -7px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #009df9;
  border-radius: 200px;
}
.gloval-nav-link02::after {
  content: "";
  margin-top: -2px;
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 3px 5px;
  border-color: transparent;
  border-left-color: #fff;
}

.gloval-nav-product {
  margin-top: -5px;
  padding-left: 22px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-product {
    margin-top: 20px;
  }
}
.gloval-nav-product > dt {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-product > dt {
    font-size: 1.7rem;
  }
}
.gloval-nav-product > dd {
  margin-bottom: 15px;
}
.gloval-nav-product > dd > ul {
  list-style: none;
}

.footer-bnrs {
  padding: 100px 50px;
}
@media screen and (max-width: 1400px) {
  .footer-bnrs {
    padding: 70px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-bnrs {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bnrs {
    padding: 35px 20px;
  }
}

.footer-bnrs-list {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .footer-bnrs-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bnrs-list {
    gap: 20px;
  }
}
.footer-bnrs-list > li > a {
  display: block;
  width: 100%;
}
.footer-bnrs-list > li > a.logo-ffg {
  max-width: 305px;
}
@media screen and (max-width: 1024px) {
  .footer-bnrs-list > li > a.logo-ffg {
    max-width: 244px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bnrs-list > li > a.logo-ffg {
    max-width: 213.5px;
  }
}
.footer-bnrs-list > li > a.logo-fukuoka-bank {
  max-width: 155px;
}
@media screen and (max-width: 1024px) {
  .footer-bnrs-list > li > a.logo-fukuoka-bank {
    max-width: 124px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bnrs-list > li > a.logo-fukuoka-bank {
    max-width: 108.5px;
  }
}
.footer-bnrs-list > li > a.logo-kumamoto-bank {
  max-width: 142px;
}
@media screen and (max-width: 1024px) {
  .footer-bnrs-list > li > a.logo-kumamoto-bank {
    max-width: 113.6px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bnrs-list > li > a.logo-kumamoto-bank {
    max-width: 99.4px;
  }
}
.footer-bnrs-list > li > a.logo-shinwa-bank {
  max-width: 198px;
}
@media screen and (max-width: 1024px) {
  .footer-bnrs-list > li > a.logo-shinwa-bank {
    max-width: 158.4px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bnrs-list > li > a.logo-shinwa-bank {
    max-width: 138.6px;
  }
}
.footer-bnrs-list > li > a.logo-fukuokachuou-bank {
  max-width: 216px;
}
@media screen and (max-width: 1024px) {
  .footer-bnrs-list > li > a.logo-fukuokachuou-bank {
    max-width: 172.8px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bnrs-list > li > a.logo-fukuokachuou-bank {
    max-width: 151.2px;
  }
}
.footer-bnrs-list > li > a.logo-tokyo-century {
  margin-top: -15px;
  max-width: 196px;
}
@media screen and (max-width: 1024px) {
  .footer-bnrs-list > li > a.logo-tokyo-century {
    max-width: 156.8px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bnrs-list > li > a.logo-tokyo-century {
    max-width: 137.2px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .footer-bnrs-list > li > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

.footer-links {
  padding: 0 50px;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .footer-links {
    padding: 0 20px;
  }
}

.footer-links-block {
  max-width: 1500px;
  margin: 0 auto;
  background: linear-gradient(115deg, #1e76d1 0%, #1e76d1 31%, #0090ec 31%, #0090ec 100%);
  padding: 85px 50px 85px 95px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .footer-links-block {
    padding: 75px 50px 75px 75px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-links-block {
    flex-wrap: wrap;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-links-block {
    padding: 35px 20px;
  }
}
.footer-links-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 60%;
  height: 92%;
  background-image: url(../img/common/links_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}
.footer-links-block__title {
  width: 33%;
  font-size: 8rem;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 1400px) {
  .footer-links-block__title {
    width: 30%;
    font-size: 7rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-links-block__title {
    width: 100%;
    font-size: 6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-links-block__title {
    font-size: 5rem;
  }
}
.footer-links-block__data {
  width: 67%;
}
@media screen and (max-width: 1400px) {
  .footer-links-block__data {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-links-block__data {
    width: 100%;
  }
}

.footer-links-list {
  display: flex;
  gap: 10px 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .footer-links-list {
    gap: 6px 30px;
  }
}
.footer-links-list--mb {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .footer-links-list--mb {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .footer-links-list--mb {
    margin-bottom: 6px;
  }
}
.footer-links-list > li > a {
  color: #fff;
  line-height: 1.3;
  display: inline-block;
  padding-right: 36px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .footer-links-list > li > a:hover {
    transform: translateX(2px);
    opacity: 0.8;
  }
}
.footer-links-list > li > a::before {
  content: "";
  margin-top: -7px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 200px;
}
.footer-links-list > li > a::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  border-style: solid;
  border-width: 3px 5px;
  border-color: transparent;
  border-left-color: #0090ec;
}
.footer-links-list > li > a.outside {
  background-image: url(../img/common/icon_target.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: right 10px top 5px;
}
.footer-links-list > li > a.outside::before {
  content: none;
}
.footer-links-list > li > a.outside::after {
  content: none;
}

.footer-info {
  margin-top: -125px;
  background-color: #0056b0;
  padding: 240px 50px 120px;
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 1400px) {
  .footer-info {
    padding: 220px 50px 100px;
    gap: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-info {
    padding: 200px 40px 100px;
    flex-wrap: wrap;
    gap: 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .footer-info {
    padding: 170px 20px 70px;
    gap: 20px 50px;
  }
}

.footer-info-logo {
  max-width: 388px;
}
@media screen and (max-width: 1400px) {
  .footer-info-logo {
    max-width: 300px;
  }
}

.footer-info-address {
  color: #fff;
}
.footer-info-address__link {
  color: #fff;
}
@media screen and (max-width: 599px) {
  .footer-info-address__link {
    text-decoration: underline;
  }
}

.footer-info-copy {
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .footer-info-copy {
    margin-top: 20px;
  }
}

.pagetop {
  position: fixed;
  bottom: 50px;
  right: 40px;
  max-width: 60px;
  z-index: 100;
}

.side {
  position: fixed;
  top: 25px;
  left: 25px;
  width: 240px;
  background-color: #0087e2;
  border-radius: 20px;
  overflow: auto;
  height: calc(100% - 40px);
  max-height: 730px;
  z-index: 99;
  padding: 30px 15px 20px;
}
@media screen and (min-width: 1025px) {
  .side::-webkit-scrollbar {
    width: 6px;
  }
  .side::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 17px 0;
  }
  .side::-webkit-scrollbar-thumb {
    background: #c53913;
    border-radius: 10px;
    box-shadow: none;
  }
}
@media screen and (max-width: 1024px) {
  .side {
    display: none;
  }
}

.side-logo {
  max-width: 196px;
  margin: 0 auto 25px;
}
@media screen and (min-width: 1025px) {
  .side-logo > a:hover {
    opacity: 0.7;
  }
}

.side-links-list {
  margin-bottom: 26px;
}
.side-links-list > li {
  margin-bottom: 10px;
}
.side-links-list > li:last-child {
  margin-bottom: 0;
}

.side-link01 {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  text-align: left;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
  padding: 9px 4px 9px 56px;
  letter-spacing: 0;
}
.side-link01 > span {
  display: block;
  color: #0087e2;
  font-size: 2.6rem;
  font-weight: 700;
}
.side-link01--search {
  background-image: url(../img/common/side_search.png);
  background-repeat: no-repeat;
  background-position: left 2px bottom 0;
  background-size: 52px auto;
}
.side-link01--soudan {
  background-image: url(../img/common/side_soudan.png);
  background-repeat: no-repeat;
  background-position: left 4px bottom 0;
  background-size: 50px auto;
}
@media screen and (min-width: 1025px) {
  .side-link01:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}

.side-links-list2 {
  margin-bottom: 30px;
}
.side-links-list2 > li {
  margin-bottom: 11px;
}
.side-links-list2 > li:last-child {
  margin-bottom: 0;
}
.side-links-list2 > li > a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
  padding-left: 15px;
  display: block;
}
.side-links-list2 > li > a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .side-links-list2 > li > a:hover {
    transform: translateX(3px);
  }
}

.side-conversion {
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 6px;
  padding: 13px 15px 5px;
  display: flex;
  flex-wrap: wrap;
}
.side-conversion__mail {
  width: 50%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.side-conversion__mail > a {
  font-size: 1.4rem;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 33px 5px 0 0;
  line-height: 1.4;
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: 26px auto;
  background-position: left 45% top 4px;
}
@media screen and (min-width: 1025px) {
  .side-conversion__mail > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.side-conversion__siryo {
  width: 50%;
}
.side-conversion__siryo > a {
  font-size: 1.4rem;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 33px 0 0 5px;
  line-height: 1.4;
  background-image: url(../img/common/icon_siryo.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 53% top 1px;
}
@media screen and (min-width: 1025px) {
  .side-conversion__siryo > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
.side-conversion__raiten {
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.side-conversion__raiten > a {
  font-size: 1.4rem;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
  background-image: url(../img/common/icon_shop.svg);
  background-repeat: no-repeat;
  background-size: 31px auto;
  padding: 14px 0 13px 38px;
  display: block;
  background-position: left 0 top 20px;
}
.side-conversion__raiten > a span {
  font-size: 1.3rem;
}
@media screen and (min-width: 1025px) {
  .side-conversion__raiten > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}

.side-link02 {
  margin-bottom: 24px;
}
.side-link02 > a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.4rem;
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
  display: block;
}
@media screen and (min-width: 1025px) {
  .side-link02 > a:hover {
    transform: translateX(3px);
  }
}
.side-link02 > a::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 50%;
}
.side-link02 > a::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0087e2;
  border-right: 1px solid #0087e2;
  transform: rotate(45deg);
}

.side-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  padding-top: 15px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3;
}
.side-contact__text01 {
  margin-bottom: 7px;
}
.side-contact > a {
  color: #fff;
  font-size: 3.2rem;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .side-contact > a {
    pointer-events: none;
  }
}

/*幅1100px サイドなし*/
.contents-layout01 {
  padding: 0 50px 50px;
}
@media screen and (max-width: 1024px) {
  .contents-layout01 {
    padding: 0 40px 50px;
  }
}
@media screen and (max-width: 599px) {
  .contents-layout01 {
    padding: 0 20px 40px;
  }
}
.contents-layout01__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.contents-layout01__inner--wide {
  max-width: 1500px;
}

/*横並びブロックレイアウト*/
.contents-layout-column {
  margin-bottom: 100px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .contents-layout-column {
    flex-wrap: wrap;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .contents-layout-column {
    margin-bottom: 40px;
  }
}
.contents-layout-column--mb-none {
  margin-bottom: 0;
}
.contents-layout-column__head {
  width: 310px;
}
@media screen and (min-width: 1025px) {
  .contents-layout-column__head {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .contents-layout-column__head {
    width: 100%;
    margin-bottom: 30px;
  }
}
.contents-layout-column__head__title {
  font-size: 2.2rem;
  line-height: 1.3;
  color: #004d9d;
  font-weight: 500;
  border-top: 1px solid #cccccc;
  padding-top: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .contents-layout-column__head__title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .contents-layout-column__head__title {
    padding-top: 20px;
    font-size: 2.1rem;
    font-weight: 400;
  }
}
.contents-layout-column__head__title::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 40px;
  height: 1px;
  background-color: #0087e2;
}
.contents-layout-column__head__title > span {
  font-size: 1.6rem;
  color: #444444;
  position: absolute;
  top: -35px;
  right: 10px;
}
@media screen and (max-width: 599px) {
  .contents-layout-column__head__title > span {
    top: -30px;
  }
}
.contents-layout-column__head__text {
  margin-top: 25px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .contents-layout-column__head__text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.contents-layout-column__data {
  width: calc(100% - 310px);
  padding-left: 90px;
  padding-top: 30px;
}
@media screen and (max-width: 1400px) {
  .contents-layout-column__data {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .contents-layout-column__data {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
}

/*404*/
.not-found-404 {
  background-color: #eaf2f7;
  text-align: center;
  padding: 40px;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .not-found-404 {
    font-size: 1.6rem;
    padding: 30px 10px;
    margin-bottom: 20px;
  }
}

.not-found-404-text {
  text-align: center;
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .not-found-404-text {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

.not-found-404-btn > a {
  margin: 0 auto;
}

/*--------------------------------------------------------
pagetitle
----------------------------------------------------------*/
.pagetitle {
  margin-top: 120px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    margin-top: 60px;
  }
}

.pagetitle-box {
  width: 550px;
  display: flex;
  align-items: center;
  padding: 30px 30px 50px 150px;
  background-image: url(../img/common/page_title_back.png);
  background-size: 499px auto;
  background-repeat: no-repeat;
  background-position: left -35px bottom 35px;
}
@media screen and (max-width: 1400px) {
  .pagetitle-box {
    width: 400px;
    padding: 30px 30px 50px 80px;
    background-size: 360px auto;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle-box {
    width: 100%;
    margin-bottom: 20px;
    order: 2;
    padding: 80px 40px 80px 40px;
    z-index: 1;
    background-position: center;
    text-align: center;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-box {
    margin-bottom: 10px;
    padding: 30px 20px 50px 20px;
    background-size: 230px auto;
  }
}
.pagetitle-box__title {
  font-size: 7rem;
  color: #0087e2;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1400px) {
  .pagetitle-box__title {
    font-size: 6.5rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-box__title {
    font-size: min(16vw, 4.8rem);
  }
}
.pagetitle-box__title span {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #004d9d;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 599px) {
  .pagetitle-box__title span {
    font-size: 1.6rem;
  }
}

.pagetitle-photo {
  width: calc(100% - 550px);
  height: 400px;
}
@media screen and (max-width: 1400px) {
  .pagetitle-photo {
    height: 300px;
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle-photo {
    width: 100%;
    order: 1;
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle-photo {
    height: 150px;
  }
}
.pagetitle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  padding: 20px 25px 55px 25px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb > li {
  position: relative;
  font-size: 1.4rem;
  color: #444;
  letter-spacing: 0;
}
.breadcrumb > li:not(:last-child) {
  padding-right: 40px;
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 16px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumb > li > a {
  color: #0087e2;
}
@media screen and (min-width: 1025px) {
  .breadcrumb > li > a:hover {
    text-decoration: underline;
  }
}

/*--------------------------------------------------------
pagenav
----------------------------------------------------------*/
.pagenav {
  position: relative;
}
@media screen and (max-width: 599px) {
  .pagenav {
    margin-top: 70px;
  }
}
.pagenav .prev {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .pagenav .prev {
    top: -38px;
  }
}
.pagenav .prev > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  background-color: #0087e2;
  border-radius: 6px;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  padding-left: 4px;
}
@media screen and (min-width: 1025px) {
  .pagenav .prev > a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .prev > a {
    height: 36px;
  }
}
.pagenav .prev > a::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(-135deg);
}
@media screen and (max-width: 599px) {
  .pagenav .prev > a::after {
    top: 15px;
  }
}
.pagenav .prev.non {
  display: none;
}
.pagenav .next {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 599px) {
  .pagenav .next {
    top: -38px;
  }
}
.pagenav .next > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  background-color: #0087e2;
  border-radius: 6px;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  padding-right: 4px;
}
@media screen and (min-width: 1025px) {
  .pagenav .next > a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .next > a {
    height: 36px;
  }
}
.pagenav .next > a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .pagenav .next > a::after {
    top: 15px;
  }
}
.pagenav .next.non {
  display: none;
}
.pagenav .num {
  padding: 5px 110px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .pagenav .num {
    padding: 15px 0 0;
  }
}
.pagenav .num > ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.pagenav .num > ul > li {
  margin: 0 5px;
}
@media screen and (max-width: 599px) {
  .pagenav .num > ul > li {
    margin: 0 3px;
  }
}
.pagenav .num > ul > li > a {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
  padding-top: 3px;
  color: #222;
}
@media screen and (min-width: 1025px) {
  .pagenav .num > ul > li > a:hover {
    background-color: #0087e2;
    color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .pagenav .num > ul > li > a {
    width: 36px;
    height: 36px;
  }
}
.pagenav .num > ul > li.current > a {
  background-color: #0087e2;
  color: #fff;
}
.pagenav .num > ul > li.borderNon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------
title
----------------------------------------------------------*/
.base-title01 {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  color: #004d9d;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #cccccc;
  line-height: 1.3;
  padding: 0 0 28px 0;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .base-title01 {
    padding: 0 0 20px 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .base-title01 {
    font-size: 2.1rem;
    padding: 0 0 15px 0;
    margin-bottom: 30px;
  }
}
.base-title01::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #0087e2;
}

.base-title02 {
  border-left: 3px solid #0087e2;
  font-size: 2rem;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  padding: 0 0 17px 20px;
  border-bottom: 1px solid #cccccc;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-bottom: 35px;
  /*数字有*/
}
@media screen and (max-width: 1024px) {
  .base-title02 {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .base-title02 {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 3px 0 12px 15px;
    margin-bottom: 20px;
  }
}
.base-title02--d-blue {
  color: #004d9d;
}
.base-title02--number {
  display: flex;
  align-items: flex-start;
}
.base-title02__number {
  border: 1px solid #999999;
  border-radius: 100px;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.1;
  width: 48px;
  height: 22px;
  text-align: center;
  padding: 1px 2px 2px 2px;
  margin-top: 5px;
}
@media screen and (max-width: 599px) {
  .base-title02__number {
    width: 38px;
    height: 20px;
    margin-top: 3px;
    font-size: 1.4rem;
  }
}
.base-title02__text {
  padding-left: 20px;
  width: calc(100% - 48px);
}
@media screen and (max-width: 599px) {
  .base-title02__text {
    width: calc(100% - 38px);
    padding-left: 10px;
  }
}

.base-title03 {
  position: relative;
  font-size: 1.8rem;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  padding: 0 0 0 30px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .base-title03 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .base-title03 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.base-title03::before, .base-title03::after {
  content: "";
  position: absolute;
}
.base-title03::before {
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border: solid 1px #0087e2;
  border-radius: 13px;
}
.base-title03::after {
  top: 8px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: #0087e2;
  border-radius: 16px;
}

.base-title04 {
  position: relative;
  background-color: #f0fafd;
  border-bottom: 1px solid #cccccc;
  padding: 17px 20px 17px 43px;
  margin-bottom: 50px;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .base-title04 {
    padding: 15px 15px 15px 40px;
    margin-bottom: 30px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title04 {
    padding: 10px 10px 10px 30px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.base-title04::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 3px;
  height: 50px;
  background-color: #0087e2;
}
@media screen and (max-width: 1024px) {
  .base-title04::before {
    height: 45px;
  }
}
@media screen and (max-width: 599px) {
  .base-title04::before {
    left: 12px;
    height: 35px;
  }
}

.base-title05 {
  position: relative;
  background-color: #e5f3fb;
  padding: 26px 20px 26px 45px;
  margin-bottom: 60px;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 1400px) {
  .base-title05 {
    padding: 22px 20px 22px 45px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .base-title05 {
    padding: 23px 20px 23px 42px;
    margin-bottom: 45px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title05 {
    padding: 20px 20px 20px 32px;
    margin-bottom: 30px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.base-title05::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 0;
  width: 24px;
  height: 4px;
  background-color: #0087e2;
}
@media screen and (max-width: 1400px) {
  .base-title05::before {
    top: 39px;
  }
}
@media screen and (max-width: 1024px) {
  .base-title05::before {
    top: 39px;
  }
}
@media screen and (max-width: 599px) {
  .base-title05::before {
    top: 33px;
    width: 18px;
    height: 3px;
  }
}
.base-title05--type02 {
  width: 100%;
  max-width: calc(100% - 400px);
  margin-left: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .base-title05--type02 {
    max-width: calc(100% - 350px);
  }
}
@media screen and (max-width: 1024px) {
  .base-title05--type02 {
    max-width: 100%;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 599px) {
  .base-title05--type02 {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------
text
----------------------------------------------------------*/
.text-base {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.9;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .text-base {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.text-small {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .text-small {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.text-link {
  color: #0087e2;
}
.text-link:hover {
  text-decoration: underline;
}

.text-link-line {
  color: #0087e2;
  text-decoration: underline;
}
.text-link-line:hover {
  text-decoration: none;
}
.text-link-line--sp {
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .text-link-line--sp {
    color: #0087e2;
    text-decoration: underline;
  }
}

.text-read {
  color: #444444;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.2;
  margin-bottom: 40px;
}
.text-read__color01 {
  color: #aa5aca;
}
@media screen and (max-width: 599px) {
  .text-read {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------
button
----------------------------------------------------------*/
.btn01 {
  display: block;
  color: #444444;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  text-align: center;
  border: solid 1px #0087e2;
  border-radius: 8px;
  padding: 27px 25px;
}
@media screen and (max-width: 1024px) {
  .btn01 {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 599px) {
  .btn01 {
    font-size: 1.5rem;
    line-height: 1.3;
    border-radius: 6px;
    padding: 20px 20px;
  }
}
.btn01__arw {
  position: relative;
  padding: 3px 71px 3px 40px;
}
@media screen and (max-width: 1024px) {
  .btn01__arw {
    padding: 3px 61px 3px 0;
  }
}
@media screen and (max-width: 599px) {
  .btn01__arw {
    padding: 3px 46px 3px 0;
  }
}
.btn01__arw::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 21px;
  height: 21px;
  background-image: url(../img/common/arrow01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin: auto 0;
}
@media screen and (min-width: 1025px) {
  .btn01:hover {
    color: #fff;
    background-color: #0087e2;
    transform: translateY(4px);
  }
}

.btn02 {
  position: relative;
  display: block;
  color: #444444;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  text-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 28px 60px 28px 25px;
}
@media screen and (max-width: 1024px) {
  .btn02 {
    padding: 22px 55px 22px 20px;
  }
}
@media screen and (max-width: 599px) {
  .btn02 {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: left;
    border-radius: 6px;
    padding: 15px 45px 15px 15px;
  }
}
.btn02::before {
  content: "";
  position: absolute;
  top: calc((100% - 21px) / 2);
  right: 30px;
  width: 21px;
  height: 21px;
  background-image: url(../img/common/arrow01.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .btn02::before {
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .btn02::before {
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .btn02:hover {
    background-color: #0087e2;
    color: #fff;
    transform: translateY(4px);
  }
}
.btn02--green::before {
  background-image: url(../img/common/arrow05.png);
}
@media screen and (min-width: 1025px) {
  .btn02--green:hover {
    background-color: #50b79e !important;
  }
}
.btn02--green.now {
  background-color: #b4ebdd;
}
.btn02--green.now::before {
  transform: rotate(90deg);
}
.btn02--purple::before {
  background-image: url(../img/common/arrow06.png);
}
@media screen and (min-width: 1025px) {
  .btn02--purple:hover {
    background-color: #b886cc !important;
  }
}
.btn02--purple.now {
  background-color: #eacaf7;
}
.btn02--purple.now::before {
  transform: rotate(90deg);
}

.btn03 {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  background-color: #0056b0;
  padding: 36px 20px;
}
@media screen and (max-width: 1024px) {
  .btn03 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .btn03 {
    font-size: 1.8rem;
    padding: 26px 20px;
  }
}
@media screen and (max-width: 599px) {
  .btn03 {
    font-size: 1.6rem;
  }
}
.btn03::before {
  position: absolute;
  content: "";
  top: calc((100% - 14px) / 2);
  right: 30px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .btn03::before {
    top: calc((100% - 12px) / 2);
    right: 25px;
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 599px) {
  .btn03::before {
    top: calc((100% - 10px) / 2);
    right: 20px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .btn03:hover {
    background-color: #0087e2;
    transform: translateY(4px);
  }
}

.btn04 {
  width: 100%;
  max-width: 240px;
  display: block;
  text-align: center;
  border: 2px solid #0087e2;
  border-radius: 200px;
  font-size: 1.6rem;
  color: #0087e2;
  font-weight: 500;
  padding: 17px;
  background-image: url(../img/common/arrow01.png);
  background-repeat: no-repeat;
  background-size: 21px 21px;
  background-position: right 20px top 50%;
}
@media screen and (min-width: 1025px) {
  .btn04:hover {
    background-color: #0087e2;
    color: #fff;
    transform: translateY(4px);
  }
}
@media screen and (max-width: 1024px) {
  .btn04 {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .btn04 {
    margin: 0 auto;
    padding: 15px 17px;
  }
}

/* =====================================================

_form

===================================================== */
/*　全体共通　*/
input,
button,
textarea,
input[type=text],
input[type=search],
input[type=tel],
input[type=email],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}
input:focus,
button:focus,
textarea:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=email]:focus,
select:focus {
  outline: none !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
input::-webkit-input-placeholder,
button::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #a1a1a1;
}
input::-moz-placeholder,
button::-moz-placeholder,
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
select::-moz-placeholder {
  color: #a1a1a1;
  opacity: 1;
}
input:-ms-input-placeholder,
button:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #a1a1a1 !important;
}

textarea {
  resize: vertical;
}

input[type=radio],
input[type=checkbox] {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

input[type=submit],
input[type=button],
label,
button {
  cursor: pointer;
}

/*--リセット ここまで--*/
/* ************************************************************
共通フォームスタイル▼▼▼▼▼▼
・お問い合わせ
・来店予約
・資料請求
**************************************************************/
/*共通処理*/
#contact input,
#contact textarea,
#contact select,
#request input,
#request textarea,
#request select,
#visit input,
#visit textarea,
#visit select {
  width: 100%;
  background-color: #f0f0f0;
  padding: 12px;
  resize: vertical;
  box-sizing: border-box;
  border-radius: 6px;
  /* Edge */
}
#contact input::placeholder,
#contact textarea::placeholder,
#contact select::placeholder,
#request input::placeholder,
#request textarea::placeholder,
#request select::placeholder,
#visit input::placeholder,
#visit textarea::placeholder,
#visit select::placeholder {
  color: #a1a1a1;
  font-weight: 400;
}
#contact input::-ms-input-placeholder,
#contact textarea::-ms-input-placeholder,
#contact select::-ms-input-placeholder,
#request input::-ms-input-placeholder,
#request textarea::-ms-input-placeholder,
#request select::-ms-input-placeholder,
#visit input::-ms-input-placeholder,
#visit textarea::-ms-input-placeholder,
#visit select::-ms-input-placeholder {
  color: #a1a1a1;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus,
#request input:focus,
#request textarea:focus,
#request select:focus,
#visit input:focus,
#visit textarea:focus,
#visit select:focus {
  outline: none !important;
  box-shadow: none;
}
#contact select,
#request select,
#visit select {
  background-image: url(../img/common/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 14px auto;
  padding-right: 28px;
}
#contact select::-ms-expand,
#request select::-ms-expand,
#visit select::-ms-expand {
  display: none;
}

.form-tbl-wd220 {
  display: flex;
  align-items: center;
}
.form-tbl-wd220 input {
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-tbl-wd220 input {
    width: 100%;
  }
}
.form-tbl-wd220 span {
  margin-left: 10px;
  display: inline-block;
}

.form-flow {
  margin-bottom: 50px;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 599px) {
  .form-flow {
    margin-bottom: 30px;
  }
}
.form-flow > li {
  width: calc((100% - 50px) / 3);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 10px 20px 10px 10px;
  color: #7c7c7c;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-flow > li {
    font-size: 1.6rem;
    padding: 10px;
  }
}
@media screen and (max-width: 599px) {
  .form-flow > li {
    font-size: 1.4rem;
  }
}
.form-flow > li::before {
  content: "";
  margin-top: -7px;
  position: absolute;
  top: 50%;
  right: -30px;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 10px;
  border-left-color: #0087e2;
}
.form-flow > li.active {
  background-color: #0087e2;
  border: 1px solid #0087e2;
  color: #fff;
}
.form-flow > li:last-child::before {
  content: none;
}

.form-head {
  background-color: #faedda;
  border-radius: 6px;
  margin-bottom: 50px;
  padding: 25px;
}
@media screen and (max-width: 599px) {
  .form-head {
    padding: 20px;
    margin-bottom: 35px;
  }
}
.form-head > dt {
  margin-bottom: 15px;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  padding: 1px 0 1px 16px;
}
@media screen and (max-width: 599px) {
  .form-head > dt {
    font-size: 1.7rem;
  }
}
.form-head > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #0087e2;
  border-radius: 10px;
}
.form-head > dd {
  background-color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.7rem;
  padding: 22px 22px 22px 22px;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .form-head > dd {
    padding: 15px;
    font-size: 1.6rem;
  }
}
.form-head__text {
  position: relative;
  padding-left: 20px;
  display: block;
  margin-bottom: 10px;
}
.form-head__text:last-of-type {
  margin-bottom: 0;
}
.form-head__text::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #0087e2;
}
.form-head__text .dlt {
  background-color: #fff;
  background-color: #ddd;
  font-size: 1.3rem;
  padding: 3px 10px;
  border-radius: 3px;
  margin-left: 10px;
  cursor: pointer;
  color: #555;
  display: inline-block;
}
.form-head__text .dlt:hover {
  opacity: 0.8;
}

.form-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .form-tbl {
    margin-bottom: 0;
    border-top: none;
  }
}
.form-tbl th {
  width: 300px;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  font-weight: 500;
  font-size: 1.7rem;
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: top;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .form-tbl th {
    width: 100%;
    display: block;
    line-height: 1.3;
    padding: 4px 0 13px 16px;
    border-radius: 3px;
    position: relative;
    font-size: 1.8rem;
  }
  .form-tbl th::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: calc(100% - 8px);
    background-color: #0087e2;
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl th {
    font-size: 1.7rem;
  }
}
.form-tbl td {
  padding: 30px 0 30px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .form-tbl td {
    display: block;
    border-bottom: none;
    padding: 20px 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl td {
    padding: 20px 0 35px;
  }
}
.form-tbl--conf th {
  font-size: 1.6rem;
  line-height: 1.4;
}
.form-tbl--conf td {
  word-break: break-all;
  line-height: 1.4;
  font-weight: 400;
}

/*共通必須項目*/
.form-must {
  margin-left: 12px;
  padding: 2px 12px 3px;
  font-size: 1.3rem;
  line-height: 1.4;
  border-radius: 3px;
  background-color: #ec3d3d;
  color: #fff;
  display: inline-block;
  vertical-align: text-bottom;
}
.form-must--mgnone {
  margin: 0;
}

/*共通ラジオボタン リスト*/
.form-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-radio-list > li {
  width: 100%;
  line-height: 1.3;
  margin-bottom: 7px;
}
.form-radio-list > li:last-child {
  margin-bottom: 0;
}
.form-radio-list > li input[type=radio] {
  display: none;
}
.form-radio-list > li label {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  padding-right: 40px;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label {
    line-height: 1.5;
    padding-top: 2px;
  }
}
.form-radio-list > li label:before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 26px;
  height: 26px;
  background: #e4e4e4;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label:before {
    top: 0;
  }
}
.form-radio-list > li input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 12px;
  left: 6px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  background: #0087e2;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li input[type=radio]:checked + label:after {
    top: 14px;
  }
}

/*住所*/
.form-address-list > li {
  margin-bottom: 14px;
}
.form-address-list > li:last-child {
  margin-bottom: 0;
}
.form-address-list__select {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__select {
    flex-wrap: wrap;
  }
}
.form-address-list__select span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__select span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__select select {
  width: calc(100% - 170px) !important;
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-address-list__select select {
    width: 100% !important;
    max-width: 100%;
  }
}
.form-address-list__text {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__text {
    flex-wrap: wrap;
  }
}
.form-address-list__text span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__text span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__text input {
  width: calc(100% - 170px) !important;
}
@media screen and (max-width: 599px) {
  .form-address-list__text input {
    width: 100% !important;
    max-width: 100%;
  }
}

/*らくらす年鑑購入*/
.form-buy-explain {
  margin-bottom: 25px;
  background-color: #faedda;
  border-radius: 6px;
  padding: 25px 30px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .form-buy-explain {
    padding: 20px;
  }
}
.form-buy-explain__price {
  margin-bottom: 10px;
}
.form-buy-explain__price span {
  color: #0087e2;
}
.form-buy-explain__notice span {
  color: #0087e2;
}

.form-buy-year {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-buy-year {
    flex-wrap: wrap;
  }
}
.form-buy-year__text {
  margin-right: 25px;
}
@media screen and (max-width: 599px) {
  .form-buy-year__text {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.form-buy-year > select {
  max-width: 220px !important;
}

/*お名前/フリガナ*/
.form-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.form-name-list > li {
  display: flex;
  align-items: center;
}
.form-name-list > li input {
  max-width: 220px !important;
}
.form-name-list > li span {
  margin-right: 5px;
  display: block;
  width: 50px;
  text-align: center;
}

.form-address-post {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-address-post input {
  max-width: 220px !important;
}
@media screen and (max-width: 599px) {
  .form-address-post input {
    max-width: 200px !important;
  }
}
.form-address-post button {
  width: 160px;
  background-color: #555555;
  border-radius: 6px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  padding: 15px 10px;
}
@media screen and (min-width: 1025px) {
  .form-address-post button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .form-address-post button {
    width: 110px;
    padding: 15px 5px;
    font-size: 1.5rem;
  }
}

.form-notice-text {
  font-size: 1.4rem;
  color: #e82a2a;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

.form-privacy-text {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .form-privacy-text {
    margin-bottom: 25px;
  }
}
.form-privacy-text a {
  color: #0087e2;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .form-privacy-text a:hover {
    text-decoration: none;
  }
}

/*希望日時*/
.form-time-kibou {
  margin-bottom: 30px;
}
.form-time-kibou:last-of-type {
  margin-bottom: 0;
}
.form-time-kibou > dt {
  margin-bottom: 14px;
  line-height: 1.3;
  padding: 3px 0 3px 17px;
  position: relative;
}
.form-time-kibou > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #0087e2;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .form-time-kibou > dt {
    background-color: #faedda;
    border-radius: 5px;
    padding: 10px 10px 11px 22px;
  }
  .form-time-kibou > dt::before {
    width: 15px;
    height: 4px;
    top: 19px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.form-time-kibou__date {
  margin-bottom: 10px;
  display: flex;
}
.form-time-kibou__date input {
  max-width: 220px !important;
}
.form-time-kibou__date .ui-datepicker-trigger {
  width: 50px;
  margin-left: 5px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .form-time-kibou__date .ui-datepicker-trigger:hover {
    opacity: 0.8;
  }
}
.form-time-kibou__time {
  display: flex;
  align-items: center;
}
.form-time-kibou__time > span {
  width: 70px;
}
.form-time-kibou__time select {
  max-width: 220px !important;
}

.form-btn {
  margin: 0 auto;
  display: block;
  position: relative;
}
.form-btn input[type=submit] {
  max-width: 270px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #16b299 !important;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 10px;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: 0.2s;
  background-image: url(../img/common/icon_form_arrow.png);
  background-size: 17px auto;
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn input[type=submit]:hover {
    transform: translateY(2px);
  }
}
.form-btn__corrected {
  width: 210px;
  margin: 20px auto 0;
  padding: 14px 17px;
  background-color: #818181;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 6px;
  transition: 0.2s;
  line-height: 1.3;
  background-image: url(../img/common/icon_form_arrow2.png);
  background-size: 17px auto;
  background-repeat: no-repeat;
  background-position: left 15px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn__corrected:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .form-btn__corrected {
    position: relative;
    margin: 15px auto 0;
    padding: 15px;
  }
}
.form-error {
  margin-bottom: 50px;
  padding: 26px;
  color: #e82a2a;
  font-weight: 500;
  border-radius: 6px;
  background-color: #fcd5d5;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-error {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .form-error {
    margin-bottom: 20px;
    padding: 15px;
  }
}

.form-error-text {
  margin-bottom: 10px;
  color: #e82a2a;
  line-height: 1.3;
}

.form-send {
  margin-bottom: 35px;
  background-color: #faedda;
  border-radius: 6px;
  text-align: center;
  padding: 70px 20px;
}
@media screen and (max-width: 1024px) {
  .form-send {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 599px) {
  .form-send {
    padding: 40px 20px;
    margin-bottom: 25px;
  }
}
.form-send > dt {
  font-size: 2.7rem;
  color: #0087e2;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .form-send > dt {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}

.form-send-btn {
  max-width: 210px;
  margin: 0 auto;
}

/* ************************************************************
//ここまで　共通フォームスタイル▲▲▲▲▲▲
//・お問い合わせ
//・来店予約
//・資料請求
**************************************************************/
.base-table01 {
  width: 100%;
}
.base-table01 tr {
  border-bottom: solid 1px #cccccc;
}
.base-table01 tr th {
  width: 300px;
  padding: 35px 50px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .base-table01 tr th {
    width: 30%;
    padding: 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .base-table01 tr th {
    width: 100%;
    display: block;
    padding: 15px 10px 5px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.base-table01 tr td {
  width: calc(100% - 300px);
  padding: 35px 50px 35px 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .base-table01 tr td {
    width: 70%;
    padding: 25px 30px 25px 0;
  }
}
@media screen and (max-width: 599px) {
  .base-table01 tr td {
    width: 100%;
    display: block;
    padding: 0 10px 15px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.base-table01 tr:first-child th {
  padding-top: 0 !important;
}
.base-table01 tr:first-child td {
  padding-top: 0 !important;
}

.base-table02 {
  width: 100%;
  border-collapse: collapse;
}
.base-table02 thead tr th {
  font-size: 1.5rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  vertical-align: middle;
  background-color: #daeefe;
  border: 1px solid #cccccc;
  padding: 15px 15px;
}
@media screen and (max-width: 599px) {
  .base-table02 thead tr th {
    font-size: 1.4rem;
    padding: 15px 10px;
  }
}
.base-table02 tbody tr td {
  font-size: 1.5rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.4;
  vertical-align: middle;
  border: 1px solid #cccccc;
  padding: 14px 15px;
}
@media screen and (max-width: 599px) {
  .base-table02 tbody tr td {
    font-size: 1.4rem;
    padding: 14px 10px;
  }
}
.base-table02 tbody tr td.bg01 {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: bold;
  background-color: #f2f9fe;
}

.list01 > li {
  padding: 0 0 5px 20px;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .list01 > li {
    padding: 0 0 5px 10px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.list01 > li:last-child {
  padding-bottom: 0;
}
.list01 > li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #0087e2;
}
@media screen and (max-width: 599px) {
  .list01 > li::before {
    top: 5px;
  }
}

.list-number01 {
  counter-reset: number 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.list-number01 > li {
  position: relative;
  width: 100%;
  background-color: #f3f3f3;
  padding: 27px 35px 25px 100px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07rem;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .list-number01 > li {
    padding: 22px 25px 21px 85px;
  }
}
@media screen and (max-width: 599px) {
  .list-number01 > li {
    padding: 15px 15px 15px 60px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.list-number01 > li::before {
  content: "0" counter(number);
  counter-increment: number 1;
  position: absolute;
  top: 29px;
  left: 30px;
  width: 48px;
  height: 22px;
  background-color: #0087e2;
  border-radius: 15px;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .list-number01 > li::before {
    top: 24px;
    left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .list-number01 > li::before {
    top: 17px;
    left: 12px;
    width: 38px;
    height: 20px;
    font-size: 1.5rem;
  }
}

.list-number02 {
  counter-reset: number 0;
}
.list-number02 > li {
  position: relative;
  width: 100%;
  color: #444444;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.07rem;
  line-height: 2;
  text-align: justify;
  padding-left: 2em;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .list-number02 > li {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.list-number02 > li::before {
  content: "(" counter(number) ")";
  counter-increment: number 1;
  position: absolute;
  top: 0;
  left: 0;
  color: #444444;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .list-number02 > li::before {
    font-size: 1.5rem;
  }
}
.list-number02 > li:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------
modal
----------------------------------------------------------*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 103;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .modal-container {
    padding: 40px 10px;
  }
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 700px;
  width: 96%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  padding: 1px 0 0 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  background-color: #000;
  border-radius: 200px;
  z-index: 1;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
  border-radius: 5px;
  cursor: auto;
  max-height: 80vh;
  overflow: auto;
}
@media screen and (min-width: 1025px) {
  .modal-content::-webkit-scrollbar {
    width: 6px;
  }
  .modal-content::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }
  .modal-content::-webkit-scrollbar-thumb {
    background: #7e7e7e;
    border-radius: 10px;
    box-shadow: none;
  }
}
@media screen and (max-width: 599px) {
  .modal-content {
    padding: 25px;
  }
}

/*--------------------------------------------------------
animation
----------------------------------------------------------*/
/*アニメーション*/
@keyframes zoomIn_copy {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn_copy2 {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fadein-no-js {
  animation-name: zoomIn_copy;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

.fadein {
  opacity: 0;
  transform: translateY(30px);
}

.fadein--on {
  animation-name: zoomIn_copy;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

.zoomin {
  opacity: 0;
  transform: scale(0.8);
}

.zoomin--on {
  animation-name: zoomIn_copy2;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@media screen and (min-width: 1025px) {
  .deley01 {
    animation-delay: 0.1s;
  }
  .deley02 {
    animation-delay: 0.2s;
  }
  .deley03 {
    animation-delay: 0.3s;
  }
  .deley04 {
    animation-delay: 0.4s;
  }
  .deley05 {
    animation-delay: 0.5s;
  }
  .deley06 {
    animation-delay: 0.6s;
  }
  .deley07 {
    animation-delay: 0.7s;
  }
  .deley08 {
    animation-delay: 0.8s;
  }
  .deley09 {
    animation-delay: 0.9s;
  }
  .deley10 {
    animation-delay: 1s;
  }
}
/*--------------------------------------------------------
link
----------------------------------------------------------*/
.base-text-link {
  color: #0087e2;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .base-text-link:hover {
    text-decoration: underline;
  }
}

/*--------------------------------------------------------
anchor-link
----------------------------------------------------------*/
.anchor-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .anchor-link {
    gap: 10px;
  }
}
.anchor-link > li {
  width: calc((100% - 80px) / 5);
}
@media screen and (max-width: 1500px) {
  .anchor-link > li {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .anchor-link > li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .anchor-link > li {
    width: 100%;
  }
}
.anchor-link > li > a {
  position: relative;
  display: block;
  width: 100%;
  border: solid 1px #0087e2;
  border-radius: 8px;
  padding: 31px 60px 31px 25px;
  color: #004d9d;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .anchor-link > li > a {
    padding: 24px 55px 24px 20px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-link > li > a {
    border-radius: 6px;
    padding: 15px 45px 15px 15px;
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1025px) {
  .anchor-link > li > a:hover {
    background-color: #0087e2;
    color: #fff;
    transform: translateY(4px);
  }
}
.anchor-link > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 21px;
  height: 21px;
  background-image: url(../img/common/arrow01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: rotate(90deg);
  margin-top: -10px;
}
@media screen and (max-width: 1024px) {
  .anchor-link > li > a::before {
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-link > li > a::before {
    right: 15px;
  }
}
.anchor-link > li > a.active-page {
  background-color: #0087e2;
  color: #fff;
}
.anchor-link > li > a.active-page::before {
  background-image: url(../img/common/arrow01_white.png);
}
.anchor-link > li > a.next-page::before {
  transform: translateY(0) rotate(0deg);
}
.anchor-link--col3 > li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 1024px) {
  .anchor-link--col3 > li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .anchor-link--col3 > li {
    width: 100%;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  margin-top: 120px;
  background: linear-gradient(180deg, #FFF 0%, #FFF 32%, #014099 32%, #01a1fd 100%);
  padding-bottom: 130px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-main {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    margin-top: 80px;
    padding-bottom: 50px;
    overflow: hidden;
  }
}
.top-main::before {
  content: "";
  position: absolute;
  bottom: 7%;
  right: 10%;
  width: 55%;
  max-width: 738px;
  height: 60%;
  max-height: 332px;
  background-image: url(../img/top/main_back.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}
@media screen and (max-width: 1400px) {
  .top-main::before {
    width: 50%;
    right: 5%;
  }
}
@media screen and (max-width: 599px) {
  .top-main::before {
    width: 100%;
    right: -15%;
    bottom: 4%;
  }
}

.top-main-slider {
  overflow: hidden;
  margin-bottom: 63px;
}
@media screen and (max-width: 1400px) {
  .top-main-slider {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-slider {
    margin-bottom: 35px;
  }
}
.top-main-slider__item {
  margin: 0 10px;
}
.top-main-slider__item--01 {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item--01 {
    margin-top: 20px;
  }
}
.top-main-slider__item--02 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item--02 {
    margin-top: 40px;
  }
}
.top-main-slider__item--03 {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item--03 {
    margin-top: 20px;
  }
}
.top-main-slider__item--04 {
  margin-top: 0;
}
.top-main-slider__item--05 {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item--05 {
    margin-top: 20px;
  }
}
.top-main-slider__item--06 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item--06 {
    margin-top: 40px;
  }
}
.top-main-slider__item--07 {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .top-main-slider__item--07 {
    margin-top: 20px;
  }
}
.top-main-slider__item--08 {
  margin-top: 0;
}

.top-main-copy {
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .top-main-copy {
    padding: 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-copy {
    padding: 0 20px;
  }
}
.top-main-copy__inner {
  max-width: 1500px;
  margin: 0 auto;
}
.top-main-copy__copy {
  margin-bottom: 26px;
  width: 90%;
}
@media screen and (max-width: 1400px) {
  .top-main-copy__copy {
    width: 85%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-copy__copy {
    width: 80%;
    max-width: 600px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-copy__copy {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top-main-copy__text {
  line-height: 1.4;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1400px) {
  .top-main-copy__text {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-copy__text {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-copy__text {
    font-size: 1.7rem;
  }
}

.top-about {
  padding: 9% 50px;
  background-image: url(../img/top/sec01_back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding: 40% 20% 30%;
    background-size: 160% auto;
    background-position: left 50% top 25%;
    background-image: url(../img/top/sec01_back_all.png);
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 57% 20px 57%;
    background-size: 220% auto;
    background-position: left 50% top 50%;
  }
}

.top-about-box {
  width: 34%;
  max-width: 445px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-about-box {
    width: 100%;
  }
}
.top-about-box__copy01 {
  font-size: min(2.1vw, 3.1rem);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: 35px;
}
@media screen and (max-width: 1400px) {
  .top-about-box__copy01 {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about-box__copy01 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about-box__copy01 {
    font-size: min(6vw, 2.3rem);
  }
}
.top-about-box__text {
  margin-bottom: 50px;
  font-size: min(1.4vw, 1.8rem);
  color: #444444;
  font-weight: 500;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 1400px) {
  .top-about-box__text {
    margin-bottom: 40px;
    font-size: min(1.4vw, 1.6rem);
  }
}
@media screen and (max-width: 1024px) {
  .top-about-box__text {
    font-size: 1.6rem;
  }
}
.top-about-box__btn > a {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  display: block;
  text-align: center;
  border: 2px solid #0087e2;
  border-radius: 200px;
  font-size: 1.6rem;
  color: #0087e2;
  font-weight: 500;
  background-color: #fff;
  padding: 17px;
  background-image: url(../img/common/arrow01.png);
  background-repeat: no-repeat;
  background-size: 21px 21px;
  background-position: right 20px top 50%;
}
@media screen and (min-width: 1025px) {
  .top-about-box__btn > a:hover {
    background-color: #0087e2;
    color: #fff;
    transform: translateY(4px);
  }
}
@media screen and (max-width: 599px) {
  .top-about-box__btn > a {
    padding: 15px 17px;
  }
}

.top-about-photo01 {
  position: absolute;
  top: 0;
  left: 8%;
  width: 22.5%;
}
@media screen and (max-width: 1024px) {
  .top-about-photo01 {
    left: 8%;
    width: 28%;
  }
}
@media screen and (max-width: 599px) {
  .top-about-photo01 {
    left: 0;
    width: 35%;
  }
}

.top-about-photo02 {
  position: absolute;
  top: 37%;
  left: 0;
  width: 12.5%;
}
@media screen and (max-width: 1024px) {
  .top-about-photo02 {
    left: auto;
    right: 7%;
    top: 15%;
    z-index: 1;
    width: 15%;
  }
}
@media screen and (max-width: 599px) {
  .top-about-photo02 {
    top: 10%;
    width: 20%;
    right: 35%;
  }
}

.top-about-photo03 {
  position: absolute;
  bottom: 0;
  left: 9%;
  width: 18%;
}
@media screen and (max-width: 1400px) {
  .top-about-photo03 {
    width: 24%;
    left: 6%;
  }
}
@media screen and (max-width: 1024px) {
  .top-about-photo03 {
    bottom: auto;
    top: 6%;
    left: 50%;
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  .top-about-photo03 {
    top: 4%;
    left: auto;
    right: 0;
    width: 42%;
  }
}

.top-about-photo04 {
  position: absolute;
  top: 0;
  right: 3.5%;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .top-about-photo04 {
    top: auto;
    bottom: 22%;
    right: 0;
    z-index: 1;
    width: 18%;
  }
}
@media screen and (max-width: 599px) {
  .top-about-photo04 {
    bottom: 7%;
    width: 22%;
    right: 40%;
  }
}

.top-about-photo06 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 27%;
}
@media screen and (max-width: 1024px) {
  .top-about-photo06 {
    width: 38%;
    right: 15%;
  }
}
@media screen and (max-width: 599px) {
  .top-about-photo06 {
    right: 0;
    width: 52%;
  }
}

.top-about-photo05 {
  position: absolute;
  bottom: 9.5%;
  right: 18%;
  width: 14.5%;
}
@media screen and (max-width: 1400px) {
  .top-about-photo05 {
    right: 14%;
    bottom: 20%;
  }
}
@media screen and (max-width: 1024px) {
  .top-about-photo05 {
    right: auto;
    bottom: 9%;
    left: 0;
    width: 20%;
  }
}
@media screen and (max-width: 599px) {
  .top-about-photo05 {
    width: 26%;
    bottom: 4%;
  }
}

.top-service {
  background: linear-gradient(115deg, #1e76d1 0%, #1e76d1 31%, #0056b0 31%, #0056b0 100%);
  padding: 0 50px;
}
@media screen and (max-width: 1400px) {
  .top-service {
    padding: 0 0 0 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service {
    padding: 0;
  }
}
.top-service__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-service__inner {
    flex-wrap: wrap;
  }
}
.top-service__box {
  width: 47%;
  padding: 120px 0 130px;
}
@media screen and (max-width: 1400px) {
  .top-service__box {
    width: 52%;
    padding: 90px 0 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__box {
    width: 100%;
    padding: 75px 40px 85px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__box {
    padding: 55px 20px 55px;
  }
}
.top-service__photos {
  width: calc(53% - 100px);
  margin-left: 100px;
}
@media screen and (max-width: 1400px) {
  .top-service__photos {
    width: calc(48% - 50px);
    margin-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__photos {
    width: 100%;
    margin-left: 0;
  }
}

.top-service-title {
  color: #fff;
  font-size: 11.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .top-service-title {
    font-size: 9.1rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service-title {
    font-size: 8rem;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-title {
    font-size: min(20vw, 6rem);
    margin-bottom: 40px;
  }
}
.top-service-title span {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  display: block;
  font-weight: 400;
}

.top-service-block-wrap {
  display: flex;
  gap: 60px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1400px) {
  .top-service-block-wrap {
    gap: 40px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-block-wrap {
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
  }
}

.top-service-block {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 1400px) {
  .top-service-block {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-service-block {
    width: 100%;
  }
}
.top-service-block__title {
  padding-top: 1px;
  padding-left: 27px;
  position: relative;
  margin-bottom: 22px;
}
@media screen and (max-width: 1400px) {
  .top-service-block__title {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-block__title {
    padding: 4px 0 4px 18px;
  }
}
.top-service-block__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 74px;
  background-color: #85d8e4;
}
@media screen and (max-width: 599px) {
  .top-service-block__title::before {
    height: 100%;
  }
}
.autolease .top-service-block__title::before {
  background-color: #bcbdfd;
}
.top-service-block__title-main {
  font-size: 2.6rem;
  color: #fff;
  display: block;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-image: url(../img/common/icon_pc_white.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  padding: 0 0 0 55px;
  line-height: 1.3;
  background-position: left 0 top 2px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1400px) {
  .top-service-block__title-main {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-service-block__title-main {
    font-size: 2rem;
    background-size: 30px auto;
    padding: 0 0 0 40px;
  }
}
.autolease .top-service-block__title-main {
  background-image: url(../img/common/icon_car_white.svg);
  background-size: 36px auto;
  background-position: left 0 top 4px;
}
.top-service-block__title-sub {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
  display: block;
}
.top-service-block__list > li {
  border-bottom: 1px solid #80abd8;
}
.top-service-block__list > li > a {
  color: #fff;
  display: block;
  padding: 17px 35px 17px 0;
  line-height: 1.3;
  font-weight: 500;
  background-image: url(../img/common/arrow02.png);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: right 10px top 50%;
}
@media screen and (min-width: 1025px) {
  .top-service-block__list > li > a:hover {
    transform: translateX(4px);
    opacity: 0.7;
  }
}
@media screen and (max-width: 1400px) {
  .top-service-block__list > li > a {
    background-position: right 0 top 50%;
  }
}
@media screen and (max-width: 599px) {
  .top-service-block__list > li > a {
    font-weight: 400;
    background-size: 23px 23px;
  }
}
.autolease .top-service-block__list > li > a {
  background-image: url(../img/common/arrow03.png);
}

.top-service-links {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .top-service-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.top-service-links > li {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 599px) {
  .top-service-links > li {
    width: 100%;
  }
}
.top-service-links > li > a {
  background-color: #fff;
  display: block;
  text-align: center;
  border-radius: 100px;
  color: #0056b0;
  font-weight: 600;
  line-height: 1.4;
  padding: 28px;
}
@media screen and (min-width: 1025px) {
  .top-service-links > li > a:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}
@media screen and (max-width: 1400px) {
  .top-service-links > li > a {
    padding: 22px 28px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-links > li > a {
    padding: 20px 28px;
  }
}
.top-service-links > li > a.icon-faq {
  background-image: url(../img/common/arrow01.png), url(../img/common/icon_qa.svg);
  background-repeat: no-repeat;
  background-size: 25px 25px, 50px auto;
  background-position: right 12% top 50%, left 12% top 50%;
}
.top-service-links > li > a.icon-download {
  background-image: url(../img/common/arrow01.png), url(../img/common/icon_siryo.svg);
  background-repeat: no-repeat;
  background-size: 25px 25px, 26px auto;
  background-position: right 12% top 50%, left 12% top 50%;
}

.top-service-photo-list {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .top-service-photo-list {
    height: auto;
    display: flex;
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-photo-list {
    height: 120px;
  }
}
.top-service-photo-list > li {
  height: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  .top-service-photo-list > li {
    height: auto;
    width: 33.3333333333%;
  }
}
.top-service-photo-list > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-news {
  padding: 120px 50px 130px;
}
@media screen and (max-width: 1400px) {
  .top-news {
    padding: 90px 50px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news {
    padding: 75px 40px 85px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 50px 20px 50px;
  }
}
.top-news__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-news__inner {
    flex-wrap: wrap;
  }
}

.top-news-head {
  width: 28%;
}
@media screen and (max-width: 1400px) {
  .top-news-head {
    width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-head {
    width: 100%;
  }
}

.top-news-data {
  width: 72%;
}
@media screen and (max-width: 1400px) {
  .top-news-data {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1024px) {
  .top-news-data {
    width: 100%;
  }
}

.top-news-title {
  color: #0087e2;
  font-size: 11.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 60px;
  text-indent: -0.02em;
}
@media screen and (max-width: 1400px) {
  .top-news-title {
    font-size: 8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-title {
    font-size: min(20vw, 6rem);
  }
}
.top-news-title span {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  display: block;
  font-weight: 500;
  color: #004d9d;
  padding-left: 5px;
}

/*newsはPCとSPの2か所有*/
.top-news-btn > a {
  width: 100%;
  max-width: 240px;
  display: block;
  text-align: center;
  border: 2px solid #0087e2;
  border-radius: 200px;
  font-size: 1.6rem;
  color: #0087e2;
  font-weight: 500;
  padding: 17px;
  background-image: url(../img/common/arrow01.png);
  background-repeat: no-repeat;
  background-size: 21px 21px;
  background-position: right 20px top 50%;
}
@media screen and (min-width: 1025px) {
  .top-news-btn > a:hover {
    background-color: #0087e2;
    color: #fff;
    transform: translateY(4px);
  }
}
@media screen and (max-width: 1024px) {
  .top-news-btn > a {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .top-news-btn > a {
    margin: 0 auto;
    padding: 15px 17px;
  }
}

@media screen and (max-width: 1024px) {
  .top-news-list {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-list {
    margin-bottom: 30px;
  }
}

.top-news-item {
  border-bottom: 1px solid #cccccc;
}
.top-news-item > a {
  padding: 40px 80px 40px 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-news-item > a {
    padding: 30px 80px 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-item > a {
    padding: 30px 60px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item > a {
    flex-wrap: wrap;
    padding: 26px 33px 26px 0;
  }
}
.top-news-item > a::before {
  content: "";
  position: absolute;
  margin-top: -6px;
  top: 50%;
  right: 37px;
  width: 12px;
  height: 12px;
  background-color: #0087e2;
  border-radius: 50%;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px auto;
}
@media screen and (max-width: 1024px) {
  .top-news-item > a::before {
    right: 10px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-right: 0;
    background-image: url(../img/common/arrow04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item > a::before {
    width: 24px;
    height: 24px;
    right: 0;
    background-size: 6px auto;
  }
}
@media screen and (min-width: 1025px) {
  .top-news-item > a:hover {
    opacity: 0.8;
    transform: translateX(3px);
  }
  .top-news-item > a:hover::before {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-right: -9px;
    background-image: url(../img/common/arrow04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
  }
}
.top-news-item:first-child > a {
  padding-top: 20px;
}
.top-news-item:first-child > a::before {
  margin-top: -10px;
}
@media screen and (min-width: 1025px) {
  .top-news-item:first-child > a:hover::before {
    margin-top: -19px;
  }
}
.top-news-item__category {
  width: 220px;
  height: 60px;
  text-align: center;
  border-radius: 100px;
  background-color: #ebf5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
}
.top-news-item__category--import {
  background-color: #fff2f7;
}
@media screen and (max-width: 1400px) {
  .top-news-item__category {
    width: 170px;
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-item__category {
    font-size: 1.5rem;
    width: 150px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item__category {
    height: 30px;
    font-size: 1.3rem;
    width: 120px;
  }
}
.top-news-item__date {
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444444;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .top-news-item__date {
    height: 50px;
    width: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-item__date {
    width: 140px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item__date {
    width: auto;
    height: auto;
    font-size: 1.4rem;
    padding: 5px 0 0 12px;
  }
}
.top-news-item__text {
  width: calc(100% - 400px);
  color: #000;
  padding: 18px 0 0 0;
}
@media screen and (max-width: 1400px) {
  .top-news-item__text {
    width: calc(100% - 330px);
    padding: 13px 0 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-item__text {
    width: calc(100% - 290px);
  }
}
@media screen and (max-width: 599px) {
  .top-news-item__text {
    width: 100%;
    padding: 10px 0 0 0;
  }
}
.top-news-item .icon-new {
  color: #d92b3b;
  font-weight: 500;
  padding-left: 20px;
}

.top-voice {
  background-color: #ebf5fd;
  padding: 110px 50px 130px;
}
@media screen and (max-width: 1400px) {
  .top-voice {
    padding: 90px 50px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-voice {
    padding: 75px 40px 85px;
  }
}
@media screen and (max-width: 599px) {
  .top-voice {
    padding: 50px 20px 55px;
  }
}
.top-voice__inner {
  max-width: 1500px;
  margin: 0 auto;
}

.top-voice-head {
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-voice-head {
    flex-wrap: wrap;
  }
}

.top-voice-title {
  color: #0087e2;
  font-size: 11.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 70px;
  text-indent: -0.02em;
}
@media screen and (max-width: 1400px) {
  .top-voice-title {
    font-size: 9.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-voice-title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-voice-title {
    font-size: min(20vw, 6rem);
    margin-bottom: 25px;
  }
}
.top-voice-title span {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  display: block;
  font-weight: 500;
  color: #004d9d;
  padding-left: 5px;
}

.top-voice-lead {
  padding: 53px 0 0 140px;
}
@media screen and (max-width: 1400px) {
  .top-voice-lead {
    padding: 53px 0 0 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-voice-lead {
    padding: 40px 0 0 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-voice-lead {
    padding: 0;
    margin-bottom: 50px;
    line-height: 1.6;
  }
}

.top-voice-list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .top-voice-list {
    flex-wrap: wrap;
    gap: 50px;
  }
}

.top-voice-item {
  width: calc((100% - 60px) / 3);
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  padding: 65px 70px 55px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-voice-item {
    padding: 55px 40px 45px;
  }
}
@media screen and (max-width: 1024px) {
  .top-voice-item {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-voice-item {
    padding: 50px 25px 35px;
  }
}
.top-voice-item__number {
  width: 76px;
  height: 76px;
  background-color: #38a5ed;
  border-radius: 200px;
  position: absolute;
  top: -30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  padding-left: 2px;
}
@media screen and (max-width: 1400px) {
  .top-voice-item__number {
    width: 60px;
    height: 60px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-voice-item__number {
    left: 50%;
    margin-left: -30px;
  }
}
.top-voice-item__copy {
  font-size: 2.6rem;
  color: #0087e2;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 23px;
}
@media screen and (max-width: 1400px) {
  .top-voice-item__copy {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .top-voice-item__copy {
    font-size: 2.2rem;
  }
}
.top-voice-item__text {
  text-align: justify;
  color: #444444;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1400px) {
  .top-voice-item__text {
    line-height: 1.7;
  }
}
.top-voice-item__detail {
  display: flex;
  margin-top: 36px;
  border-top: 2px solid #dde7f0;
  padding-top: 34px;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .top-voice-item__detail {
    margin-top: 25px;
    padding-top: 25px;
  }
}
.top-voice-item__detail-img {
  padding: 0 36px 0 20px;
}
@media screen and (max-width: 1400px) {
  .top-voice-item__detail-img {
    padding: 0 20px 0 0;
  }
}
.top-voice-item__detail-img img {
  width: 100%;
  max-width: 130px;
}
@media screen and (max-width: 1400px) {
  .top-voice-item__detail-img img {
    max-width: 90px;
  }
}
.top-voice-item__detail-data {
  min-width: 140px;
}
@media screen and (max-width: 1024px) {
  .top-voice-item__detail-data {
    margin-top: 10px;
  }
}
.top-voice-item__detail-data > div {
  display: flex;
  margin-bottom: 10px;
}
.top-voice-item__detail-data > div > dt {
  width: 60px;
  background-color: #0150a2;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 200px;
  padding: 2px;
}
.top-voice-item__detail-data > div > dd {
  font-size: 1.5rem;
  padding-left: 10px;
}

.top-recruit {
  background: linear-gradient(115deg, #0090ec 0%, #0090ec 66.5%, #1e76d1 66.5%, #1e76d1 100%);
  display: flex;
  padding-bottom: 130px;
}
@media screen and (max-width: 1400px) {
  .top-recruit {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit {
    flex-wrap: wrap;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit {
    padding-bottom: 60px;
  }
}
.top-recruit__photo {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .top-recruit__photo {
    width: 80%;
    margin-left: 20%;
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__photo {
    width: 100%;
    margin-left: 0;
    height: 230px;
  }
}
.top-recruit__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-recruit__data {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 50px 0;
}
@media screen and (max-width: 1400px) {
  .top-recruit__data {
    width: 50%;
    padding: 90px 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__data {
    width: 100%;
    padding: 50px 40px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__data {
    padding: 40px 20px 0;
  }
}

.top-recruit-title {
  color: #ffffff;
  font-size: 11.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 55px;
  text-indent: -0.02em;
}
@media screen and (max-width: 1400px) {
  .top-recruit-title {
    font-size: 9.1rem;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-title {
    font-size: 8rem;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-title {
    font-size: min(20vw, 6rem);
    margin-bottom: 30px;
  }
}
.top-recruit-title span {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  display: block;
  font-weight: 500;
  color: #ffffff;
  padding-left: 5px;
}

.top-recruit-box {
  width: 100%;
  max-width: 440px;
}
@media screen and (max-width: 1024px) {
  .top-recruit-box {
    max-width: 100%;
  }
}

.top-recruit-text {
  color: #fff;
  text-align: justify;
  line-height: 1.9;
  letter-spacing: 0.09em;
  margin-bottom: 50px;
}
@media screen and (max-width: 1400px) {
  .top-recruit-text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-text {
    line-height: 1.8;
    letter-spacing: 0;
    margin-bottom: 35px;
  }
}

.top-recruit-btn > a {
  width: 100%;
  max-width: 240px;
  margin: 0 0 0 auto;
  display: block;
  text-align: center;
  border-radius: 200px;
  font-size: 1.6rem;
  color: #0087e2;
  font-weight: 500;
  padding: 17px;
  background-image: url(../img/common/arrow01.png);
  background-repeat: no-repeat;
  background-size: 21px 21px;
  background-position: right 20px top 50%;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .top-recruit-btn > a:hover {
    opacity: 0.8;
    transform: translateY(4px);
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-btn > a {
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-btn > a {
    padding: 15px 17px;
  }
}

/*--------------------------------------------------------
service
----------------------------------------------------------*/
.category-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.category-menu__box {
  width: calc((99.9% - 20px) / 2);
  background-color: #f3f3f3;
  padding: 0 30px 30px;
}
@media screen and (max-width: 1200px) {
  .category-menu__box {
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .category-menu__box {
    width: 100%;
  }
}
.category-menu__box__tit {
  position: relative;
  font-size: 2rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .category-menu__box__tit {
    font-size: 1.8rem;
    padding-top: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .category-menu__box__tit {
    font-size: 1.7rem;
    font-weight: bold;
  }
}
.category-menu__box__tit::before {
  position: absolute;
  content: "";
  top: 0;
  left: calc((100% - 160px) / 2);
  width: 160px;
  height: 3px;
}
.category-menu__box__nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .category-menu__box__nav__list {
    gap: 15px;
  }
}
.category-menu__box__nav__list > li {
  width: calc((99.9% - 20px) / 2);
}
@media screen and (max-width: 1024px) {
  .category-menu__box__nav__list > li {
    width: calc((99.9% - 15px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .category-menu__box__nav__list > li {
    width: 100%;
  }
}
.category-menu__box__nav__list__btn02 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-menu__box--type01 .category-menu__box__tit::before {
  background-color: #50b79e;
}
.category-menu__box--type02 .category-menu__box__tit::before {
  background-color: #b886cc;
}

.left-icon-box {
  display: flex;
  flex-wrap: wrap;
}
.left-icon-box__icon {
  width: 140px;
}
@media screen and (max-width: 1024px) {
  .left-icon-box__icon {
    width: 120px;
  }
}
@media screen and (max-width: 834px) {
  .left-icon-box__icon {
    width: 140px;
  }
}
@media screen and (max-width: 599px) {
  .left-icon-box__icon {
    width: 100px;
  }
}
@media screen and (max-width: 320px) {
  .left-icon-box__icon {
    width: 80px;
  }
}
.left-icon-box__icon img {
  width: 100%;
  max-width: 140px;
}
.left-icon-box__body {
  width: calc(99.9% - 140px);
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .left-icon-box__body {
    width: calc(99.9% - 120px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .left-icon-box__body {
    width: calc(99.9% - 140px);
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .left-icon-box__body {
    width: calc(99.9% - 100px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 320px) {
  .left-icon-box__body {
    width: calc(99.9% - 80px);
    padding-left: 20px;
  }
}
.left-icon-box__body__read {
  color: #004d9d;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.65;
  margin-bottom: 18px;
}
@media screen and (max-width: 599px) {
  .left-icon-box__body__read {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}
.left-icon-box__body__ul-list > li {
  position: relative;
  font-size: 1.5rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.7;
  padding-left: 25px;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .left-icon-box__body__ul-list > li {
    font-size: 1.4rem;
    padding-left: 20px;
  }
}
.left-icon-box__body__ul-list > li::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 12px;
  height: 3px;
  background-color: #0087e2;
}
@media screen and (max-width: 599px) {
  .left-icon-box__body__ul-list > li::before {
    top: 9px;
    width: 10px;
    height: 2px;
  }
}
.left-icon-box__body__ul-list > li:last-child {
  margin-bottom: 0;
}
.left-icon-box__body__ul-list__note {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .left-icon-box__body__ul-list__note {
    font-size: 1.3rem;
  }
}
.left-icon-box--green .left-icon-box__body__read {
  color: #2d855b;
}
.left-icon-box--green .left-icon-box__body__ul-list > li::before {
  background-color: #3b9268;
}

.lease-about__box01__img {
  text-align: center;
}
.lease-about__box01__img img {
  width: 100%;
  max-width: 780px;
}
.lease-about__box03__advantage {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
}
@media screen and (max-width: 1300px) {
  .lease-about__box03__advantage {
    gap: 60px 0;
  }
}
@media screen and (max-width: 1024px) {
  .lease-about__box03__advantage {
    gap: 60px 40px;
  }
}
@media screen and (max-width: 834px) {
  .lease-about__box03__advantage {
    gap: 50px 0;
  }
}
@media screen and (max-width: 599px) {
  .lease-about__box03__advantage {
    gap: 40px 0;
  }
}
.lease-about__box03__advantage__item {
  width: calc((99.9% - 40px) / 2);
}
@media screen and (max-width: 1300px) {
  .lease-about__box03__advantage__item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .lease-about__box03__advantage__item {
    width: calc((99.9% - 40px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .lease-about__box03__advantage__item {
    width: 100%;
  }
}
.lease-about__box04__table thead tr th:first-child {
  width: 24.5%;
}
.lease-about__box04__note {
  color: #333333;
  font-size: 1.5rem;
  margin-top: 1em;
}
@media screen and (max-width: 599px) {
  .lease-about__box04__note {
    font-size: 1.4rem;
  }
}
.lease-about__box05__flow {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
}
@media screen and (max-width: 1200px) {
  .lease-about__box05__flow {
    gap: 40px 0;
  }
}
@media screen and (max-width: 1024px) {
  .lease-about__box05__flow {
    gap: 50px 0;
  }
}
@media screen and (max-width: 834px) {
  .lease-about__box05__flow {
    gap: 40px 0;
  }
}
@media screen and (max-width: 599px) {
  .lease-about__box05__flow {
    gap: 30px 0;
  }
}
.lease-about__box05__flow__item {
  position: relative;
  width: 100%;
}
.lease-about__box05__flow__item::after {
  position: absolute;
  content: "";
  left: 60px;
  bottom: -40px;
  border-width: 40px 40px 0;
  border-style: solid;
  border-color: #f9ebfe transparent transparent transparent;
}
@media screen and (max-width: 1200px) {
  .lease-about__box05__flow__item::after {
    left: 55px;
    bottom: -30px;
    border-width: 30px 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .lease-about__box05__flow__item::after {
    left: 60px;
    bottom: -40px;
    border-width: 40px 40px 0;
  }
}
@media screen and (max-width: 834px) {
  .lease-about__box05__flow__item::after {
    left: 54px;
    bottom: -30px;
    border-width: 30px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .lease-about__box05__flow__item::after {
    left: calc((100% - 40px) / 2);
    bottom: -20px;
    border-width: 20px 20px 0;
  }
}
.lease-about__box05__flow__item:last-child::after {
  display: none;
}

.lease-about-flow-box {
  display: flex;
  flex-wrap: wrap;
  border: 10px solid #f9ebfe;
  border-radius: 8px;
}
@media screen and (max-width: 834px) {
  .lease-about-flow-box {
    border: 8px solid #f9ebfe;
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .lease-about-flow-box {
    border: 6px solid #f9ebfe;
  }
}
.lease-about-flow-box__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  background-color: #f9ebfe;
  padding-right: 10px;
}
@media screen and (max-width: 1200px) {
  .lease-about-flow-box__head {
    width: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .lease-about-flow-box__head {
    width: 190px;
  }
}
@media screen and (max-width: 834px) {
  .lease-about-flow-box__head {
    width: 160px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 599px) {
  .lease-about-flow-box__head {
    width: 100%;
    padding: 7px 5px 12px;
  }
}
.lease-about-flow-box__head__step {
  color: #b886cc;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 3px;
}
@media screen and (max-width: 834px) {
  .lease-about-flow-box__head__step {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .lease-about-flow-box__head__step {
    font-size: 1.4rem;
  }
}
.lease-about-flow-box__head__num {
  width: 56px;
  height: 56px;
  color: #ffffff;
  font-size: 2.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 56px;
  text-align: center;
  background-color: #b886cc;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .lease-about-flow-box__head__num {
    width: 50px;
    height: 50px;
    font-size: 2.2rem;
    line-height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .lease-about-flow-box__head__num {
    width: 44px;
    height: 44px;
    font-size: 2rem;
    line-height: 44px;
  }
}
.lease-about-flow-box__body {
  width: calc(99.9% - 190px);
  padding: 27px 20px;
}
@media screen and (max-width: 1200px) {
  .lease-about-flow-box__body {
    width: calc(99.9% - 160px);
  }
}
@media screen and (max-width: 1024px) {
  .lease-about-flow-box__body {
    width: calc(99.9% - 190px);
  }
}
@media screen and (max-width: 834px) {
  .lease-about-flow-box__body {
    width: calc(99.9% - 160px);
  }
}
@media screen and (max-width: 599px) {
  .lease-about-flow-box__body {
    width: 100%;
  }
}
.lease-about-flow-box__body__title {
  color: #9c6ab0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .lease-about-flow-box__body__title {
    font-size: 1.8rem;
  }
}
.lease-about-flow-box__body__text {
  color: #444444;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .lease-about-flow-box__body__text {
    font-size: 1.4rem;
  }
}

.lease-account__box02__img img {
  width: 100%;
}
.lease-account__box03__img img {
  width: 100%;
}

.notes-bg-box {
  background-color: #f3f3f3;
  padding: 40px;
}
@media screen and (max-width: 834px) {
  .notes-bg-box {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .notes-bg-box {
    padding: 20px;
  }
}
.notes-bg-box__tit {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .notes-bg-box__tit {
    font-size: 1.4rem;
  }
}
.notes-bg-box__text {
  color: #444444;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .notes-bg-box__text {
    font-size: 1.4rem;
  }
}
.notes-bg-box__text--pl01 {
  padding-left: 1.2em;
}
.notes-bg-box__ol-list {
  counter-reset: number 0;
}
.notes-bg-box__ol-list > li {
  position: relative;
  color: #444444;
  font-size: 1.5rem;
  line-height: 1.7;
  padding-left: 1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .notes-bg-box__ol-list > li {
    font-size: 1.4rem;
  }
}
.notes-bg-box__ol-list > li::before {
  content: counter(number) ".";
  counter-increment: number 1;
  position: absolute;
  top: 1px;
  left: 0;
  color: #444444;
  font-size: 1.5rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .notes-bg-box__ol-list > li::before {
    font-size: 1.4rem;
  }
}
.notes-bg-box__ol-list > li:last-child {
  margin-bottom: 0;
}

.autolease-about__box01__about {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
}
@media screen and (max-width: 1300px) {
  .autolease-about__box01__about {
    gap: 60px 0;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-about__box01__about {
    gap: 60px 40px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-about__box01__about {
    gap: 50px 0;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about__box01__about {
    gap: 40px 0;
  }
}
.autolease-about__box01__about__item {
  width: calc((99.9% - 40px) / 2);
}
@media screen and (max-width: 1300px) {
  .autolease-about__box01__about__item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-about__box01__about__item {
    width: calc((99.9% - 40px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .autolease-about__box01__about__item {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .autolease-about__box02__img {
    text-align: center;
  }
}
.autolease-about__box02__img img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  .autolease-about__box02__img img {
    max-width: 400px;
  }
}
.autolease-about__box03__advantage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 25px;
}
@media screen and (max-width: 1300px) {
  .autolease-about__box03__advantage {
    gap: 0 20px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-about__box03__advantage {
    gap: 10px 30px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about__box03__advantage {
    gap: 20px 0;
  }
}
.autolease-about__box03__advantage__item {
  width: 350px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1300px) {
  .autolease-about__box03__advantage__item {
    width: 315px;
  }
}
@media screen and (max-width: 1100px) {
  .autolease-about__box03__advantage__item {
    width: 280px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about__box03__advantage__item {
    width: 100%;
    aspect-ratio: auto;
  }
}
.autolease-about__box03__btn-box {
  margin-top: 50px;
}
@media screen and (max-width: 599px) {
  .autolease-about__box03__btn-box {
    margin-top: 40px;
  }
}
.autolease-about__box03__btn-box__btn {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.autolease-about__box04__img img {
  width: 100%;
}
.autolease-about__box05__flow {
  display: flex;
  flex-wrap: wrap;
}
.autolease-about__box05__flow__item {
  position: relative;
  width: 100%;
}
.autolease-about__box05__flow__item::after {
  position: absolute;
  content: "";
  left: calc((100% - 70px) / 2);
  bottom: -50px;
  border-width: 35px 35px 0;
  border-style: solid;
  border-color: #b886cc transparent transparent transparent;
}
@media screen and (max-width: 1024px) {
  .autolease-about__box05__flow__item::after {
    left: calc((100% - 60px) / 2);
    bottom: -45px;
    border-width: 30px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about__box05__flow__item::after {
    left: calc((100% - 40px) / 2);
    bottom: -35px;
    border-width: 20px 20px 0;
  }
}
.autolease-about__box05__flow__item:nth-child(1) {
  margin-bottom: 65px;
}
@media screen and (max-width: 1024px) {
  .autolease-about__box05__flow__item:nth-child(1) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about__box05__flow__item:nth-child(1) {
    margin-bottom: 50px;
  }
}
.autolease-about__box05__flow__item:nth-child(2) {
  margin-bottom: 85px;
}
@media screen and (max-width: 1024px) {
  .autolease-about__box05__flow__item:nth-child(2) {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about__box05__flow__item:nth-child(2) {
    margin-bottom: 70px;
  }
}
.autolease-about__box05__flow__item:last-child::after {
  display: none;
}
@media screen and (max-width: 834px) {
  .autolease-about__box05__img {
    text-align: center;
  }
}
.autolease-about__box05__img img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  .autolease-about__box05__img img {
    max-width: 580px;
  }
}

.circle-border-box {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border: 40px solid #dbf6e9;
  border-radius: 50%;
  padding: 40px 40px;
}
@media screen and (max-width: 1300px) {
  .circle-border-box {
    border: 36px solid #dbf6e9;
    padding: 36px 36px;
  }
}
@media screen and (max-width: 1100px) {
  .circle-border-box {
    border: 32px solid #dbf6e9;
    padding: 32px 32px;
  }
}
@media screen and (max-width: 599px) {
  .circle-border-box {
    display: flex;
    border: 24px solid #dbf6e9;
    border-radius: 0;
    padding: 24px 24px;
  }
}
.circle-border-box__head {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .circle-border-box__head {
    width: 48px;
    border-right: 1px solid #bfedd7;
  }
}
.circle-border-box__head__title {
  display: inline-block;
  position: relative;
  color: #2d855b;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  border-bottom: 1px solid #bfedd7;
  padding: 0 15px 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .circle-border-box__head__title {
    border-bottom: none;
    padding: 5px 15px 5px 0;
  }
}
.circle-border-box__head__title::before {
  position: absolute;
  content: "";
  right: 27%;
  bottom: -1px;
  width: 46%;
  height: 1px;
  background-color: #2d855b;
}
@media screen and (max-width: 599px) {
  .circle-border-box__head__title::before {
    right: -1px;
    bottom: 27%;
    width: 1px;
    height: 46%;
  }
}
.circle-border-box__head__title__merit {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1300px) {
  .circle-border-box__head__title__merit {
    font-size: 1.44rem;
  }
}
@media screen and (max-width: 1100px) {
  .circle-border-box__head__title__merit {
    font-size: 1.28rem;
  }
}
.circle-border-box__head__title__num {
  display: inline-block;
  font-size: 3rem;
  font-weight: 400;
  margin-left: 0.1em;
}
@media screen and (max-width: 1300px) {
  .circle-border-box__head__title__num {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 1100px) {
  .circle-border-box__head__title__num {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .circle-border-box__head__title__num {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .circle-border-box__body {
    width: calc(99.9% - 48px);
    padding: 0 0 0 15px;
  }
}
.circle-border-box__body__text {
  color: #444444;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .circle-border-box__body__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1100px) {
  .circle-border-box__body__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .circle-border-box__body__text {
    text-align: left;
  }
}

.autolease-about-flow-read {
  background-color: #f9ebfe;
  padding: 17px 40px;
}
@media screen and (max-width: 1024px) {
  .autolease-about-flow-read {
    padding: 17px 30px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about-flow-read {
    padding: 17px 20px;
  }
}
.autolease-about-flow-read__text {
  color: #9c6ab0;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-read__text {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about-flow-read__text {
    font-size: 1.7rem;
  }
}

.autolease-about-flow-box {
  display: flex;
  flex-wrap: wrap;
  border: 10px solid #f9ebfe;
  border-radius: 8px;
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-box {
    border: 8px solid #f9ebfe;
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about-flow-box {
    border: 6px solid #f9ebfe;
  }
}
.autolease-about-flow-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  background-color: #f9ebfe;
  padding-right: 10px;
}
@media screen and (max-width: 1200px) {
  .autolease-about-flow-box__head {
    width: 156px;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-about-flow-box__head {
    width: 176px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-box__head {
    width: 156px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about-flow-box__head {
    width: 100%;
    padding: 7px 5px 12px;
  }
}
.autolease-about-flow-box__head__worry {
  color: #b886cc;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin-right: 16px;
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-box__head__worry {
    margin-right: 14px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about-flow-box__head__worry {
    font-size: 1.6rem;
    margin-right: 12px;
  }
}
.autolease-about-flow-box__head__num {
  width: 56px;
  height: 56px;
  color: #ffffff;
  font-size: 2.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 56px;
  text-align: center;
  background-color: #b886cc;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-box__head__num {
    width: 50px;
    height: 50px;
    font-size: 2.2rem;
    line-height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about-flow-box__head__num {
    width: 44px;
    height: 44px;
    font-size: 2rem;
    line-height: 44px;
  }
}
.autolease-about-flow-box__body {
  width: calc(99.9% - 176px);
  background-image: url(../img/service/autolease_about/icon_check.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: auto 44px;
  padding: 27px 81px 27px 40px;
}
@media screen and (max-width: 1200px) {
  .autolease-about-flow-box__body {
    width: calc(99.9% - 156px);
    background-position: right 15px center;
    background-size: auto 40px;
    padding: 27px 67px 27px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-about-flow-box__body {
    width: calc(99.9% - 176px);
  }
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-box__body {
    width: calc(99.9% - 156px);
    background-size: auto 36px;
    padding: 27px 62px 27px 20px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-about-flow-box__body {
    width: 100%;
    background-position: center top 10px;
    background-size: auto 32px;
    padding: 52px 20px 22px 20px;
  }
}
.autolease-about-flow-box__body__text {
  color: #444444;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-box__body__text {
    font-size: 1.6rem;
  }
}

.autolease-about-flow-marker {
  color: #444444;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-marker {
    font-size: 1.6rem;
  }
}
.autolease-about-flow-marker__line {
  text-decoration: underline;
  text-decoration-thickness: 16px;
  text-decoration-color: #fdf871;
  text-underline-offset: -4px;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-marker__line {
    text-decoration-thickness: 12px;
  }
}
.autolease-about-flow-marker__fz {
  color: #9c6ab0;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .autolease-about-flow-marker__fz {
    font-size: 2.6rem;
  }
}

.autolease-others__box01__text {
  color: #004d9d;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .autolease-others__box01__text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others__box01__text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others__box01__text {
    font-size: 2rem;
    margin-bottom: 35px;
  }
}
.autolease-others__box01__anker {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1200px) {
  .autolease-others__box01__anker {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others__box01__anker {
    gap: 25px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others__box01__anker {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others__box01__anker {
    gap: 10px;
  }
}
.autolease-others__box01__anker__btn-box {
  width: calc((99.9% - 50px) / 3);
}
@media screen and (max-width: 1200px) {
  .autolease-others__box01__anker__btn-box {
    width: calc((99.9% - 40px) / 3);
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others__box01__anker__btn-box {
    width: calc((99.9% - 50px) / 3);
  }
}
@media screen and (max-width: 834px) {
  .autolease-others__box01__anker__btn-box {
    width: calc((99.9% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .autolease-others__box01__anker__btn-box {
    width: calc((99.9% - 20px) / 3);
  }
}
.autolease-others__box01__anker__btn-box__btn {
  display: block;
}
.autolease-others__box01__anker__btn-box__btn img {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .autolease-others__box01__anker__btn-box__btn:hover {
    transform: translateY(4px);
  }
}
.autolease-others-intro {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.autolease-others-intro__head {
  width: 64%;
  padding-left: 5.9%;
}
@media screen and (max-width: 1200px) {
  .autolease-others-intro__head {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others-intro__head {
    width: 64%;
    padding-left: 5.9%;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-intro__head {
    width: 100%;
    padding-left: 0;
  }
}
.autolease-others-intro__head__catch {
  color: #1f63a9;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .autolease-others-intro__head__catch {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-intro__head__catch {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-intro__head__catch {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.autolease-others-intro__body {
  width: 35.9%;
}
@media screen and (max-width: 1200px) {
  .autolease-others-intro__body {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others-intro__body {
    width: 35.9%;
    margin-top: 0;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-intro__body {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
.autolease-others-intro__body__img img {
  width: 100%;
  max-width: 394px;
}
@media screen and (max-width: 599px) {
  .autolease-others-intro__body__img img {
    width: 80%;
  }
}
.autolease-others-intro--purple .autolease-others-intro__head__catch {
  color: #9557ae;
}
.autolease-others-intro--green .autolease-others-intro__head__catch {
  color: #298770;
}
.autolease-others-intro--box03 {
  align-items: center;
}

.autolease-others-point__box {
  display: flex;
  flex-wrap: wrap;
  border: 10px solid #e5f3fb;
  border-radius: 8px;
}
@media screen and (max-width: 834px) {
  .autolease-others-point__box {
    border: 8px solid #e5f3fb;
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-point__box {
    border: 6px solid #e5f3fb;
  }
}
.autolease-others-point__box__head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 290px;
  color: #1f63a9;
  font-weight: 600;
  line-height: 1.3;
  background-color: #e5f3fb;
  padding-right: 10px;
}
@media screen and (max-width: 1200px) {
  .autolease-others-point__box__head {
    width: 240px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-point__box__head {
    width: 190px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-point__box__head {
    width: 100%;
    padding: 7px 5px 12px;
  }
}
.autolease-others-point__box__head__text01 {
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  .autolease-others-point__box__head__text01 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-point__box__head__text01 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-point__box__head__text01 {
    font-size: 1.3rem;
  }
}
.autolease-others-point__box__head__text02 {
  font-size: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .autolease-others-point__box__head__text02 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-point__box__head__text02 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-point__box__head__text02 {
    font-size: 1.8rem;
  }
}
.autolease-others-point__box__body {
  width: calc(99.9% - 290px);
  padding: 15px 30px;
}
@media screen and (max-width: 1200px) {
  .autolease-others-point__box__body {
    width: calc(99.9% - 240px);
    padding: 15px 25px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-point__box__body {
    width: calc(99.9% - 190px);
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-point__box__body {
    width: 100%;
    padding: 15px 20px;
  }
}
.autolease-others-point__box__body__text {
  color: #444444;
  font-weight: 500;
}
.autolease-others-point__box__body__ul-list > li {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  padding-left: 16px;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .autolease-others-point__box__body__ul-list > li {
    font-size: 1.3rem;
  }
}
.autolease-others-point__box__body__ul-list > li::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #51a5dd;
}
.autolease-others-point__box__body__ul-list > li:last-child {
  margin-bottom: 0 !important;
}
.autolease-others-point__box__body__note {
  font-size: 1.4rem;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 599px) {
  .autolease-others-point__box__body__note {
    font-size: 1.2rem;
  }
}
.autolease-others-point--purple .autolease-others-point__box {
  border: 10px solid #f9ebfe;
}
@media screen and (max-width: 834px) {
  .autolease-others-point--purple .autolease-others-point__box {
    border: 8px solid #f9ebfe;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-point--purple .autolease-others-point__box {
    border: 6px solid #f9ebfe;
  }
}
.autolease-others-point--purple .autolease-others-point__box .autolease-others-point__box__head {
  color: #9557ae;
  background-color: #f9ebfe;
}
.autolease-others-point--purple .autolease-others-point__box .autolease-others-point__box__body__ul-list > li::before {
  background-color: #b886cc;
}
.autolease-others-point--green .autolease-others-point__box {
  border: 10px solid #dbf6e9;
}
@media screen and (max-width: 834px) {
  .autolease-others-point--green .autolease-others-point__box {
    border: 8px solid #dbf6e9;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-point--green .autolease-others-point__box {
    border: 6px solid #dbf6e9;
  }
}
.autolease-others-point--green .autolease-others-point__box .autolease-others-point__box__head {
  color: #298770;
  background-color: #dbf6e9;
}
.autolease-others-point--green .autolease-others-point__box .autolease-others-point__box__body__ul-list > li::before {
  background-color: #62c7af;
}
.autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__head {
  width: 290px;
  padding-right: 10px;
}
@media screen and (max-width: 1400px) {
  .autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__head {
    width: 240px;
  }
}
@media screen and (max-width: 1200px) {
  .autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__head {
    width: 100%;
    padding: 7px 5px 12px;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__head {
    width: 240px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__head {
    width: 100%;
    padding: 7px 5px 12px;
  }
}
.autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  width: calc(99.9% - 290px);
  padding: 15px 30px;
}
@media screen and (max-width: 1400px) {
  .autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__body {
    width: calc(99.9% - 240px);
    padding: 15px 25px;
  }
}
@media screen and (max-width: 1200px) {
  .autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__body {
    width: 100%;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__body {
    width: calc(99.9% - 240px);
    padding: 15px 25px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-point--box04 .autolease-others-point__box .autolease-others-point__box__body {
    width: 100%;
    padding: 15px 20px;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box01 .autolease-others-point__box__body__img-inr {
  width: 62.8%;
  padding-right: 8%;
}
@media screen and (max-width: 599px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box01 .autolease-others-point__box__body__img-inr {
    width: 100%;
    padding-right: 0;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box01 .autolease-others-point__box__body__img-box {
  width: 37.1%;
}
@media screen and (max-width: 599px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box01 .autolease-others-point__box__body__img-box {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box01 .autolease-others-point__box__body__img-box img {
  width: 100%;
  max-width: 270px;
}
@media screen and (min-width: 1025px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box02 .autolease-others-point__box__body {
    align-items: center;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box02 .autolease-others-point__box__body__img-inr {
  width: 87.1%;
  padding-right: 8%;
}
@media screen and (max-width: 599px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box02 .autolease-others-point__box__body__img-inr {
    width: 100%;
    padding-right: 0;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box02 .autolease-others-point__box__body__img-box {
  width: 12.8%;
}
@media screen and (max-width: 599px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box02 .autolease-others-point__box__body__img-box {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box02 .autolease-others-point__box__body__img-box img {
  width: 100%;
  max-width: 93px;
}
.autolease-others-point--box04 .autolease-others-point__box--img-box03 .autolease-others-point__box__body__img-inr {
  width: 82.4%;
  padding-right: 8%;
}
@media screen and (max-width: 599px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box03 .autolease-others-point__box__body__img-inr {
    width: 100%;
    padding-right: 0;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box03 .autolease-others-point__box__body__img-box {
  width: 17.5%;
}
@media screen and (max-width: 599px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box03 .autolease-others-point__box__body__img-box {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box03 .autolease-others-point__box__body__img-box img {
  width: 100%;
  max-width: 127px;
}
.autolease-others-point--box04 .autolease-others-point__box--img-box04 .autolease-others-point__box__body__img-inr {
  width: 80.6%;
  padding-right: 8%;
}
@media screen and (max-width: 599px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box04 .autolease-others-point__box__body__img-inr {
    width: 100%;
    padding-right: 0;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box04 .autolease-others-point__box__body__img-box {
  width: 19.3%;
}
@media screen and (max-width: 599px) {
  .autolease-others-point--box04 .autolease-others-point__box--img-box04 .autolease-others-point__box__body__img-box {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
.autolease-others-point--box04 .autolease-others-point__box--img-box04 .autolease-others-point__box__body__img-box img {
  width: 100%;
  max-width: 140px;
}

.autolease-others-note {
  display: flex;
}
.autolease-others-note__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  background-color: #51a5dd;
  padding: 14px 5px;
}
@media screen and (max-width: 1200px) {
  .autolease-others-note__head {
    width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others-note__head {
    width: 120px;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-note__head {
    width: 90px;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-note__head {
    width: 70px;
  }
}
.autolease-others-note__head__title {
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .autolease-others-note__head__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others-note__head__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-note__head__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-note__head__title {
    font-size: 1.4rem;
  }
}
.autolease-others-note__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(99.9% - 120px);
  padding-left: 20px;
}
@media screen and (max-width: 1200px) {
  .autolease-others-note__body {
    width: calc(99.9% - 100px);
  }
}
@media screen and (max-width: 1024px) {
  .autolease-others-note__body {
    width: calc(99.9% - 120px);
  }
}
@media screen and (max-width: 834px) {
  .autolease-others-note__body {
    width: calc(99.9% - 90px);
  }
}
@media screen and (max-width: 599px) {
  .autolease-others-note__body {
    width: calc(99.9% - 70px);
  }
}
.autolease-others-note__body__list > li {
  position: relative;
  color: #444444;
  font-size: 1.4rem;
  line-height: 1.5;
  padding-left: 10px;
  margin-bottom: 5px;
}
.autolease-others-note__body__list > li::before {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #51a5dd;
  border-radius: 50%;
}
.autolease-others-note__body__list > li:last-child {
  margin-bottom: 0 !important;
}
.autolease-others-note--purple .autolease-others-note__head {
  background-color: #b886cc;
}
.autolease-others-note--purple .autolease-others-note__body__list > li::before {
  background-color: #b886cc;
}
.autolease-others-note--green .autolease-others-note__head {
  background-color: #62c7af;
}
.autolease-others-note--green .autolease-others-note__body__list > li::before {
  background-color: #62c7af;
}

.service-top-lead {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  .service-top-lead {
    margin-bottom: 40px;
  }
}
.service-top-lead__copy {
  font-size: 2.5rem;
  color: #004d9d;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 38px;
}
@media screen and (max-width: 599px) {
  .service-top-lead__copy {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}
.service-top-lead__text {
  font-size: 1.8rem;
  color: #444;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 599px) {
  .service-top-lead__text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.service-top-sec-title {
  margin-bottom: 45px;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 500;
  color: #333;
  text-align: center;
  border-top: 3px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 29px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .service-top-sec-title {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .service-top-sec-title {
    font-size: 2rem;
    padding: 24px 0;
    margin-bottom: 20px;
  }
}
.service-top-sec-title::before {
  content: "";
  margin-left: -100px;
  position: absolute;
  top: -3px;
  left: 50%;
  width: 200px;
  height: 3px;
  background-color: #50b79e;
}
.service-top-sec-title > span {
  background-image: url(../img/common/icon_pc_green.svg);
  background-repeat: no-repeat;
  padding: 5px 20px 5px 65px;
  background-size: 50px auto;
  background-position: left 0 top 4px;
}
@media screen and (max-width: 599px) {
  .service-top-sec-title > span {
    padding: 5px 15px 5px 50px;
    background-size: 40px auto;
  }
}
.service-top-sec-title--auto::before {
  background-color: #b886cc;
}
.service-top-sec-title--auto > span {
  background-image: url(../img/common/icon_car_purple.svg);
  background-size: 44px auto;
  padding: 5px 20px 5px 60px;
  background-position: left 0 top 6px;
}
@media screen and (max-width: 599px) {
  .service-top-sec-title--auto > span {
    padding: 5px 20px 5px 45px;
    background-size: 35px auto;
  }
}

.service-top-link {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 599px) {
  .service-top-link {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.service-top-link-item {
  width: calc((100% - 25px) / 2);
}
@media screen and (max-width: 599px) {
  .service-top-link-item {
    width: 100%;
  }
}
.service-top-link-item > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.service-top-link-item > a::before {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../img/common/arrow09.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 2;
}
.autolease .service-top-link-item > a::before {
  background-image: url(../img/common/arrow10.png);
}
@media screen and (max-width: 1024px) {
  .service-top-link-item > a::before {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .service-top-link-item > a:hover img {
    transform: scale(1.1);
  }
}
.service-top-link-item__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 2rem;
  color: #fff;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(0, 67, 51, 0.8);
}
.autolease .service-top-link-item__text {
  text-shadow: 0 0 10px rgba(61, 28, 74, 0.8);
}
@media screen and (max-width: 599px) {
  .service-top-link-item__text {
    font-size: 1.8rem;
  }
}
.service-top-link-item__text::before {
  content: "";
  width: 170px;
  height: 170px;
  border-radius: 300px;
  border: 30px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -85px;
  margin-left: -85px;
}
@media screen and (max-width: 1024px) {
  .service-top-link-item__text::before {
    margin-top: -75px;
    margin-left: -75px;
    width: 150px;
    height: 150px;
    border: 20px solid rgba(255, 255, 255, 0.5);
  }
}
.service-top-link-item__photo {
  position: relative;
  overflow: hidden;
}
.service-top-link-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.service-top-link-item__photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 71, 54, 0.4);
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.autolease .service-top-link-item__photo::after {
  background-color: rgba(69, 36, 82, 0.4);
}
.service-top-link-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/*--------------------------------------------------------
policy
----------------------------------------------------------*/
.policy-common__contact {
  background-color: #ebf5fd;
  border-radius: 8px;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .policy-common__contact {
    padding: 15px;
  }
}
@media screen and (max-width: 599px) {
  .policy-common__contact {
    padding: 10px;
    border-radius: 6px;
  }
}
.policy-common__contact__inner {
  background-color: #fff;
  border-radius: 6px;
  padding: 25px 25px 23px 55px;
}
@media screen and (max-width: 1024px) {
  .policy-common__contact__inner {
    padding: 20px 20px 18px 45px;
  }
}
@media screen and (max-width: 599px) {
  .policy-common__contact__inner {
    border-radius: 4px;
    padding: 15px 15px 15px 35px;
  }
}
.policy-common__contact__inner__title {
  position: relative;
  margin-bottom: 5px;
  color: #004d9d;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .policy-common__contact__inner__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.policy-common__contact__inner__title::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -26px;
  width: 11px;
  height: 4px;
  background-color: #0087e2;
}
@media screen and (max-width: 599px) {
  .policy-common__contact__inner__title::before {
    top: 9px;
    left: -20px;
  }
}
.policy-common__contact__inner__text {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .policy-common__contact__inner__text {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.policy-common__contact--col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .policy-common__contact--col2 {
    gap: 10px;
  }
}
.policy-common__contact--col2 .policy-common__contact__inner {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 599px) {
  .policy-common__contact--col2 .policy-common__contact__inner {
    width: 100%;
  }
}

/*--------------------------------------------------------
office
----------------------------------------------------------*/
.office-index__box {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
@media screen and (max-width: 1400px) {
  .office-index__box {
    gap: 40px;
  }
}
@media screen and (max-width: 599px) {
  .office-index__box {
    flex-direction: column-reverse;
    gap: 15px;
  }
}
.office-index__box__table {
  width: calc(100% - 450px);
}
@media screen and (max-width: 1400px) {
  .office-index__box__table {
    width: calc(60% - 40px);
  }
}
@media screen and (max-width: 599px) {
  .office-index__box__table {
    width: 100%;
  }
}
.office-index__box__table .base-table01 th {
  width: 42%;
  padding: 30px 50px;
}
@media screen and (max-width: 1400px) {
  .office-index__box__table .base-table01 th {
    width: 120px;
    padding: 20px 30px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .office-index__box__table .base-table01 th {
    width: 100%;
    padding: 15px 10px 5px;
  }
}
.office-index__box__table .base-table01 td {
  width: 58%;
  padding: 30px 0 30px 0;
}
@media screen and (max-width: 1400px) {
  .office-index__box__table .base-table01 td {
    width: calc(100% - 120px);
    padding: 30px 0 25px 0;
  }
}
@media screen and (max-width: 599px) {
  .office-index__box__table .base-table01 td {
    width: 100%;
    padding: 0 10px 15px;
  }
}
.office-index__box__map {
  width: 370px;
  height: 260px;
}
@media screen and (max-width: 1400px) {
  .office-index__box__map {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .office-index__box__map {
    width: 100%;
  }
}
.office-index__box__map iframe {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------
faq
----------------------------------------------------------*/
.faq-index .accordion {
  margin-bottom: 10px;
}
.faq-index .accordion:last-child {
  margin-bottom: 0;
}
.faq-index .accordion__q {
  position: relative;
  background-color: #eef7fe;
}
.faq-index .accordion__q::before {
  content: "Q";
  position: absolute;
  top: 14px;
  left: 35px;
  color: #0087e2;
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .faq-index .accordion__q::before {
    top: 15px;
    left: 25px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .faq-index .accordion__q::before {
    top: 9px;
    left: 15px;
    font-size: 2.1rem;
  }
}
.faq-index .accordion__q.cl-change::before {
  z-index: 1;
  color: #666666;
}
.faq-index .accordion__q > span {
  position: relative;
  display: block;
  padding: 29px 80px 31px 90px;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .faq-index .accordion__q > span {
    padding: 24px 65px 26px 65px;
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 599px) {
  .faq-index .accordion__q > span {
    padding: 15px 42px 17px 42px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.faq-index .accordion__q > span::before, .faq-index .accordion__q > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 31px;
  height: 1px;
  background-color: #666666;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .faq-index .accordion__q > span::before, .faq-index .accordion__q > span::after {
    right: 30px;
    width: 21px;
  }
}
@media screen and (max-width: 599px) {
  .faq-index .accordion__q > span::before, .faq-index .accordion__q > span::after {
    right: 15px;
    width: 15px;
  }
}
.faq-index .accordion__q > span::before {
  transform: translateY(-50%);
}
.faq-index .accordion__q > span::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq-index .accordion__q > span.open {
  background-color: #fef2f5;
  color: #000000;
}
.faq-index .accordion__q > span.open::after {
  transform: rotate(-180deg);
}
.faq-index .accordion__a {
  display: none;
  position: relative;
}
.faq-index .accordion__a::before {
  content: "A";
  position: absolute;
  top: 19px;
  left: 35px;
  color: #e2003b;
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .faq-index .accordion__a::before {
    top: 16px;
    left: 25px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .faq-index .accordion__a::before {
    top: 10px;
    left: 15px;
    font-size: 2.1rem;
  }
}
.faq-index .accordion__a > div {
  display: block;
  padding: 35px 40px 40px 90px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .faq-index .accordion__a > div {
    padding: 24px 30px 26px 65px;
  }
}
@media screen and (max-width: 599px) {
  .faq-index .accordion__a > div {
    padding: 15px 15px 17px 42px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.faq-index .accordion__dl > dt {
  font-weight: bold;
}
.faq-index .accordion__dl > dd {
  margin-bottom: 15px;
}
.faq-index .accordion__dl > dd:last-of-type {
  margin-bottom: 0;
}
.faq-index .accordion__list-style01 > li {
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 1em;
  position: relative;
}
.faq-index .accordion__list-style01 > li:last-child {
  margin-bottom: 0;
}
.faq-index .accordion__list-style01 > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------------------------------------------
download
----------------------------------------------------------*/
.download-index__btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.download-index__btn-list > li {
  width: 100%;
}
.download-index__btn-list > li > a {
  position: relative;
  display: block;
  background-color: #eef7fe;
  background-position: top 50% left 35px;
  background-size: 32px 40px;
  background-repeat: no-repeat;
  padding: 29px 80px 31px 95px;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .download-index__btn-list > li > a {
    background-position: top 50% left 25px;
    background-size: 27px 33px;
    padding: 24px 70px 26px;
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 599px) {
  .download-index__btn-list > li > a {
    background-size: 22px 27px;
    background-position: top 50% left 15px;
    padding: 15px 50px 17px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.download-index__btn-list > li > a.pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.download-index__btn-list > li > a.excel {
  background-image: url(../img/common/icon_excel.svg);
}
.download-index__btn-list > li > a.word {
  background-image: url(../img/common/icon_word.svg);
}
.download-index__btn-list > li > a.powerpoint {
  background-image: url(../img/common/icon_powerpoint.svg);
}
.download-index__btn-list > li > a::before {
  content: "";
  position: absolute;
  margin-top: -6px;
  top: 50%;
  right: 50px;
  width: 12px;
  height: 12px;
  background-color: #0087e2;
  border-radius: 50%;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px auto;
}
@media screen and (max-width: 1024px) {
  .download-index__btn-list > li > a::before {
    right: 25px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-right: 0;
    background-image: url(../img/common/arrow04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
  }
}
@media screen and (max-width: 599px) {
  .download-index__btn-list > li > a::before {
    width: 24px;
    height: 24px;
    right: 15px;
    background-size: 6px auto;
  }
}
@media screen and (min-width: 1025px) {
  .download-index__btn-list > li > a:hover {
    transform: translateX(3px);
    background-color: #d6eafb;
  }
  .download-index__btn-list > li > a:hover::before {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-right: -9px;
    background-image: url(../img/common/arrow04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
  }
}

/*--------------------------------------------------------
news
----------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .news-list {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .news-list {
    margin-bottom: 30px;
  }
}

.news-item {
  border-bottom: 1px solid #cccccc;
}
.news-item > a {
  padding: 40px 80px 40px 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .news-item > a {
    padding: 30px 80px 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .news-item > a {
    padding: 30px 60px 30px 0;
  }
}
@media screen and (max-width: 599px) {
  .news-item > a {
    flex-wrap: wrap;
    padding: 26px 33px 26px 0;
  }
}
.news-item > a::before {
  content: "";
  position: absolute;
  margin-top: -6px;
  top: 50%;
  right: 37px;
  width: 12px;
  height: 12px;
  background-color: #0087e2;
  border-radius: 50%;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px auto;
}
@media screen and (max-width: 1024px) {
  .news-item > a::before {
    right: 10px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-right: 0;
    background-image: url(../img/common/arrow04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
  }
}
@media screen and (max-width: 599px) {
  .news-item > a::before {
    width: 24px;
    height: 24px;
    right: 0;
    background-size: 6px auto;
  }
}
@media screen and (min-width: 1025px) {
  .news-item > a:hover {
    opacity: 0.8;
    transform: translateX(3px);
  }
  .news-item > a:hover::before {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-right: -9px;
    background-image: url(../img/common/arrow04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
  }
}
.news-item:first-child > a {
  padding-top: 20px;
}
.news-item:first-child > a::before {
  margin-top: -10px;
}
@media screen and (min-width: 1025px) {
  .news-item:first-child > a:hover::before {
    margin-top: -19px;
  }
}
.news-item__category {
  width: 220px;
  height: 60px;
  text-align: center;
  border-radius: 100px;
  background-color: #ebf5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
}
.news-item__category--import {
  background-color: #fff2f7;
}
@media screen and (max-width: 1400px) {
  .news-item__category {
    width: 170px;
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .news-item__category {
    font-size: 1.5rem;
    width: 150px;
  }
}
@media screen and (max-width: 599px) {
  .news-item__category {
    height: 30px;
    font-size: 1.3rem;
    width: 120px;
  }
}
.news-item__date {
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444444;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .news-item__date {
    height: 50px;
    width: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .news-item__date {
    width: 140px;
  }
}
@media screen and (max-width: 599px) {
  .news-item__date {
    width: auto;
    height: auto;
    font-size: 1.4rem;
    padding: 5px 0 0 12px;
  }
}
.news-item__text {
  width: calc(100% - 400px);
  color: #000;
  padding: 18px 0 0 0;
}
@media screen and (max-width: 1400px) {
  .news-item__text {
    width: calc(100% - 330px);
    padding: 13px 0 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .news-item__text {
    width: calc(100% - 290px);
  }
}
@media screen and (max-width: 599px) {
  .news-item__text {
    width: 100%;
    padding: 10px 0 0 0;
  }
}
.news-item .icon-new {
  color: #d92b3b;
  font-weight: 500;
  padding-left: 20px;
}

.pagination {
  margin: 60px auto 0;
}
@media screen and (max-width: 599px) {
  .pagination {
    margin: 30px auto 0;
  }
}
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pagination__prev {
  margin-right: 10px;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0087e2;
  position: relative;
  padding-left: 25px;
}
@media screen and (min-width: 1025px) {
  .pagination__prev:hover {
    opacity: 0.8;
  }
}
.pagination__prev::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
  border: 1px solid #0087e2;
  border-radius: 50%;
}
.pagination__prev::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  border-width: 3px 5px;
  border-style: solid;
  border-color: transparent;
  border-right-color: #0087e2;
  display: block;
}
@media screen and (max-width: 599px) {
  .pagination__prev {
    display: none;
  }
}
.pagination__next {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 500;
  color: #0087e2;
  position: relative;
  padding-right: 25px;
}
@media screen and (min-width: 1025px) {
  .pagination__next:hover {
    opacity: 0.8;
  }
}
.pagination__next::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 4px;
  right: 0;
  border: 1px solid #0087e2;
  border-radius: 50%;
}
.pagination__next::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  border-width: 3px 5px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #0087e2;
  display: block;
}
@media screen and (max-width: 599px) {
  .pagination__next {
    display: none;
  }
}
.pagination__num {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  border: 1px solid #0087e2;
  color: #0087e2;
  font-size: 1.6rem;
  border-radius: 50%;
  padding-top: 10px;
}
@media screen and (max-width: 599px) {
  .pagination__num {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    padding-top: 5px;
  }
}
.pagination__num:hover, .pagination__num.current {
  background-color: #0087e2;
  color: #fff;
}

/* ************ 詳細 ************ */
.news-detail-title {
  margin-bottom: 60px;
  padding-bottom: 38px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 1024px) {
  .news-detail-title {
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .news-detail-title {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
.news-detail-title__title {
  color: #444;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .news-detail-title__title {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .news-detail-title__title {
    letter-spacing: 0;
    font-size: 2.2rem;
  }
}
.news-detail-title__head {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .news-detail-title__head {
    margin-bottom: 10px;
  }
}
.news-detail-title__category {
  width: 220px;
  height: 60px;
  margin-right: 50px;
  text-align: center;
  border-radius: 100px;
  background-color: #ebf5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
}
.news-detail-title__category--import {
  background-color: #fff2f7;
}
@media screen and (max-width: 1400px) {
  .news-detail-title__category {
    width: 170px;
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .news-detail-title__category {
    font-size: 1.5rem;
    width: 150px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .news-detail-title__category {
    height: 30px;
    font-size: 1.3rem;
    width: 120px;
  }
}
.news-detail-title__date {
  font-size: 1.6rem;
  color: #444;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-right: 15px;
}
.news-detail-title__new {
  color: #d92b3b;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/*詳細は静的のためwysiwygではない*/
.news-detail-wrap {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  .news-detail-wrap {
    margin-bottom: 45px;
  }
}
.news-detail-wrap__section {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .news-detail-wrap__section {
    margin-bottom: 45px;
  }
}
.news-detail-wrap__title01 {
  font-size: 2.4rem;
  color: #444;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 25px;
  border-bottom: 2px solid #cccccc;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .news-detail-wrap__title01 {
    font-size: 2rem;
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
.news-detail-wrap__title01::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #0087e2;
}
.news-detail-wrap__title02 {
  margin-bottom: 25px;
  font-size: 2rem;
  color: #444;
  font-weight: 500;
  padding: 3px 0 15px 20px;
  line-height: 1.3;
  border-bottom: 1px solid #cccccc;
  border-left: 3px solid #0087e2;
}
@media screen and (max-width: 599px) {
  .news-detail-wrap__title02 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    padding: 3px 0 15px 15px;
  }
}
.news-detail-wrap__table {
  width: 100%;
  border-collapse: collapse;
}
.news-detail-wrap__table th, .news-detail-wrap__table td {
  border: 1px solid #cccccc;
  padding: 18px 15px;
  font-weight: 400;
  vertical-align: middle;
  line-height: 1.3;
}
.news-detail-wrap__table th.bg01, .news-detail-wrap__table td.bg01 {
  background-color: #daeefe;
}
.news-detail-wrap__table th.bg02, .news-detail-wrap__table td.bg02 {
  background-color: #f2f9fe;
}
@media screen and (max-width: 599px) {
  .news-detail-wrap__table th, .news-detail-wrap__table td {
    padding: 10px;
    font-size: 1.5rem;
  }
}
.news-detail-wrap__table--al-center th, .news-detail-wrap__table--al-center td {
  text-align: center;
}
.news-detail-wrap__notice {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 599px) {
  .news-detail-wrap__notice {
    font-size: 1.5rem;
  }
}

.news-detail-btn > a {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  display: block;
  text-align: center;
  border: 2px solid #0087e2;
  border-radius: 200px;
  font-size: 1.6rem;
  color: #0087e2;
  font-weight: 500;
  padding: 17px 17px 17px 25px;
  background-image: url(../img/common/arrow01_back.png);
  background-repeat: no-repeat;
  background-size: 21px 21px;
  background-position: left 20px top 50%;
}
@media screen and (min-width: 1025px) {
  .news-detail-btn > a:hover {
    background-color: #0087e2;
    color: #fff;
    transform: translateY(4px);
  }
}

/*--------------------------------------------------------
outline
----------------------------------------------------------*/
.outline-greeting-main {
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .outline-greeting-main {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .outline-greeting-main {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .outline-greeting-main {
    margin-bottom: 30px;
  }
}
.outline-greeting-main__name01 {
  width: 21%;
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 179px;
}
@media screen and (max-width: 1024px) {
  .outline-greeting-main__name01 {
    left: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .outline-greeting-main__name01 {
    width: 38%;
    left: 5px;
    bottom: 0;
  }
}
.outline-greeting-main__name02 {
  width: 20%;
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 168px;
}
@media screen and (max-width: 1024px) {
  .outline-greeting-main__name02 {
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .outline-greeting-main__name02 {
    width: 35%;
    right: 5px;
    bottom: 0;
  }
}

.outline-greeting-contents {
  display: flex;
  flex-wrap: wrap;
}
.outline-greeting-contents__text-area {
  width: calc(100% - 290px);
  padding-right: 65px;
}
@media screen and (max-width: 1400px) {
  .outline-greeting-contents__text-area {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .outline-greeting-contents__text-area {
    width: calc(100% - 260px);
    padding-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .outline-greeting-contents__text-area {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.outline-greeting-contents__photo {
  width: 290px;
}
@media screen and (max-width: 1024px) {
  .outline-greeting-contents__photo {
    width: 260px;
  }
}
@media screen and (max-width: 599px) {
  .outline-greeting-contents__photo {
    width: 100%;
  }
}
.outline-greeting-contents__photo > img {
  margin-bottom: 18px;
}
.outline-greeting-contents__photo__name {
  text-align: right;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .outline-greeting-contents__photo__name {
    font-size: 1.7rem;
  }
}
.outline-greeting-contents__photo__name span {
  font-size: 1.4rem;
  margin-right: 22px;
}
.outline-greeting-contents__copy {
  margin-bottom: 34px;
  font-size: 1.8rem;
  color: #444;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1400px) {
  .outline-greeting-contents__copy {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .outline-greeting-contents__copy {
    line-height: 1.7;
  }
}
@media screen and (max-width: 599px) {
  .outline-greeting-contents__copy {
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.outline-greeting-contents__text {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 2.2;
  font-weight: 500;
  margin-bottom: 65px;
}
@media screen and (max-width: 1024px) {
  .outline-greeting-contents__text {
    line-height: 1.8;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .outline-greeting-contents__text {
    font-size: 1.5rem;
    text-align: justify;
    margin-bottom: 20px;
  }
}
.outline-greeting-contents__logo {
  text-align: center;
  width: 100%;
}

.outline-houshin > dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
.outline-houshin > dl:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1400px) {
  .outline-houshin > dl {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .outline-houshin > dl {
    margin-bottom: 30px;
  }
}
.outline-houshin > dl > dt {
  width: 170px;
  font-size: 1.8rem;
  color: #004d9d;
  font-weight: 500;
  padding: 0 0 0 25px;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .outline-houshin > dl > dt {
    width: 100%;
    margin-bottom: 15px;
  }
}
.outline-houshin > dl > dt::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #0087e2;
  border-radius: 100px;
  display: block;
}
.outline-houshin > dl > dt::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: #0087e2;
  border-radius: 100px;
}
.outline-houshin > dl > dd {
  width: calc(100% - 170px);
}
@media screen and (max-width: 599px) {
  .outline-houshin > dl > dd {
    width: 100%;
  }
}
.outline-houshin__copy {
  font-size: 1.8rem;
  color: #444;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .outline-houshin__copy {
    line-height: 1.7;
  }
}
@media screen and (max-width: 599px) {
  .outline-houshin__copy {
    font-size: 1.7rem;
  }
}
.outline-houshin__list {
  color: #444;
}
.outline-houshin__list > li {
  padding-left: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
  position: relative;
}
.outline-houshin__list > li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #0087e2;
  border-radius: 100px;
}

.outline-history > div {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3;
}
.outline-history > div dt {
  width: 170px;
  position: relative;
  color: #004d9d;
  font-weight: 500;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .outline-history > div dt {
    width: 120px;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .outline-history > div dt {
    width: 80px;
    font-size: 1.5rem;
  }
}
.outline-history > div dt::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #005c9a;
  position: absolute;
  top: 4px;
  right: 0;
}
.outline-history > div dt::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #cccccc;
  display: block;
  position: absolute;
  top: 12px;
  right: 7px;
  z-index: -1;
}
.outline-history > div dd {
  width: calc(100% - 170px);
  padding-left: 60px;
  padding-top: 2px;
  padding-bottom: 50px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .outline-history > div dd {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 599px) {
  .outline-history > div dd {
    width: calc(100% - 80px);
    padding-left: 20px;
    padding-top: 0;
  }
}
.outline-history > div:last-child dt::after {
  content: none;
}
.outline-history > div:last-child dd {
  padding-bottom: 0;
}
.outline-history__month {
  width: 55px;
}
@media screen and (max-width: 599px) {
  .outline-history__month {
    width: 40px;
  }
}
.outline-history__text {
  width: calc(100% - 55px);
}
@media screen and (max-width: 599px) {
  .outline-history__text {
    width: calc(100% - 40px);
  }
}

.outline-kessan-title {
  position: relative;
  background-color: #eef7fe;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .outline-kessan-title:hover {
    opacity: 0.8;
  }
}
.outline-kessan-title::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 36px;
  width: 14px;
  height: 14px;
  border: 1px solid #0087e2;
  border-radius: 100px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .outline-kessan-title::before {
    top: 28px;
  }
}
@media screen and (max-width: 599px) {
  .outline-kessan-title::before {
    top: 19px;
    left: 15px;
  }
}
.outline-kessan-title::after {
  content: "";
  position: absolute;
  top: 39px;
  left: 39px;
  width: 8px;
  height: 8px;
  background-color: #0087e2;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .outline-kessan-title::after {
    top: 31px;
  }
}
@media screen and (max-width: 599px) {
  .outline-kessan-title::after {
    top: 22px;
    left: 18px;
  }
}
.outline-kessan-title.cl-change {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .outline-kessan-title.cl-change {
    margin-bottom: 20px;
  }
}
.outline-kessan-title.cl-change::before {
  z-index: 1;
  color: #666666;
}
.outline-kessan-title > span {
  position: relative;
  display: block;
  padding: 31px 80px 31px 65px;
  color: #444444;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: justify;
  line-height: 1.3;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .outline-kessan-title > span {
    padding: 24px 65px 26px 65px;
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 599px) {
  .outline-kessan-title > span {
    padding: 15px 42px 17px 38px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.outline-kessan-title > span::before, .outline-kessan-title > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 31px;
  height: 1px;
  background-color: #666666;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .outline-kessan-title > span::before, .outline-kessan-title > span::after {
    right: 30px;
    width: 21px;
  }
}
@media screen and (max-width: 599px) {
  .outline-kessan-title > span::before, .outline-kessan-title > span::after {
    right: 15px;
    width: 15px;
  }
}
.outline-kessan-title > span::before {
  transform: translateY(-50%);
}
.outline-kessan-title > span::after {
  transform: translateY(-50%) rotate(90deg);
}
.outline-kessan-title > span.open::after {
  transform: rotate(-180deg);
}

.outline-kessan-list {
  margin-bottom: 70px;
  display: none;
}
@media screen and (max-width: 599px) {
  .outline-kessan-list {
    margin-bottom: 40px;
  }
}
.outline-kessan-list > li {
  border-bottom: 1px solid #cccccc;
}
.outline-kessan-list > li > a {
  color: #0087e2;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 40px 100px;
  display: block;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .outline-kessan-list > li > a {
    padding: 30px 60px 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .outline-kessan-list > li > a {
    padding: 20px 60px 20px 32px;
  }
}
.outline-kessan-list > li > a.pdf {
  background-image: url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 50px top 37px;
}
@media screen and (max-width: 1024px) {
  .outline-kessan-list > li > a.pdf {
    background-position: left 10px top 27px;
  }
}
@media screen and (max-width: 599px) {
  .outline-kessan-list > li > a.pdf {
    background-size: 18px auto;
    background-position: left 5px top 19px;
  }
}
.outline-kessan-list > li > a::before {
  content: "";
  position: absolute;
  margin-top: -6px;
  top: 50%;
  right: 50px;
  width: 12px;
  height: 12px;
  background-color: #0087e2;
  border-radius: 50%;
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px auto;
}
@media screen and (max-width: 1024px) {
  .outline-kessan-list > li > a::before {
    right: 25px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-right: 0;
    background-image: url(../img/common/arrow04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
  }
}
@media screen and (max-width: 599px) {
  .outline-kessan-list > li > a::before {
    width: 24px;
    height: 24px;
    right: 0;
    margin-top: -12px;
    background-size: 6px auto;
  }
}
@media screen and (min-width: 1025px) {
  .outline-kessan-list > li > a:hover {
    text-decoration: underline;
  }
  .outline-kessan-list > li > a:hover::before {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-right: -9px;
    background-image: url(../img/common/arrow04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px auto;
  }
}

/*--------------------------------------------------------
recruit
----------------------------------------------------------*/
.recruit-top-message {
  display: flex;
}
@media screen and (max-width: 599px) {
  .recruit-top-message {
    flex-wrap: wrap;
  }
}
.recruit-top-message__text-box {
  width: 54%;
  padding-right: 60px;
}
@media screen and (max-width: 1400px) {
  .recruit-top-message__text-box {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-top-message__text-box {
    padding-right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-top-message__text-box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 25px;
  }
}
.recruit-top-message__photo {
  width: 46%;
}
@media screen and (max-width: 599px) {
  .recruit-top-message__photo {
    width: 100%;
  }
}
.recruit-top-message__copy {
  font-size: 1.8rem;
  color: #444;
  font-weight: 600;
  margin-bottom: 35px;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .recruit-top-message__copy {
    margin-bottom: 20px;
  }
}
.recruit-top-message__text {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: justify;
  line-height: 1.9;
}

.recruit-top-data-column {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .recruit-top-data-column {
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-top-data-column {
    flex-wrap: wrap;
  }
}

.recruit-top-data-item {
  padding: 0 30px 10px;
  background-color: #f2f9fd;
}
.recruit-top-data-item > dl > dt {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  padding: 35px 0 18px;
  position: relative;
  border-bottom: 1px solid #79c0ef;
}
.recruit-top-data-item > dl > dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 20px;
  background-color: #0087e2;
  margin-left: -2px;
}
.recruit-top-data-item > dl > dd {
  padding: 10px 0 0 0;
}

.recruit-top-welfare-copy {
  margin-bottom: 45px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .recruit-top-welfare-copy {
    margin-bottom: 25px;
  }
}

.recruit-top-welfare-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
@media screen and (max-width: 599px) {
  .recruit-top-welfare-list {
    gap: 4px;
  }
}
.recruit-top-welfare-list > li {
  width: calc((100% - 27px) / 4);
  padding: 0 0 5px 20px;
  position: relative;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .recruit-top-welfare-list > li {
    width: 100%;
    padding: 0 0 5px 15px;
    line-height: 1.5;
  }
}
.recruit-top-welfare-list > li:last-child {
  padding-bottom: 0;
}
.recruit-top-welfare-list > li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: #0087e2;
}
@media screen and (max-width: 599px) {
  .recruit-top-welfare-list > li::before {
    top: 7px;
  }
}
.recruit-top-welfare-list--column-one > li {
  width: 100%;
}

.recruit-top-work {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 599px) {
  .recruit-top-work {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.recruit-top-work-item {
  width: calc((100% - 25px) / 2);
}
@media screen and (max-width: 599px) {
  .recruit-top-work-item {
    width: 100%;
  }
}
.recruit-top-work-item > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.recruit-top-work-item > a::before {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../img/common/arrow07.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .recruit-top-work-item > a::before {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .recruit-top-work-item > a:hover img {
    transform: scale(1.1);
  }
}
.recruit-top-work-item__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 2rem;
  color: #fff;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .recruit-top-work-item__text {
    font-size: 1.8rem;
  }
}
.recruit-top-work-item__text::before {
  content: "";
  width: 170px;
  height: 170px;
  border-radius: 300px;
  border: 30px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -85px;
  margin-left: -85px;
}
@media screen and (max-width: 1024px) {
  .recruit-top-work-item__text::before {
    margin-top: -75px;
    margin-left: -75px;
    width: 150px;
    height: 150px;
    border: 20px solid rgba(255, 255, 255, 0.5);
  }
}
.recruit-top-work-item__photo {
  position: relative;
  overflow: hidden;
}
.recruit-top-work-item__photo::before {
  content: "";
  display: block;
  padding-top: 66.67%;
}
.recruit-top-work-item__photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(1, 60, 156, 0.4);
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.recruit-top-work-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.recruit-top-senpai {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .recruit-top-senpai {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-top-senpai {
    flex-wrap: wrap;
    gap: 25px 15px;
  }
}

.recruit-top-senpai-item {
  width: calc((100% - 72px) / 4);
}
@media screen and (max-width: 1024px) {
  .recruit-top-senpai-item {
    width: calc((100% - 45px) / 4);
  }
}
@media screen and (max-width: 599px) {
  .recruit-top-senpai-item {
    width: calc((100% - 15px) / 2);
  }
}
.recruit-top-senpai-item > a {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1025px) {
  .recruit-top-senpai-item > a:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}
.recruit-top-senpai-item__text-box {
  padding: 18px 18px 18px 0;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-top-senpai-item__text-box {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .recruit-top-senpai-item__text-box {
    padding: 15px 15px 15px 0;
  }
}
.recruit-top-senpai-item__text-box::before {
  content: "";
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 17px;
  height: 17px;
  border-top: 1px solid #0087e2;
  border-right: 1px solid #0087e2;
  transform: rotate(45deg);
}
@media screen and (max-width: 1400px) {
  .recruit-top-senpai-item__text-box::before {
    margin-top: -5px;
    width: 10px;
    height: 10px;
    right: 15px;
  }
}
.recruit-top-senpai-item__category {
  width: 75px;
  background-color: #0090ec;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 1400px) {
  .recruit-top-senpai-item__category {
    width: 60px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-top-senpai-item__category {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-top-senpai-item__category {
    margin-bottom: 7px;
    width: 80px;
  }
}
.recruit-top-senpai-item__name {
  width: calc(100% - 75px);
  padding-left: 20px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #444444;
}
@media screen and (max-width: 1400px) {
  .recruit-top-senpai-item__name {
    width: calc(100% - 60px);
    padding-left: 10px;
    font-size: 1.7rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-top-senpai-item__name {
    width: 100%;
  }
}
.recruit-top-senpai-item__name span {
  font-size: 1rem;
  display: block;
}

/*--------------------------------------------------------
仕事内容
----------------------------------------------------------*/
.work-wrap__photo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.work-wrap__photo__img {
  width: 33.3333333333%;
}
.work-wrap__photo__img img {
  width: 100%;
}
.work-wrap__2col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 1400px) {
  .work-wrap__2col {
    gap: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .work-wrap__2col {
    gap: 40px;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap__2col {
    gap: 45px 0;
  }
}
.work-wrap__2col__item {
  width: calc((99.9% - 60px) / 2);
}
@media screen and (max-width: 1400px) {
  .work-wrap__2col__item {
    width: calc((99.9% - 50px) / 2);
  }
}
@media screen and (max-width: 1200px) {
  .work-wrap__2col__item {
    width: calc((99.9% - 40px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .work-wrap__2col__item {
    width: 100%;
  }
}
.work-wrap__flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 40px;
}
@media screen and (max-width: 1024px) {
  .work-wrap__flow {
    gap: 0 30px;
  }
}
.work-wrap__flow__item {
  width: calc((99.9% - 40px) / 2);
}
@media screen and (max-width: 1500px) {
  .work-wrap__flow__item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap__flow__item {
    width: calc((99.9% - 30px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .work-wrap__flow__item {
    width: 100%;
  }
}
.work-wrap__message-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #e5f3fb;
  padding: 24px;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .work-wrap__message-list {
    padding: 21.6px;
    gap: 21.6px;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap__message-list {
    padding: 24px;
    gap: 24px;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap__message-list {
    padding: 21.6px;
    gap: 21.6px;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap__message-list {
    padding: 20px;
    gap: 20px;
  }
}
.work-wrap__message-list__item {
  width: calc((99.9% - 24px) / 2);
}
@media screen and (max-width: 1200px) {
  .work-wrap__message-list__item {
    width: calc((99.9% - 21.6px) / 2);
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap__message-list__item {
    width: calc((99.9% - 24px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .work-wrap__message-list__item {
    width: calc((99.9% - 21.6px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .work-wrap__message-list__item {
    width: 100%;
  }
}

.work-wrap-imgbox__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.work-wrap-imgbox__body__img {
  width: 120px;
}
@media screen and (max-width: 1400px) {
  .work-wrap-imgbox__body__img {
    width: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .work-wrap-imgbox__body__img {
    width: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-imgbox__body__img {
    width: 100px;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-imgbox__body__img {
    width: 80px;
  }
}
.work-wrap-imgbox__body__img img {
  width: 100%;
}
.work-wrap-imgbox__body__text-box {
  width: calc(99.9% - 120px);
  padding-left: 40px;
}
@media screen and (max-width: 1400px) {
  .work-wrap-imgbox__body__text-box {
    width: calc(99.9% - 100px);
    padding-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .work-wrap-imgbox__body__text-box {
    width: calc(99.9% - 80px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-imgbox__body__text-box {
    width: calc(99.9% - 100px);
    padding-left: 30px;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-imgbox__body__text-box {
    width: calc(99.9% - 80px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap-imgbox__body__text-box {
    padding-left: 30px;
  }
}
.work-wrap-imgbox__body__text-box__text {
  font-size: 1.5rem;
  line-height: 1.85;
}
@media screen and (max-width: 834px) {
  .work-wrap-imgbox__body__text-box__text {
    font-size: 1.4rem;
  }
}

.work-wrap-flowbox__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding-bottom: 30px;
}
.work-wrap-flowbox__block::before {
  position: absolute;
  content: "";
  top: 0;
  left: 106px;
  width: 8px;
  height: 100%;
  background-color: #e5f3fb;
}
@media screen and (max-width: 1024px) {
  .work-wrap-flowbox__block::before {
    left: 81px;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap-flowbox__block::before {
    left: 57px;
    width: 6px;
  }
}
.work-wrap-flowbox__block__timeline {
  position: relative;
  width: 220px;
  color: #444444;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  background-color: #e5f3fb;
  padding: 21px 20px;
}
@media screen and (max-width: 1024px) {
  .work-wrap-flowbox__block__timeline {
    width: 170px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-flowbox__block__timeline {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap-flowbox__block__timeline {
    width: 120px;
    font-size: 1.7rem;
  }
}
.work-wrap-flowbox__block__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-self: center;
  width: calc(99.9% - 220px);
  padding-left: 35px;
}
@media screen and (max-width: 1024px) {
  .work-wrap-flowbox__block__body {
    width: calc(99.9% - 170px);
    padding-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap-flowbox__block__body {
    width: calc(99.9% - 120px);
    padding-left: 20px;
  }
}
.work-wrap-flowbox__block__body__text {
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .work-wrap-flowbox__block__body__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-flowbox__block__body__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap-flowbox__block__body__text {
    font-size: 1.6rem;
  }
}
.work-wrap-flowbox--type02 .work-wrap-flowbox__block {
  padding-bottom: 0;
  padding-top: 30px;
}
@media screen and (max-width: 1500px) {
  .work-wrap-flowbox--type02 .work-wrap-flowbox__block:nth-child(1) {
    padding-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-flowbox--type02 .work-wrap-flowbox__block:nth-child(1) {
    padding-top: 30px;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-flowbox--type02 .work-wrap-flowbox__block:nth-child(1) {
    padding-top: 0;
  }
}
.work-wrap-flowbox--type02 .work-wrap-flowbox__block:last-child::before {
  height: 30px;
}

.work-wrap-message-btn {
  display: block;
  background-color: #ffffff;
}
.work-wrap-message-btn__img {
  position: relative;
  overflow: hidden;
}
.work-wrap-message-btn__img::before {
  display: block;
  content: "";
  aspect-ratio: 257/140;
}
.work-wrap-message-btn__img img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out;
}
.work-wrap-message-btn__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 23px 50px 22px 0;
}
.work-wrap-message-btn__body::before {
  position: absolute;
  content: "";
  top: calc((100% - 16px) / 2);
  right: 30px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #0087e2;
  border-right: 1px solid #0087e2;
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .work-wrap-message-btn__body::before {
    top: calc((100% - 14.4px) / 2);
    right: 27px;
    width: 14.4px;
    height: 14.4px;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-message-btn__body::before {
    top: calc((100% - 16px) / 2);
    right: 30px;
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-message-btn__body::before {
    top: calc((100% - 14.4px) / 2);
    right: 27px;
    width: 14.4px;
    height: 14.4px;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap-message-btn__body::before {
    top: calc((100% - 12.8px) / 2);
    right: 24px;
    width: 12.8px;
    height: 12.8px;
  }
}
.work-wrap-message-btn__body__job {
  width: 75px;
  font-size: 0;
}
@media screen and (max-width: 1200px) {
  .work-wrap-message-btn__body__job {
    width: 67.5px;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-message-btn__body__job {
    width: 75px;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-message-btn__body__job {
    width: 67.5px;
  }
}
.work-wrap-message-btn__body__job__txt {
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1;
  text-align: center;
  background-color: #0090ec;
  padding: 5px;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .work-wrap-message-btn__body__job__txt {
    font-size: 1.26rem;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-message-btn__body__job__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-message-btn__body__job__txt {
    font-size: 1.26rem;
  }
}
.work-wrap-message-btn__body__name {
  width: calc(99.9% - 75px);
  color: #444444;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1;
  padding-left: 20px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .work-wrap-message-btn__body__name {
    width: calc(99.9% - 67.5px);
    padding-left: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-message-btn__body__name {
    width: calc(99.9% - 75px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-message-btn__body__name {
    width: calc(99.9% - 67.5px);
    padding-left: 18px;
  }
}
.work-wrap-message-btn__body__name__jp {
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  .work-wrap-message-btn__body__name__jp {
    font-size: 1.62rem;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-message-btn__body__name__jp {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-message-btn__body__name__jp {
    font-size: 1.62rem;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap-message-btn__body__name__jp {
    font-size: 1.8rem;
  }
}
.work-wrap-message-btn__body__name__en {
  font-size: 1rem;
  padding-left: 0.1em;
  margin-top: 5px;
}
@media screen and (max-width: 1200px) {
  .work-wrap-message-btn__body__name__en {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrap-message-btn__body__name__en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 834px) {
  .work-wrap-message-btn__body__name__en {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  .work-wrap-message-btn__body__name__en {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .work-wrap-message-btn:hover {
    background-color: #0087e2;
  }
  .work-wrap-message-btn:hover .work-wrap-message-btn__img img {
    transform: translateX(-50%) scale(1.1);
    transition: 0.3s ease-in-out;
  }
  .work-wrap-message-btn:hover .work-wrap-message-btn__body::before {
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transition: 0.3s ease-in-out;
  }
  .work-wrap-message-btn:hover .work-wrap-message-btn__body .work-wrap-message-btn__body__job__txt {
    background-color: #0056b0;
    transition: 0.3s ease-in-out;
  }
  .work-wrap-message-btn:hover .work-wrap-message-btn__body .work-wrap-message-btn__body__name {
    color: #ffffff;
    transition: 0.3s ease-in-out;
  }
}

/*--------------------------------------------------------
先輩メッセージ
----------------------------------------------------------*/
.message-wrap-mainbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message-wrap-mainbox__body {
  width: 49.9%;
  border-left: 30px solid #1e76d1;
  border-right: 30px solid #e5f3fb;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body {
    border-left: 25px solid #1e76d1;
    border-right: 25px solid #e5f3fb;
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body {
    border-left: 20px solid #1e76d1;
    border-right: 20px solid #e5f3fb;
  }
}
@media screen and (max-width: 834px) {
  .message-wrap-mainbox__body {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body {
    border-left: 10px solid #1e76d1;
    border-right: 10px solid #e5f3fb;
  }
}
.message-wrap-mainbox__body__catch {
  background-color: #1e76d1;
  padding: 40px 25px;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__catch {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__catch {
    padding: 40px 25px;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__catch {
    padding: 20px 15px;
  }
}
.message-wrap-mainbox__body__catch__txt {
  color: #ffffff;
  font-size: 3rem;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", serif !important;
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__catch__txt {
    font-size: clamp(2.6rem, 2vw, 3rem);
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__catch__txt {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__catch__txt {
    font-size: 2rem;
    font-weight: 500;
  }
}
.message-wrap-mainbox__body__profile {
  display: flex;
  flex-wrap: wrap;
  background-color: #e5f3fb;
  padding: 35px 30px;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__profile {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__profile {
    padding: 35px 30px;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__profile {
    padding: 25px 5px 25px 15px;
  }
}
.message-wrap-mainbox__body__profile__head {
  width: 160px;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__profile__head {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__profile__head {
    display: flex;
  }
}
@media screen and (max-width: 834px) {
  .message-wrap-mainbox__body__profile__head {
    display: block;
    width: 160px;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__profile__head {
    display: flex;
    width: 100%;
  }
}
.message-wrap-mainbox__body__profile__head__name {
  color: #444444;
  font-weight: 600;
  line-height: 1;
}
.message-wrap-mainbox__body__profile__head__name__jp {
  font-size: 2.4rem;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__profile__head__name__jp {
    font-size: clamp(2rem, 1.5vw, 2.4rem);
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__profile__head__name__jp {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__profile__head__name__jp {
    font-size: 2rem;
  }
}
.message-wrap-mainbox__body__profile__head__name__en {
  font-size: 1rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  margin-top: 12px;
  margin-left: 3px;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__profile__head__name__en {
    font-size: clamp(0.8rem, 0.6vw, 1rem);
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__profile__head__name__en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__profile__head__name__en {
    font-size: 0.8rem;
  }
}
.message-wrap-mainbox__body__profile__head__job {
  font-size: 0;
  margin-top: 13px;
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__profile__head__job {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .message-wrap-mainbox__body__profile__head__job {
    margin-top: 13px;
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__profile__head__job {
    margin-top: 0;
    margin-left: 15px;
  }
}
.message-wrap-mainbox__body__profile__head__job__txt {
  display: inline-block;
  width: 90px;
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1;
  text-align: center;
  background-color: #0087e2;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__profile__head__job__txt {
    font-size: clamp(1.2rem, 0.9vw, 1.4rem);
    padding: clamp(5px, 0.5vw, 10px) 10px;
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__profile__head__job__txt {
    width: auto;
    font-size: 1.4rem;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 834px) {
  .message-wrap-mainbox__body__profile__head__job__txt {
    width: 90px;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__profile__head__job__txt {
    width: auto;
    font-size: 1.2rem;
    padding: 5px 10px;
  }
}
.message-wrap-mainbox__body__profile__body {
  width: calc(99.9% - 160px);
  padding-left: 30px;
  margin-top: 15px;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__profile__body {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 834px) {
  .message-wrap-mainbox__body__profile__body {
    width: calc(99.9% - 160px);
    padding-left: 30px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__profile__body {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
}
.message-wrap-mainbox__body__profile__body__tbl {
  width: 100%;
  border-collapse: collapse;
}
.message-wrap-mainbox__body__profile__body__tbl tr:nth-child(1) th, .message-wrap-mainbox__body__profile__body__tbl tr:nth-child(1) td {
  padding-top: 0;
}
.message-wrap-mainbox__body__profile__body__tbl th, .message-wrap-mainbox__body__profile__body__tbl td {
  color: #004d9d;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  padding-top: 7px;
}
@media screen and (max-width: 1500px) {
  .message-wrap-mainbox__body__profile__body__tbl th, .message-wrap-mainbox__body__profile__body__tbl td {
    font-size: clamp(1.3rem, 1vw, 1.4rem);
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-mainbox__body__profile__body__tbl th, .message-wrap-mainbox__body__profile__body__tbl td {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-mainbox__body__profile__body__tbl th, .message-wrap-mainbox__body__profile__body__tbl td {
    font-size: 1.3rem;
  }
}
.message-wrap-mainbox__body__profile__body__tbl th {
  width: 50px;
}
.message-wrap-mainbox__img {
  position: relative;
  overflow: hidden;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .message-wrap-mainbox__img {
    width: 100%;
  }
}
.message-wrap-mainbox__img::before {
  display: block;
  content: "";
  aspect-ratio: 1/0.6;
}
.message-wrap-mainbox__img img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%);
}
.message-wrap-mainbox--img-left {
  background-color: #1e76d1;
}
.message-wrap-mainbox--img-right {
  flex-direction: row-reverse;
  background-color: #e5f3fb;
}

.message-wrap-imgbox {
  display: flex;
  flex-wrap: wrap;
}
.message-wrap-imgbox__body {
  width: calc(99.9% - 340px);
}
@media screen and (max-width: 1200px) {
  .message-wrap-imgbox__body {
    width: calc(99.9% - 260px);
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-imgbox__body {
    width: calc(99.9% - 340px);
  }
}
@media screen and (max-width: 834px) {
  .message-wrap-imgbox__body {
    width: calc(99.9% - 300px);
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-imgbox__body {
    width: 100%;
  }
}
.message-wrap-imgbox__img {
  width: 340px;
}
@media screen and (max-width: 1200px) {
  .message-wrap-imgbox__img {
    width: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-imgbox__img {
    width: 340px;
  }
}
@media screen and (max-width: 834px) {
  .message-wrap-imgbox__img {
    width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-imgbox__img {
    width: 100%;
    margin-top: 30px;
  }
}
.message-wrap-imgbox__img img {
  width: 100%;
}
.message-wrap-imgbox--left {
  flex-direction: row-reverse;
}
.message-wrap-imgbox--left .message-wrap-imgbox__body {
  padding-left: 60px;
}
@media screen and (max-width: 1400px) {
  .message-wrap-imgbox--left .message-wrap-imgbox__body {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .message-wrap-imgbox--left .message-wrap-imgbox__body {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-imgbox--left .message-wrap-imgbox__body {
    padding-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-imgbox--left .message-wrap-imgbox__body {
    padding-left: 0;
  }
}
.message-wrap-imgbox--right .message-wrap-imgbox__body {
  padding-right: 60px;
}
@media screen and (max-width: 1400px) {
  .message-wrap-imgbox--right .message-wrap-imgbox__body {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .message-wrap-imgbox--right .message-wrap-imgbox__body {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .message-wrap-imgbox--right .message-wrap-imgbox__body {
    padding-right: 40px;
  }
}
@media screen and (max-width: 599px) {
  .message-wrap-imgbox--right .message-wrap-imgbox__body {
    padding-right: 0;
  }
}

.entry-box {
  position: relative;
  background-color: #0087e2;
  padding: 0 60px 40px;
  margin-top: 70px;
}
@media screen and (max-width: 834px) {
  .entry-box {
    padding: 0 40px 40px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box {
    padding: 0 20px 30px;
    margin-top: 50px;
  }
}
.entry-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 42.7%;
  background-color: #1e76d1;
}
.entry-box__inr {
  position: relative;
}
.entry-box__title {
  position: relative;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding-top: 45px;
  margin-bottom: 32px;
}
@media screen and (max-width: 834px) {
  .entry-box__title {
    font-size: 2rem;
    padding-top: 40px;
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__title {
    font-size: 1.8rem;
    padding-top: 35px;
    margin-bottom: 22px;
  }
}
.entry-box__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: calc((100% - 4px) / 2);
  width: 4px;
  height: 24px;
  background-color: #ffffff;
}
@media screen and (max-width: 834px) {
  .entry-box__title::before {
    left: calc((100% - 3px) / 2);
    width: 3px;
    height: 18px;
  }
}
.entry-box__no-entry {
  background-color: #ffffff;
  padding: 40px;
  text-align: center;
  color: #444;
}
@media screen and (max-width: 1400px) {
  .entry-box__no-entry {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__no-entry {
    padding: 20px;
  }
}
.entry-box__btn-list {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
  padding: 40px;
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  .entry-box__btn-list {
    padding: 30px;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__btn-list {
    padding: 20px;
    gap: 10px;
  }
}
.entry-box__btn-list__item {
  width: calc((99.9% - 30px) / 2);
}
@media screen and (max-width: 1400px) {
  .entry-box__btn-list__item {
    width: calc((99.9% - 20px) / 2);
  }
}
@media screen and (max-width: 1200px) {
  .entry-box__btn-list__item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .entry-box__btn-list__item {
    width: calc((99.9% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .entry-box__btn-list__item {
    width: 100%;
  }
}
.entry-box__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
@media screen and (max-width: 1500px) {
  .entry-box__contact {
    flex-direction: column;
  }
}
@media screen and (max-width: 1500px) {
  .entry-box__contact__head {
    margin-bottom: 10px;
  }
}
.entry-box__contact__head__title {
  color: #ffffff;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1;
  background-color: #1e76d1;
  padding: 11px 30px 11px 35px;
}
@media screen and (max-width: 834px) {
  .entry-box__contact__head__title {
    padding: 11px 25px 11px 30px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__contact__head__title {
    padding: 11px 20px 11px 25px;
  }
}
.entry-box__contact__head__title__txt01 {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 10px;
}
@media screen and (max-width: 834px) {
  .entry-box__contact__head__title__txt01 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__contact__head__title__txt01 {
    font-size: 1.2rem;
  }
}
.entry-box__contact__head__title__txt02 {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .entry-box__contact__head__title__txt02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__contact__head__title__txt02 {
    font-size: 1.6rem;
  }
}
.entry-box__contact__body {
  padding-left: 40px;
}
@media screen and (max-width: 1500px) {
  .entry-box__contact__body {
    padding-left: 0;
  }
}
.entry-box__contact__body__link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 40px;
}
@media screen and (max-width: 1200px) {
  .entry-box__contact__body__link-list {
    gap: 5px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .entry-box__contact__body__link-list {
    gap: 5px 40px;
  }
}
@media screen and (max-width: 834px) {
  .entry-box__contact__body__link-list {
    gap: 5px 20px;
  }
}
.entry-box__contact__body__link-list__item__tel {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 2.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  line-height: 1;
  padding: 7px 0 7px 60px;
}
@media screen and (max-width: 1200px) {
  .entry-box__contact__body__link-list__item__tel {
    font-size: 2.5rem;
    padding: 5px 12px 5px 49px;
  }
}
@media screen and (max-width: 1024px) {
  .entry-box__contact__body__link-list__item__tel {
    font-size: 2.6rem;
    padding: 7px 0 7px 60px;
  }
}
@media screen and (max-width: 834px) {
  .entry-box__contact__body__link-list__item__tel {
    font-size: 2.5rem;
    padding: 5px 12px 5px 49px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__contact__body__link-list__item__tel {
    font-size: 2.3rem;
    padding: 3px 3px 3px 40px;
  }
}
.entry-box__contact__body__link-list__item__tel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_tel.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40% auto;
  background-color: #a9ddfb;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .entry-box__contact__body__link-list__item__tel::before {
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 1024px) {
  .entry-box__contact__body__link-list__item__tel::before {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 834px) {
  .entry-box__contact__body__link-list__item__tel::before {
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__contact__body__link-list__item__tel::before {
    width: 28px;
    height: 28px;
  }
}
.entry-box__contact__body__link-list__item__mail {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  padding: 11px 0 11px 60px;
}
@media screen and (max-width: 1200px) {
  .entry-box__contact__body__link-list__item__mail {
    font-size: 1.6rem;
    padding: 9px 0 9px 49px;
  }
}
@media screen and (max-width: 1024px) {
  .entry-box__contact__body__link-list__item__mail {
    font-size: 1.8rem;
    padding: 11px 0 11px 60px;
  }
}
@media screen and (max-width: 834px) {
  .entry-box__contact__body__link-list__item__mail {
    font-size: 1.6rem;
    padding: 9px 0 9px 49px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__contact__body__link-list__item__mail {
    font-size: 1.4rem;
    padding: 7px 0 7px 40px;
  }
}
.entry-box__contact__body__link-list__item__mail::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_mail.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 55% auto;
  background-color: #a9ddfb;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .entry-box__contact__body__link-list__item__mail::before {
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 1024px) {
  .entry-box__contact__body__link-list__item__mail::before {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 834px) {
  .entry-box__contact__body__link-list__item__mail::before {
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 599px) {
  .entry-box__contact__body__link-list__item__mail::before {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .entry-box__contact__body__link-list__item__mail:hover {
    text-decoration: none;
  }
}
.entry-box__address {
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 834px) {
  .entry-box__address {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */