@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1025px) {
  .pc {
    display: none !important;
  }
}
/* 1500以上 */
@media screen and (max-width: 1500px) {
  .only1500 {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* 1200以上 */
@media screen and (max-width: 1200px) {
  .only1200 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    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;
  }
}
/* SPのみ */
@media screen and (min-width: 1400px) {
  .w1400 {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 350px) {
  .w350 {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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;
  width: auto;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

li {
  list-style: none;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*--------------------------------------------------------

	body設定

----------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #5F577F;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.9;
  font-size: 16px;
  overflow-x: hidden;
  font-weight: 500;
  /*font-feature-settings: "palt" 1;*/
}
@media screen and (max-width: 1024px) {
  body {
    font-weight: 400;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 15px;
    line-height: 1.8;
  }
}
body.modal-scrooll-stop {
  overflow: hidden;
}

a {
  text-decoration: none;
}

* {
  max-height: 999999px;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: break-all; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

@media screen and (max-width: 599px) {
  body {
    padding-bottom: 60px;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.2s;
}

button {
  border: none;
  transition: 0.2s;
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
dt,
dd,
a {
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.reset {
  display: block;
}

.mt50 {
  margin-top: 50px !important;
}
@media screen and (max-width: 900px) {
  .mt50 {
    margin-top: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt50 {
    margin-top: 30px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 900px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 7px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 900px) {
  .mb20 {
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 900px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 900px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 900px) {
  .mb50 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 30px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 900px) {
  .mb60 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 900px) {
  .mb80 {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 1024px) {
  .mb100 {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 900px) {
  .mb100 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.anchor {
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (max-width: 1100px) {
  .anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .anchor {
    margin-top: -60px;
    padding-top: 60px;
  }
}

.tel-link {
  color: #5F577F !important;
  text-decoration: none !important;
  cursor: auto !important;
}

@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%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
@page {
  size: A4;
  margin: 12.7mm 9.7mm;
}
.header {
  width: 100%;
  position: relative;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-end;
  z-index: 9;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}
.header.on {
  background-color: #fff;
}
.header.on .header__logo {
  height: 120px;
}
@media screen and (max-width: 1300px) {
  .header.on .header__logo {
    height: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .header.on .header__logo {
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header.on .header__logo {
    height: 60px;
  }
}
.header.on .header__logo__link {
  width: 169px;
}
@media screen and (max-width: 1400px) {
  .header.on .header__logo__link {
    width: 65%;
  }
}
@media screen and (max-width: 1024px) {
  .header.on .header__logo__link {
    width: 75%;
  }
}
@media screen and (max-width: 599px) {
  .header.on .header__logo__link {
    width: 100%;
  }
}
.header__logo {
  padding-bottom: 5px;
  width: 350px;
  height: 155px;
  background: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 1400px) {
  .header__logo {
    width: 260px;
    height: 120px;
  }
}
@media screen and (max-width: 1300px) {
  .header__logo {
    width: 220px;
    height: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 170px;
    height: 80px;
  }
}
@media screen and (max-width: 900px) {
  .header__logo {
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 599px) {
  .header__logo {
    padding-left: 15px;
    padding-bottom: 0;
    width: 200px;
    height: 60px;
    background: none;
    justify-content: left;
  }
}
.header__logo__link {
  width: 65%;
  line-height: 0.1;
  display: block;
}
@media screen and (max-width: 1024px) {
  .header__logo__link {
    width: 75%;
  }
}
@media screen and (max-width: 599px) {
  .header__logo__link {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .header__logo__link:hover {
    transform: translateY(5px);
  }
}
.header__nav {
  padding-right: 30px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  .header__nav {
    padding-right: 22px;
    height: 100px;
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    padding-right: 15px;
    height: 80px;
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .header__nav {
    display: none;
  }
}
.header__nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  .header__nav__list {
    gap: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav__list {
    gap: 20px;
  }
}
.header__nav__list__item__link {
  font-size: 16px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 1200px) {
  .header__nav__list__item__link {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .header__nav__list__item__link:hover {
    color: #8172B7;
    transform: translateY(5px);
  }
}
.header__nav__list__item__link .now {
  color: #6B5AA8;
}
.header__nav__recruit {
  flex-shrink: 0;
  width: 150px;
  height: 60px;
  padding: 20px 27px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
}
@media screen and (max-width: 1200px) {
  .header__nav__recruit {
    width: 140px;
    height: 56px;
    padding: 18px 30px 18px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav__recruit {
    width: 130px;
    height: 50px;
    padding: 15px 24px 15px 18px;
    gap: 8px;
  }
}
@media screen and (max-width: 599px) {
  .header__nav__recruit {
    width: 110px;
    height: 44px;
    padding: 12px 18px 12px 14px;
    gap: 6px;
  }
}
.header__nav__recruit::before {
  content: "";
  width: 15px;
  aspect-ratio: 15/20;
  background-image: url(../img/common/icon_recruit.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 599px) {
  .header__nav__recruit::before {
    width: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .header__nav__recruit:hover {
    opacity: 0.85;
    transform: translateY(5px);
  }
}
.header__nav__recruit__text {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .header__nav__recruit__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .header__nav__recruit__text {
    font-size: 13px;
  }
}

.menu-btn {
  width: 80px;
  height: 80px;
  background: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
  border: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  display: none;
}
@media screen and (max-width: 900px) {
  .menu-btn {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn {
    width: 60px;
    height: 60px;
  }
}
.menu-btn__bar {
  margin: auto auto;
  width: 36%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.menu-btn__bar::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: -7px;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .menu-btn__bar::before {
    top: -6px;
  }
}
.menu-btn__bar::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: -7px;
  right: 0;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .menu-btn__bar::after {
    bottom: -6px;
  }
}
.menu-btn.on {
  background: none;
}
.menu-btn.on .menu-btn__bar::before {
  width: 0;
}
.menu-btn.on .menu-btn__bar::after {
  width: 0;
}

.menu-box {
  width: 0;
  height: 100vh;
  background-color: rgba(107, 90, 168, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transition: 0.2s;
  overflow-y: auto;
}
.menu-box::-webkit-scrollbar {
  width: 12px;
}
@media screen and (max-width: 1024px) {
  .menu-box::-webkit-scrollbar {
    width: 0;
  }
}
.menu-box::-webkit-scrollbar-track {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.menu-box::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  box-shadow: none;
}
.menu-box.on {
  width: 100vw;
}
.menu-box__inner {
  padding: 100px 80px;
  width: 100vw;
}
@media screen and (max-width: 599px) {
  .menu-box__inner {
    padding: 70px 30px 150px;
  }
}
@media screen and (max-width: 365px) {
  .menu-box__inner {
    padding: 70px 20px 150px;
  }
}
.menu-box__inner__list {
  margin: 0 auto;
  width: 100%;
  max-width: 580px;
}
.menu-box__inner__list__item {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  position: relative;
}
.menu-box__inner__list__item:first-child {
  border-top: 1px dotted rgba(255, 255, 255, 0.5);
}
.menu-box__inner__list__item__link {
  padding: 25px 20px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  background-image: url(../img/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: right 20px top 50%;
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__link {
    padding: 25px 15px;
    font-size: 16px;
    background-size: 11px auto;
    background-position: right 15px top 50%;
  }
}
@media screen and (max-width: 365px) {
  .menu-box__inner__list__item__link {
    padding: 25px 10px;
    background-size: 10px auto;
    background-position: right 10px top 50%;
  }
}
.menu-box__inner__list__item .acc-btn {
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 17px;
  right: 9px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item .acc-btn {
    top: 16px;
    right: 3px;
  }
}
.menu-box__inner__list__item .acc-btn::before {
  content: "";
  margin: auto auto;
  width: 40%;
  height: 2px;
  background-color: #8172B7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.menu-box__inner__list__item .acc-btn::after {
  content: "";
  margin: auto auto;
  width: 40%;
  height: 2px;
  background-color: #8172B7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.menu-box__inner__list__item .acc-btn.close::after {
  transform: rotate(90deg);
}
.menu-box__inner__list__item .sub-list {
  margin: 0 20px 25px;
  padding: 33px 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item .sub-list {
    margin: 0 15px 25px;
  }
}
.menu-box__inner__list__item .sub-list__item {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item .sub-list__item {
    margin-top: 16px;
  }
}
.menu-box__inner__list__item .sub-list__item:first-child {
  margin-top: 0;
}
.menu-box__inner__list__item .sub-list__item__link {
  padding-left: 18px;
  font-size: 16px;
  line-height: 1;
  color: #6B5AA8;
  font-weight: 700;
  background-image: url(../img/common/arrow_purple.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: 0 40%;
  display: block;
}
.menu-box__inner__box {
  margin: 25px auto 0;
  width: 100%;
  max-width: 580px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.menu-box__inner__box__list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__box__list {
    padding-left: 20px;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.menu-box__inner__box__link {
  padding-left: 20px;
  font-size: 16px;
  height: 20px;
  line-height: 21px;
  color: #fff;
  background-image: url(../img/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: 0 50%;
  display: block;
}
.menu-box__inner__box__bnr {
  margin: 0 auto 0;
  padding-left: 15px;
  width: 100%;
  max-width: 365px;
  height: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  background: linear-gradient(263.72deg, #9788CB 1.55%, #8EC3D5 75.22%, #9CC5DB 98.45%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  position: relative;
}
.menu-box__inner__box__bnr::before {
  content: "";
  margin: auto 0;
  width: 14px;
  height: 14px;
  background-image: url(../img/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__box__bnr {
    gap: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  .menu-box__inner__box__bnr::before {
    width: 12px;
    height: 12px;
    right: 20px;
  }
}
@media screen and (max-width: 365px) {
  .menu-box__inner__box__bnr {
    padding-left: 10px;
    height: 70px;
  }
  .menu-box__inner__box__bnr::before {
    width: 10px;
    height: 10px;
    right: 15px;
  }
}
.menu-box__inner__box__bnr__logo {
  width: 60px;
}
@media screen and (max-width: 365px) {
  .menu-box__inner__box__bnr__logo {
    width: 50px;
  }
}
.menu-box__inner__box__bnr__text {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 365px) {
  .menu-box__inner__box__bnr__text {
    font-size: 17px;
  }
}
.menu-box__inner__box__bnr__text .number {
  font-size: 1.12em;
  font-family: "Roboto", sans-serif !important;
}
.menu-box__inner__box__bnr__text__en {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 365px) {
  .menu-box__inner__box__bnr__text__en {
    margin-top: 3px;
    font-size: 13px;
  }
}

.footer {
  width: 100%;
  padding: 90px 60px 120px;
  background: linear-gradient(266deg, #8E84B2 1.3%, #8F88BF 20.07%, #7968B4 98.92%);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 80px 50px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 70px 40px 80px;
  }
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 50px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 40px 20px 30px;
  }
}
.footer::before {
  content: "";
  width: 615px;
  aspect-ratio: 615/654;
  background-image: url(../img/common/logo_mark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  position: absolute;
  top: -8px;
  left: -4px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}
@media screen and (max-width: 1200px) {
  .footer::before {
    width: 480px;
  }
}
@media screen and (max-width: 1024px) {
  .footer::before {
    width: 360px;
    top: -4px;
    left: -20px;
  }
}
@media screen and (max-width: 900px) {
  .footer::before {
    width: auto;
    height: 102%;
  }
}
@media screen and (max-width: 599px) {
  .footer::before {
    width: 75%;
    height: auto;
    top: auto;
    left: -20px;
    bottom: -2px;
  }
}
.footer__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.footer__logo {
  margin-bottom: 50px;
  line-height: 0;
}
@media screen and (max-width: 1200px) {
  .footer__logo {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 900px) {
  .footer__logo {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
.footer__logo img {
  width: 260px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .footer__logo img {
    width: 220px;
  }
}
@media screen and (max-width: 599px) {
  .footer__logo img {
    width: 180px;
  }
}
.footer__address {
  margin-bottom: 100px;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
}
@media screen and (max-width: 1200px) {
  .footer__address {
    margin-bottom: 80px;
    gap: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__address {
    gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  .footer__address {
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
@media screen and (max-width: 599px) {
  .footer__address {
    margin-bottom: 40px;
    gap: 20px;
  }
}
.footer__address__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__address__item {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .footer__address__item {
    flex-direction: column;
    align-items: center;
    gap: 0px;
    text-align: center;
  }
}
.footer__address__item__label {
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .footer__address__item__label {
    width: auto;
  }
}
.footer__address__item__body__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}
.footer__address__item__body__text a {
  color: inherit;
  text-decoration: none;
  cursor: text;
}
.footer__links {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .footer__links {
    margin-bottom: 40px;
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .footer__links {
    display: none;
  }
}
.footer__links__item {
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.footer__links__item__link {
  padding-left: 19px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background-image: url(../img/common/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: 11px auto;
  background-position: 0 45%;
  display: block;
}
@media screen and (min-width: 1025px) {
  .footer__links__item__link:hover {
    transform: translateX(5px);
  }
}
.footer__copyright {
  font-size: 10px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: normal;
  text-align: center;
}

.pagetitle {
  margin-top: 155px;
  width: 100%;
  height: 320px;
  position: relative;
  background-image: url(../img/common/pagetitle.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1500px) {
  .pagetitle {
    height: 280px;
  }
}
@media screen and (max-width: 1400px) {
  .pagetitle {
    margin-top: 120px;
  }
}
@media screen and (max-width: 1300px) {
  .pagetitle {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    margin-top: 80px;
    height: 240px;
  }
}
@media screen and (max-width: 900px) {
  .pagetitle {
    height: 220px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    margin-top: 60px;
    height: 140px;
  }
}
.pagetitle.topics {
  background-image: url(../img/topics/pagetitle.webp);
}
.pagetitle.strength {
  background-image: url(../img/strength/pagetitle.webp);
}
.pagetitle.about {
  background-image: url(../img/about/pagetitle.webp);
}
.pagetitle.advisory {
  background-image: url(../img/advisory/pagetitle.webp);
}
.pagetitle.service {
  background-image: url(../img/service/pagetitle.webp);
}
.pagetitle.recruit {
  background-image: url(../img/recruit/pagetitle.webp);
}
.pagetitle.privacy {
  background-image: url(../img/privacy/pagetitle.webp);
}
.pagetitle.requirements {
  background-image: url(../img/recruit/pagetitle.webp);
}
.pagetitle.sitemap {
  background-image: url(../img/sitemap/pagetitle.webp);
}
.pagetitle__box {
  margin: 0 auto;
  padding: 80px 40px 0;
  width: 500px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .pagetitle__box {
    margin: auto auto;
    padding: 68px 30px 0;
    width: 460px;
    height: 180px;
    top: 0;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__box {
    padding: 63px 20px 0;
    width: 400px;
    height: 160px;
    gap: 10px;
  }
}
@media screen and (max-width: 900px) {
  .pagetitle__box {
    padding: 55px 20px 0;
    width: 360px;
    height: 140px;
    gap: 9px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__box {
    padding: 38px 10px 0;
    min-width: 0;
    width: 280px;
    height: 100px;
    gap: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
.pagetitle__box::before {
  content: "";
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background-image: url(../img/common/title_icon.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1500px) {
  .pagetitle__box::before {
    width: 26px;
    height: 26px;
    top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__box::before {
    width: 24px;
    height: 24px;
    top: 30px;
  }
}
@media screen and (max-width: 900px) {
  .pagetitle__box::before {
    width: 20px;
    height: 20px;
    top: 25px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__box::before {
    width: 14px;
    height: 14px;
    top: 17px;
  }
}
.pagetitle__box__ja {
  padding-left: 0.02em;
  font-size: 40px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .pagetitle__box__ja {
    font-size: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__box__ja {
    font-size: 32px;
  }
}
@media screen and (max-width: 900px) {
  .pagetitle__box__ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__box__ja {
    font-size: 24px;
  }
}
.pagetitle__box__en {
  font-size: 17px;
  line-height: 1;
  color: #5F577F;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .pagetitle__box__en {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__box__en {
    font-size: 14px;
  }
}

.contents {
  display: flex;
  justify-content: space-between;
  align-items: strech;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  position: relative;
}
.contents__inner {
  margin: 0 auto;
  padding: 200px 100px 200px;
  width: calc(100% - 350px);
}
@media screen and (max-width: 1500px) {
  .contents__inner {
    padding: 150px 100px 180px;
  }
}
@media screen and (max-width: 1400px) {
  .contents__inner {
    padding: 80px 100px 100px;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .contents__inner {
    padding: 60px 80px 140px;
  }
}
@media screen and (max-width: 1024px) {
  .contents__inner {
    padding: 40px 60px 120px;
  }
}
@media screen and (max-width: 900px) {
  .contents__inner {
    padding: 30px 50px 100px;
  }
}
@media screen and (max-width: 599px) {
  .contents__inner {
    padding: 20px 30px 70px;
  }
}
@media screen and (max-width: 365px) {
  .contents__inner {
    padding: 20px 20px 70px;
  }
}
.contents__inner--all {
  width: 100%;
}
.contents__inner .temp-block {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .contents__inner .temp-block {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 900px) {
  .contents__inner .temp-block {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .contents__inner .temp-block {
    margin-bottom: 15px;
  }
}
.contents__inner .temp-block:last-child {
  margin-bottom: 0 !important;
}
.contents__side-nav {
  padding-top: 200px;
  width: 350px;
  height: calc(100vh - 120px - 6px + 200px);
  background-color: #F5F4F7;
  border-radius: 0 10px 0 0;
  position: sticky;
  top: -79px;
}
@media screen and (max-width: 1500px) {
  .contents__side-nav {
    height: calc(100vh - 120px - 6px + 150px);
    padding-top: 150px;
    top: -29px;
  }
}
@media screen and (max-width: 1400px) {
  .contents__side-nav {
    margin: 0 auto 100px;
    padding-top: 0;
    width: 100%;
    max-width: 1100px;
    height: auto;
    position: relative;
    top: auto;
    border-left: 1px solid #e2deea;
    border-right: 1px solid #e2deea;
  }
}
@media screen and (max-width: 1200px) {
  .contents__side-nav {
    margin: 0;
    padding-bottom: 70px;
    max-width: 100%;
    border: none;
  }
}
@media screen and (max-width: 900px) {
  .contents__side-nav {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .contents__side-nav {
    padding-bottom: 40px;
  }
}

.w1100 {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.w-all {
  margin: 0 -100px;
}
@media screen and (max-width: 1200px) {
  .w-all {
    margin: 0 -80px;
  }
}
@media screen and (max-width: 1024px) {
  .w-all {
    margin: 0 -60px;
  }
}
@media screen and (max-width: 900px) {
  .w-all {
    margin: 0 -50px;
  }
}
@media screen and (max-width: 599px) {
  .w-all {
    margin: 0 -30px;
  }
}
@media screen and (max-width: 365px) {
  .w-all {
    margin: 0 -20px;
  }
}

.sub-nav {
  width: 100%;
}
.sub-nav__title {
  width: 100%;
}
.sub-nav__title__link {
  padding: 15px;
  width: 100%;
  height: 70px;
  font-size: 17px;
  line-height: 68px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .sub-nav__title__link:hover {
    opacity: 0.8;
  }
}
.sub-nav__list {
  width: 100%;
}
.sub-nav__list__item {
  width: 100%;
  border-bottom: 1px solid #e2deea;
}
.sub-nav__list__item__link {
  padding: 23px 20px 25px 40px;
  font-size: 16px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.2s;
}
.sub-nav__list__item__link::before {
  content: "";
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8172B7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  opacity: 0;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .sub-nav__list__item__link:hover {
    color: #8172B7;
  }
  .sub-nav__list__item__link:hover::before {
    opacity: 1;
  }
}
.sub-nav__list__item__link.now {
  background-color: #e2deea;
}
.sub-nav__list__item__link.now::before {
  opacity: 1;
}
.sub-nav__bnrs {
  padding: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1400px) {
  .sub-nav__bnrs {
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid #e2deea;
  }
}
@media screen and (max-width: 599px) {
  .sub-nav__bnrs {
    padding: 30px 30px 0;
    border-bottom: none;
  }
}
.sub-nav__bnrs__item {
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .sub-nav__bnrs__item {
    width: calc((100% - 10px) / 2);
    max-width: 275px;
  }
}
@media screen and (max-width: 599px) {
  .sub-nav__bnrs__item {
    width: 100%;
    max-width: 275px;
  }
}
.sub-nav__bnrs__item__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .sub-nav__bnrs__item__link:hover {
    opacity: 0.8;
    transform: translateY(5px);
  }
}

.breadcrumbs {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .breadcrumbs {
    padding: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .breadcrumbs {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs {
    padding: 15px;
    gap: 8px;
    flex-wrap: wrap;
  }
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:first-child) {
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .breadcrumbs__item:not(:first-child) {
    gap: 5px;
  }
}
.breadcrumbs__item:not(:first-child)::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #5F577F;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs__item:not(:first-child)::before {
    width: 16px;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs__item:not(:first-child)::before {
    width: 8px;
  }
}
.breadcrumbs__item__link {
  font-size: 13px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 15em;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs__item__link {
    max-width: 10em;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumbs__item__link {
    font-size: 12px;
    max-width: 8em;
  }
}
@media screen and (min-width: 1025px) {
  .breadcrumbs__item__link:hover {
    opacity: 0.7;
  }
}
.breadcrumbs__item__current {
  max-width: 15em;
  font-size: 13px;
  line-height: 1;
  color: #a2a2a2;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .breadcrumbs__item__current {
    max-width: 10em;
    font-size: 12px;
  }
}
@media screen and (max-width: 365px) {
  .breadcrumbs__item__current {
    max-width: 8em;
  }
}

.title-sub {
  margin-bottom: 35px;
  padding-bottom: 30px;
  width: 100%;
  font-size: 29px;
  line-height: 1.17;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .title-sub {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .title-sub {
    margin-bottom: 30px;
    padding-bottom: 25px;
    font-size: 24px;
  }
}
@media screen and (max-width: 900px) {
  .title-sub {
    margin-bottom: 25px;
    padding-bottom: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .title-sub {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 20px;
  }
}
.title-sub::after {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #5F577F;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .title-sub::after {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .title-sub::after {
    width: 80px;
  }
}

.base-title01 {
  margin-bottom: 35px;
  padding-bottom: 30px;
  width: 100%;
  font-size: 29px;
  line-height: 1.17;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .base-title01 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .base-title01 {
    margin-bottom: 30px;
    padding-bottom: 25px;
    font-size: 24px;
  }
}
@media screen and (max-width: 900px) {
  .base-title01 {
    margin-bottom: 25px;
    padding-bottom: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .base-title01 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 20px;
  }
}
.base-title01::after {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #5F577F;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .base-title01::after {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .base-title01::after {
    width: 80px;
  }
}

.base-title02 {
  margin-bottom: 30px;
  padding: 20px 20px 21px 40px;
  font-size: 21px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-color: #F5F4F7;
  position: relative;
}
.base-title02::before {
  content: "";
  margin: auto 0;
  width: 24px;
  height: 1px;
  background-color: #8172B7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .base-title02 {
    margin-bottom: 25px;
    padding: 18px 20px 19px 36px;
    font-size: 19px;
  }
  .base-title02::before {
    width: 21px;
  }
}
@media screen and (max-width: 900px) {
  .base-title02 {
    margin-bottom: 20px;
    padding: 15px 15px 16px 30px;
    font-size: 18px;
  }
  .base-title02::before {
    width: 18px;
  }
}
@media screen and (max-width: 599px) {
  .base-title02 {
    margin-bottom: 16px;
    padding: 12px 15px 14px 24px;
    font-size: 16px;
  }
  .base-title02::before {
    width: 15px;
  }
}
.base-title02.line {
  color: #fff;
  background-color: #8172B7;
}
.base-title02.line::before {
  background-color: #fff;
}

.base-title03 {
  margin-bottom: 20px;
  padding: 9px 0 9px 20px;
  font-size: 20px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  position: relative;
}
.base-title03::before {
  content: "";
  width: 1px;
  height: 44px;
  background-color: #8172B7;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .base-title03 {
    margin-bottom: 15px;
    padding: 6px 0 8px 26px;
    font-size: 19px;
  }
  .base-title03::before {
    height: 38px;
  }
}
@media screen and (max-width: 900px) {
  .base-title03 {
    margin-bottom: 15px;
    padding: 6px 0 6px 20px;
    font-size: 18px;
  }
  .base-title03::before {
    height: 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-title03 {
    margin-bottom: 12px;
    padding: 4px 0 6px 16px;
    font-size: 16px;
  }
  .base-title03::before {
    height: 30px;
  }
}
.base-title03.line {
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .base-title03.line {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 900px) {
  .base-title03.line {
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  .base-title03.line {
    padding-bottom: 11px;
  }
}

.base-title04 {
  margin-bottom: 18px;
  padding-left: 28px;
  font-size: 19px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  position: relative;
}
.base-title04::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #8172B7;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .base-title04 {
    margin-bottom: 12px;
    padding-left: 24px;
    font-size: 18px;
  }
  .base-title04::before {
    top: 6px;
  }
}
@media screen and (max-width: 900px) {
  .base-title04 {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 17px;
  }
  .base-title04::before {
    width: 10px;
    height: 10px;
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .base-title04 {
    margin-bottom: 8px;
    padding-left: 16px;
    font-size: 16px;
  }
  .base-title04::before {
    width: 8px;
    height: 8px;
    top: 7px;
  }
}
.base-title04.line {
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .base-title04.line {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 900px) {
  .base-title04.line {
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 599px) {
  .base-title04.line {
    padding-bottom: 9px;
  }
}

.base-title05 {
  margin-bottom: 18px;
  padding-bottom: 14px;
  width: 100%;
  font-size: 18px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .base-title05 {
    margin-bottom: 15px;
    padding-bottom: 12px;
    font-size: 17px;
  }
}
@media screen and (max-width: 900px) {
  .base-title05 {
    margin-bottom: 13px;
    padding-bottom: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .base-title05 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }
}
.base-title05::after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #5F577F;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .base-title05::after {
    width: 60px;
  }
}
@media screen and (max-width: 599px) {
  .base-title05::after {
    width: 40px;
  }
}

.base-title06 {
  margin-bottom: 20px;
  padding: 12px 15px 12px 35px;
  font-size: 17px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-color: #F5F4F7;
  position: relative;
}
.base-title06::before {
  content: "";
  margin: auto 0;
  width: 8px;
  height: 8px;
  background-color: #8172B7;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
}
@media screen and (max-width: 1024px) {
  .base-title06 {
    margin-bottom: 16px;
    padding: 10px 15px 10px 30px;
    font-size: 16px;
  }
  .base-title06::before {
    width: 6px;
    height: 6px;
    left: 12px;
  }
}
@media screen and (max-width: 900px) {
  .base-title06 {
    margin-bottom: 14px;
    padding: 9px 15px 9px 26px;
    font-size: 16px;
  }
  .base-title06::before {
    width: 6px;
    height: 6px;
    left: 12px;
  }
}
@media screen and (max-width: 599px) {
  .base-title06 {
    margin-bottom: 12px;
    padding: 8px 15px 8px 22px;
    font-size: 15px;
  }
  .base-title06::before {
    width: 5px;
    height: 5px;
    left: 10px;
  }
}
.base-title06.line {
  color: #fff;
  background-color: #B088BF;
}
.base-title06.line::before {
  background-color: #fff;
}

.btn-base {
  padding: 18px 45px 19px 40px;
  min-width: 200px;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 500;
  letter-spacing: normal;
  text-align: center;
  background-image: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
  border: none;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}
.btn-base::before {
  content: "";
  margin: auto 0;
  width: 14px;
  height: 10px;
  background-image: url(../img/common/arrow_white.svg);
  background-position: 50% 50%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}
@media screen and (max-width: 599px) {
  .btn-base {
    padding: 16px 40px 17px 35px;
    min-width: 180px;
    font-size: 16px;
  }
  .btn-base::before {
    width: 12px;
    height: 9px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-base:hover {
    opacity: 0.8;
    transform: translateX(5px);
  }
}
.btn-base.en {
  font-size: 19px;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .btn-base.en {
    font-size: 17px;
  }
}
.btn-base.line {
  color: #8172B7;
  background: transparent;
  border: 1px solid #8172B7;
}
.btn-base.line::before {
  background-image: url(../img/common/arrow_purple.svg);
}
@media screen and (min-width: 1025px) {
  .btn-base.line:hover {
    color: #fff;
    background: #8172B7;
    opacity: 1;
  }
  .btn-base.line:hover::before {
    background-image: url(../img/common/arrow_white.svg);
  }
}
.btn-base.back {
  padding: 18px 40px 19px 45px;
}
@media screen and (max-width: 599px) {
  .btn-base.back {
    padding: 16px 35px 17px 40px;
  }
}
.btn-base.back::before {
  left: 15px;
  right: auto;
  transform: rotate(180deg);
}
@media screen and (min-width: 1025px) {
  .btn-base.back:hover {
    transform: translateX(-5px);
  }
}

.pager {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .pager {
    margin-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  .pager {
    margin-top: 30px;
    gap: 5px;
  }
}
@media screen and (max-width: 365px) {
  .pager__prev {
    display: none;
  }
}
.pager__prev__link {
  font-size: 15px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
}
@media screen and (max-width: 599px) {
  .pager__prev__link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .pager__prev__link:hover {
    color: #6B5AA8;
    transform: translateX(-5px);
  }
}
.pager__prev__link__arrow {
  padding-top: 1px;
  font-size: 12px;
}
@media screen and (max-width: 365px) {
  .pager__next {
    display: none;
  }
}
.pager__next__link {
  font-size: 15px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
}
@media screen and (max-width: 599px) {
  .pager__next__link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .pager__next__link:hover {
    color: #6B5AA8;
    transform: translateX(5px);
  }
}
.pager__next__link__arrow {
  padding-top: 1px;
  font-size: 12px;
}
.pager__item {
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  color: #5F577F;
}
@media screen and (max-width: 599px) {
  .pager__item {
    height: 38px;
    font-size: 15px;
    line-height: 38px;
  }
}
.pager__item.now {
  width: 50px;
  height: 50px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  letter-spacing: normal;
  text-align: center;
  background: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
  border: 1px solid #8172B7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .pager__item.now {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
.pager__item__link {
  width: 50px;
  height: 100%;
  font-size: 18px;
  line-height: 1;
  color: #8172B7;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  letter-spacing: normal;
  text-align: center;
  background-color: #fff;
  border: 1px solid #8172B7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .pager__item__link {
    width: 38px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .pager__item__link:hover {
    color: #fff;
    background-color: #8172B7;
    transform: translateY(5px);
  }
}
.pager__item__link.nolink {
  color: #fff;
  background: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
}
@media screen and (min-width: 1025px) {
  .pager__item__link.nolink:hover {
    color: #fff;
    background: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
    transform: translateY(0);
  }
}

.text-link {
  color: #8172B7;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .text-link:hover {
    text-decoration: none;
  }
}

.index-btn-list {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .index-btn-list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .index-btn-list {
    margin-bottom: 25px;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}
.index-btn-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .index-btn-list.cl03 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.index-btn-list > li > a {
  padding: 20px 50px 20px 20px;
  font-size: 16px;
  line-height: 1.3;
  color: #5F577F;
  position: relative;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-image: url(../img/common/arrow_purple.svg);
  background-position: right 15px top 50%;
  background-size: 16px auto;
  background-repeat: no-repeat;
  border: 1px solid #d5d5d5;
  display: block;
}
@media screen and (max-width: 599px) {
  .index-btn-list > li > a {
    padding: 16px 36px 16px 12px;
    font-size: 15px;
    background-position: right 12px top 50%;
    background-size: 12px auto;
  }
}
@media screen and (min-width: 1025px) {
  .index-btn-list > li > a:hover {
    color: #fff;
    background-color: #8172B7;
    background-image: url(../img/common/arrow_white.svg);
    transform: translateX(5px);
  }
}

.base-btn-list {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .base-btn-list {
    margin-bottom: 30px;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .base-btn-list {
    margin-bottom: 25px;
    gap: 5px;
  }
}
.base-btn-list.position-left {
  justify-items: left;
}
.base-btn-list.position-center {
  justify-items: center;
}
.base-btn-list.position-right {
  justify-items: right;
}
.base-btn-list.cl02 {
  grid-template-columns: repeat(2, 1fr);
  justify-items: normal;
}
@media screen and (max-width: 599px) {
  .base-btn-list.cl02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.base-btn-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
  justify-items: normal;
}
@media screen and (max-width: 599px) {
  .base-btn-list.cl03 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.base-btn-list:not(.cl02):not(.cl03) .base-btn-list__item a {
  width: auto;
  min-width: 260px;
  display: inline-block;
}
.base-btn-list__item a {
  padding: 18px 45px 19px 40px;
  width: 100%;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
  background-image: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
  border: none;
  display: block;
  position: relative;
  transition: 0.2s;
}
.base-btn-list__item a::before {
  content: "";
  margin: auto 0;
  width: 14px;
  height: 10px;
  background-image: url(../img/common/arrow_white.svg);
  background-position: 50% 50%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}
@media screen and (max-width: 599px) {
  .base-btn-list__item a {
    padding: 16px 40px 17px 35px;
    min-width: 180px;
    font-size: 16px;
  }
  .base-btn-list__item a::before {
    width: 12px;
    height: 9px;
  }
}
@media screen and (min-width: 1025px) {
  .base-btn-list__item a:hover {
    opacity: 0.8;
    transform: translateX(5px);
  }
}
.base-btn-list--border a {
  border: 2px solid #8172B7;
  background: none;
  background-color: #fff;
  color: #5F577F;
}
.base-btn-list--border a::before {
  background-image: url(../img/common/arrow_purple.svg);
}
@media screen and (min-width: 1025px) {
  .base-btn-list--border a:hover {
    color: #fff;
    background-color: #8172B7;
  }
  .base-btn-list--border a:hover::before {
    background-image: url(../img/common/arrow_white.svg);
  }
}

.text-base {
  font-size: 16px;
  line-height: 1.9;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .text-base {
    font-size: 15px;
    line-height: 1.8;
  }
}
.text-base--center {
  padding-left: 0.06em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .text-base--center {
    padding: 0;
    text-align: justify;
  }
}

.text-copy01 {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.5;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .text-copy01 {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .text-copy01 {
    margin-bottom: 12px;
    font-size: 19px;
  }
}
@media screen and (max-width: 599px) {
  .text-copy01 {
    margin-bottom: 10px;
    font-size: 17px;
  }
}

.text-copy02 {
  margin-bottom: 18px;
  font-size: 23px;
  line-height: 1.5;
  color: #5F577F;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .text-copy02 {
    margin-bottom: 15px;
    font-size: 21px;
  }
}
@media screen and (max-width: 900px) {
  .text-copy02 {
    margin-bottom: 12px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .text-copy02 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.text-base-box {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.9;
  color: #5F577F;
  text-align: justify;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .text-base-box {
    margin-bottom: 30px;
    gap: 25px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
    gap: 15px;
  }
}
.text-base-box.cl02 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 599px) {
  .text-base-box.cl02 {
    grid-template-columns: 1fr;
  }
}
.text-base-box.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .text-base-box.cl03 {
    grid-template-columns: 1fr;
  }
}
.text-base-box--base {
  background-color: #F5F4F7;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .text-base-box--base {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box--base {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .text-base-box--base {
    padding: 22px 25px;
  }
}
.text-base-box--gray {
  background-color: #F3F3F3;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .text-base-box--gray {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box--gray {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .text-base-box--gray {
    padding: 22px 25px;
  }
}
.text-base-box--pink {
  background-color: #FFF2F2;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .text-base-box--pink {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box--pink {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .text-base-box--pink {
    padding: 22px 25px;
  }
}
.text-base-box--border {
  border: 1px solid #d5d5d5;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .text-base-box--border {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .text-base-box--border {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .text-base-box--border {
    padding: 22px 25px;
  }
}

.base-list01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .base-list01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .base-list01 {
    margin-bottom: 25px;
  }
}
.base-list01 > li {
  margin-bottom: 12px;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 1.3;
  color: #5F577F;
  position: relative;
}
.base-list01 > li:last-child {
  margin-bottom: 0;
}
.base-list01 > li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #8172B7;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .base-list01 > li {
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 15px;
  }
  .base-list01 > li::before {
    width: 7px;
    height: 7px;
    top: 5px;
  }
}
.base-list01--base {
  background-color: #F5F4F7;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .base-list01--base {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-list01--base {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .base-list01--base {
    padding: 22px 25px;
  }
}
.base-list01--gray {
  background-color: #F3F3F3;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .base-list01--gray {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-list01--gray {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .base-list01--gray {
    padding: 22px 25px;
  }
}
.base-list01--pink {
  background-color: #FFF2F2;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .base-list01--pink {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-list01--pink {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .base-list01--pink {
    padding: 22px 25px;
  }
}
.base-list01--border {
  border: 1px solid #d5d5d5;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .base-list01--border {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-list01--border {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .base-list01--border {
    padding: 22px 25px;
  }
}

.base-number-list01 {
  list-style: none;
  counter-reset: num;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .base-number-list01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .base-number-list01 {
    margin-bottom: 25px;
  }
}
.base-number-list01 > li {
  padding-left: 24px;
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 1.4;
  color: #5F577F;
  position: relative;
}
.base-number-list01 > li::before {
  content: counter(num) "．";
  counter-increment: num;
  top: 0px;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .base-number-list01 > li {
    padding-left: 20px;
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.base-number-list01 > li:last-child {
  margin-bottom: 0;
}
.base-number-list01--base {
  background-color: #F5F4F7;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .base-number-list01--base {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-number-list01--base {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .base-number-list01--base {
    padding: 22px 25px;
  }
}
.base-number-list01--gray {
  background-color: #F3F3F3;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .base-number-list01--gray {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-number-list01--gray {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .base-number-list01--gray {
    padding: 22px 25px;
  }
}
.base-number-list01--pink {
  background-color: #FFF2F2;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .base-number-list01--pink {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-number-list01--pink {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .base-number-list01--pink {
    padding: 22px 25px;
  }
}
.base-number-list01--border {
  border: 1px solid #d5d5d5;
  padding: 35px 40px;
}
@media screen and (max-width: 1024px) {
  .base-number-list01--border {
    padding: 30px 35px;
  }
}
@media screen and (max-width: 599px) {
  .base-number-list01--border {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 365px) {
  .base-number-list01--border {
    padding: 22px 25px;
  }
}

.dl-list01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .dl-list01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01 {
    margin-bottom: 25px;
  }
}
.dl-list01 dt {
  margin-bottom: 5px;
  padding-left: 18px;
  font-size: 17px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  position: relative;
}
.dl-list01 dt::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #8172B7;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .dl-list01 dt {
    font-size: 16px;
  }
  .dl-list01 dt::before {
    width: 11px;
    height: 11px;
    top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01 dt {
    font-size: 15px;
  }
  .dl-list01 dt::before {
    width: 10px;
    height: 10px;
    top: 5px;
  }
}
.dl-list01 dd {
  margin-bottom: 15px;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #5F577F;
}
@media screen and (max-width: 1024px) {
  .dl-list01 dd {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01 dd {
    font-size: 15px;
  }
}
.dl-list01--base {
  background-color: #F5F4F7;
  padding: 35px 40px 20px;
}
@media screen and (max-width: 1024px) {
  .dl-list01--base {
    padding: 30px 35px 20px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01--base {
    padding: 25px 30px 15px;
  }
}
@media screen and (max-width: 365px) {
  .dl-list01--base {
    padding: 22px 25px 12px;
  }
}
.dl-list01--gray {
  background-color: #F3F3F3;
  padding: 35px 40px 20px;
}
@media screen and (max-width: 1024px) {
  .dl-list01--gray {
    padding: 30px 35px 20px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01--gray {
    padding: 25px 30px 15px;
  }
}
@media screen and (max-width: 365px) {
  .dl-list01--gray {
    padding: 22px 25px 12px;
  }
}
.dl-list01--pink {
  background-color: #FFF2F2;
  padding: 35px 40px 20px;
}
@media screen and (max-width: 1024px) {
  .dl-list01--pink {
    padding: 30px 35px 20px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01--pink {
    padding: 25px 30px 15px;
  }
}
@media screen and (max-width: 365px) {
  .dl-list01--pink {
    padding: 22px 25px 12px;
  }
}
.dl-list01--border {
  border: 1px solid #d5d5d5;
  padding: 35px 40px 20px;
}
@media screen and (max-width: 1024px) {
  .dl-list01--border {
    padding: 30px 35px 20px;
  }
}
@media screen and (max-width: 599px) {
  .dl-list01--border {
    padding: 25px 30px 15px;
  }
}
@media screen and (max-width: 365px) {
  .dl-list01--border {
    padding: 22px 25px 12px;
  }
}

.base-file-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .base-file-list {
    margin-bottom: 30px;
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .base-file-list {
    margin-bottom: 25px;
    gap: 10px;
  }
}
.base-file-list.cl02 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 599px) {
  .base-file-list.cl02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.base-file-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .base-file-list.cl03 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.base-file-list > li > a {
  display: block;
  border: 1px solid #d5d5d5;
  color: #5F577F;
  line-height: 1.3;
  padding: 22px 50px 22px 55px;
  position: relative;
  background-position: left 20px top 50%;
  background-repeat: no-repeat;
  background-size: 23px auto;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .base-file-list > li > a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .base-file-list > li > a {
    padding: 20px 40px 20px 55px;
    font-size: 1.5rem;
  }
}
.base-file-list > li > a::before, .base-file-list > li > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base-file-list > li > a::before {
  background-color: #B088BF;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  right: 16px;
}
.base-file-list > li > a::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 23px;
}
@media screen and (min-width: 1025px) {
  .base-file-list > li > a:hover {
    color: #fff;
    background-color: #8172B7;
    transform: translateX(5px);
  }
}
.base-file-list > li > a.pdf {
  background-image: url(../img/common/icon-pdf.svg);
}
.base-file-list > li > a.word {
  background-image: url(../img/common/icon-word.svg);
}
.base-file-list > li > a.xls {
  background-image: url(../img/common/icon-xls.svg);
}
.base-file-list > li > a.ppt {
  background-image: url(../img/common/icon-ppt.svg);
}

.base-link-list {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 900px) {
  .base-link-list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .base-link-list {
    margin-bottom: 25px;
  }
}
.base-link-list > li > a {
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #5F577F;
  display: inline-block;
  position: relative;
}
.base-link-list > li > a::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #8172B7;
}
.base-link-list > li > a::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  display: block;
}
@media screen and (max-width: 599px) {
  .base-link-list > li > a {
    padding-left: 20px;
    font-size: 15px;
  }
  .base-link-list > li > a::before {
    top: 1px;
    width: 17px;
    height: 17px;
  }
  .base-link-list > li > a::after {
    top: 7px;
    left: 5px;
    width: 5px;
    height: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .base-link-list > li > a:hover {
    color: #8172B7;
    text-decoration: none;
    transform: translateX(5px);
  }
}
.base-link-list.cl02 {
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 599px) {
  .base-link-list.cl02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.base-link-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 599px) {
  .base-link-list.cl03 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.file-list-text {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 40px;
}
@media screen and (max-width: 900px) {
  .file-list-text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .file-list-text {
    margin-bottom: 25px;
    gap: 10px 20px;
  }
}
.file-list-text.cl02 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 599px) {
  .file-list-text.cl02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.file-list-text.cl02 .file-list-text__item {
  margin-bottom: 0;
}
.file-list-text.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .file-list-text.cl03 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.file-list-text.cl03 .file-list-text__item {
  margin-bottom: 0;
}
.file-list-text__item {
  padding: 0 0 10px 0px;
  font-size: 1.6rem;
  line-height: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .file-list-text__item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .file-list-text__item {
    padding: 0px 0 10px 0px;
    padding-top: 0;
    line-height: 1.3em;
    font-size: 1.5rem;
  }
}
.file-list-text__item a {
  padding: 0px 0 0px 30px;
  font-size: 17px;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: 0 1px;
  display: block;
  position: relative;
}
.file-list-text__item a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  background-size: 100% auto;
  width: 19px;
  height: 25px;
}
@media screen and (max-width: 599px) {
  .file-list-text__item a::before {
    top: -2px;
  }
}
@media screen and (max-width: 599px) {
  .file-list-text__item a {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .file-list-text__item a:hover {
    color: #8172B7;
    transform: translateX(5px);
  }
}
.file-list-text__item.pdf a::before {
  background-image: url(../img/common/icon-pdf.svg);
}
.file-list-text__item.xls a::before {
  background-image: url(../img/common/icon-xls.svg);
}
.file-list-text__item.doc a::before {
  background-image: url(../img/common/icon-word.svg);
}
.file-list-text__item.ppt a::before {
  background-image: url(../img/common/icon-ppt.svg);
}
.file-list-text__item p {
  padding-left: 30px;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.6;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .file-list-text__item p {
    font-size: 14px;
  }
}

.anchor-list {
  background-color: #e8ecf6;
  padding: 35px 40px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .anchor-list {
    margin-bottom: 30px;
    padding: 30px 35px 20px;
  }
}
@media screen and (max-width: 599px) {
  .anchor-list {
    margin-bottom: 25px;
    padding: 25px 30px 15px;
  }
}
@media screen and (max-width: 365px) {
  .anchor-list {
    padding: 22px 25px 12px;
  }
}
.anchor-list.cl03, .anchor-list.cl04, .anchor-list.cl05 {
  display: grid;
  gap: 10px 20px;
}
.anchor-list.cl03 li, .anchor-list.cl04 li, .anchor-list.cl05 li {
  margin: 0 !important;
}
.anchor-list.cl03 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 599px) {
  .anchor-list.cl03 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.anchor-list.cl04 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 599px) {
  .anchor-list.cl04 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.anchor-list.cl05 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 20px;
}
@media screen and (max-width: 1024px) {
  .anchor-list.cl05 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .anchor-list.cl05 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.anchor-list.cl05 li {
  margin: 0 !important;
}
.anchor-list > li {
  margin: 0 20px 10px 0;
}
.anchor-list > li > a {
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #5F577F;
  display: inline-block;
  position: relative;
}
.anchor-list > li > a::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #8172B7;
}
.anchor-list > li > a::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
  display: block;
}
@media screen and (max-width: 599px) {
  .anchor-list > li > a {
    padding-left: 20px;
    font-size: 15px;
  }
  .anchor-list > li > a::before {
    top: 1px;
    width: 17px;
    height: 17px;
  }
  .anchor-list > li > a::after {
    top: 6px;
    left: 6px;
    width: 5px;
    height: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .anchor-list > li > a:hover {
    color: #8172B7;
    text-decoration: none;
    transform: translateY(5px);
  }
}

.column-table {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .column-table {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .column-table {
    margin-bottom: 25px;
  }
}
.column-table {
  /*配下にacms-table-scrollableが含まれていたら*/
}
@media screen and (max-width: 599px) {
  .column-table:has(.acms-table-scrollable) {
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
  }
}

.entry-container {
  margin: 0;
}

.base-table01,
.js-table-unit-scroll-hint,
.acms-table-scrollable {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
  color: #5F577F;
}
@media screen and (max-width: 900px) {
  .base-table01,
  .js-table-unit-scroll-hint,
  .acms-table-scrollable {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .base-table01,
  .js-table-unit-scroll-hint,
  .acms-table-scrollable {
    font-size: 13px;
  }
}
.base-table01 th, .base-table01 td,
.js-table-unit-scroll-hint th,
.js-table-unit-scroll-hint td,
.acms-table-scrollable th,
.acms-table-scrollable td {
  padding: 17px 15px 15px;
  vertical-align: middle;
  border: 1px solid #d5d5d5;
}
@media screen and (max-width: 599px) {
  .base-table01 th, .base-table01 td,
  .js-table-unit-scroll-hint th,
  .js-table-unit-scroll-hint td,
  .acms-table-scrollable th,
  .acms-table-scrollable td {
    padding: 10px 5px 9px;
  }
}
.base-table01 th.acms-cell-text-left, .base-table01 td.acms-cell-text-left,
.js-table-unit-scroll-hint th.acms-cell-text-left,
.js-table-unit-scroll-hint td.acms-cell-text-left,
.acms-table-scrollable th.acms-cell-text-left,
.acms-table-scrollable td.acms-cell-text-left {
  text-align: left !important;
}
.base-table01 th.acms-cell-text-center, .base-table01 td.acms-cell-text-center,
.js-table-unit-scroll-hint th.acms-cell-text-center,
.js-table-unit-scroll-hint td.acms-cell-text-center,
.acms-table-scrollable th.acms-cell-text-center,
.acms-table-scrollable td.acms-cell-text-center {
  text-align: center !important;
}
.base-table01 th.acms-cell-text-right, .base-table01 td.acms-cell-text-right,
.js-table-unit-scroll-hint th.acms-cell-text-right,
.js-table-unit-scroll-hint td.acms-cell-text-right,
.acms-table-scrollable th.acms-cell-text-right,
.acms-table-scrollable td.acms-cell-text-right {
  text-align: right !important;
}
.base-table01 th.bg-color01, .base-table01 td.bg-color01,
.js-table-unit-scroll-hint th.bg-color01,
.js-table-unit-scroll-hint td.bg-color01,
.acms-table-scrollable th.bg-color01,
.acms-table-scrollable td.bg-color01 {
  padding: 10px 10px 9px;
  background-color: #B088BF;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .base-table01 th.bg-color01, .base-table01 td.bg-color01,
  .js-table-unit-scroll-hint th.bg-color01,
  .js-table-unit-scroll-hint td.bg-color01,
  .acms-table-scrollable th.bg-color01,
  .acms-table-scrollable td.bg-color01 {
    padding: 8px 5px 7px;
  }
}
.base-table01 th.bg-color02, .base-table01 td.bg-color02,
.js-table-unit-scroll-hint th.bg-color02,
.js-table-unit-scroll-hint td.bg-color02,
.acms-table-scrollable th.bg-color02,
.acms-table-scrollable td.bg-color02 {
  color: #6B5AA8;
  background-color: #F5F4F7;
}
.base-table01 th.wd30, .base-table01 td.wd30,
.js-table-unit-scroll-hint th.wd30,
.js-table-unit-scroll-hint td.wd30,
.acms-table-scrollable th.wd30,
.acms-table-scrollable td.wd30 {
  width: 30%;
}
.base-table01 th.wd20, .base-table01 td.wd20,
.js-table-unit-scroll-hint th.wd20,
.js-table-unit-scroll-hint td.wd20,
.acms-table-scrollable th.wd20,
.acms-table-scrollable td.wd20 {
  width: 20%;
}
.base-table01--cell-small th, .base-table01--cell-small td,
.js-table-unit-scroll-hint--cell-small th,
.js-table-unit-scroll-hint--cell-small td,
.acms-table-scrollable--cell-small th,
.acms-table-scrollable--cell-small td {
  padding: 7px;
  line-height: 1.4;
}
.base-table01--fixed,
.js-table-unit-scroll-hint--fixed,
.acms-table-scrollable--fixed {
  table-layout: fixed;
}
@media screen and (max-width: 599px) {
  .base-table01--sp-small th, .base-table01--sp-small td,
  .js-table-unit-scroll-hint--sp-small th,
  .js-table-unit-scroll-hint--sp-small td,
  .acms-table-scrollable--sp-small th,
  .acms-table-scrollable--sp-small td {
    font-size: 1.3rem;
    padding: 10px 5px;
  }
}

/*スクロールするテーブル a-blogデフォルト*/
@media screen and (max-width: 599px) {
  .acms-table-scrollable {
    width: 700px;
  }
}

@media screen and (max-width: 599px) {
  .tbl-sp-scroll table {
    width: 700px;
  }
}

/* 募集要項テーブル */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #dadada;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #5F577F;
}
.recruit-table th,
.recruit-table td {
  vertical-align: top;
  text-align: left;
  border: none;
}
.recruit-table tbody tr {
  position: relative;
  border-top: 1px solid #dadada;
}
.recruit-table tbody tr::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 70px;
  height: 1px;
  background-color: #5F577F;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .recruit-table tbody tr::before {
    width: 50px;
  }
}
.recruit-table th {
  width: 250px;
  padding: 30px 25px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  background-color: #F5F4F7;
  word-break: break-word;
}
@media screen and (max-width: 1024px) {
  .recruit-table th {
    width: 220px;
    padding: 25px 20px;
    font-size: 17px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-table th {
    width: 200px;
    padding: 22px 18px;
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-table th {
    display: block;
    width: 100%;
    padding: 12px 15px 12px;
    font-size: 15px;
  }
}
.recruit-table td {
  padding: 30px 0 30px 30px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  word-break: break-word;
}
@media screen and (max-width: 1024px) {
  .recruit-table td {
    padding: 25px 0 25px 25px;
    font-size: 15px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-table td {
    padding: 22px 0 22px 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-table td {
    display: block;
    width: 100%;
    padding: 15px 15px 25px;
    font-size: 15px;
  }
}
.recruit-table td a {
  color: #5F577F;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .recruit-table td a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 599px) {
  .recruit-table tbody tr {
    display: block;
  }
  .recruit-table tbody tr::before {
    width: 50px;
  }
}

/*--------------------------------------------------------
photo
----------------------------------------------------------*/
.base-photo-3 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .base-photo-3 {
    gap: 15px;
  }
}
.base-photo-3::after {
  content: none;
}
.base-photo-3 li {
  width: calc((100% - 40px) / 3);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .base-photo-3 li {
    width: calc((100% - 30px) / 3);
  }
}
.base-photo-3 li img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .base-photo-3 li {
    width: 100%;
    /*SP 画像あり → PC 画像を隠す
    SP 画像なし → PC 画像はそのまま表示*/
  }
  .base-photo-3 li:has(img.sp) img:not(.sp) {
    display: none;
  }
}

.base-photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .base-photo-2 {
    gap: 15px;
  }
}
.base-photo-2::after {
  content: none;
}
.base-photo-2 li {
  width: calc((100% - 20px) / 2);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .base-photo-2 li {
    width: calc((100% - 15px) / 2);
  }
}
.base-photo-2 li img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .base-photo-2 li {
    width: 100%;
    /*SP 画像あり → PC 画像を隠す
    SP 画像なし → PC 画像はそのまま表示*/
  }
  .base-photo-2 li:has(img.sp) img:not(.sp) {
    display: none;
  }
}

.base-photo-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 599px) {
  .base-photo-1 {
    gap: 15px;
    /*SP 画像あり → PC 画像を隠す
    SP 画像なし → PC 画像はそのまま表示*/
  }
  .base-photo-1:has(img.sp) img:not(.sp) {
    display: none;
  }
}
.base-photo-1 li {
  width: 100%;
  text-align: center;
}
.base-photo-1 li img {
  max-width: 100%;
}
.base-photo-1.w80p li img {
  max-width: 80%;
}
@media screen and (max-width: 599px) {
  .base-photo-1.w80p li img {
    max-width: 100%;
  }
}

.base-photo-caption {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #5F577F;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .base-photo-caption {
    margin-top: 5px;
    font-size: 13px;
  }
}

.photo-auto {
  padding: 0 !important;
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .photo-auto {
    display: block;
  }
}
.photo-auto li {
  list-style: none !important;
  text-align: center;
  margin-bottom: 15px;
}
.photo-auto li img {
  max-width: auto;
}
@media screen and (max-width: 599px) {
  .photo-auto li {
    width: 100%;
  }
}

.column-block-editor {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .column-block-editor {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .column-block-editor {
    margin-bottom: 25px;
  }
}

.column-wysiwyg {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .column-wysiwyg {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .column-wysiwyg {
    margin-bottom: 25px;
  }
}

/*ウィジウィグデフォルト設定*/
.wysiwyg-block h1,
.column-wysiwyg h1 {
  margin-bottom: 35px;
  padding-bottom: 30px;
  width: 100%;
  font-size: 29px;
  line-height: 1.17;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .wysiwyg-block h1,
  .column-wysiwyg h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h1,
  .column-wysiwyg h1 {
    margin-bottom: 30px;
    padding-bottom: 25px;
    font-size: 24px;
  }
}
@media screen and (max-width: 900px) {
  .wysiwyg-block h1,
  .column-wysiwyg h1 {
    margin-bottom: 25px;
    padding-bottom: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h1,
  .column-wysiwyg h1 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 20px;
  }
}
.wysiwyg-block h1::after,
.column-wysiwyg h1::after {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #5F577F;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h1::after,
  .column-wysiwyg h1::after {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h1::after,
  .column-wysiwyg h1::after {
    width: 80px;
  }
}
.wysiwyg-block h2,
.column-wysiwyg h2 {
  margin-bottom: 30px;
  padding: 20px 20px 21px 40px;
  font-size: 21px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  background-color: #F5F4F7;
  position: relative;
}
.wysiwyg-block h2::before,
.column-wysiwyg h2::before {
  content: "";
  margin: auto 0;
  width: 24px;
  height: 1px;
  background-color: #8172B7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h2,
  .column-wysiwyg h2 {
    margin-bottom: 25px;
    padding: 18px 20px 19px 36px;
    font-size: 19px;
  }
  .wysiwyg-block h2::before,
  .column-wysiwyg h2::before {
    width: 21px;
  }
}
@media screen and (max-width: 900px) {
  .wysiwyg-block h2,
  .column-wysiwyg h2 {
    margin-bottom: 20px;
    padding: 15px 15px 16px 30px;
    font-size: 18px;
  }
  .wysiwyg-block h2::before,
  .column-wysiwyg h2::before {
    width: 18px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h2,
  .column-wysiwyg h2 {
    margin-bottom: 16px;
    padding: 12px 15px 14px 24px;
    font-size: 16px;
  }
  .wysiwyg-block h2::before,
  .column-wysiwyg h2::before {
    width: 15px;
  }
}
.wysiwyg-block h3,
.column-wysiwyg h3 {
  margin-bottom: 20px;
  padding: 9px 0 9px 20px;
  font-size: 20px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  position: relative;
}
.wysiwyg-block h3::before,
.column-wysiwyg h3::before {
  content: "";
  width: 1px;
  height: 44px;
  background-color: #8172B7;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h3,
  .column-wysiwyg h3 {
    margin-bottom: 15px;
    padding: 6px 0 8px 26px;
    font-size: 19px;
  }
  .wysiwyg-block h3::before,
  .column-wysiwyg h3::before {
    height: 38px;
  }
}
@media screen and (max-width: 900px) {
  .wysiwyg-block h3,
  .column-wysiwyg h3 {
    margin-bottom: 15px;
    padding: 6px 0 6px 20px;
    font-size: 18px;
  }
  .wysiwyg-block h3::before,
  .column-wysiwyg h3::before {
    height: 35px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h3,
  .column-wysiwyg h3 {
    margin-bottom: 12px;
    padding: 4px 0 6px 16px;
    font-size: 16px;
  }
  .wysiwyg-block h3::before,
  .column-wysiwyg h3::before {
    height: 30px;
  }
}
.wysiwyg-block h4,
.column-wysiwyg h4 {
  margin-bottom: 18px;
  padding-left: 28px;
  font-size: 19px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  position: relative;
}
.wysiwyg-block h4::before,
.column-wysiwyg h4::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #8172B7;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg-block h4,
  .column-wysiwyg h4 {
    margin-bottom: 12px;
    padding-left: 24px;
    font-size: 18px;
  }
  .wysiwyg-block h4::before,
  .column-wysiwyg h4::before {
    top: 6px;
  }
}
@media screen and (max-width: 900px) {
  .wysiwyg-block h4,
  .column-wysiwyg h4 {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 17px;
  }
  .wysiwyg-block h4::before,
  .column-wysiwyg h4::before {
    width: 10px;
    height: 10px;
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block h4,
  .column-wysiwyg h4 {
    margin-bottom: 8px;
    padding-left: 16px;
    font-size: 16px;
  }
  .wysiwyg-block h4::before,
  .column-wysiwyg h4::before {
    width: 8px;
    height: 8px;
    top: 7px;
  }
}
.wysiwyg-block ul,
.column-wysiwyg ul {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .wysiwyg-block ul,
  .column-wysiwyg ul {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block ul,
  .column-wysiwyg ul {
    margin-bottom: 25px;
  }
}
.wysiwyg-block ul > li,
.column-wysiwyg ul > li {
  margin-bottom: 12px;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 1.3;
  color: #5F577F;
  position: relative;
}
.wysiwyg-block ul > li:last-child,
.column-wysiwyg ul > li:last-child {
  margin-bottom: 0;
}
.wysiwyg-block ul > li::before,
.column-wysiwyg ul > li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #8172B7;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block ul > li,
  .column-wysiwyg ul > li {
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 15px;
  }
  .wysiwyg-block ul > li::before,
  .column-wysiwyg ul > li::before {
    width: 7px;
    height: 7px;
    top: 5px;
  }
}
.wysiwyg-block ol,
.column-wysiwyg ol {
  list-style: none;
  counter-reset: num;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .wysiwyg-block ol,
  .column-wysiwyg ol {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block ol,
  .column-wysiwyg ol {
    margin-bottom: 25px;
  }
}
.wysiwyg-block ol > li,
.column-wysiwyg ol > li {
  padding-left: 24px;
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 1.4;
  color: #5F577F;
  position: relative;
}
.wysiwyg-block ol > li::before,
.column-wysiwyg ol > li::before {
  content: counter(num) "．";
  counter-increment: num;
  top: 0px;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block ol > li,
  .column-wysiwyg ol > li {
    padding-left: 20px;
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.wysiwyg-block ol > li:last-child,
.column-wysiwyg ol > li:last-child {
  margin-bottom: 0;
}
.wysiwyg-block a,
.column-wysiwyg a {
  color: #6B5AA8;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .wysiwyg-block a:hover,
  .column-wysiwyg a:hover {
    text-decoration: none;
  }
}
.wysiwyg-block blockquote,
.column-wysiwyg blockquote {
  padding-left: 1em;
}
.wysiwyg-block table,
.column-wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #d5d5d5;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.3;
  color: #5F577F;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block table,
  .column-wysiwyg table {
    font-size: 15px;
  }
}
.wysiwyg-block table th,
.wysiwyg-block table td,
.column-wysiwyg table th,
.column-wysiwyg table td {
  padding: 17px 15px 15px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d5d5d5;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block table th,
  .wysiwyg-block table td,
  .column-wysiwyg table th,
  .column-wysiwyg table td {
    padding: 10px 5px 9px;
  }
}
.wysiwyg-block table thead th,
.column-wysiwyg table thead th {
  padding: 10px 10px 9px;
  background-color: #B088BF;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block table thead th,
  .column-wysiwyg table thead th {
    padding: 8px 5px 7px;
  }
}
.wysiwyg-block blockquote,
.column-wysiwyg blockquote {
  margin-bottom: 40px;
  color: #a2a2a2;
  border-left: 3px solid #d5d5d5;
}
@media screen and (max-width: 900px) {
  .wysiwyg-block blockquote,
  .column-wysiwyg blockquote {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block blockquote,
  .column-wysiwyg blockquote {
    margin-bottom: 25px;
  }
}
.wysiwyg-block hr,
.column-wysiwyg hr {
  display: block;
}
.wysiwyg-block em,
.column-wysiwyg em {
  font-style: italic !important;
}
.wysiwyg-block strong,
.column-wysiwyg strong {
  font-weight: bold !important;
}
.wysiwyg-block em strong,
.wysiwyg-block strong em,
.column-wysiwyg em strong,
.column-wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}
.wysiwyg-block .base-link-list,
.column-wysiwyg .base-link-list {
  list-style: none !important;
}
.wysiwyg-block .base-link-list > li,
.column-wysiwyg .base-link-list > li {
  list-style: none !important;
  padding-left: 0 !important;
}
.wysiwyg-block .base-link-list > li::before,
.column-wysiwyg .base-link-list > li::before {
  display: none !important;
}
.wysiwyg-block .base-link-list > li a,
.column-wysiwyg .base-link-list > li a {
  text-decoration: none !important;
}
.wysiwyg-block .base-btn-list,
.column-wysiwyg .base-btn-list {
  list-style: none !important;
}
.wysiwyg-block .base-btn-list__item,
.column-wysiwyg .base-btn-list__item {
  padding-left: 0 !important;
  list-style: none !important;
}
.wysiwyg-block .base-btn-list__item::before,
.column-wysiwyg .base-btn-list__item::before {
  display: none !important;
}
.wysiwyg-block .base-btn-list__item a,
.column-wysiwyg .base-btn-list__item a {
  color: #fff !important;
  text-decoration: none !important;
}
.wysiwyg-block .base-btn-list__item a::before,
.column-wysiwyg .base-btn-list__item a::before {
  content: "";
  margin: auto 0;
  width: 14px;
  height: 10px;
  background-image: url(../img/common/arrow_white.svg);
  background-position: 50% 50%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg-block .base-btn-list__item a,
  .column-wysiwyg .base-btn-list__item a {
    padding: 16px 40px 17px 35px;
    min-width: 180px;
    font-size: 16px;
  }
  .wysiwyg-block .base-btn-list__item a::before,
  .column-wysiwyg .base-btn-list__item a::before {
    width: 12px;
    height: 9px;
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg-block .base-btn-list__item a:hover,
  .column-wysiwyg .base-btn-list__item a:hover {
    opacity: 0.8;
    transform: translateX(5px);
  }
}

/*ソース貼り付け用*/
.wysiwyg-block-source {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .wysiwyg-block-source {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg-block-source {
    margin-bottom: 25px;
  }
}

.free-block {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .free-block {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .free-block {
    margin-bottom: 25px;
  }
}

/*写真右ブロック*/
.photo-text-block {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.9;
  color: #5F577F;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .photo-text-block {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .photo-text-block {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
  }
}
.photo-text-block__photo {
  text-align: center;
}
.photo-text-block__photo img {
  max-width: 100%;
}
.photo-text-block__photo {
  /*右画像回り込みなし*/
}
.photo-right .photo-text-block__photo {
  float: right;
  margin: 0 0 20px 30px;
  width: calc(40% - 30px);
}
@media screen and (max-width: 599px) {
  .photo-right .photo-text-block__photo {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
.photo-text-block__photo {
  /*右画像回り込みあり*/
}
.photo-right02 .photo-text-block__photo {
  float: right;
  margin: 0 0 20px 30px;
  width: calc(40% - 30px);
}
@media screen and (max-width: 599px) {
  .photo-right02 .photo-text-block__photo {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
.photo-text-block__photo {
  /*左画像回り込みなし*/
}
.photo-left .photo-text-block__photo {
  float: left;
  width: calc(40% - 30px);
  margin: 0 30px 20px 0;
}
@media screen and (max-width: 599px) {
  .photo-left .photo-text-block__photo {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
.photo-text-block__photo {
  /*左画像回り込みあり*/
}
.photo-left02 .photo-text-block__photo {
  float: left;
  margin: 0 30px 20px 0;
  width: calc(40% - 30px);
}
@media screen and (max-width: 599px) {
  .photo-left02 .photo-text-block__photo {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .photo-text-block__photo {
    /*SP 画像あり → PC 画像を隠す
    SP 画像なし → PC 画像はそのまま表示*/
  }
  .photo-text-block__photo:has(img.sp) img:not(.sp) {
    display: none;
  }
}
.photo-text-block__text {
  text-align: justify;
  /*右画像回り込みなし*/
}
.photo-right .photo-text-block__text {
  width: 60%;
  float: left;
}
@media screen and (max-width: 599px) {
  .photo-right .photo-text-block__text {
    width: 100%;
    float: none;
  }
}
.photo-right02 .photo-text-block__text {
  /*指定なし*/
}
.photo-text-block__text {
  /*左画像回り込みなし*/
}
.photo-left .photo-text-block__text {
  width: 60%;
  float: right;
}
@media screen and (max-width: 599px) {
  .photo-left .photo-text-block__text {
    width: 100%;
    float: none;
  }
}
.photo-left02 .photo-text-block__text {
  /*指定なし*/
}
.photo-text-block__caption {
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  margin-top: 8px;
}
@media screen and (max-width: 599px) {
  .photo-text-block__caption {
    margin-top: 5px;
    font-size: 13px;
  }
}

.youtube-block {
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .youtube-block {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .youtube-block {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .youtube-block {
    gap: 15px;
  }
}
.youtube-block__item {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1100px;
  width: 100%;
}
.youtube-block__item iframe {
  width: 100%;
  height: 100%;
}
.w80p .youtube-block__item {
  max-width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .w80p .youtube-block__item {
    max-width: 100%;
  }
}
.cl02 .youtube-block__item {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 599px) {
  .cl02 .youtube-block__item {
    width: 100%;
  }
}

.map-block {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 40px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .map-block {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .map-block {
    margin-bottom: 25px;
  }
}
.map-block iframe {
  width: 100%;
  height: 100%;
}

.top-main {
  padding-top: 280px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .top-main {
    padding-top: 18vw;
  }
}
@media screen and (max-width: 1300px) {
  .top-main {
    padding-top: 20vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-main {
    padding-top: 18vw;
  }
}
@media screen and (max-width: 900px) {
  .top-main {
    padding-top: 24vw;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    padding-top: 100px;
  }
}
.top-main::before {
  content: "";
  width: 530px;
  aspect-ratio: 530/566;
  background-image: url(../img/common/logo_mark.svg);
  background-size: 100% auto;
  background-position: 50% 0;
  background-repeat: no-repeat;
  position: absolute;
  top: -70px;
  right: 7%;
  z-index: 0;
  opacity: 0.06;
}
@media screen and (max-width: 1500px) {
  .top-main::before {
    width: 35.333vw;
    top: -5.2vw;
  }
}
@media screen and (max-width: 900px) {
  .top-main::before {
    width: 44vw;
    top: -6vw;
    right: 3%;
  }
}
@media screen and (max-width: 599px) {
  .top-main::before {
    width: 200px;
    top: -28px;
    right: 5px;
  }
}
.top-main__copy {
  margin-bottom: 100px;
  margin-left: 115px;
  font-size: 84px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 200;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1500px) {
  .top-main__copy {
    margin-bottom: 6.666vw;
    margin-left: 7.666vw;
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 1300px) {
  .top-main__copy {
    margin-bottom: 8vw;
    margin-left: 8vw;
    font-size: 6vw;
  }
}
@media screen and (max-width: 900px) {
  .top-main__copy {
    margin-bottom: 10vw;
    margin-left: 9vw;
    font-size: 6.7vw;
  }
}
@media screen and (max-width: 599px) {
  .top-main__copy {
    margin-bottom: 60px;
    margin-left: 0.5vw;
    font-size: 8vw;
    text-align: center;
  }
}
.top-main__copy .maru {
  font-size: 0.714em;
}
.top-main__photo {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-main__photo {
    aspect-ratio: 10/6;
  }
}
@media screen and (max-width: 599px) {
  .top-main__photo {
    aspect-ratio: 10/10;
  }
}
.top-main__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-main__photo__scroll {
  padding-left: 10px;
  width: auto;
  height: 124px;
  border-left: 1px solid #F5F4F7;
  position: absolute;
  top: 0;
  left: 70px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1500px) {
  .top-main__photo__scroll {
    left: 4.666vw;
  }
}
@media screen and (max-width: 1300px) {
  .top-main__photo__scroll {
    left: 5.333vw;
  }
}
@media screen and (max-width: 900px) {
  .top-main__photo__scroll {
    height: 110px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__photo__scroll {
    margin: 0 auto;
    padding: 0 10px;
    width: 21px;
    height: 70px;
    left: 0;
    right: 0;
  }
}
.top-main__photo__scroll::before {
  content: "";
  width: 1px;
  height: 50%;
  background-color: #5F577F;
  position: absolute;
  top: 0;
  left: -1px;
  animation-name: scroll-bar;
  animation-duration: 1.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
@keyframes scroll-bar {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
.top-main__photo__scroll__text {
  width: 60px;
  font-size: 11px;
  line-height: 1;
  color: #5F577F;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: right;
  transform: rotate(90deg);
  position: absolute;
  bottom: 25px;
  left: -12px;
  display: block;
}
@media screen and (max-width: 900px) {
  .top-main__photo__scroll__text {
    font-size: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__photo__scroll__text {
    padding-left: 0.13em;
    width: 100px;
    font-size: 12px;
    text-align: center;
    transform: rotate(0deg);
    left: 0;
    bottom: -22px;
    transform: translateX(-50%);
  }
}

.top-strength {
  padding: 190px 0 100px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1500px) {
  .top-strength {
    padding: 150px 0 80px;
  }
}
@media screen and (max-width: 1400px) {
  .top-strength {
    padding: 100px 0 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength {
    padding: 100px;
  }
}
@media screen and (max-width: 900px) {
  .top-strength {
    padding: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-strength {
    padding: 40px 30px;
  }
}
.top-strength::before {
  content: "";
  width: 46%;
  aspect-ratio: 741/788;
  background-image: url(../img/common/logo_mark.svg);
  background-size: 100% auto;
  background-position: 50% 0;
  background-repeat: no-repeat;
  opacity: 0.04;
  position: absolute;
  top: -10px;
  right: -10px;
}
@media screen and (max-width: 599px) {
  .top-strength::before {
    width: 60%;
    top: -10px;
    right: -5px;
  }
}
.top-strength__inner {
  padding: 60px 0 100px;
  margin: 0 auto;
  width: 100%;
  max-width: 1530px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .top-strength__inner {
    padding: 50px 0 60px;
  }
}
@media screen and (max-width: 1400px) {
  .top-strength__inner {
    padding: 30px 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength__inner {
    padding: 0;
  }
}
.top-strength__inner__box {
  margin: 0 auto;
  width: 580px;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 1400px) {
  .top-strength__inner__box {
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .top-strength__inner__box {
    padding-right: 80px;
    width: 100%;
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__box {
    padding-right: 0;
    gap: 30px;
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .top-strength__inner__box {
    gap: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__box {
    gap: 20px;
  }
}
.top-strength__inner__box__text {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 45px;
}
@media screen and (max-width: 1300px) {
  .top-strength__inner__box__text {
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .top-strength__inner__box__text {
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__box__text {
    gap: 25px;
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .top-strength__inner__box__text {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__box__text {
    gap: 10px;
  }
}
.top-strength__inner__box__text__title {
  padding-left: 5px;
  font-size: 19px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  border-left: 1px solid #8172B7;
  display: inline-block;
  position: relative;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  display: inline-block;
}
.top-strength__inner__box__text__title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8172B7;
  position: absolute;
  top: -16px;
  right: 7px;
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__box__text__title {
    text-align: left;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    border-left: none;
  }
  .top-strength__inner__box__text__title::before {
    top: 6px;
    right: auto;
    left: -15px;
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__box__text__title {
    padding-left: 16px;
    font-size: 16px;
  }
  .top-strength__inner__box__text__title::before {
    top: 4px;
    left: 0;
  }
}
.top-strength__inner__box__text__copy {
  font-size: 40px;
  line-height: 1.5;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 300;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__box__text__copy {
    font-size: 45px;
    text-align: left;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__box__text__copy {
    font-size: 42px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__box__text__copy {
    font-size: 34px;
  }
}
@media screen and (max-width: 365px) {
  .top-strength__inner__box__text__copy {
    font-size: 30px;
  }
}
.top-strength__inner__box__text__text {
  font-size: 16px;
  line-height: 2;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__box__text__text {
    font-size: 18px;
    text-align: left;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 900px) {
  .top-strength__inner__box__text__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__box__text__text {
    text-align: justify;
  }
  .top-strength__inner__box__text__text br {
    display: none;
  }
}
@media screen and (max-width: 365px) {
  .top-strength__inner__box__text__text {
    font-size: 15px;
  }
}
.top-strength__inner__box__btn {
  padding-right: 80px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__box__btn {
    padding-right: 0;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__photos {
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 900px) {
  .top-strength__inner__photos {
    margin-top: 45px;
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__photos {
    margin-top: 35px;
    flex-wrap: wrap;
    gap: 4px;
  }
}
.top-strength__inner__photos__item.photo01 {
  width: 36.65%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .top-strength__inner__photos__item.photo01 {
    width: 40%;
    left: 60px;
    aspect-ratio: 10/7;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__photos__item.photo01 {
    width: calc((100% - 20px) / 2);
    position: relative;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 900px) {
  .top-strength__inner__photos__item.photo01 {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__photos__item.photo01 {
    width: 100%;
    aspect-ratio: 10/6;
  }
}
.top-strength__inner__photos__item.photo02 {
  width: 13.09%;
  position: absolute;
  top: 10px;
  right: 75px;
}
@media screen and (max-width: 1200px) {
  .top-strength__inner__photos__item.photo02 {
    top: auto;
    right: auto;
    left: 4%;
    bottom: 15%;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__photos__item.photo02 {
    width: 30%;
    top: 55px;
    right: 0;
    left: auto;
    bottom: auto;
    aspect-ratio: 10/7;
  }
}
@media screen and (max-width: 900px) {
  .top-strength__inner__photos__item.photo02 {
    top: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__photos__item.photo02 {
    width: calc((100% - 4px) / 2);
    position: relative;
    top: auto;
    right: auto;
  }
}
.top-strength__inner__photos__item.photo03 {
  width: 26.18%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .top-strength__inner__photos__item.photo03 {
    width: 30%;
    right: auto;
    left: 26%;
    aspect-ratio: 10/6;
  }
}
@media screen and (max-width: 1024px) {
  .top-strength__inner__photos__item.photo03 {
    width: calc((100% - 20px) / 2);
    position: relative;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 900px) {
  .top-strength__inner__photos__item.photo03 {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-strength__inner__photos__item.photo03 {
    width: calc((100% - 4px) / 2);
  }
}
.top-strength__inner__photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-about {
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
}
.top-about::before {
  content: "";
  width: calc(100% - 110px);
  height: calc(100% - 95px - 160px - 120px);
  background-color: #F5F4F7;
  position: absolute;
  top: 95px;
  left: 110px;
  z-index: 0;
}
@media screen and (max-width: 1500px) {
  .top-about {
    gap: 90px;
  }
  .top-about::before {
    width: calc(100% - 90px);
    height: calc(100% - 90px - 140px - 120px);
    top: 90px;
    left: 90px;
  }
}
@media screen and (max-width: 1300px) {
  .top-about {
    gap: 80px;
  }
  .top-about::before {
    width: calc(100% - 70px);
    height: calc(100% - 70px - 125px - 120px);
    top: 70px;
    left: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding-bottom: 100px;
    gap: 80px;
  }
  .top-about::before {
    width: calc(100% - 50px);
    height: calc(100% - 50px - 125px - 100px);
    top: 50px;
    left: 50px;
  }
}
@media screen and (max-width: 900px) {
  .top-about {
    padding-bottom: 80px;
    gap: 60px;
  }
  .top-about::before {
    width: 100%;
    height: calc(100% - 115px - 80px);
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding-bottom: 50px;
    gap: 40px;
  }
  .top-about::before {
    width: 100%;
    height: calc(100% - 80px - 50px);
    top: 0;
    left: 0;
  }
}
.top-about__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .top-about__inner {
    flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner {
    gap: 40px;
  }
}
.top-about__inner__photo {
  width: 47%;
  height: 500px;
}
@media screen and (max-width: 1500px) {
  .top-about__inner__photo {
    height: 420px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__inner__photo {
    height: 350px;
  }
}
@media screen and (max-width: 900px) {
  .top-about__inner__photo {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner__photo {
    height: auto;
  }
}
.top-about__inner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-about__inner__text {
  padding: 0 60px;
  width: 53%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 900px) {
  .top-about__inner__text {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner__text {
    padding: 0 40px;
  }
}
@media screen and (max-width: 365px) {
  .top-about__inner__text {
    padding: 0 25px;
  }
}
.top-about__inner__text__box {
  margin: 0 auto;
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  .top-about__inner__text__box {
    width: 500px;
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__inner__text__box {
    gap: 15px;
  }
}
@media screen and (max-width: 900px) {
  .top-about__inner__text__box {
    gap: 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner__text__box {
    gap: 10px;
  }
}
.top-about__inner__text__box__title {
  padding-left: 20px;
  line-height: 1;
  text-align: left;
  position: relative;
}
.top-about__inner__text__box__title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8172B7;
  position: absolute;
  top: 10px;
  left: 0;
}
.top-about__inner__text__box__title__text {
  padding-bottom: 12px;
  font-size: 26px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #5F577F;
  display: inline-block;
}
@media screen and (max-width: 1300px) {
  .top-about__inner__text__box__title__text {
    padding-bottom: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__inner__text__box__title__text {
    padding-bottom: 7px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner__text__box__title__text {
    padding-bottom: 5px;
    font-size: 18px;
  }
}
.top-about__inner__text__box__text {
  font-size: 16px;
  line-height: 2;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .top-about__inner__text__box__text {
    text-align: justify;
  }
  .top-about__inner__text__box__text br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__inner__text__box__text {
    padding-bottom: 10px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner__text__box__text {
    font-size: 15px;
  }
}
.top-about__banner {
  margin: 0 auto;
  padding: 80px 80px 80px 355px;
  width: 100%;
  max-width: 1100px;
  height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(263.72deg, #9788CB 1.55%, #8EC3D5 75.22%, #9CC5DB 98.45%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}
@media screen and (max-width: 1500px) {
  .top-about__banner {
    padding: 80px 80px 80px 280px;
    width: 100%;
    max-width: 900px;
    height: 280px;
  }
}
@media screen and (max-width: 1300px) {
  .top-about__banner {
    padding: 0 0 0 245px;
    width: 100%;
    max-width: 760px;
    height: 250px;
  }
}
@media screen and (max-width: 900px) {
  .top-about__banner {
    padding: 0 0 50px 185px;
    max-width: 560px;
    height: 230px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__banner {
    padding: 20px 0 0;
    max-width: calc(100% - 40px);
    height: auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .top-about__banner:hover {
    opacity: 0.9;
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
  }
}
.top-about__banner__circle {
  margin: auto 0;
  width: 230px;
  height: 230px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
}
@media screen and (max-width: 1500px) {
  .top-about__banner__circle {
    width: 200px;
    height: 200px;
    left: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .top-about__banner__circle {
    width: 180px;
    height: 180px;
    left: 35px;
  }
}
@media screen and (max-width: 900px) {
  .top-about__banner__circle {
    width: 140px;
    height: 140px;
    left: 20px;
    top: 20px;
    bottom: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-about__banner__circle {
    margin-left: 20px;
    width: 90px;
    height: 90px;
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
  }
}
@media screen and (max-width: 365px) {
  .top-about__banner__circle {
    width: 70px;
    height: 90px;
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
  }
}
.top-about__banner__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .top-about__banner__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .top-about__banner__inner {
    gap: 15px;
  }
}
@media screen and (max-width: 900px) {
  .top-about__banner__inner {
    gap: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__banner__inner {
    width: calc(100% - 90px - 15px - 20px);
    gap: 8px;
  }
}
@media screen and (max-width: 365px) {
  .top-about__banner__inner {
    width: calc(100% - 70px - 10px - 20px);
    gap: 6px;
  }
}
.top-about__banner__inner__title {
  font-size: 46px;
  line-height: 1;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1300px) {
  .top-about__banner__inner__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 900px) {
  .top-about__banner__inner__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__banner__inner__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 365px) {
  .top-about__banner__inner__title {
    font-size: 20px;
  }
}
.top-about__banner__inner__text {
  font-size: 18px;
  line-height: 1.61;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .top-about__banner__inner__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) {
  .top-about__banner__inner__text {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 599px) {
  .top-about__banner__inner__text {
    margin-right: 20px;
    font-size: 13px;
    line-height: 1.5;
    text-align: justify;
    letter-spacing: normal;
  }
  .top-about__banner__inner__text br {
    display: none;
  }
}
@media screen and (max-width: 365px) {
  .top-about__banner__inner__text {
    font-size: 11px;
  }
}
.top-about__banner__btn {
  padding-right: 10px;
  width: 280px;
  height: 70px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  background-color: #6B5AA8;
  background-image: url(../img/common/arrow_white.svg);
  background-position: right 20px top 50%;
  background-size: 17px auto;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 1500px) {
  .top-about__banner__btn {
    width: 250px;
    height: 60px;
    background-position: right 18px top 50%;
    background-size: 15px auto;
  }
}
@media screen and (max-width: 1300px) {
  .top-about__banner__btn {
    font-size: 15px;
    width: 220px;
    height: 56px;
    background-position: right 15px top 50%;
    background-size: 13px auto;
  }
}
@media screen and (max-width: 900px) {
  .top-about__banner__btn {
    padding-bottom: 2px;
    width: 100%;
    height: 50px;
    background-position: right 20px top 50%;
    background-size: 13px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-about__banner__btn {
    margin-top: 15px;
    height: 40px;
    background-position: right 15px top 50%;
    background-size: 11px auto;
    position: relative;
    left: auto;
    bottom: auto;
  }
}

.top-advisory {
  margin-bottom: 140px;
  padding-bottom: 115px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.top-advisory::before {
  content: "";
  width: calc(100% - 110px);
  height: calc(100% - 95px);
  background-color: #F5F4F7;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 1500px) {
  .top-advisory {
    margin-bottom: 120px;
  }
  .top-advisory::before {
    width: calc(100% - 90px);
    height: calc(100% - 90px);
  }
}
@media screen and (max-width: 1300px) {
  .top-advisory::before {
    width: calc(100% - 70px);
    height: calc(100% - 70px);
  }
}
@media screen and (max-width: 1024px) {
  .top-advisory {
    margin-bottom: 100px;
    padding-bottom: 100px;
  }
  .top-advisory::before {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
}
@media screen and (max-width: 900px) {
  .top-advisory {
    margin-bottom: 0;
    padding-bottom: 80px;
    gap: 60px;
  }
  .top-advisory::before {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-advisory {
    padding-bottom: 50px;
  }
}
.top-advisory__inner {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
  flex-direction: row-reverse;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .top-advisory__inner {
    flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-advisory__inner {
    gap: 40px;
  }
}
.top-advisory__inner__photo {
  width: 47%;
  height: 500px;
}
@media screen and (max-width: 1500px) {
  .top-advisory__inner__photo {
    height: 420px;
  }
}
@media screen and (max-width: 1024px) {
  .top-advisory__inner__photo {
    height: 350px;
  }
}
@media screen and (max-width: 900px) {
  .top-advisory__inner__photo {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-advisory__inner__photo {
    height: auto;
  }
}
.top-advisory__inner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-advisory__inner__text {
  padding: 0 60px;
  width: 53%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 900px) {
  .top-advisory__inner__text {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-advisory__inner__text {
    padding: 0 40px;
  }
}
@media screen and (max-width: 365px) {
  .top-advisory__inner__text {
    padding: 0 25px;
  }
}
.top-advisory__inner__text__box {
  margin: 0 auto;
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  .top-advisory__inner__text__box {
    width: 500px;
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .top-advisory__inner__text__box {
    gap: 15px;
  }
}
@media screen and (max-width: 900px) {
  .top-advisory__inner__text__box {
    gap: 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .top-advisory__inner__text__box {
    gap: 10px;
  }
}
.top-advisory__inner__text__box__title {
  padding-left: 20px;
  line-height: 1;
  text-align: left;
  position: relative;
}
.top-advisory__inner__text__box__title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8172B7;
  position: absolute;
  top: 10px;
  left: 0;
}
.top-advisory__inner__text__box__title__text {
  padding-bottom: 12px;
  font-size: 26px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #5F577F;
  display: inline-block;
}
@media screen and (max-width: 1300px) {
  .top-advisory__inner__text__box__title__text {
    padding-bottom: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .top-advisory__inner__text__box__title__text {
    padding-bottom: 7px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-advisory__inner__text__box__title__text {
    padding-bottom: 5px;
    font-size: 18px;
  }
}
.top-advisory__inner__text__box__text {
  font-size: 16px;
  line-height: 2;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .top-advisory__inner__text__box__text {
    text-align: justify;
  }
  .top-advisory__inner__text__box__text br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .top-advisory__inner__text__box__text {
    padding-bottom: 10px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  .top-advisory__inner__text__box__text {
    font-size: 15px;
  }
}

.top-service {
  padding: 110px 60px 120px;
  background-color: #F5F4F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .top-service {
    padding: 90px 60px 120px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service {
    padding: 70px 40px 100px;
  }
}
@media screen and (max-width: 900px) {
  .top-service {
    padding: 60px 10px 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-service {
    padding: 35px 10px 50px;
  }
}
.top-service::before {
  content: "";
  width: 100%;
  height: calc(100% - 425px);
  background-image: url(../img/top/service_bg.svg);
  background-size: auto 100%;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 1300px) {
  .top-service::before {
    height: calc(100% - 380px);
  }
}
@media screen and (max-width: 1024px) {
  .top-service::before {
    height: calc(100% - 340px);
  }
}
@media screen and (max-width: 900px) {
  .top-service::before {
    height: calc(100% - 280px);
  }
}
.top-service__head {
  width: 100%;
  height: 425px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .top-service__head {
    height: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__head {
    height: 340px;
  }
}
@media screen and (max-width: 900px) {
  .top-service__head {
    height: 280px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__head {
    height: 220px;
  }
}
.top-service__head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-service__title {
  margin-bottom: 50px;
  font-size: 90px;
  line-height: 1;
  color: #fff;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-service__title {
    margin-bottom: 45px;
    font-size: 75px;
  }
}
@media screen and (max-width: 900px) {
  .top-service__title {
    margin-bottom: 35px;
    font-size: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__title {
    margin-bottom: 25px;
    font-size: 44px;
  }
}
.top-service__title__ja {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1024px) {
  .top-service__title__ja {
    margin-top: 9px;
    font-size: 15px;
  }
}
@media screen and (max-width: 900px) {
  .top-service__title__ja {
    margin-top: 7px;
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__title__ja {
    margin-top: 5px;
    font-size: 13px;
  }
}
.top-service__list {
  margin: 0 auto;
  width: 100%;
  max-width: 1130px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .top-service__list {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__list {
    gap: 15px;
  }
}
@media screen and (max-width: 900px) {
  .top-service__list {
    gap: 5px;
  }
}
.top-service__list__item {
  width: calc((100% - 90px) / 4);
}
@media screen and (max-width: 1300px) {
  .top-service__list__item {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 1024px) {
  .top-service__list__item {
    width: calc((100% - 45px) / 4);
  }
}
@media screen and (max-width: 900px) {
  .top-service__list__item {
    width: calc((100% - 15px) / 4);
  }
}
@media screen and (max-width: 599px) {
  .top-service__list__item {
    width: calc((100% - 5px) / 2);
  }
}
.top-service__list__item__link {
  width: 100%;
  aspect-ratio: 1;
  padding: 10px 5px 25px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  transition: 0.2s;
}
.top-service__list__item__link::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #8172B7;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 900px) {
  .top-service__list__item__link {
    padding: 5px 5px 10px;
  }
  .top-service__list__item__link::after {
    width: 15px;
    height: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .top-service__list__item__link:hover {
    background-color: #F5F4F7;
    transform: translateY(-5px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
  }
}
.top-service__list__item__link__inner {
  width: 100%;
}
.top-service__list__item__link__inner__icon {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 900px) {
  .top-service__list__item__link__inner__icon {
    width: 70%;
  }
}
.top-service__list__item__link__inner__title {
  margin-top: auto;
  font-size: 26px;
  line-height: 1.23;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  letter-spacing: normal;
}
@media screen and (max-width: 1500px) {
  .top-service__list__item__link__inner__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__list__item__link__inner__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .top-service__list__item__link__inner__title {
    font-size: 17px;
    line-height: 1.18;
  }
}
@media screen and (max-width: 599px) {
  .top-service__list__item__link__inner__title {
    font-size: 18px;
  }
}
.top-service__list__item__link__inner__title.lines {
  font-size: 25px;
  line-height: 1.28;
}
@media screen and (max-width: 1500px) {
  .top-service__list__item__link__inner__title.lines {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service__list__item__link__inner__title.lines {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__list__item__link__inner__title.lines {
    font-size: 16px;
  }
}
.top-service__list__item__link__inner__en {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1;
  color: rgba(95, 87, 127, 0.6);
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .top-service__list__item__link__inner__en {
    font-size: 11px;
  }
}
@media screen and (max-width: 900px) {
  .top-service__list__item__link__inner__en {
    font-size: 10px;
  }
}
.top-service__btn {
  margin-top: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .top-service__btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__btn {
    margin-top: 30px;
  }
}

.top-recruit {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1100px) {
  .top-recruit {
    flex-wrap: wrap;
  }
}
.top-recruit__photo {
  width: 48%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .top-recruit__photo {
    width: 45%;
  }
}
@media screen and (max-width: 1100px) {
  .top-recruit__photo {
    width: 100%;
    aspect-ratio: 10/4;
  }
}
.top-recruit__photo::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/top/recruit_photo.svg);
  background-size: auto 100%;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 0;
}
@media screen and (max-width: 1100px) {
  .top-recruit__photo::before {
    display: none;
  }
}
.top-recruit__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-recruit__inner {
  padding: 80px 60px;
  width: 52%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .top-recruit__inner {
    padding: 50px;
    width: 55%;
  }
}
@media screen and (max-width: 1100px) {
  .top-recruit__inner {
    padding: 80px 40px 120px;
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .top-recruit__inner {
    padding: 60px 40px 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner {
    padding: 40px 40px 50px;
  }
}
@media screen and (max-width: 365px) {
  .top-recruit__inner {
    padding: 25px 25px 40px;
  }
}
.top-recruit__inner__box {
  margin: 0 auto;
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  .top-recruit__inner__box {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__inner__box {
    gap: 15px;
  }
}
@media screen and (max-width: 900px) {
  .top-recruit__inner__box {
    gap: 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner__box {
    gap: 12px;
  }
}
.top-recruit__inner__box__title {
  padding-left: 20px;
  line-height: 1;
  text-align: left;
  position: relative;
}
.top-recruit__inner__box__title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8172B7;
  position: absolute;
  top: 10px;
  left: 0;
}
.top-recruit__inner__box__title__text {
  padding-bottom: 12px;
  font-size: 26px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #5F577F;
  display: inline-block;
}
@media screen and (max-width: 1300px) {
  .top-recruit__inner__box__title__text {
    padding-bottom: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__inner__box__title__text {
    padding-bottom: 7px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner__box__title__text {
    padding-bottom: 5px;
    font-size: 18px;
  }
}
.top-recruit__inner__box__copy {
  font-size: 35px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 300;
  letter-spacing: normal;
}
@media screen and (max-width: 1400px) {
  .top-recruit__inner__box__copy {
    font-size: 32px;
  }
}
@media screen and (max-width: 1300px) {
  .top-recruit__inner__box__copy {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__inner__box__copy {
    font-size: 32px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner__box__copy {
    font-size: 28px;
  }
}
@media screen and (max-width: 365px) {
  .top-recruit__inner__box__copy {
    font-size: 25px;
  }
}
.top-recruit__inner__box__text {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 2;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .top-recruit__inner__box__text {
    text-align: justify;
  }
  .top-recruit__inner__box__text br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__inner__box__text {
    padding-bottom: 10px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner__box__text {
    font-size: 15px;
  }
}

.top-topics {
  padding: 110px 60px;
  background-image: url(../img/top/main.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .top-topics {
    padding: 60px;
  }
}
@media screen and (max-width: 900px) {
  .top-topics {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics {
    padding: 10px;
  }
}
.top-topics__inner {
  margin: 0 auto;
  padding: 0 60px 65px;
  width: 100%;
  max-width: 1100px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-topics__inner {
    padding: 0 50px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__inner {
    padding: 0 30px 45px;
  }
}
@media screen and (max-width: 365px) {
  .top-topics__inner {
    padding: 0 20px 40px;
  }
}
.top-topics__title {
  margin-bottom: 30px;
  padding-top: 50px;
  font-size: 65px;
  line-height: 1;
  color: #5F577F;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 300;
  letter-spacing: normal;
  text-align: center;
  display: block;
}
.top-topics__title::before {
  content: "";
  margin: 0 auto;
  width: 1px;
  height: 45px;
  background-color: #5F577F;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 900px) {
  .top-topics__title {
    margin-bottom: 25px;
    font-size: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__title {
    margin-bottom: 20px;
    padding-top: 40px;
    font-size: 44px;
  }
  .top-topics__title::before {
    height: 38px;
  }
}
.top-topics__title__ja {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  display: block;
}
@media screen and (max-width: 900px) {
  .top-topics__title__ja {
    margin-top: 15px;
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__title__ja {
    margin-top: 12px;
    font-size: 14px;
  }
}
.top-topics__box {
  width: 100%;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  .top-topics__box {
    gap: 10px;
  }
}
.top-topics__box__tab {
  width: 100%;
  display: flex;
  list-style: none;
}
.top-topics__box__tab__item {
  width: 33.3333333333%;
  height: 50px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 599px) {
  .top-topics__box__tab__item {
    height: 40px;
  }
}
.top-topics__box__tab__item.current {
  border-top: 2px solid #8172B7;
  border-left: 1px solid #a2a2a2;
  border-right: 1px solid #a2a2a2;
  border-bottom: none;
}
.top-topics__box__tab__item__btn {
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .top-topics__box__tab__item__btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .top-topics__box__tab__item__btn:hover {
    color: #6B5AA8;
  }
}
.top-topics__box .topics-list-wrapper {
  margin-top: 0;
  width: 100%;
  display: none;
}
.top-topics__box .topics-list-wrapper.is-show {
  display: block;
}
.top-topics__box .topics-list {
  margin-top: 0;
  width: 100%;
}
.top-topics__box__btn {
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .top-topics__box__btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__box__btn {
    margin-top: 10px;
  }
}

.topics-list {
  margin-top: -20px;
}
@media screen and (max-width: 1024px) {
  .topics-list {
    margin-top: -15px;
  }
}
.topics-list__item {
  border-bottom: 1px solid #dadada;
}
.topics-list__item__link {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .topics-list__item__link {
    gap: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .topics-list__item__link:hover {
    transform: translateX(5px);
  }
  .topics-list__item__link:hover .topics-list__item__title {
    color: #6B5AA8;
  }
}
.topics-list__item__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .topics-list__item__head {
    gap: 7px;
  }
}
.topics-list__item__head__date {
  width: 95px;
  font-size: 16px;
  line-height: 1.6;
  color: #8172B7;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .topics-list__item__head__date {
    width: 90px;
    font-size: 15px;
    line-height: 1.4;
  }
}
.topics-list__item__title {
  font-size: 16px;
  line-height: 1.5;
  color: #5F577F;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .topics-list__item__title {
    font-size: 15px;
  }
}

.new {
  margin-left: 0.5em;
  color: #e54d54;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}

.topics-detail-title {
  margin-bottom: 40px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid #dadada;
}
@media screen and (max-width: 1024px) {
  .topics-detail-title {
    margin-bottom: 30px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 900px) {
  .topics-detail-title {
    margin-bottom: 25px;
    padding-bottom: 22px;
  }
}
@media screen and (max-width: 599px) {
  .topics-detail-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    gap: 3px;
  }
}
.topics-detail-title__head {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .topics-detail-title__head {
    gap: 7px;
  }
}
.topics-detail-title__head .new {
  margin-left: 0;
  padding-bottom: 2px;
}
.topics-detail-title__head__date {
  padding-top: 2px;
  width: 93px;
  font-size: 16px;
  line-height: 1.6;
  color: #8172B7;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .topics-detail-title__head__date {
    padding-top: 1px;
    width: 88px;
    font-size: 15px;
    line-height: 1.4;
  }
}
.topics-detail-title__title {
  font-size: 25px;
  line-height: 1.5;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .topics-detail-title__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 900px) {
  .topics-detail-title__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .topics-detail-title__title {
    font-size: 18px;
    letter-spacing: normal;
  }
}

.topics-detail-btn {
  margin-top: 70px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .topics-detail-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 900px) {
  .topics-detail-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .topics-detail-btn {
    margin-top: 30px;
  }
}

.category-icon {
  width: 100px;
  height: 24px;
  font-size: 13px;
  line-height: 23px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .category-icon {
    width: 90px;
    height: 22px;
    font-size: 12px;
    line-height: 21px;
  }
}
@media screen and (max-width: 599px) {
  .category-icon {
    width: 80px;
    height: 20px;
    font-size: 11px;
    line-height: 19px;
  }
}
.category-icon.recruit {
  width: 130px;
  letter-spacing: normal;
}
@media screen and (max-width: 900px) {
  .category-icon.recruit {
    width: 126px;
  }
}
@media screen and (max-width: 599px) {
  .category-icon.recruit {
    width: 110px;
  }
}
.category-icon.lawyer {
  background: #58B;
}
.category-icon.clerk {
  background: #DA1;
}
.category-icon.internship {
  background: #C89;
}
.category-icon.trainee {
  background: #99B333;
}
.category-icon.part {
  background: #C7BB44;
}

.staff {
  /* 箇条書きドット（経歴・所属団体・資格で共通利用） */
}
.staff__dot {
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.4;
  color: #5F577F;
  font-weight: 500;
  text-align: justify;
  position: relative;
}
@media screen and (max-width: 599px) {
  .staff__dot {
    padding-left: 22px;
    font-size: 15px;
  }
}
.staff__dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #8172B7;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 10px;
}
@media screen and (max-width: 599px) {
  .staff__dot::before {
    width: 7px;
    height: 7px;
    top: 6px;
    left: 4px;
  }
}
.staff {
  /*------ 各弁護士ブロック ------*/
}
.staff__item {
  margin-top: 60px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .staff__item {
    margin-top: 50px;
    padding: 50px 45px;
  }
}
@media screen and (max-width: 900px) {
  .staff__item {
    margin-top: 40px;
    gap: 30px;
    padding: 45px 40px;
  }
}
@media screen and (max-width: 599px) {
  .staff__item {
    margin-top: 30px;
    gap: 15px;
    padding: 35px 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 365px) {
  .staff__item {
    padding: 30px 20px;
  }
}
.staff__item::before {
  content: "";
  width: 465px;
  aspect-ratio: 479.09/527;
  background: url(../img/common/logo_mark.svg) no-repeat center/contain;
  opacity: 0.04;
  position: absolute;
  top: -7px;
  right: -17px;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .staff__item::before {
    width: 360px;
  }
}
@media screen and (max-width: 599px) {
  .staff__item::before {
    width: 240px;
    right: -30px;
  }
}
.staff__item::after {
  content: "";
  width: 180px;
  height: 2px;
  background-color: #5F577F;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .staff__item::after {
    width: 130px;
  }
}
.staff {
  /* 各セクションを透かしロゴより前面に表示 */
}
.staff__head, .staff__profile, .staff__license, .staff__message {
  position: relative;
  z-index: 1;
}
.staff {
  /*------ 氏名まわり ------*/
}
.staff__head {
  padding-left: 70px;
  background: url(../img/common/logo_mark.svg) no-repeat 0 0/54px auto;
}
@media screen and (max-width: 599px) {
  .staff__head {
    padding-top: 3px;
    padding-left: 55px;
    background-size: 42px auto;
  }
}
.staff__head__role {
  font-size: 18px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .staff__head__role {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .staff__head__role {
    font-size: 14px;
  }
}
.staff__head__name {
  margin-top: 5px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-size: 31px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .staff__head__name {
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .staff__head__name {
    gap: 4px;
    font-size: 21px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 365px) {
  .staff__head__name {
    font-size: 18px;
  }
}
.staff__head__name__kana {
  padding-bottom: 3px;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .staff__head__name__kana {
    font-size: 12px;
  }
}
@media screen and (max-width: 365px) {
  .staff__head__name__kana {
    font-size: 10px;
  }
}
.staff {
  /*------ 写真 ＋ プロフィール ------*/
}
.staff__profile {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .staff__profile {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .staff__profile {
    gap: 20px;
  }
}
.staff__profile__photo {
  width: 400px;
  height: 320px;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .staff__profile__photo {
    width: 240px;
    height: 300px;
  }
}
@media screen and (max-width: 900px) {
  .staff__profile__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 10/6;
  }
}
@media screen and (max-width: 599px) {
  .staff__profile__photo {
    width: 100%;
    height: auto;
  }
}
.staff__profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.staff__profile__body {
  flex: 1;
  min-width: 0;
}
.staff {
  /*------ 経歴・所属団体の見出し ------*/
}
.staff__title {
  padding-bottom: 5px;
  display: inline-block;
  font-size: 19px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 599px) {
  .staff__title {
    font-size: 17px;
  }
}
.staff__title {
  /* 2つ目以降の見出し（前のリストとの間隔） */
}
.staff__title:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .staff__title:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .staff__title:not(:first-child) {
    margin-top: 25px;
  }
}
.staff__title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #5F577F;
  position: absolute;
  bottom: 0;
  left: 0;
}
.staff {
  /*------ 経歴（日付 ＋ 内容） ------*/
}
.staff__history {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 599px) {
  .staff__history {
    margin-top: 15px;
    gap: 8px;
  }
}
.staff__history__item {
  display: flex;
}
@media screen and (max-width: 599px) {
  .staff__history__item {
    flex-direction: column;
  }
}
.staff__history__date {
  width: 140px;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .staff__history__date {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .staff__history__date {
    width: auto;
  }
}
.staff__history__text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .staff__history__text {
    padding-left: 22px;
    font-size: 15px;
  }
}
.staff {
  /*------ 所属団体、役職等 ------*/
}
.staff__group {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 599px) {
  .staff__group {
    margin-top: 15px;
    gap: 8px;
  }
}
.staff {
  /*------ 所属団体、役職等 ------*/
}
.staff__license {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 599px) {
  .staff__license {
    margin-top: 15px;
    gap: 8px;
  }
}
.staff {
  /*------ メッセージ ------*/
}
.staff__message {
  padding: 30px;
  background-color: #F5F4F7;
}
@media screen and (max-width: 599px) {
  .staff__message {
    margin-top: 15px;
    padding: 25px;
  }
}
.staff__message__title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 35px;
  line-height: 1;
  color: #5F577F;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .staff__message__title {
    gap: 0;
    padding-bottom: 15px;
    font-size: 32px;
    justify-content: center;
    position: relative;
  }
}
.staff__message__title::after {
  content: "";
  width: 43px;
  height: 1px;
  background-color: #5F577F;
}
@media screen and (max-width: 599px) {
  .staff__message__title::after {
    margin: 0 auto;
    width: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.staff__message__text {
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.7;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .staff__message__text {
    margin-top: 20px;
    font-size: 15px;
  }
}

.anniversary-title {
  margin-top: 155px;
  padding: 55px 40px;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/anniversary/title_bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 1500px) {
  .anniversary-title {
    min-height: 420px;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 1400px) {
  .anniversary-title {
    margin-top: 120px;
  }
}
@media screen and (max-width: 1300px) {
  .anniversary-title {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .anniversary-title {
    min-height: 360px;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-title {
    margin-top: 80px;
    min-height: 360px;
    padding: 40px 30px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-title {
    min-height: 300px;
    padding: 35px 25px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-title {
    margin-top: 60px;
    min-height: auto;
    padding: 20px 20px;
  }
}
.anniversary-title__inner {
  width: 100%;
  max-width: 830px;
}
@media screen and (max-width: 1500px) {
  .anniversary-title__inner {
    max-width: 750px;
  }
}
@media screen and (max-width: 1200px) {
  .anniversary-title__inner {
    max-width: 650px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-title__inner {
    max-width: 550px;
  }
}

/*------ メッセージブロック ------*/
.anniversary-message {
  margin-top: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #F5F4F7;
}
@media screen and (max-width: 1200px) {
  .anniversary-message {
    margin-top: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-message {
    margin-top: 150px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-message {
    margin-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message {
    margin: 60px 20px 20px;
    width: auto;
  }
}
.anniversary-message {
  /*------ ヒーロー（写真 ＋ イントロ） ------*/
}
.anniversary-message__head {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .anniversary-message__head {
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head {
    flex-wrap: wrap;
  }
}
.anniversary-message__head__photo {
  width: 55%;
  height: 520px;
  overflow: hidden;
  position: absolute;
  top: -110px;
  left: 0;
}
@media screen and (max-width: 1300px) {
  .anniversary-message__head__photo {
    height: 420px;
    top: -90px;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-message__head__photo {
    height: 350px;
    top: -60px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-message__head__photo {
    width: 40%;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 10/8;
  }
}
.anniversary-message__head__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.anniversary-message__head__intro {
  padding: 120px 80px 20px 80px;
  width: 45%;
  position: relative;
  z-index: 1;
  background-image: url(../img/anniversary/logo-20th.svg);
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media screen and (max-width: 1300px) {
  .anniversary-message__head__intro {
    padding: 90px 60px 15px 60px;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-message__head__intro {
    padding: 80px 40px 10px 40px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-message__head__intro {
    width: 60%;
    padding: 80px 30px 5px;
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head__intro {
    padding: 30px 30px 10px;
    width: 100%;
    background-size: 50% auto;
  }
}
.anniversary-message__head__intro__copy {
  margin: 0 auto;
  max-width: 470px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .anniversary-message__head__intro__copy {
    max-width: 320px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head__intro__copy {
    max-width: 100%;
  }
}
.anniversary-message__head__intro__copy__title {
  padding-top: 100px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 300;
  background-image: url(../img/common/logo_mark.svg);
  background-size: 70px auto;
  background-repeat: no-repeat;
  background-position: left top;
}
@media screen and (max-width: 1300px) {
  .anniversary-message__head__intro__copy__title {
    padding-top: 80px;
    font-size: 36px;
    background-size: 60px auto;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-message__head__intro__copy__title {
    padding-top: 70px;
    font-size: 32px;
    background-size: 50px auto;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head__intro__copy__title {
    padding-top: 55px;
    font-size: 8vw;
    background-size: 40px auto;
  }
}
.anniversary-message__head__intro__copy__name {
  margin-top: 50px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 1300px) {
  .anniversary-message__head__intro__copy__name {
    margin-top: 35px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head__intro__copy__name {
    margin-top: 20px;
    gap: 5px;
    white-space: normal;
    flex-wrap: wrap;
  }
}
.anniversary-message__head__intro__copy__name__role {
  font-size: 16px;
  line-height: 1.2;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .anniversary-message__head__intro__copy__name__role {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head__intro__copy__name__role {
    width: 100%;
  }
}
.anniversary-message__head__intro__copy__name__ja {
  font-size: 31px;
  line-height: 1.2;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 350;
}
@media screen and (max-width: 1024px) {
  .anniversary-message__head__intro__copy__name__ja {
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head__intro__copy__name__ja {
    width: 100%;
    font-size: 24px;
  }
}
.anniversary-message__head__intro__copy__name__en {
  font-size: 15px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .anniversary-message__head__intro__copy__name__en {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__head__intro__copy__name__en {
    width: 100%;
  }
}
.anniversary-message__head__intro__copy__firm {
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
.anniversary-message {
  /*------ メッセージ本文エリア ------*/
}
.anniversary-message__message {
  padding: 130px 50px;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .anniversary-message__message {
    padding: 110px 50px 50px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-message__message {
    padding: 80px 40px 40px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__message {
    padding: 20px 20px 20px;
  }
}
.anniversary-message__message::before {
  content: "";
  width: 48%;
  max-width: 760px;
  aspect-ratio: 740/788;
  background-image: url(../img/common/logo_mark.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 100%;
  opacity: 0.04;
  position: absolute;
  left: -5px;
  bottom: -5px;
}
.anniversary-message__message__inner {
  margin: 0 auto;
  padding: 80px 90px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .anniversary-message__message__inner {
    padding: 70px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-message__message__inner {
    padding: 60px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__message__inner {
    padding: 30px 30px 30px;
  }
}
.anniversary-message__message__inner__title {
  margin: -130px 0 55px;
  font-size: 85px;
  line-height: 1;
  color: #5F577F;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .anniversary-message__message__inner__title {
    margin: -110px 0 45px;
    font-size: 70px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-message__message__inner__title {
    margin: -95px 0 35px;
    font-size: 60px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__message__inner__title {
    margin: 0 0 15px;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    display: block;
  }
}
.anniversary-message__message__inner__title__jp {
  font-size: 16px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  display: inline-block;
  vertical-align: 70%;
}
@media screen and (max-width: 1024px) {
  .anniversary-message__message__inner__title__jp {
    vertical-align: 55%;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-message__message__inner__title__jp {
    font-size: 15px;
    vertical-align: 40%;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__message__inner__title__jp {
    margin-top: 8px;
    font-size: 12px;
    text-align: center;
    display: block;
  }
}
.anniversary-message__message__inner__box {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 900px) {
  .anniversary-message__message__inner__box {
    gap: 25px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-message__message__inner__box {
    gap: 10px;
  }
}
.anniversary-message__message__inner__box__text {
  font-size: 16px;
  line-height: 2.2;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .anniversary-message__message__inner__box__text {
    font-size: 15px;
    line-height: 1.9;
  }
}

/*------ ヒストリーブロック ------*/
.anniversary-history {
  padding: 160px 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url(../img/anniversary/history_bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 1200px) {
  .anniversary-history {
    padding: 130px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-history {
    padding: 80px 60px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-history {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history {
    padding: 40px 20px 40px;
  }
}
.anniversary-history__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.anniversary-history__title {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .anniversary-history__title {
    margin-bottom: 60px;
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-history__title {
    margin-bottom: 50px;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__title {
    margin-bottom: 25px;
    gap: 15px;
  }
}
.anniversary-history__title__en {
  font-size: 100px;
  line-height: 0.7;
  color: #fff;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  .anniversary-history__title__en {
    font-size: 85px;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-history__title__en {
    font-size: 70px;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-history__title__en {
    font-size: 60px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__title__en {
    font-size: 48px;
  }
}
.anniversary-history__title__jp {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .anniversary-history__title__jp {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__title__jp {
    font-size: 14px;
  }
}
.anniversary-history__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.anniversary-history__list__item {
  padding-bottom: 50px;
  display: flex;
  align-items: flex-start;
  border-left: 1px solid #8172B7;
}
@media screen and (max-width: 1024px) {
  .anniversary-history__list__item {
    padding-bottom: 40px;
    flex-direction: column;
    border-left: none;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__list__item {
    padding-bottom: 30px;
  }
}
.anniversary-history__list__item:last-child {
  padding-bottom: 0;
}
.anniversary-history__list__item__head {
  padding-left: 30px;
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .anniversary-history__list__item__head {
    margin-bottom: 25px;
    width: 100%;
    padding-left: 0;
    gap: 15px;
    flex-direction: row;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__list__item__head {
    margin-bottom: 15px;
    gap: 5px;
    flex-direction: column;
  }
}
.anniversary-history__list__item__head::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #8172B7;
  border-radius: 50%;
  position: absolute;
  top: -1px;
  left: -6px;
}
@media screen and (max-width: 1024px) {
  .anniversary-history__list__item__head::before {
    display: none;
  }
}
.anniversary-history__list__item__head__year {
  font-size: 40px;
  line-height: 0.7;
  letter-spacing: 0.05em;
  color: #5F577F;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .anniversary-history__list__item__head__year {
    font-size: 38px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__list__item__head__year {
    width: 100%;
    font-size: 34px;
    text-align: left;
  }
}
.anniversary-history__list__item__head__label {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .anniversary-history__list__item__head__label {
    padding-top: 4px;
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-history__list__item__head__label br {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__list__item__head__label {
    font-size: 15px;
  }
}
.anniversary-history__list__item__data {
  padding: 35px;
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(95, 87, 127, 0.15);
}
@media screen and (max-width: 900px) {
  .anniversary-history__list__item__data {
    padding: 40px;
    gap: 25px;
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__list__item__data {
    padding: 30px;
    gap: 15px;
    box-shadow: 0 0 10px rgba(95, 87, 127, 0.15);
  }
}
.anniversary-history__list__item__data__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.anniversary-history__list__item__data__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .anniversary-history__list__item__data__text p {
    font-size: 15px;
    line-height: 1.75;
  }
}
.anniversary-history__list__item__data__text p + p {
  margin-top: 0;
}
.anniversary-history__list__item__data__photo {
  width: 300px;
}
@media screen and (max-width: 1200px) {
  .anniversary-history__list__item__data__photo {
    width: 260px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-history__list__item__data__photo {
    width: 100%;
  }
}
.anniversary-history__list__item__data__photos {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .anniversary-history__list__item__data__photos {
    width: 260px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-history__list__item__data__photos {
    width: 100%;
    flex-direction: row;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-history__list__item__data__photos {
    width: 100%;
    flex-direction: column;
    gap: 5px;
  }
}
.anniversary-history__list__item__data__photos__item {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .anniversary-history__list__item__data__photos__item {
    height: auto;
  }
}

/*------ ビジョンブロック ------*/
.anniversary-vision {
  padding: 120px 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url(../img/anniversary/vision_bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 1200px) {
  .anniversary-vision {
    padding: 100px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-vision {
    padding: 80px 60px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-vision {
    padding: 70px 20px 50px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-vision {
    padding: 40px 20px 60px;
  }
}
.anniversary-vision__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.anniversary-vision__title {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .anniversary-vision__title {
    margin-bottom: 35px;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-vision__title {
    margin-bottom: 15px;
    gap: 15px;
  }
}
.anniversary-vision__title__en {
  font-size: 100px;
  line-height: 0.5;
  color: #fff;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  .anniversary-vision__title__en {
    font-size: 85px;
  }
}
@media screen and (max-width: 1024px) {
  .anniversary-vision__title__en {
    font-size: 70px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-vision__title__en {
    font-size: 60px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-vision__title__en {
    font-size: 48px;
  }
}
.anniversary-vision__title__jp {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  .anniversary-vision__title__jp {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-vision__title__jp {
    font-size: 16px;
  }
}
.anniversary-vision__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .anniversary-vision__list {
    margin: 0 auto;
    max-width: 100%;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-vision__list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-vision__list {
    gap: 15px;
  }
}
.anniversary-vision__list__item {
  padding-bottom: 25px;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(95, 87, 127, 0.25);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .anniversary-vision__list__item {
    padding: 35px 30px 40px;
    width: calc((100% - 40px) / 3);
    height: auto;
    justify-content: space-between;
    border-radius: 10px;
    gap: 10px;
  }
}
@media screen and (max-width: 900px) {
  .anniversary-vision__list__item {
    padding: 30px 30px 35px;
    width: calc((100% - 20px) / 3);
    justify-content: flex-start;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-vision__list__item {
    width: 100%;
    padding: 30px;
    gap: 7px;
  }
}
.anniversary-vision__list__item::before {
  content: "";
  width: 220px;
  height: 220px;
  background-color: #B088BF;
  border-radius: 50%;
  position: absolute;
  top: -135px;
  left: -27px;
}
@media screen and (max-width: 1024px) {
  .anniversary-vision__list__item::before {
    width: 240px;
    height: 240px;
    top: -140px;
    left: -120px;
  }
}
@media screen and (max-width: 599px) {
  .anniversary-vision__list__item::before {
    width: 200px;
    height: 200px;
    top: -110px;
    left: -60px;
  }
}
.anniversary-vision__list__item__num {
  padding-left: 0.3em;
  font-size: 50px;
  line-height: 1;
  color: #fff;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .anniversary-vision__list__item__num {
    font-size: 40px;
  }
}
.anniversary-vision__list__item__copy {
  padding-left: 0.5em;
  font-size: 26px;
  line-height: 1.4;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .anniversary-vision__list__item__copy {
    font-size: 22px;
  }
}
.anniversary-vision__list__item__text {
  margin: 0 auto;
  width: 100%;
  max-width: 185px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .anniversary-vision__list__item__text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
  }
}

.recruit-title {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-title {
    margin-bottom: 40px;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-title {
    margin-bottom: 25px;
    gap: 10px;
  }
}
.recruit-title::before {
  content: "";
  margin-bottom: 20px;
  width: 140px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(to left, #5F577F 60px, #d9d9d9 60px);
}
@media screen and (max-width: 1024px) {
  .recruit-title::before {
    margin-bottom: 10px;
    width: 100px;
    background: linear-gradient(to left, #5F577F 40px, #d9d9d9 40px);
  }
}
@media screen and (max-width: 599px) {
  .recruit-title::before {
    width: 40px;
    background: linear-gradient(to left, #5F577F 12px, #d9d9d9 20px);
  }
}
.recruit-title::after {
  content: "";
  margin-bottom: 20px;
  width: 140px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(to right, #5F577F 60px, #d9d9d9 60px);
}
@media screen and (max-width: 1024px) {
  .recruit-title::after {
    margin-bottom: 10px;
    width: 100px;
    background: linear-gradient(to right, #5F577F 40px, #d9d9d9 40px);
  }
}
@media screen and (max-width: 599px) {
  .recruit-title::after {
    width: 40px;
    background: linear-gradient(to right, #5F577F 12px, #d9d9d9 20px);
  }
}
.recruit-title__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  .recruit-title__inner {
    gap: 2px;
  }
}
.recruit-title__en {
  font-size: 16px;
  line-height: 1;
  color: #5F577F;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 600;
  text-align: center;
  letter-spacing: normal;
  margin-top: 13px;
}
@media screen and (max-width: 599px) {
  .recruit-title__en {
    margin-top: 5px;
    font-size: 15px;
  }
}
.recruit-title__ja {
  font-size: 35px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (max-width: 900px) {
  .recruit-title__ja {
    font-size: 32px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-title__ja {
    font-size: 23px;
  }
}

/*------ About us ブロック ------*/
.recruit-about {
  padding-bottom: 110px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .recruit-about {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-about {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-about {
    padding-bottom: 40px;
  }
}
.recruit-about__photos {
  margin-bottom: 70px;
  width: 100%;
  aspect-ratio: 1100/400;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-about__photos {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-about__photos {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-about__photos {
    margin-bottom: 30px;
    aspect-ratio: 1100/850;
  }
}
.recruit-about__photos__item {
  overflow: hidden;
  position: absolute;
}
.recruit-about__photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-about__photos__item--01 {
  width: 44.55%;
  height: 80%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .recruit-about__photos__item--01 {
    width: 70%;
    height: 53%;
  }
}
.recruit-about__photos__item--02 {
  width: 23.64%;
  height: 50%;
  top: 50%;
  left: 32.73%;
}
@media screen and (max-width: 599px) {
  .recruit-about__photos__item--02 {
    width: 38%;
    height: 38%;
    top: 43%;
    left: auto;
    right: 0;
  }
}
.recruit-about__photos__item--03 {
  width: 36.36%;
  height: 65%;
  top: 12.5%;
  right: 0;
}
@media screen and (max-width: 599px) {
  .recruit-about__photos__item--03 {
    width: 44%;
    height: 38%;
    top: auto;
    bottom: 0;
    right: auto;
    left: 12%;
  }
}
.recruit-about__copy {
  margin-bottom: 40px;
  font-size: 33px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .recruit-about__copy {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-about__copy {
    margin-bottom: 20px;
    font-size: 27px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-about__copy {
    margin-bottom: 15px;
    font-size: 5.5vw;
    line-height: 1.5;
  }
}
.recruit-about__text {
  margin-bottom: 45px;
  font-size: 16px;
  line-height: 2;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .recruit-about__text {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-about__text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-about__text {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.9;
  }
}
.recruit-about__btns {
  padding: 30px;
  background-color: #ece9f2;
}
@media screen and (max-width: 599px) {
  .recruit-about__btns {
    padding: 20px;
  }
}
.recruit-about__btns .btn-base {
  margin: 0 auto;
  width: 100%;
  height: 80px;
  max-width: 480px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .recruit-about__btns .btn-base {
    padding-top: 18px;
    height: 60px;
  }
}

@media screen and (max-width: 599px) {
  .recruit-photo {
    aspect-ratio: 100/35;
  }
}
.recruit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*------ Features ブロック ------*/
.recruit-features {
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .recruit-features {
    padding: 90px 40px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-features {
    padding: 70px 30px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-features {
    padding: 50px 20px;
  }
}
.recruit-features::before {
  content: "";
  width: 100%;
  height: 400px;
  background-color: #ece9f2;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .recruit-features::before {
    height: 280px;
  }
}
.recruit-features::after {
  content: "";
  width: 394px;
  aspect-ratio: 394/419;
  background-image: url(../img/common/logo_mark.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0.04;
  position: absolute;
  top: -17px;
  left: 23%;
}
@media screen and (max-width: 900px) {
  .recruit-features::after {
    left: 2%;
  }
}
@media screen and (max-width: 599px) {
  .recruit-features::after {
    display: none;
  }
}
.recruit-features__inner {
  position: relative;
  z-index: 1;
}
.recruit-features__list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .recruit-features__list {
    flex-direction: column;
    gap: 15px;
  }
}
.recruit-features__list__item {
  flex: 1;
  min-width: 0;
  padding: 45px 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px #d8d5de;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-features__list__item {
    padding: 40px 30px 35px;
    gap: 10px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-features__list__item {
    padding: 30px 30px 30px 140px;
    gap: 5px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-features__list__item {
    padding: 20px 30px 30px;
    align-items: center;
    gap: 10px;
  }
}
.recruit-features__list__item__icon {
  margin: 0 auto;
  width: 100px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-features__list__item__icon {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-features__list__item__icon {
    margin: auto 0;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-features__list__item__icon {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
  }
}
.recruit-features__list__item__title {
  font-size: 24px;
  line-height: 1.35;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .recruit-features__list__item__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-features__list__item__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-features__list__item__title {
    width: 100%;
    text-align: left;
  }
  .recruit-features__list__item__title br {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .recruit-features__list__item__title {
    text-align: center;
  }
  .recruit-features__list__item__title br {
    display: inline;
  }
}
.recruit-features__list__item__text {
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .recruit-features__list__item__text {
    font-size: 15px;
  }
}

/*------ Interview ブロック ------*/
.recruit-interview {
  padding-bottom: 120px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .recruit-interview {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-interview {
    padding-bottom: 60px;
  }
}
.recruit-interview .recruit-title {
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .recruit-interview .recruit-title {
    margin-bottom: 30px;
  }
}
.recruit-interview__lead {
  margin-bottom: 45px;
  font-size: 16px;
  line-height: 1.8;
  color: #5F577F;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .recruit-interview__lead {
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
  }
  .recruit-interview__lead br {
    display: none;
  }
}
.recruit-interview__list {
  margin-bottom: 60px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1500px) {
  .recruit-interview__list {
    margin: 0 -30px 60px;
  }
}
@media screen and (max-width: 1400px) {
  .recruit-interview__list {
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__list {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-interview__list {
    margin: 0 -20px 35px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-interview__list {
    margin: 0 0 30px;
    gap: 30px;
    flex-direction: column;
  }
}
.recruit-interview__list__item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .recruit-interview__list__item {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-interview__list__item {
    gap: 15px;
  }
}
.recruit-interview__list__item::before {
  content: "";
  width: 280px;
  aspect-ratio: 10/10;
  background-color: #ece9f2;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-47%);
}
@media screen and (max-width: 1024px) {
  .recruit-interview__list__item::before {
    width: 26vw;
  }
}
@media screen and (max-width: 900px) {
  .recruit-interview__list__item::before {
    width: 29vw;
  }
}
@media screen and (max-width: 599px) {
  .recruit-interview__list__item::before {
    display: none;
  }
}
.recruit-interview__list__item__num {
  font-size: 80px;
  line-height: 0.3;
  color: #5F577F;
  font-family: "Cormorant Garamond", serif !important;
  font-weight: 300;
  position: absolute;
  top: 9px;
  left: 27px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .recruit-interview__list__item__num {
    font-size: 8vw;
    top: 5px;
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .recruit-interview__list__item__num {
    font-size: 12vw;
    top: 15px;
    left: 15px;
  }
}
.recruit-interview__list__item__photo {
  width: 270px;
  aspect-ratio: 10/10;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .recruit-interview__list__item__photo {
    width: 25vw;
  }
}
@media screen and (max-width: 900px) {
  .recruit-interview__list__item__photo {
    width: 28vw;
  }
}
@media screen and (max-width: 599px) {
  .recruit-interview__list__item__photo {
    width: 100%;
    aspect-ratio: 10/5;
    border-radius: 5px;
    overflow: hidden;
  }
}
.recruit-interview__list__item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 50% top 10%;
}
.recruit-interview__list__item__profile {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 9px 7px;
}
@media screen and (max-width: 1024px) {
  .recruit-interview__list__item__profile {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }
}
.recruit-interview__list__item__profile__role {
  width: 100%;
  font-size: 17px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .recruit-interview__list__item__profile__role {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__list__item__profile__role {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-interview__list__item__profile__role {
    font-size: 13px;
  }
}
.recruit-interview__list__item__profile__name {
  font-size: 33px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .recruit-interview__list__item__profile__name {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__list__item__profile__name {
    font-size: 25px;
  }
}
.recruit-interview__list__item__profile__kana {
  font-size: 15px;
  line-height: 1.3;
  color: #5F577F;
}
@media screen and (max-width: 1200px) {
  .recruit-interview__list__item__profile__kana {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__list__item__profile__kana {
    font-size: 14px;
  }
}
.recruit-interview__btn {
  display: flex;
  justify-content: center;
}
.recruit-interview__btn .btn-base.en {
  min-width: 200px;
  padding-top: 17px;
  padding-bottom: 18px;
  font-size: 18px;
  font-weight: 400;
}

/*------ Training ブロック ------*/
.recruit-training {
  margin-bottom: 110px;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 900px) {
  .recruit-training {
    margin-bottom: 80px;
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .recruit-training {
    margin-bottom: 60px;
  }
}
.recruit-training__photo {
  width: 50%;
  height: 450px;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .recruit-training__photo {
    height: 380px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-training__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 700/450;
  }
}
.recruit-training__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.recruit-training__body {
  padding: 20px 50px 0;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .recruit-training__body {
    padding: 20px 40px 0;
  }
}
@media screen and (max-width: 900px) {
  .recruit-training__body {
    padding: 40px 50px 0;
  }
}
@media screen and (max-width: 599px) {
  .recruit-training__body {
    padding: 30px 30px 0;
  }
}
.recruit-training__body__box {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .recruit-training__body__box {
    align-items: center;
    max-width: 1100px;
  }
}
.recruit-training__title {
  margin-bottom: 35px;
  width: 100%;
  justify-content: flex-start;
  gap: 0;
}
@media screen and (max-width: 900px) {
  .recruit-training__title {
    margin-bottom: 50px;
    justify-content: center;
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-training__title {
    margin-bottom: 40px;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-training__title {
    margin-bottom: 25px;
    gap: 10px;
  }
}
.recruit-training__title::before {
  display: none;
}
@media screen and (max-width: 900px) {
  .recruit-training__title::before {
    display: block;
  }
}
.recruit-training__title::after {
  display: none;
}
@media screen and (max-width: 900px) {
  .recruit-training__title::after {
    display: block;
    margin-bottom: 10px;
    width: 100px;
    position: static;
    top: auto;
    left: auto;
    background: linear-gradient(to right, #5F577F 40px, #d9d9d9 40px);
  }
}
@media screen and (max-width: 900px) and (max-width: 599px) {
  .recruit-training__title::after {
    width: 40px;
    background: linear-gradient(to right, #5F577F 12px, #d9d9d9 20px);
  }
}
.recruit-training__title .recruit-title__inner {
  align-items: flex-start;
  gap: 7px;
}
@media screen and (max-width: 900px) {
  .recruit-training__title .recruit-title__inner {
    align-items: center;
    gap: 8px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-training__title .recruit-title__inner {
    gap: 5px;
  }
}
.recruit-training__title .recruit-title__en {
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .recruit-training__title .recruit-title__en {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .recruit-training__title .recruit-title__en {
    font-size: 15px;
  }
}
.recruit-training__title .recruit-title__ja {
  line-height: 1.3;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .recruit-training__title .recruit-title__ja {
    line-height: 1;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .recruit-training__title .recruit-title__ja {
    font-size: 23px;
  }
}
.recruit-training__text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #5F577F;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .recruit-training__text {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
.recruit-training .btn-base.en {
  min-width: 200px;
  padding-top: 17px;
  padding-bottom: 18px;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .recruit-training .btn-base.en {
    margin: 0 auto;
  }
}

/*------ Data ブロック ------*/
.recruit-data {
  padding: 0 50px 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit-data {
    padding: 0 40px 70px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-data {
    padding: 0 30px 40px;
  }
}
@media screen and (max-width: 365px) {
  .recruit-data {
    padding: 0 20px 40px;
  }
}
.recruit-data::before {
  content: "";
  width: 100%;
  height: 300px;
  background-color: #ece9f2;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .recruit-data::before {
    height: 180px;
  }
}
.recruit-data__inner {
  position: relative;
  z-index: 1;
}
.recruit-data .recruit-title {
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .recruit-data .recruit-title {
    margin-bottom: 25px;
  }
}
.recruit-data__list {
  margin: 0 auto;
  max-width: 1130px;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1500px) {
  .recruit-data__list {
    gap: 10px;
  }
}
@media screen and (max-width: 1400px) {
  .recruit-data__list {
    gap: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .recruit-data__list {
    gap: 10px;
  }
}
@media screen and (max-width: 900px) {
  .recruit-data__list {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-data__list {
    margin: 0 -20px;
    gap: 4px;
  }
}
@media screen and (max-width: 365px) {
  .recruit-data__list {
    margin: 0 auto;
    gap: 10px;
    flex-direction: column;
  }
}
.recruit-data__list__item {
  flex: 1;
  min-width: 0;
  padding: 30px 5px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px #d8d5de;
  position: relative;
}
@media screen and (max-width: 900px) {
  .recruit-data__list__item {
    flex: 1 1 calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item {
    flex: 1 1 calc((100% - 4px) / 2);
    padding: 25px 5px 25px;
    box-shadow: 0 0 5px #d8d5de;
  }
}
.recruit-data__list__item__icon {
  margin: 0 auto 20px;
  width: 100px;
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item__icon {
    margin: 0 auto 10px;
    width: 80px;
  }
}
.recruit-data__list__item__label {
  font-size: 20px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .recruit-data__list__item__label {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item__label {
    font-size: 16px;
    letter-spacing: normal;
  }
}
.recruit-data__list__item__value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #5F577F;
  text-align: center;
}
.recruit-data__list__item__value__num {
  font-size: 60px;
  line-height: 1;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item__value__num {
    font-size: 52px;
  }
}
.recruit-data__list__item__value__unit {
  font-size: 40px;
  line-height: 1;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item__value__unit {
    font-size: 34px;
  }
}
.recruit-data__list__item__value__unit--ja {
  margin-bottom: 8px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item__value__unit--ja {
    margin-bottom: 6px;
    font-size: 18px;
  }
}
.recruit-data__list__item__note {
  font-size: 14px;
  line-height: 1.3;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item__note {
    font-size: 13px;
  }
}
.recruit-data__btn {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .recruit-data__btn {
    margin-top: 25px;
  }
}

/*------ サマークラーク バナー ------*/
.recruit-summer {
  padding: 80px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .recruit-summer {
    padding: 60px 0;
  }
}
@media screen and (max-width: 599px) {
  .recruit-summer {
    padding: 30px 0 50px;
  }
}
@media screen and (max-width: 365px) {
  .recruit-summer {
    padding: 30px 0 40px;
  }
}
.recruit-summer__bnr {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px #d8d5de;
}
.recruit-summer__bnr__body {
  padding: 40px 0 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 900px) {
  .recruit-summer__bnr__body {
    padding: 35px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .recruit-summer__bnr__body {
    padding: 30px 20px 0;
  }
}
@media screen and (max-width: 365px) {
  .recruit-summer__bnr__body {
    padding: 25px 20px 0;
  }
}
@media screen and (min-width: 1025px) {
  .recruit-summer__bnr__body:hover {
    opacity: 0.8;
  }
}
.recruit-summer__bnr__lead {
  padding: 0 270px 0 30px;
  font-size: 17px;
  line-height: 1.5;
  color: #525252;
}
.recruit-summer__bnr__lead br {
  display: none;
}
@media screen and (max-width: 900px) {
  .recruit-summer__bnr__lead {
    padding: 0 50px 0 30px;
    font-size: 15px;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 599px) {
  .recruit-summer__bnr__lead {
    padding: 0;
    font-size: 15px;
  }
  .recruit-summer__bnr__lead br {
    display: inline;
  }
}
@media screen and (max-width: 365px) {
  .recruit-summer__bnr__lead {
    padding: 0;
    font-size: 14px;
  }
}
.recruit-summer__bnr__title {
  margin-top: 0;
  padding: 0 230px 0 30px;
  font-size: 23px;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: normal;
}
@media screen and (max-width: 900px) {
  .recruit-summer__bnr__title {
    padding: 0 190px 0 30px;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-summer__bnr__title {
    margin-top: 2px;
    padding: 0;
    font-size: 5.7vw;
    font-weight: 700;
  }
}
.recruit-summer__bnr__title__sub {
  font-size: 17px;
  color: #525252;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 900px) {
  .recruit-summer__bnr__title__sub {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-summer__bnr__title__sub {
    margin-top: 4px;
    font-size: 15px;
    display: block;
  }
}
.recruit-summer__bnr__ill {
  width: 230px;
  height: 146px;
  overflow: hidden;
  position: absolute;
  bottom: 42px;
  right: 0;
}
@media screen and (max-width: 900px) {
  .recruit-summer__bnr__ill {
    width: 200px;
    height: 120px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-summer__bnr__ill {
    margin: 10px auto 0;
    width: 80%;
    height: auto;
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    transform: translateX(0);
  }
}
.recruit-summer__bnr__ill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.recruit-summer__bnr__btn {
  margin: 30px 0 0;
  padding: 10px 45px 10px 20px;
  width: 100%;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background-image: linear-gradient(257deg, #8E84B2 1.22%, #8F88BF 19.98%, #8172B7 98.78%);
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .recruit-summer__bnr__btn {
    margin: 0 -20px;
    padding: 12px 30px 12px 10px;
    width: auto;
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .recruit-summer__bnr__btn {
    margin: 0 -20px;
    font-size: 12px;
  }
}
.recruit-summer__bnr__btn::before {
  content: "";
  margin: auto 0;
  width: 14px;
  height: 10px;
  background-image: url(../img/common/arrow_white.svg);
  background-position: 50% 50%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
@media screen and (max-width: 599px) {
  .recruit-summer__bnr__btn::before {
    width: 10px;
    height: 10px;
    right: 4vw;
    top: 1px;
  }
}

.sitemap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .sitemap {
    gap: 20px;
  }
}
.sitemap__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sitemap__item--has-sub {
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .sitemap__item--has-sub {
    gap: 20px;
  }
}
.sitemap__item__link {
  width: 100%;
  min-height: 70px;
  padding: 23px 46px 25px 25px;
  background-color: #F5F4F7;
  background-image: url(../img/common/arrow_purple.svg);
  background-repeat: no-repeat;
  background-position: right 21px center;
  background-size: 15px 10px;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  color: #5F577F;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.036px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .sitemap__item__link {
    min-height: 54px;
    padding: 19px 40px 21px 20px;
    font-size: 16px;
    background-position: right 18px center;
    background-size: 12px 8px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap__item__link:hover {
    color: #fff;
    background-color: #8172B7;
    background-image: url(../img/common/arrow_white.svg);
    background-position: right 18px center;
  }
}
.sitemap__item__sub {
  width: 100%;
  padding: 0 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .sitemap__item__sub {
    padding: 5px 20px 10px;
    flex-direction: column;
    gap: 15px;
  }
}
.sitemap__item__sub__item {
  flex-shrink: 0;
}
.sitemap__item__sub__item__link {
  min-width: 200px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1;
  color: #5F577F;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.032px;
  background-image: url(../img/common/arrow_purple.svg);
  background-repeat: no-repeat;
  background-position: left 0 center;
  background-size: 12px 8px;
  display: block;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .sitemap__item__sub__item__link {
    min-width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap__item__sub__item__link {
    min-width: 0;
    width: 100%;
    padding-left: 18px;
    font-size: 15px;
    background-size: 10px 7px;
  }
}
@media screen and (min-width: 1025px) {
  .sitemap__item__sub__item__link:hover {
    color: #8172B7;
    transform: translateX(5px);
  }
}/*# sourceMappingURL=style.css.map */